From fddd16375d898b9affaf04ba22919fb2281a8aee Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Javier=20Su=C3=A1rez=20Ruiz?= Date: Tue, 16 Nov 2021 12:41:37 +0100 Subject: [PATCH 1/6] Update LineCap enum to use the type used in Maui Core --- src/Microsoft.Maui.Graphics.Skia/SkiaCanvas.cs | 2 +- src/Microsoft.Maui.Graphics.Skia/SkiaCanvasState.cs | 8 ++++---- .../W2DCanvas.cs | 2 +- .../W2DCanvasState.cs | 6 +++--- src/Microsoft.Maui.Graphics/AbstractCanvas.cs | 2 +- src/Microsoft.Maui.Graphics/Android/NativeCanvas.cs | 2 +- src/Microsoft.Maui.Graphics/Android/NativeCanvasState.cs | 8 ++++---- src/Microsoft.Maui.Graphics/CanvasExtensions.cs | 4 ++-- src/Microsoft.Maui.Graphics/ICanvas.cs | 2 +- src/Microsoft.Maui.Graphics/LineCap.cs | 9 --------- src/Microsoft.Maui.Graphics/MaciOS/NativeCanvas.cs | 8 ++++---- src/Microsoft.Maui.Graphics/PenLineCap.cs | 9 +++++++++ src/Microsoft.Maui.Graphics/PictureCanvas.cs | 2 +- src/Microsoft.Maui.Graphics/ScalingCanvas.cs | 2 +- 14 files changed, 33 insertions(+), 33 deletions(-) delete mode 100644 src/Microsoft.Maui.Graphics/LineCap.cs create mode 100644 src/Microsoft.Maui.Graphics/PenLineCap.cs diff --git a/src/Microsoft.Maui.Graphics.Skia/SkiaCanvas.cs b/src/Microsoft.Maui.Graphics.Skia/SkiaCanvas.cs index 907139de..209a3af0 100644 --- a/src/Microsoft.Maui.Graphics.Skia/SkiaCanvas.cs +++ b/src/Microsoft.Maui.Graphics.Skia/SkiaCanvas.cs @@ -55,7 +55,7 @@ public override float Alpha set => CurrentState.Alpha = value; } - public override LineCap StrokeLineCap + public override PenLineCap StrokeLineCap { set => CurrentState.StrokeLineCap = value; } diff --git a/src/Microsoft.Maui.Graphics.Skia/SkiaCanvasState.cs b/src/Microsoft.Maui.Graphics.Skia/SkiaCanvasState.cs index 63758db3..26150d7e 100644 --- a/src/Microsoft.Maui.Graphics.Skia/SkiaCanvasState.cs +++ b/src/Microsoft.Maui.Graphics.Skia/SkiaCanvasState.cs @@ -88,15 +88,15 @@ public Color FontColor } } - public LineCap StrokeLineCap + public PenLineCap StrokeLineCap { set { - if (value == LineCap.Butt) + if (value == PenLineCap.Flat) StrokePaint.StrokeCap = SKStrokeCap.Butt; - else if (value == LineCap.Round) + else if (value == PenLineCap.Round) StrokePaint.StrokeCap = SKStrokeCap.Round; - else if (value == LineCap.Square) + else if (value == PenLineCap.Square) StrokePaint.StrokeCap = SKStrokeCap.Square; } } diff --git a/src/Microsoft.Maui.Graphics.Win2D.WinUI.Desktop/W2DCanvas.cs b/src/Microsoft.Maui.Graphics.Win2D.WinUI.Desktop/W2DCanvas.cs index 9274ebf6..a0b80845 100644 --- a/src/Microsoft.Maui.Graphics.Win2D.WinUI.Desktop/W2DCanvas.cs +++ b/src/Microsoft.Maui.Graphics.Win2D.WinUI.Desktop/W2DCanvas.cs @@ -64,7 +64,7 @@ public override Color StrokeColor set => CurrentState.StrokeColor = value; } - public override LineCap StrokeLineCap + public override PenLineCap StrokeLineCap { set => CurrentState.StrokeLineCap = value; } diff --git a/src/Microsoft.Maui.Graphics.Win2D.WinUI.Desktop/W2DCanvasState.cs b/src/Microsoft.Maui.Graphics.Win2D.WinUI.Desktop/W2DCanvasState.cs index a431895f..5701cc23 100644 --- a/src/Microsoft.Maui.Graphics.Win2D.WinUI.Desktop/W2DCanvasState.cs +++ b/src/Microsoft.Maui.Graphics.Win2D.WinUI.Desktop/W2DCanvasState.cs @@ -212,16 +212,16 @@ public float MiterLimit } } - public LineCap StrokeLineCap + public PenLineCap StrokeLineCap { set { switch (value) { - case LineCap.Butt: + case PenLineCap.Flat: _lineCap = CanvasCapStyle.Flat; break; - case LineCap.Round: + case PenLineCap.Round: _lineCap = CanvasCapStyle.Round; break; default: diff --git a/src/Microsoft.Maui.Graphics/AbstractCanvas.cs b/src/Microsoft.Maui.Graphics/AbstractCanvas.cs index ad6e43e6..ede2eed2 100644 --- a/src/Microsoft.Maui.Graphics/AbstractCanvas.cs +++ b/src/Microsoft.Maui.Graphics/AbstractCanvas.cs @@ -98,7 +98,7 @@ public float StrokeSize public abstract float MiterLimit { set; } public abstract Color StrokeColor { set; } - public abstract LineCap StrokeLineCap { set; } + public abstract PenLineCap StrokeLineCap { set; } public abstract LineJoin StrokeLineJoin { set; } public float[] StrokeDashPattern diff --git a/src/Microsoft.Maui.Graphics/Android/NativeCanvas.cs b/src/Microsoft.Maui.Graphics/Android/NativeCanvas.cs index 320c471d..a7d4819c 100644 --- a/src/Microsoft.Maui.Graphics/Android/NativeCanvas.cs +++ b/src/Microsoft.Maui.Graphics/Android/NativeCanvas.cs @@ -107,7 +107,7 @@ public override float Alpha set => CurrentState.Alpha = value; } - public override LineCap StrokeLineCap + public override PenLineCap StrokeLineCap { set => CurrentState.StrokeLineCap = value; } diff --git a/src/Microsoft.Maui.Graphics/Android/NativeCanvasState.cs b/src/Microsoft.Maui.Graphics/Android/NativeCanvasState.cs index 7f4c298c..c8a350fb 100644 --- a/src/Microsoft.Maui.Graphics/Android/NativeCanvasState.cs +++ b/src/Microsoft.Maui.Graphics/Android/NativeCanvasState.cs @@ -80,15 +80,15 @@ public Color FontColor } } - public LineCap StrokeLineCap + public PenLineCap StrokeLineCap { set { - if (value == LineCap.Butt) + if (value == PenLineCap.Flat) StrokePaint.StrokeCap = global::Android.Graphics.Paint.Cap.Butt; - else if (value == LineCap.Round) + else if (value == PenLineCap.Round) StrokePaint.StrokeCap = global::Android.Graphics.Paint.Cap.Round; - else if (value == LineCap.Square) + else if (value == PenLineCap.Square) StrokePaint.StrokeCap = global::Android.Graphics.Paint.Cap.Square; } } diff --git a/src/Microsoft.Maui.Graphics/CanvasExtensions.cs b/src/Microsoft.Maui.Graphics/CanvasExtensions.cs index c2f0a8f3..15adef19 100644 --- a/src/Microsoft.Maui.Graphics/CanvasExtensions.cs +++ b/src/Microsoft.Maui.Graphics/CanvasExtensions.cs @@ -313,7 +313,7 @@ public static void EnableDefaultShadow(this ICanvas canvas, float zoom = 1) /// - Stroke Dash Pattern: None /// - Stroke Location: Center /// - Stroke Line Join: Miter - /// - Stroke Line Cap: Butt + /// - Stroke Line Cap: Flat /// - Stroke Brush: None /// - Stroke Color: Black /// @@ -323,7 +323,7 @@ public static void ResetStroke(this ICanvas canvas) canvas.StrokeSize = 1; canvas.StrokeDashPattern = null; canvas.StrokeLineJoin = LineJoin.Miter; - canvas.StrokeLineCap = LineCap.Butt; + canvas.StrokeLineCap = PenLineCap.Flat; canvas.StrokeColor = Colors.Black; } diff --git a/src/Microsoft.Maui.Graphics/ICanvas.cs b/src/Microsoft.Maui.Graphics/ICanvas.cs index 42bf12c9..2203e3ea 100644 --- a/src/Microsoft.Maui.Graphics/ICanvas.cs +++ b/src/Microsoft.Maui.Graphics/ICanvas.cs @@ -12,7 +12,7 @@ public interface ICanvas public float StrokeSize { set; } public float MiterLimit { set; } public Color StrokeColor { set; } - public LineCap StrokeLineCap { set; } + public PenLineCap StrokeLineCap { set; } public LineJoin StrokeLineJoin { set; } public float[] StrokeDashPattern { set; } public Color FillColor { set; } diff --git a/src/Microsoft.Maui.Graphics/LineCap.cs b/src/Microsoft.Maui.Graphics/LineCap.cs deleted file mode 100644 index a0221502..00000000 --- a/src/Microsoft.Maui.Graphics/LineCap.cs +++ /dev/null @@ -1,9 +0,0 @@ -namespace Microsoft.Maui.Graphics -{ - public enum LineCap - { - Butt, - Round, - Square - } -} diff --git a/src/Microsoft.Maui.Graphics/MaciOS/NativeCanvas.cs b/src/Microsoft.Maui.Graphics/MaciOS/NativeCanvas.cs index d522c7f9..b044e2ad 100644 --- a/src/Microsoft.Maui.Graphics/MaciOS/NativeCanvas.cs +++ b/src/Microsoft.Maui.Graphics/MaciOS/NativeCanvas.cs @@ -120,19 +120,19 @@ public override float Alpha set => _context.SetAlpha(value); } - public override LineCap StrokeLineCap + public override PenLineCap StrokeLineCap { set { - if (value == LineCap.Butt) + if (value == PenLineCap.Flat) { _context.SetLineCap(CGLineCap.Butt); } - else if (value == LineCap.Round) + else if (value == PenLineCap.Round) { _context.SetLineCap(CGLineCap.Round); } - else if (value == LineCap.Square) + else if (value == PenLineCap.Square) { _context.SetLineCap(CGLineCap.Square); } diff --git a/src/Microsoft.Maui.Graphics/PenLineCap.cs b/src/Microsoft.Maui.Graphics/PenLineCap.cs new file mode 100644 index 00000000..3b40597c --- /dev/null +++ b/src/Microsoft.Maui.Graphics/PenLineCap.cs @@ -0,0 +1,9 @@ +namespace Microsoft.Maui.Graphics +{ + public enum PenLineCap + { + Flat, + Square, + Round + } +} diff --git a/src/Microsoft.Maui.Graphics/PictureCanvas.cs b/src/Microsoft.Maui.Graphics/PictureCanvas.cs index cc83f733..5ced80fa 100644 --- a/src/Microsoft.Maui.Graphics/PictureCanvas.cs +++ b/src/Microsoft.Maui.Graphics/PictureCanvas.cs @@ -56,7 +56,7 @@ public Color StrokeColor set { _commands.Add(canvas => canvas.StrokeColor = value); } } - public LineCap StrokeLineCap + public PenLineCap StrokeLineCap { set { _commands.Add(canvas => canvas.StrokeLineCap = value); } } diff --git a/src/Microsoft.Maui.Graphics/ScalingCanvas.cs b/src/Microsoft.Maui.Graphics/ScalingCanvas.cs index f32bd9f8..0ce6613d 100644 --- a/src/Microsoft.Maui.Graphics/ScalingCanvas.cs +++ b/src/Microsoft.Maui.Graphics/ScalingCanvas.cs @@ -52,7 +52,7 @@ public Color StrokeColor set => _canvas.StrokeColor = value; } - public LineCap StrokeLineCap + public PenLineCap StrokeLineCap { set => _canvas.StrokeLineCap = value; } From 13c578ee8365656db703f563978b1578dcb96110 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Javier=20Su=C3=A1rez=20Ruiz?= Date: Tue, 16 Nov 2021 12:50:26 +0100 Subject: [PATCH 2/6] Update LineJoin to use the MAUI type --- src/Microsoft.Maui.Graphics.Skia/SkiaCanvas.cs | 2 +- src/Microsoft.Maui.Graphics.Skia/SkiaCanvasState.cs | 8 ++++---- .../W2DCanvas.cs | 2 +- .../W2DCanvasState.cs | 6 +++--- src/Microsoft.Maui.Graphics/AbstractCanvas.cs | 2 +- src/Microsoft.Maui.Graphics/Android/NativeCanvas.cs | 2 +- src/Microsoft.Maui.Graphics/Android/NativeCanvasState.cs | 8 ++++---- src/Microsoft.Maui.Graphics/CanvasExtensions.cs | 2 +- src/Microsoft.Maui.Graphics/ICanvas.cs | 2 +- src/Microsoft.Maui.Graphics/MaciOS/NativeCanvas.cs | 8 ++++---- .../{LineJoin.cs => PenLineJoin.cs} | 6 +++--- src/Microsoft.Maui.Graphics/PictureCanvas.cs | 2 +- src/Microsoft.Maui.Graphics/ScalingCanvas.cs | 2 +- 13 files changed, 26 insertions(+), 26 deletions(-) rename src/Microsoft.Maui.Graphics/{LineJoin.cs => PenLineJoin.cs} (55%) diff --git a/src/Microsoft.Maui.Graphics.Skia/SkiaCanvas.cs b/src/Microsoft.Maui.Graphics.Skia/SkiaCanvas.cs index 209a3af0..ceba80dd 100644 --- a/src/Microsoft.Maui.Graphics.Skia/SkiaCanvas.cs +++ b/src/Microsoft.Maui.Graphics.Skia/SkiaCanvas.cs @@ -60,7 +60,7 @@ public override PenLineCap StrokeLineCap set => CurrentState.StrokeLineCap = value; } - public override LineJoin StrokeLineJoin + public override PenLineJoin StrokeLineJoin { set => CurrentState.StrokeLineJoin = value; } diff --git a/src/Microsoft.Maui.Graphics.Skia/SkiaCanvasState.cs b/src/Microsoft.Maui.Graphics.Skia/SkiaCanvasState.cs index 26150d7e..0d5562a2 100644 --- a/src/Microsoft.Maui.Graphics.Skia/SkiaCanvasState.cs +++ b/src/Microsoft.Maui.Graphics.Skia/SkiaCanvasState.cs @@ -101,15 +101,15 @@ public PenLineCap StrokeLineCap } } - public LineJoin StrokeLineJoin + public PenLineJoin StrokeLineJoin { set { - if (value == LineJoin.Miter) + if (value == PenLineJoin.Miter) StrokePaint.StrokeJoin = SKStrokeJoin.Miter; - else if (value == LineJoin.Round) + else if (value == PenLineJoin.Round) StrokePaint.StrokeJoin = SKStrokeJoin.Round; - else if (value == LineJoin.Bevel) + else if (value == PenLineJoin.Bevel) StrokePaint.StrokeJoin = SKStrokeJoin.Bevel; } } diff --git a/src/Microsoft.Maui.Graphics.Win2D.WinUI.Desktop/W2DCanvas.cs b/src/Microsoft.Maui.Graphics.Win2D.WinUI.Desktop/W2DCanvas.cs index a0b80845..ea5245cf 100644 --- a/src/Microsoft.Maui.Graphics.Win2D.WinUI.Desktop/W2DCanvas.cs +++ b/src/Microsoft.Maui.Graphics.Win2D.WinUI.Desktop/W2DCanvas.cs @@ -69,7 +69,7 @@ public override PenLineCap StrokeLineCap set => CurrentState.StrokeLineCap = value; } - public override LineJoin StrokeLineJoin + public override PenLineJoin StrokeLineJoin { set => CurrentState.StrokeLineJoin = value; } diff --git a/src/Microsoft.Maui.Graphics.Win2D.WinUI.Desktop/W2DCanvasState.cs b/src/Microsoft.Maui.Graphics.Win2D.WinUI.Desktop/W2DCanvasState.cs index 5701cc23..77caa9f4 100644 --- a/src/Microsoft.Maui.Graphics.Win2D.WinUI.Desktop/W2DCanvasState.cs +++ b/src/Microsoft.Maui.Graphics.Win2D.WinUI.Desktop/W2DCanvasState.cs @@ -234,16 +234,16 @@ public PenLineCap StrokeLineCap } } - public LineJoin StrokeLineJoin + public PenLineJoin StrokeLineJoin { set { switch (value) { - case LineJoin.Bevel: + case PenLineJoin.Bevel: _lineJoin = CanvasLineJoin.Bevel; break; - case LineJoin.Round: + case PenLineJoin.Round: _lineJoin = CanvasLineJoin.Round; break; default: diff --git a/src/Microsoft.Maui.Graphics/AbstractCanvas.cs b/src/Microsoft.Maui.Graphics/AbstractCanvas.cs index ede2eed2..8c8bfe90 100644 --- a/src/Microsoft.Maui.Graphics/AbstractCanvas.cs +++ b/src/Microsoft.Maui.Graphics/AbstractCanvas.cs @@ -99,7 +99,7 @@ public float StrokeSize public abstract float MiterLimit { set; } public abstract Color StrokeColor { set; } public abstract PenLineCap StrokeLineCap { set; } - public abstract LineJoin StrokeLineJoin { set; } + public abstract PenLineJoin StrokeLineJoin { set; } public float[] StrokeDashPattern { diff --git a/src/Microsoft.Maui.Graphics/Android/NativeCanvas.cs b/src/Microsoft.Maui.Graphics/Android/NativeCanvas.cs index a7d4819c..be9e205c 100644 --- a/src/Microsoft.Maui.Graphics/Android/NativeCanvas.cs +++ b/src/Microsoft.Maui.Graphics/Android/NativeCanvas.cs @@ -112,7 +112,7 @@ public override PenLineCap StrokeLineCap set => CurrentState.StrokeLineCap = value; } - public override LineJoin StrokeLineJoin + public override PenLineJoin StrokeLineJoin { set => CurrentState.StrokeLineJoin = value; } diff --git a/src/Microsoft.Maui.Graphics/Android/NativeCanvasState.cs b/src/Microsoft.Maui.Graphics/Android/NativeCanvasState.cs index c8a350fb..577c0fc7 100644 --- a/src/Microsoft.Maui.Graphics/Android/NativeCanvasState.cs +++ b/src/Microsoft.Maui.Graphics/Android/NativeCanvasState.cs @@ -93,15 +93,15 @@ public PenLineCap StrokeLineCap } } - public LineJoin StrokeLineJoin + public PenLineJoin StrokeLineJoin { set { - if (value == LineJoin.Miter) + if (value == PenLineJoin.Miter) StrokePaint.StrokeJoin = global::Android.Graphics.Paint.Join.Miter; - else if (value == LineJoin.Round) + else if (value == PenLineJoin.Round) StrokePaint.StrokeJoin = global::Android.Graphics.Paint.Join.Round; - else if (value == LineJoin.Bevel) + else if (value == PenLineJoin.Bevel) StrokePaint.StrokeJoin = global::Android.Graphics.Paint.Join.Bevel; } } diff --git a/src/Microsoft.Maui.Graphics/CanvasExtensions.cs b/src/Microsoft.Maui.Graphics/CanvasExtensions.cs index 15adef19..8876a5b8 100644 --- a/src/Microsoft.Maui.Graphics/CanvasExtensions.cs +++ b/src/Microsoft.Maui.Graphics/CanvasExtensions.cs @@ -322,7 +322,7 @@ public static void ResetStroke(this ICanvas canvas) { canvas.StrokeSize = 1; canvas.StrokeDashPattern = null; - canvas.StrokeLineJoin = LineJoin.Miter; + canvas.StrokeLineJoin = PenLineJoin.Miter; canvas.StrokeLineCap = PenLineCap.Flat; canvas.StrokeColor = Colors.Black; } diff --git a/src/Microsoft.Maui.Graphics/ICanvas.cs b/src/Microsoft.Maui.Graphics/ICanvas.cs index 2203e3ea..d9ff0c22 100644 --- a/src/Microsoft.Maui.Graphics/ICanvas.cs +++ b/src/Microsoft.Maui.Graphics/ICanvas.cs @@ -13,7 +13,7 @@ public interface ICanvas public float MiterLimit { set; } public Color StrokeColor { set; } public PenLineCap StrokeLineCap { set; } - public LineJoin StrokeLineJoin { set; } + public PenLineJoin StrokeLineJoin { set; } public float[] StrokeDashPattern { set; } public Color FillColor { set; } public Color FontColor { set; } diff --git a/src/Microsoft.Maui.Graphics/MaciOS/NativeCanvas.cs b/src/Microsoft.Maui.Graphics/MaciOS/NativeCanvas.cs index b044e2ad..0bbc8c32 100644 --- a/src/Microsoft.Maui.Graphics/MaciOS/NativeCanvas.cs +++ b/src/Microsoft.Maui.Graphics/MaciOS/NativeCanvas.cs @@ -139,19 +139,19 @@ public override PenLineCap StrokeLineCap } } - public override LineJoin StrokeLineJoin + public override PenLineJoin StrokeLineJoin { set { - if (value == LineJoin.Miter) + if (value == PenLineJoin.Miter) { _context.SetLineJoin(CGLineJoin.Miter); } - else if (value == LineJoin.Round) + else if (value == PenLineJoin.Round) { _context.SetLineJoin(CGLineJoin.Round); } - else if (value == LineJoin.Bevel) + else if (value == PenLineJoin.Bevel) { _context.SetLineJoin(CGLineJoin.Bevel); } diff --git a/src/Microsoft.Maui.Graphics/LineJoin.cs b/src/Microsoft.Maui.Graphics/PenLineJoin.cs similarity index 55% rename from src/Microsoft.Maui.Graphics/LineJoin.cs rename to src/Microsoft.Maui.Graphics/PenLineJoin.cs index e05aa5bd..bbf0ab7d 100644 --- a/src/Microsoft.Maui.Graphics/LineJoin.cs +++ b/src/Microsoft.Maui.Graphics/PenLineJoin.cs @@ -1,9 +1,9 @@ namespace Microsoft.Maui.Graphics { - public enum LineJoin + public enum PenLineJoin { Miter, - Round, - Bevel + Bevel, + Round } } diff --git a/src/Microsoft.Maui.Graphics/PictureCanvas.cs b/src/Microsoft.Maui.Graphics/PictureCanvas.cs index 5ced80fa..6ce450cf 100644 --- a/src/Microsoft.Maui.Graphics/PictureCanvas.cs +++ b/src/Microsoft.Maui.Graphics/PictureCanvas.cs @@ -61,7 +61,7 @@ public PenLineCap StrokeLineCap set { _commands.Add(canvas => canvas.StrokeLineCap = value); } } - public LineJoin StrokeLineJoin + public PenLineJoin StrokeLineJoin { set { _commands.Add(canvas => canvas.StrokeLineJoin = value); } } diff --git a/src/Microsoft.Maui.Graphics/ScalingCanvas.cs b/src/Microsoft.Maui.Graphics/ScalingCanvas.cs index 0ce6613d..445ea642 100644 --- a/src/Microsoft.Maui.Graphics/ScalingCanvas.cs +++ b/src/Microsoft.Maui.Graphics/ScalingCanvas.cs @@ -62,7 +62,7 @@ public float Alpha set => _canvas.Alpha = value; } - public LineJoin StrokeLineJoin + public PenLineJoin StrokeLineJoin { set => _canvas.StrokeLineJoin = value; } From f2dbc5a3a0beb64186f292d611d882890e3f56e7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Javier=20Su=C3=A1rez=20Ruiz?= Date: Tue, 16 Nov 2021 13:02:12 +0100 Subject: [PATCH 3/6] Renamed FontStyleType to FontSlant --- .../SkiaDelegatingFontService.cs | 4 ++-- src/Microsoft.Maui.Graphics.Skia/SkiaFontFamily.cs | 2 +- src/Microsoft.Maui.Graphics.Skia/SkiaFontStyle.cs | 4 ++-- .../W2DFontStyle.cs | 10 +++++----- .../Android/NativeFontService.cs | 8 ++++---- src/Microsoft.Maui.Graphics/Android/NativeFontStyle.cs | 4 ++-- src/Microsoft.Maui.Graphics/FontFamilyExtensions.cs | 4 ++-- src/Microsoft.Maui.Graphics/FontUtils.cs | 10 +++++----- src/Microsoft.Maui.Graphics/IFontStyle.cs | 6 +++--- src/Microsoft.Maui.Graphics/IFontStyleExtensions.cs | 4 ++-- src/Microsoft.Maui.Graphics/Mac/NativeFontStyle.cs | 4 ++-- src/Microsoft.Maui.Graphics/iOS/NativeFontStyle.cs | 4 ++-- 12 files changed, 32 insertions(+), 32 deletions(-) diff --git a/src/Microsoft.Maui.Graphics.Skia/SkiaDelegatingFontService.cs b/src/Microsoft.Maui.Graphics.Skia/SkiaDelegatingFontService.cs index f6cb63f8..20983cc2 100644 --- a/src/Microsoft.Maui.Graphics.Skia/SkiaDelegatingFontService.cs +++ b/src/Microsoft.Maui.Graphics.Skia/SkiaDelegatingFontService.cs @@ -40,9 +40,9 @@ public SKTypeface GetTypeface(string name) else if (fontStyle != null) { var slant = SKFontStyleSlant.Upright; - if (fontStyle.StyleType == FontStyleType.Italic) + if (fontStyle.StyleType == FontSlant.Italic) slant = SKFontStyleSlant.Italic; - else if (fontStyle.StyleType == FontStyleType.Oblique) + else if (fontStyle.StyleType == FontSlant.Oblique) slant = SKFontStyleSlant.Oblique; typeface = SKTypeface.FromFamilyName(fontStyle.FontFamily.Name, fontStyle.Weight, (int) SKFontStyleWidth.Normal, slant); diff --git a/src/Microsoft.Maui.Graphics.Skia/SkiaFontFamily.cs b/src/Microsoft.Maui.Graphics.Skia/SkiaFontFamily.cs index a774e495..0efff8b5 100644 --- a/src/Microsoft.Maui.Graphics.Skia/SkiaFontFamily.cs +++ b/src/Microsoft.Maui.Graphics.Skia/SkiaFontFamily.cs @@ -31,7 +31,7 @@ private IFontStyle[] InitializeFontStyles() _name, _name, FontUtils.Normal, - FontStyleType.Normal)); + FontSlant.Default)); styles.Sort(); return styles.ToArray(); diff --git a/src/Microsoft.Maui.Graphics.Skia/SkiaFontStyle.cs b/src/Microsoft.Maui.Graphics.Skia/SkiaFontStyle.cs index d64c28c4..e9571c08 100644 --- a/src/Microsoft.Maui.Graphics.Skia/SkiaFontStyle.cs +++ b/src/Microsoft.Maui.Graphics.Skia/SkiaFontStyle.cs @@ -6,7 +6,7 @@ public class SkiaFontStyle : IFontStyle { private readonly SkiaFontFamily _family; - public SkiaFontStyle(SkiaFontFamily family, string id, string name, string fullName, int weight, FontStyleType styleType) + public SkiaFontStyle(SkiaFontFamily family, string id, string name, string fullName, int weight, FontSlant styleType) { _family = family; Id = id; @@ -26,7 +26,7 @@ public SkiaFontStyle(SkiaFontFamily family, string id, string name, string fullN public int Weight { get; } - public FontStyleType StyleType { get; } + public FontSlant StyleType { get; } public override bool Equals(object obj) { diff --git a/src/Microsoft.Maui.Graphics.Win2D.WinUI.Desktop/W2DFontStyle.cs b/src/Microsoft.Maui.Graphics.Win2D.WinUI.Desktop/W2DFontStyle.cs index 2e007391..6783fddf 100644 --- a/src/Microsoft.Maui.Graphics.Win2D.WinUI.Desktop/W2DFontStyle.cs +++ b/src/Microsoft.Maui.Graphics.Win2D.WinUI.Desktop/W2DFontStyle.cs @@ -29,7 +29,7 @@ public W2DFontStyle(W2DFontFamily family, string id, string name, string fullNam public string FullName { get; } - public FontStyleType StyleType { get; } + public FontSlant StyleType { get; } public int Weight { get; } @@ -93,17 +93,17 @@ public Stream OpenStream() public static class FontStyleExtensions { - public static FontStyleType AsStyleType(this FontStyle style) + public static FontSlant AsStyleType(this FontStyle style) { switch (style) { case FontStyle.Italic: - return FontStyleType.Italic; + return FontSlant.Italic; case FontStyle.Oblique: - return FontStyleType.Oblique; + return FontSlant.Oblique; } - return FontStyleType.Normal; + return FontSlant.Default; } } } diff --git a/src/Microsoft.Maui.Graphics/Android/NativeFontService.cs b/src/Microsoft.Maui.Graphics/Android/NativeFontService.cs index ccb3deb3..091d0411 100644 --- a/src/Microsoft.Maui.Graphics/Android/NativeFontService.cs +++ b/src/Microsoft.Maui.Graphics/Android/NativeFontService.cs @@ -75,9 +75,9 @@ public IFontFamily[] InitializeFonts() if (type.Contains("Bold")) weight = FontUtils.Bold; - var styleType = FontStyleType.Normal; + var styleType = FontSlant.Default; if (type.Contains("Italic")) - styleType = FontStyleType.Italic; + styleType = FontSlant.Italic; var fullName = $"{familyName} {type}"; if ("Regular".Equals(type)) @@ -140,7 +140,7 @@ public IFontFamily[] InitializeFonts() if ("Regular".Equals(type)) fullName = familyName; - if (styleType == FontStyleType.Italic) + if (styleType == FontSlant.Italic) { if (weight == FontUtils.Bold) id = id + "-" + "Bold" + italic + suffix; @@ -148,7 +148,7 @@ public IFontFamily[] InitializeFonts() id = id + "-" + italic + suffix; if ("Oblique".Equals(italic)) - styleType = FontStyleType.Oblique; + styleType = FontSlant.Oblique; } else if (weight == FontUtils.Bold) { diff --git a/src/Microsoft.Maui.Graphics/Android/NativeFontStyle.cs b/src/Microsoft.Maui.Graphics/Android/NativeFontStyle.cs index aa808789..4ee2af16 100644 --- a/src/Microsoft.Maui.Graphics/Android/NativeFontStyle.cs +++ b/src/Microsoft.Maui.Graphics/Android/NativeFontStyle.cs @@ -7,7 +7,7 @@ public class NativeFontStyle : IFontStyle, IComparable { private readonly NativeFontFamily _family; - public NativeFontStyle(NativeFontFamily family, string id, string name, string fullName, int weight, FontStyleType styleType, string path, bool resource = false) + public NativeFontStyle(NativeFontFamily family, string id, string name, string fullName, int weight, FontSlant styleType, string path, bool resource = false) { _family = family; Id = id; @@ -29,7 +29,7 @@ public NativeFontStyle(NativeFontFamily family, string id, string name, string f public int Weight { get; } - public FontStyleType StyleType { get; } + public FontSlant StyleType { get; } public string Path { get; } diff --git a/src/Microsoft.Maui.Graphics/FontFamilyExtensions.cs b/src/Microsoft.Maui.Graphics/FontFamilyExtensions.cs index 40f276f0..ae448126 100644 --- a/src/Microsoft.Maui.Graphics/FontFamilyExtensions.cs +++ b/src/Microsoft.Maui.Graphics/FontFamilyExtensions.cs @@ -6,7 +6,7 @@ public static class FontFamilyExtensions { public static IFontStyle GetBoldStyle( this IFontFamily family, - FontStyleType type = FontStyleType.Normal) + FontSlant type = FontSlant.Default) { return family?.GetStyleWithWeightNearestTo(500, type); } @@ -14,7 +14,7 @@ public static IFontStyle GetBoldStyle( public static IFontStyle GetStyleWithWeightNearestTo( this IFontFamily family, int weight, - FontStyleType type = FontStyleType.Normal) + FontSlant type = FontSlant.Default) { if (family == null) return null; diff --git a/src/Microsoft.Maui.Graphics/FontUtils.cs b/src/Microsoft.Maui.Graphics/FontUtils.cs index 445874f9..c20c0466 100644 --- a/src/Microsoft.Maui.Graphics/FontUtils.cs +++ b/src/Microsoft.Maui.Graphics/FontUtils.cs @@ -44,14 +44,14 @@ public static int GetFontWeight(string styleName) return Regular; } - public static FontStyleType GetStyleType(string styleName) + public static FontSlant GetStyleType(string styleName) { - if (styleName == null) return FontStyleType.Normal; + if (styleName == null) return FontSlant.Default; - if (styleName.Contains("Italic")) return FontStyleType.Italic; - if (styleName.Contains("Oblique")) return FontStyleType.Oblique; + if (styleName.Contains("Italic")) return FontSlant.Italic; + if (styleName.Contains("Oblique")) return FontSlant.Oblique; - return FontStyleType.Normal; + return FontSlant.Default; } } } diff --git a/src/Microsoft.Maui.Graphics/IFontStyle.cs b/src/Microsoft.Maui.Graphics/IFontStyle.cs index 9b7cf3e0..3e0591d5 100644 --- a/src/Microsoft.Maui.Graphics/IFontStyle.cs +++ b/src/Microsoft.Maui.Graphics/IFontStyle.cs @@ -9,14 +9,14 @@ public interface IFontStyle : IComparable string Name { get; } string FullName { get; } int Weight { get; } - FontStyleType StyleType { get; } + FontSlant StyleType { get; } IFontFamily FontFamily { get; } Stream OpenStream(); } - public enum FontStyleType + public enum FontSlant { - Normal, + Default, Italic, Oblique } diff --git a/src/Microsoft.Maui.Graphics/IFontStyleExtensions.cs b/src/Microsoft.Maui.Graphics/IFontStyleExtensions.cs index 96ef6784..db206861 100644 --- a/src/Microsoft.Maui.Graphics/IFontStyleExtensions.cs +++ b/src/Microsoft.Maui.Graphics/IFontStyleExtensions.cs @@ -24,10 +24,10 @@ public static string GetSvgStyle(this IFontStyle style) if (style == null) return null; - if (style.StyleType == FontStyleType.Italic) + if (style.StyleType == FontSlant.Italic) return "italic"; - if (style.StyleType == FontStyleType.Oblique) + if (style.StyleType == FontSlant.Oblique) return "oblique"; return "normal"; diff --git a/src/Microsoft.Maui.Graphics/Mac/NativeFontStyle.cs b/src/Microsoft.Maui.Graphics/Mac/NativeFontStyle.cs index b32fcbc9..231b14f1 100644 --- a/src/Microsoft.Maui.Graphics/Mac/NativeFontStyle.cs +++ b/src/Microsoft.Maui.Graphics/Mac/NativeFontStyle.cs @@ -6,7 +6,7 @@ public class NativeFontStyle : IFontStyle { private readonly NativeFontFamily _family; - public NativeFontStyle(NativeFontFamily family, string id, string name, string fullName, int weight, FontStyleType styleType) + public NativeFontStyle(NativeFontFamily family, string id, string name, string fullName, int weight, FontSlant styleType) { _family = family; Id = id; @@ -26,7 +26,7 @@ public NativeFontStyle(NativeFontFamily family, string id, string name, string f public int Weight { get; } - public FontStyleType StyleType { get; } + public FontSlant StyleType { get; } public override bool Equals(object obj) { diff --git a/src/Microsoft.Maui.Graphics/iOS/NativeFontStyle.cs b/src/Microsoft.Maui.Graphics/iOS/NativeFontStyle.cs index 69db6c78..0694f696 100644 --- a/src/Microsoft.Maui.Graphics/iOS/NativeFontStyle.cs +++ b/src/Microsoft.Maui.Graphics/iOS/NativeFontStyle.cs @@ -6,7 +6,7 @@ public class NativeFontStyle : IFontStyle { private readonly NativeFontFamily _family; - public NativeFontStyle(NativeFontFamily family, string id, string name, string fullName, int weight, FontStyleType styleType) + public NativeFontStyle(NativeFontFamily family, string id, string name, string fullName, int weight, FontSlant styleType) { _family = family; Id = id; @@ -26,7 +26,7 @@ public NativeFontStyle(NativeFontFamily family, string id, string name, string f public int Weight { get; } - public FontStyleType StyleType { get; } + public FontSlant StyleType { get; } public override bool Equals(object obj) { From d61e278637442542a493f488c8c7dde4c1f8389d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Javier=20Su=C3=A1rez=20Ruiz?= Date: Tue, 16 Nov 2021 13:29:44 +0100 Subject: [PATCH 4/6] Use TextAlignment enum from .NET MAUI --- .../SkiaCanvas.cs | 12 +++--- .../SkiaTextLayout.cs | 22 +++++----- .../W2DCanvas.cs | 28 ++++++------- src/Microsoft.Maui.Graphics/AbstractCanvas.cs | 6 +-- .../Android/GraphicsExtensions.cs | 8 ++-- .../Android/NativeCanvas.cs | 16 ++++---- .../CanvasExtensions.cs | 8 ++-- .../HorizontalAlignment.cs | 10 ----- src/Microsoft.Maui.Graphics/ICanvas.cs | 6 +-- .../ITextAttributes.cs | 4 +- .../MaciOS/NativeCanvas.cs | 40 +++++++++---------- src/Microsoft.Maui.Graphics/ScalingCanvas.cs | 4 +- src/Microsoft.Maui.Graphics/TextAlignment.cs | 9 +++++ .../VerticalAlignment.cs | 9 ----- 14 files changed, 86 insertions(+), 96 deletions(-) delete mode 100644 src/Microsoft.Maui.Graphics/HorizontalAlignment.cs create mode 100644 src/Microsoft.Maui.Graphics/TextAlignment.cs delete mode 100644 src/Microsoft.Maui.Graphics/VerticalAlignment.cs diff --git a/src/Microsoft.Maui.Graphics.Skia/SkiaCanvas.cs b/src/Microsoft.Maui.Graphics.Skia/SkiaCanvas.cs index ceba80dd..8f551a28 100644 --- a/src/Microsoft.Maui.Graphics.Skia/SkiaCanvas.cs +++ b/src/Microsoft.Maui.Graphics.Skia/SkiaCanvas.cs @@ -678,16 +678,16 @@ public override void DrawString( string value, float x, float y, - HorizontalAlignment horizAlignment) + TextAlignment horizAlignment) { if (string.IsNullOrEmpty(value)) return; - if (horizAlignment == HorizontalAlignment.Left) + if (horizAlignment == TextAlignment.Start) { _canvas.DrawText(value, x, y, CurrentState.FontPaint); } - else if (horizAlignment == HorizontalAlignment.Right) + else if (horizAlignment == TextAlignment.End) { var paint = CurrentState.FontPaint; var width = paint.MeasureText(value); @@ -709,8 +709,8 @@ public override void DrawString( float y, float width, float height, - HorizontalAlignment horizAlignment, - VerticalAlignment vertAlignment, + TextAlignment horizAlignment, + TextAlignment vertAlignment, TextFlow textFlow = TextFlow.ClipBounds, float lineSpacingAdjustment = 0) { @@ -747,7 +747,7 @@ public override void DrawString( public override void DrawText(IAttributedText value, float x, float y, float width, float height) { Logger.Debug("Not yet implemented."); - DrawString(value?.Text, x, y, width, height, HorizontalAlignment.Left, VerticalAlignment.Top); + DrawString(value?.Text, x, y, width, height, TextAlignment.Start, TextAlignment.Start); } public override void ResetState() diff --git a/src/Microsoft.Maui.Graphics.Skia/SkiaTextLayout.cs b/src/Microsoft.Maui.Graphics.Skia/SkiaTextLayout.cs index 2fa90368..b8467185 100644 --- a/src/Microsoft.Maui.Graphics.Skia/SkiaTextLayout.cs +++ b/src/Microsoft.Maui.Graphics.Skia/SkiaTextLayout.cs @@ -67,18 +67,18 @@ public void LayoutText() var top = y; var bottom = y + height; - if (_textAttributes.HorizontalAlignment == HorizontalAlignment.Right) + if (_textAttributes.HorizontalAlignment == TextAlignment.End) _paint.TextAlign = SKTextAlign.Right; - else if (_textAttributes.HorizontalAlignment == HorizontalAlignment.Center) + else if (_textAttributes.HorizontalAlignment == TextAlignment.Center) _paint.TextAlign = SKTextAlign.Center; var lines = CreateLines(y, bottom, width); switch (_textAttributes.VerticalAlignment) { - case VerticalAlignment.Center: + case TextAlignment.Center: LayoutCenterAligned(lines, x, width, top, height); break; - case VerticalAlignment.Bottom: + case TextAlignment.End: LayoutBottomAligned(lines, x, width, bottom, top); break; default: @@ -130,10 +130,10 @@ private void LayoutCenterAligned( var point = new PointF(x, y); switch (_textAttributes.HorizontalAlignment) { - case HorizontalAlignment.Center: + case TextAlignment.Center: point.X = x + width / 2; break; - case HorizontalAlignment.Right: + case TextAlignment.End: point.X = x + width; break; } @@ -161,10 +161,10 @@ private void LayoutBottomAligned( var point = new PointF(x, y); switch (_textAttributes.HorizontalAlignment) { - case HorizontalAlignment.Center: + case TextAlignment.Center: point.X = x + width / 2; break; - case HorizontalAlignment.Right: + case TextAlignment.End: point.X = x + width; break; } @@ -190,10 +190,10 @@ private void LayoutTopAligned( var point = new PointF(x, y); switch (_textAttributes.HorizontalAlignment) { - case HorizontalAlignment.Center: + case TextAlignment.Center: point.X = x + width / 2; break; - case HorizontalAlignment.Right: + case TextAlignment.End: point.X = x + width; break; } @@ -212,7 +212,7 @@ private List CreateLines(float y, float bottom, float width) { y += _lineHeight; - if (_textFlow == TextFlow.ClipBounds && _textAttributes.VerticalAlignment == VerticalAlignment.Top && y > bottom) + if (_textFlow == TextFlow.ClipBounds && _textAttributes.VerticalAlignment == TextAlignment.Start && y > bottom) return lines; var count = (int) _paint.BreakText(_value.Substring(index), width, out var textWidth); diff --git a/src/Microsoft.Maui.Graphics.Win2D.WinUI.Desktop/W2DCanvas.cs b/src/Microsoft.Maui.Graphics.Win2D.WinUI.Desktop/W2DCanvas.cs index ea5245cf..062daf98 100644 --- a/src/Microsoft.Maui.Graphics.Win2D.WinUI.Desktop/W2DCanvas.cs +++ b/src/Microsoft.Maui.Graphics.Win2D.WinUI.Desktop/W2DCanvas.cs @@ -234,7 +234,7 @@ public override void FillEllipse(float x, float y, float width, float height) Draw(s => s.FillEllipse(_point1, radiusX, radiusY, CurrentState.NativeFillBrush)); } - public override void DrawString(string value, float x, float y, HorizontalAlignment horizontalAlignment) + public override void DrawString(string value, float x, float y, TextAlignment horizontalAlignment) { // Initialize a TextFormat #if DEBUG @@ -252,12 +252,12 @@ public override void DrawString(string value, float x, float y, HorizontalAlignm switch (horizontalAlignment) { - case HorizontalAlignment.Left: + case TextAlignment.Start: _rect.X = x; _rect.Width = CanvasSize.Width; textFormat.HorizontalAlignment = CanvasHorizontalAlignment.Left; break; - case HorizontalAlignment.Right: + case TextAlignment.End: _rect.X = x - CanvasSize.Width; _rect.Width = CanvasSize.Width; textFormat.HorizontalAlignment = CanvasHorizontalAlignment.Right; @@ -300,8 +300,8 @@ public override void DrawString( float y, float width, float height, - HorizontalAlignment horizontalAlignment, - VerticalAlignment verticalAlignment, + TextAlignment horizontalAlignment, + TextAlignment verticalAlignment, TextFlow textFlow = TextFlow.ClipBounds, float lineAdjustment = 0) { @@ -315,29 +315,29 @@ public override void DrawString( switch (horizontalAlignment) { - case HorizontalAlignment.Left: + case TextAlignment.Start: textFormat.HorizontalAlignment = CanvasHorizontalAlignment.Left; break; - case HorizontalAlignment.Center: + case TextAlignment.Center: textFormat.HorizontalAlignment = CanvasHorizontalAlignment.Center; break; - case HorizontalAlignment.Right: + case TextAlignment.End: textFormat.HorizontalAlignment = CanvasHorizontalAlignment.Right; break; - case HorizontalAlignment.Justified: - textFormat.HorizontalAlignment = CanvasHorizontalAlignment.Justified; - break; + //case TextAlignment.Justified: + // textFormat.HorizontalAlignment = CanvasHorizontalAlignment.Justified; + // break; } switch (verticalAlignment) { - case VerticalAlignment.Top: + case TextAlignment.Start: textFormat.VerticalAlignment = CanvasVerticalAlignment.Top; break; - case VerticalAlignment.Center: + case TextAlignment.Center: textFormat.VerticalAlignment = CanvasVerticalAlignment.Center; break; - case VerticalAlignment.Bottom: + case TextAlignment.End: textFormat.VerticalAlignment = CanvasVerticalAlignment.Bottom; break; } diff --git a/src/Microsoft.Maui.Graphics/AbstractCanvas.cs b/src/Microsoft.Maui.Graphics/AbstractCanvas.cs index 8c8bfe90..817de633 100644 --- a/src/Microsoft.Maui.Graphics/AbstractCanvas.cs +++ b/src/Microsoft.Maui.Graphics/AbstractCanvas.cs @@ -169,7 +169,7 @@ public void DrawEllipse(float x, float y, float width, float height) } public abstract void FillEllipse(float x, float y, float width, float height); - public abstract void DrawString(string value, float x, float y, HorizontalAlignment horizontalAlignment); + public abstract void DrawString(string value, float x, float y, TextAlignment horizontalAlignment); public abstract void DrawString( string value, @@ -177,8 +177,8 @@ public abstract void DrawString( float y, float width, float height, - HorizontalAlignment horizontalAlignment, - VerticalAlignment verticalAlignment, + TextAlignment horizontalAlignment, + TextAlignment verticalAlignment, TextFlow textFlow = TextFlow.ClipBounds, float lineSpacingAdjustment = 0); diff --git a/src/Microsoft.Maui.Graphics/Android/GraphicsExtensions.cs b/src/Microsoft.Maui.Graphics/Android/GraphicsExtensions.cs index 8561046d..00b8b81e 100644 --- a/src/Microsoft.Maui.Graphics/Android/GraphicsExtensions.cs +++ b/src/Microsoft.Maui.Graphics/Android/GraphicsExtensions.cs @@ -406,10 +406,10 @@ public static SizeF GetOffsetsToDrawText( float y, float width, float height, - HorizontalAlignment horizontalAlignment, - VerticalAlignment verticalAlignment) + TextAlignment horizontalAlignment, + TextAlignment verticalAlignment) { - if (verticalAlignment != VerticalAlignment.Top) + if (verticalAlignment != TextAlignment.Start) { SizeF vTextFrameSize = target.GetTextSize(); @@ -418,7 +418,7 @@ public static SizeF GetOffsetsToDrawText( if (height > 0) { - if (verticalAlignment == VerticalAlignment.Bottom) + if (verticalAlignment == TextAlignment.End) vOffsetY = height - vTextFrameSize.Height; else vOffsetY = (height - vTextFrameSize.Height) / 2; diff --git a/src/Microsoft.Maui.Graphics/Android/NativeCanvas.cs b/src/Microsoft.Maui.Graphics/Android/NativeCanvas.cs index be9e205c..c85ccfa4 100644 --- a/src/Microsoft.Maui.Graphics/Android/NativeCanvas.cs +++ b/src/Microsoft.Maui.Graphics/Android/NativeCanvas.cs @@ -623,11 +623,11 @@ public override void FillPath(PathF path, WindingMode windingMode) nativePath.Dispose(); } - public override void DrawString(string value, float x, float y, HorizontalAlignment horizAlignment) + public override void DrawString(string value, float x, float y, TextAlignment horizAlignment) { - if (horizAlignment == HorizontalAlignment.Left) + if (horizAlignment == TextAlignment.Start) DrawString(value, x, y); - else if (horizAlignment == HorizontalAlignment.Right) + else if (horizAlignment == TextAlignment.End) { SizeF vSize = NativeGraphicsService.Instance.GetStringSize( value, @@ -672,8 +672,8 @@ public override void DrawString( float y, float width, float height, - HorizontalAlignment horizAlignment, - VerticalAlignment vertAlignment, + TextAlignment horizAlignment, + TextAlignment vertAlignment, TextFlow textFlow = TextFlow.ClipBounds, float lineSpacingAdjustment = 0) { @@ -683,11 +683,11 @@ public override void DrawString( _canvas.Save(); var alignment = Layout.Alignment.AlignNormal; - if (horizAlignment == HorizontalAlignment.Center) + if (horizAlignment == TextAlignment.Center) { alignment = Layout.Alignment.AlignCenter; } - else if (horizAlignment == HorizontalAlignment.Right) + else if (horizAlignment == TextAlignment.End) { alignment = Layout.Alignment.AlignOpposite; } @@ -704,7 +704,7 @@ public override void DrawText(IAttributedText value, float x, float y, float wid _canvas.Save(); var span = value.AsSpannableString(); var layout = TextLayoutUtils.CreateLayoutForSpannedString(span, CurrentState.FontPaint, (int) width, Layout.Alignment.AlignNormal); - var offset = layout.GetOffsetsToDrawText(x, y, width, height, HorizontalAlignment.Left, VerticalAlignment.Top); + var offset = layout.GetOffsetsToDrawText(x, y, width, height, TextAlignment.Start, TextAlignment.Start); _canvas.Translate(offset.Width, offset.Height); layout.Draw(_canvas); layout.Dispose(); diff --git a/src/Microsoft.Maui.Graphics/CanvasExtensions.cs b/src/Microsoft.Maui.Graphics/CanvasExtensions.cs index 8876a5b8..fd42312a 100644 --- a/src/Microsoft.Maui.Graphics/CanvasExtensions.cs +++ b/src/Microsoft.Maui.Graphics/CanvasExtensions.cs @@ -143,8 +143,8 @@ public static void DrawString( this ICanvas target, string value, Rectangle bounds, - HorizontalAlignment horizontalAlignment, - VerticalAlignment verticalAlignment, + TextAlignment horizontalAlignment, + TextAlignment verticalAlignment, TextFlow textFlow = TextFlow.ClipBounds, float lineSpacingAdjustment = 0) { @@ -155,8 +155,8 @@ public static void DrawString( this ICanvas target, string value, RectangleF bounds, - HorizontalAlignment horizontalAlignment, - VerticalAlignment verticalAlignment, + TextAlignment horizontalAlignment, + TextAlignment verticalAlignment, TextFlow textFlow = TextFlow.ClipBounds, float lineSpacingAdjustment = 0) { diff --git a/src/Microsoft.Maui.Graphics/HorizontalAlignment.cs b/src/Microsoft.Maui.Graphics/HorizontalAlignment.cs deleted file mode 100644 index ba7a54aa..00000000 --- a/src/Microsoft.Maui.Graphics/HorizontalAlignment.cs +++ /dev/null @@ -1,10 +0,0 @@ -namespace Microsoft.Maui.Graphics -{ - public enum HorizontalAlignment - { - Left = 0, - Center = 1, - Right = 2, - Justified = 3 - } -} diff --git a/src/Microsoft.Maui.Graphics/ICanvas.cs b/src/Microsoft.Maui.Graphics/ICanvas.cs index d9ff0c22..0cc5f7e3 100644 --- a/src/Microsoft.Maui.Graphics/ICanvas.cs +++ b/src/Microsoft.Maui.Graphics/ICanvas.cs @@ -50,7 +50,7 @@ public interface ICanvas public void FillEllipse(float x, float y, float width, float height); - public void DrawString(string value, float x, float y, HorizontalAlignment horizontalAlignment); + public void DrawString(string value, float x, float y, TextAlignment horizontalAlignment); public void DrawString( string value, @@ -58,8 +58,8 @@ public void DrawString( float y, float width, float height, - HorizontalAlignment horizontalAlignment, - VerticalAlignment verticalAlignment, + TextAlignment horizontalAlignment, + TextAlignment verticalAlignment, TextFlow textFlow = TextFlow.ClipBounds, float lineSpacingAdjustment = 0); diff --git a/src/Microsoft.Maui.Graphics/ITextAttributes.cs b/src/Microsoft.Maui.Graphics/ITextAttributes.cs index 2440acaf..8733a8a5 100644 --- a/src/Microsoft.Maui.Graphics/ITextAttributes.cs +++ b/src/Microsoft.Maui.Graphics/ITextAttributes.cs @@ -10,8 +10,8 @@ public interface ITextAttributes Color TextFontColor { get; set; } - HorizontalAlignment HorizontalAlignment { get; set; } + TextAlignment HorizontalAlignment { get; set; } - VerticalAlignment VerticalAlignment { get; set; } + TextAlignment VerticalAlignment { get; set; } } } diff --git a/src/Microsoft.Maui.Graphics/MaciOS/NativeCanvas.cs b/src/Microsoft.Maui.Graphics/MaciOS/NativeCanvas.cs index 0bbc8c32..666ce48b 100644 --- a/src/Microsoft.Maui.Graphics/MaciOS/NativeCanvas.cs +++ b/src/Microsoft.Maui.Graphics/MaciOS/NativeCanvas.cs @@ -1029,16 +1029,16 @@ public override void DrawString( string value, float x, float y, - HorizontalAlignment horizontalAlignment) + TextAlignment horizontalAlignment) { if (_fontName != null && _fontName[0] == '.') _fontName = "Helvetica"; - if (horizontalAlignment == HorizontalAlignment.Left) + if (horizontalAlignment == TextAlignment.Start) { DrawString(value, x, y); } - else if (horizontalAlignment == HorizontalAlignment.Right) + else if (horizontalAlignment == TextAlignment.End) { var size = GraphicsPlatform.CurrentService.GetStringSize(value, _fontName, _fontSize); x -= size.Width; @@ -1067,8 +1067,8 @@ public override void DrawString( float y, float width, float height, - HorizontalAlignment horizontalAlignment, - VerticalAlignment verticalAlignment, + TextAlignment horizontalAlignment, + TextAlignment verticalAlignment, TextFlow textFlow = TextFlow.ClipBounds, float lineSpacingAdjustment = 0) { @@ -1114,8 +1114,8 @@ public override void DrawText(IAttributedText value, float x, float y, float wid private void DrawStringInNativePath( CGPath path, string value, - HorizontalAlignment horizontalAlignment, - VerticalAlignment verticalAlignment, + TextAlignment horizontalAlignment, + TextAlignment verticalAlignment, TextFlow textFlow, CGContext context, String fontName, @@ -1145,11 +1145,11 @@ private void DrawStringInNativePath( if (font != null && font.Handle != IntPtr.Zero) attributes.Font = font; - if (verticalAlignment == VerticalAlignment.Center) + if (verticalAlignment == TextAlignment.Center) { iy += -(float)(font.DescentMetric / 2); } - else if (verticalAlignment == VerticalAlignment.Bottom) + else if (verticalAlignment == TextAlignment.End) { iy += -(float)(font.DescentMetric); } @@ -1158,18 +1158,18 @@ private void DrawStringInNativePath( var paragraphSettings = new CTParagraphStyleSettings(); switch (horizontalAlignment) { - case HorizontalAlignment.Left: + case TextAlignment.Start: paragraphSettings.Alignment = CTTextAlignment.Left; break; - case HorizontalAlignment.Center: + case TextAlignment.Center: paragraphSettings.Alignment = CTTextAlignment.Center; break; - case HorizontalAlignment.Right: + case TextAlignment.End: paragraphSettings.Alignment = CTTextAlignment.Right; break; - case HorizontalAlignment.Justified: - paragraphSettings.Alignment = CTTextAlignment.Justified; - break; + //case TextAlignment.Justified: + // paragraphSettings.Alignment = CTTextAlignment.Justified; + // break; } var paragraphStyle = new CTParagraphStyle(paragraphSettings); @@ -1186,7 +1186,7 @@ private void DrawStringInNativePath( if (frame != null) { - if (verticalAlignment != VerticalAlignment.Top) + if (verticalAlignment != TextAlignment.Start) { #if MONOMAC var textFrameSize = NativeGraphicsService.GetTextSize(frame); @@ -1196,7 +1196,7 @@ private void DrawStringInNativePath( if (textFrameSize.Height > 0) { - if (verticalAlignment == VerticalAlignment.Bottom) + if (verticalAlignment == TextAlignment.End) { var dy = rect.Height - textFrameSize.Height + iy; context.TranslateCTM(-ix, -dy); @@ -1255,7 +1255,7 @@ public static void DrawAttributedText( float iy = 0) { var rect = path.PathBoundingBox; - var verticalAlignment = VerticalAlignment.Top; + var verticalAlignment = TextAlignment.Start; context.SaveState(); context.TranslateCTM(0, rect.Height); @@ -1277,7 +1277,7 @@ public static void DrawAttributedText( if (frame != null) { - if (verticalAlignment != VerticalAlignment.Top) + if (verticalAlignment != TextAlignment.Start) { #if MONOMAC var textSize = NativeGraphicsService.GetTextSize(frame); @@ -1287,7 +1287,7 @@ public static void DrawAttributedText( if (textSize.Height > 0) { - if (verticalAlignment == VerticalAlignment.Bottom) + if (verticalAlignment == TextAlignment.End) { var dy = rect.Height - textSize.Height + iy; context.TranslateCTM(-ix, -dy); diff --git a/src/Microsoft.Maui.Graphics/ScalingCanvas.cs b/src/Microsoft.Maui.Graphics/ScalingCanvas.cs index 445ea642..22b75c4f 100644 --- a/src/Microsoft.Maui.Graphics/ScalingCanvas.cs +++ b/src/Microsoft.Maui.Graphics/ScalingCanvas.cs @@ -142,12 +142,12 @@ public void DrawRoundedRectangle(float x, float y, float width, float height, fl _canvas.DrawRoundedRectangle(x * _scaleX, y * _scaleY, width * _scaleX, height * _scaleY, cornerRadius * _scaleX); } - public void DrawString(string value, float x, float y, HorizontalAlignment horizontalAlignment) + public void DrawString(string value, float x, float y, TextAlignment horizontalAlignment) { _canvas.DrawString(value, x * _scaleX, y * _scaleY, horizontalAlignment); } - public void DrawString(string value, float x, float y, float width, float height, HorizontalAlignment horizontalAlignment, VerticalAlignment verticalAlignment, + public void DrawString(string value, float x, float y, float width, float height, TextAlignment horizontalAlignment, TextAlignment verticalAlignment, TextFlow textFlow = TextFlow.ClipBounds, float lineSpacingAdjustment = 0) { _canvas.DrawString(value, x * _scaleX, y * _scaleY, width * _scaleX, height * _scaleY, horizontalAlignment, verticalAlignment, textFlow); diff --git a/src/Microsoft.Maui.Graphics/TextAlignment.cs b/src/Microsoft.Maui.Graphics/TextAlignment.cs new file mode 100644 index 00000000..14b311a5 --- /dev/null +++ b/src/Microsoft.Maui.Graphics/TextAlignment.cs @@ -0,0 +1,9 @@ +namespace Microsoft.Maui.Graphics +{ + public enum TextAlignment + { + Start, + Center, + End + } +} diff --git a/src/Microsoft.Maui.Graphics/VerticalAlignment.cs b/src/Microsoft.Maui.Graphics/VerticalAlignment.cs deleted file mode 100644 index 3e0dc20d..00000000 --- a/src/Microsoft.Maui.Graphics/VerticalAlignment.cs +++ /dev/null @@ -1,9 +0,0 @@ -namespace Microsoft.Maui.Graphics -{ - public enum VerticalAlignment - { - Top = 0, - Center = 1, - Bottom = 2 - } -} From 03abda6143b97229e89ad8daf8286923b87e8903 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Javier=20Su=C3=A1rez=20Ruiz?= Date: Tue, 16 Nov 2021 14:51:37 +0100 Subject: [PATCH 5/6] More changes --- .../Resources/Resource.designer.cs | 20446 +--------------- .../Scenarios/DimensionTest.cs | 2 +- ...awHorizontallyCenteredTextWithSimpleApi.cs | 12 +- .../Scenarios/DrawLines.cs | 8 +- .../Scenarios/DrawLongTextInRect.cs | 4 +- .../DrawLongTextInRectWithOverflow.cs | 4 +- .../DrawLongTextInRectWithoutOverflow.cs | 4 +- .../Scenarios/DrawShortTextInRect.cs | 4 +- .../Scenarios/DrawShortTextInRect2.cs | 4 +- .../Scenarios/DrawTextAtPoint.cs | 14 +- .../Scenarios/DrawTextRotatedAtPoint.cs | 14 +- .../Scenarios/DrawVerticallyCenteredText.cs | 48 +- .../Scenarios/DrawVerticallyCenteredText2.cs | 48 +- .../Scenarios/LineJoins.cs | 8 +- .../Scenarios/TestPattern1.cs | 42 +- .../dist/blazor.extensions.canvas.js | 2 +- .../package-lock.json | 5088 +++- .../BlazorCanvas.cs | 24 +- .../BlazorGraphicsService.cs | 2 +- .../GDICanvas.cs | 38 +- .../GDIFontStyle.cs | 8 +- .../GDIGraphicsService.cs | 2 +- .../Gtk/CanvasExtensions.cs | 12 +- .../Gtk/FontExtensions.cs | 14 +- .../Gtk/NativeCanvas.Text.cs | 7 +- .../Gtk/NativeCanvas.cs | 4 +- .../Gtk/NativeFontStyle.cs | 4 +- .../Gtk/NativeGraphicsService.cs | 2 +- .../Gtk/TextLayout.cs | 30 +- .../Gtk/TextLayoutExtensions.cs | 6 +- .../DXCanvas.cs | 45 +- .../DXCanvasState.cs | 6 +- .../DXFontStyle.cs | 12 +- .../DXGraphicsService.cs | 33 +- .../SkiaGraphicsService.cs | 2 +- .../W2DCanvas.cs | 32 +- .../W2DCanvasState.cs | 12 +- .../W2DFontStyle.cs | 10 +- .../W2DGraphicsService.cs | 2 +- .../W2DGraphicsService.cs | 2 +- .../XamlCanvas.cs | 60 +- .../XamlCanvasState.cs | 47 +- .../XamlCanvas.cs | 59 +- .../XamlCanvasState.cs | 46 +- .../Android/NativeGraphicsService.cs | 6 +- .../GraphicsService.cs | 2 +- .../Mac/NativeGraphicsService.cs | 14 +- src/Microsoft.Maui.Graphics/PictureCanvas.cs | 4 +- .../StandardTextAttributes.cs | 4 +- .../VirtualGraphicsPlatform.cs | 2 +- .../iOS/NativeGraphicsService.cs | 16 +- 51 files changed, 5506 insertions(+), 20815 deletions(-) diff --git a/samples/GraphicsTester.Android/Resources/Resource.designer.cs b/samples/GraphicsTester.Android/Resources/Resource.designer.cs index 04591c2c..aab99896 100644 --- a/samples/GraphicsTester.Android/Resources/Resource.designer.cs +++ b/samples/GraphicsTester.Android/Resources/Resource.designer.cs @@ -25,20446 +25,84 @@ static Resource() public static void UpdateIdValues() { - global::Microsoft.Maui.Graphics.Resource.Animation.abc_fade_in = global::GraphicsTester.Android.Resource.Animation.abc_fade_in; - global::Microsoft.Maui.Graphics.Resource.Animation.abc_fade_out = global::GraphicsTester.Android.Resource.Animation.abc_fade_out; - global::Microsoft.Maui.Graphics.Resource.Animation.abc_grow_fade_in_from_bottom = global::GraphicsTester.Android.Resource.Animation.abc_grow_fade_in_from_bottom; - global::Microsoft.Maui.Graphics.Resource.Animation.abc_popup_enter = global::GraphicsTester.Android.Resource.Animation.abc_popup_enter; - global::Microsoft.Maui.Graphics.Resource.Animation.abc_popup_exit = global::GraphicsTester.Android.Resource.Animation.abc_popup_exit; - global::Microsoft.Maui.Graphics.Resource.Animation.abc_shrink_fade_out_from_bottom = global::GraphicsTester.Android.Resource.Animation.abc_shrink_fade_out_from_bottom; - global::Microsoft.Maui.Graphics.Resource.Animation.abc_slide_in_bottom = global::GraphicsTester.Android.Resource.Animation.abc_slide_in_bottom; - global::Microsoft.Maui.Graphics.Resource.Animation.abc_slide_in_top = global::GraphicsTester.Android.Resource.Animation.abc_slide_in_top; - global::Microsoft.Maui.Graphics.Resource.Animation.abc_slide_out_bottom = global::GraphicsTester.Android.Resource.Animation.abc_slide_out_bottom; - global::Microsoft.Maui.Graphics.Resource.Animation.abc_slide_out_top = global::GraphicsTester.Android.Resource.Animation.abc_slide_out_top; - global::Microsoft.Maui.Graphics.Resource.Animation.abc_tooltip_enter = global::GraphicsTester.Android.Resource.Animation.abc_tooltip_enter; - global::Microsoft.Maui.Graphics.Resource.Animation.abc_tooltip_exit = global::GraphicsTester.Android.Resource.Animation.abc_tooltip_exit; - global::Microsoft.Maui.Graphics.Resource.Animation.btn_checkbox_to_checked_box_inner_merged_animation = global::GraphicsTester.Android.Resource.Animation.btn_checkbox_to_checked_box_inner_merged_animation; - global::Microsoft.Maui.Graphics.Resource.Animation.btn_checkbox_to_checked_box_outer_merged_animation = global::GraphicsTester.Android.Resource.Animation.btn_checkbox_to_checked_box_outer_merged_animation; - global::Microsoft.Maui.Graphics.Resource.Animation.btn_checkbox_to_checked_icon_null_animation = global::GraphicsTester.Android.Resource.Animation.btn_checkbox_to_checked_icon_null_animation; - global::Microsoft.Maui.Graphics.Resource.Animation.btn_checkbox_to_unchecked_box_inner_merged_animation = global::GraphicsTester.Android.Resource.Animation.btn_checkbox_to_unchecked_box_inner_merged_animation; - global::Microsoft.Maui.Graphics.Resource.Animation.btn_checkbox_to_unchecked_check_path_merged_animation = global::GraphicsTester.Android.Resource.Animation.btn_checkbox_to_unchecked_check_path_merged_animation; - global::Microsoft.Maui.Graphics.Resource.Animation.btn_checkbox_to_unchecked_icon_null_animation = global::GraphicsTester.Android.Resource.Animation.btn_checkbox_to_unchecked_icon_null_animation; - global::Microsoft.Maui.Graphics.Resource.Animation.btn_radio_to_off_mtrl_dot_group_animation = global::GraphicsTester.Android.Resource.Animation.btn_radio_to_off_mtrl_dot_group_animation; - global::Microsoft.Maui.Graphics.Resource.Animation.btn_radio_to_off_mtrl_ring_outer_animation = global::GraphicsTester.Android.Resource.Animation.btn_radio_to_off_mtrl_ring_outer_animation; - global::Microsoft.Maui.Graphics.Resource.Animation.btn_radio_to_off_mtrl_ring_outer_path_animation = global::GraphicsTester.Android.Resource.Animation.btn_radio_to_off_mtrl_ring_outer_path_animation; - global::Microsoft.Maui.Graphics.Resource.Animation.btn_radio_to_on_mtrl_dot_group_animation = global::GraphicsTester.Android.Resource.Animation.btn_radio_to_on_mtrl_dot_group_animation; - global::Microsoft.Maui.Graphics.Resource.Animation.btn_radio_to_on_mtrl_ring_outer_animation = global::GraphicsTester.Android.Resource.Animation.btn_radio_to_on_mtrl_ring_outer_animation; - global::Microsoft.Maui.Graphics.Resource.Animation.btn_radio_to_on_mtrl_ring_outer_path_animation = global::GraphicsTester.Android.Resource.Animation.btn_radio_to_on_mtrl_ring_outer_path_animation; - global::Microsoft.Maui.Graphics.Resource.Animation.design_bottom_sheet_slide_in = global::GraphicsTester.Android.Resource.Animation.design_bottom_sheet_slide_in; - global::Microsoft.Maui.Graphics.Resource.Animation.design_bottom_sheet_slide_out = global::GraphicsTester.Android.Resource.Animation.design_bottom_sheet_slide_out; - global::Microsoft.Maui.Graphics.Resource.Animation.design_snackbar_in = global::GraphicsTester.Android.Resource.Animation.design_snackbar_in; - global::Microsoft.Maui.Graphics.Resource.Animation.design_snackbar_out = global::GraphicsTester.Android.Resource.Animation.design_snackbar_out; - global::Microsoft.Maui.Graphics.Resource.Animation.fragment_fast_out_extra_slow_in = global::GraphicsTester.Android.Resource.Animation.fragment_fast_out_extra_slow_in; - global::Microsoft.Maui.Graphics.Resource.Animation.mtrl_bottom_sheet_slide_in = global::GraphicsTester.Android.Resource.Animation.mtrl_bottom_sheet_slide_in; - global::Microsoft.Maui.Graphics.Resource.Animation.mtrl_bottom_sheet_slide_out = global::GraphicsTester.Android.Resource.Animation.mtrl_bottom_sheet_slide_out; - global::Microsoft.Maui.Graphics.Resource.Animation.mtrl_card_lowers_interpolator = global::GraphicsTester.Android.Resource.Animation.mtrl_card_lowers_interpolator; - global::Microsoft.Maui.Graphics.Resource.Animator.design_appbar_state_list_animator = global::GraphicsTester.Android.Resource.Animator.design_appbar_state_list_animator; - global::Microsoft.Maui.Graphics.Resource.Animator.design_fab_hide_motion_spec = global::GraphicsTester.Android.Resource.Animator.design_fab_hide_motion_spec; - global::Microsoft.Maui.Graphics.Resource.Animator.design_fab_show_motion_spec = global::GraphicsTester.Android.Resource.Animator.design_fab_show_motion_spec; - global::Microsoft.Maui.Graphics.Resource.Animator.fragment_close_enter = global::GraphicsTester.Android.Resource.Animator.fragment_close_enter; - global::Microsoft.Maui.Graphics.Resource.Animator.fragment_close_exit = global::GraphicsTester.Android.Resource.Animator.fragment_close_exit; - global::Microsoft.Maui.Graphics.Resource.Animator.fragment_fade_enter = global::GraphicsTester.Android.Resource.Animator.fragment_fade_enter; - global::Microsoft.Maui.Graphics.Resource.Animator.fragment_fade_exit = global::GraphicsTester.Android.Resource.Animator.fragment_fade_exit; - global::Microsoft.Maui.Graphics.Resource.Animator.fragment_open_enter = global::GraphicsTester.Android.Resource.Animator.fragment_open_enter; - global::Microsoft.Maui.Graphics.Resource.Animator.fragment_open_exit = global::GraphicsTester.Android.Resource.Animator.fragment_open_exit; - global::Microsoft.Maui.Graphics.Resource.Animator.linear_indeterminate_line1_head_interpolator = global::GraphicsTester.Android.Resource.Animator.linear_indeterminate_line1_head_interpolator; - global::Microsoft.Maui.Graphics.Resource.Animator.linear_indeterminate_line1_tail_interpolator = global::GraphicsTester.Android.Resource.Animator.linear_indeterminate_line1_tail_interpolator; - global::Microsoft.Maui.Graphics.Resource.Animator.linear_indeterminate_line2_head_interpolator = global::GraphicsTester.Android.Resource.Animator.linear_indeterminate_line2_head_interpolator; - global::Microsoft.Maui.Graphics.Resource.Animator.linear_indeterminate_line2_tail_interpolator = global::GraphicsTester.Android.Resource.Animator.linear_indeterminate_line2_tail_interpolator; - global::Microsoft.Maui.Graphics.Resource.Animator.mtrl_btn_state_list_anim = global::GraphicsTester.Android.Resource.Animator.mtrl_btn_state_list_anim; - global::Microsoft.Maui.Graphics.Resource.Animator.mtrl_btn_unelevated_state_list_anim = global::GraphicsTester.Android.Resource.Animator.mtrl_btn_unelevated_state_list_anim; - global::Microsoft.Maui.Graphics.Resource.Animator.mtrl_card_state_list_anim = global::GraphicsTester.Android.Resource.Animator.mtrl_card_state_list_anim; - global::Microsoft.Maui.Graphics.Resource.Animator.mtrl_chip_state_list_anim = global::GraphicsTester.Android.Resource.Animator.mtrl_chip_state_list_anim; - global::Microsoft.Maui.Graphics.Resource.Animator.mtrl_extended_fab_change_size_collapse_motion_spec = global::GraphicsTester.Android.Resource.Animator.mtrl_extended_fab_change_size_collapse_motion_spec; - global::Microsoft.Maui.Graphics.Resource.Animator.mtrl_extended_fab_change_size_expand_motion_spec = global::GraphicsTester.Android.Resource.Animator.mtrl_extended_fab_change_size_expand_motion_spec; - global::Microsoft.Maui.Graphics.Resource.Animator.mtrl_extended_fab_hide_motion_spec = global::GraphicsTester.Android.Resource.Animator.mtrl_extended_fab_hide_motion_spec; - global::Microsoft.Maui.Graphics.Resource.Animator.mtrl_extended_fab_show_motion_spec = global::GraphicsTester.Android.Resource.Animator.mtrl_extended_fab_show_motion_spec; - global::Microsoft.Maui.Graphics.Resource.Animator.mtrl_extended_fab_state_list_animator = global::GraphicsTester.Android.Resource.Animator.mtrl_extended_fab_state_list_animator; - global::Microsoft.Maui.Graphics.Resource.Animator.mtrl_fab_hide_motion_spec = global::GraphicsTester.Android.Resource.Animator.mtrl_fab_hide_motion_spec; - global::Microsoft.Maui.Graphics.Resource.Animator.mtrl_fab_show_motion_spec = global::GraphicsTester.Android.Resource.Animator.mtrl_fab_show_motion_spec; - global::Microsoft.Maui.Graphics.Resource.Animator.mtrl_fab_transformation_sheet_collapse_spec = global::GraphicsTester.Android.Resource.Animator.mtrl_fab_transformation_sheet_collapse_spec; - global::Microsoft.Maui.Graphics.Resource.Animator.mtrl_fab_transformation_sheet_expand_spec = global::GraphicsTester.Android.Resource.Animator.mtrl_fab_transformation_sheet_expand_spec; - global::Microsoft.Maui.Graphics.Resource.Attribute.actionBarDivider = global::GraphicsTester.Android.Resource.Attribute.actionBarDivider; - global::Microsoft.Maui.Graphics.Resource.Attribute.actionBarItemBackground = global::GraphicsTester.Android.Resource.Attribute.actionBarItemBackground; - global::Microsoft.Maui.Graphics.Resource.Attribute.actionBarPopupTheme = global::GraphicsTester.Android.Resource.Attribute.actionBarPopupTheme; - global::Microsoft.Maui.Graphics.Resource.Attribute.actionBarSize = global::GraphicsTester.Android.Resource.Attribute.actionBarSize; - global::Microsoft.Maui.Graphics.Resource.Attribute.actionBarSplitStyle = global::GraphicsTester.Android.Resource.Attribute.actionBarSplitStyle; - global::Microsoft.Maui.Graphics.Resource.Attribute.actionBarStyle = global::GraphicsTester.Android.Resource.Attribute.actionBarStyle; - global::Microsoft.Maui.Graphics.Resource.Attribute.actionBarTabBarStyle = global::GraphicsTester.Android.Resource.Attribute.actionBarTabBarStyle; - global::Microsoft.Maui.Graphics.Resource.Attribute.actionBarTabStyle = global::GraphicsTester.Android.Resource.Attribute.actionBarTabStyle; - global::Microsoft.Maui.Graphics.Resource.Attribute.actionBarTabTextStyle = global::GraphicsTester.Android.Resource.Attribute.actionBarTabTextStyle; - global::Microsoft.Maui.Graphics.Resource.Attribute.actionBarTheme = global::GraphicsTester.Android.Resource.Attribute.actionBarTheme; - global::Microsoft.Maui.Graphics.Resource.Attribute.actionBarWidgetTheme = global::GraphicsTester.Android.Resource.Attribute.actionBarWidgetTheme; - global::Microsoft.Maui.Graphics.Resource.Attribute.actionButtonStyle = global::GraphicsTester.Android.Resource.Attribute.actionButtonStyle; - global::Microsoft.Maui.Graphics.Resource.Attribute.actionDropDownStyle = global::GraphicsTester.Android.Resource.Attribute.actionDropDownStyle; - global::Microsoft.Maui.Graphics.Resource.Attribute.actionLayout = global::GraphicsTester.Android.Resource.Attribute.actionLayout; - global::Microsoft.Maui.Graphics.Resource.Attribute.actionMenuTextAppearance = global::GraphicsTester.Android.Resource.Attribute.actionMenuTextAppearance; - global::Microsoft.Maui.Graphics.Resource.Attribute.actionMenuTextColor = global::GraphicsTester.Android.Resource.Attribute.actionMenuTextColor; - global::Microsoft.Maui.Graphics.Resource.Attribute.actionModeBackground = global::GraphicsTester.Android.Resource.Attribute.actionModeBackground; - global::Microsoft.Maui.Graphics.Resource.Attribute.actionModeCloseButtonStyle = global::GraphicsTester.Android.Resource.Attribute.actionModeCloseButtonStyle; - global::Microsoft.Maui.Graphics.Resource.Attribute.actionModeCloseDrawable = global::GraphicsTester.Android.Resource.Attribute.actionModeCloseDrawable; - global::Microsoft.Maui.Graphics.Resource.Attribute.actionModeCopyDrawable = global::GraphicsTester.Android.Resource.Attribute.actionModeCopyDrawable; - global::Microsoft.Maui.Graphics.Resource.Attribute.actionModeCutDrawable = global::GraphicsTester.Android.Resource.Attribute.actionModeCutDrawable; - global::Microsoft.Maui.Graphics.Resource.Attribute.actionModeFindDrawable = global::GraphicsTester.Android.Resource.Attribute.actionModeFindDrawable; - global::Microsoft.Maui.Graphics.Resource.Attribute.actionModePasteDrawable = global::GraphicsTester.Android.Resource.Attribute.actionModePasteDrawable; - global::Microsoft.Maui.Graphics.Resource.Attribute.actionModePopupWindowStyle = global::GraphicsTester.Android.Resource.Attribute.actionModePopupWindowStyle; - global::Microsoft.Maui.Graphics.Resource.Attribute.actionModeSelectAllDrawable = global::GraphicsTester.Android.Resource.Attribute.actionModeSelectAllDrawable; - global::Microsoft.Maui.Graphics.Resource.Attribute.actionModeShareDrawable = global::GraphicsTester.Android.Resource.Attribute.actionModeShareDrawable; - global::Microsoft.Maui.Graphics.Resource.Attribute.actionModeSplitBackground = global::GraphicsTester.Android.Resource.Attribute.actionModeSplitBackground; - global::Microsoft.Maui.Graphics.Resource.Attribute.actionModeStyle = global::GraphicsTester.Android.Resource.Attribute.actionModeStyle; - global::Microsoft.Maui.Graphics.Resource.Attribute.actionModeWebSearchDrawable = global::GraphicsTester.Android.Resource.Attribute.actionModeWebSearchDrawable; - global::Microsoft.Maui.Graphics.Resource.Attribute.actionOverflowButtonStyle = global::GraphicsTester.Android.Resource.Attribute.actionOverflowButtonStyle; - global::Microsoft.Maui.Graphics.Resource.Attribute.actionOverflowMenuStyle = global::GraphicsTester.Android.Resource.Attribute.actionOverflowMenuStyle; - global::Microsoft.Maui.Graphics.Resource.Attribute.actionProviderClass = global::GraphicsTester.Android.Resource.Attribute.actionProviderClass; - global::Microsoft.Maui.Graphics.Resource.Attribute.actionTextColorAlpha = global::GraphicsTester.Android.Resource.Attribute.actionTextColorAlpha; - global::Microsoft.Maui.Graphics.Resource.Attribute.actionViewClass = global::GraphicsTester.Android.Resource.Attribute.actionViewClass; - global::Microsoft.Maui.Graphics.Resource.Attribute.activityChooserViewStyle = global::GraphicsTester.Android.Resource.Attribute.activityChooserViewStyle; - global::Microsoft.Maui.Graphics.Resource.Attribute.alertDialogButtonGroupStyle = global::GraphicsTester.Android.Resource.Attribute.alertDialogButtonGroupStyle; - global::Microsoft.Maui.Graphics.Resource.Attribute.alertDialogCenterButtons = global::GraphicsTester.Android.Resource.Attribute.alertDialogCenterButtons; - global::Microsoft.Maui.Graphics.Resource.Attribute.alertDialogStyle = global::GraphicsTester.Android.Resource.Attribute.alertDialogStyle; - global::Microsoft.Maui.Graphics.Resource.Attribute.alertDialogTheme = global::GraphicsTester.Android.Resource.Attribute.alertDialogTheme; - global::Microsoft.Maui.Graphics.Resource.Attribute.allowStacking = global::GraphicsTester.Android.Resource.Attribute.allowStacking; - global::Microsoft.Maui.Graphics.Resource.Attribute.alpha = global::GraphicsTester.Android.Resource.Attribute.alpha; - global::Microsoft.Maui.Graphics.Resource.Attribute.alphabeticModifiers = global::GraphicsTester.Android.Resource.Attribute.alphabeticModifiers; - global::Microsoft.Maui.Graphics.Resource.Attribute.altSrc = global::GraphicsTester.Android.Resource.Attribute.altSrc; - global::Microsoft.Maui.Graphics.Resource.Attribute.animate_relativeTo = global::GraphicsTester.Android.Resource.Attribute.animate_relativeTo; - global::Microsoft.Maui.Graphics.Resource.Attribute.animationMode = global::GraphicsTester.Android.Resource.Attribute.animationMode; - global::Microsoft.Maui.Graphics.Resource.Attribute.appBarLayoutStyle = global::GraphicsTester.Android.Resource.Attribute.appBarLayoutStyle; - global::Microsoft.Maui.Graphics.Resource.Attribute.applyMotionScene = global::GraphicsTester.Android.Resource.Attribute.applyMotionScene; - global::Microsoft.Maui.Graphics.Resource.Attribute.arcMode = global::GraphicsTester.Android.Resource.Attribute.arcMode; - global::Microsoft.Maui.Graphics.Resource.Attribute.arrowHeadLength = global::GraphicsTester.Android.Resource.Attribute.arrowHeadLength; - global::Microsoft.Maui.Graphics.Resource.Attribute.arrowShaftLength = global::GraphicsTester.Android.Resource.Attribute.arrowShaftLength; - global::Microsoft.Maui.Graphics.Resource.Attribute.attributeName = global::GraphicsTester.Android.Resource.Attribute.attributeName; - global::Microsoft.Maui.Graphics.Resource.Attribute.autoCompleteTextViewStyle = global::GraphicsTester.Android.Resource.Attribute.autoCompleteTextViewStyle; - global::Microsoft.Maui.Graphics.Resource.Attribute.autoSizeMaxTextSize = global::GraphicsTester.Android.Resource.Attribute.autoSizeMaxTextSize; - global::Microsoft.Maui.Graphics.Resource.Attribute.autoSizeMinTextSize = global::GraphicsTester.Android.Resource.Attribute.autoSizeMinTextSize; - global::Microsoft.Maui.Graphics.Resource.Attribute.autoSizePresetSizes = global::GraphicsTester.Android.Resource.Attribute.autoSizePresetSizes; - global::Microsoft.Maui.Graphics.Resource.Attribute.autoSizeStepGranularity = global::GraphicsTester.Android.Resource.Attribute.autoSizeStepGranularity; - global::Microsoft.Maui.Graphics.Resource.Attribute.autoSizeTextType = global::GraphicsTester.Android.Resource.Attribute.autoSizeTextType; - global::Microsoft.Maui.Graphics.Resource.Attribute.autoTransition = global::GraphicsTester.Android.Resource.Attribute.autoTransition; - global::Microsoft.Maui.Graphics.Resource.Attribute.background = global::GraphicsTester.Android.Resource.Attribute.background; - global::Microsoft.Maui.Graphics.Resource.Attribute.backgroundColor = global::GraphicsTester.Android.Resource.Attribute.backgroundColor; - global::Microsoft.Maui.Graphics.Resource.Attribute.backgroundInsetBottom = global::GraphicsTester.Android.Resource.Attribute.backgroundInsetBottom; - global::Microsoft.Maui.Graphics.Resource.Attribute.backgroundInsetEnd = global::GraphicsTester.Android.Resource.Attribute.backgroundInsetEnd; - global::Microsoft.Maui.Graphics.Resource.Attribute.backgroundInsetStart = global::GraphicsTester.Android.Resource.Attribute.backgroundInsetStart; - global::Microsoft.Maui.Graphics.Resource.Attribute.backgroundInsetTop = global::GraphicsTester.Android.Resource.Attribute.backgroundInsetTop; - global::Microsoft.Maui.Graphics.Resource.Attribute.backgroundOverlayColorAlpha = global::GraphicsTester.Android.Resource.Attribute.backgroundOverlayColorAlpha; - global::Microsoft.Maui.Graphics.Resource.Attribute.backgroundSplit = global::GraphicsTester.Android.Resource.Attribute.backgroundSplit; - global::Microsoft.Maui.Graphics.Resource.Attribute.backgroundStacked = global::GraphicsTester.Android.Resource.Attribute.backgroundStacked; - global::Microsoft.Maui.Graphics.Resource.Attribute.backgroundTint = global::GraphicsTester.Android.Resource.Attribute.backgroundTint; - global::Microsoft.Maui.Graphics.Resource.Attribute.backgroundTintMode = global::GraphicsTester.Android.Resource.Attribute.backgroundTintMode; - global::Microsoft.Maui.Graphics.Resource.Attribute.badgeGravity = global::GraphicsTester.Android.Resource.Attribute.badgeGravity; - global::Microsoft.Maui.Graphics.Resource.Attribute.badgeStyle = global::GraphicsTester.Android.Resource.Attribute.badgeStyle; - global::Microsoft.Maui.Graphics.Resource.Attribute.badgeTextColor = global::GraphicsTester.Android.Resource.Attribute.badgeTextColor; - global::Microsoft.Maui.Graphics.Resource.Attribute.barLength = global::GraphicsTester.Android.Resource.Attribute.barLength; - global::Microsoft.Maui.Graphics.Resource.Attribute.barrierAllowsGoneWidgets = global::GraphicsTester.Android.Resource.Attribute.barrierAllowsGoneWidgets; - global::Microsoft.Maui.Graphics.Resource.Attribute.barrierDirection = global::GraphicsTester.Android.Resource.Attribute.barrierDirection; - global::Microsoft.Maui.Graphics.Resource.Attribute.barrierMargin = global::GraphicsTester.Android.Resource.Attribute.barrierMargin; - global::Microsoft.Maui.Graphics.Resource.Attribute.behavior_autoHide = global::GraphicsTester.Android.Resource.Attribute.behavior_autoHide; - global::Microsoft.Maui.Graphics.Resource.Attribute.behavior_autoShrink = global::GraphicsTester.Android.Resource.Attribute.behavior_autoShrink; - global::Microsoft.Maui.Graphics.Resource.Attribute.behavior_draggable = global::GraphicsTester.Android.Resource.Attribute.behavior_draggable; - global::Microsoft.Maui.Graphics.Resource.Attribute.behavior_expandedOffset = global::GraphicsTester.Android.Resource.Attribute.behavior_expandedOffset; - global::Microsoft.Maui.Graphics.Resource.Attribute.behavior_fitToContents = global::GraphicsTester.Android.Resource.Attribute.behavior_fitToContents; - global::Microsoft.Maui.Graphics.Resource.Attribute.behavior_halfExpandedRatio = global::GraphicsTester.Android.Resource.Attribute.behavior_halfExpandedRatio; - global::Microsoft.Maui.Graphics.Resource.Attribute.behavior_hideable = global::GraphicsTester.Android.Resource.Attribute.behavior_hideable; - global::Microsoft.Maui.Graphics.Resource.Attribute.behavior_overlapTop = global::GraphicsTester.Android.Resource.Attribute.behavior_overlapTop; - global::Microsoft.Maui.Graphics.Resource.Attribute.behavior_peekHeight = global::GraphicsTester.Android.Resource.Attribute.behavior_peekHeight; - global::Microsoft.Maui.Graphics.Resource.Attribute.behavior_saveFlags = global::GraphicsTester.Android.Resource.Attribute.behavior_saveFlags; - global::Microsoft.Maui.Graphics.Resource.Attribute.behavior_skipCollapsed = global::GraphicsTester.Android.Resource.Attribute.behavior_skipCollapsed; - global::Microsoft.Maui.Graphics.Resource.Attribute.borderlessButtonStyle = global::GraphicsTester.Android.Resource.Attribute.borderlessButtonStyle; - global::Microsoft.Maui.Graphics.Resource.Attribute.borderWidth = global::GraphicsTester.Android.Resource.Attribute.borderWidth; - global::Microsoft.Maui.Graphics.Resource.Attribute.bottomAppBarStyle = global::GraphicsTester.Android.Resource.Attribute.bottomAppBarStyle; - global::Microsoft.Maui.Graphics.Resource.Attribute.bottomNavigationStyle = global::GraphicsTester.Android.Resource.Attribute.bottomNavigationStyle; - global::Microsoft.Maui.Graphics.Resource.Attribute.bottomSheetDialogTheme = global::GraphicsTester.Android.Resource.Attribute.bottomSheetDialogTheme; - global::Microsoft.Maui.Graphics.Resource.Attribute.bottomSheetStyle = global::GraphicsTester.Android.Resource.Attribute.bottomSheetStyle; - global::Microsoft.Maui.Graphics.Resource.Attribute.boxBackgroundColor = global::GraphicsTester.Android.Resource.Attribute.boxBackgroundColor; - global::Microsoft.Maui.Graphics.Resource.Attribute.boxBackgroundMode = global::GraphicsTester.Android.Resource.Attribute.boxBackgroundMode; - global::Microsoft.Maui.Graphics.Resource.Attribute.boxCollapsedPaddingTop = global::GraphicsTester.Android.Resource.Attribute.boxCollapsedPaddingTop; - global::Microsoft.Maui.Graphics.Resource.Attribute.boxCornerRadiusBottomEnd = global::GraphicsTester.Android.Resource.Attribute.boxCornerRadiusBottomEnd; - global::Microsoft.Maui.Graphics.Resource.Attribute.boxCornerRadiusBottomStart = global::GraphicsTester.Android.Resource.Attribute.boxCornerRadiusBottomStart; - global::Microsoft.Maui.Graphics.Resource.Attribute.boxCornerRadiusTopEnd = global::GraphicsTester.Android.Resource.Attribute.boxCornerRadiusTopEnd; - global::Microsoft.Maui.Graphics.Resource.Attribute.boxCornerRadiusTopStart = global::GraphicsTester.Android.Resource.Attribute.boxCornerRadiusTopStart; - global::Microsoft.Maui.Graphics.Resource.Attribute.boxStrokeColor = global::GraphicsTester.Android.Resource.Attribute.boxStrokeColor; - global::Microsoft.Maui.Graphics.Resource.Attribute.boxStrokeErrorColor = global::GraphicsTester.Android.Resource.Attribute.boxStrokeErrorColor; - global::Microsoft.Maui.Graphics.Resource.Attribute.boxStrokeWidth = global::GraphicsTester.Android.Resource.Attribute.boxStrokeWidth; - global::Microsoft.Maui.Graphics.Resource.Attribute.boxStrokeWidthFocused = global::GraphicsTester.Android.Resource.Attribute.boxStrokeWidthFocused; - global::Microsoft.Maui.Graphics.Resource.Attribute.brightness = global::GraphicsTester.Android.Resource.Attribute.brightness; - global::Microsoft.Maui.Graphics.Resource.Attribute.buttonBarButtonStyle = global::GraphicsTester.Android.Resource.Attribute.buttonBarButtonStyle; - global::Microsoft.Maui.Graphics.Resource.Attribute.buttonBarNegativeButtonStyle = global::GraphicsTester.Android.Resource.Attribute.buttonBarNegativeButtonStyle; - global::Microsoft.Maui.Graphics.Resource.Attribute.buttonBarNeutralButtonStyle = global::GraphicsTester.Android.Resource.Attribute.buttonBarNeutralButtonStyle; - global::Microsoft.Maui.Graphics.Resource.Attribute.buttonBarPositiveButtonStyle = global::GraphicsTester.Android.Resource.Attribute.buttonBarPositiveButtonStyle; - global::Microsoft.Maui.Graphics.Resource.Attribute.buttonBarStyle = global::GraphicsTester.Android.Resource.Attribute.buttonBarStyle; - global::Microsoft.Maui.Graphics.Resource.Attribute.buttonCompat = global::GraphicsTester.Android.Resource.Attribute.buttonCompat; - global::Microsoft.Maui.Graphics.Resource.Attribute.buttonGravity = global::GraphicsTester.Android.Resource.Attribute.buttonGravity; - global::Microsoft.Maui.Graphics.Resource.Attribute.buttonIconDimen = global::GraphicsTester.Android.Resource.Attribute.buttonIconDimen; - global::Microsoft.Maui.Graphics.Resource.Attribute.buttonPanelSideLayout = global::GraphicsTester.Android.Resource.Attribute.buttonPanelSideLayout; - global::Microsoft.Maui.Graphics.Resource.Attribute.buttonStyle = global::GraphicsTester.Android.Resource.Attribute.buttonStyle; - global::Microsoft.Maui.Graphics.Resource.Attribute.buttonStyleSmall = global::GraphicsTester.Android.Resource.Attribute.buttonStyleSmall; - global::Microsoft.Maui.Graphics.Resource.Attribute.buttonTint = global::GraphicsTester.Android.Resource.Attribute.buttonTint; - global::Microsoft.Maui.Graphics.Resource.Attribute.buttonTintMode = global::GraphicsTester.Android.Resource.Attribute.buttonTintMode; - global::Microsoft.Maui.Graphics.Resource.Attribute.cardBackgroundColor = global::GraphicsTester.Android.Resource.Attribute.cardBackgroundColor; - global::Microsoft.Maui.Graphics.Resource.Attribute.cardCornerRadius = global::GraphicsTester.Android.Resource.Attribute.cardCornerRadius; - global::Microsoft.Maui.Graphics.Resource.Attribute.cardElevation = global::GraphicsTester.Android.Resource.Attribute.cardElevation; - global::Microsoft.Maui.Graphics.Resource.Attribute.cardForegroundColor = global::GraphicsTester.Android.Resource.Attribute.cardForegroundColor; - global::Microsoft.Maui.Graphics.Resource.Attribute.cardMaxElevation = global::GraphicsTester.Android.Resource.Attribute.cardMaxElevation; - global::Microsoft.Maui.Graphics.Resource.Attribute.cardPreventCornerOverlap = global::GraphicsTester.Android.Resource.Attribute.cardPreventCornerOverlap; - global::Microsoft.Maui.Graphics.Resource.Attribute.cardUseCompatPadding = global::GraphicsTester.Android.Resource.Attribute.cardUseCompatPadding; - global::Microsoft.Maui.Graphics.Resource.Attribute.cardViewStyle = global::GraphicsTester.Android.Resource.Attribute.cardViewStyle; - global::Microsoft.Maui.Graphics.Resource.Attribute.chainUseRtl = global::GraphicsTester.Android.Resource.Attribute.chainUseRtl; - global::Microsoft.Maui.Graphics.Resource.Attribute.checkboxStyle = global::GraphicsTester.Android.Resource.Attribute.checkboxStyle; - global::Microsoft.Maui.Graphics.Resource.Attribute.checkedButton = global::GraphicsTester.Android.Resource.Attribute.checkedButton; - global::Microsoft.Maui.Graphics.Resource.Attribute.checkedChip = global::GraphicsTester.Android.Resource.Attribute.checkedChip; - global::Microsoft.Maui.Graphics.Resource.Attribute.checkedIcon = global::GraphicsTester.Android.Resource.Attribute.checkedIcon; - global::Microsoft.Maui.Graphics.Resource.Attribute.checkedIconEnabled = global::GraphicsTester.Android.Resource.Attribute.checkedIconEnabled; - global::Microsoft.Maui.Graphics.Resource.Attribute.checkedIconMargin = global::GraphicsTester.Android.Resource.Attribute.checkedIconMargin; - global::Microsoft.Maui.Graphics.Resource.Attribute.checkedIconSize = global::GraphicsTester.Android.Resource.Attribute.checkedIconSize; - global::Microsoft.Maui.Graphics.Resource.Attribute.checkedIconTint = global::GraphicsTester.Android.Resource.Attribute.checkedIconTint; - global::Microsoft.Maui.Graphics.Resource.Attribute.checkedIconVisible = global::GraphicsTester.Android.Resource.Attribute.checkedIconVisible; - global::Microsoft.Maui.Graphics.Resource.Attribute.checkedTextViewStyle = global::GraphicsTester.Android.Resource.Attribute.checkedTextViewStyle; - global::Microsoft.Maui.Graphics.Resource.Attribute.chipBackgroundColor = global::GraphicsTester.Android.Resource.Attribute.chipBackgroundColor; - global::Microsoft.Maui.Graphics.Resource.Attribute.chipCornerRadius = global::GraphicsTester.Android.Resource.Attribute.chipCornerRadius; - global::Microsoft.Maui.Graphics.Resource.Attribute.chipEndPadding = global::GraphicsTester.Android.Resource.Attribute.chipEndPadding; - global::Microsoft.Maui.Graphics.Resource.Attribute.chipGroupStyle = global::GraphicsTester.Android.Resource.Attribute.chipGroupStyle; - global::Microsoft.Maui.Graphics.Resource.Attribute.chipIcon = global::GraphicsTester.Android.Resource.Attribute.chipIcon; - global::Microsoft.Maui.Graphics.Resource.Attribute.chipIconEnabled = global::GraphicsTester.Android.Resource.Attribute.chipIconEnabled; - global::Microsoft.Maui.Graphics.Resource.Attribute.chipIconSize = global::GraphicsTester.Android.Resource.Attribute.chipIconSize; - global::Microsoft.Maui.Graphics.Resource.Attribute.chipIconTint = global::GraphicsTester.Android.Resource.Attribute.chipIconTint; - global::Microsoft.Maui.Graphics.Resource.Attribute.chipIconVisible = global::GraphicsTester.Android.Resource.Attribute.chipIconVisible; - global::Microsoft.Maui.Graphics.Resource.Attribute.chipMinHeight = global::GraphicsTester.Android.Resource.Attribute.chipMinHeight; - global::Microsoft.Maui.Graphics.Resource.Attribute.chipMinTouchTargetSize = global::GraphicsTester.Android.Resource.Attribute.chipMinTouchTargetSize; - global::Microsoft.Maui.Graphics.Resource.Attribute.chipSpacing = global::GraphicsTester.Android.Resource.Attribute.chipSpacing; - global::Microsoft.Maui.Graphics.Resource.Attribute.chipSpacingHorizontal = global::GraphicsTester.Android.Resource.Attribute.chipSpacingHorizontal; - global::Microsoft.Maui.Graphics.Resource.Attribute.chipSpacingVertical = global::GraphicsTester.Android.Resource.Attribute.chipSpacingVertical; - global::Microsoft.Maui.Graphics.Resource.Attribute.chipStandaloneStyle = global::GraphicsTester.Android.Resource.Attribute.chipStandaloneStyle; - global::Microsoft.Maui.Graphics.Resource.Attribute.chipStartPadding = global::GraphicsTester.Android.Resource.Attribute.chipStartPadding; - global::Microsoft.Maui.Graphics.Resource.Attribute.chipStrokeColor = global::GraphicsTester.Android.Resource.Attribute.chipStrokeColor; - global::Microsoft.Maui.Graphics.Resource.Attribute.chipStrokeWidth = global::GraphicsTester.Android.Resource.Attribute.chipStrokeWidth; - global::Microsoft.Maui.Graphics.Resource.Attribute.chipStyle = global::GraphicsTester.Android.Resource.Attribute.chipStyle; - global::Microsoft.Maui.Graphics.Resource.Attribute.chipSurfaceColor = global::GraphicsTester.Android.Resource.Attribute.chipSurfaceColor; - global::Microsoft.Maui.Graphics.Resource.Attribute.circleRadius = global::GraphicsTester.Android.Resource.Attribute.circleRadius; - global::Microsoft.Maui.Graphics.Resource.Attribute.circularProgressIndicatorStyle = global::GraphicsTester.Android.Resource.Attribute.circularProgressIndicatorStyle; - global::Microsoft.Maui.Graphics.Resource.Attribute.clickAction = global::GraphicsTester.Android.Resource.Attribute.clickAction; - global::Microsoft.Maui.Graphics.Resource.Attribute.clockFaceBackgroundColor = global::GraphicsTester.Android.Resource.Attribute.clockFaceBackgroundColor; - global::Microsoft.Maui.Graphics.Resource.Attribute.clockHandColor = global::GraphicsTester.Android.Resource.Attribute.clockHandColor; - global::Microsoft.Maui.Graphics.Resource.Attribute.clockIcon = global::GraphicsTester.Android.Resource.Attribute.clockIcon; - global::Microsoft.Maui.Graphics.Resource.Attribute.clockNumberTextColor = global::GraphicsTester.Android.Resource.Attribute.clockNumberTextColor; - global::Microsoft.Maui.Graphics.Resource.Attribute.closeIcon = global::GraphicsTester.Android.Resource.Attribute.closeIcon; - global::Microsoft.Maui.Graphics.Resource.Attribute.closeIconEnabled = global::GraphicsTester.Android.Resource.Attribute.closeIconEnabled; - global::Microsoft.Maui.Graphics.Resource.Attribute.closeIconEndPadding = global::GraphicsTester.Android.Resource.Attribute.closeIconEndPadding; - global::Microsoft.Maui.Graphics.Resource.Attribute.closeIconSize = global::GraphicsTester.Android.Resource.Attribute.closeIconSize; - global::Microsoft.Maui.Graphics.Resource.Attribute.closeIconStartPadding = global::GraphicsTester.Android.Resource.Attribute.closeIconStartPadding; - global::Microsoft.Maui.Graphics.Resource.Attribute.closeIconTint = global::GraphicsTester.Android.Resource.Attribute.closeIconTint; - global::Microsoft.Maui.Graphics.Resource.Attribute.closeIconVisible = global::GraphicsTester.Android.Resource.Attribute.closeIconVisible; - global::Microsoft.Maui.Graphics.Resource.Attribute.closeItemLayout = global::GraphicsTester.Android.Resource.Attribute.closeItemLayout; - global::Microsoft.Maui.Graphics.Resource.Attribute.collapseContentDescription = global::GraphicsTester.Android.Resource.Attribute.collapseContentDescription; - global::Microsoft.Maui.Graphics.Resource.Attribute.collapsedSize = global::GraphicsTester.Android.Resource.Attribute.collapsedSize; - global::Microsoft.Maui.Graphics.Resource.Attribute.collapsedTitleGravity = global::GraphicsTester.Android.Resource.Attribute.collapsedTitleGravity; - global::Microsoft.Maui.Graphics.Resource.Attribute.collapsedTitleTextAppearance = global::GraphicsTester.Android.Resource.Attribute.collapsedTitleTextAppearance; - global::Microsoft.Maui.Graphics.Resource.Attribute.collapseIcon = global::GraphicsTester.Android.Resource.Attribute.collapseIcon; - global::Microsoft.Maui.Graphics.Resource.Attribute.collapsingToolbarLayoutStyle = global::GraphicsTester.Android.Resource.Attribute.collapsingToolbarLayoutStyle; - global::Microsoft.Maui.Graphics.Resource.Attribute.color = global::GraphicsTester.Android.Resource.Attribute.color; - global::Microsoft.Maui.Graphics.Resource.Attribute.colorAccent = global::GraphicsTester.Android.Resource.Attribute.colorAccent; - global::Microsoft.Maui.Graphics.Resource.Attribute.colorBackgroundFloating = global::GraphicsTester.Android.Resource.Attribute.colorBackgroundFloating; - global::Microsoft.Maui.Graphics.Resource.Attribute.colorButtonNormal = global::GraphicsTester.Android.Resource.Attribute.colorButtonNormal; - global::Microsoft.Maui.Graphics.Resource.Attribute.colorControlActivated = global::GraphicsTester.Android.Resource.Attribute.colorControlActivated; - global::Microsoft.Maui.Graphics.Resource.Attribute.colorControlHighlight = global::GraphicsTester.Android.Resource.Attribute.colorControlHighlight; - global::Microsoft.Maui.Graphics.Resource.Attribute.colorControlNormal = global::GraphicsTester.Android.Resource.Attribute.colorControlNormal; - global::Microsoft.Maui.Graphics.Resource.Attribute.colorError = global::GraphicsTester.Android.Resource.Attribute.colorError; - global::Microsoft.Maui.Graphics.Resource.Attribute.colorOnBackground = global::GraphicsTester.Android.Resource.Attribute.colorOnBackground; - global::Microsoft.Maui.Graphics.Resource.Attribute.colorOnError = global::GraphicsTester.Android.Resource.Attribute.colorOnError; - global::Microsoft.Maui.Graphics.Resource.Attribute.colorOnPrimary = global::GraphicsTester.Android.Resource.Attribute.colorOnPrimary; - global::Microsoft.Maui.Graphics.Resource.Attribute.colorOnPrimarySurface = global::GraphicsTester.Android.Resource.Attribute.colorOnPrimarySurface; - global::Microsoft.Maui.Graphics.Resource.Attribute.colorOnSecondary = global::GraphicsTester.Android.Resource.Attribute.colorOnSecondary; - global::Microsoft.Maui.Graphics.Resource.Attribute.colorOnSurface = global::GraphicsTester.Android.Resource.Attribute.colorOnSurface; - global::Microsoft.Maui.Graphics.Resource.Attribute.colorPrimary = global::GraphicsTester.Android.Resource.Attribute.colorPrimary; - global::Microsoft.Maui.Graphics.Resource.Attribute.colorPrimaryDark = global::GraphicsTester.Android.Resource.Attribute.colorPrimaryDark; - global::Microsoft.Maui.Graphics.Resource.Attribute.colorPrimarySurface = global::GraphicsTester.Android.Resource.Attribute.colorPrimarySurface; - global::Microsoft.Maui.Graphics.Resource.Attribute.colorPrimaryVariant = global::GraphicsTester.Android.Resource.Attribute.colorPrimaryVariant; - global::Microsoft.Maui.Graphics.Resource.Attribute.colorSecondary = global::GraphicsTester.Android.Resource.Attribute.colorSecondary; - global::Microsoft.Maui.Graphics.Resource.Attribute.colorSecondaryVariant = global::GraphicsTester.Android.Resource.Attribute.colorSecondaryVariant; - global::Microsoft.Maui.Graphics.Resource.Attribute.colorSurface = global::GraphicsTester.Android.Resource.Attribute.colorSurface; - global::Microsoft.Maui.Graphics.Resource.Attribute.colorSwitchThumbNormal = global::GraphicsTester.Android.Resource.Attribute.colorSwitchThumbNormal; - global::Microsoft.Maui.Graphics.Resource.Attribute.commitIcon = global::GraphicsTester.Android.Resource.Attribute.commitIcon; - global::Microsoft.Maui.Graphics.Resource.Attribute.constraints = global::GraphicsTester.Android.Resource.Attribute.constraints; - global::Microsoft.Maui.Graphics.Resource.Attribute.constraintSet = global::GraphicsTester.Android.Resource.Attribute.constraintSet; - global::Microsoft.Maui.Graphics.Resource.Attribute.constraintSetEnd = global::GraphicsTester.Android.Resource.Attribute.constraintSetEnd; - global::Microsoft.Maui.Graphics.Resource.Attribute.constraintSetStart = global::GraphicsTester.Android.Resource.Attribute.constraintSetStart; - global::Microsoft.Maui.Graphics.Resource.Attribute.constraint_referenced_ids = global::GraphicsTester.Android.Resource.Attribute.constraint_referenced_ids; - global::Microsoft.Maui.Graphics.Resource.Attribute.constraint_referenced_tags = global::GraphicsTester.Android.Resource.Attribute.constraint_referenced_tags; - global::Microsoft.Maui.Graphics.Resource.Attribute.content = global::GraphicsTester.Android.Resource.Attribute.content; - global::Microsoft.Maui.Graphics.Resource.Attribute.contentDescription = global::GraphicsTester.Android.Resource.Attribute.contentDescription; - global::Microsoft.Maui.Graphics.Resource.Attribute.contentInsetEnd = global::GraphicsTester.Android.Resource.Attribute.contentInsetEnd; - global::Microsoft.Maui.Graphics.Resource.Attribute.contentInsetEndWithActions = global::GraphicsTester.Android.Resource.Attribute.contentInsetEndWithActions; - global::Microsoft.Maui.Graphics.Resource.Attribute.contentInsetLeft = global::GraphicsTester.Android.Resource.Attribute.contentInsetLeft; - global::Microsoft.Maui.Graphics.Resource.Attribute.contentInsetRight = global::GraphicsTester.Android.Resource.Attribute.contentInsetRight; - global::Microsoft.Maui.Graphics.Resource.Attribute.contentInsetStart = global::GraphicsTester.Android.Resource.Attribute.contentInsetStart; - global::Microsoft.Maui.Graphics.Resource.Attribute.contentInsetStartWithNavigation = global::GraphicsTester.Android.Resource.Attribute.contentInsetStartWithNavigation; - global::Microsoft.Maui.Graphics.Resource.Attribute.contentPadding = global::GraphicsTester.Android.Resource.Attribute.contentPadding; - global::Microsoft.Maui.Graphics.Resource.Attribute.contentPaddingBottom = global::GraphicsTester.Android.Resource.Attribute.contentPaddingBottom; - global::Microsoft.Maui.Graphics.Resource.Attribute.contentPaddingEnd = global::GraphicsTester.Android.Resource.Attribute.contentPaddingEnd; - global::Microsoft.Maui.Graphics.Resource.Attribute.contentPaddingLeft = global::GraphicsTester.Android.Resource.Attribute.contentPaddingLeft; - global::Microsoft.Maui.Graphics.Resource.Attribute.contentPaddingRight = global::GraphicsTester.Android.Resource.Attribute.contentPaddingRight; - global::Microsoft.Maui.Graphics.Resource.Attribute.contentPaddingStart = global::GraphicsTester.Android.Resource.Attribute.contentPaddingStart; - global::Microsoft.Maui.Graphics.Resource.Attribute.contentPaddingTop = global::GraphicsTester.Android.Resource.Attribute.contentPaddingTop; - global::Microsoft.Maui.Graphics.Resource.Attribute.contentScrim = global::GraphicsTester.Android.Resource.Attribute.contentScrim; - global::Microsoft.Maui.Graphics.Resource.Attribute.contrast = global::GraphicsTester.Android.Resource.Attribute.contrast; - global::Microsoft.Maui.Graphics.Resource.Attribute.controlBackground = global::GraphicsTester.Android.Resource.Attribute.controlBackground; - global::Microsoft.Maui.Graphics.Resource.Attribute.coordinatorLayoutStyle = global::GraphicsTester.Android.Resource.Attribute.coordinatorLayoutStyle; - global::Microsoft.Maui.Graphics.Resource.Attribute.cornerFamily = global::GraphicsTester.Android.Resource.Attribute.cornerFamily; - global::Microsoft.Maui.Graphics.Resource.Attribute.cornerFamilyBottomLeft = global::GraphicsTester.Android.Resource.Attribute.cornerFamilyBottomLeft; - global::Microsoft.Maui.Graphics.Resource.Attribute.cornerFamilyBottomRight = global::GraphicsTester.Android.Resource.Attribute.cornerFamilyBottomRight; - global::Microsoft.Maui.Graphics.Resource.Attribute.cornerFamilyTopLeft = global::GraphicsTester.Android.Resource.Attribute.cornerFamilyTopLeft; - global::Microsoft.Maui.Graphics.Resource.Attribute.cornerFamilyTopRight = global::GraphicsTester.Android.Resource.Attribute.cornerFamilyTopRight; - global::Microsoft.Maui.Graphics.Resource.Attribute.cornerRadius = global::GraphicsTester.Android.Resource.Attribute.cornerRadius; - global::Microsoft.Maui.Graphics.Resource.Attribute.cornerSize = global::GraphicsTester.Android.Resource.Attribute.cornerSize; - global::Microsoft.Maui.Graphics.Resource.Attribute.cornerSizeBottomLeft = global::GraphicsTester.Android.Resource.Attribute.cornerSizeBottomLeft; - global::Microsoft.Maui.Graphics.Resource.Attribute.cornerSizeBottomRight = global::GraphicsTester.Android.Resource.Attribute.cornerSizeBottomRight; - global::Microsoft.Maui.Graphics.Resource.Attribute.cornerSizeTopLeft = global::GraphicsTester.Android.Resource.Attribute.cornerSizeTopLeft; - global::Microsoft.Maui.Graphics.Resource.Attribute.cornerSizeTopRight = global::GraphicsTester.Android.Resource.Attribute.cornerSizeTopRight; - global::Microsoft.Maui.Graphics.Resource.Attribute.counterEnabled = global::GraphicsTester.Android.Resource.Attribute.counterEnabled; - global::Microsoft.Maui.Graphics.Resource.Attribute.counterMaxLength = global::GraphicsTester.Android.Resource.Attribute.counterMaxLength; - global::Microsoft.Maui.Graphics.Resource.Attribute.counterOverflowTextAppearance = global::GraphicsTester.Android.Resource.Attribute.counterOverflowTextAppearance; - global::Microsoft.Maui.Graphics.Resource.Attribute.counterOverflowTextColor = global::GraphicsTester.Android.Resource.Attribute.counterOverflowTextColor; - global::Microsoft.Maui.Graphics.Resource.Attribute.counterTextAppearance = global::GraphicsTester.Android.Resource.Attribute.counterTextAppearance; - global::Microsoft.Maui.Graphics.Resource.Attribute.counterTextColor = global::GraphicsTester.Android.Resource.Attribute.counterTextColor; - global::Microsoft.Maui.Graphics.Resource.Attribute.crossfade = global::GraphicsTester.Android.Resource.Attribute.crossfade; - global::Microsoft.Maui.Graphics.Resource.Attribute.currentState = global::GraphicsTester.Android.Resource.Attribute.currentState; - global::Microsoft.Maui.Graphics.Resource.Attribute.curveFit = global::GraphicsTester.Android.Resource.Attribute.curveFit; - global::Microsoft.Maui.Graphics.Resource.Attribute.customBoolean = global::GraphicsTester.Android.Resource.Attribute.customBoolean; - global::Microsoft.Maui.Graphics.Resource.Attribute.customColorDrawableValue = global::GraphicsTester.Android.Resource.Attribute.customColorDrawableValue; - global::Microsoft.Maui.Graphics.Resource.Attribute.customColorValue = global::GraphicsTester.Android.Resource.Attribute.customColorValue; - global::Microsoft.Maui.Graphics.Resource.Attribute.customDimension = global::GraphicsTester.Android.Resource.Attribute.customDimension; - global::Microsoft.Maui.Graphics.Resource.Attribute.customFloatValue = global::GraphicsTester.Android.Resource.Attribute.customFloatValue; - global::Microsoft.Maui.Graphics.Resource.Attribute.customIntegerValue = global::GraphicsTester.Android.Resource.Attribute.customIntegerValue; - global::Microsoft.Maui.Graphics.Resource.Attribute.customNavigationLayout = global::GraphicsTester.Android.Resource.Attribute.customNavigationLayout; - global::Microsoft.Maui.Graphics.Resource.Attribute.customPixelDimension = global::GraphicsTester.Android.Resource.Attribute.customPixelDimension; - global::Microsoft.Maui.Graphics.Resource.Attribute.customStringValue = global::GraphicsTester.Android.Resource.Attribute.customStringValue; - global::Microsoft.Maui.Graphics.Resource.Attribute.dayInvalidStyle = global::GraphicsTester.Android.Resource.Attribute.dayInvalidStyle; - global::Microsoft.Maui.Graphics.Resource.Attribute.daySelectedStyle = global::GraphicsTester.Android.Resource.Attribute.daySelectedStyle; - global::Microsoft.Maui.Graphics.Resource.Attribute.dayStyle = global::GraphicsTester.Android.Resource.Attribute.dayStyle; - global::Microsoft.Maui.Graphics.Resource.Attribute.dayTodayStyle = global::GraphicsTester.Android.Resource.Attribute.dayTodayStyle; - global::Microsoft.Maui.Graphics.Resource.Attribute.defaultDuration = global::GraphicsTester.Android.Resource.Attribute.defaultDuration; - global::Microsoft.Maui.Graphics.Resource.Attribute.defaultQueryHint = global::GraphicsTester.Android.Resource.Attribute.defaultQueryHint; - global::Microsoft.Maui.Graphics.Resource.Attribute.defaultState = global::GraphicsTester.Android.Resource.Attribute.defaultState; - global::Microsoft.Maui.Graphics.Resource.Attribute.deltaPolarAngle = global::GraphicsTester.Android.Resource.Attribute.deltaPolarAngle; - global::Microsoft.Maui.Graphics.Resource.Attribute.deltaPolarRadius = global::GraphicsTester.Android.Resource.Attribute.deltaPolarRadius; - global::Microsoft.Maui.Graphics.Resource.Attribute.deriveConstraintsFrom = global::GraphicsTester.Android.Resource.Attribute.deriveConstraintsFrom; - global::Microsoft.Maui.Graphics.Resource.Attribute.dialogCornerRadius = global::GraphicsTester.Android.Resource.Attribute.dialogCornerRadius; - global::Microsoft.Maui.Graphics.Resource.Attribute.dialogPreferredPadding = global::GraphicsTester.Android.Resource.Attribute.dialogPreferredPadding; - global::Microsoft.Maui.Graphics.Resource.Attribute.dialogTheme = global::GraphicsTester.Android.Resource.Attribute.dialogTheme; - global::Microsoft.Maui.Graphics.Resource.Attribute.displayOptions = global::GraphicsTester.Android.Resource.Attribute.displayOptions; - global::Microsoft.Maui.Graphics.Resource.Attribute.divider = global::GraphicsTester.Android.Resource.Attribute.divider; - global::Microsoft.Maui.Graphics.Resource.Attribute.dividerHorizontal = global::GraphicsTester.Android.Resource.Attribute.dividerHorizontal; - global::Microsoft.Maui.Graphics.Resource.Attribute.dividerPadding = global::GraphicsTester.Android.Resource.Attribute.dividerPadding; - global::Microsoft.Maui.Graphics.Resource.Attribute.dividerVertical = global::GraphicsTester.Android.Resource.Attribute.dividerVertical; - global::Microsoft.Maui.Graphics.Resource.Attribute.dragDirection = global::GraphicsTester.Android.Resource.Attribute.dragDirection; - global::Microsoft.Maui.Graphics.Resource.Attribute.dragScale = global::GraphicsTester.Android.Resource.Attribute.dragScale; - global::Microsoft.Maui.Graphics.Resource.Attribute.dragThreshold = global::GraphicsTester.Android.Resource.Attribute.dragThreshold; - global::Microsoft.Maui.Graphics.Resource.Attribute.drawableBottomCompat = global::GraphicsTester.Android.Resource.Attribute.drawableBottomCompat; - global::Microsoft.Maui.Graphics.Resource.Attribute.drawableEndCompat = global::GraphicsTester.Android.Resource.Attribute.drawableEndCompat; - global::Microsoft.Maui.Graphics.Resource.Attribute.drawableLeftCompat = global::GraphicsTester.Android.Resource.Attribute.drawableLeftCompat; - global::Microsoft.Maui.Graphics.Resource.Attribute.drawableRightCompat = global::GraphicsTester.Android.Resource.Attribute.drawableRightCompat; - global::Microsoft.Maui.Graphics.Resource.Attribute.drawableSize = global::GraphicsTester.Android.Resource.Attribute.drawableSize; - global::Microsoft.Maui.Graphics.Resource.Attribute.drawableStartCompat = global::GraphicsTester.Android.Resource.Attribute.drawableStartCompat; - global::Microsoft.Maui.Graphics.Resource.Attribute.drawableTint = global::GraphicsTester.Android.Resource.Attribute.drawableTint; - global::Microsoft.Maui.Graphics.Resource.Attribute.drawableTintMode = global::GraphicsTester.Android.Resource.Attribute.drawableTintMode; - global::Microsoft.Maui.Graphics.Resource.Attribute.drawableTopCompat = global::GraphicsTester.Android.Resource.Attribute.drawableTopCompat; - global::Microsoft.Maui.Graphics.Resource.Attribute.drawerArrowStyle = global::GraphicsTester.Android.Resource.Attribute.drawerArrowStyle; - global::Microsoft.Maui.Graphics.Resource.Attribute.drawerLayoutStyle = global::GraphicsTester.Android.Resource.Attribute.drawerLayoutStyle; - global::Microsoft.Maui.Graphics.Resource.Attribute.drawPath = global::GraphicsTester.Android.Resource.Attribute.drawPath; - global::Microsoft.Maui.Graphics.Resource.Attribute.dropdownListPreferredItemHeight = global::GraphicsTester.Android.Resource.Attribute.dropdownListPreferredItemHeight; - global::Microsoft.Maui.Graphics.Resource.Attribute.dropDownListViewStyle = global::GraphicsTester.Android.Resource.Attribute.dropDownListViewStyle; - global::Microsoft.Maui.Graphics.Resource.Attribute.duration = global::GraphicsTester.Android.Resource.Attribute.duration; - global::Microsoft.Maui.Graphics.Resource.Attribute.editTextBackground = global::GraphicsTester.Android.Resource.Attribute.editTextBackground; - global::Microsoft.Maui.Graphics.Resource.Attribute.editTextColor = global::GraphicsTester.Android.Resource.Attribute.editTextColor; - global::Microsoft.Maui.Graphics.Resource.Attribute.editTextStyle = global::GraphicsTester.Android.Resource.Attribute.editTextStyle; - global::Microsoft.Maui.Graphics.Resource.Attribute.elevation = global::GraphicsTester.Android.Resource.Attribute.elevation; - global::Microsoft.Maui.Graphics.Resource.Attribute.elevationOverlayColor = global::GraphicsTester.Android.Resource.Attribute.elevationOverlayColor; - global::Microsoft.Maui.Graphics.Resource.Attribute.elevationOverlayEnabled = global::GraphicsTester.Android.Resource.Attribute.elevationOverlayEnabled; - global::Microsoft.Maui.Graphics.Resource.Attribute.endIconCheckable = global::GraphicsTester.Android.Resource.Attribute.endIconCheckable; - global::Microsoft.Maui.Graphics.Resource.Attribute.endIconContentDescription = global::GraphicsTester.Android.Resource.Attribute.endIconContentDescription; - global::Microsoft.Maui.Graphics.Resource.Attribute.endIconDrawable = global::GraphicsTester.Android.Resource.Attribute.endIconDrawable; - global::Microsoft.Maui.Graphics.Resource.Attribute.endIconMode = global::GraphicsTester.Android.Resource.Attribute.endIconMode; - global::Microsoft.Maui.Graphics.Resource.Attribute.endIconTint = global::GraphicsTester.Android.Resource.Attribute.endIconTint; - global::Microsoft.Maui.Graphics.Resource.Attribute.endIconTintMode = global::GraphicsTester.Android.Resource.Attribute.endIconTintMode; - global::Microsoft.Maui.Graphics.Resource.Attribute.enforceMaterialTheme = global::GraphicsTester.Android.Resource.Attribute.enforceMaterialTheme; - global::Microsoft.Maui.Graphics.Resource.Attribute.enforceTextAppearance = global::GraphicsTester.Android.Resource.Attribute.enforceTextAppearance; - global::Microsoft.Maui.Graphics.Resource.Attribute.ensureMinTouchTargetSize = global::GraphicsTester.Android.Resource.Attribute.ensureMinTouchTargetSize; - global::Microsoft.Maui.Graphics.Resource.Attribute.errorContentDescription = global::GraphicsTester.Android.Resource.Attribute.errorContentDescription; - global::Microsoft.Maui.Graphics.Resource.Attribute.errorEnabled = global::GraphicsTester.Android.Resource.Attribute.errorEnabled; - global::Microsoft.Maui.Graphics.Resource.Attribute.errorIconDrawable = global::GraphicsTester.Android.Resource.Attribute.errorIconDrawable; - global::Microsoft.Maui.Graphics.Resource.Attribute.errorIconTint = global::GraphicsTester.Android.Resource.Attribute.errorIconTint; - global::Microsoft.Maui.Graphics.Resource.Attribute.errorIconTintMode = global::GraphicsTester.Android.Resource.Attribute.errorIconTintMode; - global::Microsoft.Maui.Graphics.Resource.Attribute.errorTextAppearance = global::GraphicsTester.Android.Resource.Attribute.errorTextAppearance; - global::Microsoft.Maui.Graphics.Resource.Attribute.errorTextColor = global::GraphicsTester.Android.Resource.Attribute.errorTextColor; - global::Microsoft.Maui.Graphics.Resource.Attribute.expandActivityOverflowButtonDrawable = global::GraphicsTester.Android.Resource.Attribute.expandActivityOverflowButtonDrawable; - global::Microsoft.Maui.Graphics.Resource.Attribute.expanded = global::GraphicsTester.Android.Resource.Attribute.expanded; - global::Microsoft.Maui.Graphics.Resource.Attribute.expandedHintEnabled = global::GraphicsTester.Android.Resource.Attribute.expandedHintEnabled; - global::Microsoft.Maui.Graphics.Resource.Attribute.expandedTitleGravity = global::GraphicsTester.Android.Resource.Attribute.expandedTitleGravity; - global::Microsoft.Maui.Graphics.Resource.Attribute.expandedTitleMargin = global::GraphicsTester.Android.Resource.Attribute.expandedTitleMargin; - global::Microsoft.Maui.Graphics.Resource.Attribute.expandedTitleMarginBottom = global::GraphicsTester.Android.Resource.Attribute.expandedTitleMarginBottom; - global::Microsoft.Maui.Graphics.Resource.Attribute.expandedTitleMarginEnd = global::GraphicsTester.Android.Resource.Attribute.expandedTitleMarginEnd; - global::Microsoft.Maui.Graphics.Resource.Attribute.expandedTitleMarginStart = global::GraphicsTester.Android.Resource.Attribute.expandedTitleMarginStart; - global::Microsoft.Maui.Graphics.Resource.Attribute.expandedTitleMarginTop = global::GraphicsTester.Android.Resource.Attribute.expandedTitleMarginTop; - global::Microsoft.Maui.Graphics.Resource.Attribute.expandedTitleTextAppearance = global::GraphicsTester.Android.Resource.Attribute.expandedTitleTextAppearance; - global::Microsoft.Maui.Graphics.Resource.Attribute.extendedFloatingActionButtonStyle = global::GraphicsTester.Android.Resource.Attribute.extendedFloatingActionButtonStyle; - global::Microsoft.Maui.Graphics.Resource.Attribute.extendMotionSpec = global::GraphicsTester.Android.Resource.Attribute.extendMotionSpec; - global::Microsoft.Maui.Graphics.Resource.Attribute.fabAlignmentMode = global::GraphicsTester.Android.Resource.Attribute.fabAlignmentMode; - global::Microsoft.Maui.Graphics.Resource.Attribute.fabAnimationMode = global::GraphicsTester.Android.Resource.Attribute.fabAnimationMode; - global::Microsoft.Maui.Graphics.Resource.Attribute.fabCradleMargin = global::GraphicsTester.Android.Resource.Attribute.fabCradleMargin; - global::Microsoft.Maui.Graphics.Resource.Attribute.fabCradleRoundedCornerRadius = global::GraphicsTester.Android.Resource.Attribute.fabCradleRoundedCornerRadius; - global::Microsoft.Maui.Graphics.Resource.Attribute.fabCradleVerticalOffset = global::GraphicsTester.Android.Resource.Attribute.fabCradleVerticalOffset; - global::Microsoft.Maui.Graphics.Resource.Attribute.fabCustomSize = global::GraphicsTester.Android.Resource.Attribute.fabCustomSize; - global::Microsoft.Maui.Graphics.Resource.Attribute.fabSize = global::GraphicsTester.Android.Resource.Attribute.fabSize; - global::Microsoft.Maui.Graphics.Resource.Attribute.fastScrollEnabled = global::GraphicsTester.Android.Resource.Attribute.fastScrollEnabled; - global::Microsoft.Maui.Graphics.Resource.Attribute.fastScrollHorizontalThumbDrawable = global::GraphicsTester.Android.Resource.Attribute.fastScrollHorizontalThumbDrawable; - global::Microsoft.Maui.Graphics.Resource.Attribute.fastScrollHorizontalTrackDrawable = global::GraphicsTester.Android.Resource.Attribute.fastScrollHorizontalTrackDrawable; - global::Microsoft.Maui.Graphics.Resource.Attribute.fastScrollVerticalThumbDrawable = global::GraphicsTester.Android.Resource.Attribute.fastScrollVerticalThumbDrawable; - global::Microsoft.Maui.Graphics.Resource.Attribute.fastScrollVerticalTrackDrawable = global::GraphicsTester.Android.Resource.Attribute.fastScrollVerticalTrackDrawable; - global::Microsoft.Maui.Graphics.Resource.Attribute.firstBaselineToTopHeight = global::GraphicsTester.Android.Resource.Attribute.firstBaselineToTopHeight; - global::Microsoft.Maui.Graphics.Resource.Attribute.floatingActionButtonStyle = global::GraphicsTester.Android.Resource.Attribute.floatingActionButtonStyle; - global::Microsoft.Maui.Graphics.Resource.Attribute.flow_firstHorizontalBias = global::GraphicsTester.Android.Resource.Attribute.flow_firstHorizontalBias; - global::Microsoft.Maui.Graphics.Resource.Attribute.flow_firstHorizontalStyle = global::GraphicsTester.Android.Resource.Attribute.flow_firstHorizontalStyle; - global::Microsoft.Maui.Graphics.Resource.Attribute.flow_firstVerticalBias = global::GraphicsTester.Android.Resource.Attribute.flow_firstVerticalBias; - global::Microsoft.Maui.Graphics.Resource.Attribute.flow_firstVerticalStyle = global::GraphicsTester.Android.Resource.Attribute.flow_firstVerticalStyle; - global::Microsoft.Maui.Graphics.Resource.Attribute.flow_horizontalAlign = global::GraphicsTester.Android.Resource.Attribute.flow_horizontalAlign; - global::Microsoft.Maui.Graphics.Resource.Attribute.flow_horizontalBias = global::GraphicsTester.Android.Resource.Attribute.flow_horizontalBias; - global::Microsoft.Maui.Graphics.Resource.Attribute.flow_horizontalGap = global::GraphicsTester.Android.Resource.Attribute.flow_horizontalGap; - global::Microsoft.Maui.Graphics.Resource.Attribute.flow_horizontalStyle = global::GraphicsTester.Android.Resource.Attribute.flow_horizontalStyle; - global::Microsoft.Maui.Graphics.Resource.Attribute.flow_lastHorizontalBias = global::GraphicsTester.Android.Resource.Attribute.flow_lastHorizontalBias; - global::Microsoft.Maui.Graphics.Resource.Attribute.flow_lastHorizontalStyle = global::GraphicsTester.Android.Resource.Attribute.flow_lastHorizontalStyle; - global::Microsoft.Maui.Graphics.Resource.Attribute.flow_lastVerticalBias = global::GraphicsTester.Android.Resource.Attribute.flow_lastVerticalBias; - global::Microsoft.Maui.Graphics.Resource.Attribute.flow_lastVerticalStyle = global::GraphicsTester.Android.Resource.Attribute.flow_lastVerticalStyle; - global::Microsoft.Maui.Graphics.Resource.Attribute.flow_maxElementsWrap = global::GraphicsTester.Android.Resource.Attribute.flow_maxElementsWrap; - global::Microsoft.Maui.Graphics.Resource.Attribute.flow_padding = global::GraphicsTester.Android.Resource.Attribute.flow_padding; - global::Microsoft.Maui.Graphics.Resource.Attribute.flow_verticalAlign = global::GraphicsTester.Android.Resource.Attribute.flow_verticalAlign; - global::Microsoft.Maui.Graphics.Resource.Attribute.flow_verticalBias = global::GraphicsTester.Android.Resource.Attribute.flow_verticalBias; - global::Microsoft.Maui.Graphics.Resource.Attribute.flow_verticalGap = global::GraphicsTester.Android.Resource.Attribute.flow_verticalGap; - global::Microsoft.Maui.Graphics.Resource.Attribute.flow_verticalStyle = global::GraphicsTester.Android.Resource.Attribute.flow_verticalStyle; - global::Microsoft.Maui.Graphics.Resource.Attribute.flow_wrapMode = global::GraphicsTester.Android.Resource.Attribute.flow_wrapMode; - global::Microsoft.Maui.Graphics.Resource.Attribute.font = global::GraphicsTester.Android.Resource.Attribute.font; - global::Microsoft.Maui.Graphics.Resource.Attribute.fontFamily = global::GraphicsTester.Android.Resource.Attribute.fontFamily; - global::Microsoft.Maui.Graphics.Resource.Attribute.fontProviderAuthority = global::GraphicsTester.Android.Resource.Attribute.fontProviderAuthority; - global::Microsoft.Maui.Graphics.Resource.Attribute.fontProviderCerts = global::GraphicsTester.Android.Resource.Attribute.fontProviderCerts; - global::Microsoft.Maui.Graphics.Resource.Attribute.fontProviderFetchStrategy = global::GraphicsTester.Android.Resource.Attribute.fontProviderFetchStrategy; - global::Microsoft.Maui.Graphics.Resource.Attribute.fontProviderFetchTimeout = global::GraphicsTester.Android.Resource.Attribute.fontProviderFetchTimeout; - global::Microsoft.Maui.Graphics.Resource.Attribute.fontProviderPackage = global::GraphicsTester.Android.Resource.Attribute.fontProviderPackage; - global::Microsoft.Maui.Graphics.Resource.Attribute.fontProviderQuery = global::GraphicsTester.Android.Resource.Attribute.fontProviderQuery; - global::Microsoft.Maui.Graphics.Resource.Attribute.fontStyle = global::GraphicsTester.Android.Resource.Attribute.fontStyle; - global::Microsoft.Maui.Graphics.Resource.Attribute.fontVariationSettings = global::GraphicsTester.Android.Resource.Attribute.fontVariationSettings; - global::Microsoft.Maui.Graphics.Resource.Attribute.fontWeight = global::GraphicsTester.Android.Resource.Attribute.fontWeight; - global::Microsoft.Maui.Graphics.Resource.Attribute.foregroundInsidePadding = global::GraphicsTester.Android.Resource.Attribute.foregroundInsidePadding; - global::Microsoft.Maui.Graphics.Resource.Attribute.framePosition = global::GraphicsTester.Android.Resource.Attribute.framePosition; - global::Microsoft.Maui.Graphics.Resource.Attribute.gapBetweenBars = global::GraphicsTester.Android.Resource.Attribute.gapBetweenBars; - global::Microsoft.Maui.Graphics.Resource.Attribute.gestureInsetBottomIgnored = global::GraphicsTester.Android.Resource.Attribute.gestureInsetBottomIgnored; - global::Microsoft.Maui.Graphics.Resource.Attribute.goIcon = global::GraphicsTester.Android.Resource.Attribute.goIcon; - global::Microsoft.Maui.Graphics.Resource.Attribute.haloColor = global::GraphicsTester.Android.Resource.Attribute.haloColor; - global::Microsoft.Maui.Graphics.Resource.Attribute.haloRadius = global::GraphicsTester.Android.Resource.Attribute.haloRadius; - global::Microsoft.Maui.Graphics.Resource.Attribute.headerLayout = global::GraphicsTester.Android.Resource.Attribute.headerLayout; - global::Microsoft.Maui.Graphics.Resource.Attribute.height = global::GraphicsTester.Android.Resource.Attribute.height; - global::Microsoft.Maui.Graphics.Resource.Attribute.helperText = global::GraphicsTester.Android.Resource.Attribute.helperText; - global::Microsoft.Maui.Graphics.Resource.Attribute.helperTextEnabled = global::GraphicsTester.Android.Resource.Attribute.helperTextEnabled; - global::Microsoft.Maui.Graphics.Resource.Attribute.helperTextTextAppearance = global::GraphicsTester.Android.Resource.Attribute.helperTextTextAppearance; - global::Microsoft.Maui.Graphics.Resource.Attribute.helperTextTextColor = global::GraphicsTester.Android.Resource.Attribute.helperTextTextColor; - global::Microsoft.Maui.Graphics.Resource.Attribute.hideAnimationBehavior = global::GraphicsTester.Android.Resource.Attribute.hideAnimationBehavior; - global::Microsoft.Maui.Graphics.Resource.Attribute.hideMotionSpec = global::GraphicsTester.Android.Resource.Attribute.hideMotionSpec; - global::Microsoft.Maui.Graphics.Resource.Attribute.hideOnContentScroll = global::GraphicsTester.Android.Resource.Attribute.hideOnContentScroll; - global::Microsoft.Maui.Graphics.Resource.Attribute.hideOnScroll = global::GraphicsTester.Android.Resource.Attribute.hideOnScroll; - global::Microsoft.Maui.Graphics.Resource.Attribute.hintAnimationEnabled = global::GraphicsTester.Android.Resource.Attribute.hintAnimationEnabled; - global::Microsoft.Maui.Graphics.Resource.Attribute.hintEnabled = global::GraphicsTester.Android.Resource.Attribute.hintEnabled; - global::Microsoft.Maui.Graphics.Resource.Attribute.hintTextAppearance = global::GraphicsTester.Android.Resource.Attribute.hintTextAppearance; - global::Microsoft.Maui.Graphics.Resource.Attribute.hintTextColor = global::GraphicsTester.Android.Resource.Attribute.hintTextColor; - global::Microsoft.Maui.Graphics.Resource.Attribute.homeAsUpIndicator = global::GraphicsTester.Android.Resource.Attribute.homeAsUpIndicator; - global::Microsoft.Maui.Graphics.Resource.Attribute.homeLayout = global::GraphicsTester.Android.Resource.Attribute.homeLayout; - global::Microsoft.Maui.Graphics.Resource.Attribute.horizontalOffset = global::GraphicsTester.Android.Resource.Attribute.horizontalOffset; - global::Microsoft.Maui.Graphics.Resource.Attribute.hoveredFocusedTranslationZ = global::GraphicsTester.Android.Resource.Attribute.hoveredFocusedTranslationZ; - global::Microsoft.Maui.Graphics.Resource.Attribute.icon = global::GraphicsTester.Android.Resource.Attribute.icon; - global::Microsoft.Maui.Graphics.Resource.Attribute.iconEndPadding = global::GraphicsTester.Android.Resource.Attribute.iconEndPadding; - global::Microsoft.Maui.Graphics.Resource.Attribute.iconGravity = global::GraphicsTester.Android.Resource.Attribute.iconGravity; - global::Microsoft.Maui.Graphics.Resource.Attribute.iconifiedByDefault = global::GraphicsTester.Android.Resource.Attribute.iconifiedByDefault; - global::Microsoft.Maui.Graphics.Resource.Attribute.iconPadding = global::GraphicsTester.Android.Resource.Attribute.iconPadding; - global::Microsoft.Maui.Graphics.Resource.Attribute.iconSize = global::GraphicsTester.Android.Resource.Attribute.iconSize; - global::Microsoft.Maui.Graphics.Resource.Attribute.iconStartPadding = global::GraphicsTester.Android.Resource.Attribute.iconStartPadding; - global::Microsoft.Maui.Graphics.Resource.Attribute.iconTint = global::GraphicsTester.Android.Resource.Attribute.iconTint; - global::Microsoft.Maui.Graphics.Resource.Attribute.iconTintMode = global::GraphicsTester.Android.Resource.Attribute.iconTintMode; - global::Microsoft.Maui.Graphics.Resource.Attribute.imageButtonStyle = global::GraphicsTester.Android.Resource.Attribute.imageButtonStyle; - global::Microsoft.Maui.Graphics.Resource.Attribute.indeterminateAnimationType = global::GraphicsTester.Android.Resource.Attribute.indeterminateAnimationType; - global::Microsoft.Maui.Graphics.Resource.Attribute.indeterminateProgressStyle = global::GraphicsTester.Android.Resource.Attribute.indeterminateProgressStyle; - global::Microsoft.Maui.Graphics.Resource.Attribute.indicatorColor = global::GraphicsTester.Android.Resource.Attribute.indicatorColor; - global::Microsoft.Maui.Graphics.Resource.Attribute.indicatorDirectionCircular = global::GraphicsTester.Android.Resource.Attribute.indicatorDirectionCircular; - global::Microsoft.Maui.Graphics.Resource.Attribute.indicatorDirectionLinear = global::GraphicsTester.Android.Resource.Attribute.indicatorDirectionLinear; - global::Microsoft.Maui.Graphics.Resource.Attribute.indicatorInset = global::GraphicsTester.Android.Resource.Attribute.indicatorInset; - global::Microsoft.Maui.Graphics.Resource.Attribute.indicatorSize = global::GraphicsTester.Android.Resource.Attribute.indicatorSize; - global::Microsoft.Maui.Graphics.Resource.Attribute.initialActivityCount = global::GraphicsTester.Android.Resource.Attribute.initialActivityCount; - global::Microsoft.Maui.Graphics.Resource.Attribute.insetForeground = global::GraphicsTester.Android.Resource.Attribute.insetForeground; - global::Microsoft.Maui.Graphics.Resource.Attribute.isLightTheme = global::GraphicsTester.Android.Resource.Attribute.isLightTheme; - global::Microsoft.Maui.Graphics.Resource.Attribute.isMaterialTheme = global::GraphicsTester.Android.Resource.Attribute.isMaterialTheme; - global::Microsoft.Maui.Graphics.Resource.Attribute.itemBackground = global::GraphicsTester.Android.Resource.Attribute.itemBackground; - global::Microsoft.Maui.Graphics.Resource.Attribute.itemFillColor = global::GraphicsTester.Android.Resource.Attribute.itemFillColor; - global::Microsoft.Maui.Graphics.Resource.Attribute.itemHorizontalPadding = global::GraphicsTester.Android.Resource.Attribute.itemHorizontalPadding; - global::Microsoft.Maui.Graphics.Resource.Attribute.itemHorizontalTranslationEnabled = global::GraphicsTester.Android.Resource.Attribute.itemHorizontalTranslationEnabled; - global::Microsoft.Maui.Graphics.Resource.Attribute.itemIconPadding = global::GraphicsTester.Android.Resource.Attribute.itemIconPadding; - global::Microsoft.Maui.Graphics.Resource.Attribute.itemIconSize = global::GraphicsTester.Android.Resource.Attribute.itemIconSize; - global::Microsoft.Maui.Graphics.Resource.Attribute.itemIconTint = global::GraphicsTester.Android.Resource.Attribute.itemIconTint; - global::Microsoft.Maui.Graphics.Resource.Attribute.itemMaxLines = global::GraphicsTester.Android.Resource.Attribute.itemMaxLines; - global::Microsoft.Maui.Graphics.Resource.Attribute.itemPadding = global::GraphicsTester.Android.Resource.Attribute.itemPadding; - global::Microsoft.Maui.Graphics.Resource.Attribute.itemRippleColor = global::GraphicsTester.Android.Resource.Attribute.itemRippleColor; - global::Microsoft.Maui.Graphics.Resource.Attribute.itemShapeAppearance = global::GraphicsTester.Android.Resource.Attribute.itemShapeAppearance; - global::Microsoft.Maui.Graphics.Resource.Attribute.itemShapeAppearanceOverlay = global::GraphicsTester.Android.Resource.Attribute.itemShapeAppearanceOverlay; - global::Microsoft.Maui.Graphics.Resource.Attribute.itemShapeFillColor = global::GraphicsTester.Android.Resource.Attribute.itemShapeFillColor; - global::Microsoft.Maui.Graphics.Resource.Attribute.itemShapeInsetBottom = global::GraphicsTester.Android.Resource.Attribute.itemShapeInsetBottom; - global::Microsoft.Maui.Graphics.Resource.Attribute.itemShapeInsetEnd = global::GraphicsTester.Android.Resource.Attribute.itemShapeInsetEnd; - global::Microsoft.Maui.Graphics.Resource.Attribute.itemShapeInsetStart = global::GraphicsTester.Android.Resource.Attribute.itemShapeInsetStart; - global::Microsoft.Maui.Graphics.Resource.Attribute.itemShapeInsetTop = global::GraphicsTester.Android.Resource.Attribute.itemShapeInsetTop; - global::Microsoft.Maui.Graphics.Resource.Attribute.itemSpacing = global::GraphicsTester.Android.Resource.Attribute.itemSpacing; - global::Microsoft.Maui.Graphics.Resource.Attribute.itemStrokeColor = global::GraphicsTester.Android.Resource.Attribute.itemStrokeColor; - global::Microsoft.Maui.Graphics.Resource.Attribute.itemStrokeWidth = global::GraphicsTester.Android.Resource.Attribute.itemStrokeWidth; - global::Microsoft.Maui.Graphics.Resource.Attribute.itemTextAppearance = global::GraphicsTester.Android.Resource.Attribute.itemTextAppearance; - global::Microsoft.Maui.Graphics.Resource.Attribute.itemTextAppearanceActive = global::GraphicsTester.Android.Resource.Attribute.itemTextAppearanceActive; - global::Microsoft.Maui.Graphics.Resource.Attribute.itemTextAppearanceInactive = global::GraphicsTester.Android.Resource.Attribute.itemTextAppearanceInactive; - global::Microsoft.Maui.Graphics.Resource.Attribute.itemTextColor = global::GraphicsTester.Android.Resource.Attribute.itemTextColor; - global::Microsoft.Maui.Graphics.Resource.Attribute.keyboardIcon = global::GraphicsTester.Android.Resource.Attribute.keyboardIcon; - global::Microsoft.Maui.Graphics.Resource.Attribute.keylines = global::GraphicsTester.Android.Resource.Attribute.keylines; - global::Microsoft.Maui.Graphics.Resource.Attribute.keyPositionType = global::GraphicsTester.Android.Resource.Attribute.keyPositionType; - global::Microsoft.Maui.Graphics.Resource.Attribute.labelBehavior = global::GraphicsTester.Android.Resource.Attribute.labelBehavior; - global::Microsoft.Maui.Graphics.Resource.Attribute.labelStyle = global::GraphicsTester.Android.Resource.Attribute.labelStyle; - global::Microsoft.Maui.Graphics.Resource.Attribute.labelVisibilityMode = global::GraphicsTester.Android.Resource.Attribute.labelVisibilityMode; - global::Microsoft.Maui.Graphics.Resource.Attribute.lastBaselineToBottomHeight = global::GraphicsTester.Android.Resource.Attribute.lastBaselineToBottomHeight; - global::Microsoft.Maui.Graphics.Resource.Attribute.layout = global::GraphicsTester.Android.Resource.Attribute.layout; - global::Microsoft.Maui.Graphics.Resource.Attribute.layoutDescription = global::GraphicsTester.Android.Resource.Attribute.layoutDescription; - global::Microsoft.Maui.Graphics.Resource.Attribute.layoutDuringTransition = global::GraphicsTester.Android.Resource.Attribute.layoutDuringTransition; - global::Microsoft.Maui.Graphics.Resource.Attribute.layoutManager = global::GraphicsTester.Android.Resource.Attribute.layoutManager; - global::Microsoft.Maui.Graphics.Resource.Attribute.layout_anchor = global::GraphicsTester.Android.Resource.Attribute.layout_anchor; - global::Microsoft.Maui.Graphics.Resource.Attribute.layout_anchorGravity = global::GraphicsTester.Android.Resource.Attribute.layout_anchorGravity; - global::Microsoft.Maui.Graphics.Resource.Attribute.layout_behavior = global::GraphicsTester.Android.Resource.Attribute.layout_behavior; - global::Microsoft.Maui.Graphics.Resource.Attribute.layout_collapseMode = global::GraphicsTester.Android.Resource.Attribute.layout_collapseMode; - global::Microsoft.Maui.Graphics.Resource.Attribute.layout_collapseParallaxMultiplier = global::GraphicsTester.Android.Resource.Attribute.layout_collapseParallaxMultiplier; - global::Microsoft.Maui.Graphics.Resource.Attribute.layout_constrainedHeight = global::GraphicsTester.Android.Resource.Attribute.layout_constrainedHeight; - global::Microsoft.Maui.Graphics.Resource.Attribute.layout_constrainedWidth = global::GraphicsTester.Android.Resource.Attribute.layout_constrainedWidth; - global::Microsoft.Maui.Graphics.Resource.Attribute.layout_constraintBaseline_creator = global::GraphicsTester.Android.Resource.Attribute.layout_constraintBaseline_creator; - global::Microsoft.Maui.Graphics.Resource.Attribute.layout_constraintBaseline_toBaselineOf = global::GraphicsTester.Android.Resource.Attribute.layout_constraintBaseline_toBaselineOf; - global::Microsoft.Maui.Graphics.Resource.Attribute.layout_constraintBottom_creator = global::GraphicsTester.Android.Resource.Attribute.layout_constraintBottom_creator; - global::Microsoft.Maui.Graphics.Resource.Attribute.layout_constraintBottom_toBottomOf = global::GraphicsTester.Android.Resource.Attribute.layout_constraintBottom_toBottomOf; - global::Microsoft.Maui.Graphics.Resource.Attribute.layout_constraintBottom_toTopOf = global::GraphicsTester.Android.Resource.Attribute.layout_constraintBottom_toTopOf; - global::Microsoft.Maui.Graphics.Resource.Attribute.layout_constraintCircle = global::GraphicsTester.Android.Resource.Attribute.layout_constraintCircle; - global::Microsoft.Maui.Graphics.Resource.Attribute.layout_constraintCircleAngle = global::GraphicsTester.Android.Resource.Attribute.layout_constraintCircleAngle; - global::Microsoft.Maui.Graphics.Resource.Attribute.layout_constraintCircleRadius = global::GraphicsTester.Android.Resource.Attribute.layout_constraintCircleRadius; - global::Microsoft.Maui.Graphics.Resource.Attribute.layout_constraintDimensionRatio = global::GraphicsTester.Android.Resource.Attribute.layout_constraintDimensionRatio; - global::Microsoft.Maui.Graphics.Resource.Attribute.layout_constraintEnd_toEndOf = global::GraphicsTester.Android.Resource.Attribute.layout_constraintEnd_toEndOf; - global::Microsoft.Maui.Graphics.Resource.Attribute.layout_constraintEnd_toStartOf = global::GraphicsTester.Android.Resource.Attribute.layout_constraintEnd_toStartOf; - global::Microsoft.Maui.Graphics.Resource.Attribute.layout_constraintGuide_begin = global::GraphicsTester.Android.Resource.Attribute.layout_constraintGuide_begin; - global::Microsoft.Maui.Graphics.Resource.Attribute.layout_constraintGuide_end = global::GraphicsTester.Android.Resource.Attribute.layout_constraintGuide_end; - global::Microsoft.Maui.Graphics.Resource.Attribute.layout_constraintGuide_percent = global::GraphicsTester.Android.Resource.Attribute.layout_constraintGuide_percent; - global::Microsoft.Maui.Graphics.Resource.Attribute.layout_constraintHeight_default = global::GraphicsTester.Android.Resource.Attribute.layout_constraintHeight_default; - global::Microsoft.Maui.Graphics.Resource.Attribute.layout_constraintHeight_max = global::GraphicsTester.Android.Resource.Attribute.layout_constraintHeight_max; - global::Microsoft.Maui.Graphics.Resource.Attribute.layout_constraintHeight_min = global::GraphicsTester.Android.Resource.Attribute.layout_constraintHeight_min; - global::Microsoft.Maui.Graphics.Resource.Attribute.layout_constraintHeight_percent = global::GraphicsTester.Android.Resource.Attribute.layout_constraintHeight_percent; - global::Microsoft.Maui.Graphics.Resource.Attribute.layout_constraintHorizontal_bias = global::GraphicsTester.Android.Resource.Attribute.layout_constraintHorizontal_bias; - global::Microsoft.Maui.Graphics.Resource.Attribute.layout_constraintHorizontal_chainStyle = global::GraphicsTester.Android.Resource.Attribute.layout_constraintHorizontal_chainStyle; - global::Microsoft.Maui.Graphics.Resource.Attribute.layout_constraintHorizontal_weight = global::GraphicsTester.Android.Resource.Attribute.layout_constraintHorizontal_weight; - global::Microsoft.Maui.Graphics.Resource.Attribute.layout_constraintLeft_creator = global::GraphicsTester.Android.Resource.Attribute.layout_constraintLeft_creator; - global::Microsoft.Maui.Graphics.Resource.Attribute.layout_constraintLeft_toLeftOf = global::GraphicsTester.Android.Resource.Attribute.layout_constraintLeft_toLeftOf; - global::Microsoft.Maui.Graphics.Resource.Attribute.layout_constraintLeft_toRightOf = global::GraphicsTester.Android.Resource.Attribute.layout_constraintLeft_toRightOf; - global::Microsoft.Maui.Graphics.Resource.Attribute.layout_constraintRight_creator = global::GraphicsTester.Android.Resource.Attribute.layout_constraintRight_creator; - global::Microsoft.Maui.Graphics.Resource.Attribute.layout_constraintRight_toLeftOf = global::GraphicsTester.Android.Resource.Attribute.layout_constraintRight_toLeftOf; - global::Microsoft.Maui.Graphics.Resource.Attribute.layout_constraintRight_toRightOf = global::GraphicsTester.Android.Resource.Attribute.layout_constraintRight_toRightOf; - global::Microsoft.Maui.Graphics.Resource.Attribute.layout_constraintStart_toEndOf = global::GraphicsTester.Android.Resource.Attribute.layout_constraintStart_toEndOf; - global::Microsoft.Maui.Graphics.Resource.Attribute.layout_constraintStart_toStartOf = global::GraphicsTester.Android.Resource.Attribute.layout_constraintStart_toStartOf; - global::Microsoft.Maui.Graphics.Resource.Attribute.layout_constraintTag = global::GraphicsTester.Android.Resource.Attribute.layout_constraintTag; - global::Microsoft.Maui.Graphics.Resource.Attribute.layout_constraintTop_creator = global::GraphicsTester.Android.Resource.Attribute.layout_constraintTop_creator; - global::Microsoft.Maui.Graphics.Resource.Attribute.layout_constraintTop_toBottomOf = global::GraphicsTester.Android.Resource.Attribute.layout_constraintTop_toBottomOf; - global::Microsoft.Maui.Graphics.Resource.Attribute.layout_constraintTop_toTopOf = global::GraphicsTester.Android.Resource.Attribute.layout_constraintTop_toTopOf; - global::Microsoft.Maui.Graphics.Resource.Attribute.layout_constraintVertical_bias = global::GraphicsTester.Android.Resource.Attribute.layout_constraintVertical_bias; - global::Microsoft.Maui.Graphics.Resource.Attribute.layout_constraintVertical_chainStyle = global::GraphicsTester.Android.Resource.Attribute.layout_constraintVertical_chainStyle; - global::Microsoft.Maui.Graphics.Resource.Attribute.layout_constraintVertical_weight = global::GraphicsTester.Android.Resource.Attribute.layout_constraintVertical_weight; - global::Microsoft.Maui.Graphics.Resource.Attribute.layout_constraintWidth_default = global::GraphicsTester.Android.Resource.Attribute.layout_constraintWidth_default; - global::Microsoft.Maui.Graphics.Resource.Attribute.layout_constraintWidth_max = global::GraphicsTester.Android.Resource.Attribute.layout_constraintWidth_max; - global::Microsoft.Maui.Graphics.Resource.Attribute.layout_constraintWidth_min = global::GraphicsTester.Android.Resource.Attribute.layout_constraintWidth_min; - global::Microsoft.Maui.Graphics.Resource.Attribute.layout_constraintWidth_percent = global::GraphicsTester.Android.Resource.Attribute.layout_constraintWidth_percent; - global::Microsoft.Maui.Graphics.Resource.Attribute.layout_dodgeInsetEdges = global::GraphicsTester.Android.Resource.Attribute.layout_dodgeInsetEdges; - global::Microsoft.Maui.Graphics.Resource.Attribute.layout_editor_absoluteX = global::GraphicsTester.Android.Resource.Attribute.layout_editor_absoluteX; - global::Microsoft.Maui.Graphics.Resource.Attribute.layout_editor_absoluteY = global::GraphicsTester.Android.Resource.Attribute.layout_editor_absoluteY; - global::Microsoft.Maui.Graphics.Resource.Attribute.layout_goneMarginBottom = global::GraphicsTester.Android.Resource.Attribute.layout_goneMarginBottom; - global::Microsoft.Maui.Graphics.Resource.Attribute.layout_goneMarginEnd = global::GraphicsTester.Android.Resource.Attribute.layout_goneMarginEnd; - global::Microsoft.Maui.Graphics.Resource.Attribute.layout_goneMarginLeft = global::GraphicsTester.Android.Resource.Attribute.layout_goneMarginLeft; - global::Microsoft.Maui.Graphics.Resource.Attribute.layout_goneMarginRight = global::GraphicsTester.Android.Resource.Attribute.layout_goneMarginRight; - global::Microsoft.Maui.Graphics.Resource.Attribute.layout_goneMarginStart = global::GraphicsTester.Android.Resource.Attribute.layout_goneMarginStart; - global::Microsoft.Maui.Graphics.Resource.Attribute.layout_goneMarginTop = global::GraphicsTester.Android.Resource.Attribute.layout_goneMarginTop; - global::Microsoft.Maui.Graphics.Resource.Attribute.layout_insetEdge = global::GraphicsTester.Android.Resource.Attribute.layout_insetEdge; - global::Microsoft.Maui.Graphics.Resource.Attribute.layout_keyline = global::GraphicsTester.Android.Resource.Attribute.layout_keyline; - global::Microsoft.Maui.Graphics.Resource.Attribute.layout_optimizationLevel = global::GraphicsTester.Android.Resource.Attribute.layout_optimizationLevel; - global::Microsoft.Maui.Graphics.Resource.Attribute.layout_scrollFlags = global::GraphicsTester.Android.Resource.Attribute.layout_scrollFlags; - global::Microsoft.Maui.Graphics.Resource.Attribute.layout_scrollInterpolator = global::GraphicsTester.Android.Resource.Attribute.layout_scrollInterpolator; - global::Microsoft.Maui.Graphics.Resource.Attribute.liftOnScroll = global::GraphicsTester.Android.Resource.Attribute.liftOnScroll; - global::Microsoft.Maui.Graphics.Resource.Attribute.liftOnScrollTargetViewId = global::GraphicsTester.Android.Resource.Attribute.liftOnScrollTargetViewId; - global::Microsoft.Maui.Graphics.Resource.Attribute.limitBoundsTo = global::GraphicsTester.Android.Resource.Attribute.limitBoundsTo; - global::Microsoft.Maui.Graphics.Resource.Attribute.linearProgressIndicatorStyle = global::GraphicsTester.Android.Resource.Attribute.linearProgressIndicatorStyle; - global::Microsoft.Maui.Graphics.Resource.Attribute.lineHeight = global::GraphicsTester.Android.Resource.Attribute.lineHeight; - global::Microsoft.Maui.Graphics.Resource.Attribute.lineSpacing = global::GraphicsTester.Android.Resource.Attribute.lineSpacing; - global::Microsoft.Maui.Graphics.Resource.Attribute.listChoiceBackgroundIndicator = global::GraphicsTester.Android.Resource.Attribute.listChoiceBackgroundIndicator; - global::Microsoft.Maui.Graphics.Resource.Attribute.listChoiceIndicatorMultipleAnimated = global::GraphicsTester.Android.Resource.Attribute.listChoiceIndicatorMultipleAnimated; - global::Microsoft.Maui.Graphics.Resource.Attribute.listChoiceIndicatorSingleAnimated = global::GraphicsTester.Android.Resource.Attribute.listChoiceIndicatorSingleAnimated; - global::Microsoft.Maui.Graphics.Resource.Attribute.listDividerAlertDialog = global::GraphicsTester.Android.Resource.Attribute.listDividerAlertDialog; - global::Microsoft.Maui.Graphics.Resource.Attribute.listItemLayout = global::GraphicsTester.Android.Resource.Attribute.listItemLayout; - global::Microsoft.Maui.Graphics.Resource.Attribute.listLayout = global::GraphicsTester.Android.Resource.Attribute.listLayout; - global::Microsoft.Maui.Graphics.Resource.Attribute.listMenuViewStyle = global::GraphicsTester.Android.Resource.Attribute.listMenuViewStyle; - global::Microsoft.Maui.Graphics.Resource.Attribute.listPopupWindowStyle = global::GraphicsTester.Android.Resource.Attribute.listPopupWindowStyle; - global::Microsoft.Maui.Graphics.Resource.Attribute.listPreferredItemHeight = global::GraphicsTester.Android.Resource.Attribute.listPreferredItemHeight; - global::Microsoft.Maui.Graphics.Resource.Attribute.listPreferredItemHeightLarge = global::GraphicsTester.Android.Resource.Attribute.listPreferredItemHeightLarge; - global::Microsoft.Maui.Graphics.Resource.Attribute.listPreferredItemHeightSmall = global::GraphicsTester.Android.Resource.Attribute.listPreferredItemHeightSmall; - global::Microsoft.Maui.Graphics.Resource.Attribute.listPreferredItemPaddingEnd = global::GraphicsTester.Android.Resource.Attribute.listPreferredItemPaddingEnd; - global::Microsoft.Maui.Graphics.Resource.Attribute.listPreferredItemPaddingLeft = global::GraphicsTester.Android.Resource.Attribute.listPreferredItemPaddingLeft; - global::Microsoft.Maui.Graphics.Resource.Attribute.listPreferredItemPaddingRight = global::GraphicsTester.Android.Resource.Attribute.listPreferredItemPaddingRight; - global::Microsoft.Maui.Graphics.Resource.Attribute.listPreferredItemPaddingStart = global::GraphicsTester.Android.Resource.Attribute.listPreferredItemPaddingStart; - global::Microsoft.Maui.Graphics.Resource.Attribute.logo = global::GraphicsTester.Android.Resource.Attribute.logo; - global::Microsoft.Maui.Graphics.Resource.Attribute.logoDescription = global::GraphicsTester.Android.Resource.Attribute.logoDescription; - global::Microsoft.Maui.Graphics.Resource.Attribute.materialAlertDialogBodyTextStyle = global::GraphicsTester.Android.Resource.Attribute.materialAlertDialogBodyTextStyle; - global::Microsoft.Maui.Graphics.Resource.Attribute.materialAlertDialogTheme = global::GraphicsTester.Android.Resource.Attribute.materialAlertDialogTheme; - global::Microsoft.Maui.Graphics.Resource.Attribute.materialAlertDialogTitleIconStyle = global::GraphicsTester.Android.Resource.Attribute.materialAlertDialogTitleIconStyle; - global::Microsoft.Maui.Graphics.Resource.Attribute.materialAlertDialogTitlePanelStyle = global::GraphicsTester.Android.Resource.Attribute.materialAlertDialogTitlePanelStyle; - global::Microsoft.Maui.Graphics.Resource.Attribute.materialAlertDialogTitleTextStyle = global::GraphicsTester.Android.Resource.Attribute.materialAlertDialogTitleTextStyle; - global::Microsoft.Maui.Graphics.Resource.Attribute.materialButtonOutlinedStyle = global::GraphicsTester.Android.Resource.Attribute.materialButtonOutlinedStyle; - global::Microsoft.Maui.Graphics.Resource.Attribute.materialButtonStyle = global::GraphicsTester.Android.Resource.Attribute.materialButtonStyle; - global::Microsoft.Maui.Graphics.Resource.Attribute.materialButtonToggleGroupStyle = global::GraphicsTester.Android.Resource.Attribute.materialButtonToggleGroupStyle; - global::Microsoft.Maui.Graphics.Resource.Attribute.materialCalendarDay = global::GraphicsTester.Android.Resource.Attribute.materialCalendarDay; - global::Microsoft.Maui.Graphics.Resource.Attribute.materialCalendarFullscreenTheme = global::GraphicsTester.Android.Resource.Attribute.materialCalendarFullscreenTheme; - global::Microsoft.Maui.Graphics.Resource.Attribute.materialCalendarHeaderCancelButton = global::GraphicsTester.Android.Resource.Attribute.materialCalendarHeaderCancelButton; - global::Microsoft.Maui.Graphics.Resource.Attribute.materialCalendarHeaderConfirmButton = global::GraphicsTester.Android.Resource.Attribute.materialCalendarHeaderConfirmButton; - global::Microsoft.Maui.Graphics.Resource.Attribute.materialCalendarHeaderDivider = global::GraphicsTester.Android.Resource.Attribute.materialCalendarHeaderDivider; - global::Microsoft.Maui.Graphics.Resource.Attribute.materialCalendarHeaderLayout = global::GraphicsTester.Android.Resource.Attribute.materialCalendarHeaderLayout; - global::Microsoft.Maui.Graphics.Resource.Attribute.materialCalendarHeaderSelection = global::GraphicsTester.Android.Resource.Attribute.materialCalendarHeaderSelection; - global::Microsoft.Maui.Graphics.Resource.Attribute.materialCalendarHeaderTitle = global::GraphicsTester.Android.Resource.Attribute.materialCalendarHeaderTitle; - global::Microsoft.Maui.Graphics.Resource.Attribute.materialCalendarHeaderToggleButton = global::GraphicsTester.Android.Resource.Attribute.materialCalendarHeaderToggleButton; - global::Microsoft.Maui.Graphics.Resource.Attribute.materialCalendarMonth = global::GraphicsTester.Android.Resource.Attribute.materialCalendarMonth; - global::Microsoft.Maui.Graphics.Resource.Attribute.materialCalendarMonthNavigationButton = global::GraphicsTester.Android.Resource.Attribute.materialCalendarMonthNavigationButton; - global::Microsoft.Maui.Graphics.Resource.Attribute.materialCalendarStyle = global::GraphicsTester.Android.Resource.Attribute.materialCalendarStyle; - global::Microsoft.Maui.Graphics.Resource.Attribute.materialCalendarTheme = global::GraphicsTester.Android.Resource.Attribute.materialCalendarTheme; - global::Microsoft.Maui.Graphics.Resource.Attribute.materialCalendarYearNavigationButton = global::GraphicsTester.Android.Resource.Attribute.materialCalendarYearNavigationButton; - global::Microsoft.Maui.Graphics.Resource.Attribute.materialCardViewStyle = global::GraphicsTester.Android.Resource.Attribute.materialCardViewStyle; - global::Microsoft.Maui.Graphics.Resource.Attribute.materialCircleRadius = global::GraphicsTester.Android.Resource.Attribute.materialCircleRadius; - global::Microsoft.Maui.Graphics.Resource.Attribute.materialClockStyle = global::GraphicsTester.Android.Resource.Attribute.materialClockStyle; - global::Microsoft.Maui.Graphics.Resource.Attribute.materialThemeOverlay = global::GraphicsTester.Android.Resource.Attribute.materialThemeOverlay; - global::Microsoft.Maui.Graphics.Resource.Attribute.materialTimePickerStyle = global::GraphicsTester.Android.Resource.Attribute.materialTimePickerStyle; - global::Microsoft.Maui.Graphics.Resource.Attribute.materialTimePickerTheme = global::GraphicsTester.Android.Resource.Attribute.materialTimePickerTheme; - global::Microsoft.Maui.Graphics.Resource.Attribute.maxAcceleration = global::GraphicsTester.Android.Resource.Attribute.maxAcceleration; - global::Microsoft.Maui.Graphics.Resource.Attribute.maxActionInlineWidth = global::GraphicsTester.Android.Resource.Attribute.maxActionInlineWidth; - global::Microsoft.Maui.Graphics.Resource.Attribute.maxButtonHeight = global::GraphicsTester.Android.Resource.Attribute.maxButtonHeight; - global::Microsoft.Maui.Graphics.Resource.Attribute.maxCharacterCount = global::GraphicsTester.Android.Resource.Attribute.maxCharacterCount; - global::Microsoft.Maui.Graphics.Resource.Attribute.maxHeight = global::GraphicsTester.Android.Resource.Attribute.maxHeight; - global::Microsoft.Maui.Graphics.Resource.Attribute.maxImageSize = global::GraphicsTester.Android.Resource.Attribute.maxImageSize; - global::Microsoft.Maui.Graphics.Resource.Attribute.maxLines = global::GraphicsTester.Android.Resource.Attribute.maxLines; - global::Microsoft.Maui.Graphics.Resource.Attribute.maxVelocity = global::GraphicsTester.Android.Resource.Attribute.maxVelocity; - global::Microsoft.Maui.Graphics.Resource.Attribute.maxWidth = global::GraphicsTester.Android.Resource.Attribute.maxWidth; - global::Microsoft.Maui.Graphics.Resource.Attribute.measureWithLargestChild = global::GraphicsTester.Android.Resource.Attribute.measureWithLargestChild; - global::Microsoft.Maui.Graphics.Resource.Attribute.menu = global::GraphicsTester.Android.Resource.Attribute.menu; - global::Microsoft.Maui.Graphics.Resource.Attribute.minHeight = global::GraphicsTester.Android.Resource.Attribute.minHeight; - global::Microsoft.Maui.Graphics.Resource.Attribute.minHideDelay = global::GraphicsTester.Android.Resource.Attribute.minHideDelay; - global::Microsoft.Maui.Graphics.Resource.Attribute.minSeparation = global::GraphicsTester.Android.Resource.Attribute.minSeparation; - global::Microsoft.Maui.Graphics.Resource.Attribute.minTouchTargetSize = global::GraphicsTester.Android.Resource.Attribute.minTouchTargetSize; - global::Microsoft.Maui.Graphics.Resource.Attribute.minWidth = global::GraphicsTester.Android.Resource.Attribute.minWidth; - global::Microsoft.Maui.Graphics.Resource.Attribute.mock_diagonalsColor = global::GraphicsTester.Android.Resource.Attribute.mock_diagonalsColor; - global::Microsoft.Maui.Graphics.Resource.Attribute.mock_label = global::GraphicsTester.Android.Resource.Attribute.mock_label; - global::Microsoft.Maui.Graphics.Resource.Attribute.mock_labelBackgroundColor = global::GraphicsTester.Android.Resource.Attribute.mock_labelBackgroundColor; - global::Microsoft.Maui.Graphics.Resource.Attribute.mock_labelColor = global::GraphicsTester.Android.Resource.Attribute.mock_labelColor; - global::Microsoft.Maui.Graphics.Resource.Attribute.mock_showDiagonals = global::GraphicsTester.Android.Resource.Attribute.mock_showDiagonals; - global::Microsoft.Maui.Graphics.Resource.Attribute.mock_showLabel = global::GraphicsTester.Android.Resource.Attribute.mock_showLabel; - global::Microsoft.Maui.Graphics.Resource.Attribute.motionDebug = global::GraphicsTester.Android.Resource.Attribute.motionDebug; - global::Microsoft.Maui.Graphics.Resource.Attribute.motionInterpolator = global::GraphicsTester.Android.Resource.Attribute.motionInterpolator; - global::Microsoft.Maui.Graphics.Resource.Attribute.motionPathRotate = global::GraphicsTester.Android.Resource.Attribute.motionPathRotate; - global::Microsoft.Maui.Graphics.Resource.Attribute.motionProgress = global::GraphicsTester.Android.Resource.Attribute.motionProgress; - global::Microsoft.Maui.Graphics.Resource.Attribute.motionStagger = global::GraphicsTester.Android.Resource.Attribute.motionStagger; - global::Microsoft.Maui.Graphics.Resource.Attribute.motionTarget = global::GraphicsTester.Android.Resource.Attribute.motionTarget; - global::Microsoft.Maui.Graphics.Resource.Attribute.motion_postLayoutCollision = global::GraphicsTester.Android.Resource.Attribute.motion_postLayoutCollision; - global::Microsoft.Maui.Graphics.Resource.Attribute.motion_triggerOnCollision = global::GraphicsTester.Android.Resource.Attribute.motion_triggerOnCollision; - global::Microsoft.Maui.Graphics.Resource.Attribute.moveWhenScrollAtTop = global::GraphicsTester.Android.Resource.Attribute.moveWhenScrollAtTop; - global::Microsoft.Maui.Graphics.Resource.Attribute.multiChoiceItemLayout = global::GraphicsTester.Android.Resource.Attribute.multiChoiceItemLayout; - global::Microsoft.Maui.Graphics.Resource.Attribute.navigationContentDescription = global::GraphicsTester.Android.Resource.Attribute.navigationContentDescription; - global::Microsoft.Maui.Graphics.Resource.Attribute.navigationIcon = global::GraphicsTester.Android.Resource.Attribute.navigationIcon; - global::Microsoft.Maui.Graphics.Resource.Attribute.navigationIconTint = global::GraphicsTester.Android.Resource.Attribute.navigationIconTint; - global::Microsoft.Maui.Graphics.Resource.Attribute.navigationMode = global::GraphicsTester.Android.Resource.Attribute.navigationMode; - global::Microsoft.Maui.Graphics.Resource.Attribute.navigationViewStyle = global::GraphicsTester.Android.Resource.Attribute.navigationViewStyle; - global::Microsoft.Maui.Graphics.Resource.Attribute.nestedScrollable = global::GraphicsTester.Android.Resource.Attribute.nestedScrollable; - global::Microsoft.Maui.Graphics.Resource.Attribute.nestedScrollFlags = global::GraphicsTester.Android.Resource.Attribute.nestedScrollFlags; - global::Microsoft.Maui.Graphics.Resource.Attribute.number = global::GraphicsTester.Android.Resource.Attribute.number; - global::Microsoft.Maui.Graphics.Resource.Attribute.numericModifiers = global::GraphicsTester.Android.Resource.Attribute.numericModifiers; - global::Microsoft.Maui.Graphics.Resource.Attribute.onCross = global::GraphicsTester.Android.Resource.Attribute.onCross; - global::Microsoft.Maui.Graphics.Resource.Attribute.onHide = global::GraphicsTester.Android.Resource.Attribute.onHide; - global::Microsoft.Maui.Graphics.Resource.Attribute.onNegativeCross = global::GraphicsTester.Android.Resource.Attribute.onNegativeCross; - global::Microsoft.Maui.Graphics.Resource.Attribute.onPositiveCross = global::GraphicsTester.Android.Resource.Attribute.onPositiveCross; - global::Microsoft.Maui.Graphics.Resource.Attribute.onShow = global::GraphicsTester.Android.Resource.Attribute.onShow; - global::Microsoft.Maui.Graphics.Resource.Attribute.onTouchUp = global::GraphicsTester.Android.Resource.Attribute.onTouchUp; - global::Microsoft.Maui.Graphics.Resource.Attribute.overlapAnchor = global::GraphicsTester.Android.Resource.Attribute.overlapAnchor; - global::Microsoft.Maui.Graphics.Resource.Attribute.overlay = global::GraphicsTester.Android.Resource.Attribute.overlay; - global::Microsoft.Maui.Graphics.Resource.Attribute.paddingBottomNoButtons = global::GraphicsTester.Android.Resource.Attribute.paddingBottomNoButtons; - global::Microsoft.Maui.Graphics.Resource.Attribute.paddingBottomSystemWindowInsets = global::GraphicsTester.Android.Resource.Attribute.paddingBottomSystemWindowInsets; - global::Microsoft.Maui.Graphics.Resource.Attribute.paddingEnd = global::GraphicsTester.Android.Resource.Attribute.paddingEnd; - global::Microsoft.Maui.Graphics.Resource.Attribute.paddingLeftSystemWindowInsets = global::GraphicsTester.Android.Resource.Attribute.paddingLeftSystemWindowInsets; - global::Microsoft.Maui.Graphics.Resource.Attribute.paddingRightSystemWindowInsets = global::GraphicsTester.Android.Resource.Attribute.paddingRightSystemWindowInsets; - global::Microsoft.Maui.Graphics.Resource.Attribute.paddingStart = global::GraphicsTester.Android.Resource.Attribute.paddingStart; - global::Microsoft.Maui.Graphics.Resource.Attribute.paddingTopNoTitle = global::GraphicsTester.Android.Resource.Attribute.paddingTopNoTitle; - global::Microsoft.Maui.Graphics.Resource.Attribute.panelBackground = global::GraphicsTester.Android.Resource.Attribute.panelBackground; - global::Microsoft.Maui.Graphics.Resource.Attribute.panelMenuListTheme = global::GraphicsTester.Android.Resource.Attribute.panelMenuListTheme; - global::Microsoft.Maui.Graphics.Resource.Attribute.panelMenuListWidth = global::GraphicsTester.Android.Resource.Attribute.panelMenuListWidth; - global::Microsoft.Maui.Graphics.Resource.Attribute.passwordToggleContentDescription = global::GraphicsTester.Android.Resource.Attribute.passwordToggleContentDescription; - global::Microsoft.Maui.Graphics.Resource.Attribute.passwordToggleDrawable = global::GraphicsTester.Android.Resource.Attribute.passwordToggleDrawable; - global::Microsoft.Maui.Graphics.Resource.Attribute.passwordToggleEnabled = global::GraphicsTester.Android.Resource.Attribute.passwordToggleEnabled; - global::Microsoft.Maui.Graphics.Resource.Attribute.passwordToggleTint = global::GraphicsTester.Android.Resource.Attribute.passwordToggleTint; - global::Microsoft.Maui.Graphics.Resource.Attribute.passwordToggleTintMode = global::GraphicsTester.Android.Resource.Attribute.passwordToggleTintMode; - global::Microsoft.Maui.Graphics.Resource.Attribute.pathMotionArc = global::GraphicsTester.Android.Resource.Attribute.pathMotionArc; - global::Microsoft.Maui.Graphics.Resource.Attribute.path_percent = global::GraphicsTester.Android.Resource.Attribute.path_percent; - global::Microsoft.Maui.Graphics.Resource.Attribute.percentHeight = global::GraphicsTester.Android.Resource.Attribute.percentHeight; - global::Microsoft.Maui.Graphics.Resource.Attribute.percentWidth = global::GraphicsTester.Android.Resource.Attribute.percentWidth; - global::Microsoft.Maui.Graphics.Resource.Attribute.percentX = global::GraphicsTester.Android.Resource.Attribute.percentX; - global::Microsoft.Maui.Graphics.Resource.Attribute.percentY = global::GraphicsTester.Android.Resource.Attribute.percentY; - global::Microsoft.Maui.Graphics.Resource.Attribute.perpendicularPath_percent = global::GraphicsTester.Android.Resource.Attribute.perpendicularPath_percent; - global::Microsoft.Maui.Graphics.Resource.Attribute.pivotAnchor = global::GraphicsTester.Android.Resource.Attribute.pivotAnchor; - global::Microsoft.Maui.Graphics.Resource.Attribute.placeholderText = global::GraphicsTester.Android.Resource.Attribute.placeholderText; - global::Microsoft.Maui.Graphics.Resource.Attribute.placeholderTextAppearance = global::GraphicsTester.Android.Resource.Attribute.placeholderTextAppearance; - global::Microsoft.Maui.Graphics.Resource.Attribute.placeholderTextColor = global::GraphicsTester.Android.Resource.Attribute.placeholderTextColor; - global::Microsoft.Maui.Graphics.Resource.Attribute.placeholder_emptyVisibility = global::GraphicsTester.Android.Resource.Attribute.placeholder_emptyVisibility; - global::Microsoft.Maui.Graphics.Resource.Attribute.popupMenuBackground = global::GraphicsTester.Android.Resource.Attribute.popupMenuBackground; - global::Microsoft.Maui.Graphics.Resource.Attribute.popupMenuStyle = global::GraphicsTester.Android.Resource.Attribute.popupMenuStyle; - global::Microsoft.Maui.Graphics.Resource.Attribute.popupTheme = global::GraphicsTester.Android.Resource.Attribute.popupTheme; - global::Microsoft.Maui.Graphics.Resource.Attribute.popupWindowStyle = global::GraphicsTester.Android.Resource.Attribute.popupWindowStyle; - global::Microsoft.Maui.Graphics.Resource.Attribute.prefixText = global::GraphicsTester.Android.Resource.Attribute.prefixText; - global::Microsoft.Maui.Graphics.Resource.Attribute.prefixTextAppearance = global::GraphicsTester.Android.Resource.Attribute.prefixTextAppearance; - global::Microsoft.Maui.Graphics.Resource.Attribute.prefixTextColor = global::GraphicsTester.Android.Resource.Attribute.prefixTextColor; - global::Microsoft.Maui.Graphics.Resource.Attribute.preserveIconSpacing = global::GraphicsTester.Android.Resource.Attribute.preserveIconSpacing; - global::Microsoft.Maui.Graphics.Resource.Attribute.pressedTranslationZ = global::GraphicsTester.Android.Resource.Attribute.pressedTranslationZ; - global::Microsoft.Maui.Graphics.Resource.Attribute.progressBarPadding = global::GraphicsTester.Android.Resource.Attribute.progressBarPadding; - global::Microsoft.Maui.Graphics.Resource.Attribute.progressBarStyle = global::GraphicsTester.Android.Resource.Attribute.progressBarStyle; - global::Microsoft.Maui.Graphics.Resource.Attribute.queryBackground = global::GraphicsTester.Android.Resource.Attribute.queryBackground; - global::Microsoft.Maui.Graphics.Resource.Attribute.queryHint = global::GraphicsTester.Android.Resource.Attribute.queryHint; - global::Microsoft.Maui.Graphics.Resource.Attribute.radioButtonStyle = global::GraphicsTester.Android.Resource.Attribute.radioButtonStyle; - global::Microsoft.Maui.Graphics.Resource.Attribute.rangeFillColor = global::GraphicsTester.Android.Resource.Attribute.rangeFillColor; - global::Microsoft.Maui.Graphics.Resource.Attribute.ratingBarStyle = global::GraphicsTester.Android.Resource.Attribute.ratingBarStyle; - global::Microsoft.Maui.Graphics.Resource.Attribute.ratingBarStyleIndicator = global::GraphicsTester.Android.Resource.Attribute.ratingBarStyleIndicator; - global::Microsoft.Maui.Graphics.Resource.Attribute.ratingBarStyleSmall = global::GraphicsTester.Android.Resource.Attribute.ratingBarStyleSmall; - global::Microsoft.Maui.Graphics.Resource.Attribute.recyclerViewStyle = global::GraphicsTester.Android.Resource.Attribute.recyclerViewStyle; - global::Microsoft.Maui.Graphics.Resource.Attribute.region_heightLessThan = global::GraphicsTester.Android.Resource.Attribute.region_heightLessThan; - global::Microsoft.Maui.Graphics.Resource.Attribute.region_heightMoreThan = global::GraphicsTester.Android.Resource.Attribute.region_heightMoreThan; - global::Microsoft.Maui.Graphics.Resource.Attribute.region_widthLessThan = global::GraphicsTester.Android.Resource.Attribute.region_widthLessThan; - global::Microsoft.Maui.Graphics.Resource.Attribute.region_widthMoreThan = global::GraphicsTester.Android.Resource.Attribute.region_widthMoreThan; - global::Microsoft.Maui.Graphics.Resource.Attribute.reverseLayout = global::GraphicsTester.Android.Resource.Attribute.reverseLayout; - global::Microsoft.Maui.Graphics.Resource.Attribute.rippleColor = global::GraphicsTester.Android.Resource.Attribute.rippleColor; - global::Microsoft.Maui.Graphics.Resource.Attribute.round = global::GraphicsTester.Android.Resource.Attribute.round; - global::Microsoft.Maui.Graphics.Resource.Attribute.roundPercent = global::GraphicsTester.Android.Resource.Attribute.roundPercent; - global::Microsoft.Maui.Graphics.Resource.Attribute.saturation = global::GraphicsTester.Android.Resource.Attribute.saturation; - global::Microsoft.Maui.Graphics.Resource.Attribute.scrimAnimationDuration = global::GraphicsTester.Android.Resource.Attribute.scrimAnimationDuration; - global::Microsoft.Maui.Graphics.Resource.Attribute.scrimBackground = global::GraphicsTester.Android.Resource.Attribute.scrimBackground; - global::Microsoft.Maui.Graphics.Resource.Attribute.scrimVisibleHeightTrigger = global::GraphicsTester.Android.Resource.Attribute.scrimVisibleHeightTrigger; - global::Microsoft.Maui.Graphics.Resource.Attribute.searchHintIcon = global::GraphicsTester.Android.Resource.Attribute.searchHintIcon; - global::Microsoft.Maui.Graphics.Resource.Attribute.searchIcon = global::GraphicsTester.Android.Resource.Attribute.searchIcon; - global::Microsoft.Maui.Graphics.Resource.Attribute.searchViewStyle = global::GraphicsTester.Android.Resource.Attribute.searchViewStyle; - global::Microsoft.Maui.Graphics.Resource.Attribute.seekBarStyle = global::GraphicsTester.Android.Resource.Attribute.seekBarStyle; - global::Microsoft.Maui.Graphics.Resource.Attribute.selectableItemBackground = global::GraphicsTester.Android.Resource.Attribute.selectableItemBackground; - global::Microsoft.Maui.Graphics.Resource.Attribute.selectableItemBackgroundBorderless = global::GraphicsTester.Android.Resource.Attribute.selectableItemBackgroundBorderless; - global::Microsoft.Maui.Graphics.Resource.Attribute.selectionRequired = global::GraphicsTester.Android.Resource.Attribute.selectionRequired; - global::Microsoft.Maui.Graphics.Resource.Attribute.selectorSize = global::GraphicsTester.Android.Resource.Attribute.selectorSize; - global::Microsoft.Maui.Graphics.Resource.Attribute.shapeAppearance = global::GraphicsTester.Android.Resource.Attribute.shapeAppearance; - global::Microsoft.Maui.Graphics.Resource.Attribute.shapeAppearanceLargeComponent = global::GraphicsTester.Android.Resource.Attribute.shapeAppearanceLargeComponent; - global::Microsoft.Maui.Graphics.Resource.Attribute.shapeAppearanceMediumComponent = global::GraphicsTester.Android.Resource.Attribute.shapeAppearanceMediumComponent; - global::Microsoft.Maui.Graphics.Resource.Attribute.shapeAppearanceOverlay = global::GraphicsTester.Android.Resource.Attribute.shapeAppearanceOverlay; - global::Microsoft.Maui.Graphics.Resource.Attribute.shapeAppearanceSmallComponent = global::GraphicsTester.Android.Resource.Attribute.shapeAppearanceSmallComponent; - global::Microsoft.Maui.Graphics.Resource.Attribute.showAnimationBehavior = global::GraphicsTester.Android.Resource.Attribute.showAnimationBehavior; - global::Microsoft.Maui.Graphics.Resource.Attribute.showAsAction = global::GraphicsTester.Android.Resource.Attribute.showAsAction; - global::Microsoft.Maui.Graphics.Resource.Attribute.showDelay = global::GraphicsTester.Android.Resource.Attribute.showDelay; - global::Microsoft.Maui.Graphics.Resource.Attribute.showDividers = global::GraphicsTester.Android.Resource.Attribute.showDividers; - global::Microsoft.Maui.Graphics.Resource.Attribute.showMotionSpec = global::GraphicsTester.Android.Resource.Attribute.showMotionSpec; - global::Microsoft.Maui.Graphics.Resource.Attribute.showPaths = global::GraphicsTester.Android.Resource.Attribute.showPaths; - global::Microsoft.Maui.Graphics.Resource.Attribute.showText = global::GraphicsTester.Android.Resource.Attribute.showText; - global::Microsoft.Maui.Graphics.Resource.Attribute.showTitle = global::GraphicsTester.Android.Resource.Attribute.showTitle; - global::Microsoft.Maui.Graphics.Resource.Attribute.shrinkMotionSpec = global::GraphicsTester.Android.Resource.Attribute.shrinkMotionSpec; - global::Microsoft.Maui.Graphics.Resource.Attribute.singleChoiceItemLayout = global::GraphicsTester.Android.Resource.Attribute.singleChoiceItemLayout; - global::Microsoft.Maui.Graphics.Resource.Attribute.singleLine = global::GraphicsTester.Android.Resource.Attribute.singleLine; - global::Microsoft.Maui.Graphics.Resource.Attribute.singleSelection = global::GraphicsTester.Android.Resource.Attribute.singleSelection; - global::Microsoft.Maui.Graphics.Resource.Attribute.sizePercent = global::GraphicsTester.Android.Resource.Attribute.sizePercent; - global::Microsoft.Maui.Graphics.Resource.Attribute.sliderStyle = global::GraphicsTester.Android.Resource.Attribute.sliderStyle; - global::Microsoft.Maui.Graphics.Resource.Attribute.snackbarButtonStyle = global::GraphicsTester.Android.Resource.Attribute.snackbarButtonStyle; - global::Microsoft.Maui.Graphics.Resource.Attribute.snackbarStyle = global::GraphicsTester.Android.Resource.Attribute.snackbarStyle; - global::Microsoft.Maui.Graphics.Resource.Attribute.snackbarTextViewStyle = global::GraphicsTester.Android.Resource.Attribute.snackbarTextViewStyle; - global::Microsoft.Maui.Graphics.Resource.Attribute.spanCount = global::GraphicsTester.Android.Resource.Attribute.spanCount; - global::Microsoft.Maui.Graphics.Resource.Attribute.spinBars = global::GraphicsTester.Android.Resource.Attribute.spinBars; - global::Microsoft.Maui.Graphics.Resource.Attribute.spinnerDropDownItemStyle = global::GraphicsTester.Android.Resource.Attribute.spinnerDropDownItemStyle; - global::Microsoft.Maui.Graphics.Resource.Attribute.spinnerStyle = global::GraphicsTester.Android.Resource.Attribute.spinnerStyle; - global::Microsoft.Maui.Graphics.Resource.Attribute.splitTrack = global::GraphicsTester.Android.Resource.Attribute.splitTrack; - global::Microsoft.Maui.Graphics.Resource.Attribute.srcCompat = global::GraphicsTester.Android.Resource.Attribute.srcCompat; - global::Microsoft.Maui.Graphics.Resource.Attribute.stackFromEnd = global::GraphicsTester.Android.Resource.Attribute.stackFromEnd; - global::Microsoft.Maui.Graphics.Resource.Attribute.staggered = global::GraphicsTester.Android.Resource.Attribute.staggered; - global::Microsoft.Maui.Graphics.Resource.Attribute.startIconCheckable = global::GraphicsTester.Android.Resource.Attribute.startIconCheckable; - global::Microsoft.Maui.Graphics.Resource.Attribute.startIconContentDescription = global::GraphicsTester.Android.Resource.Attribute.startIconContentDescription; - global::Microsoft.Maui.Graphics.Resource.Attribute.startIconDrawable = global::GraphicsTester.Android.Resource.Attribute.startIconDrawable; - global::Microsoft.Maui.Graphics.Resource.Attribute.startIconTint = global::GraphicsTester.Android.Resource.Attribute.startIconTint; - global::Microsoft.Maui.Graphics.Resource.Attribute.startIconTintMode = global::GraphicsTester.Android.Resource.Attribute.startIconTintMode; - global::Microsoft.Maui.Graphics.Resource.Attribute.state_above_anchor = global::GraphicsTester.Android.Resource.Attribute.state_above_anchor; - global::Microsoft.Maui.Graphics.Resource.Attribute.state_collapsed = global::GraphicsTester.Android.Resource.Attribute.state_collapsed; - global::Microsoft.Maui.Graphics.Resource.Attribute.state_collapsible = global::GraphicsTester.Android.Resource.Attribute.state_collapsible; - global::Microsoft.Maui.Graphics.Resource.Attribute.state_dragged = global::GraphicsTester.Android.Resource.Attribute.state_dragged; - global::Microsoft.Maui.Graphics.Resource.Attribute.state_liftable = global::GraphicsTester.Android.Resource.Attribute.state_liftable; - global::Microsoft.Maui.Graphics.Resource.Attribute.state_lifted = global::GraphicsTester.Android.Resource.Attribute.state_lifted; - global::Microsoft.Maui.Graphics.Resource.Attribute.statusBarBackground = global::GraphicsTester.Android.Resource.Attribute.statusBarBackground; - global::Microsoft.Maui.Graphics.Resource.Attribute.statusBarForeground = global::GraphicsTester.Android.Resource.Attribute.statusBarForeground; - global::Microsoft.Maui.Graphics.Resource.Attribute.statusBarScrim = global::GraphicsTester.Android.Resource.Attribute.statusBarScrim; - global::Microsoft.Maui.Graphics.Resource.Attribute.strokeColor = global::GraphicsTester.Android.Resource.Attribute.strokeColor; - global::Microsoft.Maui.Graphics.Resource.Attribute.strokeWidth = global::GraphicsTester.Android.Resource.Attribute.strokeWidth; - global::Microsoft.Maui.Graphics.Resource.Attribute.subMenuArrow = global::GraphicsTester.Android.Resource.Attribute.subMenuArrow; - global::Microsoft.Maui.Graphics.Resource.Attribute.submitBackground = global::GraphicsTester.Android.Resource.Attribute.submitBackground; - global::Microsoft.Maui.Graphics.Resource.Attribute.subtitle = global::GraphicsTester.Android.Resource.Attribute.subtitle; - global::Microsoft.Maui.Graphics.Resource.Attribute.subtitleTextAppearance = global::GraphicsTester.Android.Resource.Attribute.subtitleTextAppearance; - global::Microsoft.Maui.Graphics.Resource.Attribute.subtitleTextColor = global::GraphicsTester.Android.Resource.Attribute.subtitleTextColor; - global::Microsoft.Maui.Graphics.Resource.Attribute.subtitleTextStyle = global::GraphicsTester.Android.Resource.Attribute.subtitleTextStyle; - global::Microsoft.Maui.Graphics.Resource.Attribute.suffixText = global::GraphicsTester.Android.Resource.Attribute.suffixText; - global::Microsoft.Maui.Graphics.Resource.Attribute.suffixTextAppearance = global::GraphicsTester.Android.Resource.Attribute.suffixTextAppearance; - global::Microsoft.Maui.Graphics.Resource.Attribute.suffixTextColor = global::GraphicsTester.Android.Resource.Attribute.suffixTextColor; - global::Microsoft.Maui.Graphics.Resource.Attribute.suggestionRowLayout = global::GraphicsTester.Android.Resource.Attribute.suggestionRowLayout; - global::Microsoft.Maui.Graphics.Resource.Attribute.swipeRefreshLayoutProgressSpinnerBackgroundColor = global::GraphicsTester.Android.Resource.Attribute.swipeRefreshLayoutProgressSpinnerBackgroundColor; - global::Microsoft.Maui.Graphics.Resource.Attribute.switchMinWidth = global::GraphicsTester.Android.Resource.Attribute.switchMinWidth; - global::Microsoft.Maui.Graphics.Resource.Attribute.switchPadding = global::GraphicsTester.Android.Resource.Attribute.switchPadding; - global::Microsoft.Maui.Graphics.Resource.Attribute.switchStyle = global::GraphicsTester.Android.Resource.Attribute.switchStyle; - global::Microsoft.Maui.Graphics.Resource.Attribute.switchTextAppearance = global::GraphicsTester.Android.Resource.Attribute.switchTextAppearance; - global::Microsoft.Maui.Graphics.Resource.Attribute.tabBackground = global::GraphicsTester.Android.Resource.Attribute.tabBackground; - global::Microsoft.Maui.Graphics.Resource.Attribute.tabContentStart = global::GraphicsTester.Android.Resource.Attribute.tabContentStart; - global::Microsoft.Maui.Graphics.Resource.Attribute.tabGravity = global::GraphicsTester.Android.Resource.Attribute.tabGravity; - global::Microsoft.Maui.Graphics.Resource.Attribute.tabIconTint = global::GraphicsTester.Android.Resource.Attribute.tabIconTint; - global::Microsoft.Maui.Graphics.Resource.Attribute.tabIconTintMode = global::GraphicsTester.Android.Resource.Attribute.tabIconTintMode; - global::Microsoft.Maui.Graphics.Resource.Attribute.tabIndicator = global::GraphicsTester.Android.Resource.Attribute.tabIndicator; - global::Microsoft.Maui.Graphics.Resource.Attribute.tabIndicatorAnimationDuration = global::GraphicsTester.Android.Resource.Attribute.tabIndicatorAnimationDuration; - global::Microsoft.Maui.Graphics.Resource.Attribute.tabIndicatorAnimationMode = global::GraphicsTester.Android.Resource.Attribute.tabIndicatorAnimationMode; - global::Microsoft.Maui.Graphics.Resource.Attribute.tabIndicatorColor = global::GraphicsTester.Android.Resource.Attribute.tabIndicatorColor; - global::Microsoft.Maui.Graphics.Resource.Attribute.tabIndicatorFullWidth = global::GraphicsTester.Android.Resource.Attribute.tabIndicatorFullWidth; - global::Microsoft.Maui.Graphics.Resource.Attribute.tabIndicatorGravity = global::GraphicsTester.Android.Resource.Attribute.tabIndicatorGravity; - global::Microsoft.Maui.Graphics.Resource.Attribute.tabIndicatorHeight = global::GraphicsTester.Android.Resource.Attribute.tabIndicatorHeight; - global::Microsoft.Maui.Graphics.Resource.Attribute.tabInlineLabel = global::GraphicsTester.Android.Resource.Attribute.tabInlineLabel; - global::Microsoft.Maui.Graphics.Resource.Attribute.tabMaxWidth = global::GraphicsTester.Android.Resource.Attribute.tabMaxWidth; - global::Microsoft.Maui.Graphics.Resource.Attribute.tabMinWidth = global::GraphicsTester.Android.Resource.Attribute.tabMinWidth; - global::Microsoft.Maui.Graphics.Resource.Attribute.tabMode = global::GraphicsTester.Android.Resource.Attribute.tabMode; - global::Microsoft.Maui.Graphics.Resource.Attribute.tabPadding = global::GraphicsTester.Android.Resource.Attribute.tabPadding; - global::Microsoft.Maui.Graphics.Resource.Attribute.tabPaddingBottom = global::GraphicsTester.Android.Resource.Attribute.tabPaddingBottom; - global::Microsoft.Maui.Graphics.Resource.Attribute.tabPaddingEnd = global::GraphicsTester.Android.Resource.Attribute.tabPaddingEnd; - global::Microsoft.Maui.Graphics.Resource.Attribute.tabPaddingStart = global::GraphicsTester.Android.Resource.Attribute.tabPaddingStart; - global::Microsoft.Maui.Graphics.Resource.Attribute.tabPaddingTop = global::GraphicsTester.Android.Resource.Attribute.tabPaddingTop; - global::Microsoft.Maui.Graphics.Resource.Attribute.tabRippleColor = global::GraphicsTester.Android.Resource.Attribute.tabRippleColor; - global::Microsoft.Maui.Graphics.Resource.Attribute.tabSelectedTextColor = global::GraphicsTester.Android.Resource.Attribute.tabSelectedTextColor; - global::Microsoft.Maui.Graphics.Resource.Attribute.tabStyle = global::GraphicsTester.Android.Resource.Attribute.tabStyle; - global::Microsoft.Maui.Graphics.Resource.Attribute.tabTextAppearance = global::GraphicsTester.Android.Resource.Attribute.tabTextAppearance; - global::Microsoft.Maui.Graphics.Resource.Attribute.tabTextColor = global::GraphicsTester.Android.Resource.Attribute.tabTextColor; - global::Microsoft.Maui.Graphics.Resource.Attribute.tabUnboundedRipple = global::GraphicsTester.Android.Resource.Attribute.tabUnboundedRipple; - global::Microsoft.Maui.Graphics.Resource.Attribute.targetId = global::GraphicsTester.Android.Resource.Attribute.targetId; - global::Microsoft.Maui.Graphics.Resource.Attribute.telltales_tailColor = global::GraphicsTester.Android.Resource.Attribute.telltales_tailColor; - global::Microsoft.Maui.Graphics.Resource.Attribute.telltales_tailScale = global::GraphicsTester.Android.Resource.Attribute.telltales_tailScale; - global::Microsoft.Maui.Graphics.Resource.Attribute.telltales_velocityMode = global::GraphicsTester.Android.Resource.Attribute.telltales_velocityMode; - global::Microsoft.Maui.Graphics.Resource.Attribute.textAllCaps = global::GraphicsTester.Android.Resource.Attribute.textAllCaps; - global::Microsoft.Maui.Graphics.Resource.Attribute.textAppearanceBody1 = global::GraphicsTester.Android.Resource.Attribute.textAppearanceBody1; - global::Microsoft.Maui.Graphics.Resource.Attribute.textAppearanceBody2 = global::GraphicsTester.Android.Resource.Attribute.textAppearanceBody2; - global::Microsoft.Maui.Graphics.Resource.Attribute.textAppearanceButton = global::GraphicsTester.Android.Resource.Attribute.textAppearanceButton; - global::Microsoft.Maui.Graphics.Resource.Attribute.textAppearanceCaption = global::GraphicsTester.Android.Resource.Attribute.textAppearanceCaption; - global::Microsoft.Maui.Graphics.Resource.Attribute.textAppearanceHeadline1 = global::GraphicsTester.Android.Resource.Attribute.textAppearanceHeadline1; - global::Microsoft.Maui.Graphics.Resource.Attribute.textAppearanceHeadline2 = global::GraphicsTester.Android.Resource.Attribute.textAppearanceHeadline2; - global::Microsoft.Maui.Graphics.Resource.Attribute.textAppearanceHeadline3 = global::GraphicsTester.Android.Resource.Attribute.textAppearanceHeadline3; - global::Microsoft.Maui.Graphics.Resource.Attribute.textAppearanceHeadline4 = global::GraphicsTester.Android.Resource.Attribute.textAppearanceHeadline4; - global::Microsoft.Maui.Graphics.Resource.Attribute.textAppearanceHeadline5 = global::GraphicsTester.Android.Resource.Attribute.textAppearanceHeadline5; - global::Microsoft.Maui.Graphics.Resource.Attribute.textAppearanceHeadline6 = global::GraphicsTester.Android.Resource.Attribute.textAppearanceHeadline6; - global::Microsoft.Maui.Graphics.Resource.Attribute.textAppearanceLargePopupMenu = global::GraphicsTester.Android.Resource.Attribute.textAppearanceLargePopupMenu; - global::Microsoft.Maui.Graphics.Resource.Attribute.textAppearanceLineHeightEnabled = global::GraphicsTester.Android.Resource.Attribute.textAppearanceLineHeightEnabled; - global::Microsoft.Maui.Graphics.Resource.Attribute.textAppearanceListItem = global::GraphicsTester.Android.Resource.Attribute.textAppearanceListItem; - global::Microsoft.Maui.Graphics.Resource.Attribute.textAppearanceListItemSecondary = global::GraphicsTester.Android.Resource.Attribute.textAppearanceListItemSecondary; - global::Microsoft.Maui.Graphics.Resource.Attribute.textAppearanceListItemSmall = global::GraphicsTester.Android.Resource.Attribute.textAppearanceListItemSmall; - global::Microsoft.Maui.Graphics.Resource.Attribute.textAppearanceOverline = global::GraphicsTester.Android.Resource.Attribute.textAppearanceOverline; - global::Microsoft.Maui.Graphics.Resource.Attribute.textAppearancePopupMenuHeader = global::GraphicsTester.Android.Resource.Attribute.textAppearancePopupMenuHeader; - global::Microsoft.Maui.Graphics.Resource.Attribute.textAppearanceSearchResultSubtitle = global::GraphicsTester.Android.Resource.Attribute.textAppearanceSearchResultSubtitle; - global::Microsoft.Maui.Graphics.Resource.Attribute.textAppearanceSearchResultTitle = global::GraphicsTester.Android.Resource.Attribute.textAppearanceSearchResultTitle; - global::Microsoft.Maui.Graphics.Resource.Attribute.textAppearanceSmallPopupMenu = global::GraphicsTester.Android.Resource.Attribute.textAppearanceSmallPopupMenu; - global::Microsoft.Maui.Graphics.Resource.Attribute.textAppearanceSubtitle1 = global::GraphicsTester.Android.Resource.Attribute.textAppearanceSubtitle1; - global::Microsoft.Maui.Graphics.Resource.Attribute.textAppearanceSubtitle2 = global::GraphicsTester.Android.Resource.Attribute.textAppearanceSubtitle2; - global::Microsoft.Maui.Graphics.Resource.Attribute.textColorAlertDialogListItem = global::GraphicsTester.Android.Resource.Attribute.textColorAlertDialogListItem; - global::Microsoft.Maui.Graphics.Resource.Attribute.textColorSearchUrl = global::GraphicsTester.Android.Resource.Attribute.textColorSearchUrl; - global::Microsoft.Maui.Graphics.Resource.Attribute.textEndPadding = global::GraphicsTester.Android.Resource.Attribute.textEndPadding; - global::Microsoft.Maui.Graphics.Resource.Attribute.textInputLayoutFocusedRectEnabled = global::GraphicsTester.Android.Resource.Attribute.textInputLayoutFocusedRectEnabled; - global::Microsoft.Maui.Graphics.Resource.Attribute.textInputStyle = global::GraphicsTester.Android.Resource.Attribute.textInputStyle; - global::Microsoft.Maui.Graphics.Resource.Attribute.textLocale = global::GraphicsTester.Android.Resource.Attribute.textLocale; - global::Microsoft.Maui.Graphics.Resource.Attribute.textStartPadding = global::GraphicsTester.Android.Resource.Attribute.textStartPadding; - global::Microsoft.Maui.Graphics.Resource.Attribute.theme = global::GraphicsTester.Android.Resource.Attribute.theme; - global::Microsoft.Maui.Graphics.Resource.Attribute.themeLineHeight = global::GraphicsTester.Android.Resource.Attribute.themeLineHeight; - global::Microsoft.Maui.Graphics.Resource.Attribute.thickness = global::GraphicsTester.Android.Resource.Attribute.thickness; - global::Microsoft.Maui.Graphics.Resource.Attribute.thumbColor = global::GraphicsTester.Android.Resource.Attribute.thumbColor; - global::Microsoft.Maui.Graphics.Resource.Attribute.thumbElevation = global::GraphicsTester.Android.Resource.Attribute.thumbElevation; - global::Microsoft.Maui.Graphics.Resource.Attribute.thumbRadius = global::GraphicsTester.Android.Resource.Attribute.thumbRadius; - global::Microsoft.Maui.Graphics.Resource.Attribute.thumbStrokeColor = global::GraphicsTester.Android.Resource.Attribute.thumbStrokeColor; - global::Microsoft.Maui.Graphics.Resource.Attribute.thumbStrokeWidth = global::GraphicsTester.Android.Resource.Attribute.thumbStrokeWidth; - global::Microsoft.Maui.Graphics.Resource.Attribute.thumbTextPadding = global::GraphicsTester.Android.Resource.Attribute.thumbTextPadding; - global::Microsoft.Maui.Graphics.Resource.Attribute.thumbTint = global::GraphicsTester.Android.Resource.Attribute.thumbTint; - global::Microsoft.Maui.Graphics.Resource.Attribute.thumbTintMode = global::GraphicsTester.Android.Resource.Attribute.thumbTintMode; - global::Microsoft.Maui.Graphics.Resource.Attribute.tickColor = global::GraphicsTester.Android.Resource.Attribute.tickColor; - global::Microsoft.Maui.Graphics.Resource.Attribute.tickColorActive = global::GraphicsTester.Android.Resource.Attribute.tickColorActive; - global::Microsoft.Maui.Graphics.Resource.Attribute.tickColorInactive = global::GraphicsTester.Android.Resource.Attribute.tickColorInactive; - global::Microsoft.Maui.Graphics.Resource.Attribute.tickMark = global::GraphicsTester.Android.Resource.Attribute.tickMark; - global::Microsoft.Maui.Graphics.Resource.Attribute.tickMarkTint = global::GraphicsTester.Android.Resource.Attribute.tickMarkTint; - global::Microsoft.Maui.Graphics.Resource.Attribute.tickMarkTintMode = global::GraphicsTester.Android.Resource.Attribute.tickMarkTintMode; - global::Microsoft.Maui.Graphics.Resource.Attribute.tickVisible = global::GraphicsTester.Android.Resource.Attribute.tickVisible; - global::Microsoft.Maui.Graphics.Resource.Attribute.tint = global::GraphicsTester.Android.Resource.Attribute.tint; - global::Microsoft.Maui.Graphics.Resource.Attribute.tintMode = global::GraphicsTester.Android.Resource.Attribute.tintMode; - global::Microsoft.Maui.Graphics.Resource.Attribute.title = global::GraphicsTester.Android.Resource.Attribute.title; - global::Microsoft.Maui.Graphics.Resource.Attribute.titleEnabled = global::GraphicsTester.Android.Resource.Attribute.titleEnabled; - global::Microsoft.Maui.Graphics.Resource.Attribute.titleMargin = global::GraphicsTester.Android.Resource.Attribute.titleMargin; - global::Microsoft.Maui.Graphics.Resource.Attribute.titleMarginBottom = global::GraphicsTester.Android.Resource.Attribute.titleMarginBottom; - global::Microsoft.Maui.Graphics.Resource.Attribute.titleMarginEnd = global::GraphicsTester.Android.Resource.Attribute.titleMarginEnd; - global::Microsoft.Maui.Graphics.Resource.Attribute.titleMargins = global::GraphicsTester.Android.Resource.Attribute.titleMargins; - global::Microsoft.Maui.Graphics.Resource.Attribute.titleMarginStart = global::GraphicsTester.Android.Resource.Attribute.titleMarginStart; - global::Microsoft.Maui.Graphics.Resource.Attribute.titleMarginTop = global::GraphicsTester.Android.Resource.Attribute.titleMarginTop; - global::Microsoft.Maui.Graphics.Resource.Attribute.titleTextAppearance = global::GraphicsTester.Android.Resource.Attribute.titleTextAppearance; - global::Microsoft.Maui.Graphics.Resource.Attribute.titleTextColor = global::GraphicsTester.Android.Resource.Attribute.titleTextColor; - global::Microsoft.Maui.Graphics.Resource.Attribute.titleTextStyle = global::GraphicsTester.Android.Resource.Attribute.titleTextStyle; - global::Microsoft.Maui.Graphics.Resource.Attribute.toolbarId = global::GraphicsTester.Android.Resource.Attribute.toolbarId; - global::Microsoft.Maui.Graphics.Resource.Attribute.toolbarNavigationButtonStyle = global::GraphicsTester.Android.Resource.Attribute.toolbarNavigationButtonStyle; - global::Microsoft.Maui.Graphics.Resource.Attribute.toolbarStyle = global::GraphicsTester.Android.Resource.Attribute.toolbarStyle; - global::Microsoft.Maui.Graphics.Resource.Attribute.tooltipForegroundColor = global::GraphicsTester.Android.Resource.Attribute.tooltipForegroundColor; - global::Microsoft.Maui.Graphics.Resource.Attribute.tooltipFrameBackground = global::GraphicsTester.Android.Resource.Attribute.tooltipFrameBackground; - global::Microsoft.Maui.Graphics.Resource.Attribute.tooltipStyle = global::GraphicsTester.Android.Resource.Attribute.tooltipStyle; - global::Microsoft.Maui.Graphics.Resource.Attribute.tooltipText = global::GraphicsTester.Android.Resource.Attribute.tooltipText; - global::Microsoft.Maui.Graphics.Resource.Attribute.touchAnchorId = global::GraphicsTester.Android.Resource.Attribute.touchAnchorId; - global::Microsoft.Maui.Graphics.Resource.Attribute.touchAnchorSide = global::GraphicsTester.Android.Resource.Attribute.touchAnchorSide; - global::Microsoft.Maui.Graphics.Resource.Attribute.touchRegionId = global::GraphicsTester.Android.Resource.Attribute.touchRegionId; - global::Microsoft.Maui.Graphics.Resource.Attribute.track = global::GraphicsTester.Android.Resource.Attribute.track; - global::Microsoft.Maui.Graphics.Resource.Attribute.trackColor = global::GraphicsTester.Android.Resource.Attribute.trackColor; - global::Microsoft.Maui.Graphics.Resource.Attribute.trackColorActive = global::GraphicsTester.Android.Resource.Attribute.trackColorActive; - global::Microsoft.Maui.Graphics.Resource.Attribute.trackColorInactive = global::GraphicsTester.Android.Resource.Attribute.trackColorInactive; - global::Microsoft.Maui.Graphics.Resource.Attribute.trackCornerRadius = global::GraphicsTester.Android.Resource.Attribute.trackCornerRadius; - global::Microsoft.Maui.Graphics.Resource.Attribute.trackHeight = global::GraphicsTester.Android.Resource.Attribute.trackHeight; - global::Microsoft.Maui.Graphics.Resource.Attribute.trackThickness = global::GraphicsTester.Android.Resource.Attribute.trackThickness; - global::Microsoft.Maui.Graphics.Resource.Attribute.trackTint = global::GraphicsTester.Android.Resource.Attribute.trackTint; - global::Microsoft.Maui.Graphics.Resource.Attribute.trackTintMode = global::GraphicsTester.Android.Resource.Attribute.trackTintMode; - global::Microsoft.Maui.Graphics.Resource.Attribute.transitionDisable = global::GraphicsTester.Android.Resource.Attribute.transitionDisable; - global::Microsoft.Maui.Graphics.Resource.Attribute.transitionEasing = global::GraphicsTester.Android.Resource.Attribute.transitionEasing; - global::Microsoft.Maui.Graphics.Resource.Attribute.transitionFlags = global::GraphicsTester.Android.Resource.Attribute.transitionFlags; - global::Microsoft.Maui.Graphics.Resource.Attribute.transitionPathRotate = global::GraphicsTester.Android.Resource.Attribute.transitionPathRotate; - global::Microsoft.Maui.Graphics.Resource.Attribute.transitionShapeAppearance = global::GraphicsTester.Android.Resource.Attribute.transitionShapeAppearance; - global::Microsoft.Maui.Graphics.Resource.Attribute.triggerId = global::GraphicsTester.Android.Resource.Attribute.triggerId; - global::Microsoft.Maui.Graphics.Resource.Attribute.triggerReceiver = global::GraphicsTester.Android.Resource.Attribute.triggerReceiver; - global::Microsoft.Maui.Graphics.Resource.Attribute.triggerSlack = global::GraphicsTester.Android.Resource.Attribute.triggerSlack; - global::Microsoft.Maui.Graphics.Resource.Attribute.ttcIndex = global::GraphicsTester.Android.Resource.Attribute.ttcIndex; - global::Microsoft.Maui.Graphics.Resource.Attribute.useCompatPadding = global::GraphicsTester.Android.Resource.Attribute.useCompatPadding; - global::Microsoft.Maui.Graphics.Resource.Attribute.useMaterialThemeColors = global::GraphicsTester.Android.Resource.Attribute.useMaterialThemeColors; - global::Microsoft.Maui.Graphics.Resource.Attribute.values = global::GraphicsTester.Android.Resource.Attribute.values; - global::Microsoft.Maui.Graphics.Resource.Attribute.verticalOffset = global::GraphicsTester.Android.Resource.Attribute.verticalOffset; - global::Microsoft.Maui.Graphics.Resource.Attribute.viewInflaterClass = global::GraphicsTester.Android.Resource.Attribute.viewInflaterClass; - global::Microsoft.Maui.Graphics.Resource.Attribute.visibilityMode = global::GraphicsTester.Android.Resource.Attribute.visibilityMode; - global::Microsoft.Maui.Graphics.Resource.Attribute.voiceIcon = global::GraphicsTester.Android.Resource.Attribute.voiceIcon; - global::Microsoft.Maui.Graphics.Resource.Attribute.warmth = global::GraphicsTester.Android.Resource.Attribute.warmth; - global::Microsoft.Maui.Graphics.Resource.Attribute.waveDecay = global::GraphicsTester.Android.Resource.Attribute.waveDecay; - global::Microsoft.Maui.Graphics.Resource.Attribute.waveOffset = global::GraphicsTester.Android.Resource.Attribute.waveOffset; - global::Microsoft.Maui.Graphics.Resource.Attribute.wavePeriod = global::GraphicsTester.Android.Resource.Attribute.wavePeriod; - global::Microsoft.Maui.Graphics.Resource.Attribute.waveShape = global::GraphicsTester.Android.Resource.Attribute.waveShape; - global::Microsoft.Maui.Graphics.Resource.Attribute.waveVariesBy = global::GraphicsTester.Android.Resource.Attribute.waveVariesBy; - global::Microsoft.Maui.Graphics.Resource.Attribute.windowActionBar = global::GraphicsTester.Android.Resource.Attribute.windowActionBar; - global::Microsoft.Maui.Graphics.Resource.Attribute.windowActionBarOverlay = global::GraphicsTester.Android.Resource.Attribute.windowActionBarOverlay; - global::Microsoft.Maui.Graphics.Resource.Attribute.windowActionModeOverlay = global::GraphicsTester.Android.Resource.Attribute.windowActionModeOverlay; - global::Microsoft.Maui.Graphics.Resource.Attribute.windowFixedHeightMajor = global::GraphicsTester.Android.Resource.Attribute.windowFixedHeightMajor; - global::Microsoft.Maui.Graphics.Resource.Attribute.windowFixedHeightMinor = global::GraphicsTester.Android.Resource.Attribute.windowFixedHeightMinor; - global::Microsoft.Maui.Graphics.Resource.Attribute.windowFixedWidthMajor = global::GraphicsTester.Android.Resource.Attribute.windowFixedWidthMajor; - global::Microsoft.Maui.Graphics.Resource.Attribute.windowFixedWidthMinor = global::GraphicsTester.Android.Resource.Attribute.windowFixedWidthMinor; - global::Microsoft.Maui.Graphics.Resource.Attribute.windowMinWidthMajor = global::GraphicsTester.Android.Resource.Attribute.windowMinWidthMajor; - global::Microsoft.Maui.Graphics.Resource.Attribute.windowMinWidthMinor = global::GraphicsTester.Android.Resource.Attribute.windowMinWidthMinor; - global::Microsoft.Maui.Graphics.Resource.Attribute.windowNoTitle = global::GraphicsTester.Android.Resource.Attribute.windowNoTitle; - global::Microsoft.Maui.Graphics.Resource.Attribute.yearSelectedStyle = global::GraphicsTester.Android.Resource.Attribute.yearSelectedStyle; - global::Microsoft.Maui.Graphics.Resource.Attribute.yearStyle = global::GraphicsTester.Android.Resource.Attribute.yearStyle; - global::Microsoft.Maui.Graphics.Resource.Attribute.yearTodayStyle = global::GraphicsTester.Android.Resource.Attribute.yearTodayStyle; - global::Microsoft.Maui.Graphics.Resource.Boolean.abc_action_bar_embed_tabs = global::GraphicsTester.Android.Resource.Boolean.abc_action_bar_embed_tabs; - global::Microsoft.Maui.Graphics.Resource.Boolean.abc_allow_stacked_button_bar = global::GraphicsTester.Android.Resource.Boolean.abc_allow_stacked_button_bar; - global::Microsoft.Maui.Graphics.Resource.Boolean.abc_config_actionMenuItemAllCaps = global::GraphicsTester.Android.Resource.Boolean.abc_config_actionMenuItemAllCaps; - global::Microsoft.Maui.Graphics.Resource.Boolean.mtrl_btn_textappearance_all_caps = global::GraphicsTester.Android.Resource.Boolean.mtrl_btn_textappearance_all_caps; - global::Microsoft.Maui.Graphics.Resource.Color.abc_background_cache_hint_selector_material_dark = global::GraphicsTester.Android.Resource.Color.abc_background_cache_hint_selector_material_dark; - global::Microsoft.Maui.Graphics.Resource.Color.abc_background_cache_hint_selector_material_light = global::GraphicsTester.Android.Resource.Color.abc_background_cache_hint_selector_material_light; - global::Microsoft.Maui.Graphics.Resource.Color.abc_btn_colored_borderless_text_material = global::GraphicsTester.Android.Resource.Color.abc_btn_colored_borderless_text_material; - global::Microsoft.Maui.Graphics.Resource.Color.abc_btn_colored_text_material = global::GraphicsTester.Android.Resource.Color.abc_btn_colored_text_material; - global::Microsoft.Maui.Graphics.Resource.Color.abc_color_highlight_material = global::GraphicsTester.Android.Resource.Color.abc_color_highlight_material; - global::Microsoft.Maui.Graphics.Resource.Color.abc_decor_view_status_guard = global::GraphicsTester.Android.Resource.Color.abc_decor_view_status_guard; - global::Microsoft.Maui.Graphics.Resource.Color.abc_decor_view_status_guard_light = global::GraphicsTester.Android.Resource.Color.abc_decor_view_status_guard_light; - global::Microsoft.Maui.Graphics.Resource.Color.abc_hint_foreground_material_dark = global::GraphicsTester.Android.Resource.Color.abc_hint_foreground_material_dark; - global::Microsoft.Maui.Graphics.Resource.Color.abc_hint_foreground_material_light = global::GraphicsTester.Android.Resource.Color.abc_hint_foreground_material_light; - global::Microsoft.Maui.Graphics.Resource.Color.abc_primary_text_disable_only_material_dark = global::GraphicsTester.Android.Resource.Color.abc_primary_text_disable_only_material_dark; - global::Microsoft.Maui.Graphics.Resource.Color.abc_primary_text_disable_only_material_light = global::GraphicsTester.Android.Resource.Color.abc_primary_text_disable_only_material_light; - global::Microsoft.Maui.Graphics.Resource.Color.abc_primary_text_material_dark = global::GraphicsTester.Android.Resource.Color.abc_primary_text_material_dark; - global::Microsoft.Maui.Graphics.Resource.Color.abc_primary_text_material_light = global::GraphicsTester.Android.Resource.Color.abc_primary_text_material_light; - global::Microsoft.Maui.Graphics.Resource.Color.abc_search_url_text = global::GraphicsTester.Android.Resource.Color.abc_search_url_text; - global::Microsoft.Maui.Graphics.Resource.Color.abc_search_url_text_normal = global::GraphicsTester.Android.Resource.Color.abc_search_url_text_normal; - global::Microsoft.Maui.Graphics.Resource.Color.abc_search_url_text_pressed = global::GraphicsTester.Android.Resource.Color.abc_search_url_text_pressed; - global::Microsoft.Maui.Graphics.Resource.Color.abc_search_url_text_selected = global::GraphicsTester.Android.Resource.Color.abc_search_url_text_selected; - global::Microsoft.Maui.Graphics.Resource.Color.abc_secondary_text_material_dark = global::GraphicsTester.Android.Resource.Color.abc_secondary_text_material_dark; - global::Microsoft.Maui.Graphics.Resource.Color.abc_secondary_text_material_light = global::GraphicsTester.Android.Resource.Color.abc_secondary_text_material_light; - global::Microsoft.Maui.Graphics.Resource.Color.abc_tint_btn_checkable = global::GraphicsTester.Android.Resource.Color.abc_tint_btn_checkable; - global::Microsoft.Maui.Graphics.Resource.Color.abc_tint_default = global::GraphicsTester.Android.Resource.Color.abc_tint_default; - global::Microsoft.Maui.Graphics.Resource.Color.abc_tint_edittext = global::GraphicsTester.Android.Resource.Color.abc_tint_edittext; - global::Microsoft.Maui.Graphics.Resource.Color.abc_tint_seek_thumb = global::GraphicsTester.Android.Resource.Color.abc_tint_seek_thumb; - global::Microsoft.Maui.Graphics.Resource.Color.abc_tint_spinner = global::GraphicsTester.Android.Resource.Color.abc_tint_spinner; - global::Microsoft.Maui.Graphics.Resource.Color.abc_tint_switch_track = global::GraphicsTester.Android.Resource.Color.abc_tint_switch_track; - global::Microsoft.Maui.Graphics.Resource.Color.accent_material_dark = global::GraphicsTester.Android.Resource.Color.accent_material_dark; - global::Microsoft.Maui.Graphics.Resource.Color.accent_material_light = global::GraphicsTester.Android.Resource.Color.accent_material_light; - global::Microsoft.Maui.Graphics.Resource.Color.androidx_core_ripple_material_light = global::GraphicsTester.Android.Resource.Color.androidx_core_ripple_material_light; - global::Microsoft.Maui.Graphics.Resource.Color.androidx_core_secondary_text_default_material_light = global::GraphicsTester.Android.Resource.Color.androidx_core_secondary_text_default_material_light; - global::Microsoft.Maui.Graphics.Resource.Color.background_floating_material_dark = global::GraphicsTester.Android.Resource.Color.background_floating_material_dark; - global::Microsoft.Maui.Graphics.Resource.Color.background_floating_material_light = global::GraphicsTester.Android.Resource.Color.background_floating_material_light; - global::Microsoft.Maui.Graphics.Resource.Color.background_material_dark = global::GraphicsTester.Android.Resource.Color.background_material_dark; - global::Microsoft.Maui.Graphics.Resource.Color.background_material_light = global::GraphicsTester.Android.Resource.Color.background_material_light; - global::Microsoft.Maui.Graphics.Resource.Color.bright_foreground_disabled_material_dark = global::GraphicsTester.Android.Resource.Color.bright_foreground_disabled_material_dark; - global::Microsoft.Maui.Graphics.Resource.Color.bright_foreground_disabled_material_light = global::GraphicsTester.Android.Resource.Color.bright_foreground_disabled_material_light; - global::Microsoft.Maui.Graphics.Resource.Color.bright_foreground_inverse_material_dark = global::GraphicsTester.Android.Resource.Color.bright_foreground_inverse_material_dark; - global::Microsoft.Maui.Graphics.Resource.Color.bright_foreground_inverse_material_light = global::GraphicsTester.Android.Resource.Color.bright_foreground_inverse_material_light; - global::Microsoft.Maui.Graphics.Resource.Color.bright_foreground_material_dark = global::GraphicsTester.Android.Resource.Color.bright_foreground_material_dark; - global::Microsoft.Maui.Graphics.Resource.Color.bright_foreground_material_light = global::GraphicsTester.Android.Resource.Color.bright_foreground_material_light; - global::Microsoft.Maui.Graphics.Resource.Color.button_material_dark = global::GraphicsTester.Android.Resource.Color.button_material_dark; - global::Microsoft.Maui.Graphics.Resource.Color.button_material_light = global::GraphicsTester.Android.Resource.Color.button_material_light; - global::Microsoft.Maui.Graphics.Resource.Color.cardview_dark_background = global::GraphicsTester.Android.Resource.Color.cardview_dark_background; - global::Microsoft.Maui.Graphics.Resource.Color.cardview_light_background = global::GraphicsTester.Android.Resource.Color.cardview_light_background; - global::Microsoft.Maui.Graphics.Resource.Color.cardview_shadow_end_color = global::GraphicsTester.Android.Resource.Color.cardview_shadow_end_color; - global::Microsoft.Maui.Graphics.Resource.Color.cardview_shadow_start_color = global::GraphicsTester.Android.Resource.Color.cardview_shadow_start_color; - global::Microsoft.Maui.Graphics.Resource.Color.checkbox_themeable_attribute_color = global::GraphicsTester.Android.Resource.Color.checkbox_themeable_attribute_color; - global::Microsoft.Maui.Graphics.Resource.Color.design_bottom_navigation_shadow_color = global::GraphicsTester.Android.Resource.Color.design_bottom_navigation_shadow_color; - global::Microsoft.Maui.Graphics.Resource.Color.design_box_stroke_color = global::GraphicsTester.Android.Resource.Color.design_box_stroke_color; - global::Microsoft.Maui.Graphics.Resource.Color.design_dark_default_color_background = global::GraphicsTester.Android.Resource.Color.design_dark_default_color_background; - global::Microsoft.Maui.Graphics.Resource.Color.design_dark_default_color_error = global::GraphicsTester.Android.Resource.Color.design_dark_default_color_error; - global::Microsoft.Maui.Graphics.Resource.Color.design_dark_default_color_on_background = global::GraphicsTester.Android.Resource.Color.design_dark_default_color_on_background; - global::Microsoft.Maui.Graphics.Resource.Color.design_dark_default_color_on_error = global::GraphicsTester.Android.Resource.Color.design_dark_default_color_on_error; - global::Microsoft.Maui.Graphics.Resource.Color.design_dark_default_color_on_primary = global::GraphicsTester.Android.Resource.Color.design_dark_default_color_on_primary; - global::Microsoft.Maui.Graphics.Resource.Color.design_dark_default_color_on_secondary = global::GraphicsTester.Android.Resource.Color.design_dark_default_color_on_secondary; - global::Microsoft.Maui.Graphics.Resource.Color.design_dark_default_color_on_surface = global::GraphicsTester.Android.Resource.Color.design_dark_default_color_on_surface; - global::Microsoft.Maui.Graphics.Resource.Color.design_dark_default_color_primary = global::GraphicsTester.Android.Resource.Color.design_dark_default_color_primary; - global::Microsoft.Maui.Graphics.Resource.Color.design_dark_default_color_primary_dark = global::GraphicsTester.Android.Resource.Color.design_dark_default_color_primary_dark; - global::Microsoft.Maui.Graphics.Resource.Color.design_dark_default_color_primary_variant = global::GraphicsTester.Android.Resource.Color.design_dark_default_color_primary_variant; - global::Microsoft.Maui.Graphics.Resource.Color.design_dark_default_color_secondary = global::GraphicsTester.Android.Resource.Color.design_dark_default_color_secondary; - global::Microsoft.Maui.Graphics.Resource.Color.design_dark_default_color_secondary_variant = global::GraphicsTester.Android.Resource.Color.design_dark_default_color_secondary_variant; - global::Microsoft.Maui.Graphics.Resource.Color.design_dark_default_color_surface = global::GraphicsTester.Android.Resource.Color.design_dark_default_color_surface; - global::Microsoft.Maui.Graphics.Resource.Color.design_default_color_background = global::GraphicsTester.Android.Resource.Color.design_default_color_background; - global::Microsoft.Maui.Graphics.Resource.Color.design_default_color_error = global::GraphicsTester.Android.Resource.Color.design_default_color_error; - global::Microsoft.Maui.Graphics.Resource.Color.design_default_color_on_background = global::GraphicsTester.Android.Resource.Color.design_default_color_on_background; - global::Microsoft.Maui.Graphics.Resource.Color.design_default_color_on_error = global::GraphicsTester.Android.Resource.Color.design_default_color_on_error; - global::Microsoft.Maui.Graphics.Resource.Color.design_default_color_on_primary = global::GraphicsTester.Android.Resource.Color.design_default_color_on_primary; - global::Microsoft.Maui.Graphics.Resource.Color.design_default_color_on_secondary = global::GraphicsTester.Android.Resource.Color.design_default_color_on_secondary; - global::Microsoft.Maui.Graphics.Resource.Color.design_default_color_on_surface = global::GraphicsTester.Android.Resource.Color.design_default_color_on_surface; - global::Microsoft.Maui.Graphics.Resource.Color.design_default_color_primary = global::GraphicsTester.Android.Resource.Color.design_default_color_primary; - global::Microsoft.Maui.Graphics.Resource.Color.design_default_color_primary_dark = global::GraphicsTester.Android.Resource.Color.design_default_color_primary_dark; - global::Microsoft.Maui.Graphics.Resource.Color.design_default_color_primary_variant = global::GraphicsTester.Android.Resource.Color.design_default_color_primary_variant; - global::Microsoft.Maui.Graphics.Resource.Color.design_default_color_secondary = global::GraphicsTester.Android.Resource.Color.design_default_color_secondary; - global::Microsoft.Maui.Graphics.Resource.Color.design_default_color_secondary_variant = global::GraphicsTester.Android.Resource.Color.design_default_color_secondary_variant; - global::Microsoft.Maui.Graphics.Resource.Color.design_default_color_surface = global::GraphicsTester.Android.Resource.Color.design_default_color_surface; - global::Microsoft.Maui.Graphics.Resource.Color.design_error = global::GraphicsTester.Android.Resource.Color.design_error; - global::Microsoft.Maui.Graphics.Resource.Color.design_fab_shadow_end_color = global::GraphicsTester.Android.Resource.Color.design_fab_shadow_end_color; - global::Microsoft.Maui.Graphics.Resource.Color.design_fab_shadow_mid_color = global::GraphicsTester.Android.Resource.Color.design_fab_shadow_mid_color; - global::Microsoft.Maui.Graphics.Resource.Color.design_fab_shadow_start_color = global::GraphicsTester.Android.Resource.Color.design_fab_shadow_start_color; - global::Microsoft.Maui.Graphics.Resource.Color.design_fab_stroke_end_inner_color = global::GraphicsTester.Android.Resource.Color.design_fab_stroke_end_inner_color; - global::Microsoft.Maui.Graphics.Resource.Color.design_fab_stroke_end_outer_color = global::GraphicsTester.Android.Resource.Color.design_fab_stroke_end_outer_color; - global::Microsoft.Maui.Graphics.Resource.Color.design_fab_stroke_top_inner_color = global::GraphicsTester.Android.Resource.Color.design_fab_stroke_top_inner_color; - global::Microsoft.Maui.Graphics.Resource.Color.design_fab_stroke_top_outer_color = global::GraphicsTester.Android.Resource.Color.design_fab_stroke_top_outer_color; - global::Microsoft.Maui.Graphics.Resource.Color.design_icon_tint = global::GraphicsTester.Android.Resource.Color.design_icon_tint; - global::Microsoft.Maui.Graphics.Resource.Color.design_snackbar_background_color = global::GraphicsTester.Android.Resource.Color.design_snackbar_background_color; - global::Microsoft.Maui.Graphics.Resource.Color.dim_foreground_disabled_material_dark = global::GraphicsTester.Android.Resource.Color.dim_foreground_disabled_material_dark; - global::Microsoft.Maui.Graphics.Resource.Color.dim_foreground_disabled_material_light = global::GraphicsTester.Android.Resource.Color.dim_foreground_disabled_material_light; - global::Microsoft.Maui.Graphics.Resource.Color.dim_foreground_material_dark = global::GraphicsTester.Android.Resource.Color.dim_foreground_material_dark; - global::Microsoft.Maui.Graphics.Resource.Color.dim_foreground_material_light = global::GraphicsTester.Android.Resource.Color.dim_foreground_material_light; - global::Microsoft.Maui.Graphics.Resource.Color.error_color_material_dark = global::GraphicsTester.Android.Resource.Color.error_color_material_dark; - global::Microsoft.Maui.Graphics.Resource.Color.error_color_material_light = global::GraphicsTester.Android.Resource.Color.error_color_material_light; - global::Microsoft.Maui.Graphics.Resource.Color.foreground_material_dark = global::GraphicsTester.Android.Resource.Color.foreground_material_dark; - global::Microsoft.Maui.Graphics.Resource.Color.foreground_material_light = global::GraphicsTester.Android.Resource.Color.foreground_material_light; - global::Microsoft.Maui.Graphics.Resource.Color.highlighted_text_material_dark = global::GraphicsTester.Android.Resource.Color.highlighted_text_material_dark; - global::Microsoft.Maui.Graphics.Resource.Color.highlighted_text_material_light = global::GraphicsTester.Android.Resource.Color.highlighted_text_material_light; - global::Microsoft.Maui.Graphics.Resource.Color.material_blue_grey_800 = global::GraphicsTester.Android.Resource.Color.material_blue_grey_800; - global::Microsoft.Maui.Graphics.Resource.Color.material_blue_grey_900 = global::GraphicsTester.Android.Resource.Color.material_blue_grey_900; - global::Microsoft.Maui.Graphics.Resource.Color.material_blue_grey_950 = global::GraphicsTester.Android.Resource.Color.material_blue_grey_950; - global::Microsoft.Maui.Graphics.Resource.Color.material_cursor_color = global::GraphicsTester.Android.Resource.Color.material_cursor_color; - global::Microsoft.Maui.Graphics.Resource.Color.material_deep_teal_200 = global::GraphicsTester.Android.Resource.Color.material_deep_teal_200; - global::Microsoft.Maui.Graphics.Resource.Color.material_deep_teal_500 = global::GraphicsTester.Android.Resource.Color.material_deep_teal_500; - global::Microsoft.Maui.Graphics.Resource.Color.material_grey_100 = global::GraphicsTester.Android.Resource.Color.material_grey_100; - global::Microsoft.Maui.Graphics.Resource.Color.material_grey_300 = global::GraphicsTester.Android.Resource.Color.material_grey_300; - global::Microsoft.Maui.Graphics.Resource.Color.material_grey_50 = global::GraphicsTester.Android.Resource.Color.material_grey_50; - global::Microsoft.Maui.Graphics.Resource.Color.material_grey_600 = global::GraphicsTester.Android.Resource.Color.material_grey_600; - global::Microsoft.Maui.Graphics.Resource.Color.material_grey_800 = global::GraphicsTester.Android.Resource.Color.material_grey_800; - global::Microsoft.Maui.Graphics.Resource.Color.material_grey_850 = global::GraphicsTester.Android.Resource.Color.material_grey_850; - global::Microsoft.Maui.Graphics.Resource.Color.material_grey_900 = global::GraphicsTester.Android.Resource.Color.material_grey_900; - global::Microsoft.Maui.Graphics.Resource.Color.material_on_background_disabled = global::GraphicsTester.Android.Resource.Color.material_on_background_disabled; - global::Microsoft.Maui.Graphics.Resource.Color.material_on_background_emphasis_high_type = global::GraphicsTester.Android.Resource.Color.material_on_background_emphasis_high_type; - global::Microsoft.Maui.Graphics.Resource.Color.material_on_background_emphasis_medium = global::GraphicsTester.Android.Resource.Color.material_on_background_emphasis_medium; - global::Microsoft.Maui.Graphics.Resource.Color.material_on_primary_disabled = global::GraphicsTester.Android.Resource.Color.material_on_primary_disabled; - global::Microsoft.Maui.Graphics.Resource.Color.material_on_primary_emphasis_high_type = global::GraphicsTester.Android.Resource.Color.material_on_primary_emphasis_high_type; - global::Microsoft.Maui.Graphics.Resource.Color.material_on_primary_emphasis_medium = global::GraphicsTester.Android.Resource.Color.material_on_primary_emphasis_medium; - global::Microsoft.Maui.Graphics.Resource.Color.material_on_surface_disabled = global::GraphicsTester.Android.Resource.Color.material_on_surface_disabled; - global::Microsoft.Maui.Graphics.Resource.Color.material_on_surface_emphasis_high_type = global::GraphicsTester.Android.Resource.Color.material_on_surface_emphasis_high_type; - global::Microsoft.Maui.Graphics.Resource.Color.material_on_surface_emphasis_medium = global::GraphicsTester.Android.Resource.Color.material_on_surface_emphasis_medium; - global::Microsoft.Maui.Graphics.Resource.Color.material_on_surface_stroke = global::GraphicsTester.Android.Resource.Color.material_on_surface_stroke; - global::Microsoft.Maui.Graphics.Resource.Color.material_slider_active_tick_marks_color = global::GraphicsTester.Android.Resource.Color.material_slider_active_tick_marks_color; - global::Microsoft.Maui.Graphics.Resource.Color.material_slider_active_track_color = global::GraphicsTester.Android.Resource.Color.material_slider_active_track_color; - global::Microsoft.Maui.Graphics.Resource.Color.material_slider_halo_color = global::GraphicsTester.Android.Resource.Color.material_slider_halo_color; - global::Microsoft.Maui.Graphics.Resource.Color.material_slider_inactive_tick_marks_color = global::GraphicsTester.Android.Resource.Color.material_slider_inactive_tick_marks_color; - global::Microsoft.Maui.Graphics.Resource.Color.material_slider_inactive_track_color = global::GraphicsTester.Android.Resource.Color.material_slider_inactive_track_color; - global::Microsoft.Maui.Graphics.Resource.Color.material_slider_thumb_color = global::GraphicsTester.Android.Resource.Color.material_slider_thumb_color; - global::Microsoft.Maui.Graphics.Resource.Color.material_timepicker_button_background = global::GraphicsTester.Android.Resource.Color.material_timepicker_button_background; - global::Microsoft.Maui.Graphics.Resource.Color.material_timepicker_button_stroke = global::GraphicsTester.Android.Resource.Color.material_timepicker_button_stroke; - global::Microsoft.Maui.Graphics.Resource.Color.material_timepicker_clockface = global::GraphicsTester.Android.Resource.Color.material_timepicker_clockface; - global::Microsoft.Maui.Graphics.Resource.Color.material_timepicker_clock_text_color = global::GraphicsTester.Android.Resource.Color.material_timepicker_clock_text_color; - global::Microsoft.Maui.Graphics.Resource.Color.material_timepicker_modebutton_tint = global::GraphicsTester.Android.Resource.Color.material_timepicker_modebutton_tint; - global::Microsoft.Maui.Graphics.Resource.Color.mtrl_bottom_nav_colored_item_tint = global::GraphicsTester.Android.Resource.Color.mtrl_bottom_nav_colored_item_tint; - global::Microsoft.Maui.Graphics.Resource.Color.mtrl_bottom_nav_colored_ripple_color = global::GraphicsTester.Android.Resource.Color.mtrl_bottom_nav_colored_ripple_color; - global::Microsoft.Maui.Graphics.Resource.Color.mtrl_bottom_nav_item_tint = global::GraphicsTester.Android.Resource.Color.mtrl_bottom_nav_item_tint; - global::Microsoft.Maui.Graphics.Resource.Color.mtrl_bottom_nav_ripple_color = global::GraphicsTester.Android.Resource.Color.mtrl_bottom_nav_ripple_color; - global::Microsoft.Maui.Graphics.Resource.Color.mtrl_btn_bg_color_selector = global::GraphicsTester.Android.Resource.Color.mtrl_btn_bg_color_selector; - global::Microsoft.Maui.Graphics.Resource.Color.mtrl_btn_ripple_color = global::GraphicsTester.Android.Resource.Color.mtrl_btn_ripple_color; - global::Microsoft.Maui.Graphics.Resource.Color.mtrl_btn_stroke_color_selector = global::GraphicsTester.Android.Resource.Color.mtrl_btn_stroke_color_selector; - global::Microsoft.Maui.Graphics.Resource.Color.mtrl_btn_text_btn_bg_color_selector = global::GraphicsTester.Android.Resource.Color.mtrl_btn_text_btn_bg_color_selector; - global::Microsoft.Maui.Graphics.Resource.Color.mtrl_btn_text_btn_ripple_color = global::GraphicsTester.Android.Resource.Color.mtrl_btn_text_btn_ripple_color; - global::Microsoft.Maui.Graphics.Resource.Color.mtrl_btn_text_color_disabled = global::GraphicsTester.Android.Resource.Color.mtrl_btn_text_color_disabled; - global::Microsoft.Maui.Graphics.Resource.Color.mtrl_btn_text_color_selector = global::GraphicsTester.Android.Resource.Color.mtrl_btn_text_color_selector; - global::Microsoft.Maui.Graphics.Resource.Color.mtrl_btn_transparent_bg_color = global::GraphicsTester.Android.Resource.Color.mtrl_btn_transparent_bg_color; - global::Microsoft.Maui.Graphics.Resource.Color.mtrl_calendar_item_stroke_color = global::GraphicsTester.Android.Resource.Color.mtrl_calendar_item_stroke_color; - global::Microsoft.Maui.Graphics.Resource.Color.mtrl_calendar_selected_range = global::GraphicsTester.Android.Resource.Color.mtrl_calendar_selected_range; - global::Microsoft.Maui.Graphics.Resource.Color.mtrl_card_view_foreground = global::GraphicsTester.Android.Resource.Color.mtrl_card_view_foreground; - global::Microsoft.Maui.Graphics.Resource.Color.mtrl_card_view_ripple = global::GraphicsTester.Android.Resource.Color.mtrl_card_view_ripple; - global::Microsoft.Maui.Graphics.Resource.Color.mtrl_chip_background_color = global::GraphicsTester.Android.Resource.Color.mtrl_chip_background_color; - global::Microsoft.Maui.Graphics.Resource.Color.mtrl_chip_close_icon_tint = global::GraphicsTester.Android.Resource.Color.mtrl_chip_close_icon_tint; - global::Microsoft.Maui.Graphics.Resource.Color.mtrl_chip_surface_color = global::GraphicsTester.Android.Resource.Color.mtrl_chip_surface_color; - global::Microsoft.Maui.Graphics.Resource.Color.mtrl_chip_text_color = global::GraphicsTester.Android.Resource.Color.mtrl_chip_text_color; - global::Microsoft.Maui.Graphics.Resource.Color.mtrl_choice_chip_background_color = global::GraphicsTester.Android.Resource.Color.mtrl_choice_chip_background_color; - global::Microsoft.Maui.Graphics.Resource.Color.mtrl_choice_chip_ripple_color = global::GraphicsTester.Android.Resource.Color.mtrl_choice_chip_ripple_color; - global::Microsoft.Maui.Graphics.Resource.Color.mtrl_choice_chip_text_color = global::GraphicsTester.Android.Resource.Color.mtrl_choice_chip_text_color; - global::Microsoft.Maui.Graphics.Resource.Color.mtrl_error = global::GraphicsTester.Android.Resource.Color.mtrl_error; - global::Microsoft.Maui.Graphics.Resource.Color.mtrl_fab_bg_color_selector = global::GraphicsTester.Android.Resource.Color.mtrl_fab_bg_color_selector; - global::Microsoft.Maui.Graphics.Resource.Color.mtrl_fab_icon_text_color_selector = global::GraphicsTester.Android.Resource.Color.mtrl_fab_icon_text_color_selector; - global::Microsoft.Maui.Graphics.Resource.Color.mtrl_fab_ripple_color = global::GraphicsTester.Android.Resource.Color.mtrl_fab_ripple_color; - global::Microsoft.Maui.Graphics.Resource.Color.mtrl_filled_background_color = global::GraphicsTester.Android.Resource.Color.mtrl_filled_background_color; - global::Microsoft.Maui.Graphics.Resource.Color.mtrl_filled_icon_tint = global::GraphicsTester.Android.Resource.Color.mtrl_filled_icon_tint; - global::Microsoft.Maui.Graphics.Resource.Color.mtrl_filled_stroke_color = global::GraphicsTester.Android.Resource.Color.mtrl_filled_stroke_color; - global::Microsoft.Maui.Graphics.Resource.Color.mtrl_indicator_text_color = global::GraphicsTester.Android.Resource.Color.mtrl_indicator_text_color; - global::Microsoft.Maui.Graphics.Resource.Color.mtrl_navigation_item_background_color = global::GraphicsTester.Android.Resource.Color.mtrl_navigation_item_background_color; - global::Microsoft.Maui.Graphics.Resource.Color.mtrl_navigation_item_icon_tint = global::GraphicsTester.Android.Resource.Color.mtrl_navigation_item_icon_tint; - global::Microsoft.Maui.Graphics.Resource.Color.mtrl_navigation_item_text_color = global::GraphicsTester.Android.Resource.Color.mtrl_navigation_item_text_color; - global::Microsoft.Maui.Graphics.Resource.Color.mtrl_on_primary_text_btn_text_color_selector = global::GraphicsTester.Android.Resource.Color.mtrl_on_primary_text_btn_text_color_selector; - global::Microsoft.Maui.Graphics.Resource.Color.mtrl_on_surface_ripple_color = global::GraphicsTester.Android.Resource.Color.mtrl_on_surface_ripple_color; - global::Microsoft.Maui.Graphics.Resource.Color.mtrl_outlined_icon_tint = global::GraphicsTester.Android.Resource.Color.mtrl_outlined_icon_tint; - global::Microsoft.Maui.Graphics.Resource.Color.mtrl_outlined_stroke_color = global::GraphicsTester.Android.Resource.Color.mtrl_outlined_stroke_color; - global::Microsoft.Maui.Graphics.Resource.Color.mtrl_popupmenu_overlay_color = global::GraphicsTester.Android.Resource.Color.mtrl_popupmenu_overlay_color; - global::Microsoft.Maui.Graphics.Resource.Color.mtrl_scrim_color = global::GraphicsTester.Android.Resource.Color.mtrl_scrim_color; - global::Microsoft.Maui.Graphics.Resource.Color.mtrl_tabs_colored_ripple_color = global::GraphicsTester.Android.Resource.Color.mtrl_tabs_colored_ripple_color; - global::Microsoft.Maui.Graphics.Resource.Color.mtrl_tabs_icon_color_selector = global::GraphicsTester.Android.Resource.Color.mtrl_tabs_icon_color_selector; - global::Microsoft.Maui.Graphics.Resource.Color.mtrl_tabs_icon_color_selector_colored = global::GraphicsTester.Android.Resource.Color.mtrl_tabs_icon_color_selector_colored; - global::Microsoft.Maui.Graphics.Resource.Color.mtrl_tabs_legacy_text_color_selector = global::GraphicsTester.Android.Resource.Color.mtrl_tabs_legacy_text_color_selector; - global::Microsoft.Maui.Graphics.Resource.Color.mtrl_tabs_ripple_color = global::GraphicsTester.Android.Resource.Color.mtrl_tabs_ripple_color; - global::Microsoft.Maui.Graphics.Resource.Color.mtrl_textinput_default_box_stroke_color = global::GraphicsTester.Android.Resource.Color.mtrl_textinput_default_box_stroke_color; - global::Microsoft.Maui.Graphics.Resource.Color.mtrl_textinput_disabled_color = global::GraphicsTester.Android.Resource.Color.mtrl_textinput_disabled_color; - global::Microsoft.Maui.Graphics.Resource.Color.mtrl_textinput_filled_box_default_background_color = global::GraphicsTester.Android.Resource.Color.mtrl_textinput_filled_box_default_background_color; - global::Microsoft.Maui.Graphics.Resource.Color.mtrl_textinput_focused_box_stroke_color = global::GraphicsTester.Android.Resource.Color.mtrl_textinput_focused_box_stroke_color; - global::Microsoft.Maui.Graphics.Resource.Color.mtrl_textinput_hovered_box_stroke_color = global::GraphicsTester.Android.Resource.Color.mtrl_textinput_hovered_box_stroke_color; - global::Microsoft.Maui.Graphics.Resource.Color.mtrl_text_btn_text_color_selector = global::GraphicsTester.Android.Resource.Color.mtrl_text_btn_text_color_selector; - global::Microsoft.Maui.Graphics.Resource.Color.notification_action_color_filter = global::GraphicsTester.Android.Resource.Color.notification_action_color_filter; - global::Microsoft.Maui.Graphics.Resource.Color.notification_icon_bg_color = global::GraphicsTester.Android.Resource.Color.notification_icon_bg_color; - global::Microsoft.Maui.Graphics.Resource.Color.notification_material_background_media_default_color = global::GraphicsTester.Android.Resource.Color.notification_material_background_media_default_color; - global::Microsoft.Maui.Graphics.Resource.Color.primary_dark_material_dark = global::GraphicsTester.Android.Resource.Color.primary_dark_material_dark; - global::Microsoft.Maui.Graphics.Resource.Color.primary_dark_material_light = global::GraphicsTester.Android.Resource.Color.primary_dark_material_light; - global::Microsoft.Maui.Graphics.Resource.Color.primary_material_dark = global::GraphicsTester.Android.Resource.Color.primary_material_dark; - global::Microsoft.Maui.Graphics.Resource.Color.primary_material_light = global::GraphicsTester.Android.Resource.Color.primary_material_light; - global::Microsoft.Maui.Graphics.Resource.Color.primary_text_default_material_dark = global::GraphicsTester.Android.Resource.Color.primary_text_default_material_dark; - global::Microsoft.Maui.Graphics.Resource.Color.primary_text_default_material_light = global::GraphicsTester.Android.Resource.Color.primary_text_default_material_light; - global::Microsoft.Maui.Graphics.Resource.Color.primary_text_disabled_material_dark = global::GraphicsTester.Android.Resource.Color.primary_text_disabled_material_dark; - global::Microsoft.Maui.Graphics.Resource.Color.primary_text_disabled_material_light = global::GraphicsTester.Android.Resource.Color.primary_text_disabled_material_light; - global::Microsoft.Maui.Graphics.Resource.Color.radiobutton_themeable_attribute_color = global::GraphicsTester.Android.Resource.Color.radiobutton_themeable_attribute_color; - global::Microsoft.Maui.Graphics.Resource.Color.ripple_material_dark = global::GraphicsTester.Android.Resource.Color.ripple_material_dark; - global::Microsoft.Maui.Graphics.Resource.Color.ripple_material_light = global::GraphicsTester.Android.Resource.Color.ripple_material_light; - global::Microsoft.Maui.Graphics.Resource.Color.secondary_text_default_material_dark = global::GraphicsTester.Android.Resource.Color.secondary_text_default_material_dark; - global::Microsoft.Maui.Graphics.Resource.Color.secondary_text_default_material_light = global::GraphicsTester.Android.Resource.Color.secondary_text_default_material_light; - global::Microsoft.Maui.Graphics.Resource.Color.secondary_text_disabled_material_dark = global::GraphicsTester.Android.Resource.Color.secondary_text_disabled_material_dark; - global::Microsoft.Maui.Graphics.Resource.Color.secondary_text_disabled_material_light = global::GraphicsTester.Android.Resource.Color.secondary_text_disabled_material_light; - global::Microsoft.Maui.Graphics.Resource.Color.switch_thumb_disabled_material_dark = global::GraphicsTester.Android.Resource.Color.switch_thumb_disabled_material_dark; - global::Microsoft.Maui.Graphics.Resource.Color.switch_thumb_disabled_material_light = global::GraphicsTester.Android.Resource.Color.switch_thumb_disabled_material_light; - global::Microsoft.Maui.Graphics.Resource.Color.switch_thumb_material_dark = global::GraphicsTester.Android.Resource.Color.switch_thumb_material_dark; - global::Microsoft.Maui.Graphics.Resource.Color.switch_thumb_material_light = global::GraphicsTester.Android.Resource.Color.switch_thumb_material_light; - global::Microsoft.Maui.Graphics.Resource.Color.switch_thumb_normal_material_dark = global::GraphicsTester.Android.Resource.Color.switch_thumb_normal_material_dark; - global::Microsoft.Maui.Graphics.Resource.Color.switch_thumb_normal_material_light = global::GraphicsTester.Android.Resource.Color.switch_thumb_normal_material_light; - global::Microsoft.Maui.Graphics.Resource.Color.test_mtrl_calendar_day = global::GraphicsTester.Android.Resource.Color.test_mtrl_calendar_day; - global::Microsoft.Maui.Graphics.Resource.Color.test_mtrl_calendar_day_selected = global::GraphicsTester.Android.Resource.Color.test_mtrl_calendar_day_selected; - global::Microsoft.Maui.Graphics.Resource.Color.tooltip_background_dark = global::GraphicsTester.Android.Resource.Color.tooltip_background_dark; - global::Microsoft.Maui.Graphics.Resource.Color.tooltip_background_light = global::GraphicsTester.Android.Resource.Color.tooltip_background_light; - global::Microsoft.Maui.Graphics.Resource.Dimension.abc_action_bar_content_inset_material = global::GraphicsTester.Android.Resource.Dimension.abc_action_bar_content_inset_material; - global::Microsoft.Maui.Graphics.Resource.Dimension.abc_action_bar_content_inset_with_nav = global::GraphicsTester.Android.Resource.Dimension.abc_action_bar_content_inset_with_nav; - global::Microsoft.Maui.Graphics.Resource.Dimension.abc_action_bar_default_height_material = global::GraphicsTester.Android.Resource.Dimension.abc_action_bar_default_height_material; - global::Microsoft.Maui.Graphics.Resource.Dimension.abc_action_bar_default_padding_end_material = global::GraphicsTester.Android.Resource.Dimension.abc_action_bar_default_padding_end_material; - global::Microsoft.Maui.Graphics.Resource.Dimension.abc_action_bar_default_padding_start_material = global::GraphicsTester.Android.Resource.Dimension.abc_action_bar_default_padding_start_material; - global::Microsoft.Maui.Graphics.Resource.Dimension.abc_action_bar_elevation_material = global::GraphicsTester.Android.Resource.Dimension.abc_action_bar_elevation_material; - global::Microsoft.Maui.Graphics.Resource.Dimension.abc_action_bar_icon_vertical_padding_material = global::GraphicsTester.Android.Resource.Dimension.abc_action_bar_icon_vertical_padding_material; - global::Microsoft.Maui.Graphics.Resource.Dimension.abc_action_bar_overflow_padding_end_material = global::GraphicsTester.Android.Resource.Dimension.abc_action_bar_overflow_padding_end_material; - global::Microsoft.Maui.Graphics.Resource.Dimension.abc_action_bar_overflow_padding_start_material = global::GraphicsTester.Android.Resource.Dimension.abc_action_bar_overflow_padding_start_material; - global::Microsoft.Maui.Graphics.Resource.Dimension.abc_action_bar_stacked_max_height = global::GraphicsTester.Android.Resource.Dimension.abc_action_bar_stacked_max_height; - global::Microsoft.Maui.Graphics.Resource.Dimension.abc_action_bar_stacked_tab_max_width = global::GraphicsTester.Android.Resource.Dimension.abc_action_bar_stacked_tab_max_width; - global::Microsoft.Maui.Graphics.Resource.Dimension.abc_action_bar_subtitle_bottom_margin_material = global::GraphicsTester.Android.Resource.Dimension.abc_action_bar_subtitle_bottom_margin_material; - global::Microsoft.Maui.Graphics.Resource.Dimension.abc_action_bar_subtitle_top_margin_material = global::GraphicsTester.Android.Resource.Dimension.abc_action_bar_subtitle_top_margin_material; - global::Microsoft.Maui.Graphics.Resource.Dimension.abc_action_button_min_height_material = global::GraphicsTester.Android.Resource.Dimension.abc_action_button_min_height_material; - global::Microsoft.Maui.Graphics.Resource.Dimension.abc_action_button_min_width_material = global::GraphicsTester.Android.Resource.Dimension.abc_action_button_min_width_material; - global::Microsoft.Maui.Graphics.Resource.Dimension.abc_action_button_min_width_overflow_material = global::GraphicsTester.Android.Resource.Dimension.abc_action_button_min_width_overflow_material; - global::Microsoft.Maui.Graphics.Resource.Dimension.abc_alert_dialog_button_bar_height = global::GraphicsTester.Android.Resource.Dimension.abc_alert_dialog_button_bar_height; - global::Microsoft.Maui.Graphics.Resource.Dimension.abc_alert_dialog_button_dimen = global::GraphicsTester.Android.Resource.Dimension.abc_alert_dialog_button_dimen; - global::Microsoft.Maui.Graphics.Resource.Dimension.abc_button_inset_horizontal_material = global::GraphicsTester.Android.Resource.Dimension.abc_button_inset_horizontal_material; - global::Microsoft.Maui.Graphics.Resource.Dimension.abc_button_inset_vertical_material = global::GraphicsTester.Android.Resource.Dimension.abc_button_inset_vertical_material; - global::Microsoft.Maui.Graphics.Resource.Dimension.abc_button_padding_horizontal_material = global::GraphicsTester.Android.Resource.Dimension.abc_button_padding_horizontal_material; - global::Microsoft.Maui.Graphics.Resource.Dimension.abc_button_padding_vertical_material = global::GraphicsTester.Android.Resource.Dimension.abc_button_padding_vertical_material; - global::Microsoft.Maui.Graphics.Resource.Dimension.abc_cascading_menus_min_smallest_width = global::GraphicsTester.Android.Resource.Dimension.abc_cascading_menus_min_smallest_width; - global::Microsoft.Maui.Graphics.Resource.Dimension.abc_config_prefDialogWidth = global::GraphicsTester.Android.Resource.Dimension.abc_config_prefDialogWidth; - global::Microsoft.Maui.Graphics.Resource.Dimension.abc_control_corner_material = global::GraphicsTester.Android.Resource.Dimension.abc_control_corner_material; - global::Microsoft.Maui.Graphics.Resource.Dimension.abc_control_inset_material = global::GraphicsTester.Android.Resource.Dimension.abc_control_inset_material; - global::Microsoft.Maui.Graphics.Resource.Dimension.abc_control_padding_material = global::GraphicsTester.Android.Resource.Dimension.abc_control_padding_material; - global::Microsoft.Maui.Graphics.Resource.Dimension.abc_dialog_corner_radius_material = global::GraphicsTester.Android.Resource.Dimension.abc_dialog_corner_radius_material; - global::Microsoft.Maui.Graphics.Resource.Dimension.abc_dialog_fixed_height_major = global::GraphicsTester.Android.Resource.Dimension.abc_dialog_fixed_height_major; - global::Microsoft.Maui.Graphics.Resource.Dimension.abc_dialog_fixed_height_minor = global::GraphicsTester.Android.Resource.Dimension.abc_dialog_fixed_height_minor; - global::Microsoft.Maui.Graphics.Resource.Dimension.abc_dialog_fixed_width_major = global::GraphicsTester.Android.Resource.Dimension.abc_dialog_fixed_width_major; - global::Microsoft.Maui.Graphics.Resource.Dimension.abc_dialog_fixed_width_minor = global::GraphicsTester.Android.Resource.Dimension.abc_dialog_fixed_width_minor; - global::Microsoft.Maui.Graphics.Resource.Dimension.abc_dialog_list_padding_bottom_no_buttons = global::GraphicsTester.Android.Resource.Dimension.abc_dialog_list_padding_bottom_no_buttons; - global::Microsoft.Maui.Graphics.Resource.Dimension.abc_dialog_list_padding_top_no_title = global::GraphicsTester.Android.Resource.Dimension.abc_dialog_list_padding_top_no_title; - global::Microsoft.Maui.Graphics.Resource.Dimension.abc_dialog_min_width_major = global::GraphicsTester.Android.Resource.Dimension.abc_dialog_min_width_major; - global::Microsoft.Maui.Graphics.Resource.Dimension.abc_dialog_min_width_minor = global::GraphicsTester.Android.Resource.Dimension.abc_dialog_min_width_minor; - global::Microsoft.Maui.Graphics.Resource.Dimension.abc_dialog_padding_material = global::GraphicsTester.Android.Resource.Dimension.abc_dialog_padding_material; - global::Microsoft.Maui.Graphics.Resource.Dimension.abc_dialog_padding_top_material = global::GraphicsTester.Android.Resource.Dimension.abc_dialog_padding_top_material; - global::Microsoft.Maui.Graphics.Resource.Dimension.abc_dialog_title_divider_material = global::GraphicsTester.Android.Resource.Dimension.abc_dialog_title_divider_material; - global::Microsoft.Maui.Graphics.Resource.Dimension.abc_disabled_alpha_material_dark = global::GraphicsTester.Android.Resource.Dimension.abc_disabled_alpha_material_dark; - global::Microsoft.Maui.Graphics.Resource.Dimension.abc_disabled_alpha_material_light = global::GraphicsTester.Android.Resource.Dimension.abc_disabled_alpha_material_light; - global::Microsoft.Maui.Graphics.Resource.Dimension.abc_dropdownitem_icon_width = global::GraphicsTester.Android.Resource.Dimension.abc_dropdownitem_icon_width; - global::Microsoft.Maui.Graphics.Resource.Dimension.abc_dropdownitem_text_padding_left = global::GraphicsTester.Android.Resource.Dimension.abc_dropdownitem_text_padding_left; - global::Microsoft.Maui.Graphics.Resource.Dimension.abc_dropdownitem_text_padding_right = global::GraphicsTester.Android.Resource.Dimension.abc_dropdownitem_text_padding_right; - global::Microsoft.Maui.Graphics.Resource.Dimension.abc_edit_text_inset_bottom_material = global::GraphicsTester.Android.Resource.Dimension.abc_edit_text_inset_bottom_material; - global::Microsoft.Maui.Graphics.Resource.Dimension.abc_edit_text_inset_horizontal_material = global::GraphicsTester.Android.Resource.Dimension.abc_edit_text_inset_horizontal_material; - global::Microsoft.Maui.Graphics.Resource.Dimension.abc_edit_text_inset_top_material = global::GraphicsTester.Android.Resource.Dimension.abc_edit_text_inset_top_material; - global::Microsoft.Maui.Graphics.Resource.Dimension.abc_floating_window_z = global::GraphicsTester.Android.Resource.Dimension.abc_floating_window_z; - global::Microsoft.Maui.Graphics.Resource.Dimension.abc_list_item_height_large_material = global::GraphicsTester.Android.Resource.Dimension.abc_list_item_height_large_material; - global::Microsoft.Maui.Graphics.Resource.Dimension.abc_list_item_height_material = global::GraphicsTester.Android.Resource.Dimension.abc_list_item_height_material; - global::Microsoft.Maui.Graphics.Resource.Dimension.abc_list_item_height_small_material = global::GraphicsTester.Android.Resource.Dimension.abc_list_item_height_small_material; - global::Microsoft.Maui.Graphics.Resource.Dimension.abc_list_item_padding_horizontal_material = global::GraphicsTester.Android.Resource.Dimension.abc_list_item_padding_horizontal_material; - global::Microsoft.Maui.Graphics.Resource.Dimension.abc_panel_menu_list_width = global::GraphicsTester.Android.Resource.Dimension.abc_panel_menu_list_width; - global::Microsoft.Maui.Graphics.Resource.Dimension.abc_progress_bar_height_material = global::GraphicsTester.Android.Resource.Dimension.abc_progress_bar_height_material; - global::Microsoft.Maui.Graphics.Resource.Dimension.abc_search_view_preferred_height = global::GraphicsTester.Android.Resource.Dimension.abc_search_view_preferred_height; - global::Microsoft.Maui.Graphics.Resource.Dimension.abc_search_view_preferred_width = global::GraphicsTester.Android.Resource.Dimension.abc_search_view_preferred_width; - global::Microsoft.Maui.Graphics.Resource.Dimension.abc_seekbar_track_background_height_material = global::GraphicsTester.Android.Resource.Dimension.abc_seekbar_track_background_height_material; - global::Microsoft.Maui.Graphics.Resource.Dimension.abc_seekbar_track_progress_height_material = global::GraphicsTester.Android.Resource.Dimension.abc_seekbar_track_progress_height_material; - global::Microsoft.Maui.Graphics.Resource.Dimension.abc_select_dialog_padding_start_material = global::GraphicsTester.Android.Resource.Dimension.abc_select_dialog_padding_start_material; - global::Microsoft.Maui.Graphics.Resource.Dimension.abc_switch_padding = global::GraphicsTester.Android.Resource.Dimension.abc_switch_padding; - global::Microsoft.Maui.Graphics.Resource.Dimension.abc_text_size_body_1_material = global::GraphicsTester.Android.Resource.Dimension.abc_text_size_body_1_material; - global::Microsoft.Maui.Graphics.Resource.Dimension.abc_text_size_body_2_material = global::GraphicsTester.Android.Resource.Dimension.abc_text_size_body_2_material; - global::Microsoft.Maui.Graphics.Resource.Dimension.abc_text_size_button_material = global::GraphicsTester.Android.Resource.Dimension.abc_text_size_button_material; - global::Microsoft.Maui.Graphics.Resource.Dimension.abc_text_size_caption_material = global::GraphicsTester.Android.Resource.Dimension.abc_text_size_caption_material; - global::Microsoft.Maui.Graphics.Resource.Dimension.abc_text_size_display_1_material = global::GraphicsTester.Android.Resource.Dimension.abc_text_size_display_1_material; - global::Microsoft.Maui.Graphics.Resource.Dimension.abc_text_size_display_2_material = global::GraphicsTester.Android.Resource.Dimension.abc_text_size_display_2_material; - global::Microsoft.Maui.Graphics.Resource.Dimension.abc_text_size_display_3_material = global::GraphicsTester.Android.Resource.Dimension.abc_text_size_display_3_material; - global::Microsoft.Maui.Graphics.Resource.Dimension.abc_text_size_display_4_material = global::GraphicsTester.Android.Resource.Dimension.abc_text_size_display_4_material; - global::Microsoft.Maui.Graphics.Resource.Dimension.abc_text_size_headline_material = global::GraphicsTester.Android.Resource.Dimension.abc_text_size_headline_material; - global::Microsoft.Maui.Graphics.Resource.Dimension.abc_text_size_large_material = global::GraphicsTester.Android.Resource.Dimension.abc_text_size_large_material; - global::Microsoft.Maui.Graphics.Resource.Dimension.abc_text_size_medium_material = global::GraphicsTester.Android.Resource.Dimension.abc_text_size_medium_material; - global::Microsoft.Maui.Graphics.Resource.Dimension.abc_text_size_menu_header_material = global::GraphicsTester.Android.Resource.Dimension.abc_text_size_menu_header_material; - global::Microsoft.Maui.Graphics.Resource.Dimension.abc_text_size_menu_material = global::GraphicsTester.Android.Resource.Dimension.abc_text_size_menu_material; - global::Microsoft.Maui.Graphics.Resource.Dimension.abc_text_size_small_material = global::GraphicsTester.Android.Resource.Dimension.abc_text_size_small_material; - global::Microsoft.Maui.Graphics.Resource.Dimension.abc_text_size_subhead_material = global::GraphicsTester.Android.Resource.Dimension.abc_text_size_subhead_material; - global::Microsoft.Maui.Graphics.Resource.Dimension.abc_text_size_subtitle_material_toolbar = global::GraphicsTester.Android.Resource.Dimension.abc_text_size_subtitle_material_toolbar; - global::Microsoft.Maui.Graphics.Resource.Dimension.abc_text_size_title_material = global::GraphicsTester.Android.Resource.Dimension.abc_text_size_title_material; - global::Microsoft.Maui.Graphics.Resource.Dimension.abc_text_size_title_material_toolbar = global::GraphicsTester.Android.Resource.Dimension.abc_text_size_title_material_toolbar; - global::Microsoft.Maui.Graphics.Resource.Dimension.action_bar_size = global::GraphicsTester.Android.Resource.Dimension.action_bar_size; - global::Microsoft.Maui.Graphics.Resource.Dimension.appcompat_dialog_background_inset = global::GraphicsTester.Android.Resource.Dimension.appcompat_dialog_background_inset; - global::Microsoft.Maui.Graphics.Resource.Dimension.cardview_compat_inset_shadow = global::GraphicsTester.Android.Resource.Dimension.cardview_compat_inset_shadow; - global::Microsoft.Maui.Graphics.Resource.Dimension.cardview_default_elevation = global::GraphicsTester.Android.Resource.Dimension.cardview_default_elevation; - global::Microsoft.Maui.Graphics.Resource.Dimension.cardview_default_radius = global::GraphicsTester.Android.Resource.Dimension.cardview_default_radius; - global::Microsoft.Maui.Graphics.Resource.Dimension.clock_face_margin_start = global::GraphicsTester.Android.Resource.Dimension.clock_face_margin_start; - global::Microsoft.Maui.Graphics.Resource.Dimension.compat_button_inset_horizontal_material = global::GraphicsTester.Android.Resource.Dimension.compat_button_inset_horizontal_material; - global::Microsoft.Maui.Graphics.Resource.Dimension.compat_button_inset_vertical_material = global::GraphicsTester.Android.Resource.Dimension.compat_button_inset_vertical_material; - global::Microsoft.Maui.Graphics.Resource.Dimension.compat_button_padding_horizontal_material = global::GraphicsTester.Android.Resource.Dimension.compat_button_padding_horizontal_material; - global::Microsoft.Maui.Graphics.Resource.Dimension.compat_button_padding_vertical_material = global::GraphicsTester.Android.Resource.Dimension.compat_button_padding_vertical_material; - global::Microsoft.Maui.Graphics.Resource.Dimension.compat_control_corner_material = global::GraphicsTester.Android.Resource.Dimension.compat_control_corner_material; - global::Microsoft.Maui.Graphics.Resource.Dimension.compat_notification_large_icon_max_height = global::GraphicsTester.Android.Resource.Dimension.compat_notification_large_icon_max_height; - global::Microsoft.Maui.Graphics.Resource.Dimension.compat_notification_large_icon_max_width = global::GraphicsTester.Android.Resource.Dimension.compat_notification_large_icon_max_width; - global::Microsoft.Maui.Graphics.Resource.Dimension.default_dimension = global::GraphicsTester.Android.Resource.Dimension.default_dimension; - global::Microsoft.Maui.Graphics.Resource.Dimension.def_drawer_elevation = global::GraphicsTester.Android.Resource.Dimension.def_drawer_elevation; - global::Microsoft.Maui.Graphics.Resource.Dimension.design_appbar_elevation = global::GraphicsTester.Android.Resource.Dimension.design_appbar_elevation; - global::Microsoft.Maui.Graphics.Resource.Dimension.design_bottom_navigation_active_item_max_width = global::GraphicsTester.Android.Resource.Dimension.design_bottom_navigation_active_item_max_width; - global::Microsoft.Maui.Graphics.Resource.Dimension.design_bottom_navigation_active_item_min_width = global::GraphicsTester.Android.Resource.Dimension.design_bottom_navigation_active_item_min_width; - global::Microsoft.Maui.Graphics.Resource.Dimension.design_bottom_navigation_active_text_size = global::GraphicsTester.Android.Resource.Dimension.design_bottom_navigation_active_text_size; - global::Microsoft.Maui.Graphics.Resource.Dimension.design_bottom_navigation_elevation = global::GraphicsTester.Android.Resource.Dimension.design_bottom_navigation_elevation; - global::Microsoft.Maui.Graphics.Resource.Dimension.design_bottom_navigation_height = global::GraphicsTester.Android.Resource.Dimension.design_bottom_navigation_height; - global::Microsoft.Maui.Graphics.Resource.Dimension.design_bottom_navigation_icon_size = global::GraphicsTester.Android.Resource.Dimension.design_bottom_navigation_icon_size; - global::Microsoft.Maui.Graphics.Resource.Dimension.design_bottom_navigation_item_max_width = global::GraphicsTester.Android.Resource.Dimension.design_bottom_navigation_item_max_width; - global::Microsoft.Maui.Graphics.Resource.Dimension.design_bottom_navigation_item_min_width = global::GraphicsTester.Android.Resource.Dimension.design_bottom_navigation_item_min_width; - global::Microsoft.Maui.Graphics.Resource.Dimension.design_bottom_navigation_label_padding = global::GraphicsTester.Android.Resource.Dimension.design_bottom_navigation_label_padding; - global::Microsoft.Maui.Graphics.Resource.Dimension.design_bottom_navigation_margin = global::GraphicsTester.Android.Resource.Dimension.design_bottom_navigation_margin; - global::Microsoft.Maui.Graphics.Resource.Dimension.design_bottom_navigation_shadow_height = global::GraphicsTester.Android.Resource.Dimension.design_bottom_navigation_shadow_height; - global::Microsoft.Maui.Graphics.Resource.Dimension.design_bottom_navigation_text_size = global::GraphicsTester.Android.Resource.Dimension.design_bottom_navigation_text_size; - global::Microsoft.Maui.Graphics.Resource.Dimension.design_bottom_sheet_elevation = global::GraphicsTester.Android.Resource.Dimension.design_bottom_sheet_elevation; - global::Microsoft.Maui.Graphics.Resource.Dimension.design_bottom_sheet_modal_elevation = global::GraphicsTester.Android.Resource.Dimension.design_bottom_sheet_modal_elevation; - global::Microsoft.Maui.Graphics.Resource.Dimension.design_bottom_sheet_peek_height_min = global::GraphicsTester.Android.Resource.Dimension.design_bottom_sheet_peek_height_min; - global::Microsoft.Maui.Graphics.Resource.Dimension.design_fab_border_width = global::GraphicsTester.Android.Resource.Dimension.design_fab_border_width; - global::Microsoft.Maui.Graphics.Resource.Dimension.design_fab_elevation = global::GraphicsTester.Android.Resource.Dimension.design_fab_elevation; - global::Microsoft.Maui.Graphics.Resource.Dimension.design_fab_image_size = global::GraphicsTester.Android.Resource.Dimension.design_fab_image_size; - global::Microsoft.Maui.Graphics.Resource.Dimension.design_fab_size_mini = global::GraphicsTester.Android.Resource.Dimension.design_fab_size_mini; - global::Microsoft.Maui.Graphics.Resource.Dimension.design_fab_size_normal = global::GraphicsTester.Android.Resource.Dimension.design_fab_size_normal; - global::Microsoft.Maui.Graphics.Resource.Dimension.design_fab_translation_z_hovered_focused = global::GraphicsTester.Android.Resource.Dimension.design_fab_translation_z_hovered_focused; - global::Microsoft.Maui.Graphics.Resource.Dimension.design_fab_translation_z_pressed = global::GraphicsTester.Android.Resource.Dimension.design_fab_translation_z_pressed; - global::Microsoft.Maui.Graphics.Resource.Dimension.design_navigation_elevation = global::GraphicsTester.Android.Resource.Dimension.design_navigation_elevation; - global::Microsoft.Maui.Graphics.Resource.Dimension.design_navigation_icon_padding = global::GraphicsTester.Android.Resource.Dimension.design_navigation_icon_padding; - global::Microsoft.Maui.Graphics.Resource.Dimension.design_navigation_icon_size = global::GraphicsTester.Android.Resource.Dimension.design_navigation_icon_size; - global::Microsoft.Maui.Graphics.Resource.Dimension.design_navigation_item_horizontal_padding = global::GraphicsTester.Android.Resource.Dimension.design_navigation_item_horizontal_padding; - global::Microsoft.Maui.Graphics.Resource.Dimension.design_navigation_item_icon_padding = global::GraphicsTester.Android.Resource.Dimension.design_navigation_item_icon_padding; - global::Microsoft.Maui.Graphics.Resource.Dimension.design_navigation_max_width = global::GraphicsTester.Android.Resource.Dimension.design_navigation_max_width; - global::Microsoft.Maui.Graphics.Resource.Dimension.design_navigation_padding_bottom = global::GraphicsTester.Android.Resource.Dimension.design_navigation_padding_bottom; - global::Microsoft.Maui.Graphics.Resource.Dimension.design_navigation_separator_vertical_padding = global::GraphicsTester.Android.Resource.Dimension.design_navigation_separator_vertical_padding; - global::Microsoft.Maui.Graphics.Resource.Dimension.design_snackbar_action_inline_max_width = global::GraphicsTester.Android.Resource.Dimension.design_snackbar_action_inline_max_width; - global::Microsoft.Maui.Graphics.Resource.Dimension.design_snackbar_action_text_color_alpha = global::GraphicsTester.Android.Resource.Dimension.design_snackbar_action_text_color_alpha; - global::Microsoft.Maui.Graphics.Resource.Dimension.design_snackbar_background_corner_radius = global::GraphicsTester.Android.Resource.Dimension.design_snackbar_background_corner_radius; - global::Microsoft.Maui.Graphics.Resource.Dimension.design_snackbar_elevation = global::GraphicsTester.Android.Resource.Dimension.design_snackbar_elevation; - global::Microsoft.Maui.Graphics.Resource.Dimension.design_snackbar_extra_spacing_horizontal = global::GraphicsTester.Android.Resource.Dimension.design_snackbar_extra_spacing_horizontal; - global::Microsoft.Maui.Graphics.Resource.Dimension.design_snackbar_max_width = global::GraphicsTester.Android.Resource.Dimension.design_snackbar_max_width; - global::Microsoft.Maui.Graphics.Resource.Dimension.design_snackbar_min_width = global::GraphicsTester.Android.Resource.Dimension.design_snackbar_min_width; - global::Microsoft.Maui.Graphics.Resource.Dimension.design_snackbar_padding_horizontal = global::GraphicsTester.Android.Resource.Dimension.design_snackbar_padding_horizontal; - global::Microsoft.Maui.Graphics.Resource.Dimension.design_snackbar_padding_vertical = global::GraphicsTester.Android.Resource.Dimension.design_snackbar_padding_vertical; - global::Microsoft.Maui.Graphics.Resource.Dimension.design_snackbar_padding_vertical_2lines = global::GraphicsTester.Android.Resource.Dimension.design_snackbar_padding_vertical_2lines; - global::Microsoft.Maui.Graphics.Resource.Dimension.design_snackbar_text_size = global::GraphicsTester.Android.Resource.Dimension.design_snackbar_text_size; - global::Microsoft.Maui.Graphics.Resource.Dimension.design_tab_max_width = global::GraphicsTester.Android.Resource.Dimension.design_tab_max_width; - global::Microsoft.Maui.Graphics.Resource.Dimension.design_tab_scrollable_min_width = global::GraphicsTester.Android.Resource.Dimension.design_tab_scrollable_min_width; - global::Microsoft.Maui.Graphics.Resource.Dimension.design_tab_text_size = global::GraphicsTester.Android.Resource.Dimension.design_tab_text_size; - global::Microsoft.Maui.Graphics.Resource.Dimension.design_tab_text_size_2line = global::GraphicsTester.Android.Resource.Dimension.design_tab_text_size_2line; - global::Microsoft.Maui.Graphics.Resource.Dimension.design_textinput_caption_translate_y = global::GraphicsTester.Android.Resource.Dimension.design_textinput_caption_translate_y; - global::Microsoft.Maui.Graphics.Resource.Dimension.disabled_alpha_material_dark = global::GraphicsTester.Android.Resource.Dimension.disabled_alpha_material_dark; - global::Microsoft.Maui.Graphics.Resource.Dimension.disabled_alpha_material_light = global::GraphicsTester.Android.Resource.Dimension.disabled_alpha_material_light; - global::Microsoft.Maui.Graphics.Resource.Dimension.fastscroll_default_thickness = global::GraphicsTester.Android.Resource.Dimension.fastscroll_default_thickness; - global::Microsoft.Maui.Graphics.Resource.Dimension.fastscroll_margin = global::GraphicsTester.Android.Resource.Dimension.fastscroll_margin; - global::Microsoft.Maui.Graphics.Resource.Dimension.fastscroll_minimum_range = global::GraphicsTester.Android.Resource.Dimension.fastscroll_minimum_range; - global::Microsoft.Maui.Graphics.Resource.Dimension.highlight_alpha_material_colored = global::GraphicsTester.Android.Resource.Dimension.highlight_alpha_material_colored; - global::Microsoft.Maui.Graphics.Resource.Dimension.highlight_alpha_material_dark = global::GraphicsTester.Android.Resource.Dimension.highlight_alpha_material_dark; - global::Microsoft.Maui.Graphics.Resource.Dimension.highlight_alpha_material_light = global::GraphicsTester.Android.Resource.Dimension.highlight_alpha_material_light; - global::Microsoft.Maui.Graphics.Resource.Dimension.hint_alpha_material_dark = global::GraphicsTester.Android.Resource.Dimension.hint_alpha_material_dark; - global::Microsoft.Maui.Graphics.Resource.Dimension.hint_alpha_material_light = global::GraphicsTester.Android.Resource.Dimension.hint_alpha_material_light; - global::Microsoft.Maui.Graphics.Resource.Dimension.hint_pressed_alpha_material_dark = global::GraphicsTester.Android.Resource.Dimension.hint_pressed_alpha_material_dark; - global::Microsoft.Maui.Graphics.Resource.Dimension.hint_pressed_alpha_material_light = global::GraphicsTester.Android.Resource.Dimension.hint_pressed_alpha_material_light; - global::Microsoft.Maui.Graphics.Resource.Dimension.item_touch_helper_max_drag_scroll_per_frame = global::GraphicsTester.Android.Resource.Dimension.item_touch_helper_max_drag_scroll_per_frame; - global::Microsoft.Maui.Graphics.Resource.Dimension.item_touch_helper_swipe_escape_max_velocity = global::GraphicsTester.Android.Resource.Dimension.item_touch_helper_swipe_escape_max_velocity; - global::Microsoft.Maui.Graphics.Resource.Dimension.item_touch_helper_swipe_escape_velocity = global::GraphicsTester.Android.Resource.Dimension.item_touch_helper_swipe_escape_velocity; - global::Microsoft.Maui.Graphics.Resource.Dimension.material_clock_display_padding = global::GraphicsTester.Android.Resource.Dimension.material_clock_display_padding; - global::Microsoft.Maui.Graphics.Resource.Dimension.material_clock_face_margin_top = global::GraphicsTester.Android.Resource.Dimension.material_clock_face_margin_top; - global::Microsoft.Maui.Graphics.Resource.Dimension.material_clock_hand_center_dot_radius = global::GraphicsTester.Android.Resource.Dimension.material_clock_hand_center_dot_radius; - global::Microsoft.Maui.Graphics.Resource.Dimension.material_clock_hand_padding = global::GraphicsTester.Android.Resource.Dimension.material_clock_hand_padding; - global::Microsoft.Maui.Graphics.Resource.Dimension.material_clock_hand_stroke_width = global::GraphicsTester.Android.Resource.Dimension.material_clock_hand_stroke_width; - global::Microsoft.Maui.Graphics.Resource.Dimension.material_clock_number_text_size = global::GraphicsTester.Android.Resource.Dimension.material_clock_number_text_size; - global::Microsoft.Maui.Graphics.Resource.Dimension.material_clock_period_toggle_height = global::GraphicsTester.Android.Resource.Dimension.material_clock_period_toggle_height; - global::Microsoft.Maui.Graphics.Resource.Dimension.material_clock_period_toggle_margin_left = global::GraphicsTester.Android.Resource.Dimension.material_clock_period_toggle_margin_left; - global::Microsoft.Maui.Graphics.Resource.Dimension.material_clock_period_toggle_width = global::GraphicsTester.Android.Resource.Dimension.material_clock_period_toggle_width; - global::Microsoft.Maui.Graphics.Resource.Dimension.material_clock_size = global::GraphicsTester.Android.Resource.Dimension.material_clock_size; - global::Microsoft.Maui.Graphics.Resource.Dimension.material_cursor_inset_bottom = global::GraphicsTester.Android.Resource.Dimension.material_cursor_inset_bottom; - global::Microsoft.Maui.Graphics.Resource.Dimension.material_cursor_inset_top = global::GraphicsTester.Android.Resource.Dimension.material_cursor_inset_top; - global::Microsoft.Maui.Graphics.Resource.Dimension.material_cursor_width = global::GraphicsTester.Android.Resource.Dimension.material_cursor_width; - global::Microsoft.Maui.Graphics.Resource.Dimension.material_emphasis_disabled = global::GraphicsTester.Android.Resource.Dimension.material_emphasis_disabled; - global::Microsoft.Maui.Graphics.Resource.Dimension.material_emphasis_high_type = global::GraphicsTester.Android.Resource.Dimension.material_emphasis_high_type; - global::Microsoft.Maui.Graphics.Resource.Dimension.material_emphasis_medium = global::GraphicsTester.Android.Resource.Dimension.material_emphasis_medium; - global::Microsoft.Maui.Graphics.Resource.Dimension.material_filled_edittext_font_1_3_padding_bottom = global::GraphicsTester.Android.Resource.Dimension.material_filled_edittext_font_1_3_padding_bottom; - global::Microsoft.Maui.Graphics.Resource.Dimension.material_filled_edittext_font_1_3_padding_top = global::GraphicsTester.Android.Resource.Dimension.material_filled_edittext_font_1_3_padding_top; - global::Microsoft.Maui.Graphics.Resource.Dimension.material_filled_edittext_font_2_0_padding_bottom = global::GraphicsTester.Android.Resource.Dimension.material_filled_edittext_font_2_0_padding_bottom; - global::Microsoft.Maui.Graphics.Resource.Dimension.material_filled_edittext_font_2_0_padding_top = global::GraphicsTester.Android.Resource.Dimension.material_filled_edittext_font_2_0_padding_top; - global::Microsoft.Maui.Graphics.Resource.Dimension.material_font_1_3_box_collapsed_padding_top = global::GraphicsTester.Android.Resource.Dimension.material_font_1_3_box_collapsed_padding_top; - global::Microsoft.Maui.Graphics.Resource.Dimension.material_font_2_0_box_collapsed_padding_top = global::GraphicsTester.Android.Resource.Dimension.material_font_2_0_box_collapsed_padding_top; - global::Microsoft.Maui.Graphics.Resource.Dimension.material_helper_text_default_padding_top = global::GraphicsTester.Android.Resource.Dimension.material_helper_text_default_padding_top; - global::Microsoft.Maui.Graphics.Resource.Dimension.material_helper_text_font_1_3_padding_horizontal = global::GraphicsTester.Android.Resource.Dimension.material_helper_text_font_1_3_padding_horizontal; - global::Microsoft.Maui.Graphics.Resource.Dimension.material_helper_text_font_1_3_padding_top = global::GraphicsTester.Android.Resource.Dimension.material_helper_text_font_1_3_padding_top; - global::Microsoft.Maui.Graphics.Resource.Dimension.material_input_text_to_prefix_suffix_padding = global::GraphicsTester.Android.Resource.Dimension.material_input_text_to_prefix_suffix_padding; - global::Microsoft.Maui.Graphics.Resource.Dimension.material_text_view_test_line_height = global::GraphicsTester.Android.Resource.Dimension.material_text_view_test_line_height; - global::Microsoft.Maui.Graphics.Resource.Dimension.material_text_view_test_line_height_override = global::GraphicsTester.Android.Resource.Dimension.material_text_view_test_line_height_override; - global::Microsoft.Maui.Graphics.Resource.Dimension.material_timepicker_dialog_buttons_margin_top = global::GraphicsTester.Android.Resource.Dimension.material_timepicker_dialog_buttons_margin_top; - global::Microsoft.Maui.Graphics.Resource.Dimension.mtrl_alert_dialog_background_inset_bottom = global::GraphicsTester.Android.Resource.Dimension.mtrl_alert_dialog_background_inset_bottom; - global::Microsoft.Maui.Graphics.Resource.Dimension.mtrl_alert_dialog_background_inset_end = global::GraphicsTester.Android.Resource.Dimension.mtrl_alert_dialog_background_inset_end; - global::Microsoft.Maui.Graphics.Resource.Dimension.mtrl_alert_dialog_background_inset_start = global::GraphicsTester.Android.Resource.Dimension.mtrl_alert_dialog_background_inset_start; - global::Microsoft.Maui.Graphics.Resource.Dimension.mtrl_alert_dialog_background_inset_top = global::GraphicsTester.Android.Resource.Dimension.mtrl_alert_dialog_background_inset_top; - global::Microsoft.Maui.Graphics.Resource.Dimension.mtrl_alert_dialog_picker_background_inset = global::GraphicsTester.Android.Resource.Dimension.mtrl_alert_dialog_picker_background_inset; - global::Microsoft.Maui.Graphics.Resource.Dimension.mtrl_badge_horizontal_edge_offset = global::GraphicsTester.Android.Resource.Dimension.mtrl_badge_horizontal_edge_offset; - global::Microsoft.Maui.Graphics.Resource.Dimension.mtrl_badge_long_text_horizontal_padding = global::GraphicsTester.Android.Resource.Dimension.mtrl_badge_long_text_horizontal_padding; - global::Microsoft.Maui.Graphics.Resource.Dimension.mtrl_badge_radius = global::GraphicsTester.Android.Resource.Dimension.mtrl_badge_radius; - global::Microsoft.Maui.Graphics.Resource.Dimension.mtrl_badge_text_horizontal_edge_offset = global::GraphicsTester.Android.Resource.Dimension.mtrl_badge_text_horizontal_edge_offset; - global::Microsoft.Maui.Graphics.Resource.Dimension.mtrl_badge_text_size = global::GraphicsTester.Android.Resource.Dimension.mtrl_badge_text_size; - global::Microsoft.Maui.Graphics.Resource.Dimension.mtrl_badge_toolbar_action_menu_item_horizontal_offset = global::GraphicsTester.Android.Resource.Dimension.mtrl_badge_toolbar_action_menu_item_horizontal_offset; - global::Microsoft.Maui.Graphics.Resource.Dimension.mtrl_badge_toolbar_action_menu_item_vertical_offset = global::GraphicsTester.Android.Resource.Dimension.mtrl_badge_toolbar_action_menu_item_vertical_offset; - global::Microsoft.Maui.Graphics.Resource.Dimension.mtrl_badge_with_text_radius = global::GraphicsTester.Android.Resource.Dimension.mtrl_badge_with_text_radius; - global::Microsoft.Maui.Graphics.Resource.Dimension.mtrl_bottomappbar_fabOffsetEndMode = global::GraphicsTester.Android.Resource.Dimension.mtrl_bottomappbar_fabOffsetEndMode; - global::Microsoft.Maui.Graphics.Resource.Dimension.mtrl_bottomappbar_fab_bottom_margin = global::GraphicsTester.Android.Resource.Dimension.mtrl_bottomappbar_fab_bottom_margin; - global::Microsoft.Maui.Graphics.Resource.Dimension.mtrl_bottomappbar_fab_cradle_margin = global::GraphicsTester.Android.Resource.Dimension.mtrl_bottomappbar_fab_cradle_margin; - global::Microsoft.Maui.Graphics.Resource.Dimension.mtrl_bottomappbar_fab_cradle_rounded_corner_radius = global::GraphicsTester.Android.Resource.Dimension.mtrl_bottomappbar_fab_cradle_rounded_corner_radius; - global::Microsoft.Maui.Graphics.Resource.Dimension.mtrl_bottomappbar_fab_cradle_vertical_offset = global::GraphicsTester.Android.Resource.Dimension.mtrl_bottomappbar_fab_cradle_vertical_offset; - global::Microsoft.Maui.Graphics.Resource.Dimension.mtrl_bottomappbar_height = global::GraphicsTester.Android.Resource.Dimension.mtrl_bottomappbar_height; - global::Microsoft.Maui.Graphics.Resource.Dimension.mtrl_btn_corner_radius = global::GraphicsTester.Android.Resource.Dimension.mtrl_btn_corner_radius; - global::Microsoft.Maui.Graphics.Resource.Dimension.mtrl_btn_dialog_btn_min_width = global::GraphicsTester.Android.Resource.Dimension.mtrl_btn_dialog_btn_min_width; - global::Microsoft.Maui.Graphics.Resource.Dimension.mtrl_btn_disabled_elevation = global::GraphicsTester.Android.Resource.Dimension.mtrl_btn_disabled_elevation; - global::Microsoft.Maui.Graphics.Resource.Dimension.mtrl_btn_disabled_z = global::GraphicsTester.Android.Resource.Dimension.mtrl_btn_disabled_z; - global::Microsoft.Maui.Graphics.Resource.Dimension.mtrl_btn_elevation = global::GraphicsTester.Android.Resource.Dimension.mtrl_btn_elevation; - global::Microsoft.Maui.Graphics.Resource.Dimension.mtrl_btn_focused_z = global::GraphicsTester.Android.Resource.Dimension.mtrl_btn_focused_z; - global::Microsoft.Maui.Graphics.Resource.Dimension.mtrl_btn_hovered_z = global::GraphicsTester.Android.Resource.Dimension.mtrl_btn_hovered_z; - global::Microsoft.Maui.Graphics.Resource.Dimension.mtrl_btn_icon_btn_padding_left = global::GraphicsTester.Android.Resource.Dimension.mtrl_btn_icon_btn_padding_left; - global::Microsoft.Maui.Graphics.Resource.Dimension.mtrl_btn_icon_padding = global::GraphicsTester.Android.Resource.Dimension.mtrl_btn_icon_padding; - global::Microsoft.Maui.Graphics.Resource.Dimension.mtrl_btn_inset = global::GraphicsTester.Android.Resource.Dimension.mtrl_btn_inset; - global::Microsoft.Maui.Graphics.Resource.Dimension.mtrl_btn_letter_spacing = global::GraphicsTester.Android.Resource.Dimension.mtrl_btn_letter_spacing; - global::Microsoft.Maui.Graphics.Resource.Dimension.mtrl_btn_padding_bottom = global::GraphicsTester.Android.Resource.Dimension.mtrl_btn_padding_bottom; - global::Microsoft.Maui.Graphics.Resource.Dimension.mtrl_btn_padding_left = global::GraphicsTester.Android.Resource.Dimension.mtrl_btn_padding_left; - global::Microsoft.Maui.Graphics.Resource.Dimension.mtrl_btn_padding_right = global::GraphicsTester.Android.Resource.Dimension.mtrl_btn_padding_right; - global::Microsoft.Maui.Graphics.Resource.Dimension.mtrl_btn_padding_top = global::GraphicsTester.Android.Resource.Dimension.mtrl_btn_padding_top; - global::Microsoft.Maui.Graphics.Resource.Dimension.mtrl_btn_pressed_z = global::GraphicsTester.Android.Resource.Dimension.mtrl_btn_pressed_z; - global::Microsoft.Maui.Graphics.Resource.Dimension.mtrl_btn_snackbar_margin_horizontal = global::GraphicsTester.Android.Resource.Dimension.mtrl_btn_snackbar_margin_horizontal; - global::Microsoft.Maui.Graphics.Resource.Dimension.mtrl_btn_stroke_size = global::GraphicsTester.Android.Resource.Dimension.mtrl_btn_stroke_size; - global::Microsoft.Maui.Graphics.Resource.Dimension.mtrl_btn_text_btn_icon_padding = global::GraphicsTester.Android.Resource.Dimension.mtrl_btn_text_btn_icon_padding; - global::Microsoft.Maui.Graphics.Resource.Dimension.mtrl_btn_text_btn_padding_left = global::GraphicsTester.Android.Resource.Dimension.mtrl_btn_text_btn_padding_left; - global::Microsoft.Maui.Graphics.Resource.Dimension.mtrl_btn_text_btn_padding_right = global::GraphicsTester.Android.Resource.Dimension.mtrl_btn_text_btn_padding_right; - global::Microsoft.Maui.Graphics.Resource.Dimension.mtrl_btn_text_size = global::GraphicsTester.Android.Resource.Dimension.mtrl_btn_text_size; - global::Microsoft.Maui.Graphics.Resource.Dimension.mtrl_btn_z = global::GraphicsTester.Android.Resource.Dimension.mtrl_btn_z; - global::Microsoft.Maui.Graphics.Resource.Dimension.mtrl_calendar_action_confirm_button_min_width = global::GraphicsTester.Android.Resource.Dimension.mtrl_calendar_action_confirm_button_min_width; - global::Microsoft.Maui.Graphics.Resource.Dimension.mtrl_calendar_action_height = global::GraphicsTester.Android.Resource.Dimension.mtrl_calendar_action_height; - global::Microsoft.Maui.Graphics.Resource.Dimension.mtrl_calendar_action_padding = global::GraphicsTester.Android.Resource.Dimension.mtrl_calendar_action_padding; - global::Microsoft.Maui.Graphics.Resource.Dimension.mtrl_calendar_bottom_padding = global::GraphicsTester.Android.Resource.Dimension.mtrl_calendar_bottom_padding; - global::Microsoft.Maui.Graphics.Resource.Dimension.mtrl_calendar_content_padding = global::GraphicsTester.Android.Resource.Dimension.mtrl_calendar_content_padding; - global::Microsoft.Maui.Graphics.Resource.Dimension.mtrl_calendar_days_of_week_height = global::GraphicsTester.Android.Resource.Dimension.mtrl_calendar_days_of_week_height; - global::Microsoft.Maui.Graphics.Resource.Dimension.mtrl_calendar_day_corner = global::GraphicsTester.Android.Resource.Dimension.mtrl_calendar_day_corner; - global::Microsoft.Maui.Graphics.Resource.Dimension.mtrl_calendar_day_height = global::GraphicsTester.Android.Resource.Dimension.mtrl_calendar_day_height; - global::Microsoft.Maui.Graphics.Resource.Dimension.mtrl_calendar_day_horizontal_padding = global::GraphicsTester.Android.Resource.Dimension.mtrl_calendar_day_horizontal_padding; - global::Microsoft.Maui.Graphics.Resource.Dimension.mtrl_calendar_day_today_stroke = global::GraphicsTester.Android.Resource.Dimension.mtrl_calendar_day_today_stroke; - global::Microsoft.Maui.Graphics.Resource.Dimension.mtrl_calendar_day_vertical_padding = global::GraphicsTester.Android.Resource.Dimension.mtrl_calendar_day_vertical_padding; - global::Microsoft.Maui.Graphics.Resource.Dimension.mtrl_calendar_day_width = global::GraphicsTester.Android.Resource.Dimension.mtrl_calendar_day_width; - global::Microsoft.Maui.Graphics.Resource.Dimension.mtrl_calendar_dialog_background_inset = global::GraphicsTester.Android.Resource.Dimension.mtrl_calendar_dialog_background_inset; - global::Microsoft.Maui.Graphics.Resource.Dimension.mtrl_calendar_header_content_padding = global::GraphicsTester.Android.Resource.Dimension.mtrl_calendar_header_content_padding; - global::Microsoft.Maui.Graphics.Resource.Dimension.mtrl_calendar_header_content_padding_fullscreen = global::GraphicsTester.Android.Resource.Dimension.mtrl_calendar_header_content_padding_fullscreen; - global::Microsoft.Maui.Graphics.Resource.Dimension.mtrl_calendar_header_divider_thickness = global::GraphicsTester.Android.Resource.Dimension.mtrl_calendar_header_divider_thickness; - global::Microsoft.Maui.Graphics.Resource.Dimension.mtrl_calendar_header_height = global::GraphicsTester.Android.Resource.Dimension.mtrl_calendar_header_height; - global::Microsoft.Maui.Graphics.Resource.Dimension.mtrl_calendar_header_height_fullscreen = global::GraphicsTester.Android.Resource.Dimension.mtrl_calendar_header_height_fullscreen; - global::Microsoft.Maui.Graphics.Resource.Dimension.mtrl_calendar_header_selection_line_height = global::GraphicsTester.Android.Resource.Dimension.mtrl_calendar_header_selection_line_height; - global::Microsoft.Maui.Graphics.Resource.Dimension.mtrl_calendar_header_text_padding = global::GraphicsTester.Android.Resource.Dimension.mtrl_calendar_header_text_padding; - global::Microsoft.Maui.Graphics.Resource.Dimension.mtrl_calendar_header_toggle_margin_bottom = global::GraphicsTester.Android.Resource.Dimension.mtrl_calendar_header_toggle_margin_bottom; - global::Microsoft.Maui.Graphics.Resource.Dimension.mtrl_calendar_header_toggle_margin_top = global::GraphicsTester.Android.Resource.Dimension.mtrl_calendar_header_toggle_margin_top; - global::Microsoft.Maui.Graphics.Resource.Dimension.mtrl_calendar_landscape_header_width = global::GraphicsTester.Android.Resource.Dimension.mtrl_calendar_landscape_header_width; - global::Microsoft.Maui.Graphics.Resource.Dimension.mtrl_calendar_maximum_default_fullscreen_minor_axis = global::GraphicsTester.Android.Resource.Dimension.mtrl_calendar_maximum_default_fullscreen_minor_axis; - global::Microsoft.Maui.Graphics.Resource.Dimension.mtrl_calendar_month_horizontal_padding = global::GraphicsTester.Android.Resource.Dimension.mtrl_calendar_month_horizontal_padding; - global::Microsoft.Maui.Graphics.Resource.Dimension.mtrl_calendar_month_vertical_padding = global::GraphicsTester.Android.Resource.Dimension.mtrl_calendar_month_vertical_padding; - global::Microsoft.Maui.Graphics.Resource.Dimension.mtrl_calendar_navigation_bottom_padding = global::GraphicsTester.Android.Resource.Dimension.mtrl_calendar_navigation_bottom_padding; - global::Microsoft.Maui.Graphics.Resource.Dimension.mtrl_calendar_navigation_height = global::GraphicsTester.Android.Resource.Dimension.mtrl_calendar_navigation_height; - global::Microsoft.Maui.Graphics.Resource.Dimension.mtrl_calendar_navigation_top_padding = global::GraphicsTester.Android.Resource.Dimension.mtrl_calendar_navigation_top_padding; - global::Microsoft.Maui.Graphics.Resource.Dimension.mtrl_calendar_pre_l_text_clip_padding = global::GraphicsTester.Android.Resource.Dimension.mtrl_calendar_pre_l_text_clip_padding; - global::Microsoft.Maui.Graphics.Resource.Dimension.mtrl_calendar_selection_baseline_to_top_fullscreen = global::GraphicsTester.Android.Resource.Dimension.mtrl_calendar_selection_baseline_to_top_fullscreen; - global::Microsoft.Maui.Graphics.Resource.Dimension.mtrl_calendar_selection_text_baseline_to_bottom = global::GraphicsTester.Android.Resource.Dimension.mtrl_calendar_selection_text_baseline_to_bottom; - global::Microsoft.Maui.Graphics.Resource.Dimension.mtrl_calendar_selection_text_baseline_to_bottom_fullscreen = global::GraphicsTester.Android.Resource.Dimension.mtrl_calendar_selection_text_baseline_to_bottom_fullscreen; - global::Microsoft.Maui.Graphics.Resource.Dimension.mtrl_calendar_selection_text_baseline_to_top = global::GraphicsTester.Android.Resource.Dimension.mtrl_calendar_selection_text_baseline_to_top; - global::Microsoft.Maui.Graphics.Resource.Dimension.mtrl_calendar_text_input_padding_top = global::GraphicsTester.Android.Resource.Dimension.mtrl_calendar_text_input_padding_top; - global::Microsoft.Maui.Graphics.Resource.Dimension.mtrl_calendar_title_baseline_to_top = global::GraphicsTester.Android.Resource.Dimension.mtrl_calendar_title_baseline_to_top; - global::Microsoft.Maui.Graphics.Resource.Dimension.mtrl_calendar_title_baseline_to_top_fullscreen = global::GraphicsTester.Android.Resource.Dimension.mtrl_calendar_title_baseline_to_top_fullscreen; - global::Microsoft.Maui.Graphics.Resource.Dimension.mtrl_calendar_year_corner = global::GraphicsTester.Android.Resource.Dimension.mtrl_calendar_year_corner; - global::Microsoft.Maui.Graphics.Resource.Dimension.mtrl_calendar_year_height = global::GraphicsTester.Android.Resource.Dimension.mtrl_calendar_year_height; - global::Microsoft.Maui.Graphics.Resource.Dimension.mtrl_calendar_year_horizontal_padding = global::GraphicsTester.Android.Resource.Dimension.mtrl_calendar_year_horizontal_padding; - global::Microsoft.Maui.Graphics.Resource.Dimension.mtrl_calendar_year_vertical_padding = global::GraphicsTester.Android.Resource.Dimension.mtrl_calendar_year_vertical_padding; - global::Microsoft.Maui.Graphics.Resource.Dimension.mtrl_calendar_year_width = global::GraphicsTester.Android.Resource.Dimension.mtrl_calendar_year_width; - global::Microsoft.Maui.Graphics.Resource.Dimension.mtrl_card_checked_icon_margin = global::GraphicsTester.Android.Resource.Dimension.mtrl_card_checked_icon_margin; - global::Microsoft.Maui.Graphics.Resource.Dimension.mtrl_card_checked_icon_size = global::GraphicsTester.Android.Resource.Dimension.mtrl_card_checked_icon_size; - global::Microsoft.Maui.Graphics.Resource.Dimension.mtrl_card_corner_radius = global::GraphicsTester.Android.Resource.Dimension.mtrl_card_corner_radius; - global::Microsoft.Maui.Graphics.Resource.Dimension.mtrl_card_dragged_z = global::GraphicsTester.Android.Resource.Dimension.mtrl_card_dragged_z; - global::Microsoft.Maui.Graphics.Resource.Dimension.mtrl_card_elevation = global::GraphicsTester.Android.Resource.Dimension.mtrl_card_elevation; - global::Microsoft.Maui.Graphics.Resource.Dimension.mtrl_card_spacing = global::GraphicsTester.Android.Resource.Dimension.mtrl_card_spacing; - global::Microsoft.Maui.Graphics.Resource.Dimension.mtrl_chip_pressed_translation_z = global::GraphicsTester.Android.Resource.Dimension.mtrl_chip_pressed_translation_z; - global::Microsoft.Maui.Graphics.Resource.Dimension.mtrl_chip_text_size = global::GraphicsTester.Android.Resource.Dimension.mtrl_chip_text_size; - global::Microsoft.Maui.Graphics.Resource.Dimension.mtrl_edittext_rectangle_top_offset = global::GraphicsTester.Android.Resource.Dimension.mtrl_edittext_rectangle_top_offset; - global::Microsoft.Maui.Graphics.Resource.Dimension.mtrl_exposed_dropdown_menu_popup_elevation = global::GraphicsTester.Android.Resource.Dimension.mtrl_exposed_dropdown_menu_popup_elevation; - global::Microsoft.Maui.Graphics.Resource.Dimension.mtrl_exposed_dropdown_menu_popup_vertical_offset = global::GraphicsTester.Android.Resource.Dimension.mtrl_exposed_dropdown_menu_popup_vertical_offset; - global::Microsoft.Maui.Graphics.Resource.Dimension.mtrl_exposed_dropdown_menu_popup_vertical_padding = global::GraphicsTester.Android.Resource.Dimension.mtrl_exposed_dropdown_menu_popup_vertical_padding; - global::Microsoft.Maui.Graphics.Resource.Dimension.mtrl_extended_fab_bottom_padding = global::GraphicsTester.Android.Resource.Dimension.mtrl_extended_fab_bottom_padding; - global::Microsoft.Maui.Graphics.Resource.Dimension.mtrl_extended_fab_corner_radius = global::GraphicsTester.Android.Resource.Dimension.mtrl_extended_fab_corner_radius; - global::Microsoft.Maui.Graphics.Resource.Dimension.mtrl_extended_fab_disabled_elevation = global::GraphicsTester.Android.Resource.Dimension.mtrl_extended_fab_disabled_elevation; - global::Microsoft.Maui.Graphics.Resource.Dimension.mtrl_extended_fab_disabled_translation_z = global::GraphicsTester.Android.Resource.Dimension.mtrl_extended_fab_disabled_translation_z; - global::Microsoft.Maui.Graphics.Resource.Dimension.mtrl_extended_fab_elevation = global::GraphicsTester.Android.Resource.Dimension.mtrl_extended_fab_elevation; - global::Microsoft.Maui.Graphics.Resource.Dimension.mtrl_extended_fab_end_padding = global::GraphicsTester.Android.Resource.Dimension.mtrl_extended_fab_end_padding; - global::Microsoft.Maui.Graphics.Resource.Dimension.mtrl_extended_fab_end_padding_icon = global::GraphicsTester.Android.Resource.Dimension.mtrl_extended_fab_end_padding_icon; - global::Microsoft.Maui.Graphics.Resource.Dimension.mtrl_extended_fab_icon_size = global::GraphicsTester.Android.Resource.Dimension.mtrl_extended_fab_icon_size; - global::Microsoft.Maui.Graphics.Resource.Dimension.mtrl_extended_fab_icon_text_spacing = global::GraphicsTester.Android.Resource.Dimension.mtrl_extended_fab_icon_text_spacing; - global::Microsoft.Maui.Graphics.Resource.Dimension.mtrl_extended_fab_min_height = global::GraphicsTester.Android.Resource.Dimension.mtrl_extended_fab_min_height; - global::Microsoft.Maui.Graphics.Resource.Dimension.mtrl_extended_fab_min_width = global::GraphicsTester.Android.Resource.Dimension.mtrl_extended_fab_min_width; - global::Microsoft.Maui.Graphics.Resource.Dimension.mtrl_extended_fab_start_padding = global::GraphicsTester.Android.Resource.Dimension.mtrl_extended_fab_start_padding; - global::Microsoft.Maui.Graphics.Resource.Dimension.mtrl_extended_fab_start_padding_icon = global::GraphicsTester.Android.Resource.Dimension.mtrl_extended_fab_start_padding_icon; - global::Microsoft.Maui.Graphics.Resource.Dimension.mtrl_extended_fab_top_padding = global::GraphicsTester.Android.Resource.Dimension.mtrl_extended_fab_top_padding; - global::Microsoft.Maui.Graphics.Resource.Dimension.mtrl_extended_fab_translation_z_base = global::GraphicsTester.Android.Resource.Dimension.mtrl_extended_fab_translation_z_base; - global::Microsoft.Maui.Graphics.Resource.Dimension.mtrl_extended_fab_translation_z_hovered_focused = global::GraphicsTester.Android.Resource.Dimension.mtrl_extended_fab_translation_z_hovered_focused; - global::Microsoft.Maui.Graphics.Resource.Dimension.mtrl_extended_fab_translation_z_pressed = global::GraphicsTester.Android.Resource.Dimension.mtrl_extended_fab_translation_z_pressed; - global::Microsoft.Maui.Graphics.Resource.Dimension.mtrl_fab_elevation = global::GraphicsTester.Android.Resource.Dimension.mtrl_fab_elevation; - global::Microsoft.Maui.Graphics.Resource.Dimension.mtrl_fab_min_touch_target = global::GraphicsTester.Android.Resource.Dimension.mtrl_fab_min_touch_target; - global::Microsoft.Maui.Graphics.Resource.Dimension.mtrl_fab_translation_z_hovered_focused = global::GraphicsTester.Android.Resource.Dimension.mtrl_fab_translation_z_hovered_focused; - global::Microsoft.Maui.Graphics.Resource.Dimension.mtrl_fab_translation_z_pressed = global::GraphicsTester.Android.Resource.Dimension.mtrl_fab_translation_z_pressed; - global::Microsoft.Maui.Graphics.Resource.Dimension.mtrl_high_ripple_default_alpha = global::GraphicsTester.Android.Resource.Dimension.mtrl_high_ripple_default_alpha; - global::Microsoft.Maui.Graphics.Resource.Dimension.mtrl_high_ripple_focused_alpha = global::GraphicsTester.Android.Resource.Dimension.mtrl_high_ripple_focused_alpha; - global::Microsoft.Maui.Graphics.Resource.Dimension.mtrl_high_ripple_hovered_alpha = global::GraphicsTester.Android.Resource.Dimension.mtrl_high_ripple_hovered_alpha; - global::Microsoft.Maui.Graphics.Resource.Dimension.mtrl_high_ripple_pressed_alpha = global::GraphicsTester.Android.Resource.Dimension.mtrl_high_ripple_pressed_alpha; - global::Microsoft.Maui.Graphics.Resource.Dimension.mtrl_large_touch_target = global::GraphicsTester.Android.Resource.Dimension.mtrl_large_touch_target; - global::Microsoft.Maui.Graphics.Resource.Dimension.mtrl_low_ripple_default_alpha = global::GraphicsTester.Android.Resource.Dimension.mtrl_low_ripple_default_alpha; - global::Microsoft.Maui.Graphics.Resource.Dimension.mtrl_low_ripple_focused_alpha = global::GraphicsTester.Android.Resource.Dimension.mtrl_low_ripple_focused_alpha; - global::Microsoft.Maui.Graphics.Resource.Dimension.mtrl_low_ripple_hovered_alpha = global::GraphicsTester.Android.Resource.Dimension.mtrl_low_ripple_hovered_alpha; - global::Microsoft.Maui.Graphics.Resource.Dimension.mtrl_low_ripple_pressed_alpha = global::GraphicsTester.Android.Resource.Dimension.mtrl_low_ripple_pressed_alpha; - global::Microsoft.Maui.Graphics.Resource.Dimension.mtrl_min_touch_target_size = global::GraphicsTester.Android.Resource.Dimension.mtrl_min_touch_target_size; - global::Microsoft.Maui.Graphics.Resource.Dimension.mtrl_navigation_elevation = global::GraphicsTester.Android.Resource.Dimension.mtrl_navigation_elevation; - global::Microsoft.Maui.Graphics.Resource.Dimension.mtrl_navigation_item_horizontal_padding = global::GraphicsTester.Android.Resource.Dimension.mtrl_navigation_item_horizontal_padding; - global::Microsoft.Maui.Graphics.Resource.Dimension.mtrl_navigation_item_icon_padding = global::GraphicsTester.Android.Resource.Dimension.mtrl_navigation_item_icon_padding; - global::Microsoft.Maui.Graphics.Resource.Dimension.mtrl_navigation_item_icon_size = global::GraphicsTester.Android.Resource.Dimension.mtrl_navigation_item_icon_size; - global::Microsoft.Maui.Graphics.Resource.Dimension.mtrl_navigation_item_shape_horizontal_margin = global::GraphicsTester.Android.Resource.Dimension.mtrl_navigation_item_shape_horizontal_margin; - global::Microsoft.Maui.Graphics.Resource.Dimension.mtrl_navigation_item_shape_vertical_margin = global::GraphicsTester.Android.Resource.Dimension.mtrl_navigation_item_shape_vertical_margin; - global::Microsoft.Maui.Graphics.Resource.Dimension.mtrl_progress_circular_inset = global::GraphicsTester.Android.Resource.Dimension.mtrl_progress_circular_inset; - global::Microsoft.Maui.Graphics.Resource.Dimension.mtrl_progress_circular_inset_extra_small = global::GraphicsTester.Android.Resource.Dimension.mtrl_progress_circular_inset_extra_small; - global::Microsoft.Maui.Graphics.Resource.Dimension.mtrl_progress_circular_inset_medium = global::GraphicsTester.Android.Resource.Dimension.mtrl_progress_circular_inset_medium; - global::Microsoft.Maui.Graphics.Resource.Dimension.mtrl_progress_circular_inset_small = global::GraphicsTester.Android.Resource.Dimension.mtrl_progress_circular_inset_small; - global::Microsoft.Maui.Graphics.Resource.Dimension.mtrl_progress_circular_radius = global::GraphicsTester.Android.Resource.Dimension.mtrl_progress_circular_radius; - global::Microsoft.Maui.Graphics.Resource.Dimension.mtrl_progress_circular_size = global::GraphicsTester.Android.Resource.Dimension.mtrl_progress_circular_size; - global::Microsoft.Maui.Graphics.Resource.Dimension.mtrl_progress_circular_size_extra_small = global::GraphicsTester.Android.Resource.Dimension.mtrl_progress_circular_size_extra_small; - global::Microsoft.Maui.Graphics.Resource.Dimension.mtrl_progress_circular_size_medium = global::GraphicsTester.Android.Resource.Dimension.mtrl_progress_circular_size_medium; - global::Microsoft.Maui.Graphics.Resource.Dimension.mtrl_progress_circular_size_small = global::GraphicsTester.Android.Resource.Dimension.mtrl_progress_circular_size_small; - global::Microsoft.Maui.Graphics.Resource.Dimension.mtrl_progress_circular_track_thickness_extra_small = global::GraphicsTester.Android.Resource.Dimension.mtrl_progress_circular_track_thickness_extra_small; - global::Microsoft.Maui.Graphics.Resource.Dimension.mtrl_progress_circular_track_thickness_medium = global::GraphicsTester.Android.Resource.Dimension.mtrl_progress_circular_track_thickness_medium; - global::Microsoft.Maui.Graphics.Resource.Dimension.mtrl_progress_circular_track_thickness_small = global::GraphicsTester.Android.Resource.Dimension.mtrl_progress_circular_track_thickness_small; - global::Microsoft.Maui.Graphics.Resource.Dimension.mtrl_progress_indicator_full_rounded_corner_radius = global::GraphicsTester.Android.Resource.Dimension.mtrl_progress_indicator_full_rounded_corner_radius; - global::Microsoft.Maui.Graphics.Resource.Dimension.mtrl_progress_track_thickness = global::GraphicsTester.Android.Resource.Dimension.mtrl_progress_track_thickness; - global::Microsoft.Maui.Graphics.Resource.Dimension.mtrl_shape_corner_size_large_component = global::GraphicsTester.Android.Resource.Dimension.mtrl_shape_corner_size_large_component; - global::Microsoft.Maui.Graphics.Resource.Dimension.mtrl_shape_corner_size_medium_component = global::GraphicsTester.Android.Resource.Dimension.mtrl_shape_corner_size_medium_component; - global::Microsoft.Maui.Graphics.Resource.Dimension.mtrl_shape_corner_size_small_component = global::GraphicsTester.Android.Resource.Dimension.mtrl_shape_corner_size_small_component; - global::Microsoft.Maui.Graphics.Resource.Dimension.mtrl_slider_halo_radius = global::GraphicsTester.Android.Resource.Dimension.mtrl_slider_halo_radius; - global::Microsoft.Maui.Graphics.Resource.Dimension.mtrl_slider_label_padding = global::GraphicsTester.Android.Resource.Dimension.mtrl_slider_label_padding; - global::Microsoft.Maui.Graphics.Resource.Dimension.mtrl_slider_label_radius = global::GraphicsTester.Android.Resource.Dimension.mtrl_slider_label_radius; - global::Microsoft.Maui.Graphics.Resource.Dimension.mtrl_slider_label_square_side = global::GraphicsTester.Android.Resource.Dimension.mtrl_slider_label_square_side; - global::Microsoft.Maui.Graphics.Resource.Dimension.mtrl_slider_thumb_elevation = global::GraphicsTester.Android.Resource.Dimension.mtrl_slider_thumb_elevation; - global::Microsoft.Maui.Graphics.Resource.Dimension.mtrl_slider_thumb_radius = global::GraphicsTester.Android.Resource.Dimension.mtrl_slider_thumb_radius; - global::Microsoft.Maui.Graphics.Resource.Dimension.mtrl_slider_track_height = global::GraphicsTester.Android.Resource.Dimension.mtrl_slider_track_height; - global::Microsoft.Maui.Graphics.Resource.Dimension.mtrl_slider_track_side_padding = global::GraphicsTester.Android.Resource.Dimension.mtrl_slider_track_side_padding; - global::Microsoft.Maui.Graphics.Resource.Dimension.mtrl_slider_track_top = global::GraphicsTester.Android.Resource.Dimension.mtrl_slider_track_top; - global::Microsoft.Maui.Graphics.Resource.Dimension.mtrl_slider_widget_height = global::GraphicsTester.Android.Resource.Dimension.mtrl_slider_widget_height; - global::Microsoft.Maui.Graphics.Resource.Dimension.mtrl_snackbar_action_text_color_alpha = global::GraphicsTester.Android.Resource.Dimension.mtrl_snackbar_action_text_color_alpha; - global::Microsoft.Maui.Graphics.Resource.Dimension.mtrl_snackbar_background_corner_radius = global::GraphicsTester.Android.Resource.Dimension.mtrl_snackbar_background_corner_radius; - global::Microsoft.Maui.Graphics.Resource.Dimension.mtrl_snackbar_background_overlay_color_alpha = global::GraphicsTester.Android.Resource.Dimension.mtrl_snackbar_background_overlay_color_alpha; - global::Microsoft.Maui.Graphics.Resource.Dimension.mtrl_snackbar_margin = global::GraphicsTester.Android.Resource.Dimension.mtrl_snackbar_margin; - global::Microsoft.Maui.Graphics.Resource.Dimension.mtrl_snackbar_message_margin_horizontal = global::GraphicsTester.Android.Resource.Dimension.mtrl_snackbar_message_margin_horizontal; - global::Microsoft.Maui.Graphics.Resource.Dimension.mtrl_snackbar_padding_horizontal = global::GraphicsTester.Android.Resource.Dimension.mtrl_snackbar_padding_horizontal; - global::Microsoft.Maui.Graphics.Resource.Dimension.mtrl_switch_thumb_elevation = global::GraphicsTester.Android.Resource.Dimension.mtrl_switch_thumb_elevation; - global::Microsoft.Maui.Graphics.Resource.Dimension.mtrl_textinput_box_corner_radius_medium = global::GraphicsTester.Android.Resource.Dimension.mtrl_textinput_box_corner_radius_medium; - global::Microsoft.Maui.Graphics.Resource.Dimension.mtrl_textinput_box_corner_radius_small = global::GraphicsTester.Android.Resource.Dimension.mtrl_textinput_box_corner_radius_small; - global::Microsoft.Maui.Graphics.Resource.Dimension.mtrl_textinput_box_label_cutout_padding = global::GraphicsTester.Android.Resource.Dimension.mtrl_textinput_box_label_cutout_padding; - global::Microsoft.Maui.Graphics.Resource.Dimension.mtrl_textinput_box_stroke_width_default = global::GraphicsTester.Android.Resource.Dimension.mtrl_textinput_box_stroke_width_default; - global::Microsoft.Maui.Graphics.Resource.Dimension.mtrl_textinput_box_stroke_width_focused = global::GraphicsTester.Android.Resource.Dimension.mtrl_textinput_box_stroke_width_focused; - global::Microsoft.Maui.Graphics.Resource.Dimension.mtrl_textinput_counter_margin_start = global::GraphicsTester.Android.Resource.Dimension.mtrl_textinput_counter_margin_start; - global::Microsoft.Maui.Graphics.Resource.Dimension.mtrl_textinput_end_icon_margin_start = global::GraphicsTester.Android.Resource.Dimension.mtrl_textinput_end_icon_margin_start; - global::Microsoft.Maui.Graphics.Resource.Dimension.mtrl_textinput_outline_box_expanded_padding = global::GraphicsTester.Android.Resource.Dimension.mtrl_textinput_outline_box_expanded_padding; - global::Microsoft.Maui.Graphics.Resource.Dimension.mtrl_textinput_start_icon_margin_end = global::GraphicsTester.Android.Resource.Dimension.mtrl_textinput_start_icon_margin_end; - global::Microsoft.Maui.Graphics.Resource.Dimension.mtrl_toolbar_default_height = global::GraphicsTester.Android.Resource.Dimension.mtrl_toolbar_default_height; - global::Microsoft.Maui.Graphics.Resource.Dimension.mtrl_tooltip_arrowSize = global::GraphicsTester.Android.Resource.Dimension.mtrl_tooltip_arrowSize; - global::Microsoft.Maui.Graphics.Resource.Dimension.mtrl_tooltip_cornerSize = global::GraphicsTester.Android.Resource.Dimension.mtrl_tooltip_cornerSize; - global::Microsoft.Maui.Graphics.Resource.Dimension.mtrl_tooltip_minHeight = global::GraphicsTester.Android.Resource.Dimension.mtrl_tooltip_minHeight; - global::Microsoft.Maui.Graphics.Resource.Dimension.mtrl_tooltip_minWidth = global::GraphicsTester.Android.Resource.Dimension.mtrl_tooltip_minWidth; - global::Microsoft.Maui.Graphics.Resource.Dimension.mtrl_tooltip_padding = global::GraphicsTester.Android.Resource.Dimension.mtrl_tooltip_padding; - global::Microsoft.Maui.Graphics.Resource.Dimension.mtrl_transition_shared_axis_slide_distance = global::GraphicsTester.Android.Resource.Dimension.mtrl_transition_shared_axis_slide_distance; - global::Microsoft.Maui.Graphics.Resource.Dimension.notification_action_icon_size = global::GraphicsTester.Android.Resource.Dimension.notification_action_icon_size; - global::Microsoft.Maui.Graphics.Resource.Dimension.notification_action_text_size = global::GraphicsTester.Android.Resource.Dimension.notification_action_text_size; - global::Microsoft.Maui.Graphics.Resource.Dimension.notification_big_circle_margin = global::GraphicsTester.Android.Resource.Dimension.notification_big_circle_margin; - global::Microsoft.Maui.Graphics.Resource.Dimension.notification_content_margin_start = global::GraphicsTester.Android.Resource.Dimension.notification_content_margin_start; - global::Microsoft.Maui.Graphics.Resource.Dimension.notification_large_icon_height = global::GraphicsTester.Android.Resource.Dimension.notification_large_icon_height; - global::Microsoft.Maui.Graphics.Resource.Dimension.notification_large_icon_width = global::GraphicsTester.Android.Resource.Dimension.notification_large_icon_width; - global::Microsoft.Maui.Graphics.Resource.Dimension.notification_main_column_padding_top = global::GraphicsTester.Android.Resource.Dimension.notification_main_column_padding_top; - global::Microsoft.Maui.Graphics.Resource.Dimension.notification_media_narrow_margin = global::GraphicsTester.Android.Resource.Dimension.notification_media_narrow_margin; - global::Microsoft.Maui.Graphics.Resource.Dimension.notification_right_icon_size = global::GraphicsTester.Android.Resource.Dimension.notification_right_icon_size; - global::Microsoft.Maui.Graphics.Resource.Dimension.notification_right_side_padding_top = global::GraphicsTester.Android.Resource.Dimension.notification_right_side_padding_top; - global::Microsoft.Maui.Graphics.Resource.Dimension.notification_small_icon_background_padding = global::GraphicsTester.Android.Resource.Dimension.notification_small_icon_background_padding; - global::Microsoft.Maui.Graphics.Resource.Dimension.notification_small_icon_size_as_large = global::GraphicsTester.Android.Resource.Dimension.notification_small_icon_size_as_large; - global::Microsoft.Maui.Graphics.Resource.Dimension.notification_subtext_size = global::GraphicsTester.Android.Resource.Dimension.notification_subtext_size; - global::Microsoft.Maui.Graphics.Resource.Dimension.notification_top_pad = global::GraphicsTester.Android.Resource.Dimension.notification_top_pad; - global::Microsoft.Maui.Graphics.Resource.Dimension.notification_top_pad_large_text = global::GraphicsTester.Android.Resource.Dimension.notification_top_pad_large_text; - global::Microsoft.Maui.Graphics.Resource.Dimension.test_mtrl_calendar_day_cornerSize = global::GraphicsTester.Android.Resource.Dimension.test_mtrl_calendar_day_cornerSize; - global::Microsoft.Maui.Graphics.Resource.Dimension.tooltip_corner_radius = global::GraphicsTester.Android.Resource.Dimension.tooltip_corner_radius; - global::Microsoft.Maui.Graphics.Resource.Dimension.tooltip_horizontal_padding = global::GraphicsTester.Android.Resource.Dimension.tooltip_horizontal_padding; - global::Microsoft.Maui.Graphics.Resource.Dimension.tooltip_margin = global::GraphicsTester.Android.Resource.Dimension.tooltip_margin; - global::Microsoft.Maui.Graphics.Resource.Dimension.tooltip_precise_anchor_extra_offset = global::GraphicsTester.Android.Resource.Dimension.tooltip_precise_anchor_extra_offset; - global::Microsoft.Maui.Graphics.Resource.Dimension.tooltip_precise_anchor_threshold = global::GraphicsTester.Android.Resource.Dimension.tooltip_precise_anchor_threshold; - global::Microsoft.Maui.Graphics.Resource.Dimension.tooltip_vertical_padding = global::GraphicsTester.Android.Resource.Dimension.tooltip_vertical_padding; - global::Microsoft.Maui.Graphics.Resource.Dimension.tooltip_y_offset_non_touch = global::GraphicsTester.Android.Resource.Dimension.tooltip_y_offset_non_touch; - global::Microsoft.Maui.Graphics.Resource.Dimension.tooltip_y_offset_touch = global::GraphicsTester.Android.Resource.Dimension.tooltip_y_offset_touch; - global::Microsoft.Maui.Graphics.Resource.Drawable.abc_ab_share_pack_mtrl_alpha = global::GraphicsTester.Android.Resource.Drawable.abc_ab_share_pack_mtrl_alpha; - global::Microsoft.Maui.Graphics.Resource.Drawable.abc_action_bar_item_background_material = global::GraphicsTester.Android.Resource.Drawable.abc_action_bar_item_background_material; - global::Microsoft.Maui.Graphics.Resource.Drawable.abc_btn_borderless_material = global::GraphicsTester.Android.Resource.Drawable.abc_btn_borderless_material; - global::Microsoft.Maui.Graphics.Resource.Drawable.abc_btn_check_material = global::GraphicsTester.Android.Resource.Drawable.abc_btn_check_material; - global::Microsoft.Maui.Graphics.Resource.Drawable.abc_btn_check_material_anim = global::GraphicsTester.Android.Resource.Drawable.abc_btn_check_material_anim; - global::Microsoft.Maui.Graphics.Resource.Drawable.abc_btn_check_to_on_mtrl_000 = global::GraphicsTester.Android.Resource.Drawable.abc_btn_check_to_on_mtrl_000; - global::Microsoft.Maui.Graphics.Resource.Drawable.abc_btn_check_to_on_mtrl_015 = global::GraphicsTester.Android.Resource.Drawable.abc_btn_check_to_on_mtrl_015; - global::Microsoft.Maui.Graphics.Resource.Drawable.abc_btn_colored_material = global::GraphicsTester.Android.Resource.Drawable.abc_btn_colored_material; - global::Microsoft.Maui.Graphics.Resource.Drawable.abc_btn_default_mtrl_shape = global::GraphicsTester.Android.Resource.Drawable.abc_btn_default_mtrl_shape; - global::Microsoft.Maui.Graphics.Resource.Drawable.abc_btn_radio_material = global::GraphicsTester.Android.Resource.Drawable.abc_btn_radio_material; - global::Microsoft.Maui.Graphics.Resource.Drawable.abc_btn_radio_material_anim = global::GraphicsTester.Android.Resource.Drawable.abc_btn_radio_material_anim; - global::Microsoft.Maui.Graphics.Resource.Drawable.abc_btn_radio_to_on_mtrl_000 = global::GraphicsTester.Android.Resource.Drawable.abc_btn_radio_to_on_mtrl_000; - global::Microsoft.Maui.Graphics.Resource.Drawable.abc_btn_radio_to_on_mtrl_015 = global::GraphicsTester.Android.Resource.Drawable.abc_btn_radio_to_on_mtrl_015; - global::Microsoft.Maui.Graphics.Resource.Drawable.abc_btn_switch_to_on_mtrl_00001 = global::GraphicsTester.Android.Resource.Drawable.abc_btn_switch_to_on_mtrl_00001; - global::Microsoft.Maui.Graphics.Resource.Drawable.abc_btn_switch_to_on_mtrl_00012 = global::GraphicsTester.Android.Resource.Drawable.abc_btn_switch_to_on_mtrl_00012; - global::Microsoft.Maui.Graphics.Resource.Drawable.abc_cab_background_internal_bg = global::GraphicsTester.Android.Resource.Drawable.abc_cab_background_internal_bg; - global::Microsoft.Maui.Graphics.Resource.Drawable.abc_cab_background_top_material = global::GraphicsTester.Android.Resource.Drawable.abc_cab_background_top_material; - global::Microsoft.Maui.Graphics.Resource.Drawable.abc_cab_background_top_mtrl_alpha = global::GraphicsTester.Android.Resource.Drawable.abc_cab_background_top_mtrl_alpha; - global::Microsoft.Maui.Graphics.Resource.Drawable.abc_control_background_material = global::GraphicsTester.Android.Resource.Drawable.abc_control_background_material; - global::Microsoft.Maui.Graphics.Resource.Drawable.abc_dialog_material_background = global::GraphicsTester.Android.Resource.Drawable.abc_dialog_material_background; - global::Microsoft.Maui.Graphics.Resource.Drawable.abc_edit_text_material = global::GraphicsTester.Android.Resource.Drawable.abc_edit_text_material; - global::Microsoft.Maui.Graphics.Resource.Drawable.abc_ic_ab_back_material = global::GraphicsTester.Android.Resource.Drawable.abc_ic_ab_back_material; - global::Microsoft.Maui.Graphics.Resource.Drawable.abc_ic_arrow_drop_right_black_24dp = global::GraphicsTester.Android.Resource.Drawable.abc_ic_arrow_drop_right_black_24dp; - global::Microsoft.Maui.Graphics.Resource.Drawable.abc_ic_clear_material = global::GraphicsTester.Android.Resource.Drawable.abc_ic_clear_material; - global::Microsoft.Maui.Graphics.Resource.Drawable.abc_ic_commit_search_api_mtrl_alpha = global::GraphicsTester.Android.Resource.Drawable.abc_ic_commit_search_api_mtrl_alpha; - global::Microsoft.Maui.Graphics.Resource.Drawable.abc_ic_go_search_api_material = global::GraphicsTester.Android.Resource.Drawable.abc_ic_go_search_api_material; - global::Microsoft.Maui.Graphics.Resource.Drawable.abc_ic_menu_copy_mtrl_am_alpha = global::GraphicsTester.Android.Resource.Drawable.abc_ic_menu_copy_mtrl_am_alpha; - global::Microsoft.Maui.Graphics.Resource.Drawable.abc_ic_menu_cut_mtrl_alpha = global::GraphicsTester.Android.Resource.Drawable.abc_ic_menu_cut_mtrl_alpha; - global::Microsoft.Maui.Graphics.Resource.Drawable.abc_ic_menu_overflow_material = global::GraphicsTester.Android.Resource.Drawable.abc_ic_menu_overflow_material; - global::Microsoft.Maui.Graphics.Resource.Drawable.abc_ic_menu_paste_mtrl_am_alpha = global::GraphicsTester.Android.Resource.Drawable.abc_ic_menu_paste_mtrl_am_alpha; - global::Microsoft.Maui.Graphics.Resource.Drawable.abc_ic_menu_selectall_mtrl_alpha = global::GraphicsTester.Android.Resource.Drawable.abc_ic_menu_selectall_mtrl_alpha; - global::Microsoft.Maui.Graphics.Resource.Drawable.abc_ic_menu_share_mtrl_alpha = global::GraphicsTester.Android.Resource.Drawable.abc_ic_menu_share_mtrl_alpha; - global::Microsoft.Maui.Graphics.Resource.Drawable.abc_ic_search_api_material = global::GraphicsTester.Android.Resource.Drawable.abc_ic_search_api_material; - global::Microsoft.Maui.Graphics.Resource.Drawable.abc_ic_star_black_16dp = global::GraphicsTester.Android.Resource.Drawable.abc_ic_star_black_16dp; - global::Microsoft.Maui.Graphics.Resource.Drawable.abc_ic_star_black_36dp = global::GraphicsTester.Android.Resource.Drawable.abc_ic_star_black_36dp; - global::Microsoft.Maui.Graphics.Resource.Drawable.abc_ic_star_black_48dp = global::GraphicsTester.Android.Resource.Drawable.abc_ic_star_black_48dp; - global::Microsoft.Maui.Graphics.Resource.Drawable.abc_ic_star_half_black_16dp = global::GraphicsTester.Android.Resource.Drawable.abc_ic_star_half_black_16dp; - global::Microsoft.Maui.Graphics.Resource.Drawable.abc_ic_star_half_black_36dp = global::GraphicsTester.Android.Resource.Drawable.abc_ic_star_half_black_36dp; - global::Microsoft.Maui.Graphics.Resource.Drawable.abc_ic_star_half_black_48dp = global::GraphicsTester.Android.Resource.Drawable.abc_ic_star_half_black_48dp; - global::Microsoft.Maui.Graphics.Resource.Drawable.abc_ic_voice_search_api_material = global::GraphicsTester.Android.Resource.Drawable.abc_ic_voice_search_api_material; - global::Microsoft.Maui.Graphics.Resource.Drawable.abc_item_background_holo_dark = global::GraphicsTester.Android.Resource.Drawable.abc_item_background_holo_dark; - global::Microsoft.Maui.Graphics.Resource.Drawable.abc_item_background_holo_light = global::GraphicsTester.Android.Resource.Drawable.abc_item_background_holo_light; - global::Microsoft.Maui.Graphics.Resource.Drawable.abc_list_divider_material = global::GraphicsTester.Android.Resource.Drawable.abc_list_divider_material; - global::Microsoft.Maui.Graphics.Resource.Drawable.abc_list_divider_mtrl_alpha = global::GraphicsTester.Android.Resource.Drawable.abc_list_divider_mtrl_alpha; - global::Microsoft.Maui.Graphics.Resource.Drawable.abc_list_focused_holo = global::GraphicsTester.Android.Resource.Drawable.abc_list_focused_holo; - global::Microsoft.Maui.Graphics.Resource.Drawable.abc_list_longpressed_holo = global::GraphicsTester.Android.Resource.Drawable.abc_list_longpressed_holo; - global::Microsoft.Maui.Graphics.Resource.Drawable.abc_list_pressed_holo_dark = global::GraphicsTester.Android.Resource.Drawable.abc_list_pressed_holo_dark; - global::Microsoft.Maui.Graphics.Resource.Drawable.abc_list_pressed_holo_light = global::GraphicsTester.Android.Resource.Drawable.abc_list_pressed_holo_light; - global::Microsoft.Maui.Graphics.Resource.Drawable.abc_list_selector_background_transition_holo_dark = global::GraphicsTester.Android.Resource.Drawable.abc_list_selector_background_transition_holo_dark; - global::Microsoft.Maui.Graphics.Resource.Drawable.abc_list_selector_background_transition_holo_light = global::GraphicsTester.Android.Resource.Drawable.abc_list_selector_background_transition_holo_light; - global::Microsoft.Maui.Graphics.Resource.Drawable.abc_list_selector_disabled_holo_dark = global::GraphicsTester.Android.Resource.Drawable.abc_list_selector_disabled_holo_dark; - global::Microsoft.Maui.Graphics.Resource.Drawable.abc_list_selector_disabled_holo_light = global::GraphicsTester.Android.Resource.Drawable.abc_list_selector_disabled_holo_light; - global::Microsoft.Maui.Graphics.Resource.Drawable.abc_list_selector_holo_dark = global::GraphicsTester.Android.Resource.Drawable.abc_list_selector_holo_dark; - global::Microsoft.Maui.Graphics.Resource.Drawable.abc_list_selector_holo_light = global::GraphicsTester.Android.Resource.Drawable.abc_list_selector_holo_light; - global::Microsoft.Maui.Graphics.Resource.Drawable.abc_menu_hardkey_panel_mtrl_mult = global::GraphicsTester.Android.Resource.Drawable.abc_menu_hardkey_panel_mtrl_mult; - global::Microsoft.Maui.Graphics.Resource.Drawable.abc_popup_background_mtrl_mult = global::GraphicsTester.Android.Resource.Drawable.abc_popup_background_mtrl_mult; - global::Microsoft.Maui.Graphics.Resource.Drawable.abc_ratingbar_indicator_material = global::GraphicsTester.Android.Resource.Drawable.abc_ratingbar_indicator_material; - global::Microsoft.Maui.Graphics.Resource.Drawable.abc_ratingbar_material = global::GraphicsTester.Android.Resource.Drawable.abc_ratingbar_material; - global::Microsoft.Maui.Graphics.Resource.Drawable.abc_ratingbar_small_material = global::GraphicsTester.Android.Resource.Drawable.abc_ratingbar_small_material; - global::Microsoft.Maui.Graphics.Resource.Drawable.abc_scrubber_control_off_mtrl_alpha = global::GraphicsTester.Android.Resource.Drawable.abc_scrubber_control_off_mtrl_alpha; - global::Microsoft.Maui.Graphics.Resource.Drawable.abc_scrubber_control_to_pressed_mtrl_000 = global::GraphicsTester.Android.Resource.Drawable.abc_scrubber_control_to_pressed_mtrl_000; - global::Microsoft.Maui.Graphics.Resource.Drawable.abc_scrubber_control_to_pressed_mtrl_005 = global::GraphicsTester.Android.Resource.Drawable.abc_scrubber_control_to_pressed_mtrl_005; - global::Microsoft.Maui.Graphics.Resource.Drawable.abc_scrubber_primary_mtrl_alpha = global::GraphicsTester.Android.Resource.Drawable.abc_scrubber_primary_mtrl_alpha; - global::Microsoft.Maui.Graphics.Resource.Drawable.abc_scrubber_track_mtrl_alpha = global::GraphicsTester.Android.Resource.Drawable.abc_scrubber_track_mtrl_alpha; - global::Microsoft.Maui.Graphics.Resource.Drawable.abc_seekbar_thumb_material = global::GraphicsTester.Android.Resource.Drawable.abc_seekbar_thumb_material; - global::Microsoft.Maui.Graphics.Resource.Drawable.abc_seekbar_tick_mark_material = global::GraphicsTester.Android.Resource.Drawable.abc_seekbar_tick_mark_material; - global::Microsoft.Maui.Graphics.Resource.Drawable.abc_seekbar_track_material = global::GraphicsTester.Android.Resource.Drawable.abc_seekbar_track_material; - global::Microsoft.Maui.Graphics.Resource.Drawable.abc_spinner_mtrl_am_alpha = global::GraphicsTester.Android.Resource.Drawable.abc_spinner_mtrl_am_alpha; - global::Microsoft.Maui.Graphics.Resource.Drawable.abc_spinner_textfield_background_material = global::GraphicsTester.Android.Resource.Drawable.abc_spinner_textfield_background_material; - global::Microsoft.Maui.Graphics.Resource.Drawable.abc_switch_thumb_material = global::GraphicsTester.Android.Resource.Drawable.abc_switch_thumb_material; - global::Microsoft.Maui.Graphics.Resource.Drawable.abc_switch_track_mtrl_alpha = global::GraphicsTester.Android.Resource.Drawable.abc_switch_track_mtrl_alpha; - global::Microsoft.Maui.Graphics.Resource.Drawable.abc_tab_indicator_material = global::GraphicsTester.Android.Resource.Drawable.abc_tab_indicator_material; - global::Microsoft.Maui.Graphics.Resource.Drawable.abc_tab_indicator_mtrl_alpha = global::GraphicsTester.Android.Resource.Drawable.abc_tab_indicator_mtrl_alpha; - global::Microsoft.Maui.Graphics.Resource.Drawable.abc_textfield_activated_mtrl_alpha = global::GraphicsTester.Android.Resource.Drawable.abc_textfield_activated_mtrl_alpha; - global::Microsoft.Maui.Graphics.Resource.Drawable.abc_textfield_default_mtrl_alpha = global::GraphicsTester.Android.Resource.Drawable.abc_textfield_default_mtrl_alpha; - global::Microsoft.Maui.Graphics.Resource.Drawable.abc_textfield_search_activated_mtrl_alpha = global::GraphicsTester.Android.Resource.Drawable.abc_textfield_search_activated_mtrl_alpha; - global::Microsoft.Maui.Graphics.Resource.Drawable.abc_textfield_search_default_mtrl_alpha = global::GraphicsTester.Android.Resource.Drawable.abc_textfield_search_default_mtrl_alpha; - global::Microsoft.Maui.Graphics.Resource.Drawable.abc_textfield_search_material = global::GraphicsTester.Android.Resource.Drawable.abc_textfield_search_material; - global::Microsoft.Maui.Graphics.Resource.Drawable.abc_text_cursor_material = global::GraphicsTester.Android.Resource.Drawable.abc_text_cursor_material; - global::Microsoft.Maui.Graphics.Resource.Drawable.abc_text_select_handle_left_mtrl_dark = global::GraphicsTester.Android.Resource.Drawable.abc_text_select_handle_left_mtrl_dark; - global::Microsoft.Maui.Graphics.Resource.Drawable.abc_text_select_handle_left_mtrl_light = global::GraphicsTester.Android.Resource.Drawable.abc_text_select_handle_left_mtrl_light; - global::Microsoft.Maui.Graphics.Resource.Drawable.abc_text_select_handle_middle_mtrl_dark = global::GraphicsTester.Android.Resource.Drawable.abc_text_select_handle_middle_mtrl_dark; - global::Microsoft.Maui.Graphics.Resource.Drawable.abc_text_select_handle_middle_mtrl_light = global::GraphicsTester.Android.Resource.Drawable.abc_text_select_handle_middle_mtrl_light; - global::Microsoft.Maui.Graphics.Resource.Drawable.abc_text_select_handle_right_mtrl_dark = global::GraphicsTester.Android.Resource.Drawable.abc_text_select_handle_right_mtrl_dark; - global::Microsoft.Maui.Graphics.Resource.Drawable.abc_text_select_handle_right_mtrl_light = global::GraphicsTester.Android.Resource.Drawable.abc_text_select_handle_right_mtrl_light; - global::Microsoft.Maui.Graphics.Resource.Drawable.abc_vector_test = global::GraphicsTester.Android.Resource.Drawable.abc_vector_test; - global::Microsoft.Maui.Graphics.Resource.Drawable.avd_hide_password = global::GraphicsTester.Android.Resource.Drawable.avd_hide_password; - global::Microsoft.Maui.Graphics.Resource.Drawable.avd_show_password = global::GraphicsTester.Android.Resource.Drawable.avd_show_password; - global::Microsoft.Maui.Graphics.Resource.Drawable.btn_checkbox_checked_mtrl = global::GraphicsTester.Android.Resource.Drawable.btn_checkbox_checked_mtrl; - global::Microsoft.Maui.Graphics.Resource.Drawable.btn_checkbox_checked_to_unchecked_mtrl_animation = global::GraphicsTester.Android.Resource.Drawable.btn_checkbox_checked_to_unchecked_mtrl_animation; - global::Microsoft.Maui.Graphics.Resource.Drawable.btn_checkbox_unchecked_mtrl = global::GraphicsTester.Android.Resource.Drawable.btn_checkbox_unchecked_mtrl; - global::Microsoft.Maui.Graphics.Resource.Drawable.btn_checkbox_unchecked_to_checked_mtrl_animation = global::GraphicsTester.Android.Resource.Drawable.btn_checkbox_unchecked_to_checked_mtrl_animation; - global::Microsoft.Maui.Graphics.Resource.Drawable.btn_radio_off_mtrl = global::GraphicsTester.Android.Resource.Drawable.btn_radio_off_mtrl; - global::Microsoft.Maui.Graphics.Resource.Drawable.btn_radio_off_to_on_mtrl_animation = global::GraphicsTester.Android.Resource.Drawable.btn_radio_off_to_on_mtrl_animation; - global::Microsoft.Maui.Graphics.Resource.Drawable.btn_radio_on_mtrl = global::GraphicsTester.Android.Resource.Drawable.btn_radio_on_mtrl; - global::Microsoft.Maui.Graphics.Resource.Drawable.btn_radio_on_to_off_mtrl_animation = global::GraphicsTester.Android.Resource.Drawable.btn_radio_on_to_off_mtrl_animation; - global::Microsoft.Maui.Graphics.Resource.Drawable.design_bottom_navigation_item_background = global::GraphicsTester.Android.Resource.Drawable.design_bottom_navigation_item_background; - global::Microsoft.Maui.Graphics.Resource.Drawable.design_fab_background = global::GraphicsTester.Android.Resource.Drawable.design_fab_background; - global::Microsoft.Maui.Graphics.Resource.Drawable.design_ic_visibility = global::GraphicsTester.Android.Resource.Drawable.design_ic_visibility; - global::Microsoft.Maui.Graphics.Resource.Drawable.design_ic_visibility_off = global::GraphicsTester.Android.Resource.Drawable.design_ic_visibility_off; - global::Microsoft.Maui.Graphics.Resource.Drawable.design_password_eye = global::GraphicsTester.Android.Resource.Drawable.design_password_eye; - global::Microsoft.Maui.Graphics.Resource.Drawable.design_snackbar_background = global::GraphicsTester.Android.Resource.Drawable.design_snackbar_background; - global::Microsoft.Maui.Graphics.Resource.Drawable.ic_clock_black_24dp = global::GraphicsTester.Android.Resource.Drawable.ic_clock_black_24dp; - global::Microsoft.Maui.Graphics.Resource.Drawable.ic_keyboard_black_24dp = global::GraphicsTester.Android.Resource.Drawable.ic_keyboard_black_24dp; - global::Microsoft.Maui.Graphics.Resource.Drawable.ic_mtrl_checked_circle = global::GraphicsTester.Android.Resource.Drawable.ic_mtrl_checked_circle; - global::Microsoft.Maui.Graphics.Resource.Drawable.ic_mtrl_chip_checked_black = global::GraphicsTester.Android.Resource.Drawable.ic_mtrl_chip_checked_black; - global::Microsoft.Maui.Graphics.Resource.Drawable.ic_mtrl_chip_checked_circle = global::GraphicsTester.Android.Resource.Drawable.ic_mtrl_chip_checked_circle; - global::Microsoft.Maui.Graphics.Resource.Drawable.ic_mtrl_chip_close_circle = global::GraphicsTester.Android.Resource.Drawable.ic_mtrl_chip_close_circle; - global::Microsoft.Maui.Graphics.Resource.Drawable.material_cursor_drawable = global::GraphicsTester.Android.Resource.Drawable.material_cursor_drawable; - global::Microsoft.Maui.Graphics.Resource.Drawable.material_ic_calendar_black_24dp = global::GraphicsTester.Android.Resource.Drawable.material_ic_calendar_black_24dp; - global::Microsoft.Maui.Graphics.Resource.Drawable.material_ic_clear_black_24dp = global::GraphicsTester.Android.Resource.Drawable.material_ic_clear_black_24dp; - global::Microsoft.Maui.Graphics.Resource.Drawable.material_ic_edit_black_24dp = global::GraphicsTester.Android.Resource.Drawable.material_ic_edit_black_24dp; - global::Microsoft.Maui.Graphics.Resource.Drawable.material_ic_keyboard_arrow_left_black_24dp = global::GraphicsTester.Android.Resource.Drawable.material_ic_keyboard_arrow_left_black_24dp; - global::Microsoft.Maui.Graphics.Resource.Drawable.material_ic_keyboard_arrow_next_black_24dp = global::GraphicsTester.Android.Resource.Drawable.material_ic_keyboard_arrow_next_black_24dp; - global::Microsoft.Maui.Graphics.Resource.Drawable.material_ic_keyboard_arrow_previous_black_24dp = global::GraphicsTester.Android.Resource.Drawable.material_ic_keyboard_arrow_previous_black_24dp; - global::Microsoft.Maui.Graphics.Resource.Drawable.material_ic_keyboard_arrow_right_black_24dp = global::GraphicsTester.Android.Resource.Drawable.material_ic_keyboard_arrow_right_black_24dp; - global::Microsoft.Maui.Graphics.Resource.Drawable.material_ic_menu_arrow_down_black_24dp = global::GraphicsTester.Android.Resource.Drawable.material_ic_menu_arrow_down_black_24dp; - global::Microsoft.Maui.Graphics.Resource.Drawable.material_ic_menu_arrow_up_black_24dp = global::GraphicsTester.Android.Resource.Drawable.material_ic_menu_arrow_up_black_24dp; - global::Microsoft.Maui.Graphics.Resource.Drawable.mtrl_dialog_background = global::GraphicsTester.Android.Resource.Drawable.mtrl_dialog_background; - global::Microsoft.Maui.Graphics.Resource.Drawable.mtrl_dropdown_arrow = global::GraphicsTester.Android.Resource.Drawable.mtrl_dropdown_arrow; - global::Microsoft.Maui.Graphics.Resource.Drawable.mtrl_ic_arrow_drop_down = global::GraphicsTester.Android.Resource.Drawable.mtrl_ic_arrow_drop_down; - global::Microsoft.Maui.Graphics.Resource.Drawable.mtrl_ic_arrow_drop_up = global::GraphicsTester.Android.Resource.Drawable.mtrl_ic_arrow_drop_up; - global::Microsoft.Maui.Graphics.Resource.Drawable.mtrl_ic_cancel = global::GraphicsTester.Android.Resource.Drawable.mtrl_ic_cancel; - global::Microsoft.Maui.Graphics.Resource.Drawable.mtrl_ic_error = global::GraphicsTester.Android.Resource.Drawable.mtrl_ic_error; - global::Microsoft.Maui.Graphics.Resource.Drawable.mtrl_popupmenu_background = global::GraphicsTester.Android.Resource.Drawable.mtrl_popupmenu_background; - global::Microsoft.Maui.Graphics.Resource.Drawable.mtrl_popupmenu_background_dark = global::GraphicsTester.Android.Resource.Drawable.mtrl_popupmenu_background_dark; - global::Microsoft.Maui.Graphics.Resource.Drawable.mtrl_tabs_default_indicator = global::GraphicsTester.Android.Resource.Drawable.mtrl_tabs_default_indicator; - global::Microsoft.Maui.Graphics.Resource.Drawable.navigation_empty_icon = global::GraphicsTester.Android.Resource.Drawable.navigation_empty_icon; - global::Microsoft.Maui.Graphics.Resource.Drawable.notification_action_background = global::GraphicsTester.Android.Resource.Drawable.notification_action_background; - global::Microsoft.Maui.Graphics.Resource.Drawable.notification_bg = global::GraphicsTester.Android.Resource.Drawable.notification_bg; - global::Microsoft.Maui.Graphics.Resource.Drawable.notification_bg_low = global::GraphicsTester.Android.Resource.Drawable.notification_bg_low; - global::Microsoft.Maui.Graphics.Resource.Drawable.notification_bg_low_normal = global::GraphicsTester.Android.Resource.Drawable.notification_bg_low_normal; - global::Microsoft.Maui.Graphics.Resource.Drawable.notification_bg_low_pressed = global::GraphicsTester.Android.Resource.Drawable.notification_bg_low_pressed; - global::Microsoft.Maui.Graphics.Resource.Drawable.notification_bg_normal = global::GraphicsTester.Android.Resource.Drawable.notification_bg_normal; - global::Microsoft.Maui.Graphics.Resource.Drawable.notification_bg_normal_pressed = global::GraphicsTester.Android.Resource.Drawable.notification_bg_normal_pressed; - global::Microsoft.Maui.Graphics.Resource.Drawable.notification_icon_background = global::GraphicsTester.Android.Resource.Drawable.notification_icon_background; - global::Microsoft.Maui.Graphics.Resource.Drawable.notification_template_icon_bg = global::GraphicsTester.Android.Resource.Drawable.notification_template_icon_bg; - global::Microsoft.Maui.Graphics.Resource.Drawable.notification_template_icon_low_bg = global::GraphicsTester.Android.Resource.Drawable.notification_template_icon_low_bg; - global::Microsoft.Maui.Graphics.Resource.Drawable.notification_tile_bg = global::GraphicsTester.Android.Resource.Drawable.notification_tile_bg; - global::Microsoft.Maui.Graphics.Resource.Drawable.notify_panel_notification_icon_bg = global::GraphicsTester.Android.Resource.Drawable.notify_panel_notification_icon_bg; - global::Microsoft.Maui.Graphics.Resource.Drawable.test_custom_background = global::GraphicsTester.Android.Resource.Drawable.test_custom_background; - global::Microsoft.Maui.Graphics.Resource.Drawable.tooltip_frame_dark = global::GraphicsTester.Android.Resource.Drawable.tooltip_frame_dark; - global::Microsoft.Maui.Graphics.Resource.Drawable.tooltip_frame_light = global::GraphicsTester.Android.Resource.Drawable.tooltip_frame_light; - global::Microsoft.Maui.Graphics.Resource.Id.accelerate = global::GraphicsTester.Android.Resource.Id.accelerate; - global::Microsoft.Maui.Graphics.Resource.Id.accessibility_action_clickable_span = global::GraphicsTester.Android.Resource.Id.accessibility_action_clickable_span; - global::Microsoft.Maui.Graphics.Resource.Id.accessibility_custom_action_0 = global::GraphicsTester.Android.Resource.Id.accessibility_custom_action_0; - global::Microsoft.Maui.Graphics.Resource.Id.accessibility_custom_action_1 = global::GraphicsTester.Android.Resource.Id.accessibility_custom_action_1; - global::Microsoft.Maui.Graphics.Resource.Id.accessibility_custom_action_10 = global::GraphicsTester.Android.Resource.Id.accessibility_custom_action_10; - global::Microsoft.Maui.Graphics.Resource.Id.accessibility_custom_action_11 = global::GraphicsTester.Android.Resource.Id.accessibility_custom_action_11; - global::Microsoft.Maui.Graphics.Resource.Id.accessibility_custom_action_12 = global::GraphicsTester.Android.Resource.Id.accessibility_custom_action_12; - global::Microsoft.Maui.Graphics.Resource.Id.accessibility_custom_action_13 = global::GraphicsTester.Android.Resource.Id.accessibility_custom_action_13; - global::Microsoft.Maui.Graphics.Resource.Id.accessibility_custom_action_14 = global::GraphicsTester.Android.Resource.Id.accessibility_custom_action_14; - global::Microsoft.Maui.Graphics.Resource.Id.accessibility_custom_action_15 = global::GraphicsTester.Android.Resource.Id.accessibility_custom_action_15; - global::Microsoft.Maui.Graphics.Resource.Id.accessibility_custom_action_16 = global::GraphicsTester.Android.Resource.Id.accessibility_custom_action_16; - global::Microsoft.Maui.Graphics.Resource.Id.accessibility_custom_action_17 = global::GraphicsTester.Android.Resource.Id.accessibility_custom_action_17; - global::Microsoft.Maui.Graphics.Resource.Id.accessibility_custom_action_18 = global::GraphicsTester.Android.Resource.Id.accessibility_custom_action_18; - global::Microsoft.Maui.Graphics.Resource.Id.accessibility_custom_action_19 = global::GraphicsTester.Android.Resource.Id.accessibility_custom_action_19; - global::Microsoft.Maui.Graphics.Resource.Id.accessibility_custom_action_2 = global::GraphicsTester.Android.Resource.Id.accessibility_custom_action_2; - global::Microsoft.Maui.Graphics.Resource.Id.accessibility_custom_action_20 = global::GraphicsTester.Android.Resource.Id.accessibility_custom_action_20; - global::Microsoft.Maui.Graphics.Resource.Id.accessibility_custom_action_21 = global::GraphicsTester.Android.Resource.Id.accessibility_custom_action_21; - global::Microsoft.Maui.Graphics.Resource.Id.accessibility_custom_action_22 = global::GraphicsTester.Android.Resource.Id.accessibility_custom_action_22; - global::Microsoft.Maui.Graphics.Resource.Id.accessibility_custom_action_23 = global::GraphicsTester.Android.Resource.Id.accessibility_custom_action_23; - global::Microsoft.Maui.Graphics.Resource.Id.accessibility_custom_action_24 = global::GraphicsTester.Android.Resource.Id.accessibility_custom_action_24; - global::Microsoft.Maui.Graphics.Resource.Id.accessibility_custom_action_25 = global::GraphicsTester.Android.Resource.Id.accessibility_custom_action_25; - global::Microsoft.Maui.Graphics.Resource.Id.accessibility_custom_action_26 = global::GraphicsTester.Android.Resource.Id.accessibility_custom_action_26; - global::Microsoft.Maui.Graphics.Resource.Id.accessibility_custom_action_27 = global::GraphicsTester.Android.Resource.Id.accessibility_custom_action_27; - global::Microsoft.Maui.Graphics.Resource.Id.accessibility_custom_action_28 = global::GraphicsTester.Android.Resource.Id.accessibility_custom_action_28; - global::Microsoft.Maui.Graphics.Resource.Id.accessibility_custom_action_29 = global::GraphicsTester.Android.Resource.Id.accessibility_custom_action_29; - global::Microsoft.Maui.Graphics.Resource.Id.accessibility_custom_action_3 = global::GraphicsTester.Android.Resource.Id.accessibility_custom_action_3; - global::Microsoft.Maui.Graphics.Resource.Id.accessibility_custom_action_30 = global::GraphicsTester.Android.Resource.Id.accessibility_custom_action_30; - global::Microsoft.Maui.Graphics.Resource.Id.accessibility_custom_action_31 = global::GraphicsTester.Android.Resource.Id.accessibility_custom_action_31; - global::Microsoft.Maui.Graphics.Resource.Id.accessibility_custom_action_4 = global::GraphicsTester.Android.Resource.Id.accessibility_custom_action_4; - global::Microsoft.Maui.Graphics.Resource.Id.accessibility_custom_action_5 = global::GraphicsTester.Android.Resource.Id.accessibility_custom_action_5; - global::Microsoft.Maui.Graphics.Resource.Id.accessibility_custom_action_6 = global::GraphicsTester.Android.Resource.Id.accessibility_custom_action_6; - global::Microsoft.Maui.Graphics.Resource.Id.accessibility_custom_action_7 = global::GraphicsTester.Android.Resource.Id.accessibility_custom_action_7; - global::Microsoft.Maui.Graphics.Resource.Id.accessibility_custom_action_8 = global::GraphicsTester.Android.Resource.Id.accessibility_custom_action_8; - global::Microsoft.Maui.Graphics.Resource.Id.accessibility_custom_action_9 = global::GraphicsTester.Android.Resource.Id.accessibility_custom_action_9; - global::Microsoft.Maui.Graphics.Resource.Id.action0 = global::GraphicsTester.Android.Resource.Id.action0; - global::Microsoft.Maui.Graphics.Resource.Id.actions = global::GraphicsTester.Android.Resource.Id.actions; - global::Microsoft.Maui.Graphics.Resource.Id.action_bar = global::GraphicsTester.Android.Resource.Id.action_bar; - global::Microsoft.Maui.Graphics.Resource.Id.action_bar_activity_content = global::GraphicsTester.Android.Resource.Id.action_bar_activity_content; - global::Microsoft.Maui.Graphics.Resource.Id.action_bar_container = global::GraphicsTester.Android.Resource.Id.action_bar_container; - global::Microsoft.Maui.Graphics.Resource.Id.action_bar_root = global::GraphicsTester.Android.Resource.Id.action_bar_root; - global::Microsoft.Maui.Graphics.Resource.Id.action_bar_spinner = global::GraphicsTester.Android.Resource.Id.action_bar_spinner; - global::Microsoft.Maui.Graphics.Resource.Id.action_bar_subtitle = global::GraphicsTester.Android.Resource.Id.action_bar_subtitle; - global::Microsoft.Maui.Graphics.Resource.Id.action_bar_title = global::GraphicsTester.Android.Resource.Id.action_bar_title; - global::Microsoft.Maui.Graphics.Resource.Id.action_container = global::GraphicsTester.Android.Resource.Id.action_container; - global::Microsoft.Maui.Graphics.Resource.Id.action_context_bar = global::GraphicsTester.Android.Resource.Id.action_context_bar; - global::Microsoft.Maui.Graphics.Resource.Id.action_divider = global::GraphicsTester.Android.Resource.Id.action_divider; - global::Microsoft.Maui.Graphics.Resource.Id.action_image = global::GraphicsTester.Android.Resource.Id.action_image; - global::Microsoft.Maui.Graphics.Resource.Id.action_menu_divider = global::GraphicsTester.Android.Resource.Id.action_menu_divider; - global::Microsoft.Maui.Graphics.Resource.Id.action_menu_presenter = global::GraphicsTester.Android.Resource.Id.action_menu_presenter; - global::Microsoft.Maui.Graphics.Resource.Id.action_mode_bar = global::GraphicsTester.Android.Resource.Id.action_mode_bar; - global::Microsoft.Maui.Graphics.Resource.Id.action_mode_bar_stub = global::GraphicsTester.Android.Resource.Id.action_mode_bar_stub; - global::Microsoft.Maui.Graphics.Resource.Id.action_mode_close_button = global::GraphicsTester.Android.Resource.Id.action_mode_close_button; - global::Microsoft.Maui.Graphics.Resource.Id.action_text = global::GraphicsTester.Android.Resource.Id.action_text; - global::Microsoft.Maui.Graphics.Resource.Id.activity_chooser_view_content = global::GraphicsTester.Android.Resource.Id.activity_chooser_view_content; - global::Microsoft.Maui.Graphics.Resource.Id.add = global::GraphicsTester.Android.Resource.Id.add; - global::Microsoft.Maui.Graphics.Resource.Id.alertTitle = global::GraphicsTester.Android.Resource.Id.alertTitle; - global::Microsoft.Maui.Graphics.Resource.Id.aligned = global::GraphicsTester.Android.Resource.Id.aligned; - global::Microsoft.Maui.Graphics.Resource.Id.all = global::GraphicsTester.Android.Resource.Id.all; - global::Microsoft.Maui.Graphics.Resource.Id.ALT = global::GraphicsTester.Android.Resource.Id.ALT; - global::Microsoft.Maui.Graphics.Resource.Id.always = global::GraphicsTester.Android.Resource.Id.always; - global::Microsoft.Maui.Graphics.Resource.Id.animateToEnd = global::GraphicsTester.Android.Resource.Id.animateToEnd; - global::Microsoft.Maui.Graphics.Resource.Id.animateToStart = global::GraphicsTester.Android.Resource.Id.animateToStart; - global::Microsoft.Maui.Graphics.Resource.Id.asConfigured = global::GraphicsTester.Android.Resource.Id.asConfigured; - global::Microsoft.Maui.Graphics.Resource.Id.async = global::GraphicsTester.Android.Resource.Id.async; - global::Microsoft.Maui.Graphics.Resource.Id.auto = global::GraphicsTester.Android.Resource.Id.auto; - global::Microsoft.Maui.Graphics.Resource.Id.autoComplete = global::GraphicsTester.Android.Resource.Id.autoComplete; - global::Microsoft.Maui.Graphics.Resource.Id.autoCompleteToEnd = global::GraphicsTester.Android.Resource.Id.autoCompleteToEnd; - global::Microsoft.Maui.Graphics.Resource.Id.autoCompleteToStart = global::GraphicsTester.Android.Resource.Id.autoCompleteToStart; - global::Microsoft.Maui.Graphics.Resource.Id.barrier = global::GraphicsTester.Android.Resource.Id.barrier; - global::Microsoft.Maui.Graphics.Resource.Id.baseline = global::GraphicsTester.Android.Resource.Id.baseline; - global::Microsoft.Maui.Graphics.Resource.Id.beginning = global::GraphicsTester.Android.Resource.Id.beginning; - global::Microsoft.Maui.Graphics.Resource.Id.beginOnFirstDraw = global::GraphicsTester.Android.Resource.Id.beginOnFirstDraw; - global::Microsoft.Maui.Graphics.Resource.Id.blocking = global::GraphicsTester.Android.Resource.Id.blocking; - global::Microsoft.Maui.Graphics.Resource.Id.bottom = global::GraphicsTester.Android.Resource.Id.bottom; - global::Microsoft.Maui.Graphics.Resource.Id.BOTTOM_END = global::GraphicsTester.Android.Resource.Id.BOTTOM_END; - global::Microsoft.Maui.Graphics.Resource.Id.BOTTOM_START = global::GraphicsTester.Android.Resource.Id.BOTTOM_START; - global::Microsoft.Maui.Graphics.Resource.Id.bounce = global::GraphicsTester.Android.Resource.Id.bounce; - global::Microsoft.Maui.Graphics.Resource.Id.buttonPanel = global::GraphicsTester.Android.Resource.Id.buttonPanel; - global::Microsoft.Maui.Graphics.Resource.Id.cache_measures = global::GraphicsTester.Android.Resource.Id.cache_measures; - global::Microsoft.Maui.Graphics.Resource.Id.cancel_action = global::GraphicsTester.Android.Resource.Id.cancel_action; - global::Microsoft.Maui.Graphics.Resource.Id.cancel_button = global::GraphicsTester.Android.Resource.Id.cancel_button; - global::Microsoft.Maui.Graphics.Resource.Id.center = global::GraphicsTester.Android.Resource.Id.center; - global::Microsoft.Maui.Graphics.Resource.Id.center_horizontal = global::GraphicsTester.Android.Resource.Id.center_horizontal; - global::Microsoft.Maui.Graphics.Resource.Id.center_vertical = global::GraphicsTester.Android.Resource.Id.center_vertical; - global::Microsoft.Maui.Graphics.Resource.Id.chain = global::GraphicsTester.Android.Resource.Id.chain; - global::Microsoft.Maui.Graphics.Resource.Id.chains = global::GraphicsTester.Android.Resource.Id.chains; - global::Microsoft.Maui.Graphics.Resource.Id.checkbox = global::GraphicsTester.Android.Resource.Id.checkbox; - global::Microsoft.Maui.Graphics.Resource.Id.@checked = global::GraphicsTester.Android.Resource.Id.@checked; - global::Microsoft.Maui.Graphics.Resource.Id.chip = global::GraphicsTester.Android.Resource.Id.chip; - global::Microsoft.Maui.Graphics.Resource.Id.chip1 = global::GraphicsTester.Android.Resource.Id.chip1; - global::Microsoft.Maui.Graphics.Resource.Id.chip2 = global::GraphicsTester.Android.Resource.Id.chip2; - global::Microsoft.Maui.Graphics.Resource.Id.chip3 = global::GraphicsTester.Android.Resource.Id.chip3; - global::Microsoft.Maui.Graphics.Resource.Id.chip_group = global::GraphicsTester.Android.Resource.Id.chip_group; - global::Microsoft.Maui.Graphics.Resource.Id.chronometer = global::GraphicsTester.Android.Resource.Id.chronometer; - global::Microsoft.Maui.Graphics.Resource.Id.circle_center = global::GraphicsTester.Android.Resource.Id.circle_center; - global::Microsoft.Maui.Graphics.Resource.Id.clear_text = global::GraphicsTester.Android.Resource.Id.clear_text; - global::Microsoft.Maui.Graphics.Resource.Id.clip_horizontal = global::GraphicsTester.Android.Resource.Id.clip_horizontal; - global::Microsoft.Maui.Graphics.Resource.Id.clip_vertical = global::GraphicsTester.Android.Resource.Id.clip_vertical; - global::Microsoft.Maui.Graphics.Resource.Id.clockwise = global::GraphicsTester.Android.Resource.Id.clockwise; - global::Microsoft.Maui.Graphics.Resource.Id.collapseActionView = global::GraphicsTester.Android.Resource.Id.collapseActionView; - global::Microsoft.Maui.Graphics.Resource.Id.confirm_button = global::GraphicsTester.Android.Resource.Id.confirm_button; - global::Microsoft.Maui.Graphics.Resource.Id.container = global::GraphicsTester.Android.Resource.Id.container; - global::Microsoft.Maui.Graphics.Resource.Id.content = global::GraphicsTester.Android.Resource.Id.content; - global::Microsoft.Maui.Graphics.Resource.Id.contentPanel = global::GraphicsTester.Android.Resource.Id.contentPanel; - global::Microsoft.Maui.Graphics.Resource.Id.contiguous = global::GraphicsTester.Android.Resource.Id.contiguous; - global::Microsoft.Maui.Graphics.Resource.Id.coordinator = global::GraphicsTester.Android.Resource.Id.coordinator; - global::Microsoft.Maui.Graphics.Resource.Id.cos = global::GraphicsTester.Android.Resource.Id.cos; - global::Microsoft.Maui.Graphics.Resource.Id.counterclockwise = global::GraphicsTester.Android.Resource.Id.counterclockwise; - global::Microsoft.Maui.Graphics.Resource.Id.CTRL = global::GraphicsTester.Android.Resource.Id.CTRL; - global::Microsoft.Maui.Graphics.Resource.Id.custom = global::GraphicsTester.Android.Resource.Id.custom; - global::Microsoft.Maui.Graphics.Resource.Id.customPanel = global::GraphicsTester.Android.Resource.Id.customPanel; - global::Microsoft.Maui.Graphics.Resource.Id.cut = global::GraphicsTester.Android.Resource.Id.cut; - global::Microsoft.Maui.Graphics.Resource.Id.date_picker_actions = global::GraphicsTester.Android.Resource.Id.date_picker_actions; - global::Microsoft.Maui.Graphics.Resource.Id.decelerate = global::GraphicsTester.Android.Resource.Id.decelerate; - global::Microsoft.Maui.Graphics.Resource.Id.decelerateAndComplete = global::GraphicsTester.Android.Resource.Id.decelerateAndComplete; - global::Microsoft.Maui.Graphics.Resource.Id.decor_content_parent = global::GraphicsTester.Android.Resource.Id.decor_content_parent; - global::Microsoft.Maui.Graphics.Resource.Id.default_activity_button = global::GraphicsTester.Android.Resource.Id.default_activity_button; - global::Microsoft.Maui.Graphics.Resource.Id.deltaRelative = global::GraphicsTester.Android.Resource.Id.deltaRelative; - global::Microsoft.Maui.Graphics.Resource.Id.dependency_ordering = global::GraphicsTester.Android.Resource.Id.dependency_ordering; - global::Microsoft.Maui.Graphics.Resource.Id.design_bottom_sheet = global::GraphicsTester.Android.Resource.Id.design_bottom_sheet; - global::Microsoft.Maui.Graphics.Resource.Id.design_menu_item_action_area = global::GraphicsTester.Android.Resource.Id.design_menu_item_action_area; - global::Microsoft.Maui.Graphics.Resource.Id.design_menu_item_action_area_stub = global::GraphicsTester.Android.Resource.Id.design_menu_item_action_area_stub; - global::Microsoft.Maui.Graphics.Resource.Id.design_menu_item_text = global::GraphicsTester.Android.Resource.Id.design_menu_item_text; - global::Microsoft.Maui.Graphics.Resource.Id.design_navigation_view = global::GraphicsTester.Android.Resource.Id.design_navigation_view; - global::Microsoft.Maui.Graphics.Resource.Id.dialog_button = global::GraphicsTester.Android.Resource.Id.dialog_button; - global::Microsoft.Maui.Graphics.Resource.Id.dimensions = global::GraphicsTester.Android.Resource.Id.dimensions; - global::Microsoft.Maui.Graphics.Resource.Id.direct = global::GraphicsTester.Android.Resource.Id.direct; - global::Microsoft.Maui.Graphics.Resource.Id.disableHome = global::GraphicsTester.Android.Resource.Id.disableHome; - global::Microsoft.Maui.Graphics.Resource.Id.disablePostScroll = global::GraphicsTester.Android.Resource.Id.disablePostScroll; - global::Microsoft.Maui.Graphics.Resource.Id.disableScroll = global::GraphicsTester.Android.Resource.Id.disableScroll; - global::Microsoft.Maui.Graphics.Resource.Id.disjoint = global::GraphicsTester.Android.Resource.Id.disjoint; - global::Microsoft.Maui.Graphics.Resource.Id.dragDown = global::GraphicsTester.Android.Resource.Id.dragDown; - global::Microsoft.Maui.Graphics.Resource.Id.dragEnd = global::GraphicsTester.Android.Resource.Id.dragEnd; - global::Microsoft.Maui.Graphics.Resource.Id.dragLeft = global::GraphicsTester.Android.Resource.Id.dragLeft; - global::Microsoft.Maui.Graphics.Resource.Id.dragRight = global::GraphicsTester.Android.Resource.Id.dragRight; - global::Microsoft.Maui.Graphics.Resource.Id.dragStart = global::GraphicsTester.Android.Resource.Id.dragStart; - global::Microsoft.Maui.Graphics.Resource.Id.dragUp = global::GraphicsTester.Android.Resource.Id.dragUp; - global::Microsoft.Maui.Graphics.Resource.Id.dropdown_menu = global::GraphicsTester.Android.Resource.Id.dropdown_menu; - global::Microsoft.Maui.Graphics.Resource.Id.easeIn = global::GraphicsTester.Android.Resource.Id.easeIn; - global::Microsoft.Maui.Graphics.Resource.Id.easeInOut = global::GraphicsTester.Android.Resource.Id.easeInOut; - global::Microsoft.Maui.Graphics.Resource.Id.easeOut = global::GraphicsTester.Android.Resource.Id.easeOut; - global::Microsoft.Maui.Graphics.Resource.Id.edit_query = global::GraphicsTester.Android.Resource.Id.edit_query; - global::Microsoft.Maui.Graphics.Resource.Id.elastic = global::GraphicsTester.Android.Resource.Id.elastic; - global::Microsoft.Maui.Graphics.Resource.Id.end = global::GraphicsTester.Android.Resource.Id.end; - global::Microsoft.Maui.Graphics.Resource.Id.endToStart = global::GraphicsTester.Android.Resource.Id.endToStart; - global::Microsoft.Maui.Graphics.Resource.Id.end_padder = global::GraphicsTester.Android.Resource.Id.end_padder; - global::Microsoft.Maui.Graphics.Resource.Id.enterAlways = global::GraphicsTester.Android.Resource.Id.enterAlways; - global::Microsoft.Maui.Graphics.Resource.Id.enterAlwaysCollapsed = global::GraphicsTester.Android.Resource.Id.enterAlwaysCollapsed; - global::Microsoft.Maui.Graphics.Resource.Id.exitUntilCollapsed = global::GraphicsTester.Android.Resource.Id.exitUntilCollapsed; - global::Microsoft.Maui.Graphics.Resource.Id.expanded_menu = global::GraphicsTester.Android.Resource.Id.expanded_menu; - global::Microsoft.Maui.Graphics.Resource.Id.expand_activities_button = global::GraphicsTester.Android.Resource.Id.expand_activities_button; - global::Microsoft.Maui.Graphics.Resource.Id.fade = global::GraphicsTester.Android.Resource.Id.fade; - global::Microsoft.Maui.Graphics.Resource.Id.fill = global::GraphicsTester.Android.Resource.Id.fill; - global::Microsoft.Maui.Graphics.Resource.Id.filled = global::GraphicsTester.Android.Resource.Id.filled; - global::Microsoft.Maui.Graphics.Resource.Id.fill_horizontal = global::GraphicsTester.Android.Resource.Id.fill_horizontal; - global::Microsoft.Maui.Graphics.Resource.Id.fill_vertical = global::GraphicsTester.Android.Resource.Id.fill_vertical; - global::Microsoft.Maui.Graphics.Resource.Id.fitToContents = global::GraphicsTester.Android.Resource.Id.fitToContents; - global::Microsoft.Maui.Graphics.Resource.Id.@fixed = global::GraphicsTester.Android.Resource.Id.@fixed; - global::Microsoft.Maui.Graphics.Resource.Id.flip = global::GraphicsTester.Android.Resource.Id.flip; - global::Microsoft.Maui.Graphics.Resource.Id.floating = global::GraphicsTester.Android.Resource.Id.floating; - global::Microsoft.Maui.Graphics.Resource.Id.forever = global::GraphicsTester.Android.Resource.Id.forever; - global::Microsoft.Maui.Graphics.Resource.Id.fragment_container_view_tag = global::GraphicsTester.Android.Resource.Id.fragment_container_view_tag; - global::Microsoft.Maui.Graphics.Resource.Id.FUNCTION = global::GraphicsTester.Android.Resource.Id.FUNCTION; - global::Microsoft.Maui.Graphics.Resource.Id.ghost_view = global::GraphicsTester.Android.Resource.Id.ghost_view; - global::Microsoft.Maui.Graphics.Resource.Id.ghost_view_holder = global::GraphicsTester.Android.Resource.Id.ghost_view_holder; - global::Microsoft.Maui.Graphics.Resource.Id.gone = global::GraphicsTester.Android.Resource.Id.gone; - global::Microsoft.Maui.Graphics.Resource.Id.graph = global::GraphicsTester.Android.Resource.Id.graph; - global::Microsoft.Maui.Graphics.Resource.Id.graph_wrap = global::GraphicsTester.Android.Resource.Id.graph_wrap; - global::Microsoft.Maui.Graphics.Resource.Id.grouping = global::GraphicsTester.Android.Resource.Id.grouping; - global::Microsoft.Maui.Graphics.Resource.Id.groups = global::GraphicsTester.Android.Resource.Id.groups; - global::Microsoft.Maui.Graphics.Resource.Id.group_divider = global::GraphicsTester.Android.Resource.Id.group_divider; - global::Microsoft.Maui.Graphics.Resource.Id.guideline = global::GraphicsTester.Android.Resource.Id.guideline; - global::Microsoft.Maui.Graphics.Resource.Id.header_title = global::GraphicsTester.Android.Resource.Id.header_title; - global::Microsoft.Maui.Graphics.Resource.Id.hideable = global::GraphicsTester.Android.Resource.Id.hideable; - global::Microsoft.Maui.Graphics.Resource.Id.home = global::GraphicsTester.Android.Resource.Id.home; - global::Microsoft.Maui.Graphics.Resource.Id.homeAsUp = global::GraphicsTester.Android.Resource.Id.homeAsUp; - global::Microsoft.Maui.Graphics.Resource.Id.honorRequest = global::GraphicsTester.Android.Resource.Id.honorRequest; - global::Microsoft.Maui.Graphics.Resource.Id.icon = global::GraphicsTester.Android.Resource.Id.icon; - global::Microsoft.Maui.Graphics.Resource.Id.icon_group = global::GraphicsTester.Android.Resource.Id.icon_group; - global::Microsoft.Maui.Graphics.Resource.Id.ifRoom = global::GraphicsTester.Android.Resource.Id.ifRoom; - global::Microsoft.Maui.Graphics.Resource.Id.ignore = global::GraphicsTester.Android.Resource.Id.ignore; - global::Microsoft.Maui.Graphics.Resource.Id.ignoreRequest = global::GraphicsTester.Android.Resource.Id.ignoreRequest; - global::Microsoft.Maui.Graphics.Resource.Id.image = global::GraphicsTester.Android.Resource.Id.image; - global::Microsoft.Maui.Graphics.Resource.Id.info = global::GraphicsTester.Android.Resource.Id.info; - global::Microsoft.Maui.Graphics.Resource.Id.invisible = global::GraphicsTester.Android.Resource.Id.invisible; - global::Microsoft.Maui.Graphics.Resource.Id.inward = global::GraphicsTester.Android.Resource.Id.inward; - global::Microsoft.Maui.Graphics.Resource.Id.italic = global::GraphicsTester.Android.Resource.Id.italic; - global::Microsoft.Maui.Graphics.Resource.Id.item_touch_helper_previous_elevation = global::GraphicsTester.Android.Resource.Id.item_touch_helper_previous_elevation; - global::Microsoft.Maui.Graphics.Resource.Id.jumpToEnd = global::GraphicsTester.Android.Resource.Id.jumpToEnd; - global::Microsoft.Maui.Graphics.Resource.Id.jumpToStart = global::GraphicsTester.Android.Resource.Id.jumpToStart; - global::Microsoft.Maui.Graphics.Resource.Id.labeled = global::GraphicsTester.Android.Resource.Id.labeled; - global::Microsoft.Maui.Graphics.Resource.Id.labelGroup = global::GraphicsTester.Android.Resource.Id.labelGroup; - global::Microsoft.Maui.Graphics.Resource.Id.largeLabel = global::GraphicsTester.Android.Resource.Id.largeLabel; - global::Microsoft.Maui.Graphics.Resource.Id.layout = global::GraphicsTester.Android.Resource.Id.layout; - global::Microsoft.Maui.Graphics.Resource.Id.left = global::GraphicsTester.Android.Resource.Id.left; - global::Microsoft.Maui.Graphics.Resource.Id.leftToRight = global::GraphicsTester.Android.Resource.Id.leftToRight; - global::Microsoft.Maui.Graphics.Resource.Id.line1 = global::GraphicsTester.Android.Resource.Id.line1; - global::Microsoft.Maui.Graphics.Resource.Id.line3 = global::GraphicsTester.Android.Resource.Id.line3; - global::Microsoft.Maui.Graphics.Resource.Id.linear = global::GraphicsTester.Android.Resource.Id.linear; - global::Microsoft.Maui.Graphics.Resource.Id.listMode = global::GraphicsTester.Android.Resource.Id.listMode; - global::Microsoft.Maui.Graphics.Resource.Id.list_item = global::GraphicsTester.Android.Resource.Id.list_item; - global::Microsoft.Maui.Graphics.Resource.Id.masked = global::GraphicsTester.Android.Resource.Id.masked; - global::Microsoft.Maui.Graphics.Resource.Id.material_clock_display = global::GraphicsTester.Android.Resource.Id.material_clock_display; - global::Microsoft.Maui.Graphics.Resource.Id.material_clock_face = global::GraphicsTester.Android.Resource.Id.material_clock_face; - global::Microsoft.Maui.Graphics.Resource.Id.material_clock_hand = global::GraphicsTester.Android.Resource.Id.material_clock_hand; - global::Microsoft.Maui.Graphics.Resource.Id.material_clock_period_am_button = global::GraphicsTester.Android.Resource.Id.material_clock_period_am_button; - global::Microsoft.Maui.Graphics.Resource.Id.material_clock_period_pm_button = global::GraphicsTester.Android.Resource.Id.material_clock_period_pm_button; - global::Microsoft.Maui.Graphics.Resource.Id.material_clock_period_toggle = global::GraphicsTester.Android.Resource.Id.material_clock_period_toggle; - global::Microsoft.Maui.Graphics.Resource.Id.material_hour_text_input = global::GraphicsTester.Android.Resource.Id.material_hour_text_input; - global::Microsoft.Maui.Graphics.Resource.Id.material_hour_tv = global::GraphicsTester.Android.Resource.Id.material_hour_tv; - global::Microsoft.Maui.Graphics.Resource.Id.material_label = global::GraphicsTester.Android.Resource.Id.material_label; - global::Microsoft.Maui.Graphics.Resource.Id.material_minute_text_input = global::GraphicsTester.Android.Resource.Id.material_minute_text_input; - global::Microsoft.Maui.Graphics.Resource.Id.material_minute_tv = global::GraphicsTester.Android.Resource.Id.material_minute_tv; - global::Microsoft.Maui.Graphics.Resource.Id.material_textinput_timepicker = global::GraphicsTester.Android.Resource.Id.material_textinput_timepicker; - global::Microsoft.Maui.Graphics.Resource.Id.material_timepicker_cancel_button = global::GraphicsTester.Android.Resource.Id.material_timepicker_cancel_button; - global::Microsoft.Maui.Graphics.Resource.Id.material_timepicker_container = global::GraphicsTester.Android.Resource.Id.material_timepicker_container; - global::Microsoft.Maui.Graphics.Resource.Id.material_timepicker_edit_text = global::GraphicsTester.Android.Resource.Id.material_timepicker_edit_text; - global::Microsoft.Maui.Graphics.Resource.Id.material_timepicker_mode_button = global::GraphicsTester.Android.Resource.Id.material_timepicker_mode_button; - global::Microsoft.Maui.Graphics.Resource.Id.material_timepicker_ok_button = global::GraphicsTester.Android.Resource.Id.material_timepicker_ok_button; - global::Microsoft.Maui.Graphics.Resource.Id.material_timepicker_view = global::GraphicsTester.Android.Resource.Id.material_timepicker_view; - global::Microsoft.Maui.Graphics.Resource.Id.material_value_index = global::GraphicsTester.Android.Resource.Id.material_value_index; - global::Microsoft.Maui.Graphics.Resource.Id.media_actions = global::GraphicsTester.Android.Resource.Id.media_actions; - global::Microsoft.Maui.Graphics.Resource.Id.media_controller_compat_view_tag = global::GraphicsTester.Android.Resource.Id.media_controller_compat_view_tag; - global::Microsoft.Maui.Graphics.Resource.Id.message = global::GraphicsTester.Android.Resource.Id.message; - global::Microsoft.Maui.Graphics.Resource.Id.META = global::GraphicsTester.Android.Resource.Id.META; - global::Microsoft.Maui.Graphics.Resource.Id.middle = global::GraphicsTester.Android.Resource.Id.middle; - global::Microsoft.Maui.Graphics.Resource.Id.mini = global::GraphicsTester.Android.Resource.Id.mini; - global::Microsoft.Maui.Graphics.Resource.Id.month_grid = global::GraphicsTester.Android.Resource.Id.month_grid; - global::Microsoft.Maui.Graphics.Resource.Id.month_navigation_bar = global::GraphicsTester.Android.Resource.Id.month_navigation_bar; - global::Microsoft.Maui.Graphics.Resource.Id.month_navigation_fragment_toggle = global::GraphicsTester.Android.Resource.Id.month_navigation_fragment_toggle; - global::Microsoft.Maui.Graphics.Resource.Id.month_navigation_next = global::GraphicsTester.Android.Resource.Id.month_navigation_next; - global::Microsoft.Maui.Graphics.Resource.Id.month_navigation_previous = global::GraphicsTester.Android.Resource.Id.month_navigation_previous; - global::Microsoft.Maui.Graphics.Resource.Id.month_title = global::GraphicsTester.Android.Resource.Id.month_title; - global::Microsoft.Maui.Graphics.Resource.Id.motion_base = global::GraphicsTester.Android.Resource.Id.motion_base; - global::Microsoft.Maui.Graphics.Resource.Id.mtrl_anchor_parent = global::GraphicsTester.Android.Resource.Id.mtrl_anchor_parent; - global::Microsoft.Maui.Graphics.Resource.Id.mtrl_calendar_days_of_week = global::GraphicsTester.Android.Resource.Id.mtrl_calendar_days_of_week; - global::Microsoft.Maui.Graphics.Resource.Id.mtrl_calendar_day_selector_frame = global::GraphicsTester.Android.Resource.Id.mtrl_calendar_day_selector_frame; - global::Microsoft.Maui.Graphics.Resource.Id.mtrl_calendar_frame = global::GraphicsTester.Android.Resource.Id.mtrl_calendar_frame; - global::Microsoft.Maui.Graphics.Resource.Id.mtrl_calendar_main_pane = global::GraphicsTester.Android.Resource.Id.mtrl_calendar_main_pane; - global::Microsoft.Maui.Graphics.Resource.Id.mtrl_calendar_months = global::GraphicsTester.Android.Resource.Id.mtrl_calendar_months; - global::Microsoft.Maui.Graphics.Resource.Id.mtrl_calendar_selection_frame = global::GraphicsTester.Android.Resource.Id.mtrl_calendar_selection_frame; - global::Microsoft.Maui.Graphics.Resource.Id.mtrl_calendar_text_input_frame = global::GraphicsTester.Android.Resource.Id.mtrl_calendar_text_input_frame; - global::Microsoft.Maui.Graphics.Resource.Id.mtrl_calendar_year_selector_frame = global::GraphicsTester.Android.Resource.Id.mtrl_calendar_year_selector_frame; - global::Microsoft.Maui.Graphics.Resource.Id.mtrl_card_checked_layer_id = global::GraphicsTester.Android.Resource.Id.mtrl_card_checked_layer_id; - global::Microsoft.Maui.Graphics.Resource.Id.mtrl_child_content_container = global::GraphicsTester.Android.Resource.Id.mtrl_child_content_container; - global::Microsoft.Maui.Graphics.Resource.Id.mtrl_internal_children_alpha_tag = global::GraphicsTester.Android.Resource.Id.mtrl_internal_children_alpha_tag; - global::Microsoft.Maui.Graphics.Resource.Id.mtrl_motion_snapshot_view = global::GraphicsTester.Android.Resource.Id.mtrl_motion_snapshot_view; - global::Microsoft.Maui.Graphics.Resource.Id.mtrl_picker_fullscreen = global::GraphicsTester.Android.Resource.Id.mtrl_picker_fullscreen; - global::Microsoft.Maui.Graphics.Resource.Id.mtrl_picker_header = global::GraphicsTester.Android.Resource.Id.mtrl_picker_header; - global::Microsoft.Maui.Graphics.Resource.Id.mtrl_picker_header_selection_text = global::GraphicsTester.Android.Resource.Id.mtrl_picker_header_selection_text; - global::Microsoft.Maui.Graphics.Resource.Id.mtrl_picker_header_title_and_selection = global::GraphicsTester.Android.Resource.Id.mtrl_picker_header_title_and_selection; - global::Microsoft.Maui.Graphics.Resource.Id.mtrl_picker_header_toggle = global::GraphicsTester.Android.Resource.Id.mtrl_picker_header_toggle; - global::Microsoft.Maui.Graphics.Resource.Id.mtrl_picker_text_input_date = global::GraphicsTester.Android.Resource.Id.mtrl_picker_text_input_date; - global::Microsoft.Maui.Graphics.Resource.Id.mtrl_picker_text_input_range_end = global::GraphicsTester.Android.Resource.Id.mtrl_picker_text_input_range_end; - global::Microsoft.Maui.Graphics.Resource.Id.mtrl_picker_text_input_range_start = global::GraphicsTester.Android.Resource.Id.mtrl_picker_text_input_range_start; - global::Microsoft.Maui.Graphics.Resource.Id.mtrl_picker_title_text = global::GraphicsTester.Android.Resource.Id.mtrl_picker_title_text; - global::Microsoft.Maui.Graphics.Resource.Id.mtrl_view_tag_bottom_padding = global::GraphicsTester.Android.Resource.Id.mtrl_view_tag_bottom_padding; - global::Microsoft.Maui.Graphics.Resource.Id.multiply = global::GraphicsTester.Android.Resource.Id.multiply; - global::Microsoft.Maui.Graphics.Resource.Id.navigation_header_container = global::GraphicsTester.Android.Resource.Id.navigation_header_container; - global::Microsoft.Maui.Graphics.Resource.Id.never = global::GraphicsTester.Android.Resource.Id.never; - global::Microsoft.Maui.Graphics.Resource.Id.none = global::GraphicsTester.Android.Resource.Id.none; - global::Microsoft.Maui.Graphics.Resource.Id.normal = global::GraphicsTester.Android.Resource.Id.normal; - global::Microsoft.Maui.Graphics.Resource.Id.noScroll = global::GraphicsTester.Android.Resource.Id.noScroll; - global::Microsoft.Maui.Graphics.Resource.Id.notification_background = global::GraphicsTester.Android.Resource.Id.notification_background; - global::Microsoft.Maui.Graphics.Resource.Id.notification_main_column = global::GraphicsTester.Android.Resource.Id.notification_main_column; - global::Microsoft.Maui.Graphics.Resource.Id.notification_main_column_container = global::GraphicsTester.Android.Resource.Id.notification_main_column_container; - global::Microsoft.Maui.Graphics.Resource.Id.NO_DEBUG = global::GraphicsTester.Android.Resource.Id.NO_DEBUG; - global::Microsoft.Maui.Graphics.Resource.Id.off = global::GraphicsTester.Android.Resource.Id.off; - global::Microsoft.Maui.Graphics.Resource.Id.on = global::GraphicsTester.Android.Resource.Id.on; - global::Microsoft.Maui.Graphics.Resource.Id.outline = global::GraphicsTester.Android.Resource.Id.outline; - global::Microsoft.Maui.Graphics.Resource.Id.outward = global::GraphicsTester.Android.Resource.Id.outward; - global::Microsoft.Maui.Graphics.Resource.Id.packed = global::GraphicsTester.Android.Resource.Id.packed; - global::Microsoft.Maui.Graphics.Resource.Id.parallax = global::GraphicsTester.Android.Resource.Id.parallax; - global::Microsoft.Maui.Graphics.Resource.Id.parent = global::GraphicsTester.Android.Resource.Id.parent; - global::Microsoft.Maui.Graphics.Resource.Id.parentPanel = global::GraphicsTester.Android.Resource.Id.parentPanel; - global::Microsoft.Maui.Graphics.Resource.Id.parentRelative = global::GraphicsTester.Android.Resource.Id.parentRelative; - global::Microsoft.Maui.Graphics.Resource.Id.parent_matrix = global::GraphicsTester.Android.Resource.Id.parent_matrix; - global::Microsoft.Maui.Graphics.Resource.Id.password_toggle = global::GraphicsTester.Android.Resource.Id.password_toggle; - global::Microsoft.Maui.Graphics.Resource.Id.path = global::GraphicsTester.Android.Resource.Id.path; - global::Microsoft.Maui.Graphics.Resource.Id.pathRelative = global::GraphicsTester.Android.Resource.Id.pathRelative; - global::Microsoft.Maui.Graphics.Resource.Id.peekHeight = global::GraphicsTester.Android.Resource.Id.peekHeight; - global::Microsoft.Maui.Graphics.Resource.Id.percent = global::GraphicsTester.Android.Resource.Id.percent; - global::Microsoft.Maui.Graphics.Resource.Id.pin = global::GraphicsTester.Android.Resource.Id.pin; - global::Microsoft.Maui.Graphics.Resource.Id.position = global::GraphicsTester.Android.Resource.Id.position; - global::Microsoft.Maui.Graphics.Resource.Id.postLayout = global::GraphicsTester.Android.Resource.Id.postLayout; - global::Microsoft.Maui.Graphics.Resource.Id.progress_circular = global::GraphicsTester.Android.Resource.Id.progress_circular; - global::Microsoft.Maui.Graphics.Resource.Id.progress_horizontal = global::GraphicsTester.Android.Resource.Id.progress_horizontal; - global::Microsoft.Maui.Graphics.Resource.Id.radio = global::GraphicsTester.Android.Resource.Id.radio; - global::Microsoft.Maui.Graphics.Resource.Id.ratio = global::GraphicsTester.Android.Resource.Id.ratio; - global::Microsoft.Maui.Graphics.Resource.Id.rectangles = global::GraphicsTester.Android.Resource.Id.rectangles; - global::Microsoft.Maui.Graphics.Resource.Id.reverseSawtooth = global::GraphicsTester.Android.Resource.Id.reverseSawtooth; - global::Microsoft.Maui.Graphics.Resource.Id.right = global::GraphicsTester.Android.Resource.Id.right; - global::Microsoft.Maui.Graphics.Resource.Id.rightToLeft = global::GraphicsTester.Android.Resource.Id.rightToLeft; - global::Microsoft.Maui.Graphics.Resource.Id.right_icon = global::GraphicsTester.Android.Resource.Id.right_icon; - global::Microsoft.Maui.Graphics.Resource.Id.right_side = global::GraphicsTester.Android.Resource.Id.right_side; - global::Microsoft.Maui.Graphics.Resource.Id.rounded = global::GraphicsTester.Android.Resource.Id.rounded; - global::Microsoft.Maui.Graphics.Resource.Id.row_index_key = global::GraphicsTester.Android.Resource.Id.row_index_key; - global::Microsoft.Maui.Graphics.Resource.Id.save_non_transition_alpha = global::GraphicsTester.Android.Resource.Id.save_non_transition_alpha; - global::Microsoft.Maui.Graphics.Resource.Id.save_overlay_view = global::GraphicsTester.Android.Resource.Id.save_overlay_view; - global::Microsoft.Maui.Graphics.Resource.Id.sawtooth = global::GraphicsTester.Android.Resource.Id.sawtooth; - global::Microsoft.Maui.Graphics.Resource.Id.scale = global::GraphicsTester.Android.Resource.Id.scale; - global::Microsoft.Maui.Graphics.Resource.Id.screen = global::GraphicsTester.Android.Resource.Id.screen; - global::Microsoft.Maui.Graphics.Resource.Id.scroll = global::GraphicsTester.Android.Resource.Id.scroll; - global::Microsoft.Maui.Graphics.Resource.Id.scrollable = global::GraphicsTester.Android.Resource.Id.scrollable; - global::Microsoft.Maui.Graphics.Resource.Id.scrollIndicatorDown = global::GraphicsTester.Android.Resource.Id.scrollIndicatorDown; - global::Microsoft.Maui.Graphics.Resource.Id.scrollIndicatorUp = global::GraphicsTester.Android.Resource.Id.scrollIndicatorUp; - global::Microsoft.Maui.Graphics.Resource.Id.scrollView = global::GraphicsTester.Android.Resource.Id.scrollView; - global::Microsoft.Maui.Graphics.Resource.Id.search_badge = global::GraphicsTester.Android.Resource.Id.search_badge; - global::Microsoft.Maui.Graphics.Resource.Id.search_bar = global::GraphicsTester.Android.Resource.Id.search_bar; - global::Microsoft.Maui.Graphics.Resource.Id.search_button = global::GraphicsTester.Android.Resource.Id.search_button; - global::Microsoft.Maui.Graphics.Resource.Id.search_close_btn = global::GraphicsTester.Android.Resource.Id.search_close_btn; - global::Microsoft.Maui.Graphics.Resource.Id.search_edit_frame = global::GraphicsTester.Android.Resource.Id.search_edit_frame; - global::Microsoft.Maui.Graphics.Resource.Id.search_go_btn = global::GraphicsTester.Android.Resource.Id.search_go_btn; - global::Microsoft.Maui.Graphics.Resource.Id.search_mag_icon = global::GraphicsTester.Android.Resource.Id.search_mag_icon; - global::Microsoft.Maui.Graphics.Resource.Id.search_plate = global::GraphicsTester.Android.Resource.Id.search_plate; - global::Microsoft.Maui.Graphics.Resource.Id.search_src_text = global::GraphicsTester.Android.Resource.Id.search_src_text; - global::Microsoft.Maui.Graphics.Resource.Id.search_voice_btn = global::GraphicsTester.Android.Resource.Id.search_voice_btn; - global::Microsoft.Maui.Graphics.Resource.Id.selected = global::GraphicsTester.Android.Resource.Id.selected; - global::Microsoft.Maui.Graphics.Resource.Id.selection_type = global::GraphicsTester.Android.Resource.Id.selection_type; - global::Microsoft.Maui.Graphics.Resource.Id.select_dialog_listview = global::GraphicsTester.Android.Resource.Id.select_dialog_listview; - global::Microsoft.Maui.Graphics.Resource.Id.SHIFT = global::GraphicsTester.Android.Resource.Id.SHIFT; - global::Microsoft.Maui.Graphics.Resource.Id.shortcut = global::GraphicsTester.Android.Resource.Id.shortcut; - global::Microsoft.Maui.Graphics.Resource.Id.showCustom = global::GraphicsTester.Android.Resource.Id.showCustom; - global::Microsoft.Maui.Graphics.Resource.Id.showHome = global::GraphicsTester.Android.Resource.Id.showHome; - global::Microsoft.Maui.Graphics.Resource.Id.showTitle = global::GraphicsTester.Android.Resource.Id.showTitle; - global::Microsoft.Maui.Graphics.Resource.Id.SHOW_ALL = global::GraphicsTester.Android.Resource.Id.SHOW_ALL; - global::Microsoft.Maui.Graphics.Resource.Id.SHOW_PATH = global::GraphicsTester.Android.Resource.Id.SHOW_PATH; - global::Microsoft.Maui.Graphics.Resource.Id.SHOW_PROGRESS = global::GraphicsTester.Android.Resource.Id.SHOW_PROGRESS; - global::Microsoft.Maui.Graphics.Resource.Id.sin = global::GraphicsTester.Android.Resource.Id.sin; - global::Microsoft.Maui.Graphics.Resource.Id.skipCollapsed = global::GraphicsTester.Android.Resource.Id.skipCollapsed; - global::Microsoft.Maui.Graphics.Resource.Id.slide = global::GraphicsTester.Android.Resource.Id.slide; - global::Microsoft.Maui.Graphics.Resource.Id.smallLabel = global::GraphicsTester.Android.Resource.Id.smallLabel; - global::Microsoft.Maui.Graphics.Resource.Id.snackbar_action = global::GraphicsTester.Android.Resource.Id.snackbar_action; - global::Microsoft.Maui.Graphics.Resource.Id.snackbar_text = global::GraphicsTester.Android.Resource.Id.snackbar_text; - global::Microsoft.Maui.Graphics.Resource.Id.snap = global::GraphicsTester.Android.Resource.Id.snap; - global::Microsoft.Maui.Graphics.Resource.Id.snapMargins = global::GraphicsTester.Android.Resource.Id.snapMargins; - global::Microsoft.Maui.Graphics.Resource.Id.spacer = global::GraphicsTester.Android.Resource.Id.spacer; - global::Microsoft.Maui.Graphics.Resource.Id.special_effects_controller_view_tag = global::GraphicsTester.Android.Resource.Id.special_effects_controller_view_tag; - global::Microsoft.Maui.Graphics.Resource.Id.spline = global::GraphicsTester.Android.Resource.Id.spline; - global::Microsoft.Maui.Graphics.Resource.Id.split_action_bar = global::GraphicsTester.Android.Resource.Id.split_action_bar; - global::Microsoft.Maui.Graphics.Resource.Id.spread = global::GraphicsTester.Android.Resource.Id.spread; - global::Microsoft.Maui.Graphics.Resource.Id.spread_inside = global::GraphicsTester.Android.Resource.Id.spread_inside; - global::Microsoft.Maui.Graphics.Resource.Id.square = global::GraphicsTester.Android.Resource.Id.square; - global::Microsoft.Maui.Graphics.Resource.Id.src_atop = global::GraphicsTester.Android.Resource.Id.src_atop; - global::Microsoft.Maui.Graphics.Resource.Id.src_in = global::GraphicsTester.Android.Resource.Id.src_in; - global::Microsoft.Maui.Graphics.Resource.Id.src_over = global::GraphicsTester.Android.Resource.Id.src_over; - global::Microsoft.Maui.Graphics.Resource.Id.standard = global::GraphicsTester.Android.Resource.Id.standard; - global::Microsoft.Maui.Graphics.Resource.Id.start = global::GraphicsTester.Android.Resource.Id.start; - global::Microsoft.Maui.Graphics.Resource.Id.startHorizontal = global::GraphicsTester.Android.Resource.Id.startHorizontal; - global::Microsoft.Maui.Graphics.Resource.Id.startToEnd = global::GraphicsTester.Android.Resource.Id.startToEnd; - global::Microsoft.Maui.Graphics.Resource.Id.startVertical = global::GraphicsTester.Android.Resource.Id.startVertical; - global::Microsoft.Maui.Graphics.Resource.Id.staticLayout = global::GraphicsTester.Android.Resource.Id.staticLayout; - global::Microsoft.Maui.Graphics.Resource.Id.staticPostLayout = global::GraphicsTester.Android.Resource.Id.staticPostLayout; - global::Microsoft.Maui.Graphics.Resource.Id.status_bar_latest_event_content = global::GraphicsTester.Android.Resource.Id.status_bar_latest_event_content; - global::Microsoft.Maui.Graphics.Resource.Id.stop = global::GraphicsTester.Android.Resource.Id.stop; - global::Microsoft.Maui.Graphics.Resource.Id.stretch = global::GraphicsTester.Android.Resource.Id.stretch; - global::Microsoft.Maui.Graphics.Resource.Id.submenuarrow = global::GraphicsTester.Android.Resource.Id.submenuarrow; - global::Microsoft.Maui.Graphics.Resource.Id.submit_area = global::GraphicsTester.Android.Resource.Id.submit_area; - global::Microsoft.Maui.Graphics.Resource.Id.SYM = global::GraphicsTester.Android.Resource.Id.SYM; - global::Microsoft.Maui.Graphics.Resource.Id.tabMode = global::GraphicsTester.Android.Resource.Id.tabMode; - global::Microsoft.Maui.Graphics.Resource.Id.tag_accessibility_actions = global::GraphicsTester.Android.Resource.Id.tag_accessibility_actions; - global::Microsoft.Maui.Graphics.Resource.Id.tag_accessibility_clickable_spans = global::GraphicsTester.Android.Resource.Id.tag_accessibility_clickable_spans; - global::Microsoft.Maui.Graphics.Resource.Id.tag_accessibility_heading = global::GraphicsTester.Android.Resource.Id.tag_accessibility_heading; - global::Microsoft.Maui.Graphics.Resource.Id.tag_accessibility_pane_title = global::GraphicsTester.Android.Resource.Id.tag_accessibility_pane_title; - global::Microsoft.Maui.Graphics.Resource.Id.tag_screen_reader_focusable = global::GraphicsTester.Android.Resource.Id.tag_screen_reader_focusable; - global::Microsoft.Maui.Graphics.Resource.Id.tag_transition_group = global::GraphicsTester.Android.Resource.Id.tag_transition_group; - global::Microsoft.Maui.Graphics.Resource.Id.tag_unhandled_key_event_manager = global::GraphicsTester.Android.Resource.Id.tag_unhandled_key_event_manager; - global::Microsoft.Maui.Graphics.Resource.Id.tag_unhandled_key_listeners = global::GraphicsTester.Android.Resource.Id.tag_unhandled_key_listeners; - global::Microsoft.Maui.Graphics.Resource.Id.test_checkbox_android_button_tint = global::GraphicsTester.Android.Resource.Id.test_checkbox_android_button_tint; - global::Microsoft.Maui.Graphics.Resource.Id.test_checkbox_app_button_tint = global::GraphicsTester.Android.Resource.Id.test_checkbox_app_button_tint; - global::Microsoft.Maui.Graphics.Resource.Id.test_radiobutton_android_button_tint = global::GraphicsTester.Android.Resource.Id.test_radiobutton_android_button_tint; - global::Microsoft.Maui.Graphics.Resource.Id.test_radiobutton_app_button_tint = global::GraphicsTester.Android.Resource.Id.test_radiobutton_app_button_tint; - global::Microsoft.Maui.Graphics.Resource.Id.text = global::GraphicsTester.Android.Resource.Id.text; - global::Microsoft.Maui.Graphics.Resource.Id.text2 = global::GraphicsTester.Android.Resource.Id.text2; - global::Microsoft.Maui.Graphics.Resource.Id.textEnd = global::GraphicsTester.Android.Resource.Id.textEnd; - global::Microsoft.Maui.Graphics.Resource.Id.textinput_counter = global::GraphicsTester.Android.Resource.Id.textinput_counter; - global::Microsoft.Maui.Graphics.Resource.Id.textinput_error = global::GraphicsTester.Android.Resource.Id.textinput_error; - global::Microsoft.Maui.Graphics.Resource.Id.textinput_helper_text = global::GraphicsTester.Android.Resource.Id.textinput_helper_text; - global::Microsoft.Maui.Graphics.Resource.Id.textinput_placeholder = global::GraphicsTester.Android.Resource.Id.textinput_placeholder; - global::Microsoft.Maui.Graphics.Resource.Id.textinput_prefix_text = global::GraphicsTester.Android.Resource.Id.textinput_prefix_text; - global::Microsoft.Maui.Graphics.Resource.Id.textinput_suffix_text = global::GraphicsTester.Android.Resource.Id.textinput_suffix_text; - global::Microsoft.Maui.Graphics.Resource.Id.textSpacerNoButtons = global::GraphicsTester.Android.Resource.Id.textSpacerNoButtons; - global::Microsoft.Maui.Graphics.Resource.Id.textSpacerNoTitle = global::GraphicsTester.Android.Resource.Id.textSpacerNoTitle; - global::Microsoft.Maui.Graphics.Resource.Id.textStart = global::GraphicsTester.Android.Resource.Id.textStart; - global::Microsoft.Maui.Graphics.Resource.Id.textTop = global::GraphicsTester.Android.Resource.Id.textTop; - global::Microsoft.Maui.Graphics.Resource.Id.text_input_end_icon = global::GraphicsTester.Android.Resource.Id.text_input_end_icon; - global::Microsoft.Maui.Graphics.Resource.Id.text_input_error_icon = global::GraphicsTester.Android.Resource.Id.text_input_error_icon; - global::Microsoft.Maui.Graphics.Resource.Id.text_input_start_icon = global::GraphicsTester.Android.Resource.Id.text_input_start_icon; - global::Microsoft.Maui.Graphics.Resource.Id.time = global::GraphicsTester.Android.Resource.Id.time; - global::Microsoft.Maui.Graphics.Resource.Id.title = global::GraphicsTester.Android.Resource.Id.title; - global::Microsoft.Maui.Graphics.Resource.Id.titleDividerNoCustom = global::GraphicsTester.Android.Resource.Id.titleDividerNoCustom; - global::Microsoft.Maui.Graphics.Resource.Id.title_template = global::GraphicsTester.Android.Resource.Id.title_template; - global::Microsoft.Maui.Graphics.Resource.Id.toggle = global::GraphicsTester.Android.Resource.Id.toggle; - global::Microsoft.Maui.Graphics.Resource.Id.top = global::GraphicsTester.Android.Resource.Id.top; - global::Microsoft.Maui.Graphics.Resource.Id.topPanel = global::GraphicsTester.Android.Resource.Id.topPanel; - global::Microsoft.Maui.Graphics.Resource.Id.TOP_END = global::GraphicsTester.Android.Resource.Id.TOP_END; - global::Microsoft.Maui.Graphics.Resource.Id.TOP_START = global::GraphicsTester.Android.Resource.Id.TOP_START; - global::Microsoft.Maui.Graphics.Resource.Id.touch_outside = global::GraphicsTester.Android.Resource.Id.touch_outside; - global::Microsoft.Maui.Graphics.Resource.Id.transitionToEnd = global::GraphicsTester.Android.Resource.Id.transitionToEnd; - global::Microsoft.Maui.Graphics.Resource.Id.transitionToStart = global::GraphicsTester.Android.Resource.Id.transitionToStart; - global::Microsoft.Maui.Graphics.Resource.Id.transition_current_scene = global::GraphicsTester.Android.Resource.Id.transition_current_scene; - global::Microsoft.Maui.Graphics.Resource.Id.transition_layout_save = global::GraphicsTester.Android.Resource.Id.transition_layout_save; - global::Microsoft.Maui.Graphics.Resource.Id.transition_position = global::GraphicsTester.Android.Resource.Id.transition_position; - global::Microsoft.Maui.Graphics.Resource.Id.transition_scene_layoutid_cache = global::GraphicsTester.Android.Resource.Id.transition_scene_layoutid_cache; - global::Microsoft.Maui.Graphics.Resource.Id.transition_transform = global::GraphicsTester.Android.Resource.Id.transition_transform; - global::Microsoft.Maui.Graphics.Resource.Id.triangle = global::GraphicsTester.Android.Resource.Id.triangle; - global::Microsoft.Maui.Graphics.Resource.Id.@unchecked = global::GraphicsTester.Android.Resource.Id.@unchecked; - global::Microsoft.Maui.Graphics.Resource.Id.uniform = global::GraphicsTester.Android.Resource.Id.uniform; - global::Microsoft.Maui.Graphics.Resource.Id.unlabeled = global::GraphicsTester.Android.Resource.Id.unlabeled; - global::Microsoft.Maui.Graphics.Resource.Id.up = global::GraphicsTester.Android.Resource.Id.up; - global::Microsoft.Maui.Graphics.Resource.Id.useLogo = global::GraphicsTester.Android.Resource.Id.useLogo; - global::Microsoft.Maui.Graphics.Resource.Id.view_offset_helper = global::GraphicsTester.Android.Resource.Id.view_offset_helper; - global::Microsoft.Maui.Graphics.Resource.Id.view_tree_lifecycle_owner = global::GraphicsTester.Android.Resource.Id.view_tree_lifecycle_owner; - global::Microsoft.Maui.Graphics.Resource.Id.view_tree_saved_state_registry_owner = global::GraphicsTester.Android.Resource.Id.view_tree_saved_state_registry_owner; - global::Microsoft.Maui.Graphics.Resource.Id.view_tree_view_model_store_owner = global::GraphicsTester.Android.Resource.Id.view_tree_view_model_store_owner; - global::Microsoft.Maui.Graphics.Resource.Id.visible = global::GraphicsTester.Android.Resource.Id.visible; - global::Microsoft.Maui.Graphics.Resource.Id.visible_removing_fragment_view_tag = global::GraphicsTester.Android.Resource.Id.visible_removing_fragment_view_tag; - global::Microsoft.Maui.Graphics.Resource.Id.withinBounds = global::GraphicsTester.Android.Resource.Id.withinBounds; - global::Microsoft.Maui.Graphics.Resource.Id.withText = global::GraphicsTester.Android.Resource.Id.withText; - global::Microsoft.Maui.Graphics.Resource.Id.wrap = global::GraphicsTester.Android.Resource.Id.wrap; - global::Microsoft.Maui.Graphics.Resource.Id.wrap_content = global::GraphicsTester.Android.Resource.Id.wrap_content; - global::Microsoft.Maui.Graphics.Resource.Id.zero_corner_chip = global::GraphicsTester.Android.Resource.Id.zero_corner_chip; - global::Microsoft.Maui.Graphics.Resource.Integer.abc_config_activityDefaultDur = global::GraphicsTester.Android.Resource.Integer.abc_config_activityDefaultDur; - global::Microsoft.Maui.Graphics.Resource.Integer.abc_config_activityShortDur = global::GraphicsTester.Android.Resource.Integer.abc_config_activityShortDur; - global::Microsoft.Maui.Graphics.Resource.Integer.app_bar_elevation_anim_duration = global::GraphicsTester.Android.Resource.Integer.app_bar_elevation_anim_duration; - global::Microsoft.Maui.Graphics.Resource.Integer.bottom_sheet_slide_duration = global::GraphicsTester.Android.Resource.Integer.bottom_sheet_slide_duration; - global::Microsoft.Maui.Graphics.Resource.Integer.cancel_button_image_alpha = global::GraphicsTester.Android.Resource.Integer.cancel_button_image_alpha; - global::Microsoft.Maui.Graphics.Resource.Integer.config_tooltipAnimTime = global::GraphicsTester.Android.Resource.Integer.config_tooltipAnimTime; - global::Microsoft.Maui.Graphics.Resource.Integer.design_snackbar_text_max_lines = global::GraphicsTester.Android.Resource.Integer.design_snackbar_text_max_lines; - global::Microsoft.Maui.Graphics.Resource.Integer.design_tab_indicator_anim_duration_ms = global::GraphicsTester.Android.Resource.Integer.design_tab_indicator_anim_duration_ms; - global::Microsoft.Maui.Graphics.Resource.Integer.hide_password_duration = global::GraphicsTester.Android.Resource.Integer.hide_password_duration; - global::Microsoft.Maui.Graphics.Resource.Integer.mtrl_badge_max_character_count = global::GraphicsTester.Android.Resource.Integer.mtrl_badge_max_character_count; - global::Microsoft.Maui.Graphics.Resource.Integer.mtrl_btn_anim_delay_ms = global::GraphicsTester.Android.Resource.Integer.mtrl_btn_anim_delay_ms; - global::Microsoft.Maui.Graphics.Resource.Integer.mtrl_btn_anim_duration_ms = global::GraphicsTester.Android.Resource.Integer.mtrl_btn_anim_duration_ms; - global::Microsoft.Maui.Graphics.Resource.Integer.mtrl_calendar_header_orientation = global::GraphicsTester.Android.Resource.Integer.mtrl_calendar_header_orientation; - global::Microsoft.Maui.Graphics.Resource.Integer.mtrl_calendar_selection_text_lines = global::GraphicsTester.Android.Resource.Integer.mtrl_calendar_selection_text_lines; - global::Microsoft.Maui.Graphics.Resource.Integer.mtrl_calendar_year_selector_span = global::GraphicsTester.Android.Resource.Integer.mtrl_calendar_year_selector_span; - global::Microsoft.Maui.Graphics.Resource.Integer.mtrl_card_anim_delay_ms = global::GraphicsTester.Android.Resource.Integer.mtrl_card_anim_delay_ms; - global::Microsoft.Maui.Graphics.Resource.Integer.mtrl_card_anim_duration_ms = global::GraphicsTester.Android.Resource.Integer.mtrl_card_anim_duration_ms; - global::Microsoft.Maui.Graphics.Resource.Integer.mtrl_chip_anim_duration = global::GraphicsTester.Android.Resource.Integer.mtrl_chip_anim_duration; - global::Microsoft.Maui.Graphics.Resource.Integer.mtrl_tab_indicator_anim_duration_ms = global::GraphicsTester.Android.Resource.Integer.mtrl_tab_indicator_anim_duration_ms; - global::Microsoft.Maui.Graphics.Resource.Integer.show_password_duration = global::GraphicsTester.Android.Resource.Integer.show_password_duration; - global::Microsoft.Maui.Graphics.Resource.Integer.status_bar_notification_info_maxnum = global::GraphicsTester.Android.Resource.Integer.status_bar_notification_info_maxnum; - global::Microsoft.Maui.Graphics.Resource.Interpolator.btn_checkbox_checked_mtrl_animation_interpolator_0 = global::GraphicsTester.Android.Resource.Interpolator.btn_checkbox_checked_mtrl_animation_interpolator_0; - global::Microsoft.Maui.Graphics.Resource.Interpolator.btn_checkbox_checked_mtrl_animation_interpolator_1 = global::GraphicsTester.Android.Resource.Interpolator.btn_checkbox_checked_mtrl_animation_interpolator_1; - global::Microsoft.Maui.Graphics.Resource.Interpolator.btn_checkbox_unchecked_mtrl_animation_interpolator_0 = global::GraphicsTester.Android.Resource.Interpolator.btn_checkbox_unchecked_mtrl_animation_interpolator_0; - global::Microsoft.Maui.Graphics.Resource.Interpolator.btn_checkbox_unchecked_mtrl_animation_interpolator_1 = global::GraphicsTester.Android.Resource.Interpolator.btn_checkbox_unchecked_mtrl_animation_interpolator_1; - global::Microsoft.Maui.Graphics.Resource.Interpolator.btn_radio_to_off_mtrl_animation_interpolator_0 = global::GraphicsTester.Android.Resource.Interpolator.btn_radio_to_off_mtrl_animation_interpolator_0; - global::Microsoft.Maui.Graphics.Resource.Interpolator.btn_radio_to_on_mtrl_animation_interpolator_0 = global::GraphicsTester.Android.Resource.Interpolator.btn_radio_to_on_mtrl_animation_interpolator_0; - global::Microsoft.Maui.Graphics.Resource.Interpolator.fast_out_slow_in = global::GraphicsTester.Android.Resource.Interpolator.fast_out_slow_in; - global::Microsoft.Maui.Graphics.Resource.Interpolator.mtrl_fast_out_linear_in = global::GraphicsTester.Android.Resource.Interpolator.mtrl_fast_out_linear_in; - global::Microsoft.Maui.Graphics.Resource.Interpolator.mtrl_fast_out_slow_in = global::GraphicsTester.Android.Resource.Interpolator.mtrl_fast_out_slow_in; - global::Microsoft.Maui.Graphics.Resource.Interpolator.mtrl_linear = global::GraphicsTester.Android.Resource.Interpolator.mtrl_linear; - global::Microsoft.Maui.Graphics.Resource.Interpolator.mtrl_linear_out_slow_in = global::GraphicsTester.Android.Resource.Interpolator.mtrl_linear_out_slow_in; - global::Microsoft.Maui.Graphics.Resource.Layout.abc_action_bar_title_item = global::GraphicsTester.Android.Resource.Layout.abc_action_bar_title_item; - global::Microsoft.Maui.Graphics.Resource.Layout.abc_action_bar_up_container = global::GraphicsTester.Android.Resource.Layout.abc_action_bar_up_container; - global::Microsoft.Maui.Graphics.Resource.Layout.abc_action_menu_item_layout = global::GraphicsTester.Android.Resource.Layout.abc_action_menu_item_layout; - global::Microsoft.Maui.Graphics.Resource.Layout.abc_action_menu_layout = global::GraphicsTester.Android.Resource.Layout.abc_action_menu_layout; - global::Microsoft.Maui.Graphics.Resource.Layout.abc_action_mode_bar = global::GraphicsTester.Android.Resource.Layout.abc_action_mode_bar; - global::Microsoft.Maui.Graphics.Resource.Layout.abc_action_mode_close_item_material = global::GraphicsTester.Android.Resource.Layout.abc_action_mode_close_item_material; - global::Microsoft.Maui.Graphics.Resource.Layout.abc_activity_chooser_view = global::GraphicsTester.Android.Resource.Layout.abc_activity_chooser_view; - global::Microsoft.Maui.Graphics.Resource.Layout.abc_activity_chooser_view_list_item = global::GraphicsTester.Android.Resource.Layout.abc_activity_chooser_view_list_item; - global::Microsoft.Maui.Graphics.Resource.Layout.abc_alert_dialog_button_bar_material = global::GraphicsTester.Android.Resource.Layout.abc_alert_dialog_button_bar_material; - global::Microsoft.Maui.Graphics.Resource.Layout.abc_alert_dialog_material = global::GraphicsTester.Android.Resource.Layout.abc_alert_dialog_material; - global::Microsoft.Maui.Graphics.Resource.Layout.abc_alert_dialog_title_material = global::GraphicsTester.Android.Resource.Layout.abc_alert_dialog_title_material; - global::Microsoft.Maui.Graphics.Resource.Layout.abc_cascading_menu_item_layout = global::GraphicsTester.Android.Resource.Layout.abc_cascading_menu_item_layout; - global::Microsoft.Maui.Graphics.Resource.Layout.abc_dialog_title_material = global::GraphicsTester.Android.Resource.Layout.abc_dialog_title_material; - global::Microsoft.Maui.Graphics.Resource.Layout.abc_expanded_menu_layout = global::GraphicsTester.Android.Resource.Layout.abc_expanded_menu_layout; - global::Microsoft.Maui.Graphics.Resource.Layout.abc_list_menu_item_checkbox = global::GraphicsTester.Android.Resource.Layout.abc_list_menu_item_checkbox; - global::Microsoft.Maui.Graphics.Resource.Layout.abc_list_menu_item_icon = global::GraphicsTester.Android.Resource.Layout.abc_list_menu_item_icon; - global::Microsoft.Maui.Graphics.Resource.Layout.abc_list_menu_item_layout = global::GraphicsTester.Android.Resource.Layout.abc_list_menu_item_layout; - global::Microsoft.Maui.Graphics.Resource.Layout.abc_list_menu_item_radio = global::GraphicsTester.Android.Resource.Layout.abc_list_menu_item_radio; - global::Microsoft.Maui.Graphics.Resource.Layout.abc_popup_menu_header_item_layout = global::GraphicsTester.Android.Resource.Layout.abc_popup_menu_header_item_layout; - global::Microsoft.Maui.Graphics.Resource.Layout.abc_popup_menu_item_layout = global::GraphicsTester.Android.Resource.Layout.abc_popup_menu_item_layout; - global::Microsoft.Maui.Graphics.Resource.Layout.abc_screen_content_include = global::GraphicsTester.Android.Resource.Layout.abc_screen_content_include; - global::Microsoft.Maui.Graphics.Resource.Layout.abc_screen_simple = global::GraphicsTester.Android.Resource.Layout.abc_screen_simple; - global::Microsoft.Maui.Graphics.Resource.Layout.abc_screen_simple_overlay_action_mode = global::GraphicsTester.Android.Resource.Layout.abc_screen_simple_overlay_action_mode; - global::Microsoft.Maui.Graphics.Resource.Layout.abc_screen_toolbar = global::GraphicsTester.Android.Resource.Layout.abc_screen_toolbar; - global::Microsoft.Maui.Graphics.Resource.Layout.abc_search_dropdown_item_icons_2line = global::GraphicsTester.Android.Resource.Layout.abc_search_dropdown_item_icons_2line; - global::Microsoft.Maui.Graphics.Resource.Layout.abc_search_view = global::GraphicsTester.Android.Resource.Layout.abc_search_view; - global::Microsoft.Maui.Graphics.Resource.Layout.abc_select_dialog_material = global::GraphicsTester.Android.Resource.Layout.abc_select_dialog_material; - global::Microsoft.Maui.Graphics.Resource.Layout.abc_tooltip = global::GraphicsTester.Android.Resource.Layout.abc_tooltip; - global::Microsoft.Maui.Graphics.Resource.Layout.custom_dialog = global::GraphicsTester.Android.Resource.Layout.custom_dialog; - global::Microsoft.Maui.Graphics.Resource.Layout.design_bottom_navigation_item = global::GraphicsTester.Android.Resource.Layout.design_bottom_navigation_item; - global::Microsoft.Maui.Graphics.Resource.Layout.design_bottom_sheet_dialog = global::GraphicsTester.Android.Resource.Layout.design_bottom_sheet_dialog; - global::Microsoft.Maui.Graphics.Resource.Layout.design_layout_snackbar = global::GraphicsTester.Android.Resource.Layout.design_layout_snackbar; - global::Microsoft.Maui.Graphics.Resource.Layout.design_layout_snackbar_include = global::GraphicsTester.Android.Resource.Layout.design_layout_snackbar_include; - global::Microsoft.Maui.Graphics.Resource.Layout.design_layout_tab_icon = global::GraphicsTester.Android.Resource.Layout.design_layout_tab_icon; - global::Microsoft.Maui.Graphics.Resource.Layout.design_layout_tab_text = global::GraphicsTester.Android.Resource.Layout.design_layout_tab_text; - global::Microsoft.Maui.Graphics.Resource.Layout.design_menu_item_action_area = global::GraphicsTester.Android.Resource.Layout.design_menu_item_action_area; - global::Microsoft.Maui.Graphics.Resource.Layout.design_navigation_item = global::GraphicsTester.Android.Resource.Layout.design_navigation_item; - global::Microsoft.Maui.Graphics.Resource.Layout.design_navigation_item_header = global::GraphicsTester.Android.Resource.Layout.design_navigation_item_header; - global::Microsoft.Maui.Graphics.Resource.Layout.design_navigation_item_separator = global::GraphicsTester.Android.Resource.Layout.design_navigation_item_separator; - global::Microsoft.Maui.Graphics.Resource.Layout.design_navigation_item_subheader = global::GraphicsTester.Android.Resource.Layout.design_navigation_item_subheader; - global::Microsoft.Maui.Graphics.Resource.Layout.design_navigation_menu = global::GraphicsTester.Android.Resource.Layout.design_navigation_menu; - global::Microsoft.Maui.Graphics.Resource.Layout.design_navigation_menu_item = global::GraphicsTester.Android.Resource.Layout.design_navigation_menu_item; - global::Microsoft.Maui.Graphics.Resource.Layout.design_text_input_end_icon = global::GraphicsTester.Android.Resource.Layout.design_text_input_end_icon; - global::Microsoft.Maui.Graphics.Resource.Layout.design_text_input_start_icon = global::GraphicsTester.Android.Resource.Layout.design_text_input_start_icon; - global::Microsoft.Maui.Graphics.Resource.Layout.material_chip_input_combo = global::GraphicsTester.Android.Resource.Layout.material_chip_input_combo; - global::Microsoft.Maui.Graphics.Resource.Layout.material_clockface_textview = global::GraphicsTester.Android.Resource.Layout.material_clockface_textview; - global::Microsoft.Maui.Graphics.Resource.Layout.material_clockface_view = global::GraphicsTester.Android.Resource.Layout.material_clockface_view; - global::Microsoft.Maui.Graphics.Resource.Layout.material_clock_display = global::GraphicsTester.Android.Resource.Layout.material_clock_display; - global::Microsoft.Maui.Graphics.Resource.Layout.material_clock_display_divider = global::GraphicsTester.Android.Resource.Layout.material_clock_display_divider; - global::Microsoft.Maui.Graphics.Resource.Layout.material_clock_period_toggle = global::GraphicsTester.Android.Resource.Layout.material_clock_period_toggle; - global::Microsoft.Maui.Graphics.Resource.Layout.material_clock_period_toggle_land = global::GraphicsTester.Android.Resource.Layout.material_clock_period_toggle_land; - global::Microsoft.Maui.Graphics.Resource.Layout.material_radial_view_group = global::GraphicsTester.Android.Resource.Layout.material_radial_view_group; - global::Microsoft.Maui.Graphics.Resource.Layout.material_textinput_timepicker = global::GraphicsTester.Android.Resource.Layout.material_textinput_timepicker; - global::Microsoft.Maui.Graphics.Resource.Layout.material_timepicker = global::GraphicsTester.Android.Resource.Layout.material_timepicker; - global::Microsoft.Maui.Graphics.Resource.Layout.material_timepicker_dialog = global::GraphicsTester.Android.Resource.Layout.material_timepicker_dialog; - global::Microsoft.Maui.Graphics.Resource.Layout.material_timepicker_textinput_display = global::GraphicsTester.Android.Resource.Layout.material_timepicker_textinput_display; - global::Microsoft.Maui.Graphics.Resource.Layout.material_time_chip = global::GraphicsTester.Android.Resource.Layout.material_time_chip; - global::Microsoft.Maui.Graphics.Resource.Layout.material_time_input = global::GraphicsTester.Android.Resource.Layout.material_time_input; - global::Microsoft.Maui.Graphics.Resource.Layout.mtrl_alert_dialog = global::GraphicsTester.Android.Resource.Layout.mtrl_alert_dialog; - global::Microsoft.Maui.Graphics.Resource.Layout.mtrl_alert_dialog_actions = global::GraphicsTester.Android.Resource.Layout.mtrl_alert_dialog_actions; - global::Microsoft.Maui.Graphics.Resource.Layout.mtrl_alert_dialog_title = global::GraphicsTester.Android.Resource.Layout.mtrl_alert_dialog_title; - global::Microsoft.Maui.Graphics.Resource.Layout.mtrl_alert_select_dialog_item = global::GraphicsTester.Android.Resource.Layout.mtrl_alert_select_dialog_item; - global::Microsoft.Maui.Graphics.Resource.Layout.mtrl_alert_select_dialog_multichoice = global::GraphicsTester.Android.Resource.Layout.mtrl_alert_select_dialog_multichoice; - global::Microsoft.Maui.Graphics.Resource.Layout.mtrl_alert_select_dialog_singlechoice = global::GraphicsTester.Android.Resource.Layout.mtrl_alert_select_dialog_singlechoice; - global::Microsoft.Maui.Graphics.Resource.Layout.mtrl_calendar_day = global::GraphicsTester.Android.Resource.Layout.mtrl_calendar_day; - global::Microsoft.Maui.Graphics.Resource.Layout.mtrl_calendar_days_of_week = global::GraphicsTester.Android.Resource.Layout.mtrl_calendar_days_of_week; - global::Microsoft.Maui.Graphics.Resource.Layout.mtrl_calendar_day_of_week = global::GraphicsTester.Android.Resource.Layout.mtrl_calendar_day_of_week; - global::Microsoft.Maui.Graphics.Resource.Layout.mtrl_calendar_horizontal = global::GraphicsTester.Android.Resource.Layout.mtrl_calendar_horizontal; - global::Microsoft.Maui.Graphics.Resource.Layout.mtrl_calendar_month = global::GraphicsTester.Android.Resource.Layout.mtrl_calendar_month; - global::Microsoft.Maui.Graphics.Resource.Layout.mtrl_calendar_months = global::GraphicsTester.Android.Resource.Layout.mtrl_calendar_months; - global::Microsoft.Maui.Graphics.Resource.Layout.mtrl_calendar_month_labeled = global::GraphicsTester.Android.Resource.Layout.mtrl_calendar_month_labeled; - global::Microsoft.Maui.Graphics.Resource.Layout.mtrl_calendar_month_navigation = global::GraphicsTester.Android.Resource.Layout.mtrl_calendar_month_navigation; - global::Microsoft.Maui.Graphics.Resource.Layout.mtrl_calendar_vertical = global::GraphicsTester.Android.Resource.Layout.mtrl_calendar_vertical; - global::Microsoft.Maui.Graphics.Resource.Layout.mtrl_calendar_year = global::GraphicsTester.Android.Resource.Layout.mtrl_calendar_year; - global::Microsoft.Maui.Graphics.Resource.Layout.mtrl_layout_snackbar = global::GraphicsTester.Android.Resource.Layout.mtrl_layout_snackbar; - global::Microsoft.Maui.Graphics.Resource.Layout.mtrl_layout_snackbar_include = global::GraphicsTester.Android.Resource.Layout.mtrl_layout_snackbar_include; - global::Microsoft.Maui.Graphics.Resource.Layout.mtrl_picker_actions = global::GraphicsTester.Android.Resource.Layout.mtrl_picker_actions; - global::Microsoft.Maui.Graphics.Resource.Layout.mtrl_picker_dialog = global::GraphicsTester.Android.Resource.Layout.mtrl_picker_dialog; - global::Microsoft.Maui.Graphics.Resource.Layout.mtrl_picker_fullscreen = global::GraphicsTester.Android.Resource.Layout.mtrl_picker_fullscreen; - global::Microsoft.Maui.Graphics.Resource.Layout.mtrl_picker_header_dialog = global::GraphicsTester.Android.Resource.Layout.mtrl_picker_header_dialog; - global::Microsoft.Maui.Graphics.Resource.Layout.mtrl_picker_header_fullscreen = global::GraphicsTester.Android.Resource.Layout.mtrl_picker_header_fullscreen; - global::Microsoft.Maui.Graphics.Resource.Layout.mtrl_picker_header_selection_text = global::GraphicsTester.Android.Resource.Layout.mtrl_picker_header_selection_text; - global::Microsoft.Maui.Graphics.Resource.Layout.mtrl_picker_header_title_text = global::GraphicsTester.Android.Resource.Layout.mtrl_picker_header_title_text; - global::Microsoft.Maui.Graphics.Resource.Layout.mtrl_picker_header_toggle = global::GraphicsTester.Android.Resource.Layout.mtrl_picker_header_toggle; - global::Microsoft.Maui.Graphics.Resource.Layout.mtrl_picker_text_input_date = global::GraphicsTester.Android.Resource.Layout.mtrl_picker_text_input_date; - global::Microsoft.Maui.Graphics.Resource.Layout.mtrl_picker_text_input_date_range = global::GraphicsTester.Android.Resource.Layout.mtrl_picker_text_input_date_range; - global::Microsoft.Maui.Graphics.Resource.Layout.notification_action = global::GraphicsTester.Android.Resource.Layout.notification_action; - global::Microsoft.Maui.Graphics.Resource.Layout.notification_action_tombstone = global::GraphicsTester.Android.Resource.Layout.notification_action_tombstone; - global::Microsoft.Maui.Graphics.Resource.Layout.notification_media_action = global::GraphicsTester.Android.Resource.Layout.notification_media_action; - global::Microsoft.Maui.Graphics.Resource.Layout.notification_media_cancel_action = global::GraphicsTester.Android.Resource.Layout.notification_media_cancel_action; - global::Microsoft.Maui.Graphics.Resource.Layout.notification_template_big_media = global::GraphicsTester.Android.Resource.Layout.notification_template_big_media; - global::Microsoft.Maui.Graphics.Resource.Layout.notification_template_big_media_custom = global::GraphicsTester.Android.Resource.Layout.notification_template_big_media_custom; - global::Microsoft.Maui.Graphics.Resource.Layout.notification_template_big_media_narrow = global::GraphicsTester.Android.Resource.Layout.notification_template_big_media_narrow; - global::Microsoft.Maui.Graphics.Resource.Layout.notification_template_big_media_narrow_custom = global::GraphicsTester.Android.Resource.Layout.notification_template_big_media_narrow_custom; - global::Microsoft.Maui.Graphics.Resource.Layout.notification_template_custom_big = global::GraphicsTester.Android.Resource.Layout.notification_template_custom_big; - global::Microsoft.Maui.Graphics.Resource.Layout.notification_template_icon_group = global::GraphicsTester.Android.Resource.Layout.notification_template_icon_group; - global::Microsoft.Maui.Graphics.Resource.Layout.notification_template_lines_media = global::GraphicsTester.Android.Resource.Layout.notification_template_lines_media; - global::Microsoft.Maui.Graphics.Resource.Layout.notification_template_media = global::GraphicsTester.Android.Resource.Layout.notification_template_media; - global::Microsoft.Maui.Graphics.Resource.Layout.notification_template_media_custom = global::GraphicsTester.Android.Resource.Layout.notification_template_media_custom; - global::Microsoft.Maui.Graphics.Resource.Layout.notification_template_part_chronometer = global::GraphicsTester.Android.Resource.Layout.notification_template_part_chronometer; - global::Microsoft.Maui.Graphics.Resource.Layout.notification_template_part_time = global::GraphicsTester.Android.Resource.Layout.notification_template_part_time; - global::Microsoft.Maui.Graphics.Resource.Layout.select_dialog_item_material = global::GraphicsTester.Android.Resource.Layout.select_dialog_item_material; - global::Microsoft.Maui.Graphics.Resource.Layout.select_dialog_multichoice_material = global::GraphicsTester.Android.Resource.Layout.select_dialog_multichoice_material; - global::Microsoft.Maui.Graphics.Resource.Layout.select_dialog_singlechoice_material = global::GraphicsTester.Android.Resource.Layout.select_dialog_singlechoice_material; - global::Microsoft.Maui.Graphics.Resource.Layout.support_simple_spinner_dropdown_item = global::GraphicsTester.Android.Resource.Layout.support_simple_spinner_dropdown_item; - global::Microsoft.Maui.Graphics.Resource.Layout.test_action_chip = global::GraphicsTester.Android.Resource.Layout.test_action_chip; - global::Microsoft.Maui.Graphics.Resource.Layout.test_chip_zero_corner_radius = global::GraphicsTester.Android.Resource.Layout.test_chip_zero_corner_radius; - global::Microsoft.Maui.Graphics.Resource.Layout.test_design_checkbox = global::GraphicsTester.Android.Resource.Layout.test_design_checkbox; - global::Microsoft.Maui.Graphics.Resource.Layout.test_design_radiobutton = global::GraphicsTester.Android.Resource.Layout.test_design_radiobutton; - global::Microsoft.Maui.Graphics.Resource.Layout.test_reflow_chipgroup = global::GraphicsTester.Android.Resource.Layout.test_reflow_chipgroup; - global::Microsoft.Maui.Graphics.Resource.Layout.test_toolbar = global::GraphicsTester.Android.Resource.Layout.test_toolbar; - global::Microsoft.Maui.Graphics.Resource.Layout.test_toolbar_custom_background = global::GraphicsTester.Android.Resource.Layout.test_toolbar_custom_background; - global::Microsoft.Maui.Graphics.Resource.Layout.test_toolbar_elevation = global::GraphicsTester.Android.Resource.Layout.test_toolbar_elevation; - global::Microsoft.Maui.Graphics.Resource.Layout.test_toolbar_surface = global::GraphicsTester.Android.Resource.Layout.test_toolbar_surface; - global::Microsoft.Maui.Graphics.Resource.Layout.text_view_without_line_height = global::GraphicsTester.Android.Resource.Layout.text_view_without_line_height; - global::Microsoft.Maui.Graphics.Resource.Layout.text_view_with_line_height_from_appearance = global::GraphicsTester.Android.Resource.Layout.text_view_with_line_height_from_appearance; - global::Microsoft.Maui.Graphics.Resource.Layout.text_view_with_line_height_from_layout = global::GraphicsTester.Android.Resource.Layout.text_view_with_line_height_from_layout; - global::Microsoft.Maui.Graphics.Resource.Layout.text_view_with_line_height_from_style = global::GraphicsTester.Android.Resource.Layout.text_view_with_line_height_from_style; - global::Microsoft.Maui.Graphics.Resource.Layout.text_view_with_theme_line_height = global::GraphicsTester.Android.Resource.Layout.text_view_with_theme_line_height; - global::Microsoft.Maui.Graphics.Resource.Plurals.mtrl_badge_content_description = global::GraphicsTester.Android.Resource.Plurals.mtrl_badge_content_description; - global::Microsoft.Maui.Graphics.Resource.String.abc_action_bar_home_description = global::GraphicsTester.Android.Resource.String.abc_action_bar_home_description; - global::Microsoft.Maui.Graphics.Resource.String.abc_action_bar_up_description = global::GraphicsTester.Android.Resource.String.abc_action_bar_up_description; - global::Microsoft.Maui.Graphics.Resource.String.abc_action_menu_overflow_description = global::GraphicsTester.Android.Resource.String.abc_action_menu_overflow_description; - global::Microsoft.Maui.Graphics.Resource.String.abc_action_mode_done = global::GraphicsTester.Android.Resource.String.abc_action_mode_done; - global::Microsoft.Maui.Graphics.Resource.String.abc_activitychooserview_choose_application = global::GraphicsTester.Android.Resource.String.abc_activitychooserview_choose_application; - global::Microsoft.Maui.Graphics.Resource.String.abc_activity_chooser_view_see_all = global::GraphicsTester.Android.Resource.String.abc_activity_chooser_view_see_all; - global::Microsoft.Maui.Graphics.Resource.String.abc_capital_off = global::GraphicsTester.Android.Resource.String.abc_capital_off; - global::Microsoft.Maui.Graphics.Resource.String.abc_capital_on = global::GraphicsTester.Android.Resource.String.abc_capital_on; - global::Microsoft.Maui.Graphics.Resource.String.abc_menu_alt_shortcut_label = global::GraphicsTester.Android.Resource.String.abc_menu_alt_shortcut_label; - global::Microsoft.Maui.Graphics.Resource.String.abc_menu_ctrl_shortcut_label = global::GraphicsTester.Android.Resource.String.abc_menu_ctrl_shortcut_label; - global::Microsoft.Maui.Graphics.Resource.String.abc_menu_delete_shortcut_label = global::GraphicsTester.Android.Resource.String.abc_menu_delete_shortcut_label; - global::Microsoft.Maui.Graphics.Resource.String.abc_menu_enter_shortcut_label = global::GraphicsTester.Android.Resource.String.abc_menu_enter_shortcut_label; - global::Microsoft.Maui.Graphics.Resource.String.abc_menu_function_shortcut_label = global::GraphicsTester.Android.Resource.String.abc_menu_function_shortcut_label; - global::Microsoft.Maui.Graphics.Resource.String.abc_menu_meta_shortcut_label = global::GraphicsTester.Android.Resource.String.abc_menu_meta_shortcut_label; - global::Microsoft.Maui.Graphics.Resource.String.abc_menu_shift_shortcut_label = global::GraphicsTester.Android.Resource.String.abc_menu_shift_shortcut_label; - global::Microsoft.Maui.Graphics.Resource.String.abc_menu_space_shortcut_label = global::GraphicsTester.Android.Resource.String.abc_menu_space_shortcut_label; - global::Microsoft.Maui.Graphics.Resource.String.abc_menu_sym_shortcut_label = global::GraphicsTester.Android.Resource.String.abc_menu_sym_shortcut_label; - global::Microsoft.Maui.Graphics.Resource.String.abc_prepend_shortcut_label = global::GraphicsTester.Android.Resource.String.abc_prepend_shortcut_label; - global::Microsoft.Maui.Graphics.Resource.String.abc_searchview_description_clear = global::GraphicsTester.Android.Resource.String.abc_searchview_description_clear; - global::Microsoft.Maui.Graphics.Resource.String.abc_searchview_description_query = global::GraphicsTester.Android.Resource.String.abc_searchview_description_query; - global::Microsoft.Maui.Graphics.Resource.String.abc_searchview_description_search = global::GraphicsTester.Android.Resource.String.abc_searchview_description_search; - global::Microsoft.Maui.Graphics.Resource.String.abc_searchview_description_submit = global::GraphicsTester.Android.Resource.String.abc_searchview_description_submit; - global::Microsoft.Maui.Graphics.Resource.String.abc_searchview_description_voice = global::GraphicsTester.Android.Resource.String.abc_searchview_description_voice; - global::Microsoft.Maui.Graphics.Resource.String.abc_search_hint = global::GraphicsTester.Android.Resource.String.abc_search_hint; - global::Microsoft.Maui.Graphics.Resource.String.abc_shareactionprovider_share_with = global::GraphicsTester.Android.Resource.String.abc_shareactionprovider_share_with; - global::Microsoft.Maui.Graphics.Resource.String.abc_shareactionprovider_share_with_application = global::GraphicsTester.Android.Resource.String.abc_shareactionprovider_share_with_application; - global::Microsoft.Maui.Graphics.Resource.String.abc_toolbar_collapse_description = global::GraphicsTester.Android.Resource.String.abc_toolbar_collapse_description; - global::Microsoft.Maui.Graphics.Resource.String.appbar_scrolling_view_behavior = global::GraphicsTester.Android.Resource.String.appbar_scrolling_view_behavior; - global::Microsoft.Maui.Graphics.Resource.String.bottomsheet_action_expand_halfway = global::GraphicsTester.Android.Resource.String.bottomsheet_action_expand_halfway; - global::Microsoft.Maui.Graphics.Resource.String.bottom_sheet_behavior = global::GraphicsTester.Android.Resource.String.bottom_sheet_behavior; - global::Microsoft.Maui.Graphics.Resource.String.character_counter_content_description = global::GraphicsTester.Android.Resource.String.character_counter_content_description; - global::Microsoft.Maui.Graphics.Resource.String.character_counter_overflowed_content_description = global::GraphicsTester.Android.Resource.String.character_counter_overflowed_content_description; - global::Microsoft.Maui.Graphics.Resource.String.character_counter_pattern = global::GraphicsTester.Android.Resource.String.character_counter_pattern; - global::Microsoft.Maui.Graphics.Resource.String.chip_text = global::GraphicsTester.Android.Resource.String.chip_text; - global::Microsoft.Maui.Graphics.Resource.String.clear_text_end_icon_content_description = global::GraphicsTester.Android.Resource.String.clear_text_end_icon_content_description; - global::Microsoft.Maui.Graphics.Resource.String.error_icon_content_description = global::GraphicsTester.Android.Resource.String.error_icon_content_description; - global::Microsoft.Maui.Graphics.Resource.String.exposed_dropdown_menu_content_description = global::GraphicsTester.Android.Resource.String.exposed_dropdown_menu_content_description; - global::Microsoft.Maui.Graphics.Resource.String.fab_transformation_scrim_behavior = global::GraphicsTester.Android.Resource.String.fab_transformation_scrim_behavior; - global::Microsoft.Maui.Graphics.Resource.String.fab_transformation_sheet_behavior = global::GraphicsTester.Android.Resource.String.fab_transformation_sheet_behavior; - global::Microsoft.Maui.Graphics.Resource.String.hide_bottom_view_on_scroll_behavior = global::GraphicsTester.Android.Resource.String.hide_bottom_view_on_scroll_behavior; - global::Microsoft.Maui.Graphics.Resource.String.icon_content_description = global::GraphicsTester.Android.Resource.String.icon_content_description; - global::Microsoft.Maui.Graphics.Resource.String.item_view_role_description = global::GraphicsTester.Android.Resource.String.item_view_role_description; - global::Microsoft.Maui.Graphics.Resource.String.material_clock_display_divider = global::GraphicsTester.Android.Resource.String.material_clock_display_divider; - global::Microsoft.Maui.Graphics.Resource.String.material_clock_toggle_content_description = global::GraphicsTester.Android.Resource.String.material_clock_toggle_content_description; - global::Microsoft.Maui.Graphics.Resource.String.material_hour_selection = global::GraphicsTester.Android.Resource.String.material_hour_selection; - global::Microsoft.Maui.Graphics.Resource.String.material_hour_suffix = global::GraphicsTester.Android.Resource.String.material_hour_suffix; - global::Microsoft.Maui.Graphics.Resource.String.material_minute_selection = global::GraphicsTester.Android.Resource.String.material_minute_selection; - global::Microsoft.Maui.Graphics.Resource.String.material_minute_suffix = global::GraphicsTester.Android.Resource.String.material_minute_suffix; - global::Microsoft.Maui.Graphics.Resource.String.material_slider_range_end = global::GraphicsTester.Android.Resource.String.material_slider_range_end; - global::Microsoft.Maui.Graphics.Resource.String.material_slider_range_start = global::GraphicsTester.Android.Resource.String.material_slider_range_start; - global::Microsoft.Maui.Graphics.Resource.String.material_timepicker_am = global::GraphicsTester.Android.Resource.String.material_timepicker_am; - global::Microsoft.Maui.Graphics.Resource.String.material_timepicker_clock_mode_description = global::GraphicsTester.Android.Resource.String.material_timepicker_clock_mode_description; - global::Microsoft.Maui.Graphics.Resource.String.material_timepicker_hour = global::GraphicsTester.Android.Resource.String.material_timepicker_hour; - global::Microsoft.Maui.Graphics.Resource.String.material_timepicker_minute = global::GraphicsTester.Android.Resource.String.material_timepicker_minute; - global::Microsoft.Maui.Graphics.Resource.String.material_timepicker_pm = global::GraphicsTester.Android.Resource.String.material_timepicker_pm; - global::Microsoft.Maui.Graphics.Resource.String.material_timepicker_select_time = global::GraphicsTester.Android.Resource.String.material_timepicker_select_time; - global::Microsoft.Maui.Graphics.Resource.String.material_timepicker_text_input_mode_description = global::GraphicsTester.Android.Resource.String.material_timepicker_text_input_mode_description; - global::Microsoft.Maui.Graphics.Resource.String.mtrl_badge_numberless_content_description = global::GraphicsTester.Android.Resource.String.mtrl_badge_numberless_content_description; - global::Microsoft.Maui.Graphics.Resource.String.mtrl_chip_close_icon_content_description = global::GraphicsTester.Android.Resource.String.mtrl_chip_close_icon_content_description; - global::Microsoft.Maui.Graphics.Resource.String.mtrl_exceed_max_badge_number_content_description = global::GraphicsTester.Android.Resource.String.mtrl_exceed_max_badge_number_content_description; - global::Microsoft.Maui.Graphics.Resource.String.mtrl_exceed_max_badge_number_suffix = global::GraphicsTester.Android.Resource.String.mtrl_exceed_max_badge_number_suffix; - global::Microsoft.Maui.Graphics.Resource.String.mtrl_picker_a11y_next_month = global::GraphicsTester.Android.Resource.String.mtrl_picker_a11y_next_month; - global::Microsoft.Maui.Graphics.Resource.String.mtrl_picker_a11y_prev_month = global::GraphicsTester.Android.Resource.String.mtrl_picker_a11y_prev_month; - global::Microsoft.Maui.Graphics.Resource.String.mtrl_picker_announce_current_selection = global::GraphicsTester.Android.Resource.String.mtrl_picker_announce_current_selection; - global::Microsoft.Maui.Graphics.Resource.String.mtrl_picker_cancel = global::GraphicsTester.Android.Resource.String.mtrl_picker_cancel; - global::Microsoft.Maui.Graphics.Resource.String.mtrl_picker_confirm = global::GraphicsTester.Android.Resource.String.mtrl_picker_confirm; - global::Microsoft.Maui.Graphics.Resource.String.mtrl_picker_date_header_selected = global::GraphicsTester.Android.Resource.String.mtrl_picker_date_header_selected; - global::Microsoft.Maui.Graphics.Resource.String.mtrl_picker_date_header_title = global::GraphicsTester.Android.Resource.String.mtrl_picker_date_header_title; - global::Microsoft.Maui.Graphics.Resource.String.mtrl_picker_date_header_unselected = global::GraphicsTester.Android.Resource.String.mtrl_picker_date_header_unselected; - global::Microsoft.Maui.Graphics.Resource.String.mtrl_picker_day_of_week_column_header = global::GraphicsTester.Android.Resource.String.mtrl_picker_day_of_week_column_header; - global::Microsoft.Maui.Graphics.Resource.String.mtrl_picker_invalid_format = global::GraphicsTester.Android.Resource.String.mtrl_picker_invalid_format; - global::Microsoft.Maui.Graphics.Resource.String.mtrl_picker_invalid_format_example = global::GraphicsTester.Android.Resource.String.mtrl_picker_invalid_format_example; - global::Microsoft.Maui.Graphics.Resource.String.mtrl_picker_invalid_format_use = global::GraphicsTester.Android.Resource.String.mtrl_picker_invalid_format_use; - global::Microsoft.Maui.Graphics.Resource.String.mtrl_picker_invalid_range = global::GraphicsTester.Android.Resource.String.mtrl_picker_invalid_range; - global::Microsoft.Maui.Graphics.Resource.String.mtrl_picker_navigate_to_year_description = global::GraphicsTester.Android.Resource.String.mtrl_picker_navigate_to_year_description; - global::Microsoft.Maui.Graphics.Resource.String.mtrl_picker_out_of_range = global::GraphicsTester.Android.Resource.String.mtrl_picker_out_of_range; - global::Microsoft.Maui.Graphics.Resource.String.mtrl_picker_range_header_only_end_selected = global::GraphicsTester.Android.Resource.String.mtrl_picker_range_header_only_end_selected; - global::Microsoft.Maui.Graphics.Resource.String.mtrl_picker_range_header_only_start_selected = global::GraphicsTester.Android.Resource.String.mtrl_picker_range_header_only_start_selected; - global::Microsoft.Maui.Graphics.Resource.String.mtrl_picker_range_header_selected = global::GraphicsTester.Android.Resource.String.mtrl_picker_range_header_selected; - global::Microsoft.Maui.Graphics.Resource.String.mtrl_picker_range_header_title = global::GraphicsTester.Android.Resource.String.mtrl_picker_range_header_title; - global::Microsoft.Maui.Graphics.Resource.String.mtrl_picker_range_header_unselected = global::GraphicsTester.Android.Resource.String.mtrl_picker_range_header_unselected; - global::Microsoft.Maui.Graphics.Resource.String.mtrl_picker_save = global::GraphicsTester.Android.Resource.String.mtrl_picker_save; - global::Microsoft.Maui.Graphics.Resource.String.mtrl_picker_text_input_date_hint = global::GraphicsTester.Android.Resource.String.mtrl_picker_text_input_date_hint; - global::Microsoft.Maui.Graphics.Resource.String.mtrl_picker_text_input_date_range_end_hint = global::GraphicsTester.Android.Resource.String.mtrl_picker_text_input_date_range_end_hint; - global::Microsoft.Maui.Graphics.Resource.String.mtrl_picker_text_input_date_range_start_hint = global::GraphicsTester.Android.Resource.String.mtrl_picker_text_input_date_range_start_hint; - global::Microsoft.Maui.Graphics.Resource.String.mtrl_picker_text_input_day_abbr = global::GraphicsTester.Android.Resource.String.mtrl_picker_text_input_day_abbr; - global::Microsoft.Maui.Graphics.Resource.String.mtrl_picker_text_input_month_abbr = global::GraphicsTester.Android.Resource.String.mtrl_picker_text_input_month_abbr; - global::Microsoft.Maui.Graphics.Resource.String.mtrl_picker_text_input_year_abbr = global::GraphicsTester.Android.Resource.String.mtrl_picker_text_input_year_abbr; - global::Microsoft.Maui.Graphics.Resource.String.mtrl_picker_toggle_to_calendar_input_mode = global::GraphicsTester.Android.Resource.String.mtrl_picker_toggle_to_calendar_input_mode; - global::Microsoft.Maui.Graphics.Resource.String.mtrl_picker_toggle_to_day_selection = global::GraphicsTester.Android.Resource.String.mtrl_picker_toggle_to_day_selection; - global::Microsoft.Maui.Graphics.Resource.String.mtrl_picker_toggle_to_text_input_mode = global::GraphicsTester.Android.Resource.String.mtrl_picker_toggle_to_text_input_mode; - global::Microsoft.Maui.Graphics.Resource.String.mtrl_picker_toggle_to_year_selection = global::GraphicsTester.Android.Resource.String.mtrl_picker_toggle_to_year_selection; - global::Microsoft.Maui.Graphics.Resource.String.password_toggle_content_description = global::GraphicsTester.Android.Resource.String.password_toggle_content_description; - global::Microsoft.Maui.Graphics.Resource.String.path_password_eye = global::GraphicsTester.Android.Resource.String.path_password_eye; - global::Microsoft.Maui.Graphics.Resource.String.path_password_eye_mask_strike_through = global::GraphicsTester.Android.Resource.String.path_password_eye_mask_strike_through; - global::Microsoft.Maui.Graphics.Resource.String.path_password_eye_mask_visible = global::GraphicsTester.Android.Resource.String.path_password_eye_mask_visible; - global::Microsoft.Maui.Graphics.Resource.String.path_password_strike_through = global::GraphicsTester.Android.Resource.String.path_password_strike_through; - global::Microsoft.Maui.Graphics.Resource.String.search_menu_title = global::GraphicsTester.Android.Resource.String.search_menu_title; - global::Microsoft.Maui.Graphics.Resource.String.status_bar_notification_info_overflow = global::GraphicsTester.Android.Resource.String.status_bar_notification_info_overflow; - global::Microsoft.Maui.Graphics.Resource.Style.AlertDialog_AppCompat = global::GraphicsTester.Android.Resource.Style.AlertDialog_AppCompat; - global::Microsoft.Maui.Graphics.Resource.Style.AlertDialog_AppCompat_Light = global::GraphicsTester.Android.Resource.Style.AlertDialog_AppCompat_Light; - global::Microsoft.Maui.Graphics.Resource.Style.AndroidThemeColorAccentYellow = global::GraphicsTester.Android.Resource.Style.AndroidThemeColorAccentYellow; - global::Microsoft.Maui.Graphics.Resource.Style.Animation_AppCompat_Dialog = global::GraphicsTester.Android.Resource.Style.Animation_AppCompat_Dialog; - global::Microsoft.Maui.Graphics.Resource.Style.Animation_AppCompat_DropDownUp = global::GraphicsTester.Android.Resource.Style.Animation_AppCompat_DropDownUp; - global::Microsoft.Maui.Graphics.Resource.Style.Animation_AppCompat_Tooltip = global::GraphicsTester.Android.Resource.Style.Animation_AppCompat_Tooltip; - global::Microsoft.Maui.Graphics.Resource.Style.Animation_Design_BottomSheetDialog = global::GraphicsTester.Android.Resource.Style.Animation_Design_BottomSheetDialog; - global::Microsoft.Maui.Graphics.Resource.Style.Animation_MaterialComponents_BottomSheetDialog = global::GraphicsTester.Android.Resource.Style.Animation_MaterialComponents_BottomSheetDialog; - global::Microsoft.Maui.Graphics.Resource.Style.Base_AlertDialog_AppCompat = global::GraphicsTester.Android.Resource.Style.Base_AlertDialog_AppCompat; - global::Microsoft.Maui.Graphics.Resource.Style.Base_AlertDialog_AppCompat_Light = global::GraphicsTester.Android.Resource.Style.Base_AlertDialog_AppCompat_Light; - global::Microsoft.Maui.Graphics.Resource.Style.Base_Animation_AppCompat_Dialog = global::GraphicsTester.Android.Resource.Style.Base_Animation_AppCompat_Dialog; - global::Microsoft.Maui.Graphics.Resource.Style.Base_Animation_AppCompat_DropDownUp = global::GraphicsTester.Android.Resource.Style.Base_Animation_AppCompat_DropDownUp; - global::Microsoft.Maui.Graphics.Resource.Style.Base_Animation_AppCompat_Tooltip = global::GraphicsTester.Android.Resource.Style.Base_Animation_AppCompat_Tooltip; - global::Microsoft.Maui.Graphics.Resource.Style.Base_CardView = global::GraphicsTester.Android.Resource.Style.Base_CardView; - global::Microsoft.Maui.Graphics.Resource.Style.Base_DialogWindowTitleBackground_AppCompat = global::GraphicsTester.Android.Resource.Style.Base_DialogWindowTitleBackground_AppCompat; - global::Microsoft.Maui.Graphics.Resource.Style.Base_DialogWindowTitle_AppCompat = global::GraphicsTester.Android.Resource.Style.Base_DialogWindowTitle_AppCompat; - global::Microsoft.Maui.Graphics.Resource.Style.Base_MaterialAlertDialog_MaterialComponents_Title_Icon = global::GraphicsTester.Android.Resource.Style.Base_MaterialAlertDialog_MaterialComponents_Title_Icon; - global::Microsoft.Maui.Graphics.Resource.Style.Base_MaterialAlertDialog_MaterialComponents_Title_Panel = global::GraphicsTester.Android.Resource.Style.Base_MaterialAlertDialog_MaterialComponents_Title_Panel; - global::Microsoft.Maui.Graphics.Resource.Style.Base_MaterialAlertDialog_MaterialComponents_Title_Text = global::GraphicsTester.Android.Resource.Style.Base_MaterialAlertDialog_MaterialComponents_Title_Text; - global::Microsoft.Maui.Graphics.Resource.Style.Base_TextAppearance_AppCompat = global::GraphicsTester.Android.Resource.Style.Base_TextAppearance_AppCompat; - global::Microsoft.Maui.Graphics.Resource.Style.Base_TextAppearance_AppCompat_Body1 = global::GraphicsTester.Android.Resource.Style.Base_TextAppearance_AppCompat_Body1; - global::Microsoft.Maui.Graphics.Resource.Style.Base_TextAppearance_AppCompat_Body2 = global::GraphicsTester.Android.Resource.Style.Base_TextAppearance_AppCompat_Body2; - global::Microsoft.Maui.Graphics.Resource.Style.Base_TextAppearance_AppCompat_Button = global::GraphicsTester.Android.Resource.Style.Base_TextAppearance_AppCompat_Button; - global::Microsoft.Maui.Graphics.Resource.Style.Base_TextAppearance_AppCompat_Caption = global::GraphicsTester.Android.Resource.Style.Base_TextAppearance_AppCompat_Caption; - global::Microsoft.Maui.Graphics.Resource.Style.Base_TextAppearance_AppCompat_Display1 = global::GraphicsTester.Android.Resource.Style.Base_TextAppearance_AppCompat_Display1; - global::Microsoft.Maui.Graphics.Resource.Style.Base_TextAppearance_AppCompat_Display2 = global::GraphicsTester.Android.Resource.Style.Base_TextAppearance_AppCompat_Display2; - global::Microsoft.Maui.Graphics.Resource.Style.Base_TextAppearance_AppCompat_Display3 = global::GraphicsTester.Android.Resource.Style.Base_TextAppearance_AppCompat_Display3; - global::Microsoft.Maui.Graphics.Resource.Style.Base_TextAppearance_AppCompat_Display4 = global::GraphicsTester.Android.Resource.Style.Base_TextAppearance_AppCompat_Display4; - global::Microsoft.Maui.Graphics.Resource.Style.Base_TextAppearance_AppCompat_Headline = global::GraphicsTester.Android.Resource.Style.Base_TextAppearance_AppCompat_Headline; - global::Microsoft.Maui.Graphics.Resource.Style.Base_TextAppearance_AppCompat_Inverse = global::GraphicsTester.Android.Resource.Style.Base_TextAppearance_AppCompat_Inverse; - global::Microsoft.Maui.Graphics.Resource.Style.Base_TextAppearance_AppCompat_Large = global::GraphicsTester.Android.Resource.Style.Base_TextAppearance_AppCompat_Large; - global::Microsoft.Maui.Graphics.Resource.Style.Base_TextAppearance_AppCompat_Large_Inverse = global::GraphicsTester.Android.Resource.Style.Base_TextAppearance_AppCompat_Large_Inverse; - global::Microsoft.Maui.Graphics.Resource.Style.Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large = global::GraphicsTester.Android.Resource.Style.Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large; - global::Microsoft.Maui.Graphics.Resource.Style.Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small = global::GraphicsTester.Android.Resource.Style.Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small; - global::Microsoft.Maui.Graphics.Resource.Style.Base_TextAppearance_AppCompat_Medium = global::GraphicsTester.Android.Resource.Style.Base_TextAppearance_AppCompat_Medium; - global::Microsoft.Maui.Graphics.Resource.Style.Base_TextAppearance_AppCompat_Medium_Inverse = global::GraphicsTester.Android.Resource.Style.Base_TextAppearance_AppCompat_Medium_Inverse; - global::Microsoft.Maui.Graphics.Resource.Style.Base_TextAppearance_AppCompat_Menu = global::GraphicsTester.Android.Resource.Style.Base_TextAppearance_AppCompat_Menu; - global::Microsoft.Maui.Graphics.Resource.Style.Base_TextAppearance_AppCompat_SearchResult = global::GraphicsTester.Android.Resource.Style.Base_TextAppearance_AppCompat_SearchResult; - global::Microsoft.Maui.Graphics.Resource.Style.Base_TextAppearance_AppCompat_SearchResult_Subtitle = global::GraphicsTester.Android.Resource.Style.Base_TextAppearance_AppCompat_SearchResult_Subtitle; - global::Microsoft.Maui.Graphics.Resource.Style.Base_TextAppearance_AppCompat_SearchResult_Title = global::GraphicsTester.Android.Resource.Style.Base_TextAppearance_AppCompat_SearchResult_Title; - global::Microsoft.Maui.Graphics.Resource.Style.Base_TextAppearance_AppCompat_Small = global::GraphicsTester.Android.Resource.Style.Base_TextAppearance_AppCompat_Small; - global::Microsoft.Maui.Graphics.Resource.Style.Base_TextAppearance_AppCompat_Small_Inverse = global::GraphicsTester.Android.Resource.Style.Base_TextAppearance_AppCompat_Small_Inverse; - global::Microsoft.Maui.Graphics.Resource.Style.Base_TextAppearance_AppCompat_Subhead = global::GraphicsTester.Android.Resource.Style.Base_TextAppearance_AppCompat_Subhead; - global::Microsoft.Maui.Graphics.Resource.Style.Base_TextAppearance_AppCompat_Subhead_Inverse = global::GraphicsTester.Android.Resource.Style.Base_TextAppearance_AppCompat_Subhead_Inverse; - global::Microsoft.Maui.Graphics.Resource.Style.Base_TextAppearance_AppCompat_Title = global::GraphicsTester.Android.Resource.Style.Base_TextAppearance_AppCompat_Title; - global::Microsoft.Maui.Graphics.Resource.Style.Base_TextAppearance_AppCompat_Title_Inverse = global::GraphicsTester.Android.Resource.Style.Base_TextAppearance_AppCompat_Title_Inverse; - global::Microsoft.Maui.Graphics.Resource.Style.Base_TextAppearance_AppCompat_Tooltip = global::GraphicsTester.Android.Resource.Style.Base_TextAppearance_AppCompat_Tooltip; - global::Microsoft.Maui.Graphics.Resource.Style.Base_TextAppearance_AppCompat_Widget_ActionBar_Menu = global::GraphicsTester.Android.Resource.Style.Base_TextAppearance_AppCompat_Widget_ActionBar_Menu; - global::Microsoft.Maui.Graphics.Resource.Style.Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle = global::GraphicsTester.Android.Resource.Style.Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle; - global::Microsoft.Maui.Graphics.Resource.Style.Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse = global::GraphicsTester.Android.Resource.Style.Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse; - global::Microsoft.Maui.Graphics.Resource.Style.Base_TextAppearance_AppCompat_Widget_ActionBar_Title = global::GraphicsTester.Android.Resource.Style.Base_TextAppearance_AppCompat_Widget_ActionBar_Title; - global::Microsoft.Maui.Graphics.Resource.Style.Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse = global::GraphicsTester.Android.Resource.Style.Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse; - global::Microsoft.Maui.Graphics.Resource.Style.Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle = global::GraphicsTester.Android.Resource.Style.Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle; - global::Microsoft.Maui.Graphics.Resource.Style.Base_TextAppearance_AppCompat_Widget_ActionMode_Title = global::GraphicsTester.Android.Resource.Style.Base_TextAppearance_AppCompat_Widget_ActionMode_Title; - global::Microsoft.Maui.Graphics.Resource.Style.Base_TextAppearance_AppCompat_Widget_Button = global::GraphicsTester.Android.Resource.Style.Base_TextAppearance_AppCompat_Widget_Button; - global::Microsoft.Maui.Graphics.Resource.Style.Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored = global::GraphicsTester.Android.Resource.Style.Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored; - global::Microsoft.Maui.Graphics.Resource.Style.Base_TextAppearance_AppCompat_Widget_Button_Colored = global::GraphicsTester.Android.Resource.Style.Base_TextAppearance_AppCompat_Widget_Button_Colored; - global::Microsoft.Maui.Graphics.Resource.Style.Base_TextAppearance_AppCompat_Widget_Button_Inverse = global::GraphicsTester.Android.Resource.Style.Base_TextAppearance_AppCompat_Widget_Button_Inverse; - global::Microsoft.Maui.Graphics.Resource.Style.Base_TextAppearance_AppCompat_Widget_DropDownItem = global::GraphicsTester.Android.Resource.Style.Base_TextAppearance_AppCompat_Widget_DropDownItem; - global::Microsoft.Maui.Graphics.Resource.Style.Base_TextAppearance_AppCompat_Widget_PopupMenu_Header = global::GraphicsTester.Android.Resource.Style.Base_TextAppearance_AppCompat_Widget_PopupMenu_Header; - global::Microsoft.Maui.Graphics.Resource.Style.Base_TextAppearance_AppCompat_Widget_PopupMenu_Large = global::GraphicsTester.Android.Resource.Style.Base_TextAppearance_AppCompat_Widget_PopupMenu_Large; - global::Microsoft.Maui.Graphics.Resource.Style.Base_TextAppearance_AppCompat_Widget_PopupMenu_Small = global::GraphicsTester.Android.Resource.Style.Base_TextAppearance_AppCompat_Widget_PopupMenu_Small; - global::Microsoft.Maui.Graphics.Resource.Style.Base_TextAppearance_AppCompat_Widget_Switch = global::GraphicsTester.Android.Resource.Style.Base_TextAppearance_AppCompat_Widget_Switch; - global::Microsoft.Maui.Graphics.Resource.Style.Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem = global::GraphicsTester.Android.Resource.Style.Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem; - global::Microsoft.Maui.Graphics.Resource.Style.Base_TextAppearance_MaterialComponents_Badge = global::GraphicsTester.Android.Resource.Style.Base_TextAppearance_MaterialComponents_Badge; - global::Microsoft.Maui.Graphics.Resource.Style.Base_TextAppearance_MaterialComponents_Button = global::GraphicsTester.Android.Resource.Style.Base_TextAppearance_MaterialComponents_Button; - global::Microsoft.Maui.Graphics.Resource.Style.Base_TextAppearance_MaterialComponents_Headline6 = global::GraphicsTester.Android.Resource.Style.Base_TextAppearance_MaterialComponents_Headline6; - global::Microsoft.Maui.Graphics.Resource.Style.Base_TextAppearance_MaterialComponents_Subtitle2 = global::GraphicsTester.Android.Resource.Style.Base_TextAppearance_MaterialComponents_Subtitle2; - global::Microsoft.Maui.Graphics.Resource.Style.Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item = global::GraphicsTester.Android.Resource.Style.Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item; - global::Microsoft.Maui.Graphics.Resource.Style.Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle = global::GraphicsTester.Android.Resource.Style.Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle; - global::Microsoft.Maui.Graphics.Resource.Style.Base_TextAppearance_Widget_AppCompat_Toolbar_Title = global::GraphicsTester.Android.Resource.Style.Base_TextAppearance_Widget_AppCompat_Toolbar_Title; - global::Microsoft.Maui.Graphics.Resource.Style.Base_ThemeOverlay_AppCompat = global::GraphicsTester.Android.Resource.Style.Base_ThemeOverlay_AppCompat; - global::Microsoft.Maui.Graphics.Resource.Style.Base_ThemeOverlay_AppCompat_ActionBar = global::GraphicsTester.Android.Resource.Style.Base_ThemeOverlay_AppCompat_ActionBar; - global::Microsoft.Maui.Graphics.Resource.Style.Base_ThemeOverlay_AppCompat_Dark = global::GraphicsTester.Android.Resource.Style.Base_ThemeOverlay_AppCompat_Dark; - global::Microsoft.Maui.Graphics.Resource.Style.Base_ThemeOverlay_AppCompat_Dark_ActionBar = global::GraphicsTester.Android.Resource.Style.Base_ThemeOverlay_AppCompat_Dark_ActionBar; - global::Microsoft.Maui.Graphics.Resource.Style.Base_ThemeOverlay_AppCompat_Dialog = global::GraphicsTester.Android.Resource.Style.Base_ThemeOverlay_AppCompat_Dialog; - global::Microsoft.Maui.Graphics.Resource.Style.Base_ThemeOverlay_AppCompat_Dialog_Alert = global::GraphicsTester.Android.Resource.Style.Base_ThemeOverlay_AppCompat_Dialog_Alert; - global::Microsoft.Maui.Graphics.Resource.Style.Base_ThemeOverlay_AppCompat_Light = global::GraphicsTester.Android.Resource.Style.Base_ThemeOverlay_AppCompat_Light; - global::Microsoft.Maui.Graphics.Resource.Style.Base_ThemeOverlay_MaterialComponents_Dialog = global::GraphicsTester.Android.Resource.Style.Base_ThemeOverlay_MaterialComponents_Dialog; - global::Microsoft.Maui.Graphics.Resource.Style.Base_ThemeOverlay_MaterialComponents_Dialog_Alert = global::GraphicsTester.Android.Resource.Style.Base_ThemeOverlay_MaterialComponents_Dialog_Alert; - global::Microsoft.Maui.Graphics.Resource.Style.Base_ThemeOverlay_MaterialComponents_Dialog_Alert_Framework = global::GraphicsTester.Android.Resource.Style.Base_ThemeOverlay_MaterialComponents_Dialog_Alert_Framework; - global::Microsoft.Maui.Graphics.Resource.Style.Base_ThemeOverlay_MaterialComponents_Light_Dialog_Alert_Framework = global::GraphicsTester.Android.Resource.Style.Base_ThemeOverlay_MaterialComponents_Light_Dialog_Alert_Framework; - global::Microsoft.Maui.Graphics.Resource.Style.Base_ThemeOverlay_MaterialComponents_MaterialAlertDialog = global::GraphicsTester.Android.Resource.Style.Base_ThemeOverlay_MaterialComponents_MaterialAlertDialog; - global::Microsoft.Maui.Graphics.Resource.Style.Base_Theme_AppCompat = global::GraphicsTester.Android.Resource.Style.Base_Theme_AppCompat; - global::Microsoft.Maui.Graphics.Resource.Style.Base_Theme_AppCompat_CompactMenu = global::GraphicsTester.Android.Resource.Style.Base_Theme_AppCompat_CompactMenu; - global::Microsoft.Maui.Graphics.Resource.Style.Base_Theme_AppCompat_Dialog = global::GraphicsTester.Android.Resource.Style.Base_Theme_AppCompat_Dialog; - global::Microsoft.Maui.Graphics.Resource.Style.Base_Theme_AppCompat_DialogWhenLarge = global::GraphicsTester.Android.Resource.Style.Base_Theme_AppCompat_DialogWhenLarge; - global::Microsoft.Maui.Graphics.Resource.Style.Base_Theme_AppCompat_Dialog_Alert = global::GraphicsTester.Android.Resource.Style.Base_Theme_AppCompat_Dialog_Alert; - global::Microsoft.Maui.Graphics.Resource.Style.Base_Theme_AppCompat_Dialog_FixedSize = global::GraphicsTester.Android.Resource.Style.Base_Theme_AppCompat_Dialog_FixedSize; - global::Microsoft.Maui.Graphics.Resource.Style.Base_Theme_AppCompat_Dialog_MinWidth = global::GraphicsTester.Android.Resource.Style.Base_Theme_AppCompat_Dialog_MinWidth; - global::Microsoft.Maui.Graphics.Resource.Style.Base_Theme_AppCompat_Light = global::GraphicsTester.Android.Resource.Style.Base_Theme_AppCompat_Light; - global::Microsoft.Maui.Graphics.Resource.Style.Base_Theme_AppCompat_Light_DarkActionBar = global::GraphicsTester.Android.Resource.Style.Base_Theme_AppCompat_Light_DarkActionBar; - global::Microsoft.Maui.Graphics.Resource.Style.Base_Theme_AppCompat_Light_Dialog = global::GraphicsTester.Android.Resource.Style.Base_Theme_AppCompat_Light_Dialog; - global::Microsoft.Maui.Graphics.Resource.Style.Base_Theme_AppCompat_Light_DialogWhenLarge = global::GraphicsTester.Android.Resource.Style.Base_Theme_AppCompat_Light_DialogWhenLarge; - global::Microsoft.Maui.Graphics.Resource.Style.Base_Theme_AppCompat_Light_Dialog_Alert = global::GraphicsTester.Android.Resource.Style.Base_Theme_AppCompat_Light_Dialog_Alert; - global::Microsoft.Maui.Graphics.Resource.Style.Base_Theme_AppCompat_Light_Dialog_FixedSize = global::GraphicsTester.Android.Resource.Style.Base_Theme_AppCompat_Light_Dialog_FixedSize; - global::Microsoft.Maui.Graphics.Resource.Style.Base_Theme_AppCompat_Light_Dialog_MinWidth = global::GraphicsTester.Android.Resource.Style.Base_Theme_AppCompat_Light_Dialog_MinWidth; - global::Microsoft.Maui.Graphics.Resource.Style.Base_Theme_MaterialComponents = global::GraphicsTester.Android.Resource.Style.Base_Theme_MaterialComponents; - global::Microsoft.Maui.Graphics.Resource.Style.Base_Theme_MaterialComponents_Bridge = global::GraphicsTester.Android.Resource.Style.Base_Theme_MaterialComponents_Bridge; - global::Microsoft.Maui.Graphics.Resource.Style.Base_Theme_MaterialComponents_CompactMenu = global::GraphicsTester.Android.Resource.Style.Base_Theme_MaterialComponents_CompactMenu; - global::Microsoft.Maui.Graphics.Resource.Style.Base_Theme_MaterialComponents_Dialog = global::GraphicsTester.Android.Resource.Style.Base_Theme_MaterialComponents_Dialog; - global::Microsoft.Maui.Graphics.Resource.Style.Base_Theme_MaterialComponents_DialogWhenLarge = global::GraphicsTester.Android.Resource.Style.Base_Theme_MaterialComponents_DialogWhenLarge; - global::Microsoft.Maui.Graphics.Resource.Style.Base_Theme_MaterialComponents_Dialog_Alert = global::GraphicsTester.Android.Resource.Style.Base_Theme_MaterialComponents_Dialog_Alert; - global::Microsoft.Maui.Graphics.Resource.Style.Base_Theme_MaterialComponents_Dialog_Bridge = global::GraphicsTester.Android.Resource.Style.Base_Theme_MaterialComponents_Dialog_Bridge; - global::Microsoft.Maui.Graphics.Resource.Style.Base_Theme_MaterialComponents_Dialog_FixedSize = global::GraphicsTester.Android.Resource.Style.Base_Theme_MaterialComponents_Dialog_FixedSize; - global::Microsoft.Maui.Graphics.Resource.Style.Base_Theme_MaterialComponents_Dialog_MinWidth = global::GraphicsTester.Android.Resource.Style.Base_Theme_MaterialComponents_Dialog_MinWidth; - global::Microsoft.Maui.Graphics.Resource.Style.Base_Theme_MaterialComponents_Light = global::GraphicsTester.Android.Resource.Style.Base_Theme_MaterialComponents_Light; - global::Microsoft.Maui.Graphics.Resource.Style.Base_Theme_MaterialComponents_Light_Bridge = global::GraphicsTester.Android.Resource.Style.Base_Theme_MaterialComponents_Light_Bridge; - global::Microsoft.Maui.Graphics.Resource.Style.Base_Theme_MaterialComponents_Light_DarkActionBar = global::GraphicsTester.Android.Resource.Style.Base_Theme_MaterialComponents_Light_DarkActionBar; - global::Microsoft.Maui.Graphics.Resource.Style.Base_Theme_MaterialComponents_Light_DarkActionBar_Bridge = global::GraphicsTester.Android.Resource.Style.Base_Theme_MaterialComponents_Light_DarkActionBar_Bridge; - global::Microsoft.Maui.Graphics.Resource.Style.Base_Theme_MaterialComponents_Light_Dialog = global::GraphicsTester.Android.Resource.Style.Base_Theme_MaterialComponents_Light_Dialog; - global::Microsoft.Maui.Graphics.Resource.Style.Base_Theme_MaterialComponents_Light_DialogWhenLarge = global::GraphicsTester.Android.Resource.Style.Base_Theme_MaterialComponents_Light_DialogWhenLarge; - global::Microsoft.Maui.Graphics.Resource.Style.Base_Theme_MaterialComponents_Light_Dialog_Alert = global::GraphicsTester.Android.Resource.Style.Base_Theme_MaterialComponents_Light_Dialog_Alert; - global::Microsoft.Maui.Graphics.Resource.Style.Base_Theme_MaterialComponents_Light_Dialog_Bridge = global::GraphicsTester.Android.Resource.Style.Base_Theme_MaterialComponents_Light_Dialog_Bridge; - global::Microsoft.Maui.Graphics.Resource.Style.Base_Theme_MaterialComponents_Light_Dialog_FixedSize = global::GraphicsTester.Android.Resource.Style.Base_Theme_MaterialComponents_Light_Dialog_FixedSize; - global::Microsoft.Maui.Graphics.Resource.Style.Base_Theme_MaterialComponents_Light_Dialog_MinWidth = global::GraphicsTester.Android.Resource.Style.Base_Theme_MaterialComponents_Light_Dialog_MinWidth; - global::Microsoft.Maui.Graphics.Resource.Style.Base_V14_ThemeOverlay_MaterialComponents_Dialog = global::GraphicsTester.Android.Resource.Style.Base_V14_ThemeOverlay_MaterialComponents_Dialog; - global::Microsoft.Maui.Graphics.Resource.Style.Base_V14_ThemeOverlay_MaterialComponents_Dialog_Alert = global::GraphicsTester.Android.Resource.Style.Base_V14_ThemeOverlay_MaterialComponents_Dialog_Alert; - global::Microsoft.Maui.Graphics.Resource.Style.Base_V14_ThemeOverlay_MaterialComponents_MaterialAlertDialog = global::GraphicsTester.Android.Resource.Style.Base_V14_ThemeOverlay_MaterialComponents_MaterialAlertDialog; - global::Microsoft.Maui.Graphics.Resource.Style.Base_V14_Theme_MaterialComponents = global::GraphicsTester.Android.Resource.Style.Base_V14_Theme_MaterialComponents; - global::Microsoft.Maui.Graphics.Resource.Style.Base_V14_Theme_MaterialComponents_Bridge = global::GraphicsTester.Android.Resource.Style.Base_V14_Theme_MaterialComponents_Bridge; - global::Microsoft.Maui.Graphics.Resource.Style.Base_V14_Theme_MaterialComponents_Dialog = global::GraphicsTester.Android.Resource.Style.Base_V14_Theme_MaterialComponents_Dialog; - global::Microsoft.Maui.Graphics.Resource.Style.Base_V14_Theme_MaterialComponents_Dialog_Bridge = global::GraphicsTester.Android.Resource.Style.Base_V14_Theme_MaterialComponents_Dialog_Bridge; - global::Microsoft.Maui.Graphics.Resource.Style.Base_V14_Theme_MaterialComponents_Light = global::GraphicsTester.Android.Resource.Style.Base_V14_Theme_MaterialComponents_Light; - global::Microsoft.Maui.Graphics.Resource.Style.Base_V14_Theme_MaterialComponents_Light_Bridge = global::GraphicsTester.Android.Resource.Style.Base_V14_Theme_MaterialComponents_Light_Bridge; - global::Microsoft.Maui.Graphics.Resource.Style.Base_V14_Theme_MaterialComponents_Light_DarkActionBar_Bridge = global::GraphicsTester.Android.Resource.Style.Base_V14_Theme_MaterialComponents_Light_DarkActionBar_Bridge; - global::Microsoft.Maui.Graphics.Resource.Style.Base_V14_Theme_MaterialComponents_Light_Dialog = global::GraphicsTester.Android.Resource.Style.Base_V14_Theme_MaterialComponents_Light_Dialog; - global::Microsoft.Maui.Graphics.Resource.Style.Base_V14_Theme_MaterialComponents_Light_Dialog_Bridge = global::GraphicsTester.Android.Resource.Style.Base_V14_Theme_MaterialComponents_Light_Dialog_Bridge; - global::Microsoft.Maui.Graphics.Resource.Style.Base_V21_ThemeOverlay_AppCompat_Dialog = global::GraphicsTester.Android.Resource.Style.Base_V21_ThemeOverlay_AppCompat_Dialog; - global::Microsoft.Maui.Graphics.Resource.Style.Base_V21_Theme_AppCompat = global::GraphicsTester.Android.Resource.Style.Base_V21_Theme_AppCompat; - global::Microsoft.Maui.Graphics.Resource.Style.Base_V21_Theme_AppCompat_Dialog = global::GraphicsTester.Android.Resource.Style.Base_V21_Theme_AppCompat_Dialog; - global::Microsoft.Maui.Graphics.Resource.Style.Base_V21_Theme_AppCompat_Light = global::GraphicsTester.Android.Resource.Style.Base_V21_Theme_AppCompat_Light; - global::Microsoft.Maui.Graphics.Resource.Style.Base_V21_Theme_AppCompat_Light_Dialog = global::GraphicsTester.Android.Resource.Style.Base_V21_Theme_AppCompat_Light_Dialog; - global::Microsoft.Maui.Graphics.Resource.Style.Base_V21_Theme_MaterialComponents = global::GraphicsTester.Android.Resource.Style.Base_V21_Theme_MaterialComponents; - global::Microsoft.Maui.Graphics.Resource.Style.Base_V21_Theme_MaterialComponents_Dialog = global::GraphicsTester.Android.Resource.Style.Base_V21_Theme_MaterialComponents_Dialog; - global::Microsoft.Maui.Graphics.Resource.Style.Base_V21_Theme_MaterialComponents_Light = global::GraphicsTester.Android.Resource.Style.Base_V21_Theme_MaterialComponents_Light; - global::Microsoft.Maui.Graphics.Resource.Style.Base_V21_Theme_MaterialComponents_Light_Dialog = global::GraphicsTester.Android.Resource.Style.Base_V21_Theme_MaterialComponents_Light_Dialog; - global::Microsoft.Maui.Graphics.Resource.Style.Base_V22_Theme_AppCompat = global::GraphicsTester.Android.Resource.Style.Base_V22_Theme_AppCompat; - global::Microsoft.Maui.Graphics.Resource.Style.Base_V22_Theme_AppCompat_Light = global::GraphicsTester.Android.Resource.Style.Base_V22_Theme_AppCompat_Light; - global::Microsoft.Maui.Graphics.Resource.Style.Base_V23_Theme_AppCompat = global::GraphicsTester.Android.Resource.Style.Base_V23_Theme_AppCompat; - global::Microsoft.Maui.Graphics.Resource.Style.Base_V23_Theme_AppCompat_Light = global::GraphicsTester.Android.Resource.Style.Base_V23_Theme_AppCompat_Light; - global::Microsoft.Maui.Graphics.Resource.Style.Base_V26_Theme_AppCompat = global::GraphicsTester.Android.Resource.Style.Base_V26_Theme_AppCompat; - global::Microsoft.Maui.Graphics.Resource.Style.Base_V26_Theme_AppCompat_Light = global::GraphicsTester.Android.Resource.Style.Base_V26_Theme_AppCompat_Light; - global::Microsoft.Maui.Graphics.Resource.Style.Base_V26_Widget_AppCompat_Toolbar = global::GraphicsTester.Android.Resource.Style.Base_V26_Widget_AppCompat_Toolbar; - global::Microsoft.Maui.Graphics.Resource.Style.Base_V28_Theme_AppCompat = global::GraphicsTester.Android.Resource.Style.Base_V28_Theme_AppCompat; - global::Microsoft.Maui.Graphics.Resource.Style.Base_V28_Theme_AppCompat_Light = global::GraphicsTester.Android.Resource.Style.Base_V28_Theme_AppCompat_Light; - global::Microsoft.Maui.Graphics.Resource.Style.Base_V7_ThemeOverlay_AppCompat_Dialog = global::GraphicsTester.Android.Resource.Style.Base_V7_ThemeOverlay_AppCompat_Dialog; - global::Microsoft.Maui.Graphics.Resource.Style.Base_V7_Theme_AppCompat = global::GraphicsTester.Android.Resource.Style.Base_V7_Theme_AppCompat; - global::Microsoft.Maui.Graphics.Resource.Style.Base_V7_Theme_AppCompat_Dialog = global::GraphicsTester.Android.Resource.Style.Base_V7_Theme_AppCompat_Dialog; - global::Microsoft.Maui.Graphics.Resource.Style.Base_V7_Theme_AppCompat_Light = global::GraphicsTester.Android.Resource.Style.Base_V7_Theme_AppCompat_Light; - global::Microsoft.Maui.Graphics.Resource.Style.Base_V7_Theme_AppCompat_Light_Dialog = global::GraphicsTester.Android.Resource.Style.Base_V7_Theme_AppCompat_Light_Dialog; - global::Microsoft.Maui.Graphics.Resource.Style.Base_V7_Widget_AppCompat_AutoCompleteTextView = global::GraphicsTester.Android.Resource.Style.Base_V7_Widget_AppCompat_AutoCompleteTextView; - global::Microsoft.Maui.Graphics.Resource.Style.Base_V7_Widget_AppCompat_EditText = global::GraphicsTester.Android.Resource.Style.Base_V7_Widget_AppCompat_EditText; - global::Microsoft.Maui.Graphics.Resource.Style.Base_V7_Widget_AppCompat_Toolbar = global::GraphicsTester.Android.Resource.Style.Base_V7_Widget_AppCompat_Toolbar; - global::Microsoft.Maui.Graphics.Resource.Style.Base_Widget_AppCompat_ActionBar = global::GraphicsTester.Android.Resource.Style.Base_Widget_AppCompat_ActionBar; - global::Microsoft.Maui.Graphics.Resource.Style.Base_Widget_AppCompat_ActionBar_Solid = global::GraphicsTester.Android.Resource.Style.Base_Widget_AppCompat_ActionBar_Solid; - global::Microsoft.Maui.Graphics.Resource.Style.Base_Widget_AppCompat_ActionBar_TabBar = global::GraphicsTester.Android.Resource.Style.Base_Widget_AppCompat_ActionBar_TabBar; - global::Microsoft.Maui.Graphics.Resource.Style.Base_Widget_AppCompat_ActionBar_TabText = global::GraphicsTester.Android.Resource.Style.Base_Widget_AppCompat_ActionBar_TabText; - global::Microsoft.Maui.Graphics.Resource.Style.Base_Widget_AppCompat_ActionBar_TabView = global::GraphicsTester.Android.Resource.Style.Base_Widget_AppCompat_ActionBar_TabView; - global::Microsoft.Maui.Graphics.Resource.Style.Base_Widget_AppCompat_ActionButton = global::GraphicsTester.Android.Resource.Style.Base_Widget_AppCompat_ActionButton; - global::Microsoft.Maui.Graphics.Resource.Style.Base_Widget_AppCompat_ActionButton_CloseMode = global::GraphicsTester.Android.Resource.Style.Base_Widget_AppCompat_ActionButton_CloseMode; - global::Microsoft.Maui.Graphics.Resource.Style.Base_Widget_AppCompat_ActionButton_Overflow = global::GraphicsTester.Android.Resource.Style.Base_Widget_AppCompat_ActionButton_Overflow; - global::Microsoft.Maui.Graphics.Resource.Style.Base_Widget_AppCompat_ActionMode = global::GraphicsTester.Android.Resource.Style.Base_Widget_AppCompat_ActionMode; - global::Microsoft.Maui.Graphics.Resource.Style.Base_Widget_AppCompat_ActivityChooserView = global::GraphicsTester.Android.Resource.Style.Base_Widget_AppCompat_ActivityChooserView; - global::Microsoft.Maui.Graphics.Resource.Style.Base_Widget_AppCompat_AutoCompleteTextView = global::GraphicsTester.Android.Resource.Style.Base_Widget_AppCompat_AutoCompleteTextView; - global::Microsoft.Maui.Graphics.Resource.Style.Base_Widget_AppCompat_Button = global::GraphicsTester.Android.Resource.Style.Base_Widget_AppCompat_Button; - global::Microsoft.Maui.Graphics.Resource.Style.Base_Widget_AppCompat_ButtonBar = global::GraphicsTester.Android.Resource.Style.Base_Widget_AppCompat_ButtonBar; - global::Microsoft.Maui.Graphics.Resource.Style.Base_Widget_AppCompat_ButtonBar_AlertDialog = global::GraphicsTester.Android.Resource.Style.Base_Widget_AppCompat_ButtonBar_AlertDialog; - global::Microsoft.Maui.Graphics.Resource.Style.Base_Widget_AppCompat_Button_Borderless = global::GraphicsTester.Android.Resource.Style.Base_Widget_AppCompat_Button_Borderless; - global::Microsoft.Maui.Graphics.Resource.Style.Base_Widget_AppCompat_Button_Borderless_Colored = global::GraphicsTester.Android.Resource.Style.Base_Widget_AppCompat_Button_Borderless_Colored; - global::Microsoft.Maui.Graphics.Resource.Style.Base_Widget_AppCompat_Button_ButtonBar_AlertDialog = global::GraphicsTester.Android.Resource.Style.Base_Widget_AppCompat_Button_ButtonBar_AlertDialog; - global::Microsoft.Maui.Graphics.Resource.Style.Base_Widget_AppCompat_Button_Colored = global::GraphicsTester.Android.Resource.Style.Base_Widget_AppCompat_Button_Colored; - global::Microsoft.Maui.Graphics.Resource.Style.Base_Widget_AppCompat_Button_Small = global::GraphicsTester.Android.Resource.Style.Base_Widget_AppCompat_Button_Small; - global::Microsoft.Maui.Graphics.Resource.Style.Base_Widget_AppCompat_CompoundButton_CheckBox = global::GraphicsTester.Android.Resource.Style.Base_Widget_AppCompat_CompoundButton_CheckBox; - global::Microsoft.Maui.Graphics.Resource.Style.Base_Widget_AppCompat_CompoundButton_RadioButton = global::GraphicsTester.Android.Resource.Style.Base_Widget_AppCompat_CompoundButton_RadioButton; - global::Microsoft.Maui.Graphics.Resource.Style.Base_Widget_AppCompat_CompoundButton_Switch = global::GraphicsTester.Android.Resource.Style.Base_Widget_AppCompat_CompoundButton_Switch; - global::Microsoft.Maui.Graphics.Resource.Style.Base_Widget_AppCompat_DrawerArrowToggle = global::GraphicsTester.Android.Resource.Style.Base_Widget_AppCompat_DrawerArrowToggle; - global::Microsoft.Maui.Graphics.Resource.Style.Base_Widget_AppCompat_DrawerArrowToggle_Common = global::GraphicsTester.Android.Resource.Style.Base_Widget_AppCompat_DrawerArrowToggle_Common; - global::Microsoft.Maui.Graphics.Resource.Style.Base_Widget_AppCompat_DropDownItem_Spinner = global::GraphicsTester.Android.Resource.Style.Base_Widget_AppCompat_DropDownItem_Spinner; - global::Microsoft.Maui.Graphics.Resource.Style.Base_Widget_AppCompat_EditText = global::GraphicsTester.Android.Resource.Style.Base_Widget_AppCompat_EditText; - global::Microsoft.Maui.Graphics.Resource.Style.Base_Widget_AppCompat_ImageButton = global::GraphicsTester.Android.Resource.Style.Base_Widget_AppCompat_ImageButton; - global::Microsoft.Maui.Graphics.Resource.Style.Base_Widget_AppCompat_Light_ActionBar = global::GraphicsTester.Android.Resource.Style.Base_Widget_AppCompat_Light_ActionBar; - global::Microsoft.Maui.Graphics.Resource.Style.Base_Widget_AppCompat_Light_ActionBar_Solid = global::GraphicsTester.Android.Resource.Style.Base_Widget_AppCompat_Light_ActionBar_Solid; - global::Microsoft.Maui.Graphics.Resource.Style.Base_Widget_AppCompat_Light_ActionBar_TabBar = global::GraphicsTester.Android.Resource.Style.Base_Widget_AppCompat_Light_ActionBar_TabBar; - global::Microsoft.Maui.Graphics.Resource.Style.Base_Widget_AppCompat_Light_ActionBar_TabText = global::GraphicsTester.Android.Resource.Style.Base_Widget_AppCompat_Light_ActionBar_TabText; - global::Microsoft.Maui.Graphics.Resource.Style.Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse = global::GraphicsTester.Android.Resource.Style.Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse; - global::Microsoft.Maui.Graphics.Resource.Style.Base_Widget_AppCompat_Light_ActionBar_TabView = global::GraphicsTester.Android.Resource.Style.Base_Widget_AppCompat_Light_ActionBar_TabView; - global::Microsoft.Maui.Graphics.Resource.Style.Base_Widget_AppCompat_Light_PopupMenu = global::GraphicsTester.Android.Resource.Style.Base_Widget_AppCompat_Light_PopupMenu; - global::Microsoft.Maui.Graphics.Resource.Style.Base_Widget_AppCompat_Light_PopupMenu_Overflow = global::GraphicsTester.Android.Resource.Style.Base_Widget_AppCompat_Light_PopupMenu_Overflow; - global::Microsoft.Maui.Graphics.Resource.Style.Base_Widget_AppCompat_ListMenuView = global::GraphicsTester.Android.Resource.Style.Base_Widget_AppCompat_ListMenuView; - global::Microsoft.Maui.Graphics.Resource.Style.Base_Widget_AppCompat_ListPopupWindow = global::GraphicsTester.Android.Resource.Style.Base_Widget_AppCompat_ListPopupWindow; - global::Microsoft.Maui.Graphics.Resource.Style.Base_Widget_AppCompat_ListView = global::GraphicsTester.Android.Resource.Style.Base_Widget_AppCompat_ListView; - global::Microsoft.Maui.Graphics.Resource.Style.Base_Widget_AppCompat_ListView_DropDown = global::GraphicsTester.Android.Resource.Style.Base_Widget_AppCompat_ListView_DropDown; - global::Microsoft.Maui.Graphics.Resource.Style.Base_Widget_AppCompat_ListView_Menu = global::GraphicsTester.Android.Resource.Style.Base_Widget_AppCompat_ListView_Menu; - global::Microsoft.Maui.Graphics.Resource.Style.Base_Widget_AppCompat_PopupMenu = global::GraphicsTester.Android.Resource.Style.Base_Widget_AppCompat_PopupMenu; - global::Microsoft.Maui.Graphics.Resource.Style.Base_Widget_AppCompat_PopupMenu_Overflow = global::GraphicsTester.Android.Resource.Style.Base_Widget_AppCompat_PopupMenu_Overflow; - global::Microsoft.Maui.Graphics.Resource.Style.Base_Widget_AppCompat_PopupWindow = global::GraphicsTester.Android.Resource.Style.Base_Widget_AppCompat_PopupWindow; - global::Microsoft.Maui.Graphics.Resource.Style.Base_Widget_AppCompat_ProgressBar = global::GraphicsTester.Android.Resource.Style.Base_Widget_AppCompat_ProgressBar; - global::Microsoft.Maui.Graphics.Resource.Style.Base_Widget_AppCompat_ProgressBar_Horizontal = global::GraphicsTester.Android.Resource.Style.Base_Widget_AppCompat_ProgressBar_Horizontal; - global::Microsoft.Maui.Graphics.Resource.Style.Base_Widget_AppCompat_RatingBar = global::GraphicsTester.Android.Resource.Style.Base_Widget_AppCompat_RatingBar; - global::Microsoft.Maui.Graphics.Resource.Style.Base_Widget_AppCompat_RatingBar_Indicator = global::GraphicsTester.Android.Resource.Style.Base_Widget_AppCompat_RatingBar_Indicator; - global::Microsoft.Maui.Graphics.Resource.Style.Base_Widget_AppCompat_RatingBar_Small = global::GraphicsTester.Android.Resource.Style.Base_Widget_AppCompat_RatingBar_Small; - global::Microsoft.Maui.Graphics.Resource.Style.Base_Widget_AppCompat_SearchView = global::GraphicsTester.Android.Resource.Style.Base_Widget_AppCompat_SearchView; - global::Microsoft.Maui.Graphics.Resource.Style.Base_Widget_AppCompat_SearchView_ActionBar = global::GraphicsTester.Android.Resource.Style.Base_Widget_AppCompat_SearchView_ActionBar; - global::Microsoft.Maui.Graphics.Resource.Style.Base_Widget_AppCompat_SeekBar = global::GraphicsTester.Android.Resource.Style.Base_Widget_AppCompat_SeekBar; - global::Microsoft.Maui.Graphics.Resource.Style.Base_Widget_AppCompat_SeekBar_Discrete = global::GraphicsTester.Android.Resource.Style.Base_Widget_AppCompat_SeekBar_Discrete; - global::Microsoft.Maui.Graphics.Resource.Style.Base_Widget_AppCompat_Spinner = global::GraphicsTester.Android.Resource.Style.Base_Widget_AppCompat_Spinner; - global::Microsoft.Maui.Graphics.Resource.Style.Base_Widget_AppCompat_Spinner_Underlined = global::GraphicsTester.Android.Resource.Style.Base_Widget_AppCompat_Spinner_Underlined; - global::Microsoft.Maui.Graphics.Resource.Style.Base_Widget_AppCompat_TextView = global::GraphicsTester.Android.Resource.Style.Base_Widget_AppCompat_TextView; - global::Microsoft.Maui.Graphics.Resource.Style.Base_Widget_AppCompat_TextView_SpinnerItem = global::GraphicsTester.Android.Resource.Style.Base_Widget_AppCompat_TextView_SpinnerItem; - global::Microsoft.Maui.Graphics.Resource.Style.Base_Widget_AppCompat_Toolbar = global::GraphicsTester.Android.Resource.Style.Base_Widget_AppCompat_Toolbar; - global::Microsoft.Maui.Graphics.Resource.Style.Base_Widget_AppCompat_Toolbar_Button_Navigation = global::GraphicsTester.Android.Resource.Style.Base_Widget_AppCompat_Toolbar_Button_Navigation; - global::Microsoft.Maui.Graphics.Resource.Style.Base_Widget_Design_TabLayout = global::GraphicsTester.Android.Resource.Style.Base_Widget_Design_TabLayout; - global::Microsoft.Maui.Graphics.Resource.Style.Base_Widget_MaterialComponents_AutoCompleteTextView = global::GraphicsTester.Android.Resource.Style.Base_Widget_MaterialComponents_AutoCompleteTextView; - global::Microsoft.Maui.Graphics.Resource.Style.Base_Widget_MaterialComponents_CheckedTextView = global::GraphicsTester.Android.Resource.Style.Base_Widget_MaterialComponents_CheckedTextView; - global::Microsoft.Maui.Graphics.Resource.Style.Base_Widget_MaterialComponents_Chip = global::GraphicsTester.Android.Resource.Style.Base_Widget_MaterialComponents_Chip; - global::Microsoft.Maui.Graphics.Resource.Style.Base_Widget_MaterialComponents_MaterialCalendar_NavigationButton = global::GraphicsTester.Android.Resource.Style.Base_Widget_MaterialComponents_MaterialCalendar_NavigationButton; - global::Microsoft.Maui.Graphics.Resource.Style.Base_Widget_MaterialComponents_PopupMenu = global::GraphicsTester.Android.Resource.Style.Base_Widget_MaterialComponents_PopupMenu; - global::Microsoft.Maui.Graphics.Resource.Style.Base_Widget_MaterialComponents_PopupMenu_ContextMenu = global::GraphicsTester.Android.Resource.Style.Base_Widget_MaterialComponents_PopupMenu_ContextMenu; - global::Microsoft.Maui.Graphics.Resource.Style.Base_Widget_MaterialComponents_PopupMenu_ListPopupWindow = global::GraphicsTester.Android.Resource.Style.Base_Widget_MaterialComponents_PopupMenu_ListPopupWindow; - global::Microsoft.Maui.Graphics.Resource.Style.Base_Widget_MaterialComponents_PopupMenu_Overflow = global::GraphicsTester.Android.Resource.Style.Base_Widget_MaterialComponents_PopupMenu_Overflow; - global::Microsoft.Maui.Graphics.Resource.Style.Base_Widget_MaterialComponents_Slider = global::GraphicsTester.Android.Resource.Style.Base_Widget_MaterialComponents_Slider; - global::Microsoft.Maui.Graphics.Resource.Style.Base_Widget_MaterialComponents_Snackbar = global::GraphicsTester.Android.Resource.Style.Base_Widget_MaterialComponents_Snackbar; - global::Microsoft.Maui.Graphics.Resource.Style.Base_Widget_MaterialComponents_TextInputEditText = global::GraphicsTester.Android.Resource.Style.Base_Widget_MaterialComponents_TextInputEditText; - global::Microsoft.Maui.Graphics.Resource.Style.Base_Widget_MaterialComponents_TextInputLayout = global::GraphicsTester.Android.Resource.Style.Base_Widget_MaterialComponents_TextInputLayout; - global::Microsoft.Maui.Graphics.Resource.Style.Base_Widget_MaterialComponents_TextView = global::GraphicsTester.Android.Resource.Style.Base_Widget_MaterialComponents_TextView; - global::Microsoft.Maui.Graphics.Resource.Style.CardView = global::GraphicsTester.Android.Resource.Style.CardView; - global::Microsoft.Maui.Graphics.Resource.Style.CardView_Dark = global::GraphicsTester.Android.Resource.Style.CardView_Dark; - global::Microsoft.Maui.Graphics.Resource.Style.CardView_Light = global::GraphicsTester.Android.Resource.Style.CardView_Light; - global::Microsoft.Maui.Graphics.Resource.Style.EmptyTheme = global::GraphicsTester.Android.Resource.Style.EmptyTheme; - global::Microsoft.Maui.Graphics.Resource.Style.MaterialAlertDialog_MaterialComponents = global::GraphicsTester.Android.Resource.Style.MaterialAlertDialog_MaterialComponents; - global::Microsoft.Maui.Graphics.Resource.Style.MaterialAlertDialog_MaterialComponents_Body_Text = global::GraphicsTester.Android.Resource.Style.MaterialAlertDialog_MaterialComponents_Body_Text; - global::Microsoft.Maui.Graphics.Resource.Style.MaterialAlertDialog_MaterialComponents_Picker_Date_Calendar = global::GraphicsTester.Android.Resource.Style.MaterialAlertDialog_MaterialComponents_Picker_Date_Calendar; - global::Microsoft.Maui.Graphics.Resource.Style.MaterialAlertDialog_MaterialComponents_Picker_Date_Spinner = global::GraphicsTester.Android.Resource.Style.MaterialAlertDialog_MaterialComponents_Picker_Date_Spinner; - global::Microsoft.Maui.Graphics.Resource.Style.MaterialAlertDialog_MaterialComponents_Title_Icon = global::GraphicsTester.Android.Resource.Style.MaterialAlertDialog_MaterialComponents_Title_Icon; - global::Microsoft.Maui.Graphics.Resource.Style.MaterialAlertDialog_MaterialComponents_Title_Icon_CenterStacked = global::GraphicsTester.Android.Resource.Style.MaterialAlertDialog_MaterialComponents_Title_Icon_CenterStacked; - global::Microsoft.Maui.Graphics.Resource.Style.MaterialAlertDialog_MaterialComponents_Title_Panel = global::GraphicsTester.Android.Resource.Style.MaterialAlertDialog_MaterialComponents_Title_Panel; - global::Microsoft.Maui.Graphics.Resource.Style.MaterialAlertDialog_MaterialComponents_Title_Panel_CenterStacked = global::GraphicsTester.Android.Resource.Style.MaterialAlertDialog_MaterialComponents_Title_Panel_CenterStacked; - global::Microsoft.Maui.Graphics.Resource.Style.MaterialAlertDialog_MaterialComponents_Title_Text = global::GraphicsTester.Android.Resource.Style.MaterialAlertDialog_MaterialComponents_Title_Text; - global::Microsoft.Maui.Graphics.Resource.Style.MaterialAlertDialog_MaterialComponents_Title_Text_CenterStacked = global::GraphicsTester.Android.Resource.Style.MaterialAlertDialog_MaterialComponents_Title_Text_CenterStacked; - global::Microsoft.Maui.Graphics.Resource.Style.Platform_AppCompat = global::GraphicsTester.Android.Resource.Style.Platform_AppCompat; - global::Microsoft.Maui.Graphics.Resource.Style.Platform_AppCompat_Light = global::GraphicsTester.Android.Resource.Style.Platform_AppCompat_Light; - global::Microsoft.Maui.Graphics.Resource.Style.Platform_MaterialComponents = global::GraphicsTester.Android.Resource.Style.Platform_MaterialComponents; - global::Microsoft.Maui.Graphics.Resource.Style.Platform_MaterialComponents_Dialog = global::GraphicsTester.Android.Resource.Style.Platform_MaterialComponents_Dialog; - global::Microsoft.Maui.Graphics.Resource.Style.Platform_MaterialComponents_Light = global::GraphicsTester.Android.Resource.Style.Platform_MaterialComponents_Light; - global::Microsoft.Maui.Graphics.Resource.Style.Platform_MaterialComponents_Light_Dialog = global::GraphicsTester.Android.Resource.Style.Platform_MaterialComponents_Light_Dialog; - global::Microsoft.Maui.Graphics.Resource.Style.Platform_ThemeOverlay_AppCompat = global::GraphicsTester.Android.Resource.Style.Platform_ThemeOverlay_AppCompat; - global::Microsoft.Maui.Graphics.Resource.Style.Platform_ThemeOverlay_AppCompat_Dark = global::GraphicsTester.Android.Resource.Style.Platform_ThemeOverlay_AppCompat_Dark; - global::Microsoft.Maui.Graphics.Resource.Style.Platform_ThemeOverlay_AppCompat_Light = global::GraphicsTester.Android.Resource.Style.Platform_ThemeOverlay_AppCompat_Light; - global::Microsoft.Maui.Graphics.Resource.Style.Platform_V21_AppCompat = global::GraphicsTester.Android.Resource.Style.Platform_V21_AppCompat; - global::Microsoft.Maui.Graphics.Resource.Style.Platform_V21_AppCompat_Light = global::GraphicsTester.Android.Resource.Style.Platform_V21_AppCompat_Light; - global::Microsoft.Maui.Graphics.Resource.Style.Platform_V25_AppCompat = global::GraphicsTester.Android.Resource.Style.Platform_V25_AppCompat; - global::Microsoft.Maui.Graphics.Resource.Style.Platform_V25_AppCompat_Light = global::GraphicsTester.Android.Resource.Style.Platform_V25_AppCompat_Light; - global::Microsoft.Maui.Graphics.Resource.Style.Platform_Widget_AppCompat_Spinner = global::GraphicsTester.Android.Resource.Style.Platform_Widget_AppCompat_Spinner; - global::Microsoft.Maui.Graphics.Resource.Style.RtlOverlay_DialogWindowTitle_AppCompat = global::GraphicsTester.Android.Resource.Style.RtlOverlay_DialogWindowTitle_AppCompat; - global::Microsoft.Maui.Graphics.Resource.Style.RtlOverlay_Widget_AppCompat_ActionBar_TitleItem = global::GraphicsTester.Android.Resource.Style.RtlOverlay_Widget_AppCompat_ActionBar_TitleItem; - global::Microsoft.Maui.Graphics.Resource.Style.RtlOverlay_Widget_AppCompat_DialogTitle_Icon = global::GraphicsTester.Android.Resource.Style.RtlOverlay_Widget_AppCompat_DialogTitle_Icon; - global::Microsoft.Maui.Graphics.Resource.Style.RtlOverlay_Widget_AppCompat_PopupMenuItem = global::GraphicsTester.Android.Resource.Style.RtlOverlay_Widget_AppCompat_PopupMenuItem; - global::Microsoft.Maui.Graphics.Resource.Style.RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup = global::GraphicsTester.Android.Resource.Style.RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup; - global::Microsoft.Maui.Graphics.Resource.Style.RtlOverlay_Widget_AppCompat_PopupMenuItem_Shortcut = global::GraphicsTester.Android.Resource.Style.RtlOverlay_Widget_AppCompat_PopupMenuItem_Shortcut; - global::Microsoft.Maui.Graphics.Resource.Style.RtlOverlay_Widget_AppCompat_PopupMenuItem_SubmenuArrow = global::GraphicsTester.Android.Resource.Style.RtlOverlay_Widget_AppCompat_PopupMenuItem_SubmenuArrow; - global::Microsoft.Maui.Graphics.Resource.Style.RtlOverlay_Widget_AppCompat_PopupMenuItem_Text = global::GraphicsTester.Android.Resource.Style.RtlOverlay_Widget_AppCompat_PopupMenuItem_Text; - global::Microsoft.Maui.Graphics.Resource.Style.RtlOverlay_Widget_AppCompat_PopupMenuItem_Title = global::GraphicsTester.Android.Resource.Style.RtlOverlay_Widget_AppCompat_PopupMenuItem_Title; - global::Microsoft.Maui.Graphics.Resource.Style.RtlOverlay_Widget_AppCompat_SearchView_MagIcon = global::GraphicsTester.Android.Resource.Style.RtlOverlay_Widget_AppCompat_SearchView_MagIcon; - global::Microsoft.Maui.Graphics.Resource.Style.RtlOverlay_Widget_AppCompat_Search_DropDown = global::GraphicsTester.Android.Resource.Style.RtlOverlay_Widget_AppCompat_Search_DropDown; - global::Microsoft.Maui.Graphics.Resource.Style.RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 = global::GraphicsTester.Android.Resource.Style.RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1; - global::Microsoft.Maui.Graphics.Resource.Style.RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 = global::GraphicsTester.Android.Resource.Style.RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2; - global::Microsoft.Maui.Graphics.Resource.Style.RtlOverlay_Widget_AppCompat_Search_DropDown_Query = global::GraphicsTester.Android.Resource.Style.RtlOverlay_Widget_AppCompat_Search_DropDown_Query; - global::Microsoft.Maui.Graphics.Resource.Style.RtlOverlay_Widget_AppCompat_Search_DropDown_Text = global::GraphicsTester.Android.Resource.Style.RtlOverlay_Widget_AppCompat_Search_DropDown_Text; - global::Microsoft.Maui.Graphics.Resource.Style.RtlUnderlay_Widget_AppCompat_ActionButton = global::GraphicsTester.Android.Resource.Style.RtlUnderlay_Widget_AppCompat_ActionButton; - global::Microsoft.Maui.Graphics.Resource.Style.RtlUnderlay_Widget_AppCompat_ActionButton_Overflow = global::GraphicsTester.Android.Resource.Style.RtlUnderlay_Widget_AppCompat_ActionButton_Overflow; - global::Microsoft.Maui.Graphics.Resource.Style.ShapeAppearanceOverlay = global::GraphicsTester.Android.Resource.Style.ShapeAppearanceOverlay; - global::Microsoft.Maui.Graphics.Resource.Style.ShapeAppearanceOverlay_BottomLeftDifferentCornerSize = global::GraphicsTester.Android.Resource.Style.ShapeAppearanceOverlay_BottomLeftDifferentCornerSize; - global::Microsoft.Maui.Graphics.Resource.Style.ShapeAppearanceOverlay_BottomRightCut = global::GraphicsTester.Android.Resource.Style.ShapeAppearanceOverlay_BottomRightCut; - global::Microsoft.Maui.Graphics.Resource.Style.ShapeAppearanceOverlay_Cut = global::GraphicsTester.Android.Resource.Style.ShapeAppearanceOverlay_Cut; - global::Microsoft.Maui.Graphics.Resource.Style.ShapeAppearanceOverlay_DifferentCornerSize = global::GraphicsTester.Android.Resource.Style.ShapeAppearanceOverlay_DifferentCornerSize; - global::Microsoft.Maui.Graphics.Resource.Style.ShapeAppearanceOverlay_MaterialComponents_BottomSheet = global::GraphicsTester.Android.Resource.Style.ShapeAppearanceOverlay_MaterialComponents_BottomSheet; - global::Microsoft.Maui.Graphics.Resource.Style.ShapeAppearanceOverlay_MaterialComponents_Chip = global::GraphicsTester.Android.Resource.Style.ShapeAppearanceOverlay_MaterialComponents_Chip; - global::Microsoft.Maui.Graphics.Resource.Style.ShapeAppearanceOverlay_MaterialComponents_ExtendedFloatingActionButton = global::GraphicsTester.Android.Resource.Style.ShapeAppearanceOverlay_MaterialComponents_ExtendedFloatingActionButton; - global::Microsoft.Maui.Graphics.Resource.Style.ShapeAppearanceOverlay_MaterialComponents_FloatingActionButton = global::GraphicsTester.Android.Resource.Style.ShapeAppearanceOverlay_MaterialComponents_FloatingActionButton; - global::Microsoft.Maui.Graphics.Resource.Style.ShapeAppearanceOverlay_MaterialComponents_MaterialCalendar_Day = global::GraphicsTester.Android.Resource.Style.ShapeAppearanceOverlay_MaterialComponents_MaterialCalendar_Day; - global::Microsoft.Maui.Graphics.Resource.Style.ShapeAppearanceOverlay_MaterialComponents_MaterialCalendar_Window_Fullscreen = global::GraphicsTester.Android.Resource.Style.ShapeAppearanceOverlay_MaterialComponents_MaterialCalendar_Window_Fullscreen; - global::Microsoft.Maui.Graphics.Resource.Style.ShapeAppearanceOverlay_MaterialComponents_MaterialCalendar_Year = global::GraphicsTester.Android.Resource.Style.ShapeAppearanceOverlay_MaterialComponents_MaterialCalendar_Year; - global::Microsoft.Maui.Graphics.Resource.Style.ShapeAppearanceOverlay_MaterialComponents_TextInputLayout_FilledBox = global::GraphicsTester.Android.Resource.Style.ShapeAppearanceOverlay_MaterialComponents_TextInputLayout_FilledBox; - global::Microsoft.Maui.Graphics.Resource.Style.ShapeAppearanceOverlay_TopLeftCut = global::GraphicsTester.Android.Resource.Style.ShapeAppearanceOverlay_TopLeftCut; - global::Microsoft.Maui.Graphics.Resource.Style.ShapeAppearanceOverlay_TopRightDifferentCornerSize = global::GraphicsTester.Android.Resource.Style.ShapeAppearanceOverlay_TopRightDifferentCornerSize; - global::Microsoft.Maui.Graphics.Resource.Style.ShapeAppearance_MaterialComponents = global::GraphicsTester.Android.Resource.Style.ShapeAppearance_MaterialComponents; - global::Microsoft.Maui.Graphics.Resource.Style.ShapeAppearance_MaterialComponents_LargeComponent = global::GraphicsTester.Android.Resource.Style.ShapeAppearance_MaterialComponents_LargeComponent; - global::Microsoft.Maui.Graphics.Resource.Style.ShapeAppearance_MaterialComponents_MediumComponent = global::GraphicsTester.Android.Resource.Style.ShapeAppearance_MaterialComponents_MediumComponent; - global::Microsoft.Maui.Graphics.Resource.Style.ShapeAppearance_MaterialComponents_SmallComponent = global::GraphicsTester.Android.Resource.Style.ShapeAppearance_MaterialComponents_SmallComponent; - global::Microsoft.Maui.Graphics.Resource.Style.ShapeAppearance_MaterialComponents_Test = global::GraphicsTester.Android.Resource.Style.ShapeAppearance_MaterialComponents_Test; - global::Microsoft.Maui.Graphics.Resource.Style.ShapeAppearance_MaterialComponents_Tooltip = global::GraphicsTester.Android.Resource.Style.ShapeAppearance_MaterialComponents_Tooltip; - global::Microsoft.Maui.Graphics.Resource.Style.TestStyleWithLineHeight = global::GraphicsTester.Android.Resource.Style.TestStyleWithLineHeight; - global::Microsoft.Maui.Graphics.Resource.Style.TestStyleWithLineHeightAppearance = global::GraphicsTester.Android.Resource.Style.TestStyleWithLineHeightAppearance; - global::Microsoft.Maui.Graphics.Resource.Style.TestStyleWithoutLineHeight = global::GraphicsTester.Android.Resource.Style.TestStyleWithoutLineHeight; - global::Microsoft.Maui.Graphics.Resource.Style.TestStyleWithThemeLineHeightAttribute = global::GraphicsTester.Android.Resource.Style.TestStyleWithThemeLineHeightAttribute; - global::Microsoft.Maui.Graphics.Resource.Style.TestThemeWithLineHeight = global::GraphicsTester.Android.Resource.Style.TestThemeWithLineHeight; - global::Microsoft.Maui.Graphics.Resource.Style.TestThemeWithLineHeightDisabled = global::GraphicsTester.Android.Resource.Style.TestThemeWithLineHeightDisabled; - global::Microsoft.Maui.Graphics.Resource.Style.Test_ShapeAppearanceOverlay_MaterialComponents_MaterialCalendar_Day = global::GraphicsTester.Android.Resource.Style.Test_ShapeAppearanceOverlay_MaterialComponents_MaterialCalendar_Day; - global::Microsoft.Maui.Graphics.Resource.Style.Test_Theme_MaterialComponents_MaterialCalendar = global::GraphicsTester.Android.Resource.Style.Test_Theme_MaterialComponents_MaterialCalendar; - global::Microsoft.Maui.Graphics.Resource.Style.Test_Widget_MaterialComponents_MaterialCalendar = global::GraphicsTester.Android.Resource.Style.Test_Widget_MaterialComponents_MaterialCalendar; - global::Microsoft.Maui.Graphics.Resource.Style.Test_Widget_MaterialComponents_MaterialCalendar_Day = global::GraphicsTester.Android.Resource.Style.Test_Widget_MaterialComponents_MaterialCalendar_Day; - global::Microsoft.Maui.Graphics.Resource.Style.Test_Widget_MaterialComponents_MaterialCalendar_Day_Selected = global::GraphicsTester.Android.Resource.Style.Test_Widget_MaterialComponents_MaterialCalendar_Day_Selected; - global::Microsoft.Maui.Graphics.Resource.Style.TextAppearance_AppCompat = global::GraphicsTester.Android.Resource.Style.TextAppearance_AppCompat; - global::Microsoft.Maui.Graphics.Resource.Style.TextAppearance_AppCompat_Body1 = global::GraphicsTester.Android.Resource.Style.TextAppearance_AppCompat_Body1; - global::Microsoft.Maui.Graphics.Resource.Style.TextAppearance_AppCompat_Body2 = global::GraphicsTester.Android.Resource.Style.TextAppearance_AppCompat_Body2; - global::Microsoft.Maui.Graphics.Resource.Style.TextAppearance_AppCompat_Button = global::GraphicsTester.Android.Resource.Style.TextAppearance_AppCompat_Button; - global::Microsoft.Maui.Graphics.Resource.Style.TextAppearance_AppCompat_Caption = global::GraphicsTester.Android.Resource.Style.TextAppearance_AppCompat_Caption; - global::Microsoft.Maui.Graphics.Resource.Style.TextAppearance_AppCompat_Display1 = global::GraphicsTester.Android.Resource.Style.TextAppearance_AppCompat_Display1; - global::Microsoft.Maui.Graphics.Resource.Style.TextAppearance_AppCompat_Display2 = global::GraphicsTester.Android.Resource.Style.TextAppearance_AppCompat_Display2; - global::Microsoft.Maui.Graphics.Resource.Style.TextAppearance_AppCompat_Display3 = global::GraphicsTester.Android.Resource.Style.TextAppearance_AppCompat_Display3; - global::Microsoft.Maui.Graphics.Resource.Style.TextAppearance_AppCompat_Display4 = global::GraphicsTester.Android.Resource.Style.TextAppearance_AppCompat_Display4; - global::Microsoft.Maui.Graphics.Resource.Style.TextAppearance_AppCompat_Headline = global::GraphicsTester.Android.Resource.Style.TextAppearance_AppCompat_Headline; - global::Microsoft.Maui.Graphics.Resource.Style.TextAppearance_AppCompat_Inverse = global::GraphicsTester.Android.Resource.Style.TextAppearance_AppCompat_Inverse; - global::Microsoft.Maui.Graphics.Resource.Style.TextAppearance_AppCompat_Large = global::GraphicsTester.Android.Resource.Style.TextAppearance_AppCompat_Large; - global::Microsoft.Maui.Graphics.Resource.Style.TextAppearance_AppCompat_Large_Inverse = global::GraphicsTester.Android.Resource.Style.TextAppearance_AppCompat_Large_Inverse; - global::Microsoft.Maui.Graphics.Resource.Style.TextAppearance_AppCompat_Light_SearchResult_Subtitle = global::GraphicsTester.Android.Resource.Style.TextAppearance_AppCompat_Light_SearchResult_Subtitle; - global::Microsoft.Maui.Graphics.Resource.Style.TextAppearance_AppCompat_Light_SearchResult_Title = global::GraphicsTester.Android.Resource.Style.TextAppearance_AppCompat_Light_SearchResult_Title; - global::Microsoft.Maui.Graphics.Resource.Style.TextAppearance_AppCompat_Light_Widget_PopupMenu_Large = global::GraphicsTester.Android.Resource.Style.TextAppearance_AppCompat_Light_Widget_PopupMenu_Large; - global::Microsoft.Maui.Graphics.Resource.Style.TextAppearance_AppCompat_Light_Widget_PopupMenu_Small = global::GraphicsTester.Android.Resource.Style.TextAppearance_AppCompat_Light_Widget_PopupMenu_Small; - global::Microsoft.Maui.Graphics.Resource.Style.TextAppearance_AppCompat_Medium = global::GraphicsTester.Android.Resource.Style.TextAppearance_AppCompat_Medium; - global::Microsoft.Maui.Graphics.Resource.Style.TextAppearance_AppCompat_Medium_Inverse = global::GraphicsTester.Android.Resource.Style.TextAppearance_AppCompat_Medium_Inverse; - global::Microsoft.Maui.Graphics.Resource.Style.TextAppearance_AppCompat_Menu = global::GraphicsTester.Android.Resource.Style.TextAppearance_AppCompat_Menu; - global::Microsoft.Maui.Graphics.Resource.Style.TextAppearance_AppCompat_SearchResult_Subtitle = global::GraphicsTester.Android.Resource.Style.TextAppearance_AppCompat_SearchResult_Subtitle; - global::Microsoft.Maui.Graphics.Resource.Style.TextAppearance_AppCompat_SearchResult_Title = global::GraphicsTester.Android.Resource.Style.TextAppearance_AppCompat_SearchResult_Title; - global::Microsoft.Maui.Graphics.Resource.Style.TextAppearance_AppCompat_Small = global::GraphicsTester.Android.Resource.Style.TextAppearance_AppCompat_Small; - global::Microsoft.Maui.Graphics.Resource.Style.TextAppearance_AppCompat_Small_Inverse = global::GraphicsTester.Android.Resource.Style.TextAppearance_AppCompat_Small_Inverse; - global::Microsoft.Maui.Graphics.Resource.Style.TextAppearance_AppCompat_Subhead = global::GraphicsTester.Android.Resource.Style.TextAppearance_AppCompat_Subhead; - global::Microsoft.Maui.Graphics.Resource.Style.TextAppearance_AppCompat_Subhead_Inverse = global::GraphicsTester.Android.Resource.Style.TextAppearance_AppCompat_Subhead_Inverse; - global::Microsoft.Maui.Graphics.Resource.Style.TextAppearance_AppCompat_Title = global::GraphicsTester.Android.Resource.Style.TextAppearance_AppCompat_Title; - global::Microsoft.Maui.Graphics.Resource.Style.TextAppearance_AppCompat_Title_Inverse = global::GraphicsTester.Android.Resource.Style.TextAppearance_AppCompat_Title_Inverse; - global::Microsoft.Maui.Graphics.Resource.Style.TextAppearance_AppCompat_Tooltip = global::GraphicsTester.Android.Resource.Style.TextAppearance_AppCompat_Tooltip; - global::Microsoft.Maui.Graphics.Resource.Style.TextAppearance_AppCompat_Widget_ActionBar_Menu = global::GraphicsTester.Android.Resource.Style.TextAppearance_AppCompat_Widget_ActionBar_Menu; - global::Microsoft.Maui.Graphics.Resource.Style.TextAppearance_AppCompat_Widget_ActionBar_Subtitle = global::GraphicsTester.Android.Resource.Style.TextAppearance_AppCompat_Widget_ActionBar_Subtitle; - global::Microsoft.Maui.Graphics.Resource.Style.TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse = global::GraphicsTester.Android.Resource.Style.TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse; - global::Microsoft.Maui.Graphics.Resource.Style.TextAppearance_AppCompat_Widget_ActionBar_Title = global::GraphicsTester.Android.Resource.Style.TextAppearance_AppCompat_Widget_ActionBar_Title; - global::Microsoft.Maui.Graphics.Resource.Style.TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse = global::GraphicsTester.Android.Resource.Style.TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse; - global::Microsoft.Maui.Graphics.Resource.Style.TextAppearance_AppCompat_Widget_ActionMode_Subtitle = global::GraphicsTester.Android.Resource.Style.TextAppearance_AppCompat_Widget_ActionMode_Subtitle; - global::Microsoft.Maui.Graphics.Resource.Style.TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse = global::GraphicsTester.Android.Resource.Style.TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse; - global::Microsoft.Maui.Graphics.Resource.Style.TextAppearance_AppCompat_Widget_ActionMode_Title = global::GraphicsTester.Android.Resource.Style.TextAppearance_AppCompat_Widget_ActionMode_Title; - global::Microsoft.Maui.Graphics.Resource.Style.TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse = global::GraphicsTester.Android.Resource.Style.TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse; - global::Microsoft.Maui.Graphics.Resource.Style.TextAppearance_AppCompat_Widget_Button = global::GraphicsTester.Android.Resource.Style.TextAppearance_AppCompat_Widget_Button; - global::Microsoft.Maui.Graphics.Resource.Style.TextAppearance_AppCompat_Widget_Button_Borderless_Colored = global::GraphicsTester.Android.Resource.Style.TextAppearance_AppCompat_Widget_Button_Borderless_Colored; - global::Microsoft.Maui.Graphics.Resource.Style.TextAppearance_AppCompat_Widget_Button_Colored = global::GraphicsTester.Android.Resource.Style.TextAppearance_AppCompat_Widget_Button_Colored; - global::Microsoft.Maui.Graphics.Resource.Style.TextAppearance_AppCompat_Widget_Button_Inverse = global::GraphicsTester.Android.Resource.Style.TextAppearance_AppCompat_Widget_Button_Inverse; - global::Microsoft.Maui.Graphics.Resource.Style.TextAppearance_AppCompat_Widget_DropDownItem = global::GraphicsTester.Android.Resource.Style.TextAppearance_AppCompat_Widget_DropDownItem; - global::Microsoft.Maui.Graphics.Resource.Style.TextAppearance_AppCompat_Widget_PopupMenu_Header = global::GraphicsTester.Android.Resource.Style.TextAppearance_AppCompat_Widget_PopupMenu_Header; - global::Microsoft.Maui.Graphics.Resource.Style.TextAppearance_AppCompat_Widget_PopupMenu_Large = global::GraphicsTester.Android.Resource.Style.TextAppearance_AppCompat_Widget_PopupMenu_Large; - global::Microsoft.Maui.Graphics.Resource.Style.TextAppearance_AppCompat_Widget_PopupMenu_Small = global::GraphicsTester.Android.Resource.Style.TextAppearance_AppCompat_Widget_PopupMenu_Small; - global::Microsoft.Maui.Graphics.Resource.Style.TextAppearance_AppCompat_Widget_Switch = global::GraphicsTester.Android.Resource.Style.TextAppearance_AppCompat_Widget_Switch; - global::Microsoft.Maui.Graphics.Resource.Style.TextAppearance_AppCompat_Widget_TextView_SpinnerItem = global::GraphicsTester.Android.Resource.Style.TextAppearance_AppCompat_Widget_TextView_SpinnerItem; - global::Microsoft.Maui.Graphics.Resource.Style.TextAppearance_Compat_Notification = global::GraphicsTester.Android.Resource.Style.TextAppearance_Compat_Notification; - global::Microsoft.Maui.Graphics.Resource.Style.TextAppearance_Compat_Notification_Info = global::GraphicsTester.Android.Resource.Style.TextAppearance_Compat_Notification_Info; - global::Microsoft.Maui.Graphics.Resource.Style.TextAppearance_Compat_Notification_Info_Media = global::GraphicsTester.Android.Resource.Style.TextAppearance_Compat_Notification_Info_Media; - global::Microsoft.Maui.Graphics.Resource.Style.TextAppearance_Compat_Notification_Line2 = global::GraphicsTester.Android.Resource.Style.TextAppearance_Compat_Notification_Line2; - global::Microsoft.Maui.Graphics.Resource.Style.TextAppearance_Compat_Notification_Line2_Media = global::GraphicsTester.Android.Resource.Style.TextAppearance_Compat_Notification_Line2_Media; - global::Microsoft.Maui.Graphics.Resource.Style.TextAppearance_Compat_Notification_Media = global::GraphicsTester.Android.Resource.Style.TextAppearance_Compat_Notification_Media; - global::Microsoft.Maui.Graphics.Resource.Style.TextAppearance_Compat_Notification_Time = global::GraphicsTester.Android.Resource.Style.TextAppearance_Compat_Notification_Time; - global::Microsoft.Maui.Graphics.Resource.Style.TextAppearance_Compat_Notification_Time_Media = global::GraphicsTester.Android.Resource.Style.TextAppearance_Compat_Notification_Time_Media; - global::Microsoft.Maui.Graphics.Resource.Style.TextAppearance_Compat_Notification_Title = global::GraphicsTester.Android.Resource.Style.TextAppearance_Compat_Notification_Title; - global::Microsoft.Maui.Graphics.Resource.Style.TextAppearance_Compat_Notification_Title_Media = global::GraphicsTester.Android.Resource.Style.TextAppearance_Compat_Notification_Title_Media; - global::Microsoft.Maui.Graphics.Resource.Style.TextAppearance_Design_CollapsingToolbar_Expanded = global::GraphicsTester.Android.Resource.Style.TextAppearance_Design_CollapsingToolbar_Expanded; - global::Microsoft.Maui.Graphics.Resource.Style.TextAppearance_Design_Counter = global::GraphicsTester.Android.Resource.Style.TextAppearance_Design_Counter; - global::Microsoft.Maui.Graphics.Resource.Style.TextAppearance_Design_Counter_Overflow = global::GraphicsTester.Android.Resource.Style.TextAppearance_Design_Counter_Overflow; - global::Microsoft.Maui.Graphics.Resource.Style.TextAppearance_Design_Error = global::GraphicsTester.Android.Resource.Style.TextAppearance_Design_Error; - global::Microsoft.Maui.Graphics.Resource.Style.TextAppearance_Design_HelperText = global::GraphicsTester.Android.Resource.Style.TextAppearance_Design_HelperText; - global::Microsoft.Maui.Graphics.Resource.Style.TextAppearance_Design_Hint = global::GraphicsTester.Android.Resource.Style.TextAppearance_Design_Hint; - global::Microsoft.Maui.Graphics.Resource.Style.TextAppearance_Design_Placeholder = global::GraphicsTester.Android.Resource.Style.TextAppearance_Design_Placeholder; - global::Microsoft.Maui.Graphics.Resource.Style.TextAppearance_Design_Prefix = global::GraphicsTester.Android.Resource.Style.TextAppearance_Design_Prefix; - global::Microsoft.Maui.Graphics.Resource.Style.TextAppearance_Design_Snackbar_Message = global::GraphicsTester.Android.Resource.Style.TextAppearance_Design_Snackbar_Message; - global::Microsoft.Maui.Graphics.Resource.Style.TextAppearance_Design_Suffix = global::GraphicsTester.Android.Resource.Style.TextAppearance_Design_Suffix; - global::Microsoft.Maui.Graphics.Resource.Style.TextAppearance_Design_Tab = global::GraphicsTester.Android.Resource.Style.TextAppearance_Design_Tab; - global::Microsoft.Maui.Graphics.Resource.Style.TextAppearance_MaterialComponents_Badge = global::GraphicsTester.Android.Resource.Style.TextAppearance_MaterialComponents_Badge; - global::Microsoft.Maui.Graphics.Resource.Style.TextAppearance_MaterialComponents_Body1 = global::GraphicsTester.Android.Resource.Style.TextAppearance_MaterialComponents_Body1; - global::Microsoft.Maui.Graphics.Resource.Style.TextAppearance_MaterialComponents_Body2 = global::GraphicsTester.Android.Resource.Style.TextAppearance_MaterialComponents_Body2; - global::Microsoft.Maui.Graphics.Resource.Style.TextAppearance_MaterialComponents_Button = global::GraphicsTester.Android.Resource.Style.TextAppearance_MaterialComponents_Button; - global::Microsoft.Maui.Graphics.Resource.Style.TextAppearance_MaterialComponents_Caption = global::GraphicsTester.Android.Resource.Style.TextAppearance_MaterialComponents_Caption; - global::Microsoft.Maui.Graphics.Resource.Style.TextAppearance_MaterialComponents_Chip = global::GraphicsTester.Android.Resource.Style.TextAppearance_MaterialComponents_Chip; - global::Microsoft.Maui.Graphics.Resource.Style.TextAppearance_MaterialComponents_Headline1 = global::GraphicsTester.Android.Resource.Style.TextAppearance_MaterialComponents_Headline1; - global::Microsoft.Maui.Graphics.Resource.Style.TextAppearance_MaterialComponents_Headline2 = global::GraphicsTester.Android.Resource.Style.TextAppearance_MaterialComponents_Headline2; - global::Microsoft.Maui.Graphics.Resource.Style.TextAppearance_MaterialComponents_Headline3 = global::GraphicsTester.Android.Resource.Style.TextAppearance_MaterialComponents_Headline3; - global::Microsoft.Maui.Graphics.Resource.Style.TextAppearance_MaterialComponents_Headline4 = global::GraphicsTester.Android.Resource.Style.TextAppearance_MaterialComponents_Headline4; - global::Microsoft.Maui.Graphics.Resource.Style.TextAppearance_MaterialComponents_Headline5 = global::GraphicsTester.Android.Resource.Style.TextAppearance_MaterialComponents_Headline5; - global::Microsoft.Maui.Graphics.Resource.Style.TextAppearance_MaterialComponents_Headline6 = global::GraphicsTester.Android.Resource.Style.TextAppearance_MaterialComponents_Headline6; - global::Microsoft.Maui.Graphics.Resource.Style.TextAppearance_MaterialComponents_Overline = global::GraphicsTester.Android.Resource.Style.TextAppearance_MaterialComponents_Overline; - global::Microsoft.Maui.Graphics.Resource.Style.TextAppearance_MaterialComponents_Subtitle1 = global::GraphicsTester.Android.Resource.Style.TextAppearance_MaterialComponents_Subtitle1; - global::Microsoft.Maui.Graphics.Resource.Style.TextAppearance_MaterialComponents_Subtitle2 = global::GraphicsTester.Android.Resource.Style.TextAppearance_MaterialComponents_Subtitle2; - global::Microsoft.Maui.Graphics.Resource.Style.TextAppearance_MaterialComponents_TimePicker_Title = global::GraphicsTester.Android.Resource.Style.TextAppearance_MaterialComponents_TimePicker_Title; - global::Microsoft.Maui.Graphics.Resource.Style.TextAppearance_MaterialComponents_Tooltip = global::GraphicsTester.Android.Resource.Style.TextAppearance_MaterialComponents_Tooltip; - global::Microsoft.Maui.Graphics.Resource.Style.TextAppearance_Widget_AppCompat_ExpandedMenu_Item = global::GraphicsTester.Android.Resource.Style.TextAppearance_Widget_AppCompat_ExpandedMenu_Item; - global::Microsoft.Maui.Graphics.Resource.Style.TextAppearance_Widget_AppCompat_Toolbar_Subtitle = global::GraphicsTester.Android.Resource.Style.TextAppearance_Widget_AppCompat_Toolbar_Subtitle; - global::Microsoft.Maui.Graphics.Resource.Style.TextAppearance_Widget_AppCompat_Toolbar_Title = global::GraphicsTester.Android.Resource.Style.TextAppearance_Widget_AppCompat_Toolbar_Title; - global::Microsoft.Maui.Graphics.Resource.Style.ThemeOverlayColorAccentRed = global::GraphicsTester.Android.Resource.Style.ThemeOverlayColorAccentRed; - global::Microsoft.Maui.Graphics.Resource.Style.ThemeOverlay_AppCompat = global::GraphicsTester.Android.Resource.Style.ThemeOverlay_AppCompat; - global::Microsoft.Maui.Graphics.Resource.Style.ThemeOverlay_AppCompat_ActionBar = global::GraphicsTester.Android.Resource.Style.ThemeOverlay_AppCompat_ActionBar; - global::Microsoft.Maui.Graphics.Resource.Style.ThemeOverlay_AppCompat_Dark = global::GraphicsTester.Android.Resource.Style.ThemeOverlay_AppCompat_Dark; - global::Microsoft.Maui.Graphics.Resource.Style.ThemeOverlay_AppCompat_Dark_ActionBar = global::GraphicsTester.Android.Resource.Style.ThemeOverlay_AppCompat_Dark_ActionBar; - global::Microsoft.Maui.Graphics.Resource.Style.ThemeOverlay_AppCompat_DayNight = global::GraphicsTester.Android.Resource.Style.ThemeOverlay_AppCompat_DayNight; - global::Microsoft.Maui.Graphics.Resource.Style.ThemeOverlay_AppCompat_DayNight_ActionBar = global::GraphicsTester.Android.Resource.Style.ThemeOverlay_AppCompat_DayNight_ActionBar; - global::Microsoft.Maui.Graphics.Resource.Style.ThemeOverlay_AppCompat_Dialog = global::GraphicsTester.Android.Resource.Style.ThemeOverlay_AppCompat_Dialog; - global::Microsoft.Maui.Graphics.Resource.Style.ThemeOverlay_AppCompat_Dialog_Alert = global::GraphicsTester.Android.Resource.Style.ThemeOverlay_AppCompat_Dialog_Alert; - global::Microsoft.Maui.Graphics.Resource.Style.ThemeOverlay_AppCompat_Light = global::GraphicsTester.Android.Resource.Style.ThemeOverlay_AppCompat_Light; - global::Microsoft.Maui.Graphics.Resource.Style.ThemeOverlay_Design_TextInputEditText = global::GraphicsTester.Android.Resource.Style.ThemeOverlay_Design_TextInputEditText; - global::Microsoft.Maui.Graphics.Resource.Style.ThemeOverlay_MaterialComponents = global::GraphicsTester.Android.Resource.Style.ThemeOverlay_MaterialComponents; - global::Microsoft.Maui.Graphics.Resource.Style.ThemeOverlay_MaterialComponents_ActionBar = global::GraphicsTester.Android.Resource.Style.ThemeOverlay_MaterialComponents_ActionBar; - global::Microsoft.Maui.Graphics.Resource.Style.ThemeOverlay_MaterialComponents_ActionBar_Primary = global::GraphicsTester.Android.Resource.Style.ThemeOverlay_MaterialComponents_ActionBar_Primary; - global::Microsoft.Maui.Graphics.Resource.Style.ThemeOverlay_MaterialComponents_ActionBar_Surface = global::GraphicsTester.Android.Resource.Style.ThemeOverlay_MaterialComponents_ActionBar_Surface; - global::Microsoft.Maui.Graphics.Resource.Style.ThemeOverlay_MaterialComponents_AutoCompleteTextView = global::GraphicsTester.Android.Resource.Style.ThemeOverlay_MaterialComponents_AutoCompleteTextView; - global::Microsoft.Maui.Graphics.Resource.Style.ThemeOverlay_MaterialComponents_AutoCompleteTextView_FilledBox = global::GraphicsTester.Android.Resource.Style.ThemeOverlay_MaterialComponents_AutoCompleteTextView_FilledBox; - global::Microsoft.Maui.Graphics.Resource.Style.ThemeOverlay_MaterialComponents_AutoCompleteTextView_FilledBox_Dense = global::GraphicsTester.Android.Resource.Style.ThemeOverlay_MaterialComponents_AutoCompleteTextView_FilledBox_Dense; - global::Microsoft.Maui.Graphics.Resource.Style.ThemeOverlay_MaterialComponents_AutoCompleteTextView_OutlinedBox = global::GraphicsTester.Android.Resource.Style.ThemeOverlay_MaterialComponents_AutoCompleteTextView_OutlinedBox; - global::Microsoft.Maui.Graphics.Resource.Style.ThemeOverlay_MaterialComponents_AutoCompleteTextView_OutlinedBox_Dense = global::GraphicsTester.Android.Resource.Style.ThemeOverlay_MaterialComponents_AutoCompleteTextView_OutlinedBox_Dense; - global::Microsoft.Maui.Graphics.Resource.Style.ThemeOverlay_MaterialComponents_BottomAppBar_Primary = global::GraphicsTester.Android.Resource.Style.ThemeOverlay_MaterialComponents_BottomAppBar_Primary; - global::Microsoft.Maui.Graphics.Resource.Style.ThemeOverlay_MaterialComponents_BottomAppBar_Surface = global::GraphicsTester.Android.Resource.Style.ThemeOverlay_MaterialComponents_BottomAppBar_Surface; - global::Microsoft.Maui.Graphics.Resource.Style.ThemeOverlay_MaterialComponents_BottomSheetDialog = global::GraphicsTester.Android.Resource.Style.ThemeOverlay_MaterialComponents_BottomSheetDialog; - global::Microsoft.Maui.Graphics.Resource.Style.ThemeOverlay_MaterialComponents_Dark = global::GraphicsTester.Android.Resource.Style.ThemeOverlay_MaterialComponents_Dark; - global::Microsoft.Maui.Graphics.Resource.Style.ThemeOverlay_MaterialComponents_Dark_ActionBar = global::GraphicsTester.Android.Resource.Style.ThemeOverlay_MaterialComponents_Dark_ActionBar; - global::Microsoft.Maui.Graphics.Resource.Style.ThemeOverlay_MaterialComponents_DayNight_BottomSheetDialog = global::GraphicsTester.Android.Resource.Style.ThemeOverlay_MaterialComponents_DayNight_BottomSheetDialog; - global::Microsoft.Maui.Graphics.Resource.Style.ThemeOverlay_MaterialComponents_Dialog = global::GraphicsTester.Android.Resource.Style.ThemeOverlay_MaterialComponents_Dialog; - global::Microsoft.Maui.Graphics.Resource.Style.ThemeOverlay_MaterialComponents_Dialog_Alert = global::GraphicsTester.Android.Resource.Style.ThemeOverlay_MaterialComponents_Dialog_Alert; - global::Microsoft.Maui.Graphics.Resource.Style.ThemeOverlay_MaterialComponents_Dialog_Alert_Framework = global::GraphicsTester.Android.Resource.Style.ThemeOverlay_MaterialComponents_Dialog_Alert_Framework; - global::Microsoft.Maui.Graphics.Resource.Style.ThemeOverlay_MaterialComponents_Light = global::GraphicsTester.Android.Resource.Style.ThemeOverlay_MaterialComponents_Light; - global::Microsoft.Maui.Graphics.Resource.Style.ThemeOverlay_MaterialComponents_Light_BottomSheetDialog = global::GraphicsTester.Android.Resource.Style.ThemeOverlay_MaterialComponents_Light_BottomSheetDialog; - global::Microsoft.Maui.Graphics.Resource.Style.ThemeOverlay_MaterialComponents_Light_Dialog_Alert_Framework = global::GraphicsTester.Android.Resource.Style.ThemeOverlay_MaterialComponents_Light_Dialog_Alert_Framework; - global::Microsoft.Maui.Graphics.Resource.Style.ThemeOverlay_MaterialComponents_MaterialAlertDialog = global::GraphicsTester.Android.Resource.Style.ThemeOverlay_MaterialComponents_MaterialAlertDialog; - global::Microsoft.Maui.Graphics.Resource.Style.ThemeOverlay_MaterialComponents_MaterialAlertDialog_Centered = global::GraphicsTester.Android.Resource.Style.ThemeOverlay_MaterialComponents_MaterialAlertDialog_Centered; - global::Microsoft.Maui.Graphics.Resource.Style.ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date = global::GraphicsTester.Android.Resource.Style.ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date; - global::Microsoft.Maui.Graphics.Resource.Style.ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date_Calendar = global::GraphicsTester.Android.Resource.Style.ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date_Calendar; - global::Microsoft.Maui.Graphics.Resource.Style.ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date_Header_Text = global::GraphicsTester.Android.Resource.Style.ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date_Header_Text; - global::Microsoft.Maui.Graphics.Resource.Style.ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date_Header_Text_Day = global::GraphicsTester.Android.Resource.Style.ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date_Header_Text_Day; - global::Microsoft.Maui.Graphics.Resource.Style.ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date_Spinner = global::GraphicsTester.Android.Resource.Style.ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date_Spinner; - global::Microsoft.Maui.Graphics.Resource.Style.ThemeOverlay_MaterialComponents_MaterialCalendar = global::GraphicsTester.Android.Resource.Style.ThemeOverlay_MaterialComponents_MaterialCalendar; - global::Microsoft.Maui.Graphics.Resource.Style.ThemeOverlay_MaterialComponents_MaterialCalendar_Fullscreen = global::GraphicsTester.Android.Resource.Style.ThemeOverlay_MaterialComponents_MaterialCalendar_Fullscreen; - global::Microsoft.Maui.Graphics.Resource.Style.ThemeOverlay_MaterialComponents_TextInputEditText = global::GraphicsTester.Android.Resource.Style.ThemeOverlay_MaterialComponents_TextInputEditText; - global::Microsoft.Maui.Graphics.Resource.Style.ThemeOverlay_MaterialComponents_TextInputEditText_FilledBox = global::GraphicsTester.Android.Resource.Style.ThemeOverlay_MaterialComponents_TextInputEditText_FilledBox; - global::Microsoft.Maui.Graphics.Resource.Style.ThemeOverlay_MaterialComponents_TextInputEditText_FilledBox_Dense = global::GraphicsTester.Android.Resource.Style.ThemeOverlay_MaterialComponents_TextInputEditText_FilledBox_Dense; - global::Microsoft.Maui.Graphics.Resource.Style.ThemeOverlay_MaterialComponents_TextInputEditText_OutlinedBox = global::GraphicsTester.Android.Resource.Style.ThemeOverlay_MaterialComponents_TextInputEditText_OutlinedBox; - global::Microsoft.Maui.Graphics.Resource.Style.ThemeOverlay_MaterialComponents_TextInputEditText_OutlinedBox_Dense = global::GraphicsTester.Android.Resource.Style.ThemeOverlay_MaterialComponents_TextInputEditText_OutlinedBox_Dense; - global::Microsoft.Maui.Graphics.Resource.Style.ThemeOverlay_MaterialComponents_TimePicker = global::GraphicsTester.Android.Resource.Style.ThemeOverlay_MaterialComponents_TimePicker; - global::Microsoft.Maui.Graphics.Resource.Style.ThemeOverlay_MaterialComponents_TimePicker_Display = global::GraphicsTester.Android.Resource.Style.ThemeOverlay_MaterialComponents_TimePicker_Display; - global::Microsoft.Maui.Graphics.Resource.Style.ThemeOverlay_MaterialComponents_Toolbar_Primary = global::GraphicsTester.Android.Resource.Style.ThemeOverlay_MaterialComponents_Toolbar_Primary; - global::Microsoft.Maui.Graphics.Resource.Style.ThemeOverlay_MaterialComponents_Toolbar_Surface = global::GraphicsTester.Android.Resource.Style.ThemeOverlay_MaterialComponents_Toolbar_Surface; - global::Microsoft.Maui.Graphics.Resource.Style.Theme_AppCompat = global::GraphicsTester.Android.Resource.Style.Theme_AppCompat; - global::Microsoft.Maui.Graphics.Resource.Style.Theme_AppCompat_CompactMenu = global::GraphicsTester.Android.Resource.Style.Theme_AppCompat_CompactMenu; - global::Microsoft.Maui.Graphics.Resource.Style.Theme_AppCompat_DayNight = global::GraphicsTester.Android.Resource.Style.Theme_AppCompat_DayNight; - global::Microsoft.Maui.Graphics.Resource.Style.Theme_AppCompat_DayNight_DarkActionBar = global::GraphicsTester.Android.Resource.Style.Theme_AppCompat_DayNight_DarkActionBar; - global::Microsoft.Maui.Graphics.Resource.Style.Theme_AppCompat_DayNight_Dialog = global::GraphicsTester.Android.Resource.Style.Theme_AppCompat_DayNight_Dialog; - global::Microsoft.Maui.Graphics.Resource.Style.Theme_AppCompat_DayNight_DialogWhenLarge = global::GraphicsTester.Android.Resource.Style.Theme_AppCompat_DayNight_DialogWhenLarge; - global::Microsoft.Maui.Graphics.Resource.Style.Theme_AppCompat_DayNight_Dialog_Alert = global::GraphicsTester.Android.Resource.Style.Theme_AppCompat_DayNight_Dialog_Alert; - global::Microsoft.Maui.Graphics.Resource.Style.Theme_AppCompat_DayNight_Dialog_MinWidth = global::GraphicsTester.Android.Resource.Style.Theme_AppCompat_DayNight_Dialog_MinWidth; - global::Microsoft.Maui.Graphics.Resource.Style.Theme_AppCompat_DayNight_NoActionBar = global::GraphicsTester.Android.Resource.Style.Theme_AppCompat_DayNight_NoActionBar; - global::Microsoft.Maui.Graphics.Resource.Style.Theme_AppCompat_Dialog = global::GraphicsTester.Android.Resource.Style.Theme_AppCompat_Dialog; - global::Microsoft.Maui.Graphics.Resource.Style.Theme_AppCompat_DialogWhenLarge = global::GraphicsTester.Android.Resource.Style.Theme_AppCompat_DialogWhenLarge; - global::Microsoft.Maui.Graphics.Resource.Style.Theme_AppCompat_Dialog_Alert = global::GraphicsTester.Android.Resource.Style.Theme_AppCompat_Dialog_Alert; - global::Microsoft.Maui.Graphics.Resource.Style.Theme_AppCompat_Dialog_MinWidth = global::GraphicsTester.Android.Resource.Style.Theme_AppCompat_Dialog_MinWidth; - global::Microsoft.Maui.Graphics.Resource.Style.Theme_AppCompat_Empty = global::GraphicsTester.Android.Resource.Style.Theme_AppCompat_Empty; - global::Microsoft.Maui.Graphics.Resource.Style.Theme_AppCompat_Light = global::GraphicsTester.Android.Resource.Style.Theme_AppCompat_Light; - global::Microsoft.Maui.Graphics.Resource.Style.Theme_AppCompat_Light_DarkActionBar = global::GraphicsTester.Android.Resource.Style.Theme_AppCompat_Light_DarkActionBar; - global::Microsoft.Maui.Graphics.Resource.Style.Theme_AppCompat_Light_Dialog = global::GraphicsTester.Android.Resource.Style.Theme_AppCompat_Light_Dialog; - global::Microsoft.Maui.Graphics.Resource.Style.Theme_AppCompat_Light_DialogWhenLarge = global::GraphicsTester.Android.Resource.Style.Theme_AppCompat_Light_DialogWhenLarge; - global::Microsoft.Maui.Graphics.Resource.Style.Theme_AppCompat_Light_Dialog_Alert = global::GraphicsTester.Android.Resource.Style.Theme_AppCompat_Light_Dialog_Alert; - global::Microsoft.Maui.Graphics.Resource.Style.Theme_AppCompat_Light_Dialog_MinWidth = global::GraphicsTester.Android.Resource.Style.Theme_AppCompat_Light_Dialog_MinWidth; - global::Microsoft.Maui.Graphics.Resource.Style.Theme_AppCompat_Light_NoActionBar = global::GraphicsTester.Android.Resource.Style.Theme_AppCompat_Light_NoActionBar; - global::Microsoft.Maui.Graphics.Resource.Style.Theme_AppCompat_NoActionBar = global::GraphicsTester.Android.Resource.Style.Theme_AppCompat_NoActionBar; - global::Microsoft.Maui.Graphics.Resource.Style.Theme_Design = global::GraphicsTester.Android.Resource.Style.Theme_Design; - global::Microsoft.Maui.Graphics.Resource.Style.Theme_Design_BottomSheetDialog = global::GraphicsTester.Android.Resource.Style.Theme_Design_BottomSheetDialog; - global::Microsoft.Maui.Graphics.Resource.Style.Theme_Design_Light = global::GraphicsTester.Android.Resource.Style.Theme_Design_Light; - global::Microsoft.Maui.Graphics.Resource.Style.Theme_Design_Light_BottomSheetDialog = global::GraphicsTester.Android.Resource.Style.Theme_Design_Light_BottomSheetDialog; - global::Microsoft.Maui.Graphics.Resource.Style.Theme_Design_Light_NoActionBar = global::GraphicsTester.Android.Resource.Style.Theme_Design_Light_NoActionBar; - global::Microsoft.Maui.Graphics.Resource.Style.Theme_Design_NoActionBar = global::GraphicsTester.Android.Resource.Style.Theme_Design_NoActionBar; - global::Microsoft.Maui.Graphics.Resource.Style.Theme_MaterialComponents = global::GraphicsTester.Android.Resource.Style.Theme_MaterialComponents; - global::Microsoft.Maui.Graphics.Resource.Style.Theme_MaterialComponents_BottomSheetDialog = global::GraphicsTester.Android.Resource.Style.Theme_MaterialComponents_BottomSheetDialog; - global::Microsoft.Maui.Graphics.Resource.Style.Theme_MaterialComponents_Bridge = global::GraphicsTester.Android.Resource.Style.Theme_MaterialComponents_Bridge; - global::Microsoft.Maui.Graphics.Resource.Style.Theme_MaterialComponents_CompactMenu = global::GraphicsTester.Android.Resource.Style.Theme_MaterialComponents_CompactMenu; - global::Microsoft.Maui.Graphics.Resource.Style.Theme_MaterialComponents_DayNight = global::GraphicsTester.Android.Resource.Style.Theme_MaterialComponents_DayNight; - global::Microsoft.Maui.Graphics.Resource.Style.Theme_MaterialComponents_DayNight_BottomSheetDialog = global::GraphicsTester.Android.Resource.Style.Theme_MaterialComponents_DayNight_BottomSheetDialog; - global::Microsoft.Maui.Graphics.Resource.Style.Theme_MaterialComponents_DayNight_Bridge = global::GraphicsTester.Android.Resource.Style.Theme_MaterialComponents_DayNight_Bridge; - global::Microsoft.Maui.Graphics.Resource.Style.Theme_MaterialComponents_DayNight_DarkActionBar = global::GraphicsTester.Android.Resource.Style.Theme_MaterialComponents_DayNight_DarkActionBar; - global::Microsoft.Maui.Graphics.Resource.Style.Theme_MaterialComponents_DayNight_DarkActionBar_Bridge = global::GraphicsTester.Android.Resource.Style.Theme_MaterialComponents_DayNight_DarkActionBar_Bridge; - global::Microsoft.Maui.Graphics.Resource.Style.Theme_MaterialComponents_DayNight_Dialog = global::GraphicsTester.Android.Resource.Style.Theme_MaterialComponents_DayNight_Dialog; - global::Microsoft.Maui.Graphics.Resource.Style.Theme_MaterialComponents_DayNight_DialogWhenLarge = global::GraphicsTester.Android.Resource.Style.Theme_MaterialComponents_DayNight_DialogWhenLarge; - global::Microsoft.Maui.Graphics.Resource.Style.Theme_MaterialComponents_DayNight_Dialog_Alert = global::GraphicsTester.Android.Resource.Style.Theme_MaterialComponents_DayNight_Dialog_Alert; - global::Microsoft.Maui.Graphics.Resource.Style.Theme_MaterialComponents_DayNight_Dialog_Alert_Bridge = global::GraphicsTester.Android.Resource.Style.Theme_MaterialComponents_DayNight_Dialog_Alert_Bridge; - global::Microsoft.Maui.Graphics.Resource.Style.Theme_MaterialComponents_DayNight_Dialog_Bridge = global::GraphicsTester.Android.Resource.Style.Theme_MaterialComponents_DayNight_Dialog_Bridge; - global::Microsoft.Maui.Graphics.Resource.Style.Theme_MaterialComponents_DayNight_Dialog_FixedSize = global::GraphicsTester.Android.Resource.Style.Theme_MaterialComponents_DayNight_Dialog_FixedSize; - global::Microsoft.Maui.Graphics.Resource.Style.Theme_MaterialComponents_DayNight_Dialog_FixedSize_Bridge = global::GraphicsTester.Android.Resource.Style.Theme_MaterialComponents_DayNight_Dialog_FixedSize_Bridge; - global::Microsoft.Maui.Graphics.Resource.Style.Theme_MaterialComponents_DayNight_Dialog_MinWidth = global::GraphicsTester.Android.Resource.Style.Theme_MaterialComponents_DayNight_Dialog_MinWidth; - global::Microsoft.Maui.Graphics.Resource.Style.Theme_MaterialComponents_DayNight_Dialog_MinWidth_Bridge = global::GraphicsTester.Android.Resource.Style.Theme_MaterialComponents_DayNight_Dialog_MinWidth_Bridge; - global::Microsoft.Maui.Graphics.Resource.Style.Theme_MaterialComponents_DayNight_NoActionBar = global::GraphicsTester.Android.Resource.Style.Theme_MaterialComponents_DayNight_NoActionBar; - global::Microsoft.Maui.Graphics.Resource.Style.Theme_MaterialComponents_DayNight_NoActionBar_Bridge = global::GraphicsTester.Android.Resource.Style.Theme_MaterialComponents_DayNight_NoActionBar_Bridge; - global::Microsoft.Maui.Graphics.Resource.Style.Theme_MaterialComponents_Dialog = global::GraphicsTester.Android.Resource.Style.Theme_MaterialComponents_Dialog; - global::Microsoft.Maui.Graphics.Resource.Style.Theme_MaterialComponents_DialogWhenLarge = global::GraphicsTester.Android.Resource.Style.Theme_MaterialComponents_DialogWhenLarge; - global::Microsoft.Maui.Graphics.Resource.Style.Theme_MaterialComponents_Dialog_Alert = global::GraphicsTester.Android.Resource.Style.Theme_MaterialComponents_Dialog_Alert; - global::Microsoft.Maui.Graphics.Resource.Style.Theme_MaterialComponents_Dialog_Alert_Bridge = global::GraphicsTester.Android.Resource.Style.Theme_MaterialComponents_Dialog_Alert_Bridge; - global::Microsoft.Maui.Graphics.Resource.Style.Theme_MaterialComponents_Dialog_Bridge = global::GraphicsTester.Android.Resource.Style.Theme_MaterialComponents_Dialog_Bridge; - global::Microsoft.Maui.Graphics.Resource.Style.Theme_MaterialComponents_Dialog_FixedSize = global::GraphicsTester.Android.Resource.Style.Theme_MaterialComponents_Dialog_FixedSize; - global::Microsoft.Maui.Graphics.Resource.Style.Theme_MaterialComponents_Dialog_FixedSize_Bridge = global::GraphicsTester.Android.Resource.Style.Theme_MaterialComponents_Dialog_FixedSize_Bridge; - global::Microsoft.Maui.Graphics.Resource.Style.Theme_MaterialComponents_Dialog_MinWidth = global::GraphicsTester.Android.Resource.Style.Theme_MaterialComponents_Dialog_MinWidth; - global::Microsoft.Maui.Graphics.Resource.Style.Theme_MaterialComponents_Dialog_MinWidth_Bridge = global::GraphicsTester.Android.Resource.Style.Theme_MaterialComponents_Dialog_MinWidth_Bridge; - global::Microsoft.Maui.Graphics.Resource.Style.Theme_MaterialComponents_Light = global::GraphicsTester.Android.Resource.Style.Theme_MaterialComponents_Light; - global::Microsoft.Maui.Graphics.Resource.Style.Theme_MaterialComponents_Light_BarSize = global::GraphicsTester.Android.Resource.Style.Theme_MaterialComponents_Light_BarSize; - global::Microsoft.Maui.Graphics.Resource.Style.Theme_MaterialComponents_Light_BottomSheetDialog = global::GraphicsTester.Android.Resource.Style.Theme_MaterialComponents_Light_BottomSheetDialog; - global::Microsoft.Maui.Graphics.Resource.Style.Theme_MaterialComponents_Light_Bridge = global::GraphicsTester.Android.Resource.Style.Theme_MaterialComponents_Light_Bridge; - global::Microsoft.Maui.Graphics.Resource.Style.Theme_MaterialComponents_Light_DarkActionBar = global::GraphicsTester.Android.Resource.Style.Theme_MaterialComponents_Light_DarkActionBar; - global::Microsoft.Maui.Graphics.Resource.Style.Theme_MaterialComponents_Light_DarkActionBar_Bridge = global::GraphicsTester.Android.Resource.Style.Theme_MaterialComponents_Light_DarkActionBar_Bridge; - global::Microsoft.Maui.Graphics.Resource.Style.Theme_MaterialComponents_Light_Dialog = global::GraphicsTester.Android.Resource.Style.Theme_MaterialComponents_Light_Dialog; - global::Microsoft.Maui.Graphics.Resource.Style.Theme_MaterialComponents_Light_DialogWhenLarge = global::GraphicsTester.Android.Resource.Style.Theme_MaterialComponents_Light_DialogWhenLarge; - global::Microsoft.Maui.Graphics.Resource.Style.Theme_MaterialComponents_Light_Dialog_Alert = global::GraphicsTester.Android.Resource.Style.Theme_MaterialComponents_Light_Dialog_Alert; - global::Microsoft.Maui.Graphics.Resource.Style.Theme_MaterialComponents_Light_Dialog_Alert_Bridge = global::GraphicsTester.Android.Resource.Style.Theme_MaterialComponents_Light_Dialog_Alert_Bridge; - global::Microsoft.Maui.Graphics.Resource.Style.Theme_MaterialComponents_Light_Dialog_Bridge = global::GraphicsTester.Android.Resource.Style.Theme_MaterialComponents_Light_Dialog_Bridge; - global::Microsoft.Maui.Graphics.Resource.Style.Theme_MaterialComponents_Light_Dialog_FixedSize = global::GraphicsTester.Android.Resource.Style.Theme_MaterialComponents_Light_Dialog_FixedSize; - global::Microsoft.Maui.Graphics.Resource.Style.Theme_MaterialComponents_Light_Dialog_FixedSize_Bridge = global::GraphicsTester.Android.Resource.Style.Theme_MaterialComponents_Light_Dialog_FixedSize_Bridge; - global::Microsoft.Maui.Graphics.Resource.Style.Theme_MaterialComponents_Light_Dialog_MinWidth = global::GraphicsTester.Android.Resource.Style.Theme_MaterialComponents_Light_Dialog_MinWidth; - global::Microsoft.Maui.Graphics.Resource.Style.Theme_MaterialComponents_Light_Dialog_MinWidth_Bridge = global::GraphicsTester.Android.Resource.Style.Theme_MaterialComponents_Light_Dialog_MinWidth_Bridge; - global::Microsoft.Maui.Graphics.Resource.Style.Theme_MaterialComponents_Light_LargeTouch = global::GraphicsTester.Android.Resource.Style.Theme_MaterialComponents_Light_LargeTouch; - global::Microsoft.Maui.Graphics.Resource.Style.Theme_MaterialComponents_Light_NoActionBar = global::GraphicsTester.Android.Resource.Style.Theme_MaterialComponents_Light_NoActionBar; - global::Microsoft.Maui.Graphics.Resource.Style.Theme_MaterialComponents_Light_NoActionBar_Bridge = global::GraphicsTester.Android.Resource.Style.Theme_MaterialComponents_Light_NoActionBar_Bridge; - global::Microsoft.Maui.Graphics.Resource.Style.Theme_MaterialComponents_NoActionBar = global::GraphicsTester.Android.Resource.Style.Theme_MaterialComponents_NoActionBar; - global::Microsoft.Maui.Graphics.Resource.Style.Theme_MaterialComponents_NoActionBar_Bridge = global::GraphicsTester.Android.Resource.Style.Theme_MaterialComponents_NoActionBar_Bridge; - global::Microsoft.Maui.Graphics.Resource.Style.Widget_AppCompat_ActionBar = global::GraphicsTester.Android.Resource.Style.Widget_AppCompat_ActionBar; - global::Microsoft.Maui.Graphics.Resource.Style.Widget_AppCompat_ActionBar_Solid = global::GraphicsTester.Android.Resource.Style.Widget_AppCompat_ActionBar_Solid; - global::Microsoft.Maui.Graphics.Resource.Style.Widget_AppCompat_ActionBar_TabBar = global::GraphicsTester.Android.Resource.Style.Widget_AppCompat_ActionBar_TabBar; - global::Microsoft.Maui.Graphics.Resource.Style.Widget_AppCompat_ActionBar_TabText = global::GraphicsTester.Android.Resource.Style.Widget_AppCompat_ActionBar_TabText; - global::Microsoft.Maui.Graphics.Resource.Style.Widget_AppCompat_ActionBar_TabView = global::GraphicsTester.Android.Resource.Style.Widget_AppCompat_ActionBar_TabView; - global::Microsoft.Maui.Graphics.Resource.Style.Widget_AppCompat_ActionButton = global::GraphicsTester.Android.Resource.Style.Widget_AppCompat_ActionButton; - global::Microsoft.Maui.Graphics.Resource.Style.Widget_AppCompat_ActionButton_CloseMode = global::GraphicsTester.Android.Resource.Style.Widget_AppCompat_ActionButton_CloseMode; - global::Microsoft.Maui.Graphics.Resource.Style.Widget_AppCompat_ActionButton_Overflow = global::GraphicsTester.Android.Resource.Style.Widget_AppCompat_ActionButton_Overflow; - global::Microsoft.Maui.Graphics.Resource.Style.Widget_AppCompat_ActionMode = global::GraphicsTester.Android.Resource.Style.Widget_AppCompat_ActionMode; - global::Microsoft.Maui.Graphics.Resource.Style.Widget_AppCompat_ActivityChooserView = global::GraphicsTester.Android.Resource.Style.Widget_AppCompat_ActivityChooserView; - global::Microsoft.Maui.Graphics.Resource.Style.Widget_AppCompat_AutoCompleteTextView = global::GraphicsTester.Android.Resource.Style.Widget_AppCompat_AutoCompleteTextView; - global::Microsoft.Maui.Graphics.Resource.Style.Widget_AppCompat_Button = global::GraphicsTester.Android.Resource.Style.Widget_AppCompat_Button; - global::Microsoft.Maui.Graphics.Resource.Style.Widget_AppCompat_ButtonBar = global::GraphicsTester.Android.Resource.Style.Widget_AppCompat_ButtonBar; - global::Microsoft.Maui.Graphics.Resource.Style.Widget_AppCompat_ButtonBar_AlertDialog = global::GraphicsTester.Android.Resource.Style.Widget_AppCompat_ButtonBar_AlertDialog; - global::Microsoft.Maui.Graphics.Resource.Style.Widget_AppCompat_Button_Borderless = global::GraphicsTester.Android.Resource.Style.Widget_AppCompat_Button_Borderless; - global::Microsoft.Maui.Graphics.Resource.Style.Widget_AppCompat_Button_Borderless_Colored = global::GraphicsTester.Android.Resource.Style.Widget_AppCompat_Button_Borderless_Colored; - global::Microsoft.Maui.Graphics.Resource.Style.Widget_AppCompat_Button_ButtonBar_AlertDialog = global::GraphicsTester.Android.Resource.Style.Widget_AppCompat_Button_ButtonBar_AlertDialog; - global::Microsoft.Maui.Graphics.Resource.Style.Widget_AppCompat_Button_Colored = global::GraphicsTester.Android.Resource.Style.Widget_AppCompat_Button_Colored; - global::Microsoft.Maui.Graphics.Resource.Style.Widget_AppCompat_Button_Small = global::GraphicsTester.Android.Resource.Style.Widget_AppCompat_Button_Small; - global::Microsoft.Maui.Graphics.Resource.Style.Widget_AppCompat_CompoundButton_CheckBox = global::GraphicsTester.Android.Resource.Style.Widget_AppCompat_CompoundButton_CheckBox; - global::Microsoft.Maui.Graphics.Resource.Style.Widget_AppCompat_CompoundButton_RadioButton = global::GraphicsTester.Android.Resource.Style.Widget_AppCompat_CompoundButton_RadioButton; - global::Microsoft.Maui.Graphics.Resource.Style.Widget_AppCompat_CompoundButton_Switch = global::GraphicsTester.Android.Resource.Style.Widget_AppCompat_CompoundButton_Switch; - global::Microsoft.Maui.Graphics.Resource.Style.Widget_AppCompat_DrawerArrowToggle = global::GraphicsTester.Android.Resource.Style.Widget_AppCompat_DrawerArrowToggle; - global::Microsoft.Maui.Graphics.Resource.Style.Widget_AppCompat_DropDownItem_Spinner = global::GraphicsTester.Android.Resource.Style.Widget_AppCompat_DropDownItem_Spinner; - global::Microsoft.Maui.Graphics.Resource.Style.Widget_AppCompat_EditText = global::GraphicsTester.Android.Resource.Style.Widget_AppCompat_EditText; - global::Microsoft.Maui.Graphics.Resource.Style.Widget_AppCompat_ImageButton = global::GraphicsTester.Android.Resource.Style.Widget_AppCompat_ImageButton; - global::Microsoft.Maui.Graphics.Resource.Style.Widget_AppCompat_Light_ActionBar = global::GraphicsTester.Android.Resource.Style.Widget_AppCompat_Light_ActionBar; - global::Microsoft.Maui.Graphics.Resource.Style.Widget_AppCompat_Light_ActionBar_Solid = global::GraphicsTester.Android.Resource.Style.Widget_AppCompat_Light_ActionBar_Solid; - global::Microsoft.Maui.Graphics.Resource.Style.Widget_AppCompat_Light_ActionBar_Solid_Inverse = global::GraphicsTester.Android.Resource.Style.Widget_AppCompat_Light_ActionBar_Solid_Inverse; - global::Microsoft.Maui.Graphics.Resource.Style.Widget_AppCompat_Light_ActionBar_TabBar = global::GraphicsTester.Android.Resource.Style.Widget_AppCompat_Light_ActionBar_TabBar; - global::Microsoft.Maui.Graphics.Resource.Style.Widget_AppCompat_Light_ActionBar_TabBar_Inverse = global::GraphicsTester.Android.Resource.Style.Widget_AppCompat_Light_ActionBar_TabBar_Inverse; - global::Microsoft.Maui.Graphics.Resource.Style.Widget_AppCompat_Light_ActionBar_TabText = global::GraphicsTester.Android.Resource.Style.Widget_AppCompat_Light_ActionBar_TabText; - global::Microsoft.Maui.Graphics.Resource.Style.Widget_AppCompat_Light_ActionBar_TabText_Inverse = global::GraphicsTester.Android.Resource.Style.Widget_AppCompat_Light_ActionBar_TabText_Inverse; - global::Microsoft.Maui.Graphics.Resource.Style.Widget_AppCompat_Light_ActionBar_TabView = global::GraphicsTester.Android.Resource.Style.Widget_AppCompat_Light_ActionBar_TabView; - global::Microsoft.Maui.Graphics.Resource.Style.Widget_AppCompat_Light_ActionBar_TabView_Inverse = global::GraphicsTester.Android.Resource.Style.Widget_AppCompat_Light_ActionBar_TabView_Inverse; - global::Microsoft.Maui.Graphics.Resource.Style.Widget_AppCompat_Light_ActionButton = global::GraphicsTester.Android.Resource.Style.Widget_AppCompat_Light_ActionButton; - global::Microsoft.Maui.Graphics.Resource.Style.Widget_AppCompat_Light_ActionButton_CloseMode = global::GraphicsTester.Android.Resource.Style.Widget_AppCompat_Light_ActionButton_CloseMode; - global::Microsoft.Maui.Graphics.Resource.Style.Widget_AppCompat_Light_ActionButton_Overflow = global::GraphicsTester.Android.Resource.Style.Widget_AppCompat_Light_ActionButton_Overflow; - global::Microsoft.Maui.Graphics.Resource.Style.Widget_AppCompat_Light_ActionMode_Inverse = global::GraphicsTester.Android.Resource.Style.Widget_AppCompat_Light_ActionMode_Inverse; - global::Microsoft.Maui.Graphics.Resource.Style.Widget_AppCompat_Light_ActivityChooserView = global::GraphicsTester.Android.Resource.Style.Widget_AppCompat_Light_ActivityChooserView; - global::Microsoft.Maui.Graphics.Resource.Style.Widget_AppCompat_Light_AutoCompleteTextView = global::GraphicsTester.Android.Resource.Style.Widget_AppCompat_Light_AutoCompleteTextView; - global::Microsoft.Maui.Graphics.Resource.Style.Widget_AppCompat_Light_DropDownItem_Spinner = global::GraphicsTester.Android.Resource.Style.Widget_AppCompat_Light_DropDownItem_Spinner; - global::Microsoft.Maui.Graphics.Resource.Style.Widget_AppCompat_Light_ListPopupWindow = global::GraphicsTester.Android.Resource.Style.Widget_AppCompat_Light_ListPopupWindow; - global::Microsoft.Maui.Graphics.Resource.Style.Widget_AppCompat_Light_ListView_DropDown = global::GraphicsTester.Android.Resource.Style.Widget_AppCompat_Light_ListView_DropDown; - global::Microsoft.Maui.Graphics.Resource.Style.Widget_AppCompat_Light_PopupMenu = global::GraphicsTester.Android.Resource.Style.Widget_AppCompat_Light_PopupMenu; - global::Microsoft.Maui.Graphics.Resource.Style.Widget_AppCompat_Light_PopupMenu_Overflow = global::GraphicsTester.Android.Resource.Style.Widget_AppCompat_Light_PopupMenu_Overflow; - global::Microsoft.Maui.Graphics.Resource.Style.Widget_AppCompat_Light_SearchView = global::GraphicsTester.Android.Resource.Style.Widget_AppCompat_Light_SearchView; - global::Microsoft.Maui.Graphics.Resource.Style.Widget_AppCompat_Light_Spinner_DropDown_ActionBar = global::GraphicsTester.Android.Resource.Style.Widget_AppCompat_Light_Spinner_DropDown_ActionBar; - global::Microsoft.Maui.Graphics.Resource.Style.Widget_AppCompat_ListMenuView = global::GraphicsTester.Android.Resource.Style.Widget_AppCompat_ListMenuView; - global::Microsoft.Maui.Graphics.Resource.Style.Widget_AppCompat_ListPopupWindow = global::GraphicsTester.Android.Resource.Style.Widget_AppCompat_ListPopupWindow; - global::Microsoft.Maui.Graphics.Resource.Style.Widget_AppCompat_ListView = global::GraphicsTester.Android.Resource.Style.Widget_AppCompat_ListView; - global::Microsoft.Maui.Graphics.Resource.Style.Widget_AppCompat_ListView_DropDown = global::GraphicsTester.Android.Resource.Style.Widget_AppCompat_ListView_DropDown; - global::Microsoft.Maui.Graphics.Resource.Style.Widget_AppCompat_ListView_Menu = global::GraphicsTester.Android.Resource.Style.Widget_AppCompat_ListView_Menu; - global::Microsoft.Maui.Graphics.Resource.Style.Widget_AppCompat_PopupMenu = global::GraphicsTester.Android.Resource.Style.Widget_AppCompat_PopupMenu; - global::Microsoft.Maui.Graphics.Resource.Style.Widget_AppCompat_PopupMenu_Overflow = global::GraphicsTester.Android.Resource.Style.Widget_AppCompat_PopupMenu_Overflow; - global::Microsoft.Maui.Graphics.Resource.Style.Widget_AppCompat_PopupWindow = global::GraphicsTester.Android.Resource.Style.Widget_AppCompat_PopupWindow; - global::Microsoft.Maui.Graphics.Resource.Style.Widget_AppCompat_ProgressBar = global::GraphicsTester.Android.Resource.Style.Widget_AppCompat_ProgressBar; - global::Microsoft.Maui.Graphics.Resource.Style.Widget_AppCompat_ProgressBar_Horizontal = global::GraphicsTester.Android.Resource.Style.Widget_AppCompat_ProgressBar_Horizontal; - global::Microsoft.Maui.Graphics.Resource.Style.Widget_AppCompat_RatingBar = global::GraphicsTester.Android.Resource.Style.Widget_AppCompat_RatingBar; - global::Microsoft.Maui.Graphics.Resource.Style.Widget_AppCompat_RatingBar_Indicator = global::GraphicsTester.Android.Resource.Style.Widget_AppCompat_RatingBar_Indicator; - global::Microsoft.Maui.Graphics.Resource.Style.Widget_AppCompat_RatingBar_Small = global::GraphicsTester.Android.Resource.Style.Widget_AppCompat_RatingBar_Small; - global::Microsoft.Maui.Graphics.Resource.Style.Widget_AppCompat_SearchView = global::GraphicsTester.Android.Resource.Style.Widget_AppCompat_SearchView; - global::Microsoft.Maui.Graphics.Resource.Style.Widget_AppCompat_SearchView_ActionBar = global::GraphicsTester.Android.Resource.Style.Widget_AppCompat_SearchView_ActionBar; - global::Microsoft.Maui.Graphics.Resource.Style.Widget_AppCompat_SeekBar = global::GraphicsTester.Android.Resource.Style.Widget_AppCompat_SeekBar; - global::Microsoft.Maui.Graphics.Resource.Style.Widget_AppCompat_SeekBar_Discrete = global::GraphicsTester.Android.Resource.Style.Widget_AppCompat_SeekBar_Discrete; - global::Microsoft.Maui.Graphics.Resource.Style.Widget_AppCompat_Spinner = global::GraphicsTester.Android.Resource.Style.Widget_AppCompat_Spinner; - global::Microsoft.Maui.Graphics.Resource.Style.Widget_AppCompat_Spinner_DropDown = global::GraphicsTester.Android.Resource.Style.Widget_AppCompat_Spinner_DropDown; - global::Microsoft.Maui.Graphics.Resource.Style.Widget_AppCompat_Spinner_DropDown_ActionBar = global::GraphicsTester.Android.Resource.Style.Widget_AppCompat_Spinner_DropDown_ActionBar; - global::Microsoft.Maui.Graphics.Resource.Style.Widget_AppCompat_Spinner_Underlined = global::GraphicsTester.Android.Resource.Style.Widget_AppCompat_Spinner_Underlined; - global::Microsoft.Maui.Graphics.Resource.Style.Widget_AppCompat_TextView = global::GraphicsTester.Android.Resource.Style.Widget_AppCompat_TextView; - global::Microsoft.Maui.Graphics.Resource.Style.Widget_AppCompat_TextView_SpinnerItem = global::GraphicsTester.Android.Resource.Style.Widget_AppCompat_TextView_SpinnerItem; - global::Microsoft.Maui.Graphics.Resource.Style.Widget_AppCompat_Toolbar = global::GraphicsTester.Android.Resource.Style.Widget_AppCompat_Toolbar; - global::Microsoft.Maui.Graphics.Resource.Style.Widget_AppCompat_Toolbar_Button_Navigation = global::GraphicsTester.Android.Resource.Style.Widget_AppCompat_Toolbar_Button_Navigation; - global::Microsoft.Maui.Graphics.Resource.Style.Widget_Compat_NotificationActionContainer = global::GraphicsTester.Android.Resource.Style.Widget_Compat_NotificationActionContainer; - global::Microsoft.Maui.Graphics.Resource.Style.Widget_Compat_NotificationActionText = global::GraphicsTester.Android.Resource.Style.Widget_Compat_NotificationActionText; - global::Microsoft.Maui.Graphics.Resource.Style.Widget_Design_AppBarLayout = global::GraphicsTester.Android.Resource.Style.Widget_Design_AppBarLayout; - global::Microsoft.Maui.Graphics.Resource.Style.Widget_Design_BottomNavigationView = global::GraphicsTester.Android.Resource.Style.Widget_Design_BottomNavigationView; - global::Microsoft.Maui.Graphics.Resource.Style.Widget_Design_BottomSheet_Modal = global::GraphicsTester.Android.Resource.Style.Widget_Design_BottomSheet_Modal; - global::Microsoft.Maui.Graphics.Resource.Style.Widget_Design_CollapsingToolbar = global::GraphicsTester.Android.Resource.Style.Widget_Design_CollapsingToolbar; - global::Microsoft.Maui.Graphics.Resource.Style.Widget_Design_FloatingActionButton = global::GraphicsTester.Android.Resource.Style.Widget_Design_FloatingActionButton; - global::Microsoft.Maui.Graphics.Resource.Style.Widget_Design_NavigationView = global::GraphicsTester.Android.Resource.Style.Widget_Design_NavigationView; - global::Microsoft.Maui.Graphics.Resource.Style.Widget_Design_ScrimInsetsFrameLayout = global::GraphicsTester.Android.Resource.Style.Widget_Design_ScrimInsetsFrameLayout; - global::Microsoft.Maui.Graphics.Resource.Style.Widget_Design_Snackbar = global::GraphicsTester.Android.Resource.Style.Widget_Design_Snackbar; - global::Microsoft.Maui.Graphics.Resource.Style.Widget_Design_TabLayout = global::GraphicsTester.Android.Resource.Style.Widget_Design_TabLayout; - global::Microsoft.Maui.Graphics.Resource.Style.Widget_Design_TextInputEditText = global::GraphicsTester.Android.Resource.Style.Widget_Design_TextInputEditText; - global::Microsoft.Maui.Graphics.Resource.Style.Widget_Design_TextInputLayout = global::GraphicsTester.Android.Resource.Style.Widget_Design_TextInputLayout; - global::Microsoft.Maui.Graphics.Resource.Style.Widget_MaterialComponents_ActionBar_Primary = global::GraphicsTester.Android.Resource.Style.Widget_MaterialComponents_ActionBar_Primary; - global::Microsoft.Maui.Graphics.Resource.Style.Widget_MaterialComponents_ActionBar_PrimarySurface = global::GraphicsTester.Android.Resource.Style.Widget_MaterialComponents_ActionBar_PrimarySurface; - global::Microsoft.Maui.Graphics.Resource.Style.Widget_MaterialComponents_ActionBar_Solid = global::GraphicsTester.Android.Resource.Style.Widget_MaterialComponents_ActionBar_Solid; - global::Microsoft.Maui.Graphics.Resource.Style.Widget_MaterialComponents_ActionBar_Surface = global::GraphicsTester.Android.Resource.Style.Widget_MaterialComponents_ActionBar_Surface; - global::Microsoft.Maui.Graphics.Resource.Style.Widget_MaterialComponents_AppBarLayout_Primary = global::GraphicsTester.Android.Resource.Style.Widget_MaterialComponents_AppBarLayout_Primary; - global::Microsoft.Maui.Graphics.Resource.Style.Widget_MaterialComponents_AppBarLayout_PrimarySurface = global::GraphicsTester.Android.Resource.Style.Widget_MaterialComponents_AppBarLayout_PrimarySurface; - global::Microsoft.Maui.Graphics.Resource.Style.Widget_MaterialComponents_AppBarLayout_Surface = global::GraphicsTester.Android.Resource.Style.Widget_MaterialComponents_AppBarLayout_Surface; - global::Microsoft.Maui.Graphics.Resource.Style.Widget_MaterialComponents_AutoCompleteTextView_FilledBox = global::GraphicsTester.Android.Resource.Style.Widget_MaterialComponents_AutoCompleteTextView_FilledBox; - global::Microsoft.Maui.Graphics.Resource.Style.Widget_MaterialComponents_AutoCompleteTextView_FilledBox_Dense = global::GraphicsTester.Android.Resource.Style.Widget_MaterialComponents_AutoCompleteTextView_FilledBox_Dense; - global::Microsoft.Maui.Graphics.Resource.Style.Widget_MaterialComponents_AutoCompleteTextView_OutlinedBox = global::GraphicsTester.Android.Resource.Style.Widget_MaterialComponents_AutoCompleteTextView_OutlinedBox; - global::Microsoft.Maui.Graphics.Resource.Style.Widget_MaterialComponents_AutoCompleteTextView_OutlinedBox_Dense = global::GraphicsTester.Android.Resource.Style.Widget_MaterialComponents_AutoCompleteTextView_OutlinedBox_Dense; - global::Microsoft.Maui.Graphics.Resource.Style.Widget_MaterialComponents_Badge = global::GraphicsTester.Android.Resource.Style.Widget_MaterialComponents_Badge; - global::Microsoft.Maui.Graphics.Resource.Style.Widget_MaterialComponents_BottomAppBar = global::GraphicsTester.Android.Resource.Style.Widget_MaterialComponents_BottomAppBar; - global::Microsoft.Maui.Graphics.Resource.Style.Widget_MaterialComponents_BottomAppBar_Colored = global::GraphicsTester.Android.Resource.Style.Widget_MaterialComponents_BottomAppBar_Colored; - global::Microsoft.Maui.Graphics.Resource.Style.Widget_MaterialComponents_BottomAppBar_PrimarySurface = global::GraphicsTester.Android.Resource.Style.Widget_MaterialComponents_BottomAppBar_PrimarySurface; - global::Microsoft.Maui.Graphics.Resource.Style.Widget_MaterialComponents_BottomNavigationView = global::GraphicsTester.Android.Resource.Style.Widget_MaterialComponents_BottomNavigationView; - global::Microsoft.Maui.Graphics.Resource.Style.Widget_MaterialComponents_BottomNavigationView_Colored = global::GraphicsTester.Android.Resource.Style.Widget_MaterialComponents_BottomNavigationView_Colored; - global::Microsoft.Maui.Graphics.Resource.Style.Widget_MaterialComponents_BottomNavigationView_PrimarySurface = global::GraphicsTester.Android.Resource.Style.Widget_MaterialComponents_BottomNavigationView_PrimarySurface; - global::Microsoft.Maui.Graphics.Resource.Style.Widget_MaterialComponents_BottomSheet = global::GraphicsTester.Android.Resource.Style.Widget_MaterialComponents_BottomSheet; - global::Microsoft.Maui.Graphics.Resource.Style.Widget_MaterialComponents_BottomSheet_Modal = global::GraphicsTester.Android.Resource.Style.Widget_MaterialComponents_BottomSheet_Modal; - global::Microsoft.Maui.Graphics.Resource.Style.Widget_MaterialComponents_Button = global::GraphicsTester.Android.Resource.Style.Widget_MaterialComponents_Button; - global::Microsoft.Maui.Graphics.Resource.Style.Widget_MaterialComponents_Button_Icon = global::GraphicsTester.Android.Resource.Style.Widget_MaterialComponents_Button_Icon; - global::Microsoft.Maui.Graphics.Resource.Style.Widget_MaterialComponents_Button_OutlinedButton = global::GraphicsTester.Android.Resource.Style.Widget_MaterialComponents_Button_OutlinedButton; - global::Microsoft.Maui.Graphics.Resource.Style.Widget_MaterialComponents_Button_OutlinedButton_Icon = global::GraphicsTester.Android.Resource.Style.Widget_MaterialComponents_Button_OutlinedButton_Icon; - global::Microsoft.Maui.Graphics.Resource.Style.Widget_MaterialComponents_Button_TextButton = global::GraphicsTester.Android.Resource.Style.Widget_MaterialComponents_Button_TextButton; - global::Microsoft.Maui.Graphics.Resource.Style.Widget_MaterialComponents_Button_TextButton_Dialog = global::GraphicsTester.Android.Resource.Style.Widget_MaterialComponents_Button_TextButton_Dialog; - global::Microsoft.Maui.Graphics.Resource.Style.Widget_MaterialComponents_Button_TextButton_Dialog_Flush = global::GraphicsTester.Android.Resource.Style.Widget_MaterialComponents_Button_TextButton_Dialog_Flush; - global::Microsoft.Maui.Graphics.Resource.Style.Widget_MaterialComponents_Button_TextButton_Dialog_Icon = global::GraphicsTester.Android.Resource.Style.Widget_MaterialComponents_Button_TextButton_Dialog_Icon; - global::Microsoft.Maui.Graphics.Resource.Style.Widget_MaterialComponents_Button_TextButton_Icon = global::GraphicsTester.Android.Resource.Style.Widget_MaterialComponents_Button_TextButton_Icon; - global::Microsoft.Maui.Graphics.Resource.Style.Widget_MaterialComponents_Button_TextButton_Snackbar = global::GraphicsTester.Android.Resource.Style.Widget_MaterialComponents_Button_TextButton_Snackbar; - global::Microsoft.Maui.Graphics.Resource.Style.Widget_MaterialComponents_Button_UnelevatedButton = global::GraphicsTester.Android.Resource.Style.Widget_MaterialComponents_Button_UnelevatedButton; - global::Microsoft.Maui.Graphics.Resource.Style.Widget_MaterialComponents_Button_UnelevatedButton_Icon = global::GraphicsTester.Android.Resource.Style.Widget_MaterialComponents_Button_UnelevatedButton_Icon; - global::Microsoft.Maui.Graphics.Resource.Style.Widget_MaterialComponents_CardView = global::GraphicsTester.Android.Resource.Style.Widget_MaterialComponents_CardView; - global::Microsoft.Maui.Graphics.Resource.Style.Widget_MaterialComponents_CheckedTextView = global::GraphicsTester.Android.Resource.Style.Widget_MaterialComponents_CheckedTextView; - global::Microsoft.Maui.Graphics.Resource.Style.Widget_MaterialComponents_ChipGroup = global::GraphicsTester.Android.Resource.Style.Widget_MaterialComponents_ChipGroup; - global::Microsoft.Maui.Graphics.Resource.Style.Widget_MaterialComponents_Chip_Action = global::GraphicsTester.Android.Resource.Style.Widget_MaterialComponents_Chip_Action; - global::Microsoft.Maui.Graphics.Resource.Style.Widget_MaterialComponents_Chip_Choice = global::GraphicsTester.Android.Resource.Style.Widget_MaterialComponents_Chip_Choice; - global::Microsoft.Maui.Graphics.Resource.Style.Widget_MaterialComponents_Chip_Entry = global::GraphicsTester.Android.Resource.Style.Widget_MaterialComponents_Chip_Entry; - global::Microsoft.Maui.Graphics.Resource.Style.Widget_MaterialComponents_Chip_Filter = global::GraphicsTester.Android.Resource.Style.Widget_MaterialComponents_Chip_Filter; - global::Microsoft.Maui.Graphics.Resource.Style.Widget_MaterialComponents_CircularProgressIndicator = global::GraphicsTester.Android.Resource.Style.Widget_MaterialComponents_CircularProgressIndicator; - global::Microsoft.Maui.Graphics.Resource.Style.Widget_MaterialComponents_CircularProgressIndicator_ExtraSmall = global::GraphicsTester.Android.Resource.Style.Widget_MaterialComponents_CircularProgressIndicator_ExtraSmall; - global::Microsoft.Maui.Graphics.Resource.Style.Widget_MaterialComponents_CircularProgressIndicator_Medium = global::GraphicsTester.Android.Resource.Style.Widget_MaterialComponents_CircularProgressIndicator_Medium; - global::Microsoft.Maui.Graphics.Resource.Style.Widget_MaterialComponents_CircularProgressIndicator_Small = global::GraphicsTester.Android.Resource.Style.Widget_MaterialComponents_CircularProgressIndicator_Small; - global::Microsoft.Maui.Graphics.Resource.Style.Widget_MaterialComponents_CollapsingToolbar = global::GraphicsTester.Android.Resource.Style.Widget_MaterialComponents_CollapsingToolbar; - global::Microsoft.Maui.Graphics.Resource.Style.Widget_MaterialComponents_CompoundButton_CheckBox = global::GraphicsTester.Android.Resource.Style.Widget_MaterialComponents_CompoundButton_CheckBox; - global::Microsoft.Maui.Graphics.Resource.Style.Widget_MaterialComponents_CompoundButton_RadioButton = global::GraphicsTester.Android.Resource.Style.Widget_MaterialComponents_CompoundButton_RadioButton; - global::Microsoft.Maui.Graphics.Resource.Style.Widget_MaterialComponents_CompoundButton_Switch = global::GraphicsTester.Android.Resource.Style.Widget_MaterialComponents_CompoundButton_Switch; - global::Microsoft.Maui.Graphics.Resource.Style.Widget_MaterialComponents_ExtendedFloatingActionButton = global::GraphicsTester.Android.Resource.Style.Widget_MaterialComponents_ExtendedFloatingActionButton; - global::Microsoft.Maui.Graphics.Resource.Style.Widget_MaterialComponents_ExtendedFloatingActionButton_Icon = global::GraphicsTester.Android.Resource.Style.Widget_MaterialComponents_ExtendedFloatingActionButton_Icon; - global::Microsoft.Maui.Graphics.Resource.Style.Widget_MaterialComponents_FloatingActionButton = global::GraphicsTester.Android.Resource.Style.Widget_MaterialComponents_FloatingActionButton; - global::Microsoft.Maui.Graphics.Resource.Style.Widget_MaterialComponents_Light_ActionBar_Solid = global::GraphicsTester.Android.Resource.Style.Widget_MaterialComponents_Light_ActionBar_Solid; - global::Microsoft.Maui.Graphics.Resource.Style.Widget_MaterialComponents_LinearProgressIndicator = global::GraphicsTester.Android.Resource.Style.Widget_MaterialComponents_LinearProgressIndicator; - global::Microsoft.Maui.Graphics.Resource.Style.Widget_MaterialComponents_MaterialButtonToggleGroup = global::GraphicsTester.Android.Resource.Style.Widget_MaterialComponents_MaterialButtonToggleGroup; - global::Microsoft.Maui.Graphics.Resource.Style.Widget_MaterialComponents_MaterialCalendar = global::GraphicsTester.Android.Resource.Style.Widget_MaterialComponents_MaterialCalendar; - global::Microsoft.Maui.Graphics.Resource.Style.Widget_MaterialComponents_MaterialCalendar_Day = global::GraphicsTester.Android.Resource.Style.Widget_MaterialComponents_MaterialCalendar_Day; - global::Microsoft.Maui.Graphics.Resource.Style.Widget_MaterialComponents_MaterialCalendar_DayTextView = global::GraphicsTester.Android.Resource.Style.Widget_MaterialComponents_MaterialCalendar_DayTextView; - global::Microsoft.Maui.Graphics.Resource.Style.Widget_MaterialComponents_MaterialCalendar_Day_Invalid = global::GraphicsTester.Android.Resource.Style.Widget_MaterialComponents_MaterialCalendar_Day_Invalid; - global::Microsoft.Maui.Graphics.Resource.Style.Widget_MaterialComponents_MaterialCalendar_Day_Selected = global::GraphicsTester.Android.Resource.Style.Widget_MaterialComponents_MaterialCalendar_Day_Selected; - global::Microsoft.Maui.Graphics.Resource.Style.Widget_MaterialComponents_MaterialCalendar_Day_Today = global::GraphicsTester.Android.Resource.Style.Widget_MaterialComponents_MaterialCalendar_Day_Today; - global::Microsoft.Maui.Graphics.Resource.Style.Widget_MaterialComponents_MaterialCalendar_Fullscreen = global::GraphicsTester.Android.Resource.Style.Widget_MaterialComponents_MaterialCalendar_Fullscreen; - global::Microsoft.Maui.Graphics.Resource.Style.Widget_MaterialComponents_MaterialCalendar_HeaderCancelButton = global::GraphicsTester.Android.Resource.Style.Widget_MaterialComponents_MaterialCalendar_HeaderCancelButton; - global::Microsoft.Maui.Graphics.Resource.Style.Widget_MaterialComponents_MaterialCalendar_HeaderConfirmButton = global::GraphicsTester.Android.Resource.Style.Widget_MaterialComponents_MaterialCalendar_HeaderConfirmButton; - global::Microsoft.Maui.Graphics.Resource.Style.Widget_MaterialComponents_MaterialCalendar_HeaderDivider = global::GraphicsTester.Android.Resource.Style.Widget_MaterialComponents_MaterialCalendar_HeaderDivider; - global::Microsoft.Maui.Graphics.Resource.Style.Widget_MaterialComponents_MaterialCalendar_HeaderLayout = global::GraphicsTester.Android.Resource.Style.Widget_MaterialComponents_MaterialCalendar_HeaderLayout; - global::Microsoft.Maui.Graphics.Resource.Style.Widget_MaterialComponents_MaterialCalendar_HeaderSelection = global::GraphicsTester.Android.Resource.Style.Widget_MaterialComponents_MaterialCalendar_HeaderSelection; - global::Microsoft.Maui.Graphics.Resource.Style.Widget_MaterialComponents_MaterialCalendar_HeaderSelection_Fullscreen = global::GraphicsTester.Android.Resource.Style.Widget_MaterialComponents_MaterialCalendar_HeaderSelection_Fullscreen; - global::Microsoft.Maui.Graphics.Resource.Style.Widget_MaterialComponents_MaterialCalendar_HeaderTitle = global::GraphicsTester.Android.Resource.Style.Widget_MaterialComponents_MaterialCalendar_HeaderTitle; - global::Microsoft.Maui.Graphics.Resource.Style.Widget_MaterialComponents_MaterialCalendar_HeaderToggleButton = global::GraphicsTester.Android.Resource.Style.Widget_MaterialComponents_MaterialCalendar_HeaderToggleButton; - global::Microsoft.Maui.Graphics.Resource.Style.Widget_MaterialComponents_MaterialCalendar_Item = global::GraphicsTester.Android.Resource.Style.Widget_MaterialComponents_MaterialCalendar_Item; - global::Microsoft.Maui.Graphics.Resource.Style.Widget_MaterialComponents_MaterialCalendar_MonthNavigationButton = global::GraphicsTester.Android.Resource.Style.Widget_MaterialComponents_MaterialCalendar_MonthNavigationButton; - global::Microsoft.Maui.Graphics.Resource.Style.Widget_MaterialComponents_MaterialCalendar_MonthTextView = global::GraphicsTester.Android.Resource.Style.Widget_MaterialComponents_MaterialCalendar_MonthTextView; - global::Microsoft.Maui.Graphics.Resource.Style.Widget_MaterialComponents_MaterialCalendar_Year = global::GraphicsTester.Android.Resource.Style.Widget_MaterialComponents_MaterialCalendar_Year; - global::Microsoft.Maui.Graphics.Resource.Style.Widget_MaterialComponents_MaterialCalendar_YearNavigationButton = global::GraphicsTester.Android.Resource.Style.Widget_MaterialComponents_MaterialCalendar_YearNavigationButton; - global::Microsoft.Maui.Graphics.Resource.Style.Widget_MaterialComponents_MaterialCalendar_Year_Selected = global::GraphicsTester.Android.Resource.Style.Widget_MaterialComponents_MaterialCalendar_Year_Selected; - global::Microsoft.Maui.Graphics.Resource.Style.Widget_MaterialComponents_MaterialCalendar_Year_Today = global::GraphicsTester.Android.Resource.Style.Widget_MaterialComponents_MaterialCalendar_Year_Today; - global::Microsoft.Maui.Graphics.Resource.Style.Widget_MaterialComponents_NavigationView = global::GraphicsTester.Android.Resource.Style.Widget_MaterialComponents_NavigationView; - global::Microsoft.Maui.Graphics.Resource.Style.Widget_MaterialComponents_PopupMenu = global::GraphicsTester.Android.Resource.Style.Widget_MaterialComponents_PopupMenu; - global::Microsoft.Maui.Graphics.Resource.Style.Widget_MaterialComponents_PopupMenu_ContextMenu = global::GraphicsTester.Android.Resource.Style.Widget_MaterialComponents_PopupMenu_ContextMenu; - global::Microsoft.Maui.Graphics.Resource.Style.Widget_MaterialComponents_PopupMenu_ListPopupWindow = global::GraphicsTester.Android.Resource.Style.Widget_MaterialComponents_PopupMenu_ListPopupWindow; - global::Microsoft.Maui.Graphics.Resource.Style.Widget_MaterialComponents_PopupMenu_Overflow = global::GraphicsTester.Android.Resource.Style.Widget_MaterialComponents_PopupMenu_Overflow; - global::Microsoft.Maui.Graphics.Resource.Style.Widget_MaterialComponents_ProgressIndicator = global::GraphicsTester.Android.Resource.Style.Widget_MaterialComponents_ProgressIndicator; - global::Microsoft.Maui.Graphics.Resource.Style.Widget_MaterialComponents_ShapeableImageView = global::GraphicsTester.Android.Resource.Style.Widget_MaterialComponents_ShapeableImageView; - global::Microsoft.Maui.Graphics.Resource.Style.Widget_MaterialComponents_Slider = global::GraphicsTester.Android.Resource.Style.Widget_MaterialComponents_Slider; - global::Microsoft.Maui.Graphics.Resource.Style.Widget_MaterialComponents_Snackbar = global::GraphicsTester.Android.Resource.Style.Widget_MaterialComponents_Snackbar; - global::Microsoft.Maui.Graphics.Resource.Style.Widget_MaterialComponents_Snackbar_FullWidth = global::GraphicsTester.Android.Resource.Style.Widget_MaterialComponents_Snackbar_FullWidth; - global::Microsoft.Maui.Graphics.Resource.Style.Widget_MaterialComponents_Snackbar_TextView = global::GraphicsTester.Android.Resource.Style.Widget_MaterialComponents_Snackbar_TextView; - global::Microsoft.Maui.Graphics.Resource.Style.Widget_MaterialComponents_TabLayout = global::GraphicsTester.Android.Resource.Style.Widget_MaterialComponents_TabLayout; - global::Microsoft.Maui.Graphics.Resource.Style.Widget_MaterialComponents_TabLayout_Colored = global::GraphicsTester.Android.Resource.Style.Widget_MaterialComponents_TabLayout_Colored; - global::Microsoft.Maui.Graphics.Resource.Style.Widget_MaterialComponents_TabLayout_PrimarySurface = global::GraphicsTester.Android.Resource.Style.Widget_MaterialComponents_TabLayout_PrimarySurface; - global::Microsoft.Maui.Graphics.Resource.Style.Widget_MaterialComponents_TextInputEditText_FilledBox = global::GraphicsTester.Android.Resource.Style.Widget_MaterialComponents_TextInputEditText_FilledBox; - global::Microsoft.Maui.Graphics.Resource.Style.Widget_MaterialComponents_TextInputEditText_FilledBox_Dense = global::GraphicsTester.Android.Resource.Style.Widget_MaterialComponents_TextInputEditText_FilledBox_Dense; - global::Microsoft.Maui.Graphics.Resource.Style.Widget_MaterialComponents_TextInputEditText_OutlinedBox = global::GraphicsTester.Android.Resource.Style.Widget_MaterialComponents_TextInputEditText_OutlinedBox; - global::Microsoft.Maui.Graphics.Resource.Style.Widget_MaterialComponents_TextInputEditText_OutlinedBox_Dense = global::GraphicsTester.Android.Resource.Style.Widget_MaterialComponents_TextInputEditText_OutlinedBox_Dense; - global::Microsoft.Maui.Graphics.Resource.Style.Widget_MaterialComponents_TextInputLayout_FilledBox = global::GraphicsTester.Android.Resource.Style.Widget_MaterialComponents_TextInputLayout_FilledBox; - global::Microsoft.Maui.Graphics.Resource.Style.Widget_MaterialComponents_TextInputLayout_FilledBox_Dense = global::GraphicsTester.Android.Resource.Style.Widget_MaterialComponents_TextInputLayout_FilledBox_Dense; - global::Microsoft.Maui.Graphics.Resource.Style.Widget_MaterialComponents_TextInputLayout_FilledBox_Dense_ExposedDropdownMenu = global::GraphicsTester.Android.Resource.Style.Widget_MaterialComponents_TextInputLayout_FilledBox_Dense_ExposedDropdownMenu; - global::Microsoft.Maui.Graphics.Resource.Style.Widget_MaterialComponents_TextInputLayout_FilledBox_ExposedDropdownMenu = global::GraphicsTester.Android.Resource.Style.Widget_MaterialComponents_TextInputLayout_FilledBox_ExposedDropdownMenu; - global::Microsoft.Maui.Graphics.Resource.Style.Widget_MaterialComponents_TextInputLayout_OutlinedBox = global::GraphicsTester.Android.Resource.Style.Widget_MaterialComponents_TextInputLayout_OutlinedBox; - global::Microsoft.Maui.Graphics.Resource.Style.Widget_MaterialComponents_TextInputLayout_OutlinedBox_Dense = global::GraphicsTester.Android.Resource.Style.Widget_MaterialComponents_TextInputLayout_OutlinedBox_Dense; - global::Microsoft.Maui.Graphics.Resource.Style.Widget_MaterialComponents_TextInputLayout_OutlinedBox_Dense_ExposedDropdownMenu = global::GraphicsTester.Android.Resource.Style.Widget_MaterialComponents_TextInputLayout_OutlinedBox_Dense_ExposedDropdownMenu; - global::Microsoft.Maui.Graphics.Resource.Style.Widget_MaterialComponents_TextInputLayout_OutlinedBox_ExposedDropdownMenu = global::GraphicsTester.Android.Resource.Style.Widget_MaterialComponents_TextInputLayout_OutlinedBox_ExposedDropdownMenu; - global::Microsoft.Maui.Graphics.Resource.Style.Widget_MaterialComponents_TextView = global::GraphicsTester.Android.Resource.Style.Widget_MaterialComponents_TextView; - global::Microsoft.Maui.Graphics.Resource.Style.Widget_MaterialComponents_TimePicker = global::GraphicsTester.Android.Resource.Style.Widget_MaterialComponents_TimePicker; - global::Microsoft.Maui.Graphics.Resource.Style.Widget_MaterialComponents_TimePicker_Button = global::GraphicsTester.Android.Resource.Style.Widget_MaterialComponents_TimePicker_Button; - global::Microsoft.Maui.Graphics.Resource.Style.Widget_MaterialComponents_TimePicker_Clock = global::GraphicsTester.Android.Resource.Style.Widget_MaterialComponents_TimePicker_Clock; - global::Microsoft.Maui.Graphics.Resource.Style.Widget_MaterialComponents_TimePicker_Display = global::GraphicsTester.Android.Resource.Style.Widget_MaterialComponents_TimePicker_Display; - global::Microsoft.Maui.Graphics.Resource.Style.Widget_MaterialComponents_TimePicker_Display_TextInputEditText = global::GraphicsTester.Android.Resource.Style.Widget_MaterialComponents_TimePicker_Display_TextInputEditText; - global::Microsoft.Maui.Graphics.Resource.Style.Widget_MaterialComponents_TimePicker_ImageButton = global::GraphicsTester.Android.Resource.Style.Widget_MaterialComponents_TimePicker_ImageButton; - global::Microsoft.Maui.Graphics.Resource.Style.Widget_MaterialComponents_TimePicker_ImageButton_ShapeAppearance = global::GraphicsTester.Android.Resource.Style.Widget_MaterialComponents_TimePicker_ImageButton_ShapeAppearance; - global::Microsoft.Maui.Graphics.Resource.Style.Widget_MaterialComponents_Toolbar = global::GraphicsTester.Android.Resource.Style.Widget_MaterialComponents_Toolbar; - global::Microsoft.Maui.Graphics.Resource.Style.Widget_MaterialComponents_Toolbar_Primary = global::GraphicsTester.Android.Resource.Style.Widget_MaterialComponents_Toolbar_Primary; - global::Microsoft.Maui.Graphics.Resource.Style.Widget_MaterialComponents_Toolbar_PrimarySurface = global::GraphicsTester.Android.Resource.Style.Widget_MaterialComponents_Toolbar_PrimarySurface; - global::Microsoft.Maui.Graphics.Resource.Style.Widget_MaterialComponents_Toolbar_Surface = global::GraphicsTester.Android.Resource.Style.Widget_MaterialComponents_Toolbar_Surface; - global::Microsoft.Maui.Graphics.Resource.Style.Widget_MaterialComponents_Tooltip = global::GraphicsTester.Android.Resource.Style.Widget_MaterialComponents_Tooltip; - global::Microsoft.Maui.Graphics.Resource.Style.Widget_Support_CoordinatorLayout = global::GraphicsTester.Android.Resource.Style.Widget_Support_CoordinatorLayout; - global::Microsoft.Maui.Graphics.Resource.Styleable.ActionBar = global::GraphicsTester.Android.Resource.Styleable.ActionBar; - global::Microsoft.Maui.Graphics.Resource.Styleable.ActionBarLayout = global::GraphicsTester.Android.Resource.Styleable.ActionBarLayout; - global::Microsoft.Maui.Graphics.Resource.Styleable.ActionBarLayout_android_layout_gravity = global::GraphicsTester.Android.Resource.Styleable.ActionBarLayout_android_layout_gravity; - global::Microsoft.Maui.Graphics.Resource.Styleable.ActionBar_background = global::GraphicsTester.Android.Resource.Styleable.ActionBar_background; - global::Microsoft.Maui.Graphics.Resource.Styleable.ActionBar_backgroundSplit = global::GraphicsTester.Android.Resource.Styleable.ActionBar_backgroundSplit; - global::Microsoft.Maui.Graphics.Resource.Styleable.ActionBar_backgroundStacked = global::GraphicsTester.Android.Resource.Styleable.ActionBar_backgroundStacked; - global::Microsoft.Maui.Graphics.Resource.Styleable.ActionBar_contentInsetEnd = global::GraphicsTester.Android.Resource.Styleable.ActionBar_contentInsetEnd; - global::Microsoft.Maui.Graphics.Resource.Styleable.ActionBar_contentInsetEndWithActions = global::GraphicsTester.Android.Resource.Styleable.ActionBar_contentInsetEndWithActions; - global::Microsoft.Maui.Graphics.Resource.Styleable.ActionBar_contentInsetLeft = global::GraphicsTester.Android.Resource.Styleable.ActionBar_contentInsetLeft; - global::Microsoft.Maui.Graphics.Resource.Styleable.ActionBar_contentInsetRight = global::GraphicsTester.Android.Resource.Styleable.ActionBar_contentInsetRight; - global::Microsoft.Maui.Graphics.Resource.Styleable.ActionBar_contentInsetStart = global::GraphicsTester.Android.Resource.Styleable.ActionBar_contentInsetStart; - global::Microsoft.Maui.Graphics.Resource.Styleable.ActionBar_contentInsetStartWithNavigation = global::GraphicsTester.Android.Resource.Styleable.ActionBar_contentInsetStartWithNavigation; - global::Microsoft.Maui.Graphics.Resource.Styleable.ActionBar_customNavigationLayout = global::GraphicsTester.Android.Resource.Styleable.ActionBar_customNavigationLayout; - global::Microsoft.Maui.Graphics.Resource.Styleable.ActionBar_displayOptions = global::GraphicsTester.Android.Resource.Styleable.ActionBar_displayOptions; - global::Microsoft.Maui.Graphics.Resource.Styleable.ActionBar_divider = global::GraphicsTester.Android.Resource.Styleable.ActionBar_divider; - global::Microsoft.Maui.Graphics.Resource.Styleable.ActionBar_elevation = global::GraphicsTester.Android.Resource.Styleable.ActionBar_elevation; - global::Microsoft.Maui.Graphics.Resource.Styleable.ActionBar_height = global::GraphicsTester.Android.Resource.Styleable.ActionBar_height; - global::Microsoft.Maui.Graphics.Resource.Styleable.ActionBar_hideOnContentScroll = global::GraphicsTester.Android.Resource.Styleable.ActionBar_hideOnContentScroll; - global::Microsoft.Maui.Graphics.Resource.Styleable.ActionBar_homeAsUpIndicator = global::GraphicsTester.Android.Resource.Styleable.ActionBar_homeAsUpIndicator; - global::Microsoft.Maui.Graphics.Resource.Styleable.ActionBar_homeLayout = global::GraphicsTester.Android.Resource.Styleable.ActionBar_homeLayout; - global::Microsoft.Maui.Graphics.Resource.Styleable.ActionBar_icon = global::GraphicsTester.Android.Resource.Styleable.ActionBar_icon; - global::Microsoft.Maui.Graphics.Resource.Styleable.ActionBar_indeterminateProgressStyle = global::GraphicsTester.Android.Resource.Styleable.ActionBar_indeterminateProgressStyle; - global::Microsoft.Maui.Graphics.Resource.Styleable.ActionBar_itemPadding = global::GraphicsTester.Android.Resource.Styleable.ActionBar_itemPadding; - global::Microsoft.Maui.Graphics.Resource.Styleable.ActionBar_logo = global::GraphicsTester.Android.Resource.Styleable.ActionBar_logo; - global::Microsoft.Maui.Graphics.Resource.Styleable.ActionBar_navigationMode = global::GraphicsTester.Android.Resource.Styleable.ActionBar_navigationMode; - global::Microsoft.Maui.Graphics.Resource.Styleable.ActionBar_popupTheme = global::GraphicsTester.Android.Resource.Styleable.ActionBar_popupTheme; - global::Microsoft.Maui.Graphics.Resource.Styleable.ActionBar_progressBarPadding = global::GraphicsTester.Android.Resource.Styleable.ActionBar_progressBarPadding; - global::Microsoft.Maui.Graphics.Resource.Styleable.ActionBar_progressBarStyle = global::GraphicsTester.Android.Resource.Styleable.ActionBar_progressBarStyle; - global::Microsoft.Maui.Graphics.Resource.Styleable.ActionBar_subtitle = global::GraphicsTester.Android.Resource.Styleable.ActionBar_subtitle; - global::Microsoft.Maui.Graphics.Resource.Styleable.ActionBar_subtitleTextStyle = global::GraphicsTester.Android.Resource.Styleable.ActionBar_subtitleTextStyle; - global::Microsoft.Maui.Graphics.Resource.Styleable.ActionBar_title = global::GraphicsTester.Android.Resource.Styleable.ActionBar_title; - global::Microsoft.Maui.Graphics.Resource.Styleable.ActionBar_titleTextStyle = global::GraphicsTester.Android.Resource.Styleable.ActionBar_titleTextStyle; - global::Microsoft.Maui.Graphics.Resource.Styleable.ActionMenuItemView = global::GraphicsTester.Android.Resource.Styleable.ActionMenuItemView; - global::Microsoft.Maui.Graphics.Resource.Styleable.ActionMenuItemView_android_minWidth = global::GraphicsTester.Android.Resource.Styleable.ActionMenuItemView_android_minWidth; - global::Microsoft.Maui.Graphics.Resource.Styleable.ActionMenuView = global::GraphicsTester.Android.Resource.Styleable.ActionMenuView; - global::Microsoft.Maui.Graphics.Resource.Styleable.ActionMode = global::GraphicsTester.Android.Resource.Styleable.ActionMode; - global::Microsoft.Maui.Graphics.Resource.Styleable.ActionMode_background = global::GraphicsTester.Android.Resource.Styleable.ActionMode_background; - global::Microsoft.Maui.Graphics.Resource.Styleable.ActionMode_backgroundSplit = global::GraphicsTester.Android.Resource.Styleable.ActionMode_backgroundSplit; - global::Microsoft.Maui.Graphics.Resource.Styleable.ActionMode_closeItemLayout = global::GraphicsTester.Android.Resource.Styleable.ActionMode_closeItemLayout; - global::Microsoft.Maui.Graphics.Resource.Styleable.ActionMode_height = global::GraphicsTester.Android.Resource.Styleable.ActionMode_height; - global::Microsoft.Maui.Graphics.Resource.Styleable.ActionMode_subtitleTextStyle = global::GraphicsTester.Android.Resource.Styleable.ActionMode_subtitleTextStyle; - global::Microsoft.Maui.Graphics.Resource.Styleable.ActionMode_titleTextStyle = global::GraphicsTester.Android.Resource.Styleable.ActionMode_titleTextStyle; - global::Microsoft.Maui.Graphics.Resource.Styleable.ActivityChooserView = global::GraphicsTester.Android.Resource.Styleable.ActivityChooserView; - global::Microsoft.Maui.Graphics.Resource.Styleable.ActivityChooserView_expandActivityOverflowButtonDrawable = global::GraphicsTester.Android.Resource.Styleable.ActivityChooserView_expandActivityOverflowButtonDrawable; - global::Microsoft.Maui.Graphics.Resource.Styleable.ActivityChooserView_initialActivityCount = global::GraphicsTester.Android.Resource.Styleable.ActivityChooserView_initialActivityCount; - global::Microsoft.Maui.Graphics.Resource.Styleable.AlertDialog = global::GraphicsTester.Android.Resource.Styleable.AlertDialog; - global::Microsoft.Maui.Graphics.Resource.Styleable.AlertDialog_android_layout = global::GraphicsTester.Android.Resource.Styleable.AlertDialog_android_layout; - global::Microsoft.Maui.Graphics.Resource.Styleable.AlertDialog_buttonIconDimen = global::GraphicsTester.Android.Resource.Styleable.AlertDialog_buttonIconDimen; - global::Microsoft.Maui.Graphics.Resource.Styleable.AlertDialog_buttonPanelSideLayout = global::GraphicsTester.Android.Resource.Styleable.AlertDialog_buttonPanelSideLayout; - global::Microsoft.Maui.Graphics.Resource.Styleable.AlertDialog_listItemLayout = global::GraphicsTester.Android.Resource.Styleable.AlertDialog_listItemLayout; - global::Microsoft.Maui.Graphics.Resource.Styleable.AlertDialog_listLayout = global::GraphicsTester.Android.Resource.Styleable.AlertDialog_listLayout; - global::Microsoft.Maui.Graphics.Resource.Styleable.AlertDialog_multiChoiceItemLayout = global::GraphicsTester.Android.Resource.Styleable.AlertDialog_multiChoiceItemLayout; - global::Microsoft.Maui.Graphics.Resource.Styleable.AlertDialog_showTitle = global::GraphicsTester.Android.Resource.Styleable.AlertDialog_showTitle; - global::Microsoft.Maui.Graphics.Resource.Styleable.AlertDialog_singleChoiceItemLayout = global::GraphicsTester.Android.Resource.Styleable.AlertDialog_singleChoiceItemLayout; - global::Microsoft.Maui.Graphics.Resource.Styleable.AnimatedStateListDrawableCompat = global::GraphicsTester.Android.Resource.Styleable.AnimatedStateListDrawableCompat; - global::Microsoft.Maui.Graphics.Resource.Styleable.AnimatedStateListDrawableCompat_android_constantSize = global::GraphicsTester.Android.Resource.Styleable.AnimatedStateListDrawableCompat_android_constantSize; - global::Microsoft.Maui.Graphics.Resource.Styleable.AnimatedStateListDrawableCompat_android_dither = global::GraphicsTester.Android.Resource.Styleable.AnimatedStateListDrawableCompat_android_dither; - global::Microsoft.Maui.Graphics.Resource.Styleable.AnimatedStateListDrawableCompat_android_enterFadeDuration = global::GraphicsTester.Android.Resource.Styleable.AnimatedStateListDrawableCompat_android_enterFadeDuration; - global::Microsoft.Maui.Graphics.Resource.Styleable.AnimatedStateListDrawableCompat_android_exitFadeDuration = global::GraphicsTester.Android.Resource.Styleable.AnimatedStateListDrawableCompat_android_exitFadeDuration; - global::Microsoft.Maui.Graphics.Resource.Styleable.AnimatedStateListDrawableCompat_android_variablePadding = global::GraphicsTester.Android.Resource.Styleable.AnimatedStateListDrawableCompat_android_variablePadding; - global::Microsoft.Maui.Graphics.Resource.Styleable.AnimatedStateListDrawableCompat_android_visible = global::GraphicsTester.Android.Resource.Styleable.AnimatedStateListDrawableCompat_android_visible; - global::Microsoft.Maui.Graphics.Resource.Styleable.AnimatedStateListDrawableItem = global::GraphicsTester.Android.Resource.Styleable.AnimatedStateListDrawableItem; - global::Microsoft.Maui.Graphics.Resource.Styleable.AnimatedStateListDrawableItem_android_drawable = global::GraphicsTester.Android.Resource.Styleable.AnimatedStateListDrawableItem_android_drawable; - global::Microsoft.Maui.Graphics.Resource.Styleable.AnimatedStateListDrawableItem_android_id = global::GraphicsTester.Android.Resource.Styleable.AnimatedStateListDrawableItem_android_id; - global::Microsoft.Maui.Graphics.Resource.Styleable.AnimatedStateListDrawableTransition = global::GraphicsTester.Android.Resource.Styleable.AnimatedStateListDrawableTransition; - global::Microsoft.Maui.Graphics.Resource.Styleable.AnimatedStateListDrawableTransition_android_drawable = global::GraphicsTester.Android.Resource.Styleable.AnimatedStateListDrawableTransition_android_drawable; - global::Microsoft.Maui.Graphics.Resource.Styleable.AnimatedStateListDrawableTransition_android_fromId = global::GraphicsTester.Android.Resource.Styleable.AnimatedStateListDrawableTransition_android_fromId; - global::Microsoft.Maui.Graphics.Resource.Styleable.AnimatedStateListDrawableTransition_android_reversible = global::GraphicsTester.Android.Resource.Styleable.AnimatedStateListDrawableTransition_android_reversible; - global::Microsoft.Maui.Graphics.Resource.Styleable.AnimatedStateListDrawableTransition_android_toId = global::GraphicsTester.Android.Resource.Styleable.AnimatedStateListDrawableTransition_android_toId; - global::Microsoft.Maui.Graphics.Resource.Styleable.AppBarLayout = global::GraphicsTester.Android.Resource.Styleable.AppBarLayout; - global::Microsoft.Maui.Graphics.Resource.Styleable.AppBarLayoutStates = global::GraphicsTester.Android.Resource.Styleable.AppBarLayoutStates; - global::Microsoft.Maui.Graphics.Resource.Styleable.AppBarLayoutStates_state_collapsed = global::GraphicsTester.Android.Resource.Styleable.AppBarLayoutStates_state_collapsed; - global::Microsoft.Maui.Graphics.Resource.Styleable.AppBarLayoutStates_state_collapsible = global::GraphicsTester.Android.Resource.Styleable.AppBarLayoutStates_state_collapsible; - global::Microsoft.Maui.Graphics.Resource.Styleable.AppBarLayoutStates_state_liftable = global::GraphicsTester.Android.Resource.Styleable.AppBarLayoutStates_state_liftable; - global::Microsoft.Maui.Graphics.Resource.Styleable.AppBarLayoutStates_state_lifted = global::GraphicsTester.Android.Resource.Styleable.AppBarLayoutStates_state_lifted; - global::Microsoft.Maui.Graphics.Resource.Styleable.AppBarLayout_android_background = global::GraphicsTester.Android.Resource.Styleable.AppBarLayout_android_background; - global::Microsoft.Maui.Graphics.Resource.Styleable.AppBarLayout_android_keyboardNavigationCluster = global::GraphicsTester.Android.Resource.Styleable.AppBarLayout_android_keyboardNavigationCluster; - global::Microsoft.Maui.Graphics.Resource.Styleable.AppBarLayout_android_touchscreenBlocksFocus = global::GraphicsTester.Android.Resource.Styleable.AppBarLayout_android_touchscreenBlocksFocus; - global::Microsoft.Maui.Graphics.Resource.Styleable.AppBarLayout_elevation = global::GraphicsTester.Android.Resource.Styleable.AppBarLayout_elevation; - global::Microsoft.Maui.Graphics.Resource.Styleable.AppBarLayout_expanded = global::GraphicsTester.Android.Resource.Styleable.AppBarLayout_expanded; - global::Microsoft.Maui.Graphics.Resource.Styleable.AppBarLayout_Layout = global::GraphicsTester.Android.Resource.Styleable.AppBarLayout_Layout; - global::Microsoft.Maui.Graphics.Resource.Styleable.AppBarLayout_Layout_layout_scrollFlags = global::GraphicsTester.Android.Resource.Styleable.AppBarLayout_Layout_layout_scrollFlags; - global::Microsoft.Maui.Graphics.Resource.Styleable.AppBarLayout_Layout_layout_scrollInterpolator = global::GraphicsTester.Android.Resource.Styleable.AppBarLayout_Layout_layout_scrollInterpolator; - global::Microsoft.Maui.Graphics.Resource.Styleable.AppBarLayout_liftOnScroll = global::GraphicsTester.Android.Resource.Styleable.AppBarLayout_liftOnScroll; - global::Microsoft.Maui.Graphics.Resource.Styleable.AppBarLayout_liftOnScrollTargetViewId = global::GraphicsTester.Android.Resource.Styleable.AppBarLayout_liftOnScrollTargetViewId; - global::Microsoft.Maui.Graphics.Resource.Styleable.AppBarLayout_statusBarForeground = global::GraphicsTester.Android.Resource.Styleable.AppBarLayout_statusBarForeground; - global::Microsoft.Maui.Graphics.Resource.Styleable.AppCompatImageView = global::GraphicsTester.Android.Resource.Styleable.AppCompatImageView; - global::Microsoft.Maui.Graphics.Resource.Styleable.AppCompatImageView_android_src = global::GraphicsTester.Android.Resource.Styleable.AppCompatImageView_android_src; - global::Microsoft.Maui.Graphics.Resource.Styleable.AppCompatImageView_srcCompat = global::GraphicsTester.Android.Resource.Styleable.AppCompatImageView_srcCompat; - global::Microsoft.Maui.Graphics.Resource.Styleable.AppCompatImageView_tint = global::GraphicsTester.Android.Resource.Styleable.AppCompatImageView_tint; - global::Microsoft.Maui.Graphics.Resource.Styleable.AppCompatImageView_tintMode = global::GraphicsTester.Android.Resource.Styleable.AppCompatImageView_tintMode; - global::Microsoft.Maui.Graphics.Resource.Styleable.AppCompatSeekBar = global::GraphicsTester.Android.Resource.Styleable.AppCompatSeekBar; - global::Microsoft.Maui.Graphics.Resource.Styleable.AppCompatSeekBar_android_thumb = global::GraphicsTester.Android.Resource.Styleable.AppCompatSeekBar_android_thumb; - global::Microsoft.Maui.Graphics.Resource.Styleable.AppCompatSeekBar_tickMark = global::GraphicsTester.Android.Resource.Styleable.AppCompatSeekBar_tickMark; - global::Microsoft.Maui.Graphics.Resource.Styleable.AppCompatSeekBar_tickMarkTint = global::GraphicsTester.Android.Resource.Styleable.AppCompatSeekBar_tickMarkTint; - global::Microsoft.Maui.Graphics.Resource.Styleable.AppCompatSeekBar_tickMarkTintMode = global::GraphicsTester.Android.Resource.Styleable.AppCompatSeekBar_tickMarkTintMode; - global::Microsoft.Maui.Graphics.Resource.Styleable.AppCompatTextHelper = global::GraphicsTester.Android.Resource.Styleable.AppCompatTextHelper; - global::Microsoft.Maui.Graphics.Resource.Styleable.AppCompatTextHelper_android_drawableBottom = global::GraphicsTester.Android.Resource.Styleable.AppCompatTextHelper_android_drawableBottom; - global::Microsoft.Maui.Graphics.Resource.Styleable.AppCompatTextHelper_android_drawableEnd = global::GraphicsTester.Android.Resource.Styleable.AppCompatTextHelper_android_drawableEnd; - global::Microsoft.Maui.Graphics.Resource.Styleable.AppCompatTextHelper_android_drawableLeft = global::GraphicsTester.Android.Resource.Styleable.AppCompatTextHelper_android_drawableLeft; - global::Microsoft.Maui.Graphics.Resource.Styleable.AppCompatTextHelper_android_drawableRight = global::GraphicsTester.Android.Resource.Styleable.AppCompatTextHelper_android_drawableRight; - global::Microsoft.Maui.Graphics.Resource.Styleable.AppCompatTextHelper_android_drawableStart = global::GraphicsTester.Android.Resource.Styleable.AppCompatTextHelper_android_drawableStart; - global::Microsoft.Maui.Graphics.Resource.Styleable.AppCompatTextHelper_android_drawableTop = global::GraphicsTester.Android.Resource.Styleable.AppCompatTextHelper_android_drawableTop; - global::Microsoft.Maui.Graphics.Resource.Styleable.AppCompatTextHelper_android_textAppearance = global::GraphicsTester.Android.Resource.Styleable.AppCompatTextHelper_android_textAppearance; - global::Microsoft.Maui.Graphics.Resource.Styleable.AppCompatTextView = global::GraphicsTester.Android.Resource.Styleable.AppCompatTextView; - global::Microsoft.Maui.Graphics.Resource.Styleable.AppCompatTextView_android_textAppearance = global::GraphicsTester.Android.Resource.Styleable.AppCompatTextView_android_textAppearance; - global::Microsoft.Maui.Graphics.Resource.Styleable.AppCompatTextView_autoSizeMaxTextSize = global::GraphicsTester.Android.Resource.Styleable.AppCompatTextView_autoSizeMaxTextSize; - global::Microsoft.Maui.Graphics.Resource.Styleable.AppCompatTextView_autoSizeMinTextSize = global::GraphicsTester.Android.Resource.Styleable.AppCompatTextView_autoSizeMinTextSize; - global::Microsoft.Maui.Graphics.Resource.Styleable.AppCompatTextView_autoSizePresetSizes = global::GraphicsTester.Android.Resource.Styleable.AppCompatTextView_autoSizePresetSizes; - global::Microsoft.Maui.Graphics.Resource.Styleable.AppCompatTextView_autoSizeStepGranularity = global::GraphicsTester.Android.Resource.Styleable.AppCompatTextView_autoSizeStepGranularity; - global::Microsoft.Maui.Graphics.Resource.Styleable.AppCompatTextView_autoSizeTextType = global::GraphicsTester.Android.Resource.Styleable.AppCompatTextView_autoSizeTextType; - global::Microsoft.Maui.Graphics.Resource.Styleable.AppCompatTextView_drawableBottomCompat = global::GraphicsTester.Android.Resource.Styleable.AppCompatTextView_drawableBottomCompat; - global::Microsoft.Maui.Graphics.Resource.Styleable.AppCompatTextView_drawableEndCompat = global::GraphicsTester.Android.Resource.Styleable.AppCompatTextView_drawableEndCompat; - global::Microsoft.Maui.Graphics.Resource.Styleable.AppCompatTextView_drawableLeftCompat = global::GraphicsTester.Android.Resource.Styleable.AppCompatTextView_drawableLeftCompat; - global::Microsoft.Maui.Graphics.Resource.Styleable.AppCompatTextView_drawableRightCompat = global::GraphicsTester.Android.Resource.Styleable.AppCompatTextView_drawableRightCompat; - global::Microsoft.Maui.Graphics.Resource.Styleable.AppCompatTextView_drawableStartCompat = global::GraphicsTester.Android.Resource.Styleable.AppCompatTextView_drawableStartCompat; - global::Microsoft.Maui.Graphics.Resource.Styleable.AppCompatTextView_drawableTint = global::GraphicsTester.Android.Resource.Styleable.AppCompatTextView_drawableTint; - global::Microsoft.Maui.Graphics.Resource.Styleable.AppCompatTextView_drawableTintMode = global::GraphicsTester.Android.Resource.Styleable.AppCompatTextView_drawableTintMode; - global::Microsoft.Maui.Graphics.Resource.Styleable.AppCompatTextView_drawableTopCompat = global::GraphicsTester.Android.Resource.Styleable.AppCompatTextView_drawableTopCompat; - global::Microsoft.Maui.Graphics.Resource.Styleable.AppCompatTextView_firstBaselineToTopHeight = global::GraphicsTester.Android.Resource.Styleable.AppCompatTextView_firstBaselineToTopHeight; - global::Microsoft.Maui.Graphics.Resource.Styleable.AppCompatTextView_fontFamily = global::GraphicsTester.Android.Resource.Styleable.AppCompatTextView_fontFamily; - global::Microsoft.Maui.Graphics.Resource.Styleable.AppCompatTextView_fontVariationSettings = global::GraphicsTester.Android.Resource.Styleable.AppCompatTextView_fontVariationSettings; - global::Microsoft.Maui.Graphics.Resource.Styleable.AppCompatTextView_lastBaselineToBottomHeight = global::GraphicsTester.Android.Resource.Styleable.AppCompatTextView_lastBaselineToBottomHeight; - global::Microsoft.Maui.Graphics.Resource.Styleable.AppCompatTextView_lineHeight = global::GraphicsTester.Android.Resource.Styleable.AppCompatTextView_lineHeight; - global::Microsoft.Maui.Graphics.Resource.Styleable.AppCompatTextView_textAllCaps = global::GraphicsTester.Android.Resource.Styleable.AppCompatTextView_textAllCaps; - global::Microsoft.Maui.Graphics.Resource.Styleable.AppCompatTextView_textLocale = global::GraphicsTester.Android.Resource.Styleable.AppCompatTextView_textLocale; - global::Microsoft.Maui.Graphics.Resource.Styleable.AppCompatTheme = global::GraphicsTester.Android.Resource.Styleable.AppCompatTheme; - global::Microsoft.Maui.Graphics.Resource.Styleable.AppCompatTheme_actionBarDivider = global::GraphicsTester.Android.Resource.Styleable.AppCompatTheme_actionBarDivider; - global::Microsoft.Maui.Graphics.Resource.Styleable.AppCompatTheme_actionBarItemBackground = global::GraphicsTester.Android.Resource.Styleable.AppCompatTheme_actionBarItemBackground; - global::Microsoft.Maui.Graphics.Resource.Styleable.AppCompatTheme_actionBarPopupTheme = global::GraphicsTester.Android.Resource.Styleable.AppCompatTheme_actionBarPopupTheme; - global::Microsoft.Maui.Graphics.Resource.Styleable.AppCompatTheme_actionBarSize = global::GraphicsTester.Android.Resource.Styleable.AppCompatTheme_actionBarSize; - global::Microsoft.Maui.Graphics.Resource.Styleable.AppCompatTheme_actionBarSplitStyle = global::GraphicsTester.Android.Resource.Styleable.AppCompatTheme_actionBarSplitStyle; - global::Microsoft.Maui.Graphics.Resource.Styleable.AppCompatTheme_actionBarStyle = global::GraphicsTester.Android.Resource.Styleable.AppCompatTheme_actionBarStyle; - global::Microsoft.Maui.Graphics.Resource.Styleable.AppCompatTheme_actionBarTabBarStyle = global::GraphicsTester.Android.Resource.Styleable.AppCompatTheme_actionBarTabBarStyle; - global::Microsoft.Maui.Graphics.Resource.Styleable.AppCompatTheme_actionBarTabStyle = global::GraphicsTester.Android.Resource.Styleable.AppCompatTheme_actionBarTabStyle; - global::Microsoft.Maui.Graphics.Resource.Styleable.AppCompatTheme_actionBarTabTextStyle = global::GraphicsTester.Android.Resource.Styleable.AppCompatTheme_actionBarTabTextStyle; - global::Microsoft.Maui.Graphics.Resource.Styleable.AppCompatTheme_actionBarTheme = global::GraphicsTester.Android.Resource.Styleable.AppCompatTheme_actionBarTheme; - global::Microsoft.Maui.Graphics.Resource.Styleable.AppCompatTheme_actionBarWidgetTheme = global::GraphicsTester.Android.Resource.Styleable.AppCompatTheme_actionBarWidgetTheme; - global::Microsoft.Maui.Graphics.Resource.Styleable.AppCompatTheme_actionButtonStyle = global::GraphicsTester.Android.Resource.Styleable.AppCompatTheme_actionButtonStyle; - global::Microsoft.Maui.Graphics.Resource.Styleable.AppCompatTheme_actionDropDownStyle = global::GraphicsTester.Android.Resource.Styleable.AppCompatTheme_actionDropDownStyle; - global::Microsoft.Maui.Graphics.Resource.Styleable.AppCompatTheme_actionMenuTextAppearance = global::GraphicsTester.Android.Resource.Styleable.AppCompatTheme_actionMenuTextAppearance; - global::Microsoft.Maui.Graphics.Resource.Styleable.AppCompatTheme_actionMenuTextColor = global::GraphicsTester.Android.Resource.Styleable.AppCompatTheme_actionMenuTextColor; - global::Microsoft.Maui.Graphics.Resource.Styleable.AppCompatTheme_actionModeBackground = global::GraphicsTester.Android.Resource.Styleable.AppCompatTheme_actionModeBackground; - global::Microsoft.Maui.Graphics.Resource.Styleable.AppCompatTheme_actionModeCloseButtonStyle = global::GraphicsTester.Android.Resource.Styleable.AppCompatTheme_actionModeCloseButtonStyle; - global::Microsoft.Maui.Graphics.Resource.Styleable.AppCompatTheme_actionModeCloseDrawable = global::GraphicsTester.Android.Resource.Styleable.AppCompatTheme_actionModeCloseDrawable; - global::Microsoft.Maui.Graphics.Resource.Styleable.AppCompatTheme_actionModeCopyDrawable = global::GraphicsTester.Android.Resource.Styleable.AppCompatTheme_actionModeCopyDrawable; - global::Microsoft.Maui.Graphics.Resource.Styleable.AppCompatTheme_actionModeCutDrawable = global::GraphicsTester.Android.Resource.Styleable.AppCompatTheme_actionModeCutDrawable; - global::Microsoft.Maui.Graphics.Resource.Styleable.AppCompatTheme_actionModeFindDrawable = global::GraphicsTester.Android.Resource.Styleable.AppCompatTheme_actionModeFindDrawable; - global::Microsoft.Maui.Graphics.Resource.Styleable.AppCompatTheme_actionModePasteDrawable = global::GraphicsTester.Android.Resource.Styleable.AppCompatTheme_actionModePasteDrawable; - global::Microsoft.Maui.Graphics.Resource.Styleable.AppCompatTheme_actionModePopupWindowStyle = global::GraphicsTester.Android.Resource.Styleable.AppCompatTheme_actionModePopupWindowStyle; - global::Microsoft.Maui.Graphics.Resource.Styleable.AppCompatTheme_actionModeSelectAllDrawable = global::GraphicsTester.Android.Resource.Styleable.AppCompatTheme_actionModeSelectAllDrawable; - global::Microsoft.Maui.Graphics.Resource.Styleable.AppCompatTheme_actionModeShareDrawable = global::GraphicsTester.Android.Resource.Styleable.AppCompatTheme_actionModeShareDrawable; - global::Microsoft.Maui.Graphics.Resource.Styleable.AppCompatTheme_actionModeSplitBackground = global::GraphicsTester.Android.Resource.Styleable.AppCompatTheme_actionModeSplitBackground; - global::Microsoft.Maui.Graphics.Resource.Styleable.AppCompatTheme_actionModeStyle = global::GraphicsTester.Android.Resource.Styleable.AppCompatTheme_actionModeStyle; - global::Microsoft.Maui.Graphics.Resource.Styleable.AppCompatTheme_actionModeWebSearchDrawable = global::GraphicsTester.Android.Resource.Styleable.AppCompatTheme_actionModeWebSearchDrawable; - global::Microsoft.Maui.Graphics.Resource.Styleable.AppCompatTheme_actionOverflowButtonStyle = global::GraphicsTester.Android.Resource.Styleable.AppCompatTheme_actionOverflowButtonStyle; - global::Microsoft.Maui.Graphics.Resource.Styleable.AppCompatTheme_actionOverflowMenuStyle = global::GraphicsTester.Android.Resource.Styleable.AppCompatTheme_actionOverflowMenuStyle; - global::Microsoft.Maui.Graphics.Resource.Styleable.AppCompatTheme_activityChooserViewStyle = global::GraphicsTester.Android.Resource.Styleable.AppCompatTheme_activityChooserViewStyle; - global::Microsoft.Maui.Graphics.Resource.Styleable.AppCompatTheme_alertDialogButtonGroupStyle = global::GraphicsTester.Android.Resource.Styleable.AppCompatTheme_alertDialogButtonGroupStyle; - global::Microsoft.Maui.Graphics.Resource.Styleable.AppCompatTheme_alertDialogCenterButtons = global::GraphicsTester.Android.Resource.Styleable.AppCompatTheme_alertDialogCenterButtons; - global::Microsoft.Maui.Graphics.Resource.Styleable.AppCompatTheme_alertDialogStyle = global::GraphicsTester.Android.Resource.Styleable.AppCompatTheme_alertDialogStyle; - global::Microsoft.Maui.Graphics.Resource.Styleable.AppCompatTheme_alertDialogTheme = global::GraphicsTester.Android.Resource.Styleable.AppCompatTheme_alertDialogTheme; - global::Microsoft.Maui.Graphics.Resource.Styleable.AppCompatTheme_android_windowAnimationStyle = global::GraphicsTester.Android.Resource.Styleable.AppCompatTheme_android_windowAnimationStyle; - global::Microsoft.Maui.Graphics.Resource.Styleable.AppCompatTheme_android_windowIsFloating = global::GraphicsTester.Android.Resource.Styleable.AppCompatTheme_android_windowIsFloating; - global::Microsoft.Maui.Graphics.Resource.Styleable.AppCompatTheme_autoCompleteTextViewStyle = global::GraphicsTester.Android.Resource.Styleable.AppCompatTheme_autoCompleteTextViewStyle; - global::Microsoft.Maui.Graphics.Resource.Styleable.AppCompatTheme_borderlessButtonStyle = global::GraphicsTester.Android.Resource.Styleable.AppCompatTheme_borderlessButtonStyle; - global::Microsoft.Maui.Graphics.Resource.Styleable.AppCompatTheme_buttonBarButtonStyle = global::GraphicsTester.Android.Resource.Styleable.AppCompatTheme_buttonBarButtonStyle; - global::Microsoft.Maui.Graphics.Resource.Styleable.AppCompatTheme_buttonBarNegativeButtonStyle = global::GraphicsTester.Android.Resource.Styleable.AppCompatTheme_buttonBarNegativeButtonStyle; - global::Microsoft.Maui.Graphics.Resource.Styleable.AppCompatTheme_buttonBarNeutralButtonStyle = global::GraphicsTester.Android.Resource.Styleable.AppCompatTheme_buttonBarNeutralButtonStyle; - global::Microsoft.Maui.Graphics.Resource.Styleable.AppCompatTheme_buttonBarPositiveButtonStyle = global::GraphicsTester.Android.Resource.Styleable.AppCompatTheme_buttonBarPositiveButtonStyle; - global::Microsoft.Maui.Graphics.Resource.Styleable.AppCompatTheme_buttonBarStyle = global::GraphicsTester.Android.Resource.Styleable.AppCompatTheme_buttonBarStyle; - global::Microsoft.Maui.Graphics.Resource.Styleable.AppCompatTheme_buttonStyle = global::GraphicsTester.Android.Resource.Styleable.AppCompatTheme_buttonStyle; - global::Microsoft.Maui.Graphics.Resource.Styleable.AppCompatTheme_buttonStyleSmall = global::GraphicsTester.Android.Resource.Styleable.AppCompatTheme_buttonStyleSmall; - global::Microsoft.Maui.Graphics.Resource.Styleable.AppCompatTheme_checkboxStyle = global::GraphicsTester.Android.Resource.Styleable.AppCompatTheme_checkboxStyle; - global::Microsoft.Maui.Graphics.Resource.Styleable.AppCompatTheme_checkedTextViewStyle = global::GraphicsTester.Android.Resource.Styleable.AppCompatTheme_checkedTextViewStyle; - global::Microsoft.Maui.Graphics.Resource.Styleable.AppCompatTheme_colorAccent = global::GraphicsTester.Android.Resource.Styleable.AppCompatTheme_colorAccent; - global::Microsoft.Maui.Graphics.Resource.Styleable.AppCompatTheme_colorBackgroundFloating = global::GraphicsTester.Android.Resource.Styleable.AppCompatTheme_colorBackgroundFloating; - global::Microsoft.Maui.Graphics.Resource.Styleable.AppCompatTheme_colorButtonNormal = global::GraphicsTester.Android.Resource.Styleable.AppCompatTheme_colorButtonNormal; - global::Microsoft.Maui.Graphics.Resource.Styleable.AppCompatTheme_colorControlActivated = global::GraphicsTester.Android.Resource.Styleable.AppCompatTheme_colorControlActivated; - global::Microsoft.Maui.Graphics.Resource.Styleable.AppCompatTheme_colorControlHighlight = global::GraphicsTester.Android.Resource.Styleable.AppCompatTheme_colorControlHighlight; - global::Microsoft.Maui.Graphics.Resource.Styleable.AppCompatTheme_colorControlNormal = global::GraphicsTester.Android.Resource.Styleable.AppCompatTheme_colorControlNormal; - global::Microsoft.Maui.Graphics.Resource.Styleable.AppCompatTheme_colorError = global::GraphicsTester.Android.Resource.Styleable.AppCompatTheme_colorError; - global::Microsoft.Maui.Graphics.Resource.Styleable.AppCompatTheme_colorPrimary = global::GraphicsTester.Android.Resource.Styleable.AppCompatTheme_colorPrimary; - global::Microsoft.Maui.Graphics.Resource.Styleable.AppCompatTheme_colorPrimaryDark = global::GraphicsTester.Android.Resource.Styleable.AppCompatTheme_colorPrimaryDark; - global::Microsoft.Maui.Graphics.Resource.Styleable.AppCompatTheme_colorSwitchThumbNormal = global::GraphicsTester.Android.Resource.Styleable.AppCompatTheme_colorSwitchThumbNormal; - global::Microsoft.Maui.Graphics.Resource.Styleable.AppCompatTheme_controlBackground = global::GraphicsTester.Android.Resource.Styleable.AppCompatTheme_controlBackground; - global::Microsoft.Maui.Graphics.Resource.Styleable.AppCompatTheme_dialogCornerRadius = global::GraphicsTester.Android.Resource.Styleable.AppCompatTheme_dialogCornerRadius; - global::Microsoft.Maui.Graphics.Resource.Styleable.AppCompatTheme_dialogPreferredPadding = global::GraphicsTester.Android.Resource.Styleable.AppCompatTheme_dialogPreferredPadding; - global::Microsoft.Maui.Graphics.Resource.Styleable.AppCompatTheme_dialogTheme = global::GraphicsTester.Android.Resource.Styleable.AppCompatTheme_dialogTheme; - global::Microsoft.Maui.Graphics.Resource.Styleable.AppCompatTheme_dividerHorizontal = global::GraphicsTester.Android.Resource.Styleable.AppCompatTheme_dividerHorizontal; - global::Microsoft.Maui.Graphics.Resource.Styleable.AppCompatTheme_dividerVertical = global::GraphicsTester.Android.Resource.Styleable.AppCompatTheme_dividerVertical; - global::Microsoft.Maui.Graphics.Resource.Styleable.AppCompatTheme_dropdownListPreferredItemHeight = global::GraphicsTester.Android.Resource.Styleable.AppCompatTheme_dropdownListPreferredItemHeight; - global::Microsoft.Maui.Graphics.Resource.Styleable.AppCompatTheme_dropDownListViewStyle = global::GraphicsTester.Android.Resource.Styleable.AppCompatTheme_dropDownListViewStyle; - global::Microsoft.Maui.Graphics.Resource.Styleable.AppCompatTheme_editTextBackground = global::GraphicsTester.Android.Resource.Styleable.AppCompatTheme_editTextBackground; - global::Microsoft.Maui.Graphics.Resource.Styleable.AppCompatTheme_editTextColor = global::GraphicsTester.Android.Resource.Styleable.AppCompatTheme_editTextColor; - global::Microsoft.Maui.Graphics.Resource.Styleable.AppCompatTheme_editTextStyle = global::GraphicsTester.Android.Resource.Styleable.AppCompatTheme_editTextStyle; - global::Microsoft.Maui.Graphics.Resource.Styleable.AppCompatTheme_homeAsUpIndicator = global::GraphicsTester.Android.Resource.Styleable.AppCompatTheme_homeAsUpIndicator; - global::Microsoft.Maui.Graphics.Resource.Styleable.AppCompatTheme_imageButtonStyle = global::GraphicsTester.Android.Resource.Styleable.AppCompatTheme_imageButtonStyle; - global::Microsoft.Maui.Graphics.Resource.Styleable.AppCompatTheme_listChoiceBackgroundIndicator = global::GraphicsTester.Android.Resource.Styleable.AppCompatTheme_listChoiceBackgroundIndicator; - global::Microsoft.Maui.Graphics.Resource.Styleable.AppCompatTheme_listChoiceIndicatorMultipleAnimated = global::GraphicsTester.Android.Resource.Styleable.AppCompatTheme_listChoiceIndicatorMultipleAnimated; - global::Microsoft.Maui.Graphics.Resource.Styleable.AppCompatTheme_listChoiceIndicatorSingleAnimated = global::GraphicsTester.Android.Resource.Styleable.AppCompatTheme_listChoiceIndicatorSingleAnimated; - global::Microsoft.Maui.Graphics.Resource.Styleable.AppCompatTheme_listDividerAlertDialog = global::GraphicsTester.Android.Resource.Styleable.AppCompatTheme_listDividerAlertDialog; - global::Microsoft.Maui.Graphics.Resource.Styleable.AppCompatTheme_listMenuViewStyle = global::GraphicsTester.Android.Resource.Styleable.AppCompatTheme_listMenuViewStyle; - global::Microsoft.Maui.Graphics.Resource.Styleable.AppCompatTheme_listPopupWindowStyle = global::GraphicsTester.Android.Resource.Styleable.AppCompatTheme_listPopupWindowStyle; - global::Microsoft.Maui.Graphics.Resource.Styleable.AppCompatTheme_listPreferredItemHeight = global::GraphicsTester.Android.Resource.Styleable.AppCompatTheme_listPreferredItemHeight; - global::Microsoft.Maui.Graphics.Resource.Styleable.AppCompatTheme_listPreferredItemHeightLarge = global::GraphicsTester.Android.Resource.Styleable.AppCompatTheme_listPreferredItemHeightLarge; - global::Microsoft.Maui.Graphics.Resource.Styleable.AppCompatTheme_listPreferredItemHeightSmall = global::GraphicsTester.Android.Resource.Styleable.AppCompatTheme_listPreferredItemHeightSmall; - global::Microsoft.Maui.Graphics.Resource.Styleable.AppCompatTheme_listPreferredItemPaddingEnd = global::GraphicsTester.Android.Resource.Styleable.AppCompatTheme_listPreferredItemPaddingEnd; - global::Microsoft.Maui.Graphics.Resource.Styleable.AppCompatTheme_listPreferredItemPaddingLeft = global::GraphicsTester.Android.Resource.Styleable.AppCompatTheme_listPreferredItemPaddingLeft; - global::Microsoft.Maui.Graphics.Resource.Styleable.AppCompatTheme_listPreferredItemPaddingRight = global::GraphicsTester.Android.Resource.Styleable.AppCompatTheme_listPreferredItemPaddingRight; - global::Microsoft.Maui.Graphics.Resource.Styleable.AppCompatTheme_listPreferredItemPaddingStart = global::GraphicsTester.Android.Resource.Styleable.AppCompatTheme_listPreferredItemPaddingStart; - global::Microsoft.Maui.Graphics.Resource.Styleable.AppCompatTheme_panelBackground = global::GraphicsTester.Android.Resource.Styleable.AppCompatTheme_panelBackground; - global::Microsoft.Maui.Graphics.Resource.Styleable.AppCompatTheme_panelMenuListTheme = global::GraphicsTester.Android.Resource.Styleable.AppCompatTheme_panelMenuListTheme; - global::Microsoft.Maui.Graphics.Resource.Styleable.AppCompatTheme_panelMenuListWidth = global::GraphicsTester.Android.Resource.Styleable.AppCompatTheme_panelMenuListWidth; - global::Microsoft.Maui.Graphics.Resource.Styleable.AppCompatTheme_popupMenuStyle = global::GraphicsTester.Android.Resource.Styleable.AppCompatTheme_popupMenuStyle; - global::Microsoft.Maui.Graphics.Resource.Styleable.AppCompatTheme_popupWindowStyle = global::GraphicsTester.Android.Resource.Styleable.AppCompatTheme_popupWindowStyle; - global::Microsoft.Maui.Graphics.Resource.Styleable.AppCompatTheme_radioButtonStyle = global::GraphicsTester.Android.Resource.Styleable.AppCompatTheme_radioButtonStyle; - global::Microsoft.Maui.Graphics.Resource.Styleable.AppCompatTheme_ratingBarStyle = global::GraphicsTester.Android.Resource.Styleable.AppCompatTheme_ratingBarStyle; - global::Microsoft.Maui.Graphics.Resource.Styleable.AppCompatTheme_ratingBarStyleIndicator = global::GraphicsTester.Android.Resource.Styleable.AppCompatTheme_ratingBarStyleIndicator; - global::Microsoft.Maui.Graphics.Resource.Styleable.AppCompatTheme_ratingBarStyleSmall = global::GraphicsTester.Android.Resource.Styleable.AppCompatTheme_ratingBarStyleSmall; - global::Microsoft.Maui.Graphics.Resource.Styleable.AppCompatTheme_searchViewStyle = global::GraphicsTester.Android.Resource.Styleable.AppCompatTheme_searchViewStyle; - global::Microsoft.Maui.Graphics.Resource.Styleable.AppCompatTheme_seekBarStyle = global::GraphicsTester.Android.Resource.Styleable.AppCompatTheme_seekBarStyle; - global::Microsoft.Maui.Graphics.Resource.Styleable.AppCompatTheme_selectableItemBackground = global::GraphicsTester.Android.Resource.Styleable.AppCompatTheme_selectableItemBackground; - global::Microsoft.Maui.Graphics.Resource.Styleable.AppCompatTheme_selectableItemBackgroundBorderless = global::GraphicsTester.Android.Resource.Styleable.AppCompatTheme_selectableItemBackgroundBorderless; - global::Microsoft.Maui.Graphics.Resource.Styleable.AppCompatTheme_spinnerDropDownItemStyle = global::GraphicsTester.Android.Resource.Styleable.AppCompatTheme_spinnerDropDownItemStyle; - global::Microsoft.Maui.Graphics.Resource.Styleable.AppCompatTheme_spinnerStyle = global::GraphicsTester.Android.Resource.Styleable.AppCompatTheme_spinnerStyle; - global::Microsoft.Maui.Graphics.Resource.Styleable.AppCompatTheme_switchStyle = global::GraphicsTester.Android.Resource.Styleable.AppCompatTheme_switchStyle; - global::Microsoft.Maui.Graphics.Resource.Styleable.AppCompatTheme_textAppearanceLargePopupMenu = global::GraphicsTester.Android.Resource.Styleable.AppCompatTheme_textAppearanceLargePopupMenu; - global::Microsoft.Maui.Graphics.Resource.Styleable.AppCompatTheme_textAppearanceListItem = global::GraphicsTester.Android.Resource.Styleable.AppCompatTheme_textAppearanceListItem; - global::Microsoft.Maui.Graphics.Resource.Styleable.AppCompatTheme_textAppearanceListItemSecondary = global::GraphicsTester.Android.Resource.Styleable.AppCompatTheme_textAppearanceListItemSecondary; - global::Microsoft.Maui.Graphics.Resource.Styleable.AppCompatTheme_textAppearanceListItemSmall = global::GraphicsTester.Android.Resource.Styleable.AppCompatTheme_textAppearanceListItemSmall; - global::Microsoft.Maui.Graphics.Resource.Styleable.AppCompatTheme_textAppearancePopupMenuHeader = global::GraphicsTester.Android.Resource.Styleable.AppCompatTheme_textAppearancePopupMenuHeader; - global::Microsoft.Maui.Graphics.Resource.Styleable.AppCompatTheme_textAppearanceSearchResultSubtitle = global::GraphicsTester.Android.Resource.Styleable.AppCompatTheme_textAppearanceSearchResultSubtitle; - global::Microsoft.Maui.Graphics.Resource.Styleable.AppCompatTheme_textAppearanceSearchResultTitle = global::GraphicsTester.Android.Resource.Styleable.AppCompatTheme_textAppearanceSearchResultTitle; - global::Microsoft.Maui.Graphics.Resource.Styleable.AppCompatTheme_textAppearanceSmallPopupMenu = global::GraphicsTester.Android.Resource.Styleable.AppCompatTheme_textAppearanceSmallPopupMenu; - global::Microsoft.Maui.Graphics.Resource.Styleable.AppCompatTheme_textColorAlertDialogListItem = global::GraphicsTester.Android.Resource.Styleable.AppCompatTheme_textColorAlertDialogListItem; - global::Microsoft.Maui.Graphics.Resource.Styleable.AppCompatTheme_textColorSearchUrl = global::GraphicsTester.Android.Resource.Styleable.AppCompatTheme_textColorSearchUrl; - global::Microsoft.Maui.Graphics.Resource.Styleable.AppCompatTheme_toolbarNavigationButtonStyle = global::GraphicsTester.Android.Resource.Styleable.AppCompatTheme_toolbarNavigationButtonStyle; - global::Microsoft.Maui.Graphics.Resource.Styleable.AppCompatTheme_toolbarStyle = global::GraphicsTester.Android.Resource.Styleable.AppCompatTheme_toolbarStyle; - global::Microsoft.Maui.Graphics.Resource.Styleable.AppCompatTheme_tooltipForegroundColor = global::GraphicsTester.Android.Resource.Styleable.AppCompatTheme_tooltipForegroundColor; - global::Microsoft.Maui.Graphics.Resource.Styleable.AppCompatTheme_tooltipFrameBackground = global::GraphicsTester.Android.Resource.Styleable.AppCompatTheme_tooltipFrameBackground; - global::Microsoft.Maui.Graphics.Resource.Styleable.AppCompatTheme_viewInflaterClass = global::GraphicsTester.Android.Resource.Styleable.AppCompatTheme_viewInflaterClass; - global::Microsoft.Maui.Graphics.Resource.Styleable.AppCompatTheme_windowActionBar = global::GraphicsTester.Android.Resource.Styleable.AppCompatTheme_windowActionBar; - global::Microsoft.Maui.Graphics.Resource.Styleable.AppCompatTheme_windowActionBarOverlay = global::GraphicsTester.Android.Resource.Styleable.AppCompatTheme_windowActionBarOverlay; - global::Microsoft.Maui.Graphics.Resource.Styleable.AppCompatTheme_windowActionModeOverlay = global::GraphicsTester.Android.Resource.Styleable.AppCompatTheme_windowActionModeOverlay; - global::Microsoft.Maui.Graphics.Resource.Styleable.AppCompatTheme_windowFixedHeightMajor = global::GraphicsTester.Android.Resource.Styleable.AppCompatTheme_windowFixedHeightMajor; - global::Microsoft.Maui.Graphics.Resource.Styleable.AppCompatTheme_windowFixedHeightMinor = global::GraphicsTester.Android.Resource.Styleable.AppCompatTheme_windowFixedHeightMinor; - global::Microsoft.Maui.Graphics.Resource.Styleable.AppCompatTheme_windowFixedWidthMajor = global::GraphicsTester.Android.Resource.Styleable.AppCompatTheme_windowFixedWidthMajor; - global::Microsoft.Maui.Graphics.Resource.Styleable.AppCompatTheme_windowFixedWidthMinor = global::GraphicsTester.Android.Resource.Styleable.AppCompatTheme_windowFixedWidthMinor; - global::Microsoft.Maui.Graphics.Resource.Styleable.AppCompatTheme_windowMinWidthMajor = global::GraphicsTester.Android.Resource.Styleable.AppCompatTheme_windowMinWidthMajor; - global::Microsoft.Maui.Graphics.Resource.Styleable.AppCompatTheme_windowMinWidthMinor = global::GraphicsTester.Android.Resource.Styleable.AppCompatTheme_windowMinWidthMinor; - global::Microsoft.Maui.Graphics.Resource.Styleable.AppCompatTheme_windowNoTitle = global::GraphicsTester.Android.Resource.Styleable.AppCompatTheme_windowNoTitle; - global::Microsoft.Maui.Graphics.Resource.Styleable.Badge = global::GraphicsTester.Android.Resource.Styleable.Badge; - global::Microsoft.Maui.Graphics.Resource.Styleable.Badge_backgroundColor = global::GraphicsTester.Android.Resource.Styleable.Badge_backgroundColor; - global::Microsoft.Maui.Graphics.Resource.Styleable.Badge_badgeGravity = global::GraphicsTester.Android.Resource.Styleable.Badge_badgeGravity; - global::Microsoft.Maui.Graphics.Resource.Styleable.Badge_badgeTextColor = global::GraphicsTester.Android.Resource.Styleable.Badge_badgeTextColor; - global::Microsoft.Maui.Graphics.Resource.Styleable.Badge_horizontalOffset = global::GraphicsTester.Android.Resource.Styleable.Badge_horizontalOffset; - global::Microsoft.Maui.Graphics.Resource.Styleable.Badge_maxCharacterCount = global::GraphicsTester.Android.Resource.Styleable.Badge_maxCharacterCount; - global::Microsoft.Maui.Graphics.Resource.Styleable.Badge_number = global::GraphicsTester.Android.Resource.Styleable.Badge_number; - global::Microsoft.Maui.Graphics.Resource.Styleable.Badge_verticalOffset = global::GraphicsTester.Android.Resource.Styleable.Badge_verticalOffset; - global::Microsoft.Maui.Graphics.Resource.Styleable.BaseProgressIndicator = global::GraphicsTester.Android.Resource.Styleable.BaseProgressIndicator; - global::Microsoft.Maui.Graphics.Resource.Styleable.BaseProgressIndicator_android_indeterminate = global::GraphicsTester.Android.Resource.Styleable.BaseProgressIndicator_android_indeterminate; - global::Microsoft.Maui.Graphics.Resource.Styleable.BaseProgressIndicator_hideAnimationBehavior = global::GraphicsTester.Android.Resource.Styleable.BaseProgressIndicator_hideAnimationBehavior; - global::Microsoft.Maui.Graphics.Resource.Styleable.BaseProgressIndicator_indicatorColor = global::GraphicsTester.Android.Resource.Styleable.BaseProgressIndicator_indicatorColor; - global::Microsoft.Maui.Graphics.Resource.Styleable.BaseProgressIndicator_minHideDelay = global::GraphicsTester.Android.Resource.Styleable.BaseProgressIndicator_minHideDelay; - global::Microsoft.Maui.Graphics.Resource.Styleable.BaseProgressIndicator_showAnimationBehavior = global::GraphicsTester.Android.Resource.Styleable.BaseProgressIndicator_showAnimationBehavior; - global::Microsoft.Maui.Graphics.Resource.Styleable.BaseProgressIndicator_showDelay = global::GraphicsTester.Android.Resource.Styleable.BaseProgressIndicator_showDelay; - global::Microsoft.Maui.Graphics.Resource.Styleable.BaseProgressIndicator_trackColor = global::GraphicsTester.Android.Resource.Styleable.BaseProgressIndicator_trackColor; - global::Microsoft.Maui.Graphics.Resource.Styleable.BaseProgressIndicator_trackCornerRadius = global::GraphicsTester.Android.Resource.Styleable.BaseProgressIndicator_trackCornerRadius; - global::Microsoft.Maui.Graphics.Resource.Styleable.BaseProgressIndicator_trackThickness = global::GraphicsTester.Android.Resource.Styleable.BaseProgressIndicator_trackThickness; - global::Microsoft.Maui.Graphics.Resource.Styleable.BottomAppBar = global::GraphicsTester.Android.Resource.Styleable.BottomAppBar; - global::Microsoft.Maui.Graphics.Resource.Styleable.BottomAppBar_backgroundTint = global::GraphicsTester.Android.Resource.Styleable.BottomAppBar_backgroundTint; - global::Microsoft.Maui.Graphics.Resource.Styleable.BottomAppBar_elevation = global::GraphicsTester.Android.Resource.Styleable.BottomAppBar_elevation; - global::Microsoft.Maui.Graphics.Resource.Styleable.BottomAppBar_fabAlignmentMode = global::GraphicsTester.Android.Resource.Styleable.BottomAppBar_fabAlignmentMode; - global::Microsoft.Maui.Graphics.Resource.Styleable.BottomAppBar_fabAnimationMode = global::GraphicsTester.Android.Resource.Styleable.BottomAppBar_fabAnimationMode; - global::Microsoft.Maui.Graphics.Resource.Styleable.BottomAppBar_fabCradleMargin = global::GraphicsTester.Android.Resource.Styleable.BottomAppBar_fabCradleMargin; - global::Microsoft.Maui.Graphics.Resource.Styleable.BottomAppBar_fabCradleRoundedCornerRadius = global::GraphicsTester.Android.Resource.Styleable.BottomAppBar_fabCradleRoundedCornerRadius; - global::Microsoft.Maui.Graphics.Resource.Styleable.BottomAppBar_fabCradleVerticalOffset = global::GraphicsTester.Android.Resource.Styleable.BottomAppBar_fabCradleVerticalOffset; - global::Microsoft.Maui.Graphics.Resource.Styleable.BottomAppBar_hideOnScroll = global::GraphicsTester.Android.Resource.Styleable.BottomAppBar_hideOnScroll; - global::Microsoft.Maui.Graphics.Resource.Styleable.BottomAppBar_paddingBottomSystemWindowInsets = global::GraphicsTester.Android.Resource.Styleable.BottomAppBar_paddingBottomSystemWindowInsets; - global::Microsoft.Maui.Graphics.Resource.Styleable.BottomAppBar_paddingLeftSystemWindowInsets = global::GraphicsTester.Android.Resource.Styleable.BottomAppBar_paddingLeftSystemWindowInsets; - global::Microsoft.Maui.Graphics.Resource.Styleable.BottomAppBar_paddingRightSystemWindowInsets = global::GraphicsTester.Android.Resource.Styleable.BottomAppBar_paddingRightSystemWindowInsets; - global::Microsoft.Maui.Graphics.Resource.Styleable.BottomNavigationView = global::GraphicsTester.Android.Resource.Styleable.BottomNavigationView; - global::Microsoft.Maui.Graphics.Resource.Styleable.BottomNavigationView_backgroundTint = global::GraphicsTester.Android.Resource.Styleable.BottomNavigationView_backgroundTint; - global::Microsoft.Maui.Graphics.Resource.Styleable.BottomNavigationView_elevation = global::GraphicsTester.Android.Resource.Styleable.BottomNavigationView_elevation; - global::Microsoft.Maui.Graphics.Resource.Styleable.BottomNavigationView_itemBackground = global::GraphicsTester.Android.Resource.Styleable.BottomNavigationView_itemBackground; - global::Microsoft.Maui.Graphics.Resource.Styleable.BottomNavigationView_itemHorizontalTranslationEnabled = global::GraphicsTester.Android.Resource.Styleable.BottomNavigationView_itemHorizontalTranslationEnabled; - global::Microsoft.Maui.Graphics.Resource.Styleable.BottomNavigationView_itemIconSize = global::GraphicsTester.Android.Resource.Styleable.BottomNavigationView_itemIconSize; - global::Microsoft.Maui.Graphics.Resource.Styleable.BottomNavigationView_itemIconTint = global::GraphicsTester.Android.Resource.Styleable.BottomNavigationView_itemIconTint; - global::Microsoft.Maui.Graphics.Resource.Styleable.BottomNavigationView_itemRippleColor = global::GraphicsTester.Android.Resource.Styleable.BottomNavigationView_itemRippleColor; - global::Microsoft.Maui.Graphics.Resource.Styleable.BottomNavigationView_itemTextAppearanceActive = global::GraphicsTester.Android.Resource.Styleable.BottomNavigationView_itemTextAppearanceActive; - global::Microsoft.Maui.Graphics.Resource.Styleable.BottomNavigationView_itemTextAppearanceInactive = global::GraphicsTester.Android.Resource.Styleable.BottomNavigationView_itemTextAppearanceInactive; - global::Microsoft.Maui.Graphics.Resource.Styleable.BottomNavigationView_itemTextColor = global::GraphicsTester.Android.Resource.Styleable.BottomNavigationView_itemTextColor; - global::Microsoft.Maui.Graphics.Resource.Styleable.BottomNavigationView_labelVisibilityMode = global::GraphicsTester.Android.Resource.Styleable.BottomNavigationView_labelVisibilityMode; - global::Microsoft.Maui.Graphics.Resource.Styleable.BottomNavigationView_menu = global::GraphicsTester.Android.Resource.Styleable.BottomNavigationView_menu; - global::Microsoft.Maui.Graphics.Resource.Styleable.BottomSheetBehavior_Layout = global::GraphicsTester.Android.Resource.Styleable.BottomSheetBehavior_Layout; - global::Microsoft.Maui.Graphics.Resource.Styleable.BottomSheetBehavior_Layout_android_elevation = global::GraphicsTester.Android.Resource.Styleable.BottomSheetBehavior_Layout_android_elevation; - global::Microsoft.Maui.Graphics.Resource.Styleable.BottomSheetBehavior_Layout_backgroundTint = global::GraphicsTester.Android.Resource.Styleable.BottomSheetBehavior_Layout_backgroundTint; - global::Microsoft.Maui.Graphics.Resource.Styleable.BottomSheetBehavior_Layout_behavior_draggable = global::GraphicsTester.Android.Resource.Styleable.BottomSheetBehavior_Layout_behavior_draggable; - global::Microsoft.Maui.Graphics.Resource.Styleable.BottomSheetBehavior_Layout_behavior_expandedOffset = global::GraphicsTester.Android.Resource.Styleable.BottomSheetBehavior_Layout_behavior_expandedOffset; - global::Microsoft.Maui.Graphics.Resource.Styleable.BottomSheetBehavior_Layout_behavior_fitToContents = global::GraphicsTester.Android.Resource.Styleable.BottomSheetBehavior_Layout_behavior_fitToContents; - global::Microsoft.Maui.Graphics.Resource.Styleable.BottomSheetBehavior_Layout_behavior_halfExpandedRatio = global::GraphicsTester.Android.Resource.Styleable.BottomSheetBehavior_Layout_behavior_halfExpandedRatio; - global::Microsoft.Maui.Graphics.Resource.Styleable.BottomSheetBehavior_Layout_behavior_hideable = global::GraphicsTester.Android.Resource.Styleable.BottomSheetBehavior_Layout_behavior_hideable; - global::Microsoft.Maui.Graphics.Resource.Styleable.BottomSheetBehavior_Layout_behavior_peekHeight = global::GraphicsTester.Android.Resource.Styleable.BottomSheetBehavior_Layout_behavior_peekHeight; - global::Microsoft.Maui.Graphics.Resource.Styleable.BottomSheetBehavior_Layout_behavior_saveFlags = global::GraphicsTester.Android.Resource.Styleable.BottomSheetBehavior_Layout_behavior_saveFlags; - global::Microsoft.Maui.Graphics.Resource.Styleable.BottomSheetBehavior_Layout_behavior_skipCollapsed = global::GraphicsTester.Android.Resource.Styleable.BottomSheetBehavior_Layout_behavior_skipCollapsed; - global::Microsoft.Maui.Graphics.Resource.Styleable.BottomSheetBehavior_Layout_gestureInsetBottomIgnored = global::GraphicsTester.Android.Resource.Styleable.BottomSheetBehavior_Layout_gestureInsetBottomIgnored; - global::Microsoft.Maui.Graphics.Resource.Styleable.BottomSheetBehavior_Layout_shapeAppearance = global::GraphicsTester.Android.Resource.Styleable.BottomSheetBehavior_Layout_shapeAppearance; - global::Microsoft.Maui.Graphics.Resource.Styleable.BottomSheetBehavior_Layout_shapeAppearanceOverlay = global::GraphicsTester.Android.Resource.Styleable.BottomSheetBehavior_Layout_shapeAppearanceOverlay; - global::Microsoft.Maui.Graphics.Resource.Styleable.ButtonBarLayout = global::GraphicsTester.Android.Resource.Styleable.ButtonBarLayout; - global::Microsoft.Maui.Graphics.Resource.Styleable.ButtonBarLayout_allowStacking = global::GraphicsTester.Android.Resource.Styleable.ButtonBarLayout_allowStacking; - global::Microsoft.Maui.Graphics.Resource.Styleable.CardView = global::GraphicsTester.Android.Resource.Styleable.CardView; - global::Microsoft.Maui.Graphics.Resource.Styleable.CardView_android_minHeight = global::GraphicsTester.Android.Resource.Styleable.CardView_android_minHeight; - global::Microsoft.Maui.Graphics.Resource.Styleable.CardView_android_minWidth = global::GraphicsTester.Android.Resource.Styleable.CardView_android_minWidth; - global::Microsoft.Maui.Graphics.Resource.Styleable.CardView_cardBackgroundColor = global::GraphicsTester.Android.Resource.Styleable.CardView_cardBackgroundColor; - global::Microsoft.Maui.Graphics.Resource.Styleable.CardView_cardCornerRadius = global::GraphicsTester.Android.Resource.Styleable.CardView_cardCornerRadius; - global::Microsoft.Maui.Graphics.Resource.Styleable.CardView_cardElevation = global::GraphicsTester.Android.Resource.Styleable.CardView_cardElevation; - global::Microsoft.Maui.Graphics.Resource.Styleable.CardView_cardMaxElevation = global::GraphicsTester.Android.Resource.Styleable.CardView_cardMaxElevation; - global::Microsoft.Maui.Graphics.Resource.Styleable.CardView_cardPreventCornerOverlap = global::GraphicsTester.Android.Resource.Styleable.CardView_cardPreventCornerOverlap; - global::Microsoft.Maui.Graphics.Resource.Styleable.CardView_cardUseCompatPadding = global::GraphicsTester.Android.Resource.Styleable.CardView_cardUseCompatPadding; - global::Microsoft.Maui.Graphics.Resource.Styleable.CardView_contentPadding = global::GraphicsTester.Android.Resource.Styleable.CardView_contentPadding; - global::Microsoft.Maui.Graphics.Resource.Styleable.CardView_contentPaddingBottom = global::GraphicsTester.Android.Resource.Styleable.CardView_contentPaddingBottom; - global::Microsoft.Maui.Graphics.Resource.Styleable.CardView_contentPaddingLeft = global::GraphicsTester.Android.Resource.Styleable.CardView_contentPaddingLeft; - global::Microsoft.Maui.Graphics.Resource.Styleable.CardView_contentPaddingRight = global::GraphicsTester.Android.Resource.Styleable.CardView_contentPaddingRight; - global::Microsoft.Maui.Graphics.Resource.Styleable.CardView_contentPaddingTop = global::GraphicsTester.Android.Resource.Styleable.CardView_contentPaddingTop; - global::Microsoft.Maui.Graphics.Resource.Styleable.Chip = global::GraphicsTester.Android.Resource.Styleable.Chip; - global::Microsoft.Maui.Graphics.Resource.Styleable.ChipGroup = global::GraphicsTester.Android.Resource.Styleable.ChipGroup; - global::Microsoft.Maui.Graphics.Resource.Styleable.ChipGroup_checkedChip = global::GraphicsTester.Android.Resource.Styleable.ChipGroup_checkedChip; - global::Microsoft.Maui.Graphics.Resource.Styleable.ChipGroup_chipSpacing = global::GraphicsTester.Android.Resource.Styleable.ChipGroup_chipSpacing; - global::Microsoft.Maui.Graphics.Resource.Styleable.ChipGroup_chipSpacingHorizontal = global::GraphicsTester.Android.Resource.Styleable.ChipGroup_chipSpacingHorizontal; - global::Microsoft.Maui.Graphics.Resource.Styleable.ChipGroup_chipSpacingVertical = global::GraphicsTester.Android.Resource.Styleable.ChipGroup_chipSpacingVertical; - global::Microsoft.Maui.Graphics.Resource.Styleable.ChipGroup_selectionRequired = global::GraphicsTester.Android.Resource.Styleable.ChipGroup_selectionRequired; - global::Microsoft.Maui.Graphics.Resource.Styleable.ChipGroup_singleLine = global::GraphicsTester.Android.Resource.Styleable.ChipGroup_singleLine; - global::Microsoft.Maui.Graphics.Resource.Styleable.ChipGroup_singleSelection = global::GraphicsTester.Android.Resource.Styleable.ChipGroup_singleSelection; - global::Microsoft.Maui.Graphics.Resource.Styleable.Chip_android_checkable = global::GraphicsTester.Android.Resource.Styleable.Chip_android_checkable; - global::Microsoft.Maui.Graphics.Resource.Styleable.Chip_android_ellipsize = global::GraphicsTester.Android.Resource.Styleable.Chip_android_ellipsize; - global::Microsoft.Maui.Graphics.Resource.Styleable.Chip_android_maxWidth = global::GraphicsTester.Android.Resource.Styleable.Chip_android_maxWidth; - global::Microsoft.Maui.Graphics.Resource.Styleable.Chip_android_text = global::GraphicsTester.Android.Resource.Styleable.Chip_android_text; - global::Microsoft.Maui.Graphics.Resource.Styleable.Chip_android_textAppearance = global::GraphicsTester.Android.Resource.Styleable.Chip_android_textAppearance; - global::Microsoft.Maui.Graphics.Resource.Styleable.Chip_android_textColor = global::GraphicsTester.Android.Resource.Styleable.Chip_android_textColor; - global::Microsoft.Maui.Graphics.Resource.Styleable.Chip_android_textSize = global::GraphicsTester.Android.Resource.Styleable.Chip_android_textSize; - global::Microsoft.Maui.Graphics.Resource.Styleable.Chip_checkedIcon = global::GraphicsTester.Android.Resource.Styleable.Chip_checkedIcon; - global::Microsoft.Maui.Graphics.Resource.Styleable.Chip_checkedIconEnabled = global::GraphicsTester.Android.Resource.Styleable.Chip_checkedIconEnabled; - global::Microsoft.Maui.Graphics.Resource.Styleable.Chip_checkedIconTint = global::GraphicsTester.Android.Resource.Styleable.Chip_checkedIconTint; - global::Microsoft.Maui.Graphics.Resource.Styleable.Chip_checkedIconVisible = global::GraphicsTester.Android.Resource.Styleable.Chip_checkedIconVisible; - global::Microsoft.Maui.Graphics.Resource.Styleable.Chip_chipBackgroundColor = global::GraphicsTester.Android.Resource.Styleable.Chip_chipBackgroundColor; - global::Microsoft.Maui.Graphics.Resource.Styleable.Chip_chipCornerRadius = global::GraphicsTester.Android.Resource.Styleable.Chip_chipCornerRadius; - global::Microsoft.Maui.Graphics.Resource.Styleable.Chip_chipEndPadding = global::GraphicsTester.Android.Resource.Styleable.Chip_chipEndPadding; - global::Microsoft.Maui.Graphics.Resource.Styleable.Chip_chipIcon = global::GraphicsTester.Android.Resource.Styleable.Chip_chipIcon; - global::Microsoft.Maui.Graphics.Resource.Styleable.Chip_chipIconEnabled = global::GraphicsTester.Android.Resource.Styleable.Chip_chipIconEnabled; - global::Microsoft.Maui.Graphics.Resource.Styleable.Chip_chipIconSize = global::GraphicsTester.Android.Resource.Styleable.Chip_chipIconSize; - global::Microsoft.Maui.Graphics.Resource.Styleable.Chip_chipIconTint = global::GraphicsTester.Android.Resource.Styleable.Chip_chipIconTint; - global::Microsoft.Maui.Graphics.Resource.Styleable.Chip_chipIconVisible = global::GraphicsTester.Android.Resource.Styleable.Chip_chipIconVisible; - global::Microsoft.Maui.Graphics.Resource.Styleable.Chip_chipMinHeight = global::GraphicsTester.Android.Resource.Styleable.Chip_chipMinHeight; - global::Microsoft.Maui.Graphics.Resource.Styleable.Chip_chipMinTouchTargetSize = global::GraphicsTester.Android.Resource.Styleable.Chip_chipMinTouchTargetSize; - global::Microsoft.Maui.Graphics.Resource.Styleable.Chip_chipStartPadding = global::GraphicsTester.Android.Resource.Styleable.Chip_chipStartPadding; - global::Microsoft.Maui.Graphics.Resource.Styleable.Chip_chipStrokeColor = global::GraphicsTester.Android.Resource.Styleable.Chip_chipStrokeColor; - global::Microsoft.Maui.Graphics.Resource.Styleable.Chip_chipStrokeWidth = global::GraphicsTester.Android.Resource.Styleable.Chip_chipStrokeWidth; - global::Microsoft.Maui.Graphics.Resource.Styleable.Chip_chipSurfaceColor = global::GraphicsTester.Android.Resource.Styleable.Chip_chipSurfaceColor; - global::Microsoft.Maui.Graphics.Resource.Styleable.Chip_closeIcon = global::GraphicsTester.Android.Resource.Styleable.Chip_closeIcon; - global::Microsoft.Maui.Graphics.Resource.Styleable.Chip_closeIconEnabled = global::GraphicsTester.Android.Resource.Styleable.Chip_closeIconEnabled; - global::Microsoft.Maui.Graphics.Resource.Styleable.Chip_closeIconEndPadding = global::GraphicsTester.Android.Resource.Styleable.Chip_closeIconEndPadding; - global::Microsoft.Maui.Graphics.Resource.Styleable.Chip_closeIconSize = global::GraphicsTester.Android.Resource.Styleable.Chip_closeIconSize; - global::Microsoft.Maui.Graphics.Resource.Styleable.Chip_closeIconStartPadding = global::GraphicsTester.Android.Resource.Styleable.Chip_closeIconStartPadding; - global::Microsoft.Maui.Graphics.Resource.Styleable.Chip_closeIconTint = global::GraphicsTester.Android.Resource.Styleable.Chip_closeIconTint; - global::Microsoft.Maui.Graphics.Resource.Styleable.Chip_closeIconVisible = global::GraphicsTester.Android.Resource.Styleable.Chip_closeIconVisible; - global::Microsoft.Maui.Graphics.Resource.Styleable.Chip_ensureMinTouchTargetSize = global::GraphicsTester.Android.Resource.Styleable.Chip_ensureMinTouchTargetSize; - global::Microsoft.Maui.Graphics.Resource.Styleable.Chip_hideMotionSpec = global::GraphicsTester.Android.Resource.Styleable.Chip_hideMotionSpec; - global::Microsoft.Maui.Graphics.Resource.Styleable.Chip_iconEndPadding = global::GraphicsTester.Android.Resource.Styleable.Chip_iconEndPadding; - global::Microsoft.Maui.Graphics.Resource.Styleable.Chip_iconStartPadding = global::GraphicsTester.Android.Resource.Styleable.Chip_iconStartPadding; - global::Microsoft.Maui.Graphics.Resource.Styleable.Chip_rippleColor = global::GraphicsTester.Android.Resource.Styleable.Chip_rippleColor; - global::Microsoft.Maui.Graphics.Resource.Styleable.Chip_shapeAppearance = global::GraphicsTester.Android.Resource.Styleable.Chip_shapeAppearance; - global::Microsoft.Maui.Graphics.Resource.Styleable.Chip_shapeAppearanceOverlay = global::GraphicsTester.Android.Resource.Styleable.Chip_shapeAppearanceOverlay; - global::Microsoft.Maui.Graphics.Resource.Styleable.Chip_showMotionSpec = global::GraphicsTester.Android.Resource.Styleable.Chip_showMotionSpec; - global::Microsoft.Maui.Graphics.Resource.Styleable.Chip_textEndPadding = global::GraphicsTester.Android.Resource.Styleable.Chip_textEndPadding; - global::Microsoft.Maui.Graphics.Resource.Styleable.Chip_textStartPadding = global::GraphicsTester.Android.Resource.Styleable.Chip_textStartPadding; - global::Microsoft.Maui.Graphics.Resource.Styleable.CircularProgressIndicator = global::GraphicsTester.Android.Resource.Styleable.CircularProgressIndicator; - global::Microsoft.Maui.Graphics.Resource.Styleable.CircularProgressIndicator_indicatorDirectionCircular = global::GraphicsTester.Android.Resource.Styleable.CircularProgressIndicator_indicatorDirectionCircular; - global::Microsoft.Maui.Graphics.Resource.Styleable.CircularProgressIndicator_indicatorInset = global::GraphicsTester.Android.Resource.Styleable.CircularProgressIndicator_indicatorInset; - global::Microsoft.Maui.Graphics.Resource.Styleable.CircularProgressIndicator_indicatorSize = global::GraphicsTester.Android.Resource.Styleable.CircularProgressIndicator_indicatorSize; - global::Microsoft.Maui.Graphics.Resource.Styleable.ClockFaceView = global::GraphicsTester.Android.Resource.Styleable.ClockFaceView; - global::Microsoft.Maui.Graphics.Resource.Styleable.ClockFaceView_clockFaceBackgroundColor = global::GraphicsTester.Android.Resource.Styleable.ClockFaceView_clockFaceBackgroundColor; - global::Microsoft.Maui.Graphics.Resource.Styleable.ClockFaceView_clockNumberTextColor = global::GraphicsTester.Android.Resource.Styleable.ClockFaceView_clockNumberTextColor; - global::Microsoft.Maui.Graphics.Resource.Styleable.ClockHandView = global::GraphicsTester.Android.Resource.Styleable.ClockHandView; - global::Microsoft.Maui.Graphics.Resource.Styleable.ClockHandView_clockHandColor = global::GraphicsTester.Android.Resource.Styleable.ClockHandView_clockHandColor; - global::Microsoft.Maui.Graphics.Resource.Styleable.ClockHandView_materialCircleRadius = global::GraphicsTester.Android.Resource.Styleable.ClockHandView_materialCircleRadius; - global::Microsoft.Maui.Graphics.Resource.Styleable.ClockHandView_selectorSize = global::GraphicsTester.Android.Resource.Styleable.ClockHandView_selectorSize; - global::Microsoft.Maui.Graphics.Resource.Styleable.CollapsingToolbarLayout = global::GraphicsTester.Android.Resource.Styleable.CollapsingToolbarLayout; - global::Microsoft.Maui.Graphics.Resource.Styleable.CollapsingToolbarLayout_collapsedTitleGravity = global::GraphicsTester.Android.Resource.Styleable.CollapsingToolbarLayout_collapsedTitleGravity; - global::Microsoft.Maui.Graphics.Resource.Styleable.CollapsingToolbarLayout_collapsedTitleTextAppearance = global::GraphicsTester.Android.Resource.Styleable.CollapsingToolbarLayout_collapsedTitleTextAppearance; - global::Microsoft.Maui.Graphics.Resource.Styleable.CollapsingToolbarLayout_contentScrim = global::GraphicsTester.Android.Resource.Styleable.CollapsingToolbarLayout_contentScrim; - global::Microsoft.Maui.Graphics.Resource.Styleable.CollapsingToolbarLayout_expandedTitleGravity = global::GraphicsTester.Android.Resource.Styleable.CollapsingToolbarLayout_expandedTitleGravity; - global::Microsoft.Maui.Graphics.Resource.Styleable.CollapsingToolbarLayout_expandedTitleMargin = global::GraphicsTester.Android.Resource.Styleable.CollapsingToolbarLayout_expandedTitleMargin; - global::Microsoft.Maui.Graphics.Resource.Styleable.CollapsingToolbarLayout_expandedTitleMarginBottom = global::GraphicsTester.Android.Resource.Styleable.CollapsingToolbarLayout_expandedTitleMarginBottom; - global::Microsoft.Maui.Graphics.Resource.Styleable.CollapsingToolbarLayout_expandedTitleMarginEnd = global::GraphicsTester.Android.Resource.Styleable.CollapsingToolbarLayout_expandedTitleMarginEnd; - global::Microsoft.Maui.Graphics.Resource.Styleable.CollapsingToolbarLayout_expandedTitleMarginStart = global::GraphicsTester.Android.Resource.Styleable.CollapsingToolbarLayout_expandedTitleMarginStart; - global::Microsoft.Maui.Graphics.Resource.Styleable.CollapsingToolbarLayout_expandedTitleMarginTop = global::GraphicsTester.Android.Resource.Styleable.CollapsingToolbarLayout_expandedTitleMarginTop; - global::Microsoft.Maui.Graphics.Resource.Styleable.CollapsingToolbarLayout_expandedTitleTextAppearance = global::GraphicsTester.Android.Resource.Styleable.CollapsingToolbarLayout_expandedTitleTextAppearance; - global::Microsoft.Maui.Graphics.Resource.Styleable.CollapsingToolbarLayout_Layout = global::GraphicsTester.Android.Resource.Styleable.CollapsingToolbarLayout_Layout; - global::Microsoft.Maui.Graphics.Resource.Styleable.CollapsingToolbarLayout_Layout_layout_collapseMode = global::GraphicsTester.Android.Resource.Styleable.CollapsingToolbarLayout_Layout_layout_collapseMode; - global::Microsoft.Maui.Graphics.Resource.Styleable.CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier = global::GraphicsTester.Android.Resource.Styleable.CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier; - global::Microsoft.Maui.Graphics.Resource.Styleable.CollapsingToolbarLayout_maxLines = global::GraphicsTester.Android.Resource.Styleable.CollapsingToolbarLayout_maxLines; - global::Microsoft.Maui.Graphics.Resource.Styleable.CollapsingToolbarLayout_scrimAnimationDuration = global::GraphicsTester.Android.Resource.Styleable.CollapsingToolbarLayout_scrimAnimationDuration; - global::Microsoft.Maui.Graphics.Resource.Styleable.CollapsingToolbarLayout_scrimVisibleHeightTrigger = global::GraphicsTester.Android.Resource.Styleable.CollapsingToolbarLayout_scrimVisibleHeightTrigger; - global::Microsoft.Maui.Graphics.Resource.Styleable.CollapsingToolbarLayout_statusBarScrim = global::GraphicsTester.Android.Resource.Styleable.CollapsingToolbarLayout_statusBarScrim; - global::Microsoft.Maui.Graphics.Resource.Styleable.CollapsingToolbarLayout_title = global::GraphicsTester.Android.Resource.Styleable.CollapsingToolbarLayout_title; - global::Microsoft.Maui.Graphics.Resource.Styleable.CollapsingToolbarLayout_titleEnabled = global::GraphicsTester.Android.Resource.Styleable.CollapsingToolbarLayout_titleEnabled; - global::Microsoft.Maui.Graphics.Resource.Styleable.CollapsingToolbarLayout_toolbarId = global::GraphicsTester.Android.Resource.Styleable.CollapsingToolbarLayout_toolbarId; - global::Microsoft.Maui.Graphics.Resource.Styleable.ColorStateListItem = global::GraphicsTester.Android.Resource.Styleable.ColorStateListItem; - global::Microsoft.Maui.Graphics.Resource.Styleable.ColorStateListItem_alpha = global::GraphicsTester.Android.Resource.Styleable.ColorStateListItem_alpha; - global::Microsoft.Maui.Graphics.Resource.Styleable.ColorStateListItem_android_alpha = global::GraphicsTester.Android.Resource.Styleable.ColorStateListItem_android_alpha; - global::Microsoft.Maui.Graphics.Resource.Styleable.ColorStateListItem_android_color = global::GraphicsTester.Android.Resource.Styleable.ColorStateListItem_android_color; - global::Microsoft.Maui.Graphics.Resource.Styleable.CompoundButton = global::GraphicsTester.Android.Resource.Styleable.CompoundButton; - global::Microsoft.Maui.Graphics.Resource.Styleable.CompoundButton_android_button = global::GraphicsTester.Android.Resource.Styleable.CompoundButton_android_button; - global::Microsoft.Maui.Graphics.Resource.Styleable.CompoundButton_buttonCompat = global::GraphicsTester.Android.Resource.Styleable.CompoundButton_buttonCompat; - global::Microsoft.Maui.Graphics.Resource.Styleable.CompoundButton_buttonTint = global::GraphicsTester.Android.Resource.Styleable.CompoundButton_buttonTint; - global::Microsoft.Maui.Graphics.Resource.Styleable.CompoundButton_buttonTintMode = global::GraphicsTester.Android.Resource.Styleable.CompoundButton_buttonTintMode; - global::Microsoft.Maui.Graphics.Resource.Styleable.Constraint = global::GraphicsTester.Android.Resource.Styleable.Constraint; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintLayout_Layout = global::GraphicsTester.Android.Resource.Styleable.ConstraintLayout_Layout; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintLayout_Layout_android_elevation = global::GraphicsTester.Android.Resource.Styleable.ConstraintLayout_Layout_android_elevation; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintLayout_Layout_android_maxHeight = global::GraphicsTester.Android.Resource.Styleable.ConstraintLayout_Layout_android_maxHeight; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintLayout_Layout_android_maxWidth = global::GraphicsTester.Android.Resource.Styleable.ConstraintLayout_Layout_android_maxWidth; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintLayout_Layout_android_minHeight = global::GraphicsTester.Android.Resource.Styleable.ConstraintLayout_Layout_android_minHeight; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintLayout_Layout_android_minWidth = global::GraphicsTester.Android.Resource.Styleable.ConstraintLayout_Layout_android_minWidth; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintLayout_Layout_android_orientation = global::GraphicsTester.Android.Resource.Styleable.ConstraintLayout_Layout_android_orientation; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintLayout_Layout_android_padding = global::GraphicsTester.Android.Resource.Styleable.ConstraintLayout_Layout_android_padding; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintLayout_Layout_android_paddingBottom = global::GraphicsTester.Android.Resource.Styleable.ConstraintLayout_Layout_android_paddingBottom; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintLayout_Layout_android_paddingEnd = global::GraphicsTester.Android.Resource.Styleable.ConstraintLayout_Layout_android_paddingEnd; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintLayout_Layout_android_paddingLeft = global::GraphicsTester.Android.Resource.Styleable.ConstraintLayout_Layout_android_paddingLeft; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintLayout_Layout_android_paddingRight = global::GraphicsTester.Android.Resource.Styleable.ConstraintLayout_Layout_android_paddingRight; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintLayout_Layout_android_paddingStart = global::GraphicsTester.Android.Resource.Styleable.ConstraintLayout_Layout_android_paddingStart; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintLayout_Layout_android_paddingTop = global::GraphicsTester.Android.Resource.Styleable.ConstraintLayout_Layout_android_paddingTop; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintLayout_Layout_android_visibility = global::GraphicsTester.Android.Resource.Styleable.ConstraintLayout_Layout_android_visibility; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintLayout_Layout_barrierAllowsGoneWidgets = global::GraphicsTester.Android.Resource.Styleable.ConstraintLayout_Layout_barrierAllowsGoneWidgets; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintLayout_Layout_barrierDirection = global::GraphicsTester.Android.Resource.Styleable.ConstraintLayout_Layout_barrierDirection; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintLayout_Layout_barrierMargin = global::GraphicsTester.Android.Resource.Styleable.ConstraintLayout_Layout_barrierMargin; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintLayout_Layout_chainUseRtl = global::GraphicsTester.Android.Resource.Styleable.ConstraintLayout_Layout_chainUseRtl; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintLayout_Layout_constraintSet = global::GraphicsTester.Android.Resource.Styleable.ConstraintLayout_Layout_constraintSet; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintLayout_Layout_constraint_referenced_ids = global::GraphicsTester.Android.Resource.Styleable.ConstraintLayout_Layout_constraint_referenced_ids; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintLayout_Layout_constraint_referenced_tags = global::GraphicsTester.Android.Resource.Styleable.ConstraintLayout_Layout_constraint_referenced_tags; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintLayout_Layout_flow_firstHorizontalBias = global::GraphicsTester.Android.Resource.Styleable.ConstraintLayout_Layout_flow_firstHorizontalBias; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintLayout_Layout_flow_firstHorizontalStyle = global::GraphicsTester.Android.Resource.Styleable.ConstraintLayout_Layout_flow_firstHorizontalStyle; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintLayout_Layout_flow_firstVerticalBias = global::GraphicsTester.Android.Resource.Styleable.ConstraintLayout_Layout_flow_firstVerticalBias; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintLayout_Layout_flow_firstVerticalStyle = global::GraphicsTester.Android.Resource.Styleable.ConstraintLayout_Layout_flow_firstVerticalStyle; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintLayout_Layout_flow_horizontalAlign = global::GraphicsTester.Android.Resource.Styleable.ConstraintLayout_Layout_flow_horizontalAlign; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintLayout_Layout_flow_horizontalBias = global::GraphicsTester.Android.Resource.Styleable.ConstraintLayout_Layout_flow_horizontalBias; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintLayout_Layout_flow_horizontalGap = global::GraphicsTester.Android.Resource.Styleable.ConstraintLayout_Layout_flow_horizontalGap; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintLayout_Layout_flow_horizontalStyle = global::GraphicsTester.Android.Resource.Styleable.ConstraintLayout_Layout_flow_horizontalStyle; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintLayout_Layout_flow_lastHorizontalBias = global::GraphicsTester.Android.Resource.Styleable.ConstraintLayout_Layout_flow_lastHorizontalBias; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintLayout_Layout_flow_lastHorizontalStyle = global::GraphicsTester.Android.Resource.Styleable.ConstraintLayout_Layout_flow_lastHorizontalStyle; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintLayout_Layout_flow_lastVerticalBias = global::GraphicsTester.Android.Resource.Styleable.ConstraintLayout_Layout_flow_lastVerticalBias; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintLayout_Layout_flow_lastVerticalStyle = global::GraphicsTester.Android.Resource.Styleable.ConstraintLayout_Layout_flow_lastVerticalStyle; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintLayout_Layout_flow_maxElementsWrap = global::GraphicsTester.Android.Resource.Styleable.ConstraintLayout_Layout_flow_maxElementsWrap; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintLayout_Layout_flow_verticalAlign = global::GraphicsTester.Android.Resource.Styleable.ConstraintLayout_Layout_flow_verticalAlign; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintLayout_Layout_flow_verticalBias = global::GraphicsTester.Android.Resource.Styleable.ConstraintLayout_Layout_flow_verticalBias; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintLayout_Layout_flow_verticalGap = global::GraphicsTester.Android.Resource.Styleable.ConstraintLayout_Layout_flow_verticalGap; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintLayout_Layout_flow_verticalStyle = global::GraphicsTester.Android.Resource.Styleable.ConstraintLayout_Layout_flow_verticalStyle; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintLayout_Layout_flow_wrapMode = global::GraphicsTester.Android.Resource.Styleable.ConstraintLayout_Layout_flow_wrapMode; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintLayout_Layout_layoutDescription = global::GraphicsTester.Android.Resource.Styleable.ConstraintLayout_Layout_layoutDescription; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintLayout_Layout_layout_constrainedHeight = global::GraphicsTester.Android.Resource.Styleable.ConstraintLayout_Layout_layout_constrainedHeight; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintLayout_Layout_layout_constrainedWidth = global::GraphicsTester.Android.Resource.Styleable.ConstraintLayout_Layout_layout_constrainedWidth; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintLayout_Layout_layout_constraintBaseline_creator = global::GraphicsTester.Android.Resource.Styleable.ConstraintLayout_Layout_layout_constraintBaseline_creator; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintLayout_Layout_layout_constraintBaseline_toBaselineOf = global::GraphicsTester.Android.Resource.Styleable.ConstraintLayout_Layout_layout_constraintBaseline_toBaselineOf; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintLayout_Layout_layout_constraintBottom_creator = global::GraphicsTester.Android.Resource.Styleable.ConstraintLayout_Layout_layout_constraintBottom_creator; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintLayout_Layout_layout_constraintBottom_toBottomOf = global::GraphicsTester.Android.Resource.Styleable.ConstraintLayout_Layout_layout_constraintBottom_toBottomOf; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintLayout_Layout_layout_constraintBottom_toTopOf = global::GraphicsTester.Android.Resource.Styleable.ConstraintLayout_Layout_layout_constraintBottom_toTopOf; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintLayout_Layout_layout_constraintCircle = global::GraphicsTester.Android.Resource.Styleable.ConstraintLayout_Layout_layout_constraintCircle; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintLayout_Layout_layout_constraintCircleAngle = global::GraphicsTester.Android.Resource.Styleable.ConstraintLayout_Layout_layout_constraintCircleAngle; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintLayout_Layout_layout_constraintCircleRadius = global::GraphicsTester.Android.Resource.Styleable.ConstraintLayout_Layout_layout_constraintCircleRadius; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintLayout_Layout_layout_constraintDimensionRatio = global::GraphicsTester.Android.Resource.Styleable.ConstraintLayout_Layout_layout_constraintDimensionRatio; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintLayout_Layout_layout_constraintEnd_toEndOf = global::GraphicsTester.Android.Resource.Styleable.ConstraintLayout_Layout_layout_constraintEnd_toEndOf; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintLayout_Layout_layout_constraintEnd_toStartOf = global::GraphicsTester.Android.Resource.Styleable.ConstraintLayout_Layout_layout_constraintEnd_toStartOf; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintLayout_Layout_layout_constraintGuide_begin = global::GraphicsTester.Android.Resource.Styleable.ConstraintLayout_Layout_layout_constraintGuide_begin; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintLayout_Layout_layout_constraintGuide_end = global::GraphicsTester.Android.Resource.Styleable.ConstraintLayout_Layout_layout_constraintGuide_end; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintLayout_Layout_layout_constraintGuide_percent = global::GraphicsTester.Android.Resource.Styleable.ConstraintLayout_Layout_layout_constraintGuide_percent; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintLayout_Layout_layout_constraintHeight_default = global::GraphicsTester.Android.Resource.Styleable.ConstraintLayout_Layout_layout_constraintHeight_default; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintLayout_Layout_layout_constraintHeight_max = global::GraphicsTester.Android.Resource.Styleable.ConstraintLayout_Layout_layout_constraintHeight_max; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintLayout_Layout_layout_constraintHeight_min = global::GraphicsTester.Android.Resource.Styleable.ConstraintLayout_Layout_layout_constraintHeight_min; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintLayout_Layout_layout_constraintHeight_percent = global::GraphicsTester.Android.Resource.Styleable.ConstraintLayout_Layout_layout_constraintHeight_percent; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintLayout_Layout_layout_constraintHorizontal_bias = global::GraphicsTester.Android.Resource.Styleable.ConstraintLayout_Layout_layout_constraintHorizontal_bias; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintLayout_Layout_layout_constraintHorizontal_chainStyle = global::GraphicsTester.Android.Resource.Styleable.ConstraintLayout_Layout_layout_constraintHorizontal_chainStyle; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintLayout_Layout_layout_constraintHorizontal_weight = global::GraphicsTester.Android.Resource.Styleable.ConstraintLayout_Layout_layout_constraintHorizontal_weight; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintLayout_Layout_layout_constraintLeft_creator = global::GraphicsTester.Android.Resource.Styleable.ConstraintLayout_Layout_layout_constraintLeft_creator; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintLayout_Layout_layout_constraintLeft_toLeftOf = global::GraphicsTester.Android.Resource.Styleable.ConstraintLayout_Layout_layout_constraintLeft_toLeftOf; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintLayout_Layout_layout_constraintLeft_toRightOf = global::GraphicsTester.Android.Resource.Styleable.ConstraintLayout_Layout_layout_constraintLeft_toRightOf; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintLayout_Layout_layout_constraintRight_creator = global::GraphicsTester.Android.Resource.Styleable.ConstraintLayout_Layout_layout_constraintRight_creator; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintLayout_Layout_layout_constraintRight_toLeftOf = global::GraphicsTester.Android.Resource.Styleable.ConstraintLayout_Layout_layout_constraintRight_toLeftOf; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintLayout_Layout_layout_constraintRight_toRightOf = global::GraphicsTester.Android.Resource.Styleable.ConstraintLayout_Layout_layout_constraintRight_toRightOf; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintLayout_Layout_layout_constraintStart_toEndOf = global::GraphicsTester.Android.Resource.Styleable.ConstraintLayout_Layout_layout_constraintStart_toEndOf; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintLayout_Layout_layout_constraintStart_toStartOf = global::GraphicsTester.Android.Resource.Styleable.ConstraintLayout_Layout_layout_constraintStart_toStartOf; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintLayout_Layout_layout_constraintTag = global::GraphicsTester.Android.Resource.Styleable.ConstraintLayout_Layout_layout_constraintTag; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintLayout_Layout_layout_constraintTop_creator = global::GraphicsTester.Android.Resource.Styleable.ConstraintLayout_Layout_layout_constraintTop_creator; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintLayout_Layout_layout_constraintTop_toBottomOf = global::GraphicsTester.Android.Resource.Styleable.ConstraintLayout_Layout_layout_constraintTop_toBottomOf; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintLayout_Layout_layout_constraintTop_toTopOf = global::GraphicsTester.Android.Resource.Styleable.ConstraintLayout_Layout_layout_constraintTop_toTopOf; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintLayout_Layout_layout_constraintVertical_bias = global::GraphicsTester.Android.Resource.Styleable.ConstraintLayout_Layout_layout_constraintVertical_bias; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintLayout_Layout_layout_constraintVertical_chainStyle = global::GraphicsTester.Android.Resource.Styleable.ConstraintLayout_Layout_layout_constraintVertical_chainStyle; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintLayout_Layout_layout_constraintVertical_weight = global::GraphicsTester.Android.Resource.Styleable.ConstraintLayout_Layout_layout_constraintVertical_weight; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintLayout_Layout_layout_constraintWidth_default = global::GraphicsTester.Android.Resource.Styleable.ConstraintLayout_Layout_layout_constraintWidth_default; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintLayout_Layout_layout_constraintWidth_max = global::GraphicsTester.Android.Resource.Styleable.ConstraintLayout_Layout_layout_constraintWidth_max; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintLayout_Layout_layout_constraintWidth_min = global::GraphicsTester.Android.Resource.Styleable.ConstraintLayout_Layout_layout_constraintWidth_min; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintLayout_Layout_layout_constraintWidth_percent = global::GraphicsTester.Android.Resource.Styleable.ConstraintLayout_Layout_layout_constraintWidth_percent; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintLayout_Layout_layout_editor_absoluteX = global::GraphicsTester.Android.Resource.Styleable.ConstraintLayout_Layout_layout_editor_absoluteX; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintLayout_Layout_layout_editor_absoluteY = global::GraphicsTester.Android.Resource.Styleable.ConstraintLayout_Layout_layout_editor_absoluteY; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintLayout_Layout_layout_goneMarginBottom = global::GraphicsTester.Android.Resource.Styleable.ConstraintLayout_Layout_layout_goneMarginBottom; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintLayout_Layout_layout_goneMarginEnd = global::GraphicsTester.Android.Resource.Styleable.ConstraintLayout_Layout_layout_goneMarginEnd; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintLayout_Layout_layout_goneMarginLeft = global::GraphicsTester.Android.Resource.Styleable.ConstraintLayout_Layout_layout_goneMarginLeft; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintLayout_Layout_layout_goneMarginRight = global::GraphicsTester.Android.Resource.Styleable.ConstraintLayout_Layout_layout_goneMarginRight; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintLayout_Layout_layout_goneMarginStart = global::GraphicsTester.Android.Resource.Styleable.ConstraintLayout_Layout_layout_goneMarginStart; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintLayout_Layout_layout_goneMarginTop = global::GraphicsTester.Android.Resource.Styleable.ConstraintLayout_Layout_layout_goneMarginTop; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintLayout_Layout_layout_optimizationLevel = global::GraphicsTester.Android.Resource.Styleable.ConstraintLayout_Layout_layout_optimizationLevel; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintLayout_placeholder = global::GraphicsTester.Android.Resource.Styleable.ConstraintLayout_placeholder; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintLayout_placeholder_content = global::GraphicsTester.Android.Resource.Styleable.ConstraintLayout_placeholder_content; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintLayout_placeholder_placeholder_emptyVisibility = global::GraphicsTester.Android.Resource.Styleable.ConstraintLayout_placeholder_placeholder_emptyVisibility; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintSet = global::GraphicsTester.Android.Resource.Styleable.ConstraintSet; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintSet_android_alpha = global::GraphicsTester.Android.Resource.Styleable.ConstraintSet_android_alpha; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintSet_android_elevation = global::GraphicsTester.Android.Resource.Styleable.ConstraintSet_android_elevation; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintSet_android_id = global::GraphicsTester.Android.Resource.Styleable.ConstraintSet_android_id; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintSet_android_layout_height = global::GraphicsTester.Android.Resource.Styleable.ConstraintSet_android_layout_height; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintSet_android_layout_marginBottom = global::GraphicsTester.Android.Resource.Styleable.ConstraintSet_android_layout_marginBottom; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintSet_android_layout_marginEnd = global::GraphicsTester.Android.Resource.Styleable.ConstraintSet_android_layout_marginEnd; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintSet_android_layout_marginLeft = global::GraphicsTester.Android.Resource.Styleable.ConstraintSet_android_layout_marginLeft; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintSet_android_layout_marginRight = global::GraphicsTester.Android.Resource.Styleable.ConstraintSet_android_layout_marginRight; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintSet_android_layout_marginStart = global::GraphicsTester.Android.Resource.Styleable.ConstraintSet_android_layout_marginStart; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintSet_android_layout_marginTop = global::GraphicsTester.Android.Resource.Styleable.ConstraintSet_android_layout_marginTop; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintSet_android_layout_width = global::GraphicsTester.Android.Resource.Styleable.ConstraintSet_android_layout_width; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintSet_android_maxHeight = global::GraphicsTester.Android.Resource.Styleable.ConstraintSet_android_maxHeight; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintSet_android_maxWidth = global::GraphicsTester.Android.Resource.Styleable.ConstraintSet_android_maxWidth; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintSet_android_minHeight = global::GraphicsTester.Android.Resource.Styleable.ConstraintSet_android_minHeight; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintSet_android_minWidth = global::GraphicsTester.Android.Resource.Styleable.ConstraintSet_android_minWidth; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintSet_android_orientation = global::GraphicsTester.Android.Resource.Styleable.ConstraintSet_android_orientation; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintSet_android_pivotX = global::GraphicsTester.Android.Resource.Styleable.ConstraintSet_android_pivotX; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintSet_android_pivotY = global::GraphicsTester.Android.Resource.Styleable.ConstraintSet_android_pivotY; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintSet_android_rotation = global::GraphicsTester.Android.Resource.Styleable.ConstraintSet_android_rotation; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintSet_android_rotationX = global::GraphicsTester.Android.Resource.Styleable.ConstraintSet_android_rotationX; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintSet_android_rotationY = global::GraphicsTester.Android.Resource.Styleable.ConstraintSet_android_rotationY; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintSet_android_scaleX = global::GraphicsTester.Android.Resource.Styleable.ConstraintSet_android_scaleX; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintSet_android_scaleY = global::GraphicsTester.Android.Resource.Styleable.ConstraintSet_android_scaleY; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintSet_android_transformPivotX = global::GraphicsTester.Android.Resource.Styleable.ConstraintSet_android_transformPivotX; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintSet_android_transformPivotY = global::GraphicsTester.Android.Resource.Styleable.ConstraintSet_android_transformPivotY; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintSet_android_translationX = global::GraphicsTester.Android.Resource.Styleable.ConstraintSet_android_translationX; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintSet_android_translationY = global::GraphicsTester.Android.Resource.Styleable.ConstraintSet_android_translationY; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintSet_android_translationZ = global::GraphicsTester.Android.Resource.Styleable.ConstraintSet_android_translationZ; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintSet_android_visibility = global::GraphicsTester.Android.Resource.Styleable.ConstraintSet_android_visibility; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintSet_animate_relativeTo = global::GraphicsTester.Android.Resource.Styleable.ConstraintSet_animate_relativeTo; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintSet_barrierAllowsGoneWidgets = global::GraphicsTester.Android.Resource.Styleable.ConstraintSet_barrierAllowsGoneWidgets; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintSet_barrierDirection = global::GraphicsTester.Android.Resource.Styleable.ConstraintSet_barrierDirection; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintSet_barrierMargin = global::GraphicsTester.Android.Resource.Styleable.ConstraintSet_barrierMargin; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintSet_chainUseRtl = global::GraphicsTester.Android.Resource.Styleable.ConstraintSet_chainUseRtl; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintSet_constraint_referenced_ids = global::GraphicsTester.Android.Resource.Styleable.ConstraintSet_constraint_referenced_ids; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintSet_constraint_referenced_tags = global::GraphicsTester.Android.Resource.Styleable.ConstraintSet_constraint_referenced_tags; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintSet_deriveConstraintsFrom = global::GraphicsTester.Android.Resource.Styleable.ConstraintSet_deriveConstraintsFrom; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintSet_drawPath = global::GraphicsTester.Android.Resource.Styleable.ConstraintSet_drawPath; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintSet_flow_firstHorizontalBias = global::GraphicsTester.Android.Resource.Styleable.ConstraintSet_flow_firstHorizontalBias; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintSet_flow_firstHorizontalStyle = global::GraphicsTester.Android.Resource.Styleable.ConstraintSet_flow_firstHorizontalStyle; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintSet_flow_firstVerticalBias = global::GraphicsTester.Android.Resource.Styleable.ConstraintSet_flow_firstVerticalBias; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintSet_flow_firstVerticalStyle = global::GraphicsTester.Android.Resource.Styleable.ConstraintSet_flow_firstVerticalStyle; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintSet_flow_horizontalAlign = global::GraphicsTester.Android.Resource.Styleable.ConstraintSet_flow_horizontalAlign; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintSet_flow_horizontalBias = global::GraphicsTester.Android.Resource.Styleable.ConstraintSet_flow_horizontalBias; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintSet_flow_horizontalGap = global::GraphicsTester.Android.Resource.Styleable.ConstraintSet_flow_horizontalGap; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintSet_flow_horizontalStyle = global::GraphicsTester.Android.Resource.Styleable.ConstraintSet_flow_horizontalStyle; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintSet_flow_lastHorizontalBias = global::GraphicsTester.Android.Resource.Styleable.ConstraintSet_flow_lastHorizontalBias; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintSet_flow_lastHorizontalStyle = global::GraphicsTester.Android.Resource.Styleable.ConstraintSet_flow_lastHorizontalStyle; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintSet_flow_lastVerticalBias = global::GraphicsTester.Android.Resource.Styleable.ConstraintSet_flow_lastVerticalBias; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintSet_flow_lastVerticalStyle = global::GraphicsTester.Android.Resource.Styleable.ConstraintSet_flow_lastVerticalStyle; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintSet_flow_maxElementsWrap = global::GraphicsTester.Android.Resource.Styleable.ConstraintSet_flow_maxElementsWrap; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintSet_flow_verticalAlign = global::GraphicsTester.Android.Resource.Styleable.ConstraintSet_flow_verticalAlign; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintSet_flow_verticalBias = global::GraphicsTester.Android.Resource.Styleable.ConstraintSet_flow_verticalBias; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintSet_flow_verticalGap = global::GraphicsTester.Android.Resource.Styleable.ConstraintSet_flow_verticalGap; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintSet_flow_verticalStyle = global::GraphicsTester.Android.Resource.Styleable.ConstraintSet_flow_verticalStyle; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintSet_flow_wrapMode = global::GraphicsTester.Android.Resource.Styleable.ConstraintSet_flow_wrapMode; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintSet_layout_constrainedHeight = global::GraphicsTester.Android.Resource.Styleable.ConstraintSet_layout_constrainedHeight; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintSet_layout_constrainedWidth = global::GraphicsTester.Android.Resource.Styleable.ConstraintSet_layout_constrainedWidth; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintSet_layout_constraintBaseline_creator = global::GraphicsTester.Android.Resource.Styleable.ConstraintSet_layout_constraintBaseline_creator; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintSet_layout_constraintBaseline_toBaselineOf = global::GraphicsTester.Android.Resource.Styleable.ConstraintSet_layout_constraintBaseline_toBaselineOf; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintSet_layout_constraintBottom_creator = global::GraphicsTester.Android.Resource.Styleable.ConstraintSet_layout_constraintBottom_creator; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintSet_layout_constraintBottom_toBottomOf = global::GraphicsTester.Android.Resource.Styleable.ConstraintSet_layout_constraintBottom_toBottomOf; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintSet_layout_constraintBottom_toTopOf = global::GraphicsTester.Android.Resource.Styleable.ConstraintSet_layout_constraintBottom_toTopOf; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintSet_layout_constraintCircle = global::GraphicsTester.Android.Resource.Styleable.ConstraintSet_layout_constraintCircle; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintSet_layout_constraintCircleAngle = global::GraphicsTester.Android.Resource.Styleable.ConstraintSet_layout_constraintCircleAngle; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintSet_layout_constraintCircleRadius = global::GraphicsTester.Android.Resource.Styleable.ConstraintSet_layout_constraintCircleRadius; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintSet_layout_constraintDimensionRatio = global::GraphicsTester.Android.Resource.Styleable.ConstraintSet_layout_constraintDimensionRatio; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintSet_layout_constraintEnd_toEndOf = global::GraphicsTester.Android.Resource.Styleable.ConstraintSet_layout_constraintEnd_toEndOf; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintSet_layout_constraintEnd_toStartOf = global::GraphicsTester.Android.Resource.Styleable.ConstraintSet_layout_constraintEnd_toStartOf; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintSet_layout_constraintGuide_begin = global::GraphicsTester.Android.Resource.Styleable.ConstraintSet_layout_constraintGuide_begin; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintSet_layout_constraintGuide_end = global::GraphicsTester.Android.Resource.Styleable.ConstraintSet_layout_constraintGuide_end; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintSet_layout_constraintGuide_percent = global::GraphicsTester.Android.Resource.Styleable.ConstraintSet_layout_constraintGuide_percent; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintSet_layout_constraintHeight_default = global::GraphicsTester.Android.Resource.Styleable.ConstraintSet_layout_constraintHeight_default; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintSet_layout_constraintHeight_max = global::GraphicsTester.Android.Resource.Styleable.ConstraintSet_layout_constraintHeight_max; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintSet_layout_constraintHeight_min = global::GraphicsTester.Android.Resource.Styleable.ConstraintSet_layout_constraintHeight_min; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintSet_layout_constraintHeight_percent = global::GraphicsTester.Android.Resource.Styleable.ConstraintSet_layout_constraintHeight_percent; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintSet_layout_constraintHorizontal_bias = global::GraphicsTester.Android.Resource.Styleable.ConstraintSet_layout_constraintHorizontal_bias; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintSet_layout_constraintHorizontal_chainStyle = global::GraphicsTester.Android.Resource.Styleable.ConstraintSet_layout_constraintHorizontal_chainStyle; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintSet_layout_constraintHorizontal_weight = global::GraphicsTester.Android.Resource.Styleable.ConstraintSet_layout_constraintHorizontal_weight; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintSet_layout_constraintLeft_creator = global::GraphicsTester.Android.Resource.Styleable.ConstraintSet_layout_constraintLeft_creator; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintSet_layout_constraintLeft_toLeftOf = global::GraphicsTester.Android.Resource.Styleable.ConstraintSet_layout_constraintLeft_toLeftOf; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintSet_layout_constraintLeft_toRightOf = global::GraphicsTester.Android.Resource.Styleable.ConstraintSet_layout_constraintLeft_toRightOf; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintSet_layout_constraintRight_creator = global::GraphicsTester.Android.Resource.Styleable.ConstraintSet_layout_constraintRight_creator; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintSet_layout_constraintRight_toLeftOf = global::GraphicsTester.Android.Resource.Styleable.ConstraintSet_layout_constraintRight_toLeftOf; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintSet_layout_constraintRight_toRightOf = global::GraphicsTester.Android.Resource.Styleable.ConstraintSet_layout_constraintRight_toRightOf; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintSet_layout_constraintStart_toEndOf = global::GraphicsTester.Android.Resource.Styleable.ConstraintSet_layout_constraintStart_toEndOf; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintSet_layout_constraintStart_toStartOf = global::GraphicsTester.Android.Resource.Styleable.ConstraintSet_layout_constraintStart_toStartOf; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintSet_layout_constraintTag = global::GraphicsTester.Android.Resource.Styleable.ConstraintSet_layout_constraintTag; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintSet_layout_constraintTop_creator = global::GraphicsTester.Android.Resource.Styleable.ConstraintSet_layout_constraintTop_creator; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintSet_layout_constraintTop_toBottomOf = global::GraphicsTester.Android.Resource.Styleable.ConstraintSet_layout_constraintTop_toBottomOf; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintSet_layout_constraintTop_toTopOf = global::GraphicsTester.Android.Resource.Styleable.ConstraintSet_layout_constraintTop_toTopOf; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintSet_layout_constraintVertical_bias = global::GraphicsTester.Android.Resource.Styleable.ConstraintSet_layout_constraintVertical_bias; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintSet_layout_constraintVertical_chainStyle = global::GraphicsTester.Android.Resource.Styleable.ConstraintSet_layout_constraintVertical_chainStyle; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintSet_layout_constraintVertical_weight = global::GraphicsTester.Android.Resource.Styleable.ConstraintSet_layout_constraintVertical_weight; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintSet_layout_constraintWidth_default = global::GraphicsTester.Android.Resource.Styleable.ConstraintSet_layout_constraintWidth_default; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintSet_layout_constraintWidth_max = global::GraphicsTester.Android.Resource.Styleable.ConstraintSet_layout_constraintWidth_max; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintSet_layout_constraintWidth_min = global::GraphicsTester.Android.Resource.Styleable.ConstraintSet_layout_constraintWidth_min; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintSet_layout_constraintWidth_percent = global::GraphicsTester.Android.Resource.Styleable.ConstraintSet_layout_constraintWidth_percent; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintSet_layout_editor_absoluteX = global::GraphicsTester.Android.Resource.Styleable.ConstraintSet_layout_editor_absoluteX; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintSet_layout_editor_absoluteY = global::GraphicsTester.Android.Resource.Styleable.ConstraintSet_layout_editor_absoluteY; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintSet_layout_goneMarginBottom = global::GraphicsTester.Android.Resource.Styleable.ConstraintSet_layout_goneMarginBottom; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintSet_layout_goneMarginEnd = global::GraphicsTester.Android.Resource.Styleable.ConstraintSet_layout_goneMarginEnd; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintSet_layout_goneMarginLeft = global::GraphicsTester.Android.Resource.Styleable.ConstraintSet_layout_goneMarginLeft; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintSet_layout_goneMarginRight = global::GraphicsTester.Android.Resource.Styleable.ConstraintSet_layout_goneMarginRight; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintSet_layout_goneMarginStart = global::GraphicsTester.Android.Resource.Styleable.ConstraintSet_layout_goneMarginStart; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintSet_layout_goneMarginTop = global::GraphicsTester.Android.Resource.Styleable.ConstraintSet_layout_goneMarginTop; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintSet_motionProgress = global::GraphicsTester.Android.Resource.Styleable.ConstraintSet_motionProgress; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintSet_motionStagger = global::GraphicsTester.Android.Resource.Styleable.ConstraintSet_motionStagger; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintSet_pathMotionArc = global::GraphicsTester.Android.Resource.Styleable.ConstraintSet_pathMotionArc; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintSet_pivotAnchor = global::GraphicsTester.Android.Resource.Styleable.ConstraintSet_pivotAnchor; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintSet_transitionEasing = global::GraphicsTester.Android.Resource.Styleable.ConstraintSet_transitionEasing; - global::Microsoft.Maui.Graphics.Resource.Styleable.ConstraintSet_transitionPathRotate = global::GraphicsTester.Android.Resource.Styleable.ConstraintSet_transitionPathRotate; - global::Microsoft.Maui.Graphics.Resource.Styleable.Constraint_android_alpha = global::GraphicsTester.Android.Resource.Styleable.Constraint_android_alpha; - global::Microsoft.Maui.Graphics.Resource.Styleable.Constraint_android_elevation = global::GraphicsTester.Android.Resource.Styleable.Constraint_android_elevation; - global::Microsoft.Maui.Graphics.Resource.Styleable.Constraint_android_id = global::GraphicsTester.Android.Resource.Styleable.Constraint_android_id; - global::Microsoft.Maui.Graphics.Resource.Styleable.Constraint_android_layout_height = global::GraphicsTester.Android.Resource.Styleable.Constraint_android_layout_height; - global::Microsoft.Maui.Graphics.Resource.Styleable.Constraint_android_layout_marginBottom = global::GraphicsTester.Android.Resource.Styleable.Constraint_android_layout_marginBottom; - global::Microsoft.Maui.Graphics.Resource.Styleable.Constraint_android_layout_marginEnd = global::GraphicsTester.Android.Resource.Styleable.Constraint_android_layout_marginEnd; - global::Microsoft.Maui.Graphics.Resource.Styleable.Constraint_android_layout_marginLeft = global::GraphicsTester.Android.Resource.Styleable.Constraint_android_layout_marginLeft; - global::Microsoft.Maui.Graphics.Resource.Styleable.Constraint_android_layout_marginRight = global::GraphicsTester.Android.Resource.Styleable.Constraint_android_layout_marginRight; - global::Microsoft.Maui.Graphics.Resource.Styleable.Constraint_android_layout_marginStart = global::GraphicsTester.Android.Resource.Styleable.Constraint_android_layout_marginStart; - global::Microsoft.Maui.Graphics.Resource.Styleable.Constraint_android_layout_marginTop = global::GraphicsTester.Android.Resource.Styleable.Constraint_android_layout_marginTop; - global::Microsoft.Maui.Graphics.Resource.Styleable.Constraint_android_layout_width = global::GraphicsTester.Android.Resource.Styleable.Constraint_android_layout_width; - global::Microsoft.Maui.Graphics.Resource.Styleable.Constraint_android_maxHeight = global::GraphicsTester.Android.Resource.Styleable.Constraint_android_maxHeight; - global::Microsoft.Maui.Graphics.Resource.Styleable.Constraint_android_maxWidth = global::GraphicsTester.Android.Resource.Styleable.Constraint_android_maxWidth; - global::Microsoft.Maui.Graphics.Resource.Styleable.Constraint_android_minHeight = global::GraphicsTester.Android.Resource.Styleable.Constraint_android_minHeight; - global::Microsoft.Maui.Graphics.Resource.Styleable.Constraint_android_minWidth = global::GraphicsTester.Android.Resource.Styleable.Constraint_android_minWidth; - global::Microsoft.Maui.Graphics.Resource.Styleable.Constraint_android_orientation = global::GraphicsTester.Android.Resource.Styleable.Constraint_android_orientation; - global::Microsoft.Maui.Graphics.Resource.Styleable.Constraint_android_rotation = global::GraphicsTester.Android.Resource.Styleable.Constraint_android_rotation; - global::Microsoft.Maui.Graphics.Resource.Styleable.Constraint_android_rotationX = global::GraphicsTester.Android.Resource.Styleable.Constraint_android_rotationX; - global::Microsoft.Maui.Graphics.Resource.Styleable.Constraint_android_rotationY = global::GraphicsTester.Android.Resource.Styleable.Constraint_android_rotationY; - global::Microsoft.Maui.Graphics.Resource.Styleable.Constraint_android_scaleX = global::GraphicsTester.Android.Resource.Styleable.Constraint_android_scaleX; - global::Microsoft.Maui.Graphics.Resource.Styleable.Constraint_android_scaleY = global::GraphicsTester.Android.Resource.Styleable.Constraint_android_scaleY; - global::Microsoft.Maui.Graphics.Resource.Styleable.Constraint_android_transformPivotX = global::GraphicsTester.Android.Resource.Styleable.Constraint_android_transformPivotX; - global::Microsoft.Maui.Graphics.Resource.Styleable.Constraint_android_transformPivotY = global::GraphicsTester.Android.Resource.Styleable.Constraint_android_transformPivotY; - global::Microsoft.Maui.Graphics.Resource.Styleable.Constraint_android_translationX = global::GraphicsTester.Android.Resource.Styleable.Constraint_android_translationX; - global::Microsoft.Maui.Graphics.Resource.Styleable.Constraint_android_translationY = global::GraphicsTester.Android.Resource.Styleable.Constraint_android_translationY; - global::Microsoft.Maui.Graphics.Resource.Styleable.Constraint_android_translationZ = global::GraphicsTester.Android.Resource.Styleable.Constraint_android_translationZ; - global::Microsoft.Maui.Graphics.Resource.Styleable.Constraint_android_visibility = global::GraphicsTester.Android.Resource.Styleable.Constraint_android_visibility; - global::Microsoft.Maui.Graphics.Resource.Styleable.Constraint_animate_relativeTo = global::GraphicsTester.Android.Resource.Styleable.Constraint_animate_relativeTo; - global::Microsoft.Maui.Graphics.Resource.Styleable.Constraint_barrierAllowsGoneWidgets = global::GraphicsTester.Android.Resource.Styleable.Constraint_barrierAllowsGoneWidgets; - global::Microsoft.Maui.Graphics.Resource.Styleable.Constraint_barrierDirection = global::GraphicsTester.Android.Resource.Styleable.Constraint_barrierDirection; - global::Microsoft.Maui.Graphics.Resource.Styleable.Constraint_barrierMargin = global::GraphicsTester.Android.Resource.Styleable.Constraint_barrierMargin; - global::Microsoft.Maui.Graphics.Resource.Styleable.Constraint_chainUseRtl = global::GraphicsTester.Android.Resource.Styleable.Constraint_chainUseRtl; - global::Microsoft.Maui.Graphics.Resource.Styleable.Constraint_constraint_referenced_ids = global::GraphicsTester.Android.Resource.Styleable.Constraint_constraint_referenced_ids; - global::Microsoft.Maui.Graphics.Resource.Styleable.Constraint_constraint_referenced_tags = global::GraphicsTester.Android.Resource.Styleable.Constraint_constraint_referenced_tags; - global::Microsoft.Maui.Graphics.Resource.Styleable.Constraint_drawPath = global::GraphicsTester.Android.Resource.Styleable.Constraint_drawPath; - global::Microsoft.Maui.Graphics.Resource.Styleable.Constraint_flow_firstHorizontalBias = global::GraphicsTester.Android.Resource.Styleable.Constraint_flow_firstHorizontalBias; - global::Microsoft.Maui.Graphics.Resource.Styleable.Constraint_flow_firstHorizontalStyle = global::GraphicsTester.Android.Resource.Styleable.Constraint_flow_firstHorizontalStyle; - global::Microsoft.Maui.Graphics.Resource.Styleable.Constraint_flow_firstVerticalBias = global::GraphicsTester.Android.Resource.Styleable.Constraint_flow_firstVerticalBias; - global::Microsoft.Maui.Graphics.Resource.Styleable.Constraint_flow_firstVerticalStyle = global::GraphicsTester.Android.Resource.Styleable.Constraint_flow_firstVerticalStyle; - global::Microsoft.Maui.Graphics.Resource.Styleable.Constraint_flow_horizontalAlign = global::GraphicsTester.Android.Resource.Styleable.Constraint_flow_horizontalAlign; - global::Microsoft.Maui.Graphics.Resource.Styleable.Constraint_flow_horizontalBias = global::GraphicsTester.Android.Resource.Styleable.Constraint_flow_horizontalBias; - global::Microsoft.Maui.Graphics.Resource.Styleable.Constraint_flow_horizontalGap = global::GraphicsTester.Android.Resource.Styleable.Constraint_flow_horizontalGap; - global::Microsoft.Maui.Graphics.Resource.Styleable.Constraint_flow_horizontalStyle = global::GraphicsTester.Android.Resource.Styleable.Constraint_flow_horizontalStyle; - global::Microsoft.Maui.Graphics.Resource.Styleable.Constraint_flow_lastHorizontalBias = global::GraphicsTester.Android.Resource.Styleable.Constraint_flow_lastHorizontalBias; - global::Microsoft.Maui.Graphics.Resource.Styleable.Constraint_flow_lastHorizontalStyle = global::GraphicsTester.Android.Resource.Styleable.Constraint_flow_lastHorizontalStyle; - global::Microsoft.Maui.Graphics.Resource.Styleable.Constraint_flow_lastVerticalBias = global::GraphicsTester.Android.Resource.Styleable.Constraint_flow_lastVerticalBias; - global::Microsoft.Maui.Graphics.Resource.Styleable.Constraint_flow_lastVerticalStyle = global::GraphicsTester.Android.Resource.Styleable.Constraint_flow_lastVerticalStyle; - global::Microsoft.Maui.Graphics.Resource.Styleable.Constraint_flow_maxElementsWrap = global::GraphicsTester.Android.Resource.Styleable.Constraint_flow_maxElementsWrap; - global::Microsoft.Maui.Graphics.Resource.Styleable.Constraint_flow_verticalAlign = global::GraphicsTester.Android.Resource.Styleable.Constraint_flow_verticalAlign; - global::Microsoft.Maui.Graphics.Resource.Styleable.Constraint_flow_verticalBias = global::GraphicsTester.Android.Resource.Styleable.Constraint_flow_verticalBias; - global::Microsoft.Maui.Graphics.Resource.Styleable.Constraint_flow_verticalGap = global::GraphicsTester.Android.Resource.Styleable.Constraint_flow_verticalGap; - global::Microsoft.Maui.Graphics.Resource.Styleable.Constraint_flow_verticalStyle = global::GraphicsTester.Android.Resource.Styleable.Constraint_flow_verticalStyle; - global::Microsoft.Maui.Graphics.Resource.Styleable.Constraint_flow_wrapMode = global::GraphicsTester.Android.Resource.Styleable.Constraint_flow_wrapMode; - global::Microsoft.Maui.Graphics.Resource.Styleable.Constraint_layout_constrainedHeight = global::GraphicsTester.Android.Resource.Styleable.Constraint_layout_constrainedHeight; - global::Microsoft.Maui.Graphics.Resource.Styleable.Constraint_layout_constrainedWidth = global::GraphicsTester.Android.Resource.Styleable.Constraint_layout_constrainedWidth; - global::Microsoft.Maui.Graphics.Resource.Styleable.Constraint_layout_constraintBaseline_creator = global::GraphicsTester.Android.Resource.Styleable.Constraint_layout_constraintBaseline_creator; - global::Microsoft.Maui.Graphics.Resource.Styleable.Constraint_layout_constraintBaseline_toBaselineOf = global::GraphicsTester.Android.Resource.Styleable.Constraint_layout_constraintBaseline_toBaselineOf; - global::Microsoft.Maui.Graphics.Resource.Styleable.Constraint_layout_constraintBottom_creator = global::GraphicsTester.Android.Resource.Styleable.Constraint_layout_constraintBottom_creator; - global::Microsoft.Maui.Graphics.Resource.Styleable.Constraint_layout_constraintBottom_toBottomOf = global::GraphicsTester.Android.Resource.Styleable.Constraint_layout_constraintBottom_toBottomOf; - global::Microsoft.Maui.Graphics.Resource.Styleable.Constraint_layout_constraintBottom_toTopOf = global::GraphicsTester.Android.Resource.Styleable.Constraint_layout_constraintBottom_toTopOf; - global::Microsoft.Maui.Graphics.Resource.Styleable.Constraint_layout_constraintCircle = global::GraphicsTester.Android.Resource.Styleable.Constraint_layout_constraintCircle; - global::Microsoft.Maui.Graphics.Resource.Styleable.Constraint_layout_constraintCircleAngle = global::GraphicsTester.Android.Resource.Styleable.Constraint_layout_constraintCircleAngle; - global::Microsoft.Maui.Graphics.Resource.Styleable.Constraint_layout_constraintCircleRadius = global::GraphicsTester.Android.Resource.Styleable.Constraint_layout_constraintCircleRadius; - global::Microsoft.Maui.Graphics.Resource.Styleable.Constraint_layout_constraintDimensionRatio = global::GraphicsTester.Android.Resource.Styleable.Constraint_layout_constraintDimensionRatio; - global::Microsoft.Maui.Graphics.Resource.Styleable.Constraint_layout_constraintEnd_toEndOf = global::GraphicsTester.Android.Resource.Styleable.Constraint_layout_constraintEnd_toEndOf; - global::Microsoft.Maui.Graphics.Resource.Styleable.Constraint_layout_constraintEnd_toStartOf = global::GraphicsTester.Android.Resource.Styleable.Constraint_layout_constraintEnd_toStartOf; - global::Microsoft.Maui.Graphics.Resource.Styleable.Constraint_layout_constraintGuide_begin = global::GraphicsTester.Android.Resource.Styleable.Constraint_layout_constraintGuide_begin; - global::Microsoft.Maui.Graphics.Resource.Styleable.Constraint_layout_constraintGuide_end = global::GraphicsTester.Android.Resource.Styleable.Constraint_layout_constraintGuide_end; - global::Microsoft.Maui.Graphics.Resource.Styleable.Constraint_layout_constraintGuide_percent = global::GraphicsTester.Android.Resource.Styleable.Constraint_layout_constraintGuide_percent; - global::Microsoft.Maui.Graphics.Resource.Styleable.Constraint_layout_constraintHeight_default = global::GraphicsTester.Android.Resource.Styleable.Constraint_layout_constraintHeight_default; - global::Microsoft.Maui.Graphics.Resource.Styleable.Constraint_layout_constraintHeight_max = global::GraphicsTester.Android.Resource.Styleable.Constraint_layout_constraintHeight_max; - global::Microsoft.Maui.Graphics.Resource.Styleable.Constraint_layout_constraintHeight_min = global::GraphicsTester.Android.Resource.Styleable.Constraint_layout_constraintHeight_min; - global::Microsoft.Maui.Graphics.Resource.Styleable.Constraint_layout_constraintHeight_percent = global::GraphicsTester.Android.Resource.Styleable.Constraint_layout_constraintHeight_percent; - global::Microsoft.Maui.Graphics.Resource.Styleable.Constraint_layout_constraintHorizontal_bias = global::GraphicsTester.Android.Resource.Styleable.Constraint_layout_constraintHorizontal_bias; - global::Microsoft.Maui.Graphics.Resource.Styleable.Constraint_layout_constraintHorizontal_chainStyle = global::GraphicsTester.Android.Resource.Styleable.Constraint_layout_constraintHorizontal_chainStyle; - global::Microsoft.Maui.Graphics.Resource.Styleable.Constraint_layout_constraintHorizontal_weight = global::GraphicsTester.Android.Resource.Styleable.Constraint_layout_constraintHorizontal_weight; - global::Microsoft.Maui.Graphics.Resource.Styleable.Constraint_layout_constraintLeft_creator = global::GraphicsTester.Android.Resource.Styleable.Constraint_layout_constraintLeft_creator; - global::Microsoft.Maui.Graphics.Resource.Styleable.Constraint_layout_constraintLeft_toLeftOf = global::GraphicsTester.Android.Resource.Styleable.Constraint_layout_constraintLeft_toLeftOf; - global::Microsoft.Maui.Graphics.Resource.Styleable.Constraint_layout_constraintLeft_toRightOf = global::GraphicsTester.Android.Resource.Styleable.Constraint_layout_constraintLeft_toRightOf; - global::Microsoft.Maui.Graphics.Resource.Styleable.Constraint_layout_constraintRight_creator = global::GraphicsTester.Android.Resource.Styleable.Constraint_layout_constraintRight_creator; - global::Microsoft.Maui.Graphics.Resource.Styleable.Constraint_layout_constraintRight_toLeftOf = global::GraphicsTester.Android.Resource.Styleable.Constraint_layout_constraintRight_toLeftOf; - global::Microsoft.Maui.Graphics.Resource.Styleable.Constraint_layout_constraintRight_toRightOf = global::GraphicsTester.Android.Resource.Styleable.Constraint_layout_constraintRight_toRightOf; - global::Microsoft.Maui.Graphics.Resource.Styleable.Constraint_layout_constraintStart_toEndOf = global::GraphicsTester.Android.Resource.Styleable.Constraint_layout_constraintStart_toEndOf; - global::Microsoft.Maui.Graphics.Resource.Styleable.Constraint_layout_constraintStart_toStartOf = global::GraphicsTester.Android.Resource.Styleable.Constraint_layout_constraintStart_toStartOf; - global::Microsoft.Maui.Graphics.Resource.Styleable.Constraint_layout_constraintTag = global::GraphicsTester.Android.Resource.Styleable.Constraint_layout_constraintTag; - global::Microsoft.Maui.Graphics.Resource.Styleable.Constraint_layout_constraintTop_creator = global::GraphicsTester.Android.Resource.Styleable.Constraint_layout_constraintTop_creator; - global::Microsoft.Maui.Graphics.Resource.Styleable.Constraint_layout_constraintTop_toBottomOf = global::GraphicsTester.Android.Resource.Styleable.Constraint_layout_constraintTop_toBottomOf; - global::Microsoft.Maui.Graphics.Resource.Styleable.Constraint_layout_constraintTop_toTopOf = global::GraphicsTester.Android.Resource.Styleable.Constraint_layout_constraintTop_toTopOf; - global::Microsoft.Maui.Graphics.Resource.Styleable.Constraint_layout_constraintVertical_bias = global::GraphicsTester.Android.Resource.Styleable.Constraint_layout_constraintVertical_bias; - global::Microsoft.Maui.Graphics.Resource.Styleable.Constraint_layout_constraintVertical_chainStyle = global::GraphicsTester.Android.Resource.Styleable.Constraint_layout_constraintVertical_chainStyle; - global::Microsoft.Maui.Graphics.Resource.Styleable.Constraint_layout_constraintVertical_weight = global::GraphicsTester.Android.Resource.Styleable.Constraint_layout_constraintVertical_weight; - global::Microsoft.Maui.Graphics.Resource.Styleable.Constraint_layout_constraintWidth_default = global::GraphicsTester.Android.Resource.Styleable.Constraint_layout_constraintWidth_default; - global::Microsoft.Maui.Graphics.Resource.Styleable.Constraint_layout_constraintWidth_max = global::GraphicsTester.Android.Resource.Styleable.Constraint_layout_constraintWidth_max; - global::Microsoft.Maui.Graphics.Resource.Styleable.Constraint_layout_constraintWidth_min = global::GraphicsTester.Android.Resource.Styleable.Constraint_layout_constraintWidth_min; - global::Microsoft.Maui.Graphics.Resource.Styleable.Constraint_layout_constraintWidth_percent = global::GraphicsTester.Android.Resource.Styleable.Constraint_layout_constraintWidth_percent; - global::Microsoft.Maui.Graphics.Resource.Styleable.Constraint_layout_editor_absoluteX = global::GraphicsTester.Android.Resource.Styleable.Constraint_layout_editor_absoluteX; - global::Microsoft.Maui.Graphics.Resource.Styleable.Constraint_layout_editor_absoluteY = global::GraphicsTester.Android.Resource.Styleable.Constraint_layout_editor_absoluteY; - global::Microsoft.Maui.Graphics.Resource.Styleable.Constraint_layout_goneMarginBottom = global::GraphicsTester.Android.Resource.Styleable.Constraint_layout_goneMarginBottom; - global::Microsoft.Maui.Graphics.Resource.Styleable.Constraint_layout_goneMarginEnd = global::GraphicsTester.Android.Resource.Styleable.Constraint_layout_goneMarginEnd; - global::Microsoft.Maui.Graphics.Resource.Styleable.Constraint_layout_goneMarginLeft = global::GraphicsTester.Android.Resource.Styleable.Constraint_layout_goneMarginLeft; - global::Microsoft.Maui.Graphics.Resource.Styleable.Constraint_layout_goneMarginRight = global::GraphicsTester.Android.Resource.Styleable.Constraint_layout_goneMarginRight; - global::Microsoft.Maui.Graphics.Resource.Styleable.Constraint_layout_goneMarginStart = global::GraphicsTester.Android.Resource.Styleable.Constraint_layout_goneMarginStart; - global::Microsoft.Maui.Graphics.Resource.Styleable.Constraint_layout_goneMarginTop = global::GraphicsTester.Android.Resource.Styleable.Constraint_layout_goneMarginTop; - global::Microsoft.Maui.Graphics.Resource.Styleable.Constraint_motionProgress = global::GraphicsTester.Android.Resource.Styleable.Constraint_motionProgress; - global::Microsoft.Maui.Graphics.Resource.Styleable.Constraint_motionStagger = global::GraphicsTester.Android.Resource.Styleable.Constraint_motionStagger; - global::Microsoft.Maui.Graphics.Resource.Styleable.Constraint_pathMotionArc = global::GraphicsTester.Android.Resource.Styleable.Constraint_pathMotionArc; - global::Microsoft.Maui.Graphics.Resource.Styleable.Constraint_pivotAnchor = global::GraphicsTester.Android.Resource.Styleable.Constraint_pivotAnchor; - global::Microsoft.Maui.Graphics.Resource.Styleable.Constraint_transitionEasing = global::GraphicsTester.Android.Resource.Styleable.Constraint_transitionEasing; - global::Microsoft.Maui.Graphics.Resource.Styleable.Constraint_transitionPathRotate = global::GraphicsTester.Android.Resource.Styleable.Constraint_transitionPathRotate; - global::Microsoft.Maui.Graphics.Resource.Styleable.Constraint_visibilityMode = global::GraphicsTester.Android.Resource.Styleable.Constraint_visibilityMode; - global::Microsoft.Maui.Graphics.Resource.Styleable.CoordinatorLayout = global::GraphicsTester.Android.Resource.Styleable.CoordinatorLayout; - global::Microsoft.Maui.Graphics.Resource.Styleable.CoordinatorLayout_keylines = global::GraphicsTester.Android.Resource.Styleable.CoordinatorLayout_keylines; - global::Microsoft.Maui.Graphics.Resource.Styleable.CoordinatorLayout_Layout = global::GraphicsTester.Android.Resource.Styleable.CoordinatorLayout_Layout; - global::Microsoft.Maui.Graphics.Resource.Styleable.CoordinatorLayout_Layout_android_layout_gravity = global::GraphicsTester.Android.Resource.Styleable.CoordinatorLayout_Layout_android_layout_gravity; - global::Microsoft.Maui.Graphics.Resource.Styleable.CoordinatorLayout_Layout_layout_anchor = global::GraphicsTester.Android.Resource.Styleable.CoordinatorLayout_Layout_layout_anchor; - global::Microsoft.Maui.Graphics.Resource.Styleable.CoordinatorLayout_Layout_layout_anchorGravity = global::GraphicsTester.Android.Resource.Styleable.CoordinatorLayout_Layout_layout_anchorGravity; - global::Microsoft.Maui.Graphics.Resource.Styleable.CoordinatorLayout_Layout_layout_behavior = global::GraphicsTester.Android.Resource.Styleable.CoordinatorLayout_Layout_layout_behavior; - global::Microsoft.Maui.Graphics.Resource.Styleable.CoordinatorLayout_Layout_layout_dodgeInsetEdges = global::GraphicsTester.Android.Resource.Styleable.CoordinatorLayout_Layout_layout_dodgeInsetEdges; - global::Microsoft.Maui.Graphics.Resource.Styleable.CoordinatorLayout_Layout_layout_insetEdge = global::GraphicsTester.Android.Resource.Styleable.CoordinatorLayout_Layout_layout_insetEdge; - global::Microsoft.Maui.Graphics.Resource.Styleable.CoordinatorLayout_Layout_layout_keyline = global::GraphicsTester.Android.Resource.Styleable.CoordinatorLayout_Layout_layout_keyline; - global::Microsoft.Maui.Graphics.Resource.Styleable.CoordinatorLayout_statusBarBackground = global::GraphicsTester.Android.Resource.Styleable.CoordinatorLayout_statusBarBackground; - global::Microsoft.Maui.Graphics.Resource.Styleable.CustomAttribute = global::GraphicsTester.Android.Resource.Styleable.CustomAttribute; - global::Microsoft.Maui.Graphics.Resource.Styleable.CustomAttribute_attributeName = global::GraphicsTester.Android.Resource.Styleable.CustomAttribute_attributeName; - global::Microsoft.Maui.Graphics.Resource.Styleable.CustomAttribute_customBoolean = global::GraphicsTester.Android.Resource.Styleable.CustomAttribute_customBoolean; - global::Microsoft.Maui.Graphics.Resource.Styleable.CustomAttribute_customColorDrawableValue = global::GraphicsTester.Android.Resource.Styleable.CustomAttribute_customColorDrawableValue; - global::Microsoft.Maui.Graphics.Resource.Styleable.CustomAttribute_customColorValue = global::GraphicsTester.Android.Resource.Styleable.CustomAttribute_customColorValue; - global::Microsoft.Maui.Graphics.Resource.Styleable.CustomAttribute_customDimension = global::GraphicsTester.Android.Resource.Styleable.CustomAttribute_customDimension; - global::Microsoft.Maui.Graphics.Resource.Styleable.CustomAttribute_customFloatValue = global::GraphicsTester.Android.Resource.Styleable.CustomAttribute_customFloatValue; - global::Microsoft.Maui.Graphics.Resource.Styleable.CustomAttribute_customIntegerValue = global::GraphicsTester.Android.Resource.Styleable.CustomAttribute_customIntegerValue; - global::Microsoft.Maui.Graphics.Resource.Styleable.CustomAttribute_customPixelDimension = global::GraphicsTester.Android.Resource.Styleable.CustomAttribute_customPixelDimension; - global::Microsoft.Maui.Graphics.Resource.Styleable.CustomAttribute_customStringValue = global::GraphicsTester.Android.Resource.Styleable.CustomAttribute_customStringValue; - global::Microsoft.Maui.Graphics.Resource.Styleable.DrawerArrowToggle = global::GraphicsTester.Android.Resource.Styleable.DrawerArrowToggle; - global::Microsoft.Maui.Graphics.Resource.Styleable.DrawerArrowToggle_arrowHeadLength = global::GraphicsTester.Android.Resource.Styleable.DrawerArrowToggle_arrowHeadLength; - global::Microsoft.Maui.Graphics.Resource.Styleable.DrawerArrowToggle_arrowShaftLength = global::GraphicsTester.Android.Resource.Styleable.DrawerArrowToggle_arrowShaftLength; - global::Microsoft.Maui.Graphics.Resource.Styleable.DrawerArrowToggle_barLength = global::GraphicsTester.Android.Resource.Styleable.DrawerArrowToggle_barLength; - global::Microsoft.Maui.Graphics.Resource.Styleable.DrawerArrowToggle_color = global::GraphicsTester.Android.Resource.Styleable.DrawerArrowToggle_color; - global::Microsoft.Maui.Graphics.Resource.Styleable.DrawerArrowToggle_drawableSize = global::GraphicsTester.Android.Resource.Styleable.DrawerArrowToggle_drawableSize; - global::Microsoft.Maui.Graphics.Resource.Styleable.DrawerArrowToggle_gapBetweenBars = global::GraphicsTester.Android.Resource.Styleable.DrawerArrowToggle_gapBetweenBars; - global::Microsoft.Maui.Graphics.Resource.Styleable.DrawerArrowToggle_spinBars = global::GraphicsTester.Android.Resource.Styleable.DrawerArrowToggle_spinBars; - global::Microsoft.Maui.Graphics.Resource.Styleable.DrawerArrowToggle_thickness = global::GraphicsTester.Android.Resource.Styleable.DrawerArrowToggle_thickness; - global::Microsoft.Maui.Graphics.Resource.Styleable.DrawerLayout = global::GraphicsTester.Android.Resource.Styleable.DrawerLayout; - global::Microsoft.Maui.Graphics.Resource.Styleable.DrawerLayout_elevation = global::GraphicsTester.Android.Resource.Styleable.DrawerLayout_elevation; - global::Microsoft.Maui.Graphics.Resource.Styleable.ExtendedFloatingActionButton = global::GraphicsTester.Android.Resource.Styleable.ExtendedFloatingActionButton; - global::Microsoft.Maui.Graphics.Resource.Styleable.ExtendedFloatingActionButton_Behavior_Layout = global::GraphicsTester.Android.Resource.Styleable.ExtendedFloatingActionButton_Behavior_Layout; - global::Microsoft.Maui.Graphics.Resource.Styleable.ExtendedFloatingActionButton_Behavior_Layout_behavior_autoHide = global::GraphicsTester.Android.Resource.Styleable.ExtendedFloatingActionButton_Behavior_Layout_behavior_autoHide; - global::Microsoft.Maui.Graphics.Resource.Styleable.ExtendedFloatingActionButton_Behavior_Layout_behavior_autoShrink = global::GraphicsTester.Android.Resource.Styleable.ExtendedFloatingActionButton_Behavior_Layout_behavior_autoShrink; - global::Microsoft.Maui.Graphics.Resource.Styleable.ExtendedFloatingActionButton_collapsedSize = global::GraphicsTester.Android.Resource.Styleable.ExtendedFloatingActionButton_collapsedSize; - global::Microsoft.Maui.Graphics.Resource.Styleable.ExtendedFloatingActionButton_elevation = global::GraphicsTester.Android.Resource.Styleable.ExtendedFloatingActionButton_elevation; - global::Microsoft.Maui.Graphics.Resource.Styleable.ExtendedFloatingActionButton_extendMotionSpec = global::GraphicsTester.Android.Resource.Styleable.ExtendedFloatingActionButton_extendMotionSpec; - global::Microsoft.Maui.Graphics.Resource.Styleable.ExtendedFloatingActionButton_hideMotionSpec = global::GraphicsTester.Android.Resource.Styleable.ExtendedFloatingActionButton_hideMotionSpec; - global::Microsoft.Maui.Graphics.Resource.Styleable.ExtendedFloatingActionButton_showMotionSpec = global::GraphicsTester.Android.Resource.Styleable.ExtendedFloatingActionButton_showMotionSpec; - global::Microsoft.Maui.Graphics.Resource.Styleable.ExtendedFloatingActionButton_shrinkMotionSpec = global::GraphicsTester.Android.Resource.Styleable.ExtendedFloatingActionButton_shrinkMotionSpec; - global::Microsoft.Maui.Graphics.Resource.Styleable.FloatingActionButton = global::GraphicsTester.Android.Resource.Styleable.FloatingActionButton; - global::Microsoft.Maui.Graphics.Resource.Styleable.FloatingActionButton_android_enabled = global::GraphicsTester.Android.Resource.Styleable.FloatingActionButton_android_enabled; - global::Microsoft.Maui.Graphics.Resource.Styleable.FloatingActionButton_backgroundTint = global::GraphicsTester.Android.Resource.Styleable.FloatingActionButton_backgroundTint; - global::Microsoft.Maui.Graphics.Resource.Styleable.FloatingActionButton_backgroundTintMode = global::GraphicsTester.Android.Resource.Styleable.FloatingActionButton_backgroundTintMode; - global::Microsoft.Maui.Graphics.Resource.Styleable.FloatingActionButton_Behavior_Layout = global::GraphicsTester.Android.Resource.Styleable.FloatingActionButton_Behavior_Layout; - global::Microsoft.Maui.Graphics.Resource.Styleable.FloatingActionButton_Behavior_Layout_behavior_autoHide = global::GraphicsTester.Android.Resource.Styleable.FloatingActionButton_Behavior_Layout_behavior_autoHide; - global::Microsoft.Maui.Graphics.Resource.Styleable.FloatingActionButton_borderWidth = global::GraphicsTester.Android.Resource.Styleable.FloatingActionButton_borderWidth; - global::Microsoft.Maui.Graphics.Resource.Styleable.FloatingActionButton_elevation = global::GraphicsTester.Android.Resource.Styleable.FloatingActionButton_elevation; - global::Microsoft.Maui.Graphics.Resource.Styleable.FloatingActionButton_ensureMinTouchTargetSize = global::GraphicsTester.Android.Resource.Styleable.FloatingActionButton_ensureMinTouchTargetSize; - global::Microsoft.Maui.Graphics.Resource.Styleable.FloatingActionButton_fabCustomSize = global::GraphicsTester.Android.Resource.Styleable.FloatingActionButton_fabCustomSize; - global::Microsoft.Maui.Graphics.Resource.Styleable.FloatingActionButton_fabSize = global::GraphicsTester.Android.Resource.Styleable.FloatingActionButton_fabSize; - global::Microsoft.Maui.Graphics.Resource.Styleable.FloatingActionButton_hideMotionSpec = global::GraphicsTester.Android.Resource.Styleable.FloatingActionButton_hideMotionSpec; - global::Microsoft.Maui.Graphics.Resource.Styleable.FloatingActionButton_hoveredFocusedTranslationZ = global::GraphicsTester.Android.Resource.Styleable.FloatingActionButton_hoveredFocusedTranslationZ; - global::Microsoft.Maui.Graphics.Resource.Styleable.FloatingActionButton_maxImageSize = global::GraphicsTester.Android.Resource.Styleable.FloatingActionButton_maxImageSize; - global::Microsoft.Maui.Graphics.Resource.Styleable.FloatingActionButton_pressedTranslationZ = global::GraphicsTester.Android.Resource.Styleable.FloatingActionButton_pressedTranslationZ; - global::Microsoft.Maui.Graphics.Resource.Styleable.FloatingActionButton_rippleColor = global::GraphicsTester.Android.Resource.Styleable.FloatingActionButton_rippleColor; - global::Microsoft.Maui.Graphics.Resource.Styleable.FloatingActionButton_shapeAppearance = global::GraphicsTester.Android.Resource.Styleable.FloatingActionButton_shapeAppearance; - global::Microsoft.Maui.Graphics.Resource.Styleable.FloatingActionButton_shapeAppearanceOverlay = global::GraphicsTester.Android.Resource.Styleable.FloatingActionButton_shapeAppearanceOverlay; - global::Microsoft.Maui.Graphics.Resource.Styleable.FloatingActionButton_showMotionSpec = global::GraphicsTester.Android.Resource.Styleable.FloatingActionButton_showMotionSpec; - global::Microsoft.Maui.Graphics.Resource.Styleable.FloatingActionButton_useCompatPadding = global::GraphicsTester.Android.Resource.Styleable.FloatingActionButton_useCompatPadding; - global::Microsoft.Maui.Graphics.Resource.Styleable.FlowLayout = global::GraphicsTester.Android.Resource.Styleable.FlowLayout; - global::Microsoft.Maui.Graphics.Resource.Styleable.FlowLayout_itemSpacing = global::GraphicsTester.Android.Resource.Styleable.FlowLayout_itemSpacing; - global::Microsoft.Maui.Graphics.Resource.Styleable.FlowLayout_lineSpacing = global::GraphicsTester.Android.Resource.Styleable.FlowLayout_lineSpacing; - global::Microsoft.Maui.Graphics.Resource.Styleable.FontFamily = global::GraphicsTester.Android.Resource.Styleable.FontFamily; - global::Microsoft.Maui.Graphics.Resource.Styleable.FontFamilyFont = global::GraphicsTester.Android.Resource.Styleable.FontFamilyFont; - global::Microsoft.Maui.Graphics.Resource.Styleable.FontFamilyFont_android_font = global::GraphicsTester.Android.Resource.Styleable.FontFamilyFont_android_font; - global::Microsoft.Maui.Graphics.Resource.Styleable.FontFamilyFont_android_fontStyle = global::GraphicsTester.Android.Resource.Styleable.FontFamilyFont_android_fontStyle; - global::Microsoft.Maui.Graphics.Resource.Styleable.FontFamilyFont_android_fontVariationSettings = global::GraphicsTester.Android.Resource.Styleable.FontFamilyFont_android_fontVariationSettings; - global::Microsoft.Maui.Graphics.Resource.Styleable.FontFamilyFont_android_fontWeight = global::GraphicsTester.Android.Resource.Styleable.FontFamilyFont_android_fontWeight; - global::Microsoft.Maui.Graphics.Resource.Styleable.FontFamilyFont_android_ttcIndex = global::GraphicsTester.Android.Resource.Styleable.FontFamilyFont_android_ttcIndex; - global::Microsoft.Maui.Graphics.Resource.Styleable.FontFamilyFont_font = global::GraphicsTester.Android.Resource.Styleable.FontFamilyFont_font; - global::Microsoft.Maui.Graphics.Resource.Styleable.FontFamilyFont_fontStyle = global::GraphicsTester.Android.Resource.Styleable.FontFamilyFont_fontStyle; - global::Microsoft.Maui.Graphics.Resource.Styleable.FontFamilyFont_fontVariationSettings = global::GraphicsTester.Android.Resource.Styleable.FontFamilyFont_fontVariationSettings; - global::Microsoft.Maui.Graphics.Resource.Styleable.FontFamilyFont_fontWeight = global::GraphicsTester.Android.Resource.Styleable.FontFamilyFont_fontWeight; - global::Microsoft.Maui.Graphics.Resource.Styleable.FontFamilyFont_ttcIndex = global::GraphicsTester.Android.Resource.Styleable.FontFamilyFont_ttcIndex; - global::Microsoft.Maui.Graphics.Resource.Styleable.FontFamily_fontProviderAuthority = global::GraphicsTester.Android.Resource.Styleable.FontFamily_fontProviderAuthority; - global::Microsoft.Maui.Graphics.Resource.Styleable.FontFamily_fontProviderCerts = global::GraphicsTester.Android.Resource.Styleable.FontFamily_fontProviderCerts; - global::Microsoft.Maui.Graphics.Resource.Styleable.FontFamily_fontProviderFetchStrategy = global::GraphicsTester.Android.Resource.Styleable.FontFamily_fontProviderFetchStrategy; - global::Microsoft.Maui.Graphics.Resource.Styleable.FontFamily_fontProviderFetchTimeout = global::GraphicsTester.Android.Resource.Styleable.FontFamily_fontProviderFetchTimeout; - global::Microsoft.Maui.Graphics.Resource.Styleable.FontFamily_fontProviderPackage = global::GraphicsTester.Android.Resource.Styleable.FontFamily_fontProviderPackage; - global::Microsoft.Maui.Graphics.Resource.Styleable.FontFamily_fontProviderQuery = global::GraphicsTester.Android.Resource.Styleable.FontFamily_fontProviderQuery; - global::Microsoft.Maui.Graphics.Resource.Styleable.ForegroundLinearLayout = global::GraphicsTester.Android.Resource.Styleable.ForegroundLinearLayout; - global::Microsoft.Maui.Graphics.Resource.Styleable.ForegroundLinearLayout_android_foreground = global::GraphicsTester.Android.Resource.Styleable.ForegroundLinearLayout_android_foreground; - global::Microsoft.Maui.Graphics.Resource.Styleable.ForegroundLinearLayout_android_foregroundGravity = global::GraphicsTester.Android.Resource.Styleable.ForegroundLinearLayout_android_foregroundGravity; - global::Microsoft.Maui.Graphics.Resource.Styleable.ForegroundLinearLayout_foregroundInsidePadding = global::GraphicsTester.Android.Resource.Styleable.ForegroundLinearLayout_foregroundInsidePadding; - global::Microsoft.Maui.Graphics.Resource.Styleable.Fragment = global::GraphicsTester.Android.Resource.Styleable.Fragment; - global::Microsoft.Maui.Graphics.Resource.Styleable.FragmentContainerView = global::GraphicsTester.Android.Resource.Styleable.FragmentContainerView; - global::Microsoft.Maui.Graphics.Resource.Styleable.FragmentContainerView_android_name = global::GraphicsTester.Android.Resource.Styleable.FragmentContainerView_android_name; - global::Microsoft.Maui.Graphics.Resource.Styleable.FragmentContainerView_android_tag = global::GraphicsTester.Android.Resource.Styleable.FragmentContainerView_android_tag; - global::Microsoft.Maui.Graphics.Resource.Styleable.Fragment_android_id = global::GraphicsTester.Android.Resource.Styleable.Fragment_android_id; - global::Microsoft.Maui.Graphics.Resource.Styleable.Fragment_android_name = global::GraphicsTester.Android.Resource.Styleable.Fragment_android_name; - global::Microsoft.Maui.Graphics.Resource.Styleable.Fragment_android_tag = global::GraphicsTester.Android.Resource.Styleable.Fragment_android_tag; - global::Microsoft.Maui.Graphics.Resource.Styleable.GradientColor = global::GraphicsTester.Android.Resource.Styleable.GradientColor; - global::Microsoft.Maui.Graphics.Resource.Styleable.GradientColorItem = global::GraphicsTester.Android.Resource.Styleable.GradientColorItem; - global::Microsoft.Maui.Graphics.Resource.Styleable.GradientColorItem_android_color = global::GraphicsTester.Android.Resource.Styleable.GradientColorItem_android_color; - global::Microsoft.Maui.Graphics.Resource.Styleable.GradientColorItem_android_offset = global::GraphicsTester.Android.Resource.Styleable.GradientColorItem_android_offset; - global::Microsoft.Maui.Graphics.Resource.Styleable.GradientColor_android_centerColor = global::GraphicsTester.Android.Resource.Styleable.GradientColor_android_centerColor; - global::Microsoft.Maui.Graphics.Resource.Styleable.GradientColor_android_centerX = global::GraphicsTester.Android.Resource.Styleable.GradientColor_android_centerX; - global::Microsoft.Maui.Graphics.Resource.Styleable.GradientColor_android_centerY = global::GraphicsTester.Android.Resource.Styleable.GradientColor_android_centerY; - global::Microsoft.Maui.Graphics.Resource.Styleable.GradientColor_android_endColor = global::GraphicsTester.Android.Resource.Styleable.GradientColor_android_endColor; - global::Microsoft.Maui.Graphics.Resource.Styleable.GradientColor_android_endX = global::GraphicsTester.Android.Resource.Styleable.GradientColor_android_endX; - global::Microsoft.Maui.Graphics.Resource.Styleable.GradientColor_android_endY = global::GraphicsTester.Android.Resource.Styleable.GradientColor_android_endY; - global::Microsoft.Maui.Graphics.Resource.Styleable.GradientColor_android_gradientRadius = global::GraphicsTester.Android.Resource.Styleable.GradientColor_android_gradientRadius; - global::Microsoft.Maui.Graphics.Resource.Styleable.GradientColor_android_startColor = global::GraphicsTester.Android.Resource.Styleable.GradientColor_android_startColor; - global::Microsoft.Maui.Graphics.Resource.Styleable.GradientColor_android_startX = global::GraphicsTester.Android.Resource.Styleable.GradientColor_android_startX; - global::Microsoft.Maui.Graphics.Resource.Styleable.GradientColor_android_startY = global::GraphicsTester.Android.Resource.Styleable.GradientColor_android_startY; - global::Microsoft.Maui.Graphics.Resource.Styleable.GradientColor_android_tileMode = global::GraphicsTester.Android.Resource.Styleable.GradientColor_android_tileMode; - global::Microsoft.Maui.Graphics.Resource.Styleable.GradientColor_android_type = global::GraphicsTester.Android.Resource.Styleable.GradientColor_android_type; - global::Microsoft.Maui.Graphics.Resource.Styleable.ImageFilterView = global::GraphicsTester.Android.Resource.Styleable.ImageFilterView; - global::Microsoft.Maui.Graphics.Resource.Styleable.ImageFilterView_altSrc = global::GraphicsTester.Android.Resource.Styleable.ImageFilterView_altSrc; - global::Microsoft.Maui.Graphics.Resource.Styleable.ImageFilterView_brightness = global::GraphicsTester.Android.Resource.Styleable.ImageFilterView_brightness; - global::Microsoft.Maui.Graphics.Resource.Styleable.ImageFilterView_contrast = global::GraphicsTester.Android.Resource.Styleable.ImageFilterView_contrast; - global::Microsoft.Maui.Graphics.Resource.Styleable.ImageFilterView_crossfade = global::GraphicsTester.Android.Resource.Styleable.ImageFilterView_crossfade; - global::Microsoft.Maui.Graphics.Resource.Styleable.ImageFilterView_overlay = global::GraphicsTester.Android.Resource.Styleable.ImageFilterView_overlay; - global::Microsoft.Maui.Graphics.Resource.Styleable.ImageFilterView_round = global::GraphicsTester.Android.Resource.Styleable.ImageFilterView_round; - global::Microsoft.Maui.Graphics.Resource.Styleable.ImageFilterView_roundPercent = global::GraphicsTester.Android.Resource.Styleable.ImageFilterView_roundPercent; - global::Microsoft.Maui.Graphics.Resource.Styleable.ImageFilterView_saturation = global::GraphicsTester.Android.Resource.Styleable.ImageFilterView_saturation; - global::Microsoft.Maui.Graphics.Resource.Styleable.ImageFilterView_warmth = global::GraphicsTester.Android.Resource.Styleable.ImageFilterView_warmth; - global::Microsoft.Maui.Graphics.Resource.Styleable.Insets = global::GraphicsTester.Android.Resource.Styleable.Insets; - global::Microsoft.Maui.Graphics.Resource.Styleable.Insets_paddingBottomSystemWindowInsets = global::GraphicsTester.Android.Resource.Styleable.Insets_paddingBottomSystemWindowInsets; - global::Microsoft.Maui.Graphics.Resource.Styleable.Insets_paddingLeftSystemWindowInsets = global::GraphicsTester.Android.Resource.Styleable.Insets_paddingLeftSystemWindowInsets; - global::Microsoft.Maui.Graphics.Resource.Styleable.Insets_paddingRightSystemWindowInsets = global::GraphicsTester.Android.Resource.Styleable.Insets_paddingRightSystemWindowInsets; - global::Microsoft.Maui.Graphics.Resource.Styleable.KeyAttribute = global::GraphicsTester.Android.Resource.Styleable.KeyAttribute; - global::Microsoft.Maui.Graphics.Resource.Styleable.KeyAttribute_android_alpha = global::GraphicsTester.Android.Resource.Styleable.KeyAttribute_android_alpha; - global::Microsoft.Maui.Graphics.Resource.Styleable.KeyAttribute_android_elevation = global::GraphicsTester.Android.Resource.Styleable.KeyAttribute_android_elevation; - global::Microsoft.Maui.Graphics.Resource.Styleable.KeyAttribute_android_rotation = global::GraphicsTester.Android.Resource.Styleable.KeyAttribute_android_rotation; - global::Microsoft.Maui.Graphics.Resource.Styleable.KeyAttribute_android_rotationX = global::GraphicsTester.Android.Resource.Styleable.KeyAttribute_android_rotationX; - global::Microsoft.Maui.Graphics.Resource.Styleable.KeyAttribute_android_rotationY = global::GraphicsTester.Android.Resource.Styleable.KeyAttribute_android_rotationY; - global::Microsoft.Maui.Graphics.Resource.Styleable.KeyAttribute_android_scaleX = global::GraphicsTester.Android.Resource.Styleable.KeyAttribute_android_scaleX; - global::Microsoft.Maui.Graphics.Resource.Styleable.KeyAttribute_android_scaleY = global::GraphicsTester.Android.Resource.Styleable.KeyAttribute_android_scaleY; - global::Microsoft.Maui.Graphics.Resource.Styleable.KeyAttribute_android_transformPivotX = global::GraphicsTester.Android.Resource.Styleable.KeyAttribute_android_transformPivotX; - global::Microsoft.Maui.Graphics.Resource.Styleable.KeyAttribute_android_transformPivotY = global::GraphicsTester.Android.Resource.Styleable.KeyAttribute_android_transformPivotY; - global::Microsoft.Maui.Graphics.Resource.Styleable.KeyAttribute_android_translationX = global::GraphicsTester.Android.Resource.Styleable.KeyAttribute_android_translationX; - global::Microsoft.Maui.Graphics.Resource.Styleable.KeyAttribute_android_translationY = global::GraphicsTester.Android.Resource.Styleable.KeyAttribute_android_translationY; - global::Microsoft.Maui.Graphics.Resource.Styleable.KeyAttribute_android_translationZ = global::GraphicsTester.Android.Resource.Styleable.KeyAttribute_android_translationZ; - global::Microsoft.Maui.Graphics.Resource.Styleable.KeyAttribute_curveFit = global::GraphicsTester.Android.Resource.Styleable.KeyAttribute_curveFit; - global::Microsoft.Maui.Graphics.Resource.Styleable.KeyAttribute_framePosition = global::GraphicsTester.Android.Resource.Styleable.KeyAttribute_framePosition; - global::Microsoft.Maui.Graphics.Resource.Styleable.KeyAttribute_motionProgress = global::GraphicsTester.Android.Resource.Styleable.KeyAttribute_motionProgress; - global::Microsoft.Maui.Graphics.Resource.Styleable.KeyAttribute_motionTarget = global::GraphicsTester.Android.Resource.Styleable.KeyAttribute_motionTarget; - global::Microsoft.Maui.Graphics.Resource.Styleable.KeyAttribute_transitionEasing = global::GraphicsTester.Android.Resource.Styleable.KeyAttribute_transitionEasing; - global::Microsoft.Maui.Graphics.Resource.Styleable.KeyAttribute_transitionPathRotate = global::GraphicsTester.Android.Resource.Styleable.KeyAttribute_transitionPathRotate; - global::Microsoft.Maui.Graphics.Resource.Styleable.KeyCycle = global::GraphicsTester.Android.Resource.Styleable.KeyCycle; - global::Microsoft.Maui.Graphics.Resource.Styleable.KeyCycle_android_alpha = global::GraphicsTester.Android.Resource.Styleable.KeyCycle_android_alpha; - global::Microsoft.Maui.Graphics.Resource.Styleable.KeyCycle_android_elevation = global::GraphicsTester.Android.Resource.Styleable.KeyCycle_android_elevation; - global::Microsoft.Maui.Graphics.Resource.Styleable.KeyCycle_android_rotation = global::GraphicsTester.Android.Resource.Styleable.KeyCycle_android_rotation; - global::Microsoft.Maui.Graphics.Resource.Styleable.KeyCycle_android_rotationX = global::GraphicsTester.Android.Resource.Styleable.KeyCycle_android_rotationX; - global::Microsoft.Maui.Graphics.Resource.Styleable.KeyCycle_android_rotationY = global::GraphicsTester.Android.Resource.Styleable.KeyCycle_android_rotationY; - global::Microsoft.Maui.Graphics.Resource.Styleable.KeyCycle_android_scaleX = global::GraphicsTester.Android.Resource.Styleable.KeyCycle_android_scaleX; - global::Microsoft.Maui.Graphics.Resource.Styleable.KeyCycle_android_scaleY = global::GraphicsTester.Android.Resource.Styleable.KeyCycle_android_scaleY; - global::Microsoft.Maui.Graphics.Resource.Styleable.KeyCycle_android_translationX = global::GraphicsTester.Android.Resource.Styleable.KeyCycle_android_translationX; - global::Microsoft.Maui.Graphics.Resource.Styleable.KeyCycle_android_translationY = global::GraphicsTester.Android.Resource.Styleable.KeyCycle_android_translationY; - global::Microsoft.Maui.Graphics.Resource.Styleable.KeyCycle_android_translationZ = global::GraphicsTester.Android.Resource.Styleable.KeyCycle_android_translationZ; - global::Microsoft.Maui.Graphics.Resource.Styleable.KeyCycle_curveFit = global::GraphicsTester.Android.Resource.Styleable.KeyCycle_curveFit; - global::Microsoft.Maui.Graphics.Resource.Styleable.KeyCycle_framePosition = global::GraphicsTester.Android.Resource.Styleable.KeyCycle_framePosition; - global::Microsoft.Maui.Graphics.Resource.Styleable.KeyCycle_motionProgress = global::GraphicsTester.Android.Resource.Styleable.KeyCycle_motionProgress; - global::Microsoft.Maui.Graphics.Resource.Styleable.KeyCycle_motionTarget = global::GraphicsTester.Android.Resource.Styleable.KeyCycle_motionTarget; - global::Microsoft.Maui.Graphics.Resource.Styleable.KeyCycle_transitionEasing = global::GraphicsTester.Android.Resource.Styleable.KeyCycle_transitionEasing; - global::Microsoft.Maui.Graphics.Resource.Styleable.KeyCycle_transitionPathRotate = global::GraphicsTester.Android.Resource.Styleable.KeyCycle_transitionPathRotate; - global::Microsoft.Maui.Graphics.Resource.Styleable.KeyCycle_waveOffset = global::GraphicsTester.Android.Resource.Styleable.KeyCycle_waveOffset; - global::Microsoft.Maui.Graphics.Resource.Styleable.KeyCycle_wavePeriod = global::GraphicsTester.Android.Resource.Styleable.KeyCycle_wavePeriod; - global::Microsoft.Maui.Graphics.Resource.Styleable.KeyCycle_waveShape = global::GraphicsTester.Android.Resource.Styleable.KeyCycle_waveShape; - global::Microsoft.Maui.Graphics.Resource.Styleable.KeyCycle_waveVariesBy = global::GraphicsTester.Android.Resource.Styleable.KeyCycle_waveVariesBy; - global::Microsoft.Maui.Graphics.Resource.Styleable.KeyFrame = global::GraphicsTester.Android.Resource.Styleable.KeyFrame; - global::Microsoft.Maui.Graphics.Resource.Styleable.KeyFramesAcceleration = global::GraphicsTester.Android.Resource.Styleable.KeyFramesAcceleration; - global::Microsoft.Maui.Graphics.Resource.Styleable.KeyFramesVelocity = global::GraphicsTester.Android.Resource.Styleable.KeyFramesVelocity; - global::Microsoft.Maui.Graphics.Resource.Styleable.KeyPosition = global::GraphicsTester.Android.Resource.Styleable.KeyPosition; - global::Microsoft.Maui.Graphics.Resource.Styleable.KeyPosition_curveFit = global::GraphicsTester.Android.Resource.Styleable.KeyPosition_curveFit; - global::Microsoft.Maui.Graphics.Resource.Styleable.KeyPosition_drawPath = global::GraphicsTester.Android.Resource.Styleable.KeyPosition_drawPath; - global::Microsoft.Maui.Graphics.Resource.Styleable.KeyPosition_framePosition = global::GraphicsTester.Android.Resource.Styleable.KeyPosition_framePosition; - global::Microsoft.Maui.Graphics.Resource.Styleable.KeyPosition_keyPositionType = global::GraphicsTester.Android.Resource.Styleable.KeyPosition_keyPositionType; - global::Microsoft.Maui.Graphics.Resource.Styleable.KeyPosition_motionTarget = global::GraphicsTester.Android.Resource.Styleable.KeyPosition_motionTarget; - global::Microsoft.Maui.Graphics.Resource.Styleable.KeyPosition_pathMotionArc = global::GraphicsTester.Android.Resource.Styleable.KeyPosition_pathMotionArc; - global::Microsoft.Maui.Graphics.Resource.Styleable.KeyPosition_percentHeight = global::GraphicsTester.Android.Resource.Styleable.KeyPosition_percentHeight; - global::Microsoft.Maui.Graphics.Resource.Styleable.KeyPosition_percentWidth = global::GraphicsTester.Android.Resource.Styleable.KeyPosition_percentWidth; - global::Microsoft.Maui.Graphics.Resource.Styleable.KeyPosition_percentX = global::GraphicsTester.Android.Resource.Styleable.KeyPosition_percentX; - global::Microsoft.Maui.Graphics.Resource.Styleable.KeyPosition_percentY = global::GraphicsTester.Android.Resource.Styleable.KeyPosition_percentY; - global::Microsoft.Maui.Graphics.Resource.Styleable.KeyPosition_sizePercent = global::GraphicsTester.Android.Resource.Styleable.KeyPosition_sizePercent; - global::Microsoft.Maui.Graphics.Resource.Styleable.KeyPosition_transitionEasing = global::GraphicsTester.Android.Resource.Styleable.KeyPosition_transitionEasing; - global::Microsoft.Maui.Graphics.Resource.Styleable.KeyTimeCycle = global::GraphicsTester.Android.Resource.Styleable.KeyTimeCycle; - global::Microsoft.Maui.Graphics.Resource.Styleable.KeyTimeCycle_android_alpha = global::GraphicsTester.Android.Resource.Styleable.KeyTimeCycle_android_alpha; - global::Microsoft.Maui.Graphics.Resource.Styleable.KeyTimeCycle_android_elevation = global::GraphicsTester.Android.Resource.Styleable.KeyTimeCycle_android_elevation; - global::Microsoft.Maui.Graphics.Resource.Styleable.KeyTimeCycle_android_rotation = global::GraphicsTester.Android.Resource.Styleable.KeyTimeCycle_android_rotation; - global::Microsoft.Maui.Graphics.Resource.Styleable.KeyTimeCycle_android_rotationX = global::GraphicsTester.Android.Resource.Styleable.KeyTimeCycle_android_rotationX; - global::Microsoft.Maui.Graphics.Resource.Styleable.KeyTimeCycle_android_rotationY = global::GraphicsTester.Android.Resource.Styleable.KeyTimeCycle_android_rotationY; - global::Microsoft.Maui.Graphics.Resource.Styleable.KeyTimeCycle_android_scaleX = global::GraphicsTester.Android.Resource.Styleable.KeyTimeCycle_android_scaleX; - global::Microsoft.Maui.Graphics.Resource.Styleable.KeyTimeCycle_android_scaleY = global::GraphicsTester.Android.Resource.Styleable.KeyTimeCycle_android_scaleY; - global::Microsoft.Maui.Graphics.Resource.Styleable.KeyTimeCycle_android_translationX = global::GraphicsTester.Android.Resource.Styleable.KeyTimeCycle_android_translationX; - global::Microsoft.Maui.Graphics.Resource.Styleable.KeyTimeCycle_android_translationY = global::GraphicsTester.Android.Resource.Styleable.KeyTimeCycle_android_translationY; - global::Microsoft.Maui.Graphics.Resource.Styleable.KeyTimeCycle_android_translationZ = global::GraphicsTester.Android.Resource.Styleable.KeyTimeCycle_android_translationZ; - global::Microsoft.Maui.Graphics.Resource.Styleable.KeyTimeCycle_curveFit = global::GraphicsTester.Android.Resource.Styleable.KeyTimeCycle_curveFit; - global::Microsoft.Maui.Graphics.Resource.Styleable.KeyTimeCycle_framePosition = global::GraphicsTester.Android.Resource.Styleable.KeyTimeCycle_framePosition; - global::Microsoft.Maui.Graphics.Resource.Styleable.KeyTimeCycle_motionProgress = global::GraphicsTester.Android.Resource.Styleable.KeyTimeCycle_motionProgress; - global::Microsoft.Maui.Graphics.Resource.Styleable.KeyTimeCycle_motionTarget = global::GraphicsTester.Android.Resource.Styleable.KeyTimeCycle_motionTarget; - global::Microsoft.Maui.Graphics.Resource.Styleable.KeyTimeCycle_transitionEasing = global::GraphicsTester.Android.Resource.Styleable.KeyTimeCycle_transitionEasing; - global::Microsoft.Maui.Graphics.Resource.Styleable.KeyTimeCycle_transitionPathRotate = global::GraphicsTester.Android.Resource.Styleable.KeyTimeCycle_transitionPathRotate; - global::Microsoft.Maui.Graphics.Resource.Styleable.KeyTimeCycle_waveDecay = global::GraphicsTester.Android.Resource.Styleable.KeyTimeCycle_waveDecay; - global::Microsoft.Maui.Graphics.Resource.Styleable.KeyTimeCycle_waveOffset = global::GraphicsTester.Android.Resource.Styleable.KeyTimeCycle_waveOffset; - global::Microsoft.Maui.Graphics.Resource.Styleable.KeyTimeCycle_wavePeriod = global::GraphicsTester.Android.Resource.Styleable.KeyTimeCycle_wavePeriod; - global::Microsoft.Maui.Graphics.Resource.Styleable.KeyTimeCycle_waveShape = global::GraphicsTester.Android.Resource.Styleable.KeyTimeCycle_waveShape; - global::Microsoft.Maui.Graphics.Resource.Styleable.KeyTrigger = global::GraphicsTester.Android.Resource.Styleable.KeyTrigger; - global::Microsoft.Maui.Graphics.Resource.Styleable.KeyTrigger_framePosition = global::GraphicsTester.Android.Resource.Styleable.KeyTrigger_framePosition; - global::Microsoft.Maui.Graphics.Resource.Styleable.KeyTrigger_motionTarget = global::GraphicsTester.Android.Resource.Styleable.KeyTrigger_motionTarget; - global::Microsoft.Maui.Graphics.Resource.Styleable.KeyTrigger_motion_postLayoutCollision = global::GraphicsTester.Android.Resource.Styleable.KeyTrigger_motion_postLayoutCollision; - global::Microsoft.Maui.Graphics.Resource.Styleable.KeyTrigger_motion_triggerOnCollision = global::GraphicsTester.Android.Resource.Styleable.KeyTrigger_motion_triggerOnCollision; - global::Microsoft.Maui.Graphics.Resource.Styleable.KeyTrigger_onCross = global::GraphicsTester.Android.Resource.Styleable.KeyTrigger_onCross; - global::Microsoft.Maui.Graphics.Resource.Styleable.KeyTrigger_onNegativeCross = global::GraphicsTester.Android.Resource.Styleable.KeyTrigger_onNegativeCross; - global::Microsoft.Maui.Graphics.Resource.Styleable.KeyTrigger_onPositiveCross = global::GraphicsTester.Android.Resource.Styleable.KeyTrigger_onPositiveCross; - global::Microsoft.Maui.Graphics.Resource.Styleable.KeyTrigger_triggerId = global::GraphicsTester.Android.Resource.Styleable.KeyTrigger_triggerId; - global::Microsoft.Maui.Graphics.Resource.Styleable.KeyTrigger_triggerReceiver = global::GraphicsTester.Android.Resource.Styleable.KeyTrigger_triggerReceiver; - global::Microsoft.Maui.Graphics.Resource.Styleable.KeyTrigger_triggerSlack = global::GraphicsTester.Android.Resource.Styleable.KeyTrigger_triggerSlack; - global::Microsoft.Maui.Graphics.Resource.Styleable.Layout = global::GraphicsTester.Android.Resource.Styleable.Layout; - global::Microsoft.Maui.Graphics.Resource.Styleable.Layout_android_layout_height = global::GraphicsTester.Android.Resource.Styleable.Layout_android_layout_height; - global::Microsoft.Maui.Graphics.Resource.Styleable.Layout_android_layout_marginBottom = global::GraphicsTester.Android.Resource.Styleable.Layout_android_layout_marginBottom; - global::Microsoft.Maui.Graphics.Resource.Styleable.Layout_android_layout_marginEnd = global::GraphicsTester.Android.Resource.Styleable.Layout_android_layout_marginEnd; - global::Microsoft.Maui.Graphics.Resource.Styleable.Layout_android_layout_marginLeft = global::GraphicsTester.Android.Resource.Styleable.Layout_android_layout_marginLeft; - global::Microsoft.Maui.Graphics.Resource.Styleable.Layout_android_layout_marginRight = global::GraphicsTester.Android.Resource.Styleable.Layout_android_layout_marginRight; - global::Microsoft.Maui.Graphics.Resource.Styleable.Layout_android_layout_marginStart = global::GraphicsTester.Android.Resource.Styleable.Layout_android_layout_marginStart; - global::Microsoft.Maui.Graphics.Resource.Styleable.Layout_android_layout_marginTop = global::GraphicsTester.Android.Resource.Styleable.Layout_android_layout_marginTop; - global::Microsoft.Maui.Graphics.Resource.Styleable.Layout_android_layout_width = global::GraphicsTester.Android.Resource.Styleable.Layout_android_layout_width; - global::Microsoft.Maui.Graphics.Resource.Styleable.Layout_android_orientation = global::GraphicsTester.Android.Resource.Styleable.Layout_android_orientation; - global::Microsoft.Maui.Graphics.Resource.Styleable.Layout_barrierAllowsGoneWidgets = global::GraphicsTester.Android.Resource.Styleable.Layout_barrierAllowsGoneWidgets; - global::Microsoft.Maui.Graphics.Resource.Styleable.Layout_barrierDirection = global::GraphicsTester.Android.Resource.Styleable.Layout_barrierDirection; - global::Microsoft.Maui.Graphics.Resource.Styleable.Layout_barrierMargin = global::GraphicsTester.Android.Resource.Styleable.Layout_barrierMargin; - global::Microsoft.Maui.Graphics.Resource.Styleable.Layout_chainUseRtl = global::GraphicsTester.Android.Resource.Styleable.Layout_chainUseRtl; - global::Microsoft.Maui.Graphics.Resource.Styleable.Layout_constraint_referenced_ids = global::GraphicsTester.Android.Resource.Styleable.Layout_constraint_referenced_ids; - global::Microsoft.Maui.Graphics.Resource.Styleable.Layout_constraint_referenced_tags = global::GraphicsTester.Android.Resource.Styleable.Layout_constraint_referenced_tags; - global::Microsoft.Maui.Graphics.Resource.Styleable.Layout_layout_constrainedHeight = global::GraphicsTester.Android.Resource.Styleable.Layout_layout_constrainedHeight; - global::Microsoft.Maui.Graphics.Resource.Styleable.Layout_layout_constrainedWidth = global::GraphicsTester.Android.Resource.Styleable.Layout_layout_constrainedWidth; - global::Microsoft.Maui.Graphics.Resource.Styleable.Layout_layout_constraintBaseline_creator = global::GraphicsTester.Android.Resource.Styleable.Layout_layout_constraintBaseline_creator; - global::Microsoft.Maui.Graphics.Resource.Styleable.Layout_layout_constraintBaseline_toBaselineOf = global::GraphicsTester.Android.Resource.Styleable.Layout_layout_constraintBaseline_toBaselineOf; - global::Microsoft.Maui.Graphics.Resource.Styleable.Layout_layout_constraintBottom_creator = global::GraphicsTester.Android.Resource.Styleable.Layout_layout_constraintBottom_creator; - global::Microsoft.Maui.Graphics.Resource.Styleable.Layout_layout_constraintBottom_toBottomOf = global::GraphicsTester.Android.Resource.Styleable.Layout_layout_constraintBottom_toBottomOf; - global::Microsoft.Maui.Graphics.Resource.Styleable.Layout_layout_constraintBottom_toTopOf = global::GraphicsTester.Android.Resource.Styleable.Layout_layout_constraintBottom_toTopOf; - global::Microsoft.Maui.Graphics.Resource.Styleable.Layout_layout_constraintCircle = global::GraphicsTester.Android.Resource.Styleable.Layout_layout_constraintCircle; - global::Microsoft.Maui.Graphics.Resource.Styleable.Layout_layout_constraintCircleAngle = global::GraphicsTester.Android.Resource.Styleable.Layout_layout_constraintCircleAngle; - global::Microsoft.Maui.Graphics.Resource.Styleable.Layout_layout_constraintCircleRadius = global::GraphicsTester.Android.Resource.Styleable.Layout_layout_constraintCircleRadius; - global::Microsoft.Maui.Graphics.Resource.Styleable.Layout_layout_constraintDimensionRatio = global::GraphicsTester.Android.Resource.Styleable.Layout_layout_constraintDimensionRatio; - global::Microsoft.Maui.Graphics.Resource.Styleable.Layout_layout_constraintEnd_toEndOf = global::GraphicsTester.Android.Resource.Styleable.Layout_layout_constraintEnd_toEndOf; - global::Microsoft.Maui.Graphics.Resource.Styleable.Layout_layout_constraintEnd_toStartOf = global::GraphicsTester.Android.Resource.Styleable.Layout_layout_constraintEnd_toStartOf; - global::Microsoft.Maui.Graphics.Resource.Styleable.Layout_layout_constraintGuide_begin = global::GraphicsTester.Android.Resource.Styleable.Layout_layout_constraintGuide_begin; - global::Microsoft.Maui.Graphics.Resource.Styleable.Layout_layout_constraintGuide_end = global::GraphicsTester.Android.Resource.Styleable.Layout_layout_constraintGuide_end; - global::Microsoft.Maui.Graphics.Resource.Styleable.Layout_layout_constraintGuide_percent = global::GraphicsTester.Android.Resource.Styleable.Layout_layout_constraintGuide_percent; - global::Microsoft.Maui.Graphics.Resource.Styleable.Layout_layout_constraintHeight_default = global::GraphicsTester.Android.Resource.Styleable.Layout_layout_constraintHeight_default; - global::Microsoft.Maui.Graphics.Resource.Styleable.Layout_layout_constraintHeight_max = global::GraphicsTester.Android.Resource.Styleable.Layout_layout_constraintHeight_max; - global::Microsoft.Maui.Graphics.Resource.Styleable.Layout_layout_constraintHeight_min = global::GraphicsTester.Android.Resource.Styleable.Layout_layout_constraintHeight_min; - global::Microsoft.Maui.Graphics.Resource.Styleable.Layout_layout_constraintHeight_percent = global::GraphicsTester.Android.Resource.Styleable.Layout_layout_constraintHeight_percent; - global::Microsoft.Maui.Graphics.Resource.Styleable.Layout_layout_constraintHorizontal_bias = global::GraphicsTester.Android.Resource.Styleable.Layout_layout_constraintHorizontal_bias; - global::Microsoft.Maui.Graphics.Resource.Styleable.Layout_layout_constraintHorizontal_chainStyle = global::GraphicsTester.Android.Resource.Styleable.Layout_layout_constraintHorizontal_chainStyle; - global::Microsoft.Maui.Graphics.Resource.Styleable.Layout_layout_constraintHorizontal_weight = global::GraphicsTester.Android.Resource.Styleable.Layout_layout_constraintHorizontal_weight; - global::Microsoft.Maui.Graphics.Resource.Styleable.Layout_layout_constraintLeft_creator = global::GraphicsTester.Android.Resource.Styleable.Layout_layout_constraintLeft_creator; - global::Microsoft.Maui.Graphics.Resource.Styleable.Layout_layout_constraintLeft_toLeftOf = global::GraphicsTester.Android.Resource.Styleable.Layout_layout_constraintLeft_toLeftOf; - global::Microsoft.Maui.Graphics.Resource.Styleable.Layout_layout_constraintLeft_toRightOf = global::GraphicsTester.Android.Resource.Styleable.Layout_layout_constraintLeft_toRightOf; - global::Microsoft.Maui.Graphics.Resource.Styleable.Layout_layout_constraintRight_creator = global::GraphicsTester.Android.Resource.Styleable.Layout_layout_constraintRight_creator; - global::Microsoft.Maui.Graphics.Resource.Styleable.Layout_layout_constraintRight_toLeftOf = global::GraphicsTester.Android.Resource.Styleable.Layout_layout_constraintRight_toLeftOf; - global::Microsoft.Maui.Graphics.Resource.Styleable.Layout_layout_constraintRight_toRightOf = global::GraphicsTester.Android.Resource.Styleable.Layout_layout_constraintRight_toRightOf; - global::Microsoft.Maui.Graphics.Resource.Styleable.Layout_layout_constraintStart_toEndOf = global::GraphicsTester.Android.Resource.Styleable.Layout_layout_constraintStart_toEndOf; - global::Microsoft.Maui.Graphics.Resource.Styleable.Layout_layout_constraintStart_toStartOf = global::GraphicsTester.Android.Resource.Styleable.Layout_layout_constraintStart_toStartOf; - global::Microsoft.Maui.Graphics.Resource.Styleable.Layout_layout_constraintTop_creator = global::GraphicsTester.Android.Resource.Styleable.Layout_layout_constraintTop_creator; - global::Microsoft.Maui.Graphics.Resource.Styleable.Layout_layout_constraintTop_toBottomOf = global::GraphicsTester.Android.Resource.Styleable.Layout_layout_constraintTop_toBottomOf; - global::Microsoft.Maui.Graphics.Resource.Styleable.Layout_layout_constraintTop_toTopOf = global::GraphicsTester.Android.Resource.Styleable.Layout_layout_constraintTop_toTopOf; - global::Microsoft.Maui.Graphics.Resource.Styleable.Layout_layout_constraintVertical_bias = global::GraphicsTester.Android.Resource.Styleable.Layout_layout_constraintVertical_bias; - global::Microsoft.Maui.Graphics.Resource.Styleable.Layout_layout_constraintVertical_chainStyle = global::GraphicsTester.Android.Resource.Styleable.Layout_layout_constraintVertical_chainStyle; - global::Microsoft.Maui.Graphics.Resource.Styleable.Layout_layout_constraintVertical_weight = global::GraphicsTester.Android.Resource.Styleable.Layout_layout_constraintVertical_weight; - global::Microsoft.Maui.Graphics.Resource.Styleable.Layout_layout_constraintWidth_default = global::GraphicsTester.Android.Resource.Styleable.Layout_layout_constraintWidth_default; - global::Microsoft.Maui.Graphics.Resource.Styleable.Layout_layout_constraintWidth_max = global::GraphicsTester.Android.Resource.Styleable.Layout_layout_constraintWidth_max; - global::Microsoft.Maui.Graphics.Resource.Styleable.Layout_layout_constraintWidth_min = global::GraphicsTester.Android.Resource.Styleable.Layout_layout_constraintWidth_min; - global::Microsoft.Maui.Graphics.Resource.Styleable.Layout_layout_constraintWidth_percent = global::GraphicsTester.Android.Resource.Styleable.Layout_layout_constraintWidth_percent; - global::Microsoft.Maui.Graphics.Resource.Styleable.Layout_layout_editor_absoluteX = global::GraphicsTester.Android.Resource.Styleable.Layout_layout_editor_absoluteX; - global::Microsoft.Maui.Graphics.Resource.Styleable.Layout_layout_editor_absoluteY = global::GraphicsTester.Android.Resource.Styleable.Layout_layout_editor_absoluteY; - global::Microsoft.Maui.Graphics.Resource.Styleable.Layout_layout_goneMarginBottom = global::GraphicsTester.Android.Resource.Styleable.Layout_layout_goneMarginBottom; - global::Microsoft.Maui.Graphics.Resource.Styleable.Layout_layout_goneMarginEnd = global::GraphicsTester.Android.Resource.Styleable.Layout_layout_goneMarginEnd; - global::Microsoft.Maui.Graphics.Resource.Styleable.Layout_layout_goneMarginLeft = global::GraphicsTester.Android.Resource.Styleable.Layout_layout_goneMarginLeft; - global::Microsoft.Maui.Graphics.Resource.Styleable.Layout_layout_goneMarginRight = global::GraphicsTester.Android.Resource.Styleable.Layout_layout_goneMarginRight; - global::Microsoft.Maui.Graphics.Resource.Styleable.Layout_layout_goneMarginStart = global::GraphicsTester.Android.Resource.Styleable.Layout_layout_goneMarginStart; - global::Microsoft.Maui.Graphics.Resource.Styleable.Layout_layout_goneMarginTop = global::GraphicsTester.Android.Resource.Styleable.Layout_layout_goneMarginTop; - global::Microsoft.Maui.Graphics.Resource.Styleable.Layout_maxHeight = global::GraphicsTester.Android.Resource.Styleable.Layout_maxHeight; - global::Microsoft.Maui.Graphics.Resource.Styleable.Layout_maxWidth = global::GraphicsTester.Android.Resource.Styleable.Layout_maxWidth; - global::Microsoft.Maui.Graphics.Resource.Styleable.Layout_minHeight = global::GraphicsTester.Android.Resource.Styleable.Layout_minHeight; - global::Microsoft.Maui.Graphics.Resource.Styleable.Layout_minWidth = global::GraphicsTester.Android.Resource.Styleable.Layout_minWidth; - global::Microsoft.Maui.Graphics.Resource.Styleable.LinearLayoutCompat = global::GraphicsTester.Android.Resource.Styleable.LinearLayoutCompat; - global::Microsoft.Maui.Graphics.Resource.Styleable.LinearLayoutCompat_android_baselineAligned = global::GraphicsTester.Android.Resource.Styleable.LinearLayoutCompat_android_baselineAligned; - global::Microsoft.Maui.Graphics.Resource.Styleable.LinearLayoutCompat_android_baselineAlignedChildIndex = global::GraphicsTester.Android.Resource.Styleable.LinearLayoutCompat_android_baselineAlignedChildIndex; - global::Microsoft.Maui.Graphics.Resource.Styleable.LinearLayoutCompat_android_gravity = global::GraphicsTester.Android.Resource.Styleable.LinearLayoutCompat_android_gravity; - global::Microsoft.Maui.Graphics.Resource.Styleable.LinearLayoutCompat_android_orientation = global::GraphicsTester.Android.Resource.Styleable.LinearLayoutCompat_android_orientation; - global::Microsoft.Maui.Graphics.Resource.Styleable.LinearLayoutCompat_android_weightSum = global::GraphicsTester.Android.Resource.Styleable.LinearLayoutCompat_android_weightSum; - global::Microsoft.Maui.Graphics.Resource.Styleable.LinearLayoutCompat_divider = global::GraphicsTester.Android.Resource.Styleable.LinearLayoutCompat_divider; - global::Microsoft.Maui.Graphics.Resource.Styleable.LinearLayoutCompat_dividerPadding = global::GraphicsTester.Android.Resource.Styleable.LinearLayoutCompat_dividerPadding; - global::Microsoft.Maui.Graphics.Resource.Styleable.LinearLayoutCompat_Layout = global::GraphicsTester.Android.Resource.Styleable.LinearLayoutCompat_Layout; - global::Microsoft.Maui.Graphics.Resource.Styleable.LinearLayoutCompat_Layout_android_layout_gravity = global::GraphicsTester.Android.Resource.Styleable.LinearLayoutCompat_Layout_android_layout_gravity; - global::Microsoft.Maui.Graphics.Resource.Styleable.LinearLayoutCompat_Layout_android_layout_height = global::GraphicsTester.Android.Resource.Styleable.LinearLayoutCompat_Layout_android_layout_height; - global::Microsoft.Maui.Graphics.Resource.Styleable.LinearLayoutCompat_Layout_android_layout_weight = global::GraphicsTester.Android.Resource.Styleable.LinearLayoutCompat_Layout_android_layout_weight; - global::Microsoft.Maui.Graphics.Resource.Styleable.LinearLayoutCompat_Layout_android_layout_width = global::GraphicsTester.Android.Resource.Styleable.LinearLayoutCompat_Layout_android_layout_width; - global::Microsoft.Maui.Graphics.Resource.Styleable.LinearLayoutCompat_measureWithLargestChild = global::GraphicsTester.Android.Resource.Styleable.LinearLayoutCompat_measureWithLargestChild; - global::Microsoft.Maui.Graphics.Resource.Styleable.LinearLayoutCompat_showDividers = global::GraphicsTester.Android.Resource.Styleable.LinearLayoutCompat_showDividers; - global::Microsoft.Maui.Graphics.Resource.Styleable.LinearProgressIndicator = global::GraphicsTester.Android.Resource.Styleable.LinearProgressIndicator; - global::Microsoft.Maui.Graphics.Resource.Styleable.LinearProgressIndicator_indeterminateAnimationType = global::GraphicsTester.Android.Resource.Styleable.LinearProgressIndicator_indeterminateAnimationType; - global::Microsoft.Maui.Graphics.Resource.Styleable.LinearProgressIndicator_indicatorDirectionLinear = global::GraphicsTester.Android.Resource.Styleable.LinearProgressIndicator_indicatorDirectionLinear; - global::Microsoft.Maui.Graphics.Resource.Styleable.ListPopupWindow = global::GraphicsTester.Android.Resource.Styleable.ListPopupWindow; - global::Microsoft.Maui.Graphics.Resource.Styleable.ListPopupWindow_android_dropDownHorizontalOffset = global::GraphicsTester.Android.Resource.Styleable.ListPopupWindow_android_dropDownHorizontalOffset; - global::Microsoft.Maui.Graphics.Resource.Styleable.ListPopupWindow_android_dropDownVerticalOffset = global::GraphicsTester.Android.Resource.Styleable.ListPopupWindow_android_dropDownVerticalOffset; - global::Microsoft.Maui.Graphics.Resource.Styleable.MaterialAlertDialog = global::GraphicsTester.Android.Resource.Styleable.MaterialAlertDialog; - global::Microsoft.Maui.Graphics.Resource.Styleable.MaterialAlertDialogTheme = global::GraphicsTester.Android.Resource.Styleable.MaterialAlertDialogTheme; - global::Microsoft.Maui.Graphics.Resource.Styleable.MaterialAlertDialogTheme_materialAlertDialogBodyTextStyle = global::GraphicsTester.Android.Resource.Styleable.MaterialAlertDialogTheme_materialAlertDialogBodyTextStyle; - global::Microsoft.Maui.Graphics.Resource.Styleable.MaterialAlertDialogTheme_materialAlertDialogTheme = global::GraphicsTester.Android.Resource.Styleable.MaterialAlertDialogTheme_materialAlertDialogTheme; - global::Microsoft.Maui.Graphics.Resource.Styleable.MaterialAlertDialogTheme_materialAlertDialogTitleIconStyle = global::GraphicsTester.Android.Resource.Styleable.MaterialAlertDialogTheme_materialAlertDialogTitleIconStyle; - global::Microsoft.Maui.Graphics.Resource.Styleable.MaterialAlertDialogTheme_materialAlertDialogTitlePanelStyle = global::GraphicsTester.Android.Resource.Styleable.MaterialAlertDialogTheme_materialAlertDialogTitlePanelStyle; - global::Microsoft.Maui.Graphics.Resource.Styleable.MaterialAlertDialogTheme_materialAlertDialogTitleTextStyle = global::GraphicsTester.Android.Resource.Styleable.MaterialAlertDialogTheme_materialAlertDialogTitleTextStyle; - global::Microsoft.Maui.Graphics.Resource.Styleable.MaterialAlertDialog_backgroundInsetBottom = global::GraphicsTester.Android.Resource.Styleable.MaterialAlertDialog_backgroundInsetBottom; - global::Microsoft.Maui.Graphics.Resource.Styleable.MaterialAlertDialog_backgroundInsetEnd = global::GraphicsTester.Android.Resource.Styleable.MaterialAlertDialog_backgroundInsetEnd; - global::Microsoft.Maui.Graphics.Resource.Styleable.MaterialAlertDialog_backgroundInsetStart = global::GraphicsTester.Android.Resource.Styleable.MaterialAlertDialog_backgroundInsetStart; - global::Microsoft.Maui.Graphics.Resource.Styleable.MaterialAlertDialog_backgroundInsetTop = global::GraphicsTester.Android.Resource.Styleable.MaterialAlertDialog_backgroundInsetTop; - global::Microsoft.Maui.Graphics.Resource.Styleable.MaterialAutoCompleteTextView = global::GraphicsTester.Android.Resource.Styleable.MaterialAutoCompleteTextView; - global::Microsoft.Maui.Graphics.Resource.Styleable.MaterialAutoCompleteTextView_android_inputType = global::GraphicsTester.Android.Resource.Styleable.MaterialAutoCompleteTextView_android_inputType; - global::Microsoft.Maui.Graphics.Resource.Styleable.MaterialButton = global::GraphicsTester.Android.Resource.Styleable.MaterialButton; - global::Microsoft.Maui.Graphics.Resource.Styleable.MaterialButtonToggleGroup = global::GraphicsTester.Android.Resource.Styleable.MaterialButtonToggleGroup; - global::Microsoft.Maui.Graphics.Resource.Styleable.MaterialButtonToggleGroup_checkedButton = global::GraphicsTester.Android.Resource.Styleable.MaterialButtonToggleGroup_checkedButton; - global::Microsoft.Maui.Graphics.Resource.Styleable.MaterialButtonToggleGroup_selectionRequired = global::GraphicsTester.Android.Resource.Styleable.MaterialButtonToggleGroup_selectionRequired; - global::Microsoft.Maui.Graphics.Resource.Styleable.MaterialButtonToggleGroup_singleSelection = global::GraphicsTester.Android.Resource.Styleable.MaterialButtonToggleGroup_singleSelection; - global::Microsoft.Maui.Graphics.Resource.Styleable.MaterialButton_android_background = global::GraphicsTester.Android.Resource.Styleable.MaterialButton_android_background; - global::Microsoft.Maui.Graphics.Resource.Styleable.MaterialButton_android_checkable = global::GraphicsTester.Android.Resource.Styleable.MaterialButton_android_checkable; - global::Microsoft.Maui.Graphics.Resource.Styleable.MaterialButton_android_insetBottom = global::GraphicsTester.Android.Resource.Styleable.MaterialButton_android_insetBottom; - global::Microsoft.Maui.Graphics.Resource.Styleable.MaterialButton_android_insetLeft = global::GraphicsTester.Android.Resource.Styleable.MaterialButton_android_insetLeft; - global::Microsoft.Maui.Graphics.Resource.Styleable.MaterialButton_android_insetRight = global::GraphicsTester.Android.Resource.Styleable.MaterialButton_android_insetRight; - global::Microsoft.Maui.Graphics.Resource.Styleable.MaterialButton_android_insetTop = global::GraphicsTester.Android.Resource.Styleable.MaterialButton_android_insetTop; - global::Microsoft.Maui.Graphics.Resource.Styleable.MaterialButton_backgroundTint = global::GraphicsTester.Android.Resource.Styleable.MaterialButton_backgroundTint; - global::Microsoft.Maui.Graphics.Resource.Styleable.MaterialButton_backgroundTintMode = global::GraphicsTester.Android.Resource.Styleable.MaterialButton_backgroundTintMode; - global::Microsoft.Maui.Graphics.Resource.Styleable.MaterialButton_cornerRadius = global::GraphicsTester.Android.Resource.Styleable.MaterialButton_cornerRadius; - global::Microsoft.Maui.Graphics.Resource.Styleable.MaterialButton_elevation = global::GraphicsTester.Android.Resource.Styleable.MaterialButton_elevation; - global::Microsoft.Maui.Graphics.Resource.Styleable.MaterialButton_icon = global::GraphicsTester.Android.Resource.Styleable.MaterialButton_icon; - global::Microsoft.Maui.Graphics.Resource.Styleable.MaterialButton_iconGravity = global::GraphicsTester.Android.Resource.Styleable.MaterialButton_iconGravity; - global::Microsoft.Maui.Graphics.Resource.Styleable.MaterialButton_iconPadding = global::GraphicsTester.Android.Resource.Styleable.MaterialButton_iconPadding; - global::Microsoft.Maui.Graphics.Resource.Styleable.MaterialButton_iconSize = global::GraphicsTester.Android.Resource.Styleable.MaterialButton_iconSize; - global::Microsoft.Maui.Graphics.Resource.Styleable.MaterialButton_iconTint = global::GraphicsTester.Android.Resource.Styleable.MaterialButton_iconTint; - global::Microsoft.Maui.Graphics.Resource.Styleable.MaterialButton_iconTintMode = global::GraphicsTester.Android.Resource.Styleable.MaterialButton_iconTintMode; - global::Microsoft.Maui.Graphics.Resource.Styleable.MaterialButton_rippleColor = global::GraphicsTester.Android.Resource.Styleable.MaterialButton_rippleColor; - global::Microsoft.Maui.Graphics.Resource.Styleable.MaterialButton_shapeAppearance = global::GraphicsTester.Android.Resource.Styleable.MaterialButton_shapeAppearance; - global::Microsoft.Maui.Graphics.Resource.Styleable.MaterialButton_shapeAppearanceOverlay = global::GraphicsTester.Android.Resource.Styleable.MaterialButton_shapeAppearanceOverlay; - global::Microsoft.Maui.Graphics.Resource.Styleable.MaterialButton_strokeColor = global::GraphicsTester.Android.Resource.Styleable.MaterialButton_strokeColor; - global::Microsoft.Maui.Graphics.Resource.Styleable.MaterialButton_strokeWidth = global::GraphicsTester.Android.Resource.Styleable.MaterialButton_strokeWidth; - global::Microsoft.Maui.Graphics.Resource.Styleable.MaterialCalendar = global::GraphicsTester.Android.Resource.Styleable.MaterialCalendar; - global::Microsoft.Maui.Graphics.Resource.Styleable.MaterialCalendarItem = global::GraphicsTester.Android.Resource.Styleable.MaterialCalendarItem; - global::Microsoft.Maui.Graphics.Resource.Styleable.MaterialCalendarItem_android_insetBottom = global::GraphicsTester.Android.Resource.Styleable.MaterialCalendarItem_android_insetBottom; - global::Microsoft.Maui.Graphics.Resource.Styleable.MaterialCalendarItem_android_insetLeft = global::GraphicsTester.Android.Resource.Styleable.MaterialCalendarItem_android_insetLeft; - global::Microsoft.Maui.Graphics.Resource.Styleable.MaterialCalendarItem_android_insetRight = global::GraphicsTester.Android.Resource.Styleable.MaterialCalendarItem_android_insetRight; - global::Microsoft.Maui.Graphics.Resource.Styleable.MaterialCalendarItem_android_insetTop = global::GraphicsTester.Android.Resource.Styleable.MaterialCalendarItem_android_insetTop; - global::Microsoft.Maui.Graphics.Resource.Styleable.MaterialCalendarItem_itemFillColor = global::GraphicsTester.Android.Resource.Styleable.MaterialCalendarItem_itemFillColor; - global::Microsoft.Maui.Graphics.Resource.Styleable.MaterialCalendarItem_itemShapeAppearance = global::GraphicsTester.Android.Resource.Styleable.MaterialCalendarItem_itemShapeAppearance; - global::Microsoft.Maui.Graphics.Resource.Styleable.MaterialCalendarItem_itemShapeAppearanceOverlay = global::GraphicsTester.Android.Resource.Styleable.MaterialCalendarItem_itemShapeAppearanceOverlay; - global::Microsoft.Maui.Graphics.Resource.Styleable.MaterialCalendarItem_itemStrokeColor = global::GraphicsTester.Android.Resource.Styleable.MaterialCalendarItem_itemStrokeColor; - global::Microsoft.Maui.Graphics.Resource.Styleable.MaterialCalendarItem_itemStrokeWidth = global::GraphicsTester.Android.Resource.Styleable.MaterialCalendarItem_itemStrokeWidth; - global::Microsoft.Maui.Graphics.Resource.Styleable.MaterialCalendarItem_itemTextColor = global::GraphicsTester.Android.Resource.Styleable.MaterialCalendarItem_itemTextColor; - global::Microsoft.Maui.Graphics.Resource.Styleable.MaterialCalendar_android_windowFullscreen = global::GraphicsTester.Android.Resource.Styleable.MaterialCalendar_android_windowFullscreen; - global::Microsoft.Maui.Graphics.Resource.Styleable.MaterialCalendar_dayInvalidStyle = global::GraphicsTester.Android.Resource.Styleable.MaterialCalendar_dayInvalidStyle; - global::Microsoft.Maui.Graphics.Resource.Styleable.MaterialCalendar_daySelectedStyle = global::GraphicsTester.Android.Resource.Styleable.MaterialCalendar_daySelectedStyle; - global::Microsoft.Maui.Graphics.Resource.Styleable.MaterialCalendar_dayStyle = global::GraphicsTester.Android.Resource.Styleable.MaterialCalendar_dayStyle; - global::Microsoft.Maui.Graphics.Resource.Styleable.MaterialCalendar_dayTodayStyle = global::GraphicsTester.Android.Resource.Styleable.MaterialCalendar_dayTodayStyle; - global::Microsoft.Maui.Graphics.Resource.Styleable.MaterialCalendar_nestedScrollable = global::GraphicsTester.Android.Resource.Styleable.MaterialCalendar_nestedScrollable; - global::Microsoft.Maui.Graphics.Resource.Styleable.MaterialCalendar_rangeFillColor = global::GraphicsTester.Android.Resource.Styleable.MaterialCalendar_rangeFillColor; - global::Microsoft.Maui.Graphics.Resource.Styleable.MaterialCalendar_yearSelectedStyle = global::GraphicsTester.Android.Resource.Styleable.MaterialCalendar_yearSelectedStyle; - global::Microsoft.Maui.Graphics.Resource.Styleable.MaterialCalendar_yearStyle = global::GraphicsTester.Android.Resource.Styleable.MaterialCalendar_yearStyle; - global::Microsoft.Maui.Graphics.Resource.Styleable.MaterialCalendar_yearTodayStyle = global::GraphicsTester.Android.Resource.Styleable.MaterialCalendar_yearTodayStyle; - global::Microsoft.Maui.Graphics.Resource.Styleable.MaterialCardView = global::GraphicsTester.Android.Resource.Styleable.MaterialCardView; - global::Microsoft.Maui.Graphics.Resource.Styleable.MaterialCardView_android_checkable = global::GraphicsTester.Android.Resource.Styleable.MaterialCardView_android_checkable; - global::Microsoft.Maui.Graphics.Resource.Styleable.MaterialCardView_cardForegroundColor = global::GraphicsTester.Android.Resource.Styleable.MaterialCardView_cardForegroundColor; - global::Microsoft.Maui.Graphics.Resource.Styleable.MaterialCardView_checkedIcon = global::GraphicsTester.Android.Resource.Styleable.MaterialCardView_checkedIcon; - global::Microsoft.Maui.Graphics.Resource.Styleable.MaterialCardView_checkedIconMargin = global::GraphicsTester.Android.Resource.Styleable.MaterialCardView_checkedIconMargin; - global::Microsoft.Maui.Graphics.Resource.Styleable.MaterialCardView_checkedIconSize = global::GraphicsTester.Android.Resource.Styleable.MaterialCardView_checkedIconSize; - global::Microsoft.Maui.Graphics.Resource.Styleable.MaterialCardView_checkedIconTint = global::GraphicsTester.Android.Resource.Styleable.MaterialCardView_checkedIconTint; - global::Microsoft.Maui.Graphics.Resource.Styleable.MaterialCardView_rippleColor = global::GraphicsTester.Android.Resource.Styleable.MaterialCardView_rippleColor; - global::Microsoft.Maui.Graphics.Resource.Styleable.MaterialCardView_shapeAppearance = global::GraphicsTester.Android.Resource.Styleable.MaterialCardView_shapeAppearance; - global::Microsoft.Maui.Graphics.Resource.Styleable.MaterialCardView_shapeAppearanceOverlay = global::GraphicsTester.Android.Resource.Styleable.MaterialCardView_shapeAppearanceOverlay; - global::Microsoft.Maui.Graphics.Resource.Styleable.MaterialCardView_state_dragged = global::GraphicsTester.Android.Resource.Styleable.MaterialCardView_state_dragged; - global::Microsoft.Maui.Graphics.Resource.Styleable.MaterialCardView_strokeColor = global::GraphicsTester.Android.Resource.Styleable.MaterialCardView_strokeColor; - global::Microsoft.Maui.Graphics.Resource.Styleable.MaterialCardView_strokeWidth = global::GraphicsTester.Android.Resource.Styleable.MaterialCardView_strokeWidth; - global::Microsoft.Maui.Graphics.Resource.Styleable.MaterialCheckBox = global::GraphicsTester.Android.Resource.Styleable.MaterialCheckBox; - global::Microsoft.Maui.Graphics.Resource.Styleable.MaterialCheckBox_buttonTint = global::GraphicsTester.Android.Resource.Styleable.MaterialCheckBox_buttonTint; - global::Microsoft.Maui.Graphics.Resource.Styleable.MaterialCheckBox_useMaterialThemeColors = global::GraphicsTester.Android.Resource.Styleable.MaterialCheckBox_useMaterialThemeColors; - global::Microsoft.Maui.Graphics.Resource.Styleable.MaterialRadioButton = global::GraphicsTester.Android.Resource.Styleable.MaterialRadioButton; - global::Microsoft.Maui.Graphics.Resource.Styleable.MaterialRadioButton_buttonTint = global::GraphicsTester.Android.Resource.Styleable.MaterialRadioButton_buttonTint; - global::Microsoft.Maui.Graphics.Resource.Styleable.MaterialRadioButton_useMaterialThemeColors = global::GraphicsTester.Android.Resource.Styleable.MaterialRadioButton_useMaterialThemeColors; - global::Microsoft.Maui.Graphics.Resource.Styleable.MaterialShape = global::GraphicsTester.Android.Resource.Styleable.MaterialShape; - global::Microsoft.Maui.Graphics.Resource.Styleable.MaterialShape_shapeAppearance = global::GraphicsTester.Android.Resource.Styleable.MaterialShape_shapeAppearance; - global::Microsoft.Maui.Graphics.Resource.Styleable.MaterialShape_shapeAppearanceOverlay = global::GraphicsTester.Android.Resource.Styleable.MaterialShape_shapeAppearanceOverlay; - global::Microsoft.Maui.Graphics.Resource.Styleable.MaterialTextAppearance = global::GraphicsTester.Android.Resource.Styleable.MaterialTextAppearance; - global::Microsoft.Maui.Graphics.Resource.Styleable.MaterialTextAppearance_android_letterSpacing = global::GraphicsTester.Android.Resource.Styleable.MaterialTextAppearance_android_letterSpacing; - global::Microsoft.Maui.Graphics.Resource.Styleable.MaterialTextAppearance_android_lineHeight = global::GraphicsTester.Android.Resource.Styleable.MaterialTextAppearance_android_lineHeight; - global::Microsoft.Maui.Graphics.Resource.Styleable.MaterialTextAppearance_lineHeight = global::GraphicsTester.Android.Resource.Styleable.MaterialTextAppearance_lineHeight; - global::Microsoft.Maui.Graphics.Resource.Styleable.MaterialTextView = global::GraphicsTester.Android.Resource.Styleable.MaterialTextView; - global::Microsoft.Maui.Graphics.Resource.Styleable.MaterialTextView_android_lineHeight = global::GraphicsTester.Android.Resource.Styleable.MaterialTextView_android_lineHeight; - global::Microsoft.Maui.Graphics.Resource.Styleable.MaterialTextView_android_textAppearance = global::GraphicsTester.Android.Resource.Styleable.MaterialTextView_android_textAppearance; - global::Microsoft.Maui.Graphics.Resource.Styleable.MaterialTextView_lineHeight = global::GraphicsTester.Android.Resource.Styleable.MaterialTextView_lineHeight; - global::Microsoft.Maui.Graphics.Resource.Styleable.MaterialTimePicker = global::GraphicsTester.Android.Resource.Styleable.MaterialTimePicker; - global::Microsoft.Maui.Graphics.Resource.Styleable.MaterialTimePicker_clockIcon = global::GraphicsTester.Android.Resource.Styleable.MaterialTimePicker_clockIcon; - global::Microsoft.Maui.Graphics.Resource.Styleable.MaterialTimePicker_keyboardIcon = global::GraphicsTester.Android.Resource.Styleable.MaterialTimePicker_keyboardIcon; - global::Microsoft.Maui.Graphics.Resource.Styleable.MaterialToolbar = global::GraphicsTester.Android.Resource.Styleable.MaterialToolbar; - global::Microsoft.Maui.Graphics.Resource.Styleable.MaterialToolbar_navigationIconTint = global::GraphicsTester.Android.Resource.Styleable.MaterialToolbar_navigationIconTint; - global::Microsoft.Maui.Graphics.Resource.Styleable.MenuGroup = global::GraphicsTester.Android.Resource.Styleable.MenuGroup; - global::Microsoft.Maui.Graphics.Resource.Styleable.MenuGroup_android_checkableBehavior = global::GraphicsTester.Android.Resource.Styleable.MenuGroup_android_checkableBehavior; - global::Microsoft.Maui.Graphics.Resource.Styleable.MenuGroup_android_enabled = global::GraphicsTester.Android.Resource.Styleable.MenuGroup_android_enabled; - global::Microsoft.Maui.Graphics.Resource.Styleable.MenuGroup_android_id = global::GraphicsTester.Android.Resource.Styleable.MenuGroup_android_id; - global::Microsoft.Maui.Graphics.Resource.Styleable.MenuGroup_android_menuCategory = global::GraphicsTester.Android.Resource.Styleable.MenuGroup_android_menuCategory; - global::Microsoft.Maui.Graphics.Resource.Styleable.MenuGroup_android_orderInCategory = global::GraphicsTester.Android.Resource.Styleable.MenuGroup_android_orderInCategory; - global::Microsoft.Maui.Graphics.Resource.Styleable.MenuGroup_android_visible = global::GraphicsTester.Android.Resource.Styleable.MenuGroup_android_visible; - global::Microsoft.Maui.Graphics.Resource.Styleable.MenuItem = global::GraphicsTester.Android.Resource.Styleable.MenuItem; - global::Microsoft.Maui.Graphics.Resource.Styleable.MenuItem_actionLayout = global::GraphicsTester.Android.Resource.Styleable.MenuItem_actionLayout; - global::Microsoft.Maui.Graphics.Resource.Styleable.MenuItem_actionProviderClass = global::GraphicsTester.Android.Resource.Styleable.MenuItem_actionProviderClass; - global::Microsoft.Maui.Graphics.Resource.Styleable.MenuItem_actionViewClass = global::GraphicsTester.Android.Resource.Styleable.MenuItem_actionViewClass; - global::Microsoft.Maui.Graphics.Resource.Styleable.MenuItem_alphabeticModifiers = global::GraphicsTester.Android.Resource.Styleable.MenuItem_alphabeticModifiers; - global::Microsoft.Maui.Graphics.Resource.Styleable.MenuItem_android_alphabeticShortcut = global::GraphicsTester.Android.Resource.Styleable.MenuItem_android_alphabeticShortcut; - global::Microsoft.Maui.Graphics.Resource.Styleable.MenuItem_android_checkable = global::GraphicsTester.Android.Resource.Styleable.MenuItem_android_checkable; - global::Microsoft.Maui.Graphics.Resource.Styleable.MenuItem_android_checked = global::GraphicsTester.Android.Resource.Styleable.MenuItem_android_checked; - global::Microsoft.Maui.Graphics.Resource.Styleable.MenuItem_android_enabled = global::GraphicsTester.Android.Resource.Styleable.MenuItem_android_enabled; - global::Microsoft.Maui.Graphics.Resource.Styleable.MenuItem_android_icon = global::GraphicsTester.Android.Resource.Styleable.MenuItem_android_icon; - global::Microsoft.Maui.Graphics.Resource.Styleable.MenuItem_android_id = global::GraphicsTester.Android.Resource.Styleable.MenuItem_android_id; - global::Microsoft.Maui.Graphics.Resource.Styleable.MenuItem_android_menuCategory = global::GraphicsTester.Android.Resource.Styleable.MenuItem_android_menuCategory; - global::Microsoft.Maui.Graphics.Resource.Styleable.MenuItem_android_numericShortcut = global::GraphicsTester.Android.Resource.Styleable.MenuItem_android_numericShortcut; - global::Microsoft.Maui.Graphics.Resource.Styleable.MenuItem_android_onClick = global::GraphicsTester.Android.Resource.Styleable.MenuItem_android_onClick; - global::Microsoft.Maui.Graphics.Resource.Styleable.MenuItem_android_orderInCategory = global::GraphicsTester.Android.Resource.Styleable.MenuItem_android_orderInCategory; - global::Microsoft.Maui.Graphics.Resource.Styleable.MenuItem_android_title = global::GraphicsTester.Android.Resource.Styleable.MenuItem_android_title; - global::Microsoft.Maui.Graphics.Resource.Styleable.MenuItem_android_titleCondensed = global::GraphicsTester.Android.Resource.Styleable.MenuItem_android_titleCondensed; - global::Microsoft.Maui.Graphics.Resource.Styleable.MenuItem_android_visible = global::GraphicsTester.Android.Resource.Styleable.MenuItem_android_visible; - global::Microsoft.Maui.Graphics.Resource.Styleable.MenuItem_contentDescription = global::GraphicsTester.Android.Resource.Styleable.MenuItem_contentDescription; - global::Microsoft.Maui.Graphics.Resource.Styleable.MenuItem_iconTint = global::GraphicsTester.Android.Resource.Styleable.MenuItem_iconTint; - global::Microsoft.Maui.Graphics.Resource.Styleable.MenuItem_iconTintMode = global::GraphicsTester.Android.Resource.Styleable.MenuItem_iconTintMode; - global::Microsoft.Maui.Graphics.Resource.Styleable.MenuItem_numericModifiers = global::GraphicsTester.Android.Resource.Styleable.MenuItem_numericModifiers; - global::Microsoft.Maui.Graphics.Resource.Styleable.MenuItem_showAsAction = global::GraphicsTester.Android.Resource.Styleable.MenuItem_showAsAction; - global::Microsoft.Maui.Graphics.Resource.Styleable.MenuItem_tooltipText = global::GraphicsTester.Android.Resource.Styleable.MenuItem_tooltipText; - global::Microsoft.Maui.Graphics.Resource.Styleable.MenuView = global::GraphicsTester.Android.Resource.Styleable.MenuView; - global::Microsoft.Maui.Graphics.Resource.Styleable.MenuView_android_headerBackground = global::GraphicsTester.Android.Resource.Styleable.MenuView_android_headerBackground; - global::Microsoft.Maui.Graphics.Resource.Styleable.MenuView_android_horizontalDivider = global::GraphicsTester.Android.Resource.Styleable.MenuView_android_horizontalDivider; - global::Microsoft.Maui.Graphics.Resource.Styleable.MenuView_android_itemBackground = global::GraphicsTester.Android.Resource.Styleable.MenuView_android_itemBackground; - global::Microsoft.Maui.Graphics.Resource.Styleable.MenuView_android_itemIconDisabledAlpha = global::GraphicsTester.Android.Resource.Styleable.MenuView_android_itemIconDisabledAlpha; - global::Microsoft.Maui.Graphics.Resource.Styleable.MenuView_android_itemTextAppearance = global::GraphicsTester.Android.Resource.Styleable.MenuView_android_itemTextAppearance; - global::Microsoft.Maui.Graphics.Resource.Styleable.MenuView_android_verticalDivider = global::GraphicsTester.Android.Resource.Styleable.MenuView_android_verticalDivider; - global::Microsoft.Maui.Graphics.Resource.Styleable.MenuView_android_windowAnimationStyle = global::GraphicsTester.Android.Resource.Styleable.MenuView_android_windowAnimationStyle; - global::Microsoft.Maui.Graphics.Resource.Styleable.MenuView_preserveIconSpacing = global::GraphicsTester.Android.Resource.Styleable.MenuView_preserveIconSpacing; - global::Microsoft.Maui.Graphics.Resource.Styleable.MenuView_subMenuArrow = global::GraphicsTester.Android.Resource.Styleable.MenuView_subMenuArrow; - global::Microsoft.Maui.Graphics.Resource.Styleable.MockView = global::GraphicsTester.Android.Resource.Styleable.MockView; - global::Microsoft.Maui.Graphics.Resource.Styleable.MockView_mock_diagonalsColor = global::GraphicsTester.Android.Resource.Styleable.MockView_mock_diagonalsColor; - global::Microsoft.Maui.Graphics.Resource.Styleable.MockView_mock_label = global::GraphicsTester.Android.Resource.Styleable.MockView_mock_label; - global::Microsoft.Maui.Graphics.Resource.Styleable.MockView_mock_labelBackgroundColor = global::GraphicsTester.Android.Resource.Styleable.MockView_mock_labelBackgroundColor; - global::Microsoft.Maui.Graphics.Resource.Styleable.MockView_mock_labelColor = global::GraphicsTester.Android.Resource.Styleable.MockView_mock_labelColor; - global::Microsoft.Maui.Graphics.Resource.Styleable.MockView_mock_showDiagonals = global::GraphicsTester.Android.Resource.Styleable.MockView_mock_showDiagonals; - global::Microsoft.Maui.Graphics.Resource.Styleable.MockView_mock_showLabel = global::GraphicsTester.Android.Resource.Styleable.MockView_mock_showLabel; - global::Microsoft.Maui.Graphics.Resource.Styleable.Motion = global::GraphicsTester.Android.Resource.Styleable.Motion; - global::Microsoft.Maui.Graphics.Resource.Styleable.MotionHelper = global::GraphicsTester.Android.Resource.Styleable.MotionHelper; - global::Microsoft.Maui.Graphics.Resource.Styleable.MotionHelper_onHide = global::GraphicsTester.Android.Resource.Styleable.MotionHelper_onHide; - global::Microsoft.Maui.Graphics.Resource.Styleable.MotionHelper_onShow = global::GraphicsTester.Android.Resource.Styleable.MotionHelper_onShow; - global::Microsoft.Maui.Graphics.Resource.Styleable.MotionLayout = global::GraphicsTester.Android.Resource.Styleable.MotionLayout; - global::Microsoft.Maui.Graphics.Resource.Styleable.MotionLayout_applyMotionScene = global::GraphicsTester.Android.Resource.Styleable.MotionLayout_applyMotionScene; - global::Microsoft.Maui.Graphics.Resource.Styleable.MotionLayout_currentState = global::GraphicsTester.Android.Resource.Styleable.MotionLayout_currentState; - global::Microsoft.Maui.Graphics.Resource.Styleable.MotionLayout_layoutDescription = global::GraphicsTester.Android.Resource.Styleable.MotionLayout_layoutDescription; - global::Microsoft.Maui.Graphics.Resource.Styleable.MotionLayout_motionDebug = global::GraphicsTester.Android.Resource.Styleable.MotionLayout_motionDebug; - global::Microsoft.Maui.Graphics.Resource.Styleable.MotionLayout_motionProgress = global::GraphicsTester.Android.Resource.Styleable.MotionLayout_motionProgress; - global::Microsoft.Maui.Graphics.Resource.Styleable.MotionLayout_showPaths = global::GraphicsTester.Android.Resource.Styleable.MotionLayout_showPaths; - global::Microsoft.Maui.Graphics.Resource.Styleable.MotionScene = global::GraphicsTester.Android.Resource.Styleable.MotionScene; - global::Microsoft.Maui.Graphics.Resource.Styleable.MotionScene_defaultDuration = global::GraphicsTester.Android.Resource.Styleable.MotionScene_defaultDuration; - global::Microsoft.Maui.Graphics.Resource.Styleable.MotionScene_layoutDuringTransition = global::GraphicsTester.Android.Resource.Styleable.MotionScene_layoutDuringTransition; - global::Microsoft.Maui.Graphics.Resource.Styleable.MotionTelltales = global::GraphicsTester.Android.Resource.Styleable.MotionTelltales; - global::Microsoft.Maui.Graphics.Resource.Styleable.MotionTelltales_telltales_tailColor = global::GraphicsTester.Android.Resource.Styleable.MotionTelltales_telltales_tailColor; - global::Microsoft.Maui.Graphics.Resource.Styleable.MotionTelltales_telltales_tailScale = global::GraphicsTester.Android.Resource.Styleable.MotionTelltales_telltales_tailScale; - global::Microsoft.Maui.Graphics.Resource.Styleable.MotionTelltales_telltales_velocityMode = global::GraphicsTester.Android.Resource.Styleable.MotionTelltales_telltales_velocityMode; - global::Microsoft.Maui.Graphics.Resource.Styleable.Motion_animate_relativeTo = global::GraphicsTester.Android.Resource.Styleable.Motion_animate_relativeTo; - global::Microsoft.Maui.Graphics.Resource.Styleable.Motion_drawPath = global::GraphicsTester.Android.Resource.Styleable.Motion_drawPath; - global::Microsoft.Maui.Graphics.Resource.Styleable.Motion_motionPathRotate = global::GraphicsTester.Android.Resource.Styleable.Motion_motionPathRotate; - global::Microsoft.Maui.Graphics.Resource.Styleable.Motion_motionStagger = global::GraphicsTester.Android.Resource.Styleable.Motion_motionStagger; - global::Microsoft.Maui.Graphics.Resource.Styleable.Motion_pathMotionArc = global::GraphicsTester.Android.Resource.Styleable.Motion_pathMotionArc; - global::Microsoft.Maui.Graphics.Resource.Styleable.Motion_transitionEasing = global::GraphicsTester.Android.Resource.Styleable.Motion_transitionEasing; - global::Microsoft.Maui.Graphics.Resource.Styleable.NavigationView = global::GraphicsTester.Android.Resource.Styleable.NavigationView; - global::Microsoft.Maui.Graphics.Resource.Styleable.NavigationView_android_background = global::GraphicsTester.Android.Resource.Styleable.NavigationView_android_background; - global::Microsoft.Maui.Graphics.Resource.Styleable.NavigationView_android_fitsSystemWindows = global::GraphicsTester.Android.Resource.Styleable.NavigationView_android_fitsSystemWindows; - global::Microsoft.Maui.Graphics.Resource.Styleable.NavigationView_android_maxWidth = global::GraphicsTester.Android.Resource.Styleable.NavigationView_android_maxWidth; - global::Microsoft.Maui.Graphics.Resource.Styleable.NavigationView_elevation = global::GraphicsTester.Android.Resource.Styleable.NavigationView_elevation; - global::Microsoft.Maui.Graphics.Resource.Styleable.NavigationView_headerLayout = global::GraphicsTester.Android.Resource.Styleable.NavigationView_headerLayout; - global::Microsoft.Maui.Graphics.Resource.Styleable.NavigationView_itemBackground = global::GraphicsTester.Android.Resource.Styleable.NavigationView_itemBackground; - global::Microsoft.Maui.Graphics.Resource.Styleable.NavigationView_itemHorizontalPadding = global::GraphicsTester.Android.Resource.Styleable.NavigationView_itemHorizontalPadding; - global::Microsoft.Maui.Graphics.Resource.Styleable.NavigationView_itemIconPadding = global::GraphicsTester.Android.Resource.Styleable.NavigationView_itemIconPadding; - global::Microsoft.Maui.Graphics.Resource.Styleable.NavigationView_itemIconSize = global::GraphicsTester.Android.Resource.Styleable.NavigationView_itemIconSize; - global::Microsoft.Maui.Graphics.Resource.Styleable.NavigationView_itemIconTint = global::GraphicsTester.Android.Resource.Styleable.NavigationView_itemIconTint; - global::Microsoft.Maui.Graphics.Resource.Styleable.NavigationView_itemMaxLines = global::GraphicsTester.Android.Resource.Styleable.NavigationView_itemMaxLines; - global::Microsoft.Maui.Graphics.Resource.Styleable.NavigationView_itemShapeAppearance = global::GraphicsTester.Android.Resource.Styleable.NavigationView_itemShapeAppearance; - global::Microsoft.Maui.Graphics.Resource.Styleable.NavigationView_itemShapeAppearanceOverlay = global::GraphicsTester.Android.Resource.Styleable.NavigationView_itemShapeAppearanceOverlay; - global::Microsoft.Maui.Graphics.Resource.Styleable.NavigationView_itemShapeFillColor = global::GraphicsTester.Android.Resource.Styleable.NavigationView_itemShapeFillColor; - global::Microsoft.Maui.Graphics.Resource.Styleable.NavigationView_itemShapeInsetBottom = global::GraphicsTester.Android.Resource.Styleable.NavigationView_itemShapeInsetBottom; - global::Microsoft.Maui.Graphics.Resource.Styleable.NavigationView_itemShapeInsetEnd = global::GraphicsTester.Android.Resource.Styleable.NavigationView_itemShapeInsetEnd; - global::Microsoft.Maui.Graphics.Resource.Styleable.NavigationView_itemShapeInsetStart = global::GraphicsTester.Android.Resource.Styleable.NavigationView_itemShapeInsetStart; - global::Microsoft.Maui.Graphics.Resource.Styleable.NavigationView_itemShapeInsetTop = global::GraphicsTester.Android.Resource.Styleable.NavigationView_itemShapeInsetTop; - global::Microsoft.Maui.Graphics.Resource.Styleable.NavigationView_itemTextAppearance = global::GraphicsTester.Android.Resource.Styleable.NavigationView_itemTextAppearance; - global::Microsoft.Maui.Graphics.Resource.Styleable.NavigationView_itemTextColor = global::GraphicsTester.Android.Resource.Styleable.NavigationView_itemTextColor; - global::Microsoft.Maui.Graphics.Resource.Styleable.NavigationView_menu = global::GraphicsTester.Android.Resource.Styleable.NavigationView_menu; - global::Microsoft.Maui.Graphics.Resource.Styleable.NavigationView_shapeAppearance = global::GraphicsTester.Android.Resource.Styleable.NavigationView_shapeAppearance; - global::Microsoft.Maui.Graphics.Resource.Styleable.NavigationView_shapeAppearanceOverlay = global::GraphicsTester.Android.Resource.Styleable.NavigationView_shapeAppearanceOverlay; - global::Microsoft.Maui.Graphics.Resource.Styleable.OnClick = global::GraphicsTester.Android.Resource.Styleable.OnClick; - global::Microsoft.Maui.Graphics.Resource.Styleable.OnClick_clickAction = global::GraphicsTester.Android.Resource.Styleable.OnClick_clickAction; - global::Microsoft.Maui.Graphics.Resource.Styleable.OnClick_targetId = global::GraphicsTester.Android.Resource.Styleable.OnClick_targetId; - global::Microsoft.Maui.Graphics.Resource.Styleable.OnSwipe = global::GraphicsTester.Android.Resource.Styleable.OnSwipe; - global::Microsoft.Maui.Graphics.Resource.Styleable.OnSwipe_dragDirection = global::GraphicsTester.Android.Resource.Styleable.OnSwipe_dragDirection; - global::Microsoft.Maui.Graphics.Resource.Styleable.OnSwipe_dragScale = global::GraphicsTester.Android.Resource.Styleable.OnSwipe_dragScale; - global::Microsoft.Maui.Graphics.Resource.Styleable.OnSwipe_dragThreshold = global::GraphicsTester.Android.Resource.Styleable.OnSwipe_dragThreshold; - global::Microsoft.Maui.Graphics.Resource.Styleable.OnSwipe_limitBoundsTo = global::GraphicsTester.Android.Resource.Styleable.OnSwipe_limitBoundsTo; - global::Microsoft.Maui.Graphics.Resource.Styleable.OnSwipe_maxAcceleration = global::GraphicsTester.Android.Resource.Styleable.OnSwipe_maxAcceleration; - global::Microsoft.Maui.Graphics.Resource.Styleable.OnSwipe_maxVelocity = global::GraphicsTester.Android.Resource.Styleable.OnSwipe_maxVelocity; - global::Microsoft.Maui.Graphics.Resource.Styleable.OnSwipe_moveWhenScrollAtTop = global::GraphicsTester.Android.Resource.Styleable.OnSwipe_moveWhenScrollAtTop; - global::Microsoft.Maui.Graphics.Resource.Styleable.OnSwipe_nestedScrollFlags = global::GraphicsTester.Android.Resource.Styleable.OnSwipe_nestedScrollFlags; - global::Microsoft.Maui.Graphics.Resource.Styleable.OnSwipe_onTouchUp = global::GraphicsTester.Android.Resource.Styleable.OnSwipe_onTouchUp; - global::Microsoft.Maui.Graphics.Resource.Styleable.OnSwipe_touchAnchorId = global::GraphicsTester.Android.Resource.Styleable.OnSwipe_touchAnchorId; - global::Microsoft.Maui.Graphics.Resource.Styleable.OnSwipe_touchAnchorSide = global::GraphicsTester.Android.Resource.Styleable.OnSwipe_touchAnchorSide; - global::Microsoft.Maui.Graphics.Resource.Styleable.OnSwipe_touchRegionId = global::GraphicsTester.Android.Resource.Styleable.OnSwipe_touchRegionId; - global::Microsoft.Maui.Graphics.Resource.Styleable.PopupWindow = global::GraphicsTester.Android.Resource.Styleable.PopupWindow; - global::Microsoft.Maui.Graphics.Resource.Styleable.PopupWindowBackgroundState = global::GraphicsTester.Android.Resource.Styleable.PopupWindowBackgroundState; - global::Microsoft.Maui.Graphics.Resource.Styleable.PopupWindowBackgroundState_state_above_anchor = global::GraphicsTester.Android.Resource.Styleable.PopupWindowBackgroundState_state_above_anchor; - global::Microsoft.Maui.Graphics.Resource.Styleable.PopupWindow_android_popupAnimationStyle = global::GraphicsTester.Android.Resource.Styleable.PopupWindow_android_popupAnimationStyle; - global::Microsoft.Maui.Graphics.Resource.Styleable.PopupWindow_android_popupBackground = global::GraphicsTester.Android.Resource.Styleable.PopupWindow_android_popupBackground; - global::Microsoft.Maui.Graphics.Resource.Styleable.PopupWindow_overlapAnchor = global::GraphicsTester.Android.Resource.Styleable.PopupWindow_overlapAnchor; - global::Microsoft.Maui.Graphics.Resource.Styleable.PropertySet = global::GraphicsTester.Android.Resource.Styleable.PropertySet; - global::Microsoft.Maui.Graphics.Resource.Styleable.PropertySet_android_alpha = global::GraphicsTester.Android.Resource.Styleable.PropertySet_android_alpha; - global::Microsoft.Maui.Graphics.Resource.Styleable.PropertySet_android_visibility = global::GraphicsTester.Android.Resource.Styleable.PropertySet_android_visibility; - global::Microsoft.Maui.Graphics.Resource.Styleable.PropertySet_layout_constraintTag = global::GraphicsTester.Android.Resource.Styleable.PropertySet_layout_constraintTag; - global::Microsoft.Maui.Graphics.Resource.Styleable.PropertySet_motionProgress = global::GraphicsTester.Android.Resource.Styleable.PropertySet_motionProgress; - global::Microsoft.Maui.Graphics.Resource.Styleable.PropertySet_visibilityMode = global::GraphicsTester.Android.Resource.Styleable.PropertySet_visibilityMode; - global::Microsoft.Maui.Graphics.Resource.Styleable.RadialViewGroup = global::GraphicsTester.Android.Resource.Styleable.RadialViewGroup; - global::Microsoft.Maui.Graphics.Resource.Styleable.RadialViewGroup_materialCircleRadius = global::GraphicsTester.Android.Resource.Styleable.RadialViewGroup_materialCircleRadius; - global::Microsoft.Maui.Graphics.Resource.Styleable.RangeSlider = global::GraphicsTester.Android.Resource.Styleable.RangeSlider; - global::Microsoft.Maui.Graphics.Resource.Styleable.RangeSlider_minSeparation = global::GraphicsTester.Android.Resource.Styleable.RangeSlider_minSeparation; - global::Microsoft.Maui.Graphics.Resource.Styleable.RangeSlider_values = global::GraphicsTester.Android.Resource.Styleable.RangeSlider_values; - global::Microsoft.Maui.Graphics.Resource.Styleable.RecycleListView = global::GraphicsTester.Android.Resource.Styleable.RecycleListView; - global::Microsoft.Maui.Graphics.Resource.Styleable.RecycleListView_paddingBottomNoButtons = global::GraphicsTester.Android.Resource.Styleable.RecycleListView_paddingBottomNoButtons; - global::Microsoft.Maui.Graphics.Resource.Styleable.RecycleListView_paddingTopNoTitle = global::GraphicsTester.Android.Resource.Styleable.RecycleListView_paddingTopNoTitle; - global::Microsoft.Maui.Graphics.Resource.Styleable.RecyclerView = global::GraphicsTester.Android.Resource.Styleable.RecyclerView; - global::Microsoft.Maui.Graphics.Resource.Styleable.RecyclerView_android_clipToPadding = global::GraphicsTester.Android.Resource.Styleable.RecyclerView_android_clipToPadding; - global::Microsoft.Maui.Graphics.Resource.Styleable.RecyclerView_android_descendantFocusability = global::GraphicsTester.Android.Resource.Styleable.RecyclerView_android_descendantFocusability; - global::Microsoft.Maui.Graphics.Resource.Styleable.RecyclerView_android_orientation = global::GraphicsTester.Android.Resource.Styleable.RecyclerView_android_orientation; - global::Microsoft.Maui.Graphics.Resource.Styleable.RecyclerView_fastScrollEnabled = global::GraphicsTester.Android.Resource.Styleable.RecyclerView_fastScrollEnabled; - global::Microsoft.Maui.Graphics.Resource.Styleable.RecyclerView_fastScrollHorizontalThumbDrawable = global::GraphicsTester.Android.Resource.Styleable.RecyclerView_fastScrollHorizontalThumbDrawable; - global::Microsoft.Maui.Graphics.Resource.Styleable.RecyclerView_fastScrollHorizontalTrackDrawable = global::GraphicsTester.Android.Resource.Styleable.RecyclerView_fastScrollHorizontalTrackDrawable; - global::Microsoft.Maui.Graphics.Resource.Styleable.RecyclerView_fastScrollVerticalThumbDrawable = global::GraphicsTester.Android.Resource.Styleable.RecyclerView_fastScrollVerticalThumbDrawable; - global::Microsoft.Maui.Graphics.Resource.Styleable.RecyclerView_fastScrollVerticalTrackDrawable = global::GraphicsTester.Android.Resource.Styleable.RecyclerView_fastScrollVerticalTrackDrawable; - global::Microsoft.Maui.Graphics.Resource.Styleable.RecyclerView_layoutManager = global::GraphicsTester.Android.Resource.Styleable.RecyclerView_layoutManager; - global::Microsoft.Maui.Graphics.Resource.Styleable.RecyclerView_reverseLayout = global::GraphicsTester.Android.Resource.Styleable.RecyclerView_reverseLayout; - global::Microsoft.Maui.Graphics.Resource.Styleable.RecyclerView_spanCount = global::GraphicsTester.Android.Resource.Styleable.RecyclerView_spanCount; - global::Microsoft.Maui.Graphics.Resource.Styleable.RecyclerView_stackFromEnd = global::GraphicsTester.Android.Resource.Styleable.RecyclerView_stackFromEnd; - global::Microsoft.Maui.Graphics.Resource.Styleable.ScrimInsetsFrameLayout = global::GraphicsTester.Android.Resource.Styleable.ScrimInsetsFrameLayout; - global::Microsoft.Maui.Graphics.Resource.Styleable.ScrimInsetsFrameLayout_insetForeground = global::GraphicsTester.Android.Resource.Styleable.ScrimInsetsFrameLayout_insetForeground; - global::Microsoft.Maui.Graphics.Resource.Styleable.ScrollingViewBehavior_Layout = global::GraphicsTester.Android.Resource.Styleable.ScrollingViewBehavior_Layout; - global::Microsoft.Maui.Graphics.Resource.Styleable.ScrollingViewBehavior_Layout_behavior_overlapTop = global::GraphicsTester.Android.Resource.Styleable.ScrollingViewBehavior_Layout_behavior_overlapTop; - global::Microsoft.Maui.Graphics.Resource.Styleable.SearchView = global::GraphicsTester.Android.Resource.Styleable.SearchView; - global::Microsoft.Maui.Graphics.Resource.Styleable.SearchView_android_focusable = global::GraphicsTester.Android.Resource.Styleable.SearchView_android_focusable; - global::Microsoft.Maui.Graphics.Resource.Styleable.SearchView_android_imeOptions = global::GraphicsTester.Android.Resource.Styleable.SearchView_android_imeOptions; - global::Microsoft.Maui.Graphics.Resource.Styleable.SearchView_android_inputType = global::GraphicsTester.Android.Resource.Styleable.SearchView_android_inputType; - global::Microsoft.Maui.Graphics.Resource.Styleable.SearchView_android_maxWidth = global::GraphicsTester.Android.Resource.Styleable.SearchView_android_maxWidth; - global::Microsoft.Maui.Graphics.Resource.Styleable.SearchView_closeIcon = global::GraphicsTester.Android.Resource.Styleable.SearchView_closeIcon; - global::Microsoft.Maui.Graphics.Resource.Styleable.SearchView_commitIcon = global::GraphicsTester.Android.Resource.Styleable.SearchView_commitIcon; - global::Microsoft.Maui.Graphics.Resource.Styleable.SearchView_defaultQueryHint = global::GraphicsTester.Android.Resource.Styleable.SearchView_defaultQueryHint; - global::Microsoft.Maui.Graphics.Resource.Styleable.SearchView_goIcon = global::GraphicsTester.Android.Resource.Styleable.SearchView_goIcon; - global::Microsoft.Maui.Graphics.Resource.Styleable.SearchView_iconifiedByDefault = global::GraphicsTester.Android.Resource.Styleable.SearchView_iconifiedByDefault; - global::Microsoft.Maui.Graphics.Resource.Styleable.SearchView_layout = global::GraphicsTester.Android.Resource.Styleable.SearchView_layout; - global::Microsoft.Maui.Graphics.Resource.Styleable.SearchView_queryBackground = global::GraphicsTester.Android.Resource.Styleable.SearchView_queryBackground; - global::Microsoft.Maui.Graphics.Resource.Styleable.SearchView_queryHint = global::GraphicsTester.Android.Resource.Styleable.SearchView_queryHint; - global::Microsoft.Maui.Graphics.Resource.Styleable.SearchView_searchHintIcon = global::GraphicsTester.Android.Resource.Styleable.SearchView_searchHintIcon; - global::Microsoft.Maui.Graphics.Resource.Styleable.SearchView_searchIcon = global::GraphicsTester.Android.Resource.Styleable.SearchView_searchIcon; - global::Microsoft.Maui.Graphics.Resource.Styleable.SearchView_submitBackground = global::GraphicsTester.Android.Resource.Styleable.SearchView_submitBackground; - global::Microsoft.Maui.Graphics.Resource.Styleable.SearchView_suggestionRowLayout = global::GraphicsTester.Android.Resource.Styleable.SearchView_suggestionRowLayout; - global::Microsoft.Maui.Graphics.Resource.Styleable.SearchView_voiceIcon = global::GraphicsTester.Android.Resource.Styleable.SearchView_voiceIcon; - global::Microsoft.Maui.Graphics.Resource.Styleable.ShapeableImageView = global::GraphicsTester.Android.Resource.Styleable.ShapeableImageView; - global::Microsoft.Maui.Graphics.Resource.Styleable.ShapeableImageView_contentPadding = global::GraphicsTester.Android.Resource.Styleable.ShapeableImageView_contentPadding; - global::Microsoft.Maui.Graphics.Resource.Styleable.ShapeableImageView_contentPaddingBottom = global::GraphicsTester.Android.Resource.Styleable.ShapeableImageView_contentPaddingBottom; - global::Microsoft.Maui.Graphics.Resource.Styleable.ShapeableImageView_contentPaddingEnd = global::GraphicsTester.Android.Resource.Styleable.ShapeableImageView_contentPaddingEnd; - global::Microsoft.Maui.Graphics.Resource.Styleable.ShapeableImageView_contentPaddingLeft = global::GraphicsTester.Android.Resource.Styleable.ShapeableImageView_contentPaddingLeft; - global::Microsoft.Maui.Graphics.Resource.Styleable.ShapeableImageView_contentPaddingRight = global::GraphicsTester.Android.Resource.Styleable.ShapeableImageView_contentPaddingRight; - global::Microsoft.Maui.Graphics.Resource.Styleable.ShapeableImageView_contentPaddingStart = global::GraphicsTester.Android.Resource.Styleable.ShapeableImageView_contentPaddingStart; - global::Microsoft.Maui.Graphics.Resource.Styleable.ShapeableImageView_contentPaddingTop = global::GraphicsTester.Android.Resource.Styleable.ShapeableImageView_contentPaddingTop; - global::Microsoft.Maui.Graphics.Resource.Styleable.ShapeableImageView_shapeAppearance = global::GraphicsTester.Android.Resource.Styleable.ShapeableImageView_shapeAppearance; - global::Microsoft.Maui.Graphics.Resource.Styleable.ShapeableImageView_shapeAppearanceOverlay = global::GraphicsTester.Android.Resource.Styleable.ShapeableImageView_shapeAppearanceOverlay; - global::Microsoft.Maui.Graphics.Resource.Styleable.ShapeableImageView_strokeColor = global::GraphicsTester.Android.Resource.Styleable.ShapeableImageView_strokeColor; - global::Microsoft.Maui.Graphics.Resource.Styleable.ShapeableImageView_strokeWidth = global::GraphicsTester.Android.Resource.Styleable.ShapeableImageView_strokeWidth; - global::Microsoft.Maui.Graphics.Resource.Styleable.ShapeAppearance = global::GraphicsTester.Android.Resource.Styleable.ShapeAppearance; - global::Microsoft.Maui.Graphics.Resource.Styleable.ShapeAppearance_cornerFamily = global::GraphicsTester.Android.Resource.Styleable.ShapeAppearance_cornerFamily; - global::Microsoft.Maui.Graphics.Resource.Styleable.ShapeAppearance_cornerFamilyBottomLeft = global::GraphicsTester.Android.Resource.Styleable.ShapeAppearance_cornerFamilyBottomLeft; - global::Microsoft.Maui.Graphics.Resource.Styleable.ShapeAppearance_cornerFamilyBottomRight = global::GraphicsTester.Android.Resource.Styleable.ShapeAppearance_cornerFamilyBottomRight; - global::Microsoft.Maui.Graphics.Resource.Styleable.ShapeAppearance_cornerFamilyTopLeft = global::GraphicsTester.Android.Resource.Styleable.ShapeAppearance_cornerFamilyTopLeft; - global::Microsoft.Maui.Graphics.Resource.Styleable.ShapeAppearance_cornerFamilyTopRight = global::GraphicsTester.Android.Resource.Styleable.ShapeAppearance_cornerFamilyTopRight; - global::Microsoft.Maui.Graphics.Resource.Styleable.ShapeAppearance_cornerSize = global::GraphicsTester.Android.Resource.Styleable.ShapeAppearance_cornerSize; - global::Microsoft.Maui.Graphics.Resource.Styleable.ShapeAppearance_cornerSizeBottomLeft = global::GraphicsTester.Android.Resource.Styleable.ShapeAppearance_cornerSizeBottomLeft; - global::Microsoft.Maui.Graphics.Resource.Styleable.ShapeAppearance_cornerSizeBottomRight = global::GraphicsTester.Android.Resource.Styleable.ShapeAppearance_cornerSizeBottomRight; - global::Microsoft.Maui.Graphics.Resource.Styleable.ShapeAppearance_cornerSizeTopLeft = global::GraphicsTester.Android.Resource.Styleable.ShapeAppearance_cornerSizeTopLeft; - global::Microsoft.Maui.Graphics.Resource.Styleable.ShapeAppearance_cornerSizeTopRight = global::GraphicsTester.Android.Resource.Styleable.ShapeAppearance_cornerSizeTopRight; - global::Microsoft.Maui.Graphics.Resource.Styleable.Slider = global::GraphicsTester.Android.Resource.Styleable.Slider; - global::Microsoft.Maui.Graphics.Resource.Styleable.Slider_android_enabled = global::GraphicsTester.Android.Resource.Styleable.Slider_android_enabled; - global::Microsoft.Maui.Graphics.Resource.Styleable.Slider_android_stepSize = global::GraphicsTester.Android.Resource.Styleable.Slider_android_stepSize; - global::Microsoft.Maui.Graphics.Resource.Styleable.Slider_android_value = global::GraphicsTester.Android.Resource.Styleable.Slider_android_value; - global::Microsoft.Maui.Graphics.Resource.Styleable.Slider_android_valueFrom = global::GraphicsTester.Android.Resource.Styleable.Slider_android_valueFrom; - global::Microsoft.Maui.Graphics.Resource.Styleable.Slider_android_valueTo = global::GraphicsTester.Android.Resource.Styleable.Slider_android_valueTo; - global::Microsoft.Maui.Graphics.Resource.Styleable.Slider_haloColor = global::GraphicsTester.Android.Resource.Styleable.Slider_haloColor; - global::Microsoft.Maui.Graphics.Resource.Styleable.Slider_haloRadius = global::GraphicsTester.Android.Resource.Styleable.Slider_haloRadius; - global::Microsoft.Maui.Graphics.Resource.Styleable.Slider_labelBehavior = global::GraphicsTester.Android.Resource.Styleable.Slider_labelBehavior; - global::Microsoft.Maui.Graphics.Resource.Styleable.Slider_labelStyle = global::GraphicsTester.Android.Resource.Styleable.Slider_labelStyle; - global::Microsoft.Maui.Graphics.Resource.Styleable.Slider_thumbColor = global::GraphicsTester.Android.Resource.Styleable.Slider_thumbColor; - global::Microsoft.Maui.Graphics.Resource.Styleable.Slider_thumbElevation = global::GraphicsTester.Android.Resource.Styleable.Slider_thumbElevation; - global::Microsoft.Maui.Graphics.Resource.Styleable.Slider_thumbRadius = global::GraphicsTester.Android.Resource.Styleable.Slider_thumbRadius; - global::Microsoft.Maui.Graphics.Resource.Styleable.Slider_thumbStrokeColor = global::GraphicsTester.Android.Resource.Styleable.Slider_thumbStrokeColor; - global::Microsoft.Maui.Graphics.Resource.Styleable.Slider_thumbStrokeWidth = global::GraphicsTester.Android.Resource.Styleable.Slider_thumbStrokeWidth; - global::Microsoft.Maui.Graphics.Resource.Styleable.Slider_tickColor = global::GraphicsTester.Android.Resource.Styleable.Slider_tickColor; - global::Microsoft.Maui.Graphics.Resource.Styleable.Slider_tickColorActive = global::GraphicsTester.Android.Resource.Styleable.Slider_tickColorActive; - global::Microsoft.Maui.Graphics.Resource.Styleable.Slider_tickColorInactive = global::GraphicsTester.Android.Resource.Styleable.Slider_tickColorInactive; - global::Microsoft.Maui.Graphics.Resource.Styleable.Slider_tickVisible = global::GraphicsTester.Android.Resource.Styleable.Slider_tickVisible; - global::Microsoft.Maui.Graphics.Resource.Styleable.Slider_trackColor = global::GraphicsTester.Android.Resource.Styleable.Slider_trackColor; - global::Microsoft.Maui.Graphics.Resource.Styleable.Slider_trackColorActive = global::GraphicsTester.Android.Resource.Styleable.Slider_trackColorActive; - global::Microsoft.Maui.Graphics.Resource.Styleable.Slider_trackColorInactive = global::GraphicsTester.Android.Resource.Styleable.Slider_trackColorInactive; - global::Microsoft.Maui.Graphics.Resource.Styleable.Slider_trackHeight = global::GraphicsTester.Android.Resource.Styleable.Slider_trackHeight; - global::Microsoft.Maui.Graphics.Resource.Styleable.Snackbar = global::GraphicsTester.Android.Resource.Styleable.Snackbar; - global::Microsoft.Maui.Graphics.Resource.Styleable.SnackbarLayout = global::GraphicsTester.Android.Resource.Styleable.SnackbarLayout; - global::Microsoft.Maui.Graphics.Resource.Styleable.SnackbarLayout_actionTextColorAlpha = global::GraphicsTester.Android.Resource.Styleable.SnackbarLayout_actionTextColorAlpha; - global::Microsoft.Maui.Graphics.Resource.Styleable.SnackbarLayout_android_maxWidth = global::GraphicsTester.Android.Resource.Styleable.SnackbarLayout_android_maxWidth; - global::Microsoft.Maui.Graphics.Resource.Styleable.SnackbarLayout_animationMode = global::GraphicsTester.Android.Resource.Styleable.SnackbarLayout_animationMode; - global::Microsoft.Maui.Graphics.Resource.Styleable.SnackbarLayout_backgroundOverlayColorAlpha = global::GraphicsTester.Android.Resource.Styleable.SnackbarLayout_backgroundOverlayColorAlpha; - global::Microsoft.Maui.Graphics.Resource.Styleable.SnackbarLayout_backgroundTint = global::GraphicsTester.Android.Resource.Styleable.SnackbarLayout_backgroundTint; - global::Microsoft.Maui.Graphics.Resource.Styleable.SnackbarLayout_backgroundTintMode = global::GraphicsTester.Android.Resource.Styleable.SnackbarLayout_backgroundTintMode; - global::Microsoft.Maui.Graphics.Resource.Styleable.SnackbarLayout_elevation = global::GraphicsTester.Android.Resource.Styleable.SnackbarLayout_elevation; - global::Microsoft.Maui.Graphics.Resource.Styleable.SnackbarLayout_maxActionInlineWidth = global::GraphicsTester.Android.Resource.Styleable.SnackbarLayout_maxActionInlineWidth; - global::Microsoft.Maui.Graphics.Resource.Styleable.Snackbar_snackbarButtonStyle = global::GraphicsTester.Android.Resource.Styleable.Snackbar_snackbarButtonStyle; - global::Microsoft.Maui.Graphics.Resource.Styleable.Snackbar_snackbarStyle = global::GraphicsTester.Android.Resource.Styleable.Snackbar_snackbarStyle; - global::Microsoft.Maui.Graphics.Resource.Styleable.Snackbar_snackbarTextViewStyle = global::GraphicsTester.Android.Resource.Styleable.Snackbar_snackbarTextViewStyle; - global::Microsoft.Maui.Graphics.Resource.Styleable.Spinner = global::GraphicsTester.Android.Resource.Styleable.Spinner; - global::Microsoft.Maui.Graphics.Resource.Styleable.Spinner_android_dropDownWidth = global::GraphicsTester.Android.Resource.Styleable.Spinner_android_dropDownWidth; - global::Microsoft.Maui.Graphics.Resource.Styleable.Spinner_android_entries = global::GraphicsTester.Android.Resource.Styleable.Spinner_android_entries; - global::Microsoft.Maui.Graphics.Resource.Styleable.Spinner_android_popupBackground = global::GraphicsTester.Android.Resource.Styleable.Spinner_android_popupBackground; - global::Microsoft.Maui.Graphics.Resource.Styleable.Spinner_android_prompt = global::GraphicsTester.Android.Resource.Styleable.Spinner_android_prompt; - global::Microsoft.Maui.Graphics.Resource.Styleable.Spinner_popupTheme = global::GraphicsTester.Android.Resource.Styleable.Spinner_popupTheme; - global::Microsoft.Maui.Graphics.Resource.Styleable.State = global::GraphicsTester.Android.Resource.Styleable.State; - global::Microsoft.Maui.Graphics.Resource.Styleable.StateListDrawable = global::GraphicsTester.Android.Resource.Styleable.StateListDrawable; - global::Microsoft.Maui.Graphics.Resource.Styleable.StateListDrawableItem = global::GraphicsTester.Android.Resource.Styleable.StateListDrawableItem; - global::Microsoft.Maui.Graphics.Resource.Styleable.StateListDrawableItem_android_drawable = global::GraphicsTester.Android.Resource.Styleable.StateListDrawableItem_android_drawable; - global::Microsoft.Maui.Graphics.Resource.Styleable.StateListDrawable_android_constantSize = global::GraphicsTester.Android.Resource.Styleable.StateListDrawable_android_constantSize; - global::Microsoft.Maui.Graphics.Resource.Styleable.StateListDrawable_android_dither = global::GraphicsTester.Android.Resource.Styleable.StateListDrawable_android_dither; - global::Microsoft.Maui.Graphics.Resource.Styleable.StateListDrawable_android_enterFadeDuration = global::GraphicsTester.Android.Resource.Styleable.StateListDrawable_android_enterFadeDuration; - global::Microsoft.Maui.Graphics.Resource.Styleable.StateListDrawable_android_exitFadeDuration = global::GraphicsTester.Android.Resource.Styleable.StateListDrawable_android_exitFadeDuration; - global::Microsoft.Maui.Graphics.Resource.Styleable.StateListDrawable_android_variablePadding = global::GraphicsTester.Android.Resource.Styleable.StateListDrawable_android_variablePadding; - global::Microsoft.Maui.Graphics.Resource.Styleable.StateListDrawable_android_visible = global::GraphicsTester.Android.Resource.Styleable.StateListDrawable_android_visible; - global::Microsoft.Maui.Graphics.Resource.Styleable.StateSet = global::GraphicsTester.Android.Resource.Styleable.StateSet; - global::Microsoft.Maui.Graphics.Resource.Styleable.StateSet_defaultState = global::GraphicsTester.Android.Resource.Styleable.StateSet_defaultState; - global::Microsoft.Maui.Graphics.Resource.Styleable.State_android_id = global::GraphicsTester.Android.Resource.Styleable.State_android_id; - global::Microsoft.Maui.Graphics.Resource.Styleable.State_constraints = global::GraphicsTester.Android.Resource.Styleable.State_constraints; - global::Microsoft.Maui.Graphics.Resource.Styleable.SwipeRefreshLayout = global::GraphicsTester.Android.Resource.Styleable.SwipeRefreshLayout; - global::Microsoft.Maui.Graphics.Resource.Styleable.SwipeRefreshLayout_swipeRefreshLayoutProgressSpinnerBackgroundColor = global::GraphicsTester.Android.Resource.Styleable.SwipeRefreshLayout_swipeRefreshLayoutProgressSpinnerBackgroundColor; - global::Microsoft.Maui.Graphics.Resource.Styleable.SwitchCompat = global::GraphicsTester.Android.Resource.Styleable.SwitchCompat; - global::Microsoft.Maui.Graphics.Resource.Styleable.SwitchCompat_android_textOff = global::GraphicsTester.Android.Resource.Styleable.SwitchCompat_android_textOff; - global::Microsoft.Maui.Graphics.Resource.Styleable.SwitchCompat_android_textOn = global::GraphicsTester.Android.Resource.Styleable.SwitchCompat_android_textOn; - global::Microsoft.Maui.Graphics.Resource.Styleable.SwitchCompat_android_thumb = global::GraphicsTester.Android.Resource.Styleable.SwitchCompat_android_thumb; - global::Microsoft.Maui.Graphics.Resource.Styleable.SwitchCompat_showText = global::GraphicsTester.Android.Resource.Styleable.SwitchCompat_showText; - global::Microsoft.Maui.Graphics.Resource.Styleable.SwitchCompat_splitTrack = global::GraphicsTester.Android.Resource.Styleable.SwitchCompat_splitTrack; - global::Microsoft.Maui.Graphics.Resource.Styleable.SwitchCompat_switchMinWidth = global::GraphicsTester.Android.Resource.Styleable.SwitchCompat_switchMinWidth; - global::Microsoft.Maui.Graphics.Resource.Styleable.SwitchCompat_switchPadding = global::GraphicsTester.Android.Resource.Styleable.SwitchCompat_switchPadding; - global::Microsoft.Maui.Graphics.Resource.Styleable.SwitchCompat_switchTextAppearance = global::GraphicsTester.Android.Resource.Styleable.SwitchCompat_switchTextAppearance; - global::Microsoft.Maui.Graphics.Resource.Styleable.SwitchCompat_thumbTextPadding = global::GraphicsTester.Android.Resource.Styleable.SwitchCompat_thumbTextPadding; - global::Microsoft.Maui.Graphics.Resource.Styleable.SwitchCompat_thumbTint = global::GraphicsTester.Android.Resource.Styleable.SwitchCompat_thumbTint; - global::Microsoft.Maui.Graphics.Resource.Styleable.SwitchCompat_thumbTintMode = global::GraphicsTester.Android.Resource.Styleable.SwitchCompat_thumbTintMode; - global::Microsoft.Maui.Graphics.Resource.Styleable.SwitchCompat_track = global::GraphicsTester.Android.Resource.Styleable.SwitchCompat_track; - global::Microsoft.Maui.Graphics.Resource.Styleable.SwitchCompat_trackTint = global::GraphicsTester.Android.Resource.Styleable.SwitchCompat_trackTint; - global::Microsoft.Maui.Graphics.Resource.Styleable.SwitchCompat_trackTintMode = global::GraphicsTester.Android.Resource.Styleable.SwitchCompat_trackTintMode; - global::Microsoft.Maui.Graphics.Resource.Styleable.SwitchMaterial = global::GraphicsTester.Android.Resource.Styleable.SwitchMaterial; - global::Microsoft.Maui.Graphics.Resource.Styleable.SwitchMaterial_useMaterialThemeColors = global::GraphicsTester.Android.Resource.Styleable.SwitchMaterial_useMaterialThemeColors; - global::Microsoft.Maui.Graphics.Resource.Styleable.TabItem = global::GraphicsTester.Android.Resource.Styleable.TabItem; - global::Microsoft.Maui.Graphics.Resource.Styleable.TabItem_android_icon = global::GraphicsTester.Android.Resource.Styleable.TabItem_android_icon; - global::Microsoft.Maui.Graphics.Resource.Styleable.TabItem_android_layout = global::GraphicsTester.Android.Resource.Styleable.TabItem_android_layout; - global::Microsoft.Maui.Graphics.Resource.Styleable.TabItem_android_text = global::GraphicsTester.Android.Resource.Styleable.TabItem_android_text; - global::Microsoft.Maui.Graphics.Resource.Styleable.TabLayout = global::GraphicsTester.Android.Resource.Styleable.TabLayout; - global::Microsoft.Maui.Graphics.Resource.Styleable.TabLayout_tabBackground = global::GraphicsTester.Android.Resource.Styleable.TabLayout_tabBackground; - global::Microsoft.Maui.Graphics.Resource.Styleable.TabLayout_tabContentStart = global::GraphicsTester.Android.Resource.Styleable.TabLayout_tabContentStart; - global::Microsoft.Maui.Graphics.Resource.Styleable.TabLayout_tabGravity = global::GraphicsTester.Android.Resource.Styleable.TabLayout_tabGravity; - global::Microsoft.Maui.Graphics.Resource.Styleable.TabLayout_tabIconTint = global::GraphicsTester.Android.Resource.Styleable.TabLayout_tabIconTint; - global::Microsoft.Maui.Graphics.Resource.Styleable.TabLayout_tabIconTintMode = global::GraphicsTester.Android.Resource.Styleable.TabLayout_tabIconTintMode; - global::Microsoft.Maui.Graphics.Resource.Styleable.TabLayout_tabIndicator = global::GraphicsTester.Android.Resource.Styleable.TabLayout_tabIndicator; - global::Microsoft.Maui.Graphics.Resource.Styleable.TabLayout_tabIndicatorAnimationDuration = global::GraphicsTester.Android.Resource.Styleable.TabLayout_tabIndicatorAnimationDuration; - global::Microsoft.Maui.Graphics.Resource.Styleable.TabLayout_tabIndicatorAnimationMode = global::GraphicsTester.Android.Resource.Styleable.TabLayout_tabIndicatorAnimationMode; - global::Microsoft.Maui.Graphics.Resource.Styleable.TabLayout_tabIndicatorColor = global::GraphicsTester.Android.Resource.Styleable.TabLayout_tabIndicatorColor; - global::Microsoft.Maui.Graphics.Resource.Styleable.TabLayout_tabIndicatorFullWidth = global::GraphicsTester.Android.Resource.Styleable.TabLayout_tabIndicatorFullWidth; - global::Microsoft.Maui.Graphics.Resource.Styleable.TabLayout_tabIndicatorGravity = global::GraphicsTester.Android.Resource.Styleable.TabLayout_tabIndicatorGravity; - global::Microsoft.Maui.Graphics.Resource.Styleable.TabLayout_tabIndicatorHeight = global::GraphicsTester.Android.Resource.Styleable.TabLayout_tabIndicatorHeight; - global::Microsoft.Maui.Graphics.Resource.Styleable.TabLayout_tabInlineLabel = global::GraphicsTester.Android.Resource.Styleable.TabLayout_tabInlineLabel; - global::Microsoft.Maui.Graphics.Resource.Styleable.TabLayout_tabMaxWidth = global::GraphicsTester.Android.Resource.Styleable.TabLayout_tabMaxWidth; - global::Microsoft.Maui.Graphics.Resource.Styleable.TabLayout_tabMinWidth = global::GraphicsTester.Android.Resource.Styleable.TabLayout_tabMinWidth; - global::Microsoft.Maui.Graphics.Resource.Styleable.TabLayout_tabMode = global::GraphicsTester.Android.Resource.Styleable.TabLayout_tabMode; - global::Microsoft.Maui.Graphics.Resource.Styleable.TabLayout_tabPadding = global::GraphicsTester.Android.Resource.Styleable.TabLayout_tabPadding; - global::Microsoft.Maui.Graphics.Resource.Styleable.TabLayout_tabPaddingBottom = global::GraphicsTester.Android.Resource.Styleable.TabLayout_tabPaddingBottom; - global::Microsoft.Maui.Graphics.Resource.Styleable.TabLayout_tabPaddingEnd = global::GraphicsTester.Android.Resource.Styleable.TabLayout_tabPaddingEnd; - global::Microsoft.Maui.Graphics.Resource.Styleable.TabLayout_tabPaddingStart = global::GraphicsTester.Android.Resource.Styleable.TabLayout_tabPaddingStart; - global::Microsoft.Maui.Graphics.Resource.Styleable.TabLayout_tabPaddingTop = global::GraphicsTester.Android.Resource.Styleable.TabLayout_tabPaddingTop; - global::Microsoft.Maui.Graphics.Resource.Styleable.TabLayout_tabRippleColor = global::GraphicsTester.Android.Resource.Styleable.TabLayout_tabRippleColor; - global::Microsoft.Maui.Graphics.Resource.Styleable.TabLayout_tabSelectedTextColor = global::GraphicsTester.Android.Resource.Styleable.TabLayout_tabSelectedTextColor; - global::Microsoft.Maui.Graphics.Resource.Styleable.TabLayout_tabTextAppearance = global::GraphicsTester.Android.Resource.Styleable.TabLayout_tabTextAppearance; - global::Microsoft.Maui.Graphics.Resource.Styleable.TabLayout_tabTextColor = global::GraphicsTester.Android.Resource.Styleable.TabLayout_tabTextColor; - global::Microsoft.Maui.Graphics.Resource.Styleable.TabLayout_tabUnboundedRipple = global::GraphicsTester.Android.Resource.Styleable.TabLayout_tabUnboundedRipple; - global::Microsoft.Maui.Graphics.Resource.Styleable.TextAppearance = global::GraphicsTester.Android.Resource.Styleable.TextAppearance; - global::Microsoft.Maui.Graphics.Resource.Styleable.TextAppearance_android_fontFamily = global::GraphicsTester.Android.Resource.Styleable.TextAppearance_android_fontFamily; - global::Microsoft.Maui.Graphics.Resource.Styleable.TextAppearance_android_shadowColor = global::GraphicsTester.Android.Resource.Styleable.TextAppearance_android_shadowColor; - global::Microsoft.Maui.Graphics.Resource.Styleable.TextAppearance_android_shadowDx = global::GraphicsTester.Android.Resource.Styleable.TextAppearance_android_shadowDx; - global::Microsoft.Maui.Graphics.Resource.Styleable.TextAppearance_android_shadowDy = global::GraphicsTester.Android.Resource.Styleable.TextAppearance_android_shadowDy; - global::Microsoft.Maui.Graphics.Resource.Styleable.TextAppearance_android_shadowRadius = global::GraphicsTester.Android.Resource.Styleable.TextAppearance_android_shadowRadius; - global::Microsoft.Maui.Graphics.Resource.Styleable.TextAppearance_android_textColor = global::GraphicsTester.Android.Resource.Styleable.TextAppearance_android_textColor; - global::Microsoft.Maui.Graphics.Resource.Styleable.TextAppearance_android_textColorHint = global::GraphicsTester.Android.Resource.Styleable.TextAppearance_android_textColorHint; - global::Microsoft.Maui.Graphics.Resource.Styleable.TextAppearance_android_textColorLink = global::GraphicsTester.Android.Resource.Styleable.TextAppearance_android_textColorLink; - global::Microsoft.Maui.Graphics.Resource.Styleable.TextAppearance_android_textFontWeight = global::GraphicsTester.Android.Resource.Styleable.TextAppearance_android_textFontWeight; - global::Microsoft.Maui.Graphics.Resource.Styleable.TextAppearance_android_textSize = global::GraphicsTester.Android.Resource.Styleable.TextAppearance_android_textSize; - global::Microsoft.Maui.Graphics.Resource.Styleable.TextAppearance_android_textStyle = global::GraphicsTester.Android.Resource.Styleable.TextAppearance_android_textStyle; - global::Microsoft.Maui.Graphics.Resource.Styleable.TextAppearance_android_typeface = global::GraphicsTester.Android.Resource.Styleable.TextAppearance_android_typeface; - global::Microsoft.Maui.Graphics.Resource.Styleable.TextAppearance_fontFamily = global::GraphicsTester.Android.Resource.Styleable.TextAppearance_fontFamily; - global::Microsoft.Maui.Graphics.Resource.Styleable.TextAppearance_fontVariationSettings = global::GraphicsTester.Android.Resource.Styleable.TextAppearance_fontVariationSettings; - global::Microsoft.Maui.Graphics.Resource.Styleable.TextAppearance_textAllCaps = global::GraphicsTester.Android.Resource.Styleable.TextAppearance_textAllCaps; - global::Microsoft.Maui.Graphics.Resource.Styleable.TextAppearance_textLocale = global::GraphicsTester.Android.Resource.Styleable.TextAppearance_textLocale; - global::Microsoft.Maui.Graphics.Resource.Styleable.TextInputEditText = global::GraphicsTester.Android.Resource.Styleable.TextInputEditText; - global::Microsoft.Maui.Graphics.Resource.Styleable.TextInputEditText_textInputLayoutFocusedRectEnabled = global::GraphicsTester.Android.Resource.Styleable.TextInputEditText_textInputLayoutFocusedRectEnabled; - global::Microsoft.Maui.Graphics.Resource.Styleable.TextInputLayout = global::GraphicsTester.Android.Resource.Styleable.TextInputLayout; - global::Microsoft.Maui.Graphics.Resource.Styleable.TextInputLayout_android_enabled = global::GraphicsTester.Android.Resource.Styleable.TextInputLayout_android_enabled; - global::Microsoft.Maui.Graphics.Resource.Styleable.TextInputLayout_android_hint = global::GraphicsTester.Android.Resource.Styleable.TextInputLayout_android_hint; - global::Microsoft.Maui.Graphics.Resource.Styleable.TextInputLayout_android_textColorHint = global::GraphicsTester.Android.Resource.Styleable.TextInputLayout_android_textColorHint; - global::Microsoft.Maui.Graphics.Resource.Styleable.TextInputLayout_boxBackgroundColor = global::GraphicsTester.Android.Resource.Styleable.TextInputLayout_boxBackgroundColor; - global::Microsoft.Maui.Graphics.Resource.Styleable.TextInputLayout_boxBackgroundMode = global::GraphicsTester.Android.Resource.Styleable.TextInputLayout_boxBackgroundMode; - global::Microsoft.Maui.Graphics.Resource.Styleable.TextInputLayout_boxCollapsedPaddingTop = global::GraphicsTester.Android.Resource.Styleable.TextInputLayout_boxCollapsedPaddingTop; - global::Microsoft.Maui.Graphics.Resource.Styleable.TextInputLayout_boxCornerRadiusBottomEnd = global::GraphicsTester.Android.Resource.Styleable.TextInputLayout_boxCornerRadiusBottomEnd; - global::Microsoft.Maui.Graphics.Resource.Styleable.TextInputLayout_boxCornerRadiusBottomStart = global::GraphicsTester.Android.Resource.Styleable.TextInputLayout_boxCornerRadiusBottomStart; - global::Microsoft.Maui.Graphics.Resource.Styleable.TextInputLayout_boxCornerRadiusTopEnd = global::GraphicsTester.Android.Resource.Styleable.TextInputLayout_boxCornerRadiusTopEnd; - global::Microsoft.Maui.Graphics.Resource.Styleable.TextInputLayout_boxCornerRadiusTopStart = global::GraphicsTester.Android.Resource.Styleable.TextInputLayout_boxCornerRadiusTopStart; - global::Microsoft.Maui.Graphics.Resource.Styleable.TextInputLayout_boxStrokeColor = global::GraphicsTester.Android.Resource.Styleable.TextInputLayout_boxStrokeColor; - global::Microsoft.Maui.Graphics.Resource.Styleable.TextInputLayout_boxStrokeErrorColor = global::GraphicsTester.Android.Resource.Styleable.TextInputLayout_boxStrokeErrorColor; - global::Microsoft.Maui.Graphics.Resource.Styleable.TextInputLayout_boxStrokeWidth = global::GraphicsTester.Android.Resource.Styleable.TextInputLayout_boxStrokeWidth; - global::Microsoft.Maui.Graphics.Resource.Styleable.TextInputLayout_boxStrokeWidthFocused = global::GraphicsTester.Android.Resource.Styleable.TextInputLayout_boxStrokeWidthFocused; - global::Microsoft.Maui.Graphics.Resource.Styleable.TextInputLayout_counterEnabled = global::GraphicsTester.Android.Resource.Styleable.TextInputLayout_counterEnabled; - global::Microsoft.Maui.Graphics.Resource.Styleable.TextInputLayout_counterMaxLength = global::GraphicsTester.Android.Resource.Styleable.TextInputLayout_counterMaxLength; - global::Microsoft.Maui.Graphics.Resource.Styleable.TextInputLayout_counterOverflowTextAppearance = global::GraphicsTester.Android.Resource.Styleable.TextInputLayout_counterOverflowTextAppearance; - global::Microsoft.Maui.Graphics.Resource.Styleable.TextInputLayout_counterOverflowTextColor = global::GraphicsTester.Android.Resource.Styleable.TextInputLayout_counterOverflowTextColor; - global::Microsoft.Maui.Graphics.Resource.Styleable.TextInputLayout_counterTextAppearance = global::GraphicsTester.Android.Resource.Styleable.TextInputLayout_counterTextAppearance; - global::Microsoft.Maui.Graphics.Resource.Styleable.TextInputLayout_counterTextColor = global::GraphicsTester.Android.Resource.Styleable.TextInputLayout_counterTextColor; - global::Microsoft.Maui.Graphics.Resource.Styleable.TextInputLayout_endIconCheckable = global::GraphicsTester.Android.Resource.Styleable.TextInputLayout_endIconCheckable; - global::Microsoft.Maui.Graphics.Resource.Styleable.TextInputLayout_endIconContentDescription = global::GraphicsTester.Android.Resource.Styleable.TextInputLayout_endIconContentDescription; - global::Microsoft.Maui.Graphics.Resource.Styleable.TextInputLayout_endIconDrawable = global::GraphicsTester.Android.Resource.Styleable.TextInputLayout_endIconDrawable; - global::Microsoft.Maui.Graphics.Resource.Styleable.TextInputLayout_endIconMode = global::GraphicsTester.Android.Resource.Styleable.TextInputLayout_endIconMode; - global::Microsoft.Maui.Graphics.Resource.Styleable.TextInputLayout_endIconTint = global::GraphicsTester.Android.Resource.Styleable.TextInputLayout_endIconTint; - global::Microsoft.Maui.Graphics.Resource.Styleable.TextInputLayout_endIconTintMode = global::GraphicsTester.Android.Resource.Styleable.TextInputLayout_endIconTintMode; - global::Microsoft.Maui.Graphics.Resource.Styleable.TextInputLayout_errorContentDescription = global::GraphicsTester.Android.Resource.Styleable.TextInputLayout_errorContentDescription; - global::Microsoft.Maui.Graphics.Resource.Styleable.TextInputLayout_errorEnabled = global::GraphicsTester.Android.Resource.Styleable.TextInputLayout_errorEnabled; - global::Microsoft.Maui.Graphics.Resource.Styleable.TextInputLayout_errorIconDrawable = global::GraphicsTester.Android.Resource.Styleable.TextInputLayout_errorIconDrawable; - global::Microsoft.Maui.Graphics.Resource.Styleable.TextInputLayout_errorIconTint = global::GraphicsTester.Android.Resource.Styleable.TextInputLayout_errorIconTint; - global::Microsoft.Maui.Graphics.Resource.Styleable.TextInputLayout_errorIconTintMode = global::GraphicsTester.Android.Resource.Styleable.TextInputLayout_errorIconTintMode; - global::Microsoft.Maui.Graphics.Resource.Styleable.TextInputLayout_errorTextAppearance = global::GraphicsTester.Android.Resource.Styleable.TextInputLayout_errorTextAppearance; - global::Microsoft.Maui.Graphics.Resource.Styleable.TextInputLayout_errorTextColor = global::GraphicsTester.Android.Resource.Styleable.TextInputLayout_errorTextColor; - global::Microsoft.Maui.Graphics.Resource.Styleable.TextInputLayout_expandedHintEnabled = global::GraphicsTester.Android.Resource.Styleable.TextInputLayout_expandedHintEnabled; - global::Microsoft.Maui.Graphics.Resource.Styleable.TextInputLayout_helperText = global::GraphicsTester.Android.Resource.Styleable.TextInputLayout_helperText; - global::Microsoft.Maui.Graphics.Resource.Styleable.TextInputLayout_helperTextEnabled = global::GraphicsTester.Android.Resource.Styleable.TextInputLayout_helperTextEnabled; - global::Microsoft.Maui.Graphics.Resource.Styleable.TextInputLayout_helperTextTextAppearance = global::GraphicsTester.Android.Resource.Styleable.TextInputLayout_helperTextTextAppearance; - global::Microsoft.Maui.Graphics.Resource.Styleable.TextInputLayout_helperTextTextColor = global::GraphicsTester.Android.Resource.Styleable.TextInputLayout_helperTextTextColor; - global::Microsoft.Maui.Graphics.Resource.Styleable.TextInputLayout_hintAnimationEnabled = global::GraphicsTester.Android.Resource.Styleable.TextInputLayout_hintAnimationEnabled; - global::Microsoft.Maui.Graphics.Resource.Styleable.TextInputLayout_hintEnabled = global::GraphicsTester.Android.Resource.Styleable.TextInputLayout_hintEnabled; - global::Microsoft.Maui.Graphics.Resource.Styleable.TextInputLayout_hintTextAppearance = global::GraphicsTester.Android.Resource.Styleable.TextInputLayout_hintTextAppearance; - global::Microsoft.Maui.Graphics.Resource.Styleable.TextInputLayout_hintTextColor = global::GraphicsTester.Android.Resource.Styleable.TextInputLayout_hintTextColor; - global::Microsoft.Maui.Graphics.Resource.Styleable.TextInputLayout_passwordToggleContentDescription = global::GraphicsTester.Android.Resource.Styleable.TextInputLayout_passwordToggleContentDescription; - global::Microsoft.Maui.Graphics.Resource.Styleable.TextInputLayout_passwordToggleDrawable = global::GraphicsTester.Android.Resource.Styleable.TextInputLayout_passwordToggleDrawable; - global::Microsoft.Maui.Graphics.Resource.Styleable.TextInputLayout_passwordToggleEnabled = global::GraphicsTester.Android.Resource.Styleable.TextInputLayout_passwordToggleEnabled; - global::Microsoft.Maui.Graphics.Resource.Styleable.TextInputLayout_passwordToggleTint = global::GraphicsTester.Android.Resource.Styleable.TextInputLayout_passwordToggleTint; - global::Microsoft.Maui.Graphics.Resource.Styleable.TextInputLayout_passwordToggleTintMode = global::GraphicsTester.Android.Resource.Styleable.TextInputLayout_passwordToggleTintMode; - global::Microsoft.Maui.Graphics.Resource.Styleable.TextInputLayout_placeholderText = global::GraphicsTester.Android.Resource.Styleable.TextInputLayout_placeholderText; - global::Microsoft.Maui.Graphics.Resource.Styleable.TextInputLayout_placeholderTextAppearance = global::GraphicsTester.Android.Resource.Styleable.TextInputLayout_placeholderTextAppearance; - global::Microsoft.Maui.Graphics.Resource.Styleable.TextInputLayout_placeholderTextColor = global::GraphicsTester.Android.Resource.Styleable.TextInputLayout_placeholderTextColor; - global::Microsoft.Maui.Graphics.Resource.Styleable.TextInputLayout_prefixText = global::GraphicsTester.Android.Resource.Styleable.TextInputLayout_prefixText; - global::Microsoft.Maui.Graphics.Resource.Styleable.TextInputLayout_prefixTextAppearance = global::GraphicsTester.Android.Resource.Styleable.TextInputLayout_prefixTextAppearance; - global::Microsoft.Maui.Graphics.Resource.Styleable.TextInputLayout_prefixTextColor = global::GraphicsTester.Android.Resource.Styleable.TextInputLayout_prefixTextColor; - global::Microsoft.Maui.Graphics.Resource.Styleable.TextInputLayout_shapeAppearance = global::GraphicsTester.Android.Resource.Styleable.TextInputLayout_shapeAppearance; - global::Microsoft.Maui.Graphics.Resource.Styleable.TextInputLayout_shapeAppearanceOverlay = global::GraphicsTester.Android.Resource.Styleable.TextInputLayout_shapeAppearanceOverlay; - global::Microsoft.Maui.Graphics.Resource.Styleable.TextInputLayout_startIconCheckable = global::GraphicsTester.Android.Resource.Styleable.TextInputLayout_startIconCheckable; - global::Microsoft.Maui.Graphics.Resource.Styleable.TextInputLayout_startIconContentDescription = global::GraphicsTester.Android.Resource.Styleable.TextInputLayout_startIconContentDescription; - global::Microsoft.Maui.Graphics.Resource.Styleable.TextInputLayout_startIconDrawable = global::GraphicsTester.Android.Resource.Styleable.TextInputLayout_startIconDrawable; - global::Microsoft.Maui.Graphics.Resource.Styleable.TextInputLayout_startIconTint = global::GraphicsTester.Android.Resource.Styleable.TextInputLayout_startIconTint; - global::Microsoft.Maui.Graphics.Resource.Styleable.TextInputLayout_startIconTintMode = global::GraphicsTester.Android.Resource.Styleable.TextInputLayout_startIconTintMode; - global::Microsoft.Maui.Graphics.Resource.Styleable.TextInputLayout_suffixText = global::GraphicsTester.Android.Resource.Styleable.TextInputLayout_suffixText; - global::Microsoft.Maui.Graphics.Resource.Styleable.TextInputLayout_suffixTextAppearance = global::GraphicsTester.Android.Resource.Styleable.TextInputLayout_suffixTextAppearance; - global::Microsoft.Maui.Graphics.Resource.Styleable.TextInputLayout_suffixTextColor = global::GraphicsTester.Android.Resource.Styleable.TextInputLayout_suffixTextColor; - global::Microsoft.Maui.Graphics.Resource.Styleable.ThemeEnforcement = global::GraphicsTester.Android.Resource.Styleable.ThemeEnforcement; - global::Microsoft.Maui.Graphics.Resource.Styleable.ThemeEnforcement_android_textAppearance = global::GraphicsTester.Android.Resource.Styleable.ThemeEnforcement_android_textAppearance; - global::Microsoft.Maui.Graphics.Resource.Styleable.ThemeEnforcement_enforceMaterialTheme = global::GraphicsTester.Android.Resource.Styleable.ThemeEnforcement_enforceMaterialTheme; - global::Microsoft.Maui.Graphics.Resource.Styleable.ThemeEnforcement_enforceTextAppearance = global::GraphicsTester.Android.Resource.Styleable.ThemeEnforcement_enforceTextAppearance; - global::Microsoft.Maui.Graphics.Resource.Styleable.Toolbar = global::GraphicsTester.Android.Resource.Styleable.Toolbar; - global::Microsoft.Maui.Graphics.Resource.Styleable.Toolbar_android_gravity = global::GraphicsTester.Android.Resource.Styleable.Toolbar_android_gravity; - global::Microsoft.Maui.Graphics.Resource.Styleable.Toolbar_android_minHeight = global::GraphicsTester.Android.Resource.Styleable.Toolbar_android_minHeight; - global::Microsoft.Maui.Graphics.Resource.Styleable.Toolbar_buttonGravity = global::GraphicsTester.Android.Resource.Styleable.Toolbar_buttonGravity; - global::Microsoft.Maui.Graphics.Resource.Styleable.Toolbar_collapseContentDescription = global::GraphicsTester.Android.Resource.Styleable.Toolbar_collapseContentDescription; - global::Microsoft.Maui.Graphics.Resource.Styleable.Toolbar_collapseIcon = global::GraphicsTester.Android.Resource.Styleable.Toolbar_collapseIcon; - global::Microsoft.Maui.Graphics.Resource.Styleable.Toolbar_contentInsetEnd = global::GraphicsTester.Android.Resource.Styleable.Toolbar_contentInsetEnd; - global::Microsoft.Maui.Graphics.Resource.Styleable.Toolbar_contentInsetEndWithActions = global::GraphicsTester.Android.Resource.Styleable.Toolbar_contentInsetEndWithActions; - global::Microsoft.Maui.Graphics.Resource.Styleable.Toolbar_contentInsetLeft = global::GraphicsTester.Android.Resource.Styleable.Toolbar_contentInsetLeft; - global::Microsoft.Maui.Graphics.Resource.Styleable.Toolbar_contentInsetRight = global::GraphicsTester.Android.Resource.Styleable.Toolbar_contentInsetRight; - global::Microsoft.Maui.Graphics.Resource.Styleable.Toolbar_contentInsetStart = global::GraphicsTester.Android.Resource.Styleable.Toolbar_contentInsetStart; - global::Microsoft.Maui.Graphics.Resource.Styleable.Toolbar_contentInsetStartWithNavigation = global::GraphicsTester.Android.Resource.Styleable.Toolbar_contentInsetStartWithNavigation; - global::Microsoft.Maui.Graphics.Resource.Styleable.Toolbar_logo = global::GraphicsTester.Android.Resource.Styleable.Toolbar_logo; - global::Microsoft.Maui.Graphics.Resource.Styleable.Toolbar_logoDescription = global::GraphicsTester.Android.Resource.Styleable.Toolbar_logoDescription; - global::Microsoft.Maui.Graphics.Resource.Styleable.Toolbar_maxButtonHeight = global::GraphicsTester.Android.Resource.Styleable.Toolbar_maxButtonHeight; - global::Microsoft.Maui.Graphics.Resource.Styleable.Toolbar_menu = global::GraphicsTester.Android.Resource.Styleable.Toolbar_menu; - global::Microsoft.Maui.Graphics.Resource.Styleable.Toolbar_navigationContentDescription = global::GraphicsTester.Android.Resource.Styleable.Toolbar_navigationContentDescription; - global::Microsoft.Maui.Graphics.Resource.Styleable.Toolbar_navigationIcon = global::GraphicsTester.Android.Resource.Styleable.Toolbar_navigationIcon; - global::Microsoft.Maui.Graphics.Resource.Styleable.Toolbar_popupTheme = global::GraphicsTester.Android.Resource.Styleable.Toolbar_popupTheme; - global::Microsoft.Maui.Graphics.Resource.Styleable.Toolbar_subtitle = global::GraphicsTester.Android.Resource.Styleable.Toolbar_subtitle; - global::Microsoft.Maui.Graphics.Resource.Styleable.Toolbar_subtitleTextAppearance = global::GraphicsTester.Android.Resource.Styleable.Toolbar_subtitleTextAppearance; - global::Microsoft.Maui.Graphics.Resource.Styleable.Toolbar_subtitleTextColor = global::GraphicsTester.Android.Resource.Styleable.Toolbar_subtitleTextColor; - global::Microsoft.Maui.Graphics.Resource.Styleable.Toolbar_title = global::GraphicsTester.Android.Resource.Styleable.Toolbar_title; - global::Microsoft.Maui.Graphics.Resource.Styleable.Toolbar_titleMargin = global::GraphicsTester.Android.Resource.Styleable.Toolbar_titleMargin; - global::Microsoft.Maui.Graphics.Resource.Styleable.Toolbar_titleMarginBottom = global::GraphicsTester.Android.Resource.Styleable.Toolbar_titleMarginBottom; - global::Microsoft.Maui.Graphics.Resource.Styleable.Toolbar_titleMarginEnd = global::GraphicsTester.Android.Resource.Styleable.Toolbar_titleMarginEnd; - global::Microsoft.Maui.Graphics.Resource.Styleable.Toolbar_titleMargins = global::GraphicsTester.Android.Resource.Styleable.Toolbar_titleMargins; - global::Microsoft.Maui.Graphics.Resource.Styleable.Toolbar_titleMarginStart = global::GraphicsTester.Android.Resource.Styleable.Toolbar_titleMarginStart; - global::Microsoft.Maui.Graphics.Resource.Styleable.Toolbar_titleMarginTop = global::GraphicsTester.Android.Resource.Styleable.Toolbar_titleMarginTop; - global::Microsoft.Maui.Graphics.Resource.Styleable.Toolbar_titleTextAppearance = global::GraphicsTester.Android.Resource.Styleable.Toolbar_titleTextAppearance; - global::Microsoft.Maui.Graphics.Resource.Styleable.Toolbar_titleTextColor = global::GraphicsTester.Android.Resource.Styleable.Toolbar_titleTextColor; - global::Microsoft.Maui.Graphics.Resource.Styleable.Tooltip = global::GraphicsTester.Android.Resource.Styleable.Tooltip; - global::Microsoft.Maui.Graphics.Resource.Styleable.Tooltip_android_layout_margin = global::GraphicsTester.Android.Resource.Styleable.Tooltip_android_layout_margin; - global::Microsoft.Maui.Graphics.Resource.Styleable.Tooltip_android_minHeight = global::GraphicsTester.Android.Resource.Styleable.Tooltip_android_minHeight; - global::Microsoft.Maui.Graphics.Resource.Styleable.Tooltip_android_minWidth = global::GraphicsTester.Android.Resource.Styleable.Tooltip_android_minWidth; - global::Microsoft.Maui.Graphics.Resource.Styleable.Tooltip_android_padding = global::GraphicsTester.Android.Resource.Styleable.Tooltip_android_padding; - global::Microsoft.Maui.Graphics.Resource.Styleable.Tooltip_android_text = global::GraphicsTester.Android.Resource.Styleable.Tooltip_android_text; - global::Microsoft.Maui.Graphics.Resource.Styleable.Tooltip_android_textAppearance = global::GraphicsTester.Android.Resource.Styleable.Tooltip_android_textAppearance; - global::Microsoft.Maui.Graphics.Resource.Styleable.Tooltip_backgroundTint = global::GraphicsTester.Android.Resource.Styleable.Tooltip_backgroundTint; - global::Microsoft.Maui.Graphics.Resource.Styleable.Transform = global::GraphicsTester.Android.Resource.Styleable.Transform; - global::Microsoft.Maui.Graphics.Resource.Styleable.Transform_android_elevation = global::GraphicsTester.Android.Resource.Styleable.Transform_android_elevation; - global::Microsoft.Maui.Graphics.Resource.Styleable.Transform_android_rotation = global::GraphicsTester.Android.Resource.Styleable.Transform_android_rotation; - global::Microsoft.Maui.Graphics.Resource.Styleable.Transform_android_rotationX = global::GraphicsTester.Android.Resource.Styleable.Transform_android_rotationX; - global::Microsoft.Maui.Graphics.Resource.Styleable.Transform_android_rotationY = global::GraphicsTester.Android.Resource.Styleable.Transform_android_rotationY; - global::Microsoft.Maui.Graphics.Resource.Styleable.Transform_android_scaleX = global::GraphicsTester.Android.Resource.Styleable.Transform_android_scaleX; - global::Microsoft.Maui.Graphics.Resource.Styleable.Transform_android_scaleY = global::GraphicsTester.Android.Resource.Styleable.Transform_android_scaleY; - global::Microsoft.Maui.Graphics.Resource.Styleable.Transform_android_transformPivotX = global::GraphicsTester.Android.Resource.Styleable.Transform_android_transformPivotX; - global::Microsoft.Maui.Graphics.Resource.Styleable.Transform_android_transformPivotY = global::GraphicsTester.Android.Resource.Styleable.Transform_android_transformPivotY; - global::Microsoft.Maui.Graphics.Resource.Styleable.Transform_android_translationX = global::GraphicsTester.Android.Resource.Styleable.Transform_android_translationX; - global::Microsoft.Maui.Graphics.Resource.Styleable.Transform_android_translationY = global::GraphicsTester.Android.Resource.Styleable.Transform_android_translationY; - global::Microsoft.Maui.Graphics.Resource.Styleable.Transform_android_translationZ = global::GraphicsTester.Android.Resource.Styleable.Transform_android_translationZ; - global::Microsoft.Maui.Graphics.Resource.Styleable.Transition = global::GraphicsTester.Android.Resource.Styleable.Transition; - global::Microsoft.Maui.Graphics.Resource.Styleable.Transition_android_id = global::GraphicsTester.Android.Resource.Styleable.Transition_android_id; - global::Microsoft.Maui.Graphics.Resource.Styleable.Transition_autoTransition = global::GraphicsTester.Android.Resource.Styleable.Transition_autoTransition; - global::Microsoft.Maui.Graphics.Resource.Styleable.Transition_constraintSetEnd = global::GraphicsTester.Android.Resource.Styleable.Transition_constraintSetEnd; - global::Microsoft.Maui.Graphics.Resource.Styleable.Transition_constraintSetStart = global::GraphicsTester.Android.Resource.Styleable.Transition_constraintSetStart; - global::Microsoft.Maui.Graphics.Resource.Styleable.Transition_duration = global::GraphicsTester.Android.Resource.Styleable.Transition_duration; - global::Microsoft.Maui.Graphics.Resource.Styleable.Transition_layoutDuringTransition = global::GraphicsTester.Android.Resource.Styleable.Transition_layoutDuringTransition; - global::Microsoft.Maui.Graphics.Resource.Styleable.Transition_motionInterpolator = global::GraphicsTester.Android.Resource.Styleable.Transition_motionInterpolator; - global::Microsoft.Maui.Graphics.Resource.Styleable.Transition_pathMotionArc = global::GraphicsTester.Android.Resource.Styleable.Transition_pathMotionArc; - global::Microsoft.Maui.Graphics.Resource.Styleable.Transition_staggered = global::GraphicsTester.Android.Resource.Styleable.Transition_staggered; - global::Microsoft.Maui.Graphics.Resource.Styleable.Transition_transitionDisable = global::GraphicsTester.Android.Resource.Styleable.Transition_transitionDisable; - global::Microsoft.Maui.Graphics.Resource.Styleable.Transition_transitionFlags = global::GraphicsTester.Android.Resource.Styleable.Transition_transitionFlags; - global::Microsoft.Maui.Graphics.Resource.Styleable.Variant = global::GraphicsTester.Android.Resource.Styleable.Variant; - global::Microsoft.Maui.Graphics.Resource.Styleable.Variant_constraints = global::GraphicsTester.Android.Resource.Styleable.Variant_constraints; - global::Microsoft.Maui.Graphics.Resource.Styleable.Variant_region_heightLessThan = global::GraphicsTester.Android.Resource.Styleable.Variant_region_heightLessThan; - global::Microsoft.Maui.Graphics.Resource.Styleable.Variant_region_heightMoreThan = global::GraphicsTester.Android.Resource.Styleable.Variant_region_heightMoreThan; - global::Microsoft.Maui.Graphics.Resource.Styleable.Variant_region_widthLessThan = global::GraphicsTester.Android.Resource.Styleable.Variant_region_widthLessThan; - global::Microsoft.Maui.Graphics.Resource.Styleable.Variant_region_widthMoreThan = global::GraphicsTester.Android.Resource.Styleable.Variant_region_widthMoreThan; - global::Microsoft.Maui.Graphics.Resource.Styleable.View = global::GraphicsTester.Android.Resource.Styleable.View; - global::Microsoft.Maui.Graphics.Resource.Styleable.ViewBackgroundHelper = global::GraphicsTester.Android.Resource.Styleable.ViewBackgroundHelper; - global::Microsoft.Maui.Graphics.Resource.Styleable.ViewBackgroundHelper_android_background = global::GraphicsTester.Android.Resource.Styleable.ViewBackgroundHelper_android_background; - global::Microsoft.Maui.Graphics.Resource.Styleable.ViewBackgroundHelper_backgroundTint = global::GraphicsTester.Android.Resource.Styleable.ViewBackgroundHelper_backgroundTint; - global::Microsoft.Maui.Graphics.Resource.Styleable.ViewBackgroundHelper_backgroundTintMode = global::GraphicsTester.Android.Resource.Styleable.ViewBackgroundHelper_backgroundTintMode; - global::Microsoft.Maui.Graphics.Resource.Styleable.ViewPager2 = global::GraphicsTester.Android.Resource.Styleable.ViewPager2; - global::Microsoft.Maui.Graphics.Resource.Styleable.ViewPager2_android_orientation = global::GraphicsTester.Android.Resource.Styleable.ViewPager2_android_orientation; - global::Microsoft.Maui.Graphics.Resource.Styleable.ViewStubCompat = global::GraphicsTester.Android.Resource.Styleable.ViewStubCompat; - global::Microsoft.Maui.Graphics.Resource.Styleable.ViewStubCompat_android_id = global::GraphicsTester.Android.Resource.Styleable.ViewStubCompat_android_id; - global::Microsoft.Maui.Graphics.Resource.Styleable.ViewStubCompat_android_inflatedId = global::GraphicsTester.Android.Resource.Styleable.ViewStubCompat_android_inflatedId; - global::Microsoft.Maui.Graphics.Resource.Styleable.ViewStubCompat_android_layout = global::GraphicsTester.Android.Resource.Styleable.ViewStubCompat_android_layout; - global::Microsoft.Maui.Graphics.Resource.Styleable.View_android_focusable = global::GraphicsTester.Android.Resource.Styleable.View_android_focusable; - global::Microsoft.Maui.Graphics.Resource.Styleable.View_android_theme = global::GraphicsTester.Android.Resource.Styleable.View_android_theme; - global::Microsoft.Maui.Graphics.Resource.Styleable.View_paddingEnd = global::GraphicsTester.Android.Resource.Styleable.View_paddingEnd; - global::Microsoft.Maui.Graphics.Resource.Styleable.View_paddingStart = global::GraphicsTester.Android.Resource.Styleable.View_paddingStart; - global::Microsoft.Maui.Graphics.Resource.Styleable.View_theme = global::GraphicsTester.Android.Resource.Styleable.View_theme; - global::Microsoft.Maui.Graphics.Resource.Xml.standalone_badge = global::GraphicsTester.Android.Resource.Xml.standalone_badge; - global::Microsoft.Maui.Graphics.Resource.Xml.standalone_badge_gravity_bottom_end = global::GraphicsTester.Android.Resource.Xml.standalone_badge_gravity_bottom_end; - global::Microsoft.Maui.Graphics.Resource.Xml.standalone_badge_gravity_bottom_start = global::GraphicsTester.Android.Resource.Xml.standalone_badge_gravity_bottom_start; - global::Microsoft.Maui.Graphics.Resource.Xml.standalone_badge_gravity_top_start = global::GraphicsTester.Android.Resource.Xml.standalone_badge_gravity_top_start; - global::Microsoft.Maui.Graphics.Resource.Xml.standalone_badge_offset = global::GraphicsTester.Android.Resource.Xml.standalone_badge_offset; } - public partial class Animation + public partial class Attribute { - // aapt resource value: 0x7F010000 - public const int abc_fade_in = 2130771968; - - // aapt resource value: 0x7F010001 - public const int abc_fade_out = 2130771969; - - // aapt resource value: 0x7F010002 - public const int abc_grow_fade_in_from_bottom = 2130771970; - - // aapt resource value: 0x7F010003 - public const int abc_popup_enter = 2130771971; - - // aapt resource value: 0x7F010004 - public const int abc_popup_exit = 2130771972; - - // aapt resource value: 0x7F010005 - public const int abc_shrink_fade_out_from_bottom = 2130771973; - - // aapt resource value: 0x7F010006 - public const int abc_slide_in_bottom = 2130771974; - - // aapt resource value: 0x7F010007 - public const int abc_slide_in_top = 2130771975; - - // aapt resource value: 0x7F010008 - public const int abc_slide_out_bottom = 2130771976; - - // aapt resource value: 0x7F010009 - public const int abc_slide_out_top = 2130771977; - - // aapt resource value: 0x7F01000A - public const int abc_tooltip_enter = 2130771978; - - // aapt resource value: 0x7F01000B - public const int abc_tooltip_exit = 2130771979; - - // aapt resource value: 0x7F01000C - public const int btn_checkbox_to_checked_box_inner_merged_animation = 2130771980; - - // aapt resource value: 0x7F01000D - public const int btn_checkbox_to_checked_box_outer_merged_animation = 2130771981; - - // aapt resource value: 0x7F01000E - public const int btn_checkbox_to_checked_icon_null_animation = 2130771982; - - // aapt resource value: 0x7F01000F - public const int btn_checkbox_to_unchecked_box_inner_merged_animation = 2130771983; - - // aapt resource value: 0x7F010010 - public const int btn_checkbox_to_unchecked_check_path_merged_animation = 2130771984; - - // aapt resource value: 0x7F010011 - public const int btn_checkbox_to_unchecked_icon_null_animation = 2130771985; - - // aapt resource value: 0x7F010012 - public const int btn_radio_to_off_mtrl_dot_group_animation = 2130771986; - - // aapt resource value: 0x7F010013 - public const int btn_radio_to_off_mtrl_ring_outer_animation = 2130771987; - - // aapt resource value: 0x7F010014 - public const int btn_radio_to_off_mtrl_ring_outer_path_animation = 2130771988; - - // aapt resource value: 0x7F010015 - public const int btn_radio_to_on_mtrl_dot_group_animation = 2130771989; - - // aapt resource value: 0x7F010016 - public const int btn_radio_to_on_mtrl_ring_outer_animation = 2130771990; - - // aapt resource value: 0x7F010017 - public const int btn_radio_to_on_mtrl_ring_outer_path_animation = 2130771991; - - // aapt resource value: 0x7F010018 - public const int design_bottom_sheet_slide_in = 2130771992; - - // aapt resource value: 0x7F010019 - public const int design_bottom_sheet_slide_out = 2130771993; - - // aapt resource value: 0x7F01001A - public const int design_snackbar_in = 2130771994; - - // aapt resource value: 0x7F01001B - public const int design_snackbar_out = 2130771995; - - // aapt resource value: 0x7F01001C - public const int fragment_fast_out_extra_slow_in = 2130771996; - - // aapt resource value: 0x7F01001D - public const int mtrl_bottom_sheet_slide_in = 2130771997; + static Attribute() + { + global::Android.Runtime.ResourceIdManager.UpdateIdValues(); + } - // aapt resource value: 0x7F01001E - public const int mtrl_bottom_sheet_slide_out = 2130771998; + private Attribute() + { + } + } + + public partial class Drawable + { - // aapt resource value: 0x7F01001F - public const int mtrl_card_lowers_interpolator = 2130771999; + // aapt resource value: 0x7F010000 + public const int Icon = 2130771968; - static Animation() + static Drawable() { global::Android.Runtime.ResourceIdManager.UpdateIdValues(); } - private Animation() + private Drawable() { } } - public partial class Animator + public partial class Id { // aapt resource value: 0x7F020000 - public const int design_appbar_state_list_animator = 2130837504; - - // aapt resource value: 0x7F020001 - public const int design_fab_hide_motion_spec = 2130837505; - - // aapt resource value: 0x7F020002 - public const int design_fab_show_motion_spec = 2130837506; - - // aapt resource value: 0x7F020003 - public const int fragment_close_enter = 2130837507; - - // aapt resource value: 0x7F020004 - public const int fragment_close_exit = 2130837508; - - // aapt resource value: 0x7F020005 - public const int fragment_fade_enter = 2130837509; - - // aapt resource value: 0x7F020006 - public const int fragment_fade_exit = 2130837510; - - // aapt resource value: 0x7F020007 - public const int fragment_open_enter = 2130837511; - - // aapt resource value: 0x7F020008 - public const int fragment_open_exit = 2130837512; - - // aapt resource value: 0x7F020009 - public const int linear_indeterminate_line1_head_interpolator = 2130837513; - - // aapt resource value: 0x7F02000A - public const int linear_indeterminate_line1_tail_interpolator = 2130837514; - - // aapt resource value: 0x7F02000B - public const int linear_indeterminate_line2_head_interpolator = 2130837515; - - // aapt resource value: 0x7F02000C - public const int linear_indeterminate_line2_tail_interpolator = 2130837516; - - // aapt resource value: 0x7F02000D - public const int mtrl_btn_state_list_anim = 2130837517; - - // aapt resource value: 0x7F02000E - public const int mtrl_btn_unelevated_state_list_anim = 2130837518; - - // aapt resource value: 0x7F02000F - public const int mtrl_card_state_list_anim = 2130837519; - - // aapt resource value: 0x7F020010 - public const int mtrl_chip_state_list_anim = 2130837520; - - // aapt resource value: 0x7F020011 - public const int mtrl_extended_fab_change_size_collapse_motion_spec = 2130837521; - - // aapt resource value: 0x7F020012 - public const int mtrl_extended_fab_change_size_expand_motion_spec = 2130837522; + public const int textItem = 2130837504; - // aapt resource value: 0x7F020013 - public const int mtrl_extended_fab_hide_motion_spec = 2130837523; - - // aapt resource value: 0x7F020014 - public const int mtrl_extended_fab_show_motion_spec = 2130837524; - - // aapt resource value: 0x7F020015 - public const int mtrl_extended_fab_state_list_animator = 2130837525; - - // aapt resource value: 0x7F020016 - public const int mtrl_fab_hide_motion_spec = 2130837526; - - // aapt resource value: 0x7F020017 - public const int mtrl_fab_show_motion_spec = 2130837527; - - // aapt resource value: 0x7F020018 - public const int mtrl_fab_transformation_sheet_collapse_spec = 2130837528; - - // aapt resource value: 0x7F020019 - public const int mtrl_fab_transformation_sheet_expand_spec = 2130837529; - - static Animator() + static Id() { global::Android.Runtime.ResourceIdManager.UpdateIdValues(); } - private Animator() + private Id() { } } - public partial class Attribute + public partial class Layout { // aapt resource value: 0x7F030000 - public const int actionBarDivider = 2130903040; - - // aapt resource value: 0x7F030001 - public const int actionBarItemBackground = 2130903041; - - // aapt resource value: 0x7F030002 - public const int actionBarPopupTheme = 2130903042; - - // aapt resource value: 0x7F030003 - public const int actionBarSize = 2130903043; - - // aapt resource value: 0x7F030004 - public const int actionBarSplitStyle = 2130903044; - - // aapt resource value: 0x7F030005 - public const int actionBarStyle = 2130903045; - - // aapt resource value: 0x7F030006 - public const int actionBarTabBarStyle = 2130903046; - - // aapt resource value: 0x7F030007 - public const int actionBarTabStyle = 2130903047; - - // aapt resource value: 0x7F030008 - public const int actionBarTabTextStyle = 2130903048; - - // aapt resource value: 0x7F030009 - public const int actionBarTheme = 2130903049; - - // aapt resource value: 0x7F03000A - public const int actionBarWidgetTheme = 2130903050; - - // aapt resource value: 0x7F03000B - public const int actionButtonStyle = 2130903051; - - // aapt resource value: 0x7F03000C - public const int actionDropDownStyle = 2130903052; - - // aapt resource value: 0x7F03000D - public const int actionLayout = 2130903053; - - // aapt resource value: 0x7F03000E - public const int actionMenuTextAppearance = 2130903054; - - // aapt resource value: 0x7F03000F - public const int actionMenuTextColor = 2130903055; - - // aapt resource value: 0x7F030010 - public const int actionModeBackground = 2130903056; - - // aapt resource value: 0x7F030011 - public const int actionModeCloseButtonStyle = 2130903057; - - // aapt resource value: 0x7F030012 - public const int actionModeCloseDrawable = 2130903058; - - // aapt resource value: 0x7F030013 - public const int actionModeCopyDrawable = 2130903059; - - // aapt resource value: 0x7F030014 - public const int actionModeCutDrawable = 2130903060; - - // aapt resource value: 0x7F030015 - public const int actionModeFindDrawable = 2130903061; - - // aapt resource value: 0x7F030016 - public const int actionModePasteDrawable = 2130903062; - - // aapt resource value: 0x7F030017 - public const int actionModePopupWindowStyle = 2130903063; - - // aapt resource value: 0x7F030018 - public const int actionModeSelectAllDrawable = 2130903064; - - // aapt resource value: 0x7F030019 - public const int actionModeShareDrawable = 2130903065; - - // aapt resource value: 0x7F03001A - public const int actionModeSplitBackground = 2130903066; - - // aapt resource value: 0x7F03001B - public const int actionModeStyle = 2130903067; - - // aapt resource value: 0x7F03001C - public const int actionModeWebSearchDrawable = 2130903068; - - // aapt resource value: 0x7F03001D - public const int actionOverflowButtonStyle = 2130903069; - - // aapt resource value: 0x7F03001E - public const int actionOverflowMenuStyle = 2130903070; - - // aapt resource value: 0x7F03001F - public const int actionProviderClass = 2130903071; - - // aapt resource value: 0x7F030020 - public const int actionTextColorAlpha = 2130903072; - - // aapt resource value: 0x7F030021 - public const int actionViewClass = 2130903073; - - // aapt resource value: 0x7F030022 - public const int activityChooserViewStyle = 2130903074; - - // aapt resource value: 0x7F030023 - public const int alertDialogButtonGroupStyle = 2130903075; - - // aapt resource value: 0x7F030024 - public const int alertDialogCenterButtons = 2130903076; - - // aapt resource value: 0x7F030025 - public const int alertDialogStyle = 2130903077; - - // aapt resource value: 0x7F030026 - public const int alertDialogTheme = 2130903078; - - // aapt resource value: 0x7F030027 - public const int allowStacking = 2130903079; - - // aapt resource value: 0x7F030028 - public const int alpha = 2130903080; - - // aapt resource value: 0x7F030029 - public const int alphabeticModifiers = 2130903081; - - // aapt resource value: 0x7F03002A - public const int altSrc = 2130903082; - - // aapt resource value: 0x7F03002B - public const int animate_relativeTo = 2130903083; - - // aapt resource value: 0x7F03002C - public const int animationMode = 2130903084; - - // aapt resource value: 0x7F03002D - public const int appBarLayoutStyle = 2130903085; - - // aapt resource value: 0x7F03002E - public const int applyMotionScene = 2130903086; - - // aapt resource value: 0x7F03002F - public const int arcMode = 2130903087; - - // aapt resource value: 0x7F030030 - public const int arrowHeadLength = 2130903088; - - // aapt resource value: 0x7F030031 - public const int arrowShaftLength = 2130903089; - - // aapt resource value: 0x7F030032 - public const int attributeName = 2130903090; - - // aapt resource value: 0x7F030033 - public const int autoCompleteTextViewStyle = 2130903091; - - // aapt resource value: 0x7F030034 - public const int autoSizeMaxTextSize = 2130903092; - - // aapt resource value: 0x7F030035 - public const int autoSizeMinTextSize = 2130903093; + public const int ListViewItem = 2130903040; - // aapt resource value: 0x7F030036 - public const int autoSizePresetSizes = 2130903094; - - // aapt resource value: 0x7F030037 - public const int autoSizeStepGranularity = 2130903095; - - // aapt resource value: 0x7F030038 - public const int autoSizeTextType = 2130903096; - - // aapt resource value: 0x7F030039 - public const int autoTransition = 2130903097; - - // aapt resource value: 0x7F03003A - public const int background = 2130903098; - - // aapt resource value: 0x7F03003B - public const int backgroundColor = 2130903099; - - // aapt resource value: 0x7F03003C - public const int backgroundInsetBottom = 2130903100; - - // aapt resource value: 0x7F03003D - public const int backgroundInsetEnd = 2130903101; - - // aapt resource value: 0x7F03003E - public const int backgroundInsetStart = 2130903102; - - // aapt resource value: 0x7F03003F - public const int backgroundInsetTop = 2130903103; - - // aapt resource value: 0x7F030040 - public const int backgroundOverlayColorAlpha = 2130903104; - - // aapt resource value: 0x7F030041 - public const int backgroundSplit = 2130903105; - - // aapt resource value: 0x7F030042 - public const int backgroundStacked = 2130903106; - - // aapt resource value: 0x7F030043 - public const int backgroundTint = 2130903107; - - // aapt resource value: 0x7F030044 - public const int backgroundTintMode = 2130903108; - - // aapt resource value: 0x7F030045 - public const int badgeGravity = 2130903109; - - // aapt resource value: 0x7F030046 - public const int badgeStyle = 2130903110; - - // aapt resource value: 0x7F030047 - public const int badgeTextColor = 2130903111; - - // aapt resource value: 0x7F030048 - public const int barLength = 2130903112; - - // aapt resource value: 0x7F030049 - public const int barrierAllowsGoneWidgets = 2130903113; - - // aapt resource value: 0x7F03004A - public const int barrierDirection = 2130903114; - - // aapt resource value: 0x7F03004B - public const int barrierMargin = 2130903115; - - // aapt resource value: 0x7F03004C - public const int behavior_autoHide = 2130903116; - - // aapt resource value: 0x7F03004D - public const int behavior_autoShrink = 2130903117; - - // aapt resource value: 0x7F03004E - public const int behavior_draggable = 2130903118; - - // aapt resource value: 0x7F03004F - public const int behavior_expandedOffset = 2130903119; - - // aapt resource value: 0x7F030050 - public const int behavior_fitToContents = 2130903120; - - // aapt resource value: 0x7F030051 - public const int behavior_halfExpandedRatio = 2130903121; - - // aapt resource value: 0x7F030052 - public const int behavior_hideable = 2130903122; - - // aapt resource value: 0x7F030053 - public const int behavior_overlapTop = 2130903123; - - // aapt resource value: 0x7F030054 - public const int behavior_peekHeight = 2130903124; - - // aapt resource value: 0x7F030055 - public const int behavior_saveFlags = 2130903125; - - // aapt resource value: 0x7F030056 - public const int behavior_skipCollapsed = 2130903126; - - // aapt resource value: 0x7F030058 - public const int borderlessButtonStyle = 2130903128; - - // aapt resource value: 0x7F030057 - public const int borderWidth = 2130903127; - - // aapt resource value: 0x7F030059 - public const int bottomAppBarStyle = 2130903129; - - // aapt resource value: 0x7F03005A - public const int bottomNavigationStyle = 2130903130; - - // aapt resource value: 0x7F03005B - public const int bottomSheetDialogTheme = 2130903131; - - // aapt resource value: 0x7F03005C - public const int bottomSheetStyle = 2130903132; - - // aapt resource value: 0x7F03005D - public const int boxBackgroundColor = 2130903133; - - // aapt resource value: 0x7F03005E - public const int boxBackgroundMode = 2130903134; - - // aapt resource value: 0x7F03005F - public const int boxCollapsedPaddingTop = 2130903135; - - // aapt resource value: 0x7F030060 - public const int boxCornerRadiusBottomEnd = 2130903136; - - // aapt resource value: 0x7F030061 - public const int boxCornerRadiusBottomStart = 2130903137; - - // aapt resource value: 0x7F030062 - public const int boxCornerRadiusTopEnd = 2130903138; - - // aapt resource value: 0x7F030063 - public const int boxCornerRadiusTopStart = 2130903139; - - // aapt resource value: 0x7F030064 - public const int boxStrokeColor = 2130903140; - - // aapt resource value: 0x7F030065 - public const int boxStrokeErrorColor = 2130903141; - - // aapt resource value: 0x7F030066 - public const int boxStrokeWidth = 2130903142; - - // aapt resource value: 0x7F030067 - public const int boxStrokeWidthFocused = 2130903143; - - // aapt resource value: 0x7F030068 - public const int brightness = 2130903144; - - // aapt resource value: 0x7F030069 - public const int buttonBarButtonStyle = 2130903145; - - // aapt resource value: 0x7F03006A - public const int buttonBarNegativeButtonStyle = 2130903146; - - // aapt resource value: 0x7F03006B - public const int buttonBarNeutralButtonStyle = 2130903147; - - // aapt resource value: 0x7F03006C - public const int buttonBarPositiveButtonStyle = 2130903148; - - // aapt resource value: 0x7F03006D - public const int buttonBarStyle = 2130903149; - - // aapt resource value: 0x7F03006E - public const int buttonCompat = 2130903150; - - // aapt resource value: 0x7F03006F - public const int buttonGravity = 2130903151; - - // aapt resource value: 0x7F030070 - public const int buttonIconDimen = 2130903152; - - // aapt resource value: 0x7F030071 - public const int buttonPanelSideLayout = 2130903153; - - // aapt resource value: 0x7F030072 - public const int buttonStyle = 2130903154; - - // aapt resource value: 0x7F030073 - public const int buttonStyleSmall = 2130903155; - - // aapt resource value: 0x7F030074 - public const int buttonTint = 2130903156; - - // aapt resource value: 0x7F030075 - public const int buttonTintMode = 2130903157; - - // aapt resource value: 0x7F030076 - public const int cardBackgroundColor = 2130903158; - - // aapt resource value: 0x7F030077 - public const int cardCornerRadius = 2130903159; - - // aapt resource value: 0x7F030078 - public const int cardElevation = 2130903160; - - // aapt resource value: 0x7F030079 - public const int cardForegroundColor = 2130903161; - - // aapt resource value: 0x7F03007A - public const int cardMaxElevation = 2130903162; - - // aapt resource value: 0x7F03007B - public const int cardPreventCornerOverlap = 2130903163; - - // aapt resource value: 0x7F03007C - public const int cardUseCompatPadding = 2130903164; - - // aapt resource value: 0x7F03007D - public const int cardViewStyle = 2130903165; - - // aapt resource value: 0x7F03007E - public const int chainUseRtl = 2130903166; - - // aapt resource value: 0x7F03007F - public const int checkboxStyle = 2130903167; - - // aapt resource value: 0x7F030080 - public const int checkedButton = 2130903168; - - // aapt resource value: 0x7F030081 - public const int checkedChip = 2130903169; - - // aapt resource value: 0x7F030082 - public const int checkedIcon = 2130903170; - - // aapt resource value: 0x7F030083 - public const int checkedIconEnabled = 2130903171; - - // aapt resource value: 0x7F030084 - public const int checkedIconMargin = 2130903172; - - // aapt resource value: 0x7F030085 - public const int checkedIconSize = 2130903173; - - // aapt resource value: 0x7F030086 - public const int checkedIconTint = 2130903174; - - // aapt resource value: 0x7F030087 - public const int checkedIconVisible = 2130903175; - - // aapt resource value: 0x7F030088 - public const int checkedTextViewStyle = 2130903176; - - // aapt resource value: 0x7F030089 - public const int chipBackgroundColor = 2130903177; - - // aapt resource value: 0x7F03008A - public const int chipCornerRadius = 2130903178; - - // aapt resource value: 0x7F03008B - public const int chipEndPadding = 2130903179; - - // aapt resource value: 0x7F03008C - public const int chipGroupStyle = 2130903180; - - // aapt resource value: 0x7F03008D - public const int chipIcon = 2130903181; - - // aapt resource value: 0x7F03008E - public const int chipIconEnabled = 2130903182; - - // aapt resource value: 0x7F03008F - public const int chipIconSize = 2130903183; - - // aapt resource value: 0x7F030090 - public const int chipIconTint = 2130903184; - - // aapt resource value: 0x7F030091 - public const int chipIconVisible = 2130903185; - - // aapt resource value: 0x7F030092 - public const int chipMinHeight = 2130903186; - - // aapt resource value: 0x7F030093 - public const int chipMinTouchTargetSize = 2130903187; - - // aapt resource value: 0x7F030094 - public const int chipSpacing = 2130903188; - - // aapt resource value: 0x7F030095 - public const int chipSpacingHorizontal = 2130903189; - - // aapt resource value: 0x7F030096 - public const int chipSpacingVertical = 2130903190; - - // aapt resource value: 0x7F030097 - public const int chipStandaloneStyle = 2130903191; - - // aapt resource value: 0x7F030098 - public const int chipStartPadding = 2130903192; - - // aapt resource value: 0x7F030099 - public const int chipStrokeColor = 2130903193; - - // aapt resource value: 0x7F03009A - public const int chipStrokeWidth = 2130903194; - - // aapt resource value: 0x7F03009B - public const int chipStyle = 2130903195; - - // aapt resource value: 0x7F03009C - public const int chipSurfaceColor = 2130903196; - - // aapt resource value: 0x7F03009D - public const int circleRadius = 2130903197; - - // aapt resource value: 0x7F03009E - public const int circularProgressIndicatorStyle = 2130903198; - - // aapt resource value: 0x7F03009F - public const int clickAction = 2130903199; - - // aapt resource value: 0x7F0300A0 - public const int clockFaceBackgroundColor = 2130903200; - - // aapt resource value: 0x7F0300A1 - public const int clockHandColor = 2130903201; - - // aapt resource value: 0x7F0300A2 - public const int clockIcon = 2130903202; - - // aapt resource value: 0x7F0300A3 - public const int clockNumberTextColor = 2130903203; - - // aapt resource value: 0x7F0300A4 - public const int closeIcon = 2130903204; - - // aapt resource value: 0x7F0300A5 - public const int closeIconEnabled = 2130903205; + static Layout() + { + global::Android.Runtime.ResourceIdManager.UpdateIdValues(); + } - // aapt resource value: 0x7F0300A6 - public const int closeIconEndPadding = 2130903206; + private Layout() + { + } + } + + public partial class String + { - // aapt resource value: 0x7F0300A7 - public const int closeIconSize = 2130903207; + // aapt resource value: 0x7F040000 + public const int app_name = 2130968576; - // aapt resource value: 0x7F0300A8 - public const int closeIconStartPadding = 2130903208; + // aapt resource value: 0x7F040001 + public const int hello = 2130968577; - // aapt resource value: 0x7F0300A9 - public const int closeIconTint = 2130903209; + static String() + { + global::Android.Runtime.ResourceIdManager.UpdateIdValues(); + } - // aapt resource value: 0x7F0300AA - public const int closeIconVisible = 2130903210; - - // aapt resource value: 0x7F0300AB - public const int closeItemLayout = 2130903211; - - // aapt resource value: 0x7F0300AC - public const int collapseContentDescription = 2130903212; - - // aapt resource value: 0x7F0300AE - public const int collapsedSize = 2130903214; - - // aapt resource value: 0x7F0300AF - public const int collapsedTitleGravity = 2130903215; - - // aapt resource value: 0x7F0300B0 - public const int collapsedTitleTextAppearance = 2130903216; - - // aapt resource value: 0x7F0300AD - public const int collapseIcon = 2130903213; - - // aapt resource value: 0x7F0300B1 - public const int collapsingToolbarLayoutStyle = 2130903217; - - // aapt resource value: 0x7F0300B2 - public const int color = 2130903218; - - // aapt resource value: 0x7F0300B3 - public const int colorAccent = 2130903219; - - // aapt resource value: 0x7F0300B4 - public const int colorBackgroundFloating = 2130903220; - - // aapt resource value: 0x7F0300B5 - public const int colorButtonNormal = 2130903221; - - // aapt resource value: 0x7F0300B6 - public const int colorControlActivated = 2130903222; - - // aapt resource value: 0x7F0300B7 - public const int colorControlHighlight = 2130903223; - - // aapt resource value: 0x7F0300B8 - public const int colorControlNormal = 2130903224; - - // aapt resource value: 0x7F0300B9 - public const int colorError = 2130903225; - - // aapt resource value: 0x7F0300BA - public const int colorOnBackground = 2130903226; - - // aapt resource value: 0x7F0300BB - public const int colorOnError = 2130903227; - - // aapt resource value: 0x7F0300BC - public const int colorOnPrimary = 2130903228; - - // aapt resource value: 0x7F0300BD - public const int colorOnPrimarySurface = 2130903229; - - // aapt resource value: 0x7F0300BE - public const int colorOnSecondary = 2130903230; - - // aapt resource value: 0x7F0300BF - public const int colorOnSurface = 2130903231; - - // aapt resource value: 0x7F0300C0 - public const int colorPrimary = 2130903232; - - // aapt resource value: 0x7F0300C1 - public const int colorPrimaryDark = 2130903233; - - // aapt resource value: 0x7F0300C2 - public const int colorPrimarySurface = 2130903234; - - // aapt resource value: 0x7F0300C3 - public const int colorPrimaryVariant = 2130903235; - - // aapt resource value: 0x7F0300C4 - public const int colorSecondary = 2130903236; - - // aapt resource value: 0x7F0300C5 - public const int colorSecondaryVariant = 2130903237; - - // aapt resource value: 0x7F0300C6 - public const int colorSurface = 2130903238; - - // aapt resource value: 0x7F0300C7 - public const int colorSwitchThumbNormal = 2130903239; - - // aapt resource value: 0x7F0300C8 - public const int commitIcon = 2130903240; - - // aapt resource value: 0x7F0300CE - public const int constraints = 2130903246; - - // aapt resource value: 0x7F0300C9 - public const int constraintSet = 2130903241; - - // aapt resource value: 0x7F0300CA - public const int constraintSetEnd = 2130903242; - - // aapt resource value: 0x7F0300CB - public const int constraintSetStart = 2130903243; - - // aapt resource value: 0x7F0300CC - public const int constraint_referenced_ids = 2130903244; - - // aapt resource value: 0x7F0300CD - public const int constraint_referenced_tags = 2130903245; - - // aapt resource value: 0x7F0300CF - public const int content = 2130903247; - - // aapt resource value: 0x7F0300D0 - public const int contentDescription = 2130903248; - - // aapt resource value: 0x7F0300D1 - public const int contentInsetEnd = 2130903249; - - // aapt resource value: 0x7F0300D2 - public const int contentInsetEndWithActions = 2130903250; - - // aapt resource value: 0x7F0300D3 - public const int contentInsetLeft = 2130903251; - - // aapt resource value: 0x7F0300D4 - public const int contentInsetRight = 2130903252; - - // aapt resource value: 0x7F0300D5 - public const int contentInsetStart = 2130903253; - - // aapt resource value: 0x7F0300D6 - public const int contentInsetStartWithNavigation = 2130903254; - - // aapt resource value: 0x7F0300D7 - public const int contentPadding = 2130903255; - - // aapt resource value: 0x7F0300D8 - public const int contentPaddingBottom = 2130903256; - - // aapt resource value: 0x7F0300D9 - public const int contentPaddingEnd = 2130903257; - - // aapt resource value: 0x7F0300DA - public const int contentPaddingLeft = 2130903258; - - // aapt resource value: 0x7F0300DB - public const int contentPaddingRight = 2130903259; - - // aapt resource value: 0x7F0300DC - public const int contentPaddingStart = 2130903260; - - // aapt resource value: 0x7F0300DD - public const int contentPaddingTop = 2130903261; - - // aapt resource value: 0x7F0300DE - public const int contentScrim = 2130903262; - - // aapt resource value: 0x7F0300DF - public const int contrast = 2130903263; - - // aapt resource value: 0x7F0300E0 - public const int controlBackground = 2130903264; - - // aapt resource value: 0x7F0300E1 - public const int coordinatorLayoutStyle = 2130903265; - - // aapt resource value: 0x7F0300E2 - public const int cornerFamily = 2130903266; - - // aapt resource value: 0x7F0300E3 - public const int cornerFamilyBottomLeft = 2130903267; - - // aapt resource value: 0x7F0300E4 - public const int cornerFamilyBottomRight = 2130903268; - - // aapt resource value: 0x7F0300E5 - public const int cornerFamilyTopLeft = 2130903269; - - // aapt resource value: 0x7F0300E6 - public const int cornerFamilyTopRight = 2130903270; - - // aapt resource value: 0x7F0300E7 - public const int cornerRadius = 2130903271; - - // aapt resource value: 0x7F0300E8 - public const int cornerSize = 2130903272; - - // aapt resource value: 0x7F0300E9 - public const int cornerSizeBottomLeft = 2130903273; - - // aapt resource value: 0x7F0300EA - public const int cornerSizeBottomRight = 2130903274; - - // aapt resource value: 0x7F0300EB - public const int cornerSizeTopLeft = 2130903275; - - // aapt resource value: 0x7F0300EC - public const int cornerSizeTopRight = 2130903276; - - // aapt resource value: 0x7F0300ED - public const int counterEnabled = 2130903277; - - // aapt resource value: 0x7F0300EE - public const int counterMaxLength = 2130903278; - - // aapt resource value: 0x7F0300EF - public const int counterOverflowTextAppearance = 2130903279; - - // aapt resource value: 0x7F0300F0 - public const int counterOverflowTextColor = 2130903280; - - // aapt resource value: 0x7F0300F1 - public const int counterTextAppearance = 2130903281; - - // aapt resource value: 0x7F0300F2 - public const int counterTextColor = 2130903282; - - // aapt resource value: 0x7F0300F3 - public const int crossfade = 2130903283; - - // aapt resource value: 0x7F0300F4 - public const int currentState = 2130903284; - - // aapt resource value: 0x7F0300F5 - public const int curveFit = 2130903285; - - // aapt resource value: 0x7F0300F6 - public const int customBoolean = 2130903286; - - // aapt resource value: 0x7F0300F7 - public const int customColorDrawableValue = 2130903287; - - // aapt resource value: 0x7F0300F8 - public const int customColorValue = 2130903288; - - // aapt resource value: 0x7F0300F9 - public const int customDimension = 2130903289; - - // aapt resource value: 0x7F0300FA - public const int customFloatValue = 2130903290; - - // aapt resource value: 0x7F0300FB - public const int customIntegerValue = 2130903291; - - // aapt resource value: 0x7F0300FC - public const int customNavigationLayout = 2130903292; - - // aapt resource value: 0x7F0300FD - public const int customPixelDimension = 2130903293; - - // aapt resource value: 0x7F0300FE - public const int customStringValue = 2130903294; - - // aapt resource value: 0x7F0300FF - public const int dayInvalidStyle = 2130903295; - - // aapt resource value: 0x7F030100 - public const int daySelectedStyle = 2130903296; - - // aapt resource value: 0x7F030101 - public const int dayStyle = 2130903297; - - // aapt resource value: 0x7F030102 - public const int dayTodayStyle = 2130903298; - - // aapt resource value: 0x7F030103 - public const int defaultDuration = 2130903299; - - // aapt resource value: 0x7F030104 - public const int defaultQueryHint = 2130903300; - - // aapt resource value: 0x7F030105 - public const int defaultState = 2130903301; - - // aapt resource value: 0x7F030106 - public const int deltaPolarAngle = 2130903302; - - // aapt resource value: 0x7F030107 - public const int deltaPolarRadius = 2130903303; - - // aapt resource value: 0x7F030108 - public const int deriveConstraintsFrom = 2130903304; - - // aapt resource value: 0x7F030109 - public const int dialogCornerRadius = 2130903305; - - // aapt resource value: 0x7F03010A - public const int dialogPreferredPadding = 2130903306; - - // aapt resource value: 0x7F03010B - public const int dialogTheme = 2130903307; - - // aapt resource value: 0x7F03010C - public const int displayOptions = 2130903308; - - // aapt resource value: 0x7F03010D - public const int divider = 2130903309; - - // aapt resource value: 0x7F03010E - public const int dividerHorizontal = 2130903310; - - // aapt resource value: 0x7F03010F - public const int dividerPadding = 2130903311; - - // aapt resource value: 0x7F030110 - public const int dividerVertical = 2130903312; - - // aapt resource value: 0x7F030111 - public const int dragDirection = 2130903313; - - // aapt resource value: 0x7F030112 - public const int dragScale = 2130903314; - - // aapt resource value: 0x7F030113 - public const int dragThreshold = 2130903315; - - // aapt resource value: 0x7F030115 - public const int drawableBottomCompat = 2130903317; - - // aapt resource value: 0x7F030116 - public const int drawableEndCompat = 2130903318; - - // aapt resource value: 0x7F030117 - public const int drawableLeftCompat = 2130903319; - - // aapt resource value: 0x7F030118 - public const int drawableRightCompat = 2130903320; - - // aapt resource value: 0x7F030119 - public const int drawableSize = 2130903321; - - // aapt resource value: 0x7F03011A - public const int drawableStartCompat = 2130903322; - - // aapt resource value: 0x7F03011B - public const int drawableTint = 2130903323; - - // aapt resource value: 0x7F03011C - public const int drawableTintMode = 2130903324; - - // aapt resource value: 0x7F03011D - public const int drawableTopCompat = 2130903325; - - // aapt resource value: 0x7F03011E - public const int drawerArrowStyle = 2130903326; - - // aapt resource value: 0x7F03011F - public const int drawerLayoutStyle = 2130903327; - - // aapt resource value: 0x7F030114 - public const int drawPath = 2130903316; - - // aapt resource value: 0x7F030121 - public const int dropdownListPreferredItemHeight = 2130903329; - - // aapt resource value: 0x7F030120 - public const int dropDownListViewStyle = 2130903328; - - // aapt resource value: 0x7F030122 - public const int duration = 2130903330; - - // aapt resource value: 0x7F030123 - public const int editTextBackground = 2130903331; - - // aapt resource value: 0x7F030124 - public const int editTextColor = 2130903332; - - // aapt resource value: 0x7F030125 - public const int editTextStyle = 2130903333; - - // aapt resource value: 0x7F030126 - public const int elevation = 2130903334; - - // aapt resource value: 0x7F030127 - public const int elevationOverlayColor = 2130903335; - - // aapt resource value: 0x7F030128 - public const int elevationOverlayEnabled = 2130903336; - - // aapt resource value: 0x7F030129 - public const int endIconCheckable = 2130903337; - - // aapt resource value: 0x7F03012A - public const int endIconContentDescription = 2130903338; - - // aapt resource value: 0x7F03012B - public const int endIconDrawable = 2130903339; - - // aapt resource value: 0x7F03012C - public const int endIconMode = 2130903340; - - // aapt resource value: 0x7F03012D - public const int endIconTint = 2130903341; - - // aapt resource value: 0x7F03012E - public const int endIconTintMode = 2130903342; - - // aapt resource value: 0x7F03012F - public const int enforceMaterialTheme = 2130903343; - - // aapt resource value: 0x7F030130 - public const int enforceTextAppearance = 2130903344; - - // aapt resource value: 0x7F030131 - public const int ensureMinTouchTargetSize = 2130903345; - - // aapt resource value: 0x7F030132 - public const int errorContentDescription = 2130903346; - - // aapt resource value: 0x7F030133 - public const int errorEnabled = 2130903347; - - // aapt resource value: 0x7F030134 - public const int errorIconDrawable = 2130903348; - - // aapt resource value: 0x7F030135 - public const int errorIconTint = 2130903349; - - // aapt resource value: 0x7F030136 - public const int errorIconTintMode = 2130903350; - - // aapt resource value: 0x7F030137 - public const int errorTextAppearance = 2130903351; - - // aapt resource value: 0x7F030138 - public const int errorTextColor = 2130903352; - - // aapt resource value: 0x7F030139 - public const int expandActivityOverflowButtonDrawable = 2130903353; - - // aapt resource value: 0x7F03013A - public const int expanded = 2130903354; - - // aapt resource value: 0x7F03013B - public const int expandedHintEnabled = 2130903355; - - // aapt resource value: 0x7F03013C - public const int expandedTitleGravity = 2130903356; - - // aapt resource value: 0x7F03013D - public const int expandedTitleMargin = 2130903357; - - // aapt resource value: 0x7F03013E - public const int expandedTitleMarginBottom = 2130903358; - - // aapt resource value: 0x7F03013F - public const int expandedTitleMarginEnd = 2130903359; - - // aapt resource value: 0x7F030140 - public const int expandedTitleMarginStart = 2130903360; - - // aapt resource value: 0x7F030141 - public const int expandedTitleMarginTop = 2130903361; - - // aapt resource value: 0x7F030142 - public const int expandedTitleTextAppearance = 2130903362; - - // aapt resource value: 0x7F030144 - public const int extendedFloatingActionButtonStyle = 2130903364; - - // aapt resource value: 0x7F030143 - public const int extendMotionSpec = 2130903363; - - // aapt resource value: 0x7F030145 - public const int fabAlignmentMode = 2130903365; - - // aapt resource value: 0x7F030146 - public const int fabAnimationMode = 2130903366; - - // aapt resource value: 0x7F030147 - public const int fabCradleMargin = 2130903367; - - // aapt resource value: 0x7F030148 - public const int fabCradleRoundedCornerRadius = 2130903368; - - // aapt resource value: 0x7F030149 - public const int fabCradleVerticalOffset = 2130903369; - - // aapt resource value: 0x7F03014A - public const int fabCustomSize = 2130903370; - - // aapt resource value: 0x7F03014B - public const int fabSize = 2130903371; - - // aapt resource value: 0x7F03014C - public const int fastScrollEnabled = 2130903372; - - // aapt resource value: 0x7F03014D - public const int fastScrollHorizontalThumbDrawable = 2130903373; - - // aapt resource value: 0x7F03014E - public const int fastScrollHorizontalTrackDrawable = 2130903374; - - // aapt resource value: 0x7F03014F - public const int fastScrollVerticalThumbDrawable = 2130903375; - - // aapt resource value: 0x7F030150 - public const int fastScrollVerticalTrackDrawable = 2130903376; - - // aapt resource value: 0x7F030151 - public const int firstBaselineToTopHeight = 2130903377; - - // aapt resource value: 0x7F030152 - public const int floatingActionButtonStyle = 2130903378; - - // aapt resource value: 0x7F030153 - public const int flow_firstHorizontalBias = 2130903379; - - // aapt resource value: 0x7F030154 - public const int flow_firstHorizontalStyle = 2130903380; - - // aapt resource value: 0x7F030155 - public const int flow_firstVerticalBias = 2130903381; - - // aapt resource value: 0x7F030156 - public const int flow_firstVerticalStyle = 2130903382; - - // aapt resource value: 0x7F030157 - public const int flow_horizontalAlign = 2130903383; - - // aapt resource value: 0x7F030158 - public const int flow_horizontalBias = 2130903384; - - // aapt resource value: 0x7F030159 - public const int flow_horizontalGap = 2130903385; - - // aapt resource value: 0x7F03015A - public const int flow_horizontalStyle = 2130903386; - - // aapt resource value: 0x7F03015B - public const int flow_lastHorizontalBias = 2130903387; - - // aapt resource value: 0x7F03015C - public const int flow_lastHorizontalStyle = 2130903388; - - // aapt resource value: 0x7F03015D - public const int flow_lastVerticalBias = 2130903389; - - // aapt resource value: 0x7F03015E - public const int flow_lastVerticalStyle = 2130903390; - - // aapt resource value: 0x7F03015F - public const int flow_maxElementsWrap = 2130903391; - - // aapt resource value: 0x7F030160 - public const int flow_padding = 2130903392; - - // aapt resource value: 0x7F030161 - public const int flow_verticalAlign = 2130903393; - - // aapt resource value: 0x7F030162 - public const int flow_verticalBias = 2130903394; - - // aapt resource value: 0x7F030163 - public const int flow_verticalGap = 2130903395; - - // aapt resource value: 0x7F030164 - public const int flow_verticalStyle = 2130903396; - - // aapt resource value: 0x7F030165 - public const int flow_wrapMode = 2130903397; - - // aapt resource value: 0x7F030166 - public const int font = 2130903398; - - // aapt resource value: 0x7F030167 - public const int fontFamily = 2130903399; - - // aapt resource value: 0x7F030168 - public const int fontProviderAuthority = 2130903400; - - // aapt resource value: 0x7F030169 - public const int fontProviderCerts = 2130903401; - - // aapt resource value: 0x7F03016A - public const int fontProviderFetchStrategy = 2130903402; - - // aapt resource value: 0x7F03016B - public const int fontProviderFetchTimeout = 2130903403; - - // aapt resource value: 0x7F03016C - public const int fontProviderPackage = 2130903404; - - // aapt resource value: 0x7F03016D - public const int fontProviderQuery = 2130903405; - - // aapt resource value: 0x7F03016E - public const int fontStyle = 2130903406; - - // aapt resource value: 0x7F03016F - public const int fontVariationSettings = 2130903407; - - // aapt resource value: 0x7F030170 - public const int fontWeight = 2130903408; - - // aapt resource value: 0x7F030171 - public const int foregroundInsidePadding = 2130903409; - - // aapt resource value: 0x7F030172 - public const int framePosition = 2130903410; - - // aapt resource value: 0x7F030173 - public const int gapBetweenBars = 2130903411; - - // aapt resource value: 0x7F030174 - public const int gestureInsetBottomIgnored = 2130903412; - - // aapt resource value: 0x7F030175 - public const int goIcon = 2130903413; - - // aapt resource value: 0x7F030176 - public const int haloColor = 2130903414; - - // aapt resource value: 0x7F030177 - public const int haloRadius = 2130903415; - - // aapt resource value: 0x7F030178 - public const int headerLayout = 2130903416; - - // aapt resource value: 0x7F030179 - public const int height = 2130903417; - - // aapt resource value: 0x7F03017A - public const int helperText = 2130903418; - - // aapt resource value: 0x7F03017B - public const int helperTextEnabled = 2130903419; - - // aapt resource value: 0x7F03017C - public const int helperTextTextAppearance = 2130903420; - - // aapt resource value: 0x7F03017D - public const int helperTextTextColor = 2130903421; - - // aapt resource value: 0x7F03017E - public const int hideAnimationBehavior = 2130903422; - - // aapt resource value: 0x7F03017F - public const int hideMotionSpec = 2130903423; - - // aapt resource value: 0x7F030180 - public const int hideOnContentScroll = 2130903424; - - // aapt resource value: 0x7F030181 - public const int hideOnScroll = 2130903425; - - // aapt resource value: 0x7F030182 - public const int hintAnimationEnabled = 2130903426; - - // aapt resource value: 0x7F030183 - public const int hintEnabled = 2130903427; - - // aapt resource value: 0x7F030184 - public const int hintTextAppearance = 2130903428; - - // aapt resource value: 0x7F030185 - public const int hintTextColor = 2130903429; - - // aapt resource value: 0x7F030186 - public const int homeAsUpIndicator = 2130903430; - - // aapt resource value: 0x7F030187 - public const int homeLayout = 2130903431; - - // aapt resource value: 0x7F030188 - public const int horizontalOffset = 2130903432; - - // aapt resource value: 0x7F030189 - public const int hoveredFocusedTranslationZ = 2130903433; - - // aapt resource value: 0x7F03018A - public const int icon = 2130903434; - - // aapt resource value: 0x7F03018B - public const int iconEndPadding = 2130903435; - - // aapt resource value: 0x7F03018C - public const int iconGravity = 2130903436; - - // aapt resource value: 0x7F030192 - public const int iconifiedByDefault = 2130903442; - - // aapt resource value: 0x7F03018D - public const int iconPadding = 2130903437; - - // aapt resource value: 0x7F03018E - public const int iconSize = 2130903438; - - // aapt resource value: 0x7F03018F - public const int iconStartPadding = 2130903439; - - // aapt resource value: 0x7F030190 - public const int iconTint = 2130903440; - - // aapt resource value: 0x7F030191 - public const int iconTintMode = 2130903441; - - // aapt resource value: 0x7F030193 - public const int imageButtonStyle = 2130903443; - - // aapt resource value: 0x7F030194 - public const int indeterminateAnimationType = 2130903444; - - // aapt resource value: 0x7F030195 - public const int indeterminateProgressStyle = 2130903445; - - // aapt resource value: 0x7F030196 - public const int indicatorColor = 2130903446; - - // aapt resource value: 0x7F030197 - public const int indicatorDirectionCircular = 2130903447; - - // aapt resource value: 0x7F030198 - public const int indicatorDirectionLinear = 2130903448; - - // aapt resource value: 0x7F030199 - public const int indicatorInset = 2130903449; - - // aapt resource value: 0x7F03019A - public const int indicatorSize = 2130903450; - - // aapt resource value: 0x7F03019B - public const int initialActivityCount = 2130903451; - - // aapt resource value: 0x7F03019C - public const int insetForeground = 2130903452; - - // aapt resource value: 0x7F03019D - public const int isLightTheme = 2130903453; - - // aapt resource value: 0x7F03019E - public const int isMaterialTheme = 2130903454; - - // aapt resource value: 0x7F03019F - public const int itemBackground = 2130903455; - - // aapt resource value: 0x7F0301A0 - public const int itemFillColor = 2130903456; - - // aapt resource value: 0x7F0301A1 - public const int itemHorizontalPadding = 2130903457; - - // aapt resource value: 0x7F0301A2 - public const int itemHorizontalTranslationEnabled = 2130903458; - - // aapt resource value: 0x7F0301A3 - public const int itemIconPadding = 2130903459; - - // aapt resource value: 0x7F0301A4 - public const int itemIconSize = 2130903460; - - // aapt resource value: 0x7F0301A5 - public const int itemIconTint = 2130903461; - - // aapt resource value: 0x7F0301A6 - public const int itemMaxLines = 2130903462; - - // aapt resource value: 0x7F0301A7 - public const int itemPadding = 2130903463; - - // aapt resource value: 0x7F0301A8 - public const int itemRippleColor = 2130903464; - - // aapt resource value: 0x7F0301A9 - public const int itemShapeAppearance = 2130903465; - - // aapt resource value: 0x7F0301AA - public const int itemShapeAppearanceOverlay = 2130903466; - - // aapt resource value: 0x7F0301AB - public const int itemShapeFillColor = 2130903467; - - // aapt resource value: 0x7F0301AC - public const int itemShapeInsetBottom = 2130903468; - - // aapt resource value: 0x7F0301AD - public const int itemShapeInsetEnd = 2130903469; - - // aapt resource value: 0x7F0301AE - public const int itemShapeInsetStart = 2130903470; - - // aapt resource value: 0x7F0301AF - public const int itemShapeInsetTop = 2130903471; - - // aapt resource value: 0x7F0301B0 - public const int itemSpacing = 2130903472; - - // aapt resource value: 0x7F0301B1 - public const int itemStrokeColor = 2130903473; - - // aapt resource value: 0x7F0301B2 - public const int itemStrokeWidth = 2130903474; - - // aapt resource value: 0x7F0301B3 - public const int itemTextAppearance = 2130903475; - - // aapt resource value: 0x7F0301B4 - public const int itemTextAppearanceActive = 2130903476; - - // aapt resource value: 0x7F0301B5 - public const int itemTextAppearanceInactive = 2130903477; - - // aapt resource value: 0x7F0301B6 - public const int itemTextColor = 2130903478; - - // aapt resource value: 0x7F0301B8 - public const int keyboardIcon = 2130903480; - - // aapt resource value: 0x7F0301B9 - public const int keylines = 2130903481; - - // aapt resource value: 0x7F0301B7 - public const int keyPositionType = 2130903479; - - // aapt resource value: 0x7F0301BA - public const int labelBehavior = 2130903482; - - // aapt resource value: 0x7F0301BB - public const int labelStyle = 2130903483; - - // aapt resource value: 0x7F0301BC - public const int labelVisibilityMode = 2130903484; - - // aapt resource value: 0x7F0301BD - public const int lastBaselineToBottomHeight = 2130903485; - - // aapt resource value: 0x7F0301BE - public const int layout = 2130903486; - - // aapt resource value: 0x7F0301BF - public const int layoutDescription = 2130903487; - - // aapt resource value: 0x7F0301C0 - public const int layoutDuringTransition = 2130903488; - - // aapt resource value: 0x7F0301C1 - public const int layoutManager = 2130903489; - - // aapt resource value: 0x7F0301C2 - public const int layout_anchor = 2130903490; - - // aapt resource value: 0x7F0301C3 - public const int layout_anchorGravity = 2130903491; - - // aapt resource value: 0x7F0301C4 - public const int layout_behavior = 2130903492; - - // aapt resource value: 0x7F0301C5 - public const int layout_collapseMode = 2130903493; - - // aapt resource value: 0x7F0301C6 - public const int layout_collapseParallaxMultiplier = 2130903494; - - // aapt resource value: 0x7F0301C7 - public const int layout_constrainedHeight = 2130903495; - - // aapt resource value: 0x7F0301C8 - public const int layout_constrainedWidth = 2130903496; - - // aapt resource value: 0x7F0301C9 - public const int layout_constraintBaseline_creator = 2130903497; - - // aapt resource value: 0x7F0301CA - public const int layout_constraintBaseline_toBaselineOf = 2130903498; - - // aapt resource value: 0x7F0301CB - public const int layout_constraintBottom_creator = 2130903499; - - // aapt resource value: 0x7F0301CC - public const int layout_constraintBottom_toBottomOf = 2130903500; - - // aapt resource value: 0x7F0301CD - public const int layout_constraintBottom_toTopOf = 2130903501; - - // aapt resource value: 0x7F0301CE - public const int layout_constraintCircle = 2130903502; - - // aapt resource value: 0x7F0301CF - public const int layout_constraintCircleAngle = 2130903503; - - // aapt resource value: 0x7F0301D0 - public const int layout_constraintCircleRadius = 2130903504; - - // aapt resource value: 0x7F0301D1 - public const int layout_constraintDimensionRatio = 2130903505; - - // aapt resource value: 0x7F0301D2 - public const int layout_constraintEnd_toEndOf = 2130903506; - - // aapt resource value: 0x7F0301D3 - public const int layout_constraintEnd_toStartOf = 2130903507; - - // aapt resource value: 0x7F0301D4 - public const int layout_constraintGuide_begin = 2130903508; - - // aapt resource value: 0x7F0301D5 - public const int layout_constraintGuide_end = 2130903509; - - // aapt resource value: 0x7F0301D6 - public const int layout_constraintGuide_percent = 2130903510; - - // aapt resource value: 0x7F0301D7 - public const int layout_constraintHeight_default = 2130903511; - - // aapt resource value: 0x7F0301D8 - public const int layout_constraintHeight_max = 2130903512; - - // aapt resource value: 0x7F0301D9 - public const int layout_constraintHeight_min = 2130903513; - - // aapt resource value: 0x7F0301DA - public const int layout_constraintHeight_percent = 2130903514; - - // aapt resource value: 0x7F0301DB - public const int layout_constraintHorizontal_bias = 2130903515; - - // aapt resource value: 0x7F0301DC - public const int layout_constraintHorizontal_chainStyle = 2130903516; - - // aapt resource value: 0x7F0301DD - public const int layout_constraintHorizontal_weight = 2130903517; - - // aapt resource value: 0x7F0301DE - public const int layout_constraintLeft_creator = 2130903518; - - // aapt resource value: 0x7F0301DF - public const int layout_constraintLeft_toLeftOf = 2130903519; - - // aapt resource value: 0x7F0301E0 - public const int layout_constraintLeft_toRightOf = 2130903520; - - // aapt resource value: 0x7F0301E1 - public const int layout_constraintRight_creator = 2130903521; - - // aapt resource value: 0x7F0301E2 - public const int layout_constraintRight_toLeftOf = 2130903522; - - // aapt resource value: 0x7F0301E3 - public const int layout_constraintRight_toRightOf = 2130903523; - - // aapt resource value: 0x7F0301E4 - public const int layout_constraintStart_toEndOf = 2130903524; - - // aapt resource value: 0x7F0301E5 - public const int layout_constraintStart_toStartOf = 2130903525; - - // aapt resource value: 0x7F0301E6 - public const int layout_constraintTag = 2130903526; - - // aapt resource value: 0x7F0301E7 - public const int layout_constraintTop_creator = 2130903527; - - // aapt resource value: 0x7F0301E8 - public const int layout_constraintTop_toBottomOf = 2130903528; - - // aapt resource value: 0x7F0301E9 - public const int layout_constraintTop_toTopOf = 2130903529; - - // aapt resource value: 0x7F0301EA - public const int layout_constraintVertical_bias = 2130903530; - - // aapt resource value: 0x7F0301EB - public const int layout_constraintVertical_chainStyle = 2130903531; - - // aapt resource value: 0x7F0301EC - public const int layout_constraintVertical_weight = 2130903532; - - // aapt resource value: 0x7F0301ED - public const int layout_constraintWidth_default = 2130903533; - - // aapt resource value: 0x7F0301EE - public const int layout_constraintWidth_max = 2130903534; - - // aapt resource value: 0x7F0301EF - public const int layout_constraintWidth_min = 2130903535; - - // aapt resource value: 0x7F0301F0 - public const int layout_constraintWidth_percent = 2130903536; - - // aapt resource value: 0x7F0301F1 - public const int layout_dodgeInsetEdges = 2130903537; - - // aapt resource value: 0x7F0301F2 - public const int layout_editor_absoluteX = 2130903538; - - // aapt resource value: 0x7F0301F3 - public const int layout_editor_absoluteY = 2130903539; - - // aapt resource value: 0x7F0301F4 - public const int layout_goneMarginBottom = 2130903540; - - // aapt resource value: 0x7F0301F5 - public const int layout_goneMarginEnd = 2130903541; - - // aapt resource value: 0x7F0301F6 - public const int layout_goneMarginLeft = 2130903542; - - // aapt resource value: 0x7F0301F7 - public const int layout_goneMarginRight = 2130903543; - - // aapt resource value: 0x7F0301F8 - public const int layout_goneMarginStart = 2130903544; - - // aapt resource value: 0x7F0301F9 - public const int layout_goneMarginTop = 2130903545; - - // aapt resource value: 0x7F0301FA - public const int layout_insetEdge = 2130903546; - - // aapt resource value: 0x7F0301FB - public const int layout_keyline = 2130903547; - - // aapt resource value: 0x7F0301FC - public const int layout_optimizationLevel = 2130903548; - - // aapt resource value: 0x7F0301FD - public const int layout_scrollFlags = 2130903549; - - // aapt resource value: 0x7F0301FE - public const int layout_scrollInterpolator = 2130903550; - - // aapt resource value: 0x7F0301FF - public const int liftOnScroll = 2130903551; - - // aapt resource value: 0x7F030200 - public const int liftOnScrollTargetViewId = 2130903552; - - // aapt resource value: 0x7F030201 - public const int limitBoundsTo = 2130903553; - - // aapt resource value: 0x7F030204 - public const int linearProgressIndicatorStyle = 2130903556; - - // aapt resource value: 0x7F030202 - public const int lineHeight = 2130903554; - - // aapt resource value: 0x7F030203 - public const int lineSpacing = 2130903555; - - // aapt resource value: 0x7F030205 - public const int listChoiceBackgroundIndicator = 2130903557; - - // aapt resource value: 0x7F030206 - public const int listChoiceIndicatorMultipleAnimated = 2130903558; - - // aapt resource value: 0x7F030207 - public const int listChoiceIndicatorSingleAnimated = 2130903559; - - // aapt resource value: 0x7F030208 - public const int listDividerAlertDialog = 2130903560; - - // aapt resource value: 0x7F030209 - public const int listItemLayout = 2130903561; - - // aapt resource value: 0x7F03020A - public const int listLayout = 2130903562; - - // aapt resource value: 0x7F03020B - public const int listMenuViewStyle = 2130903563; - - // aapt resource value: 0x7F03020C - public const int listPopupWindowStyle = 2130903564; - - // aapt resource value: 0x7F03020D - public const int listPreferredItemHeight = 2130903565; - - // aapt resource value: 0x7F03020E - public const int listPreferredItemHeightLarge = 2130903566; - - // aapt resource value: 0x7F03020F - public const int listPreferredItemHeightSmall = 2130903567; - - // aapt resource value: 0x7F030210 - public const int listPreferredItemPaddingEnd = 2130903568; - - // aapt resource value: 0x7F030211 - public const int listPreferredItemPaddingLeft = 2130903569; - - // aapt resource value: 0x7F030212 - public const int listPreferredItemPaddingRight = 2130903570; - - // aapt resource value: 0x7F030213 - public const int listPreferredItemPaddingStart = 2130903571; - - // aapt resource value: 0x7F030214 - public const int logo = 2130903572; - - // aapt resource value: 0x7F030215 - public const int logoDescription = 2130903573; - - // aapt resource value: 0x7F030216 - public const int materialAlertDialogBodyTextStyle = 2130903574; - - // aapt resource value: 0x7F030217 - public const int materialAlertDialogTheme = 2130903575; - - // aapt resource value: 0x7F030218 - public const int materialAlertDialogTitleIconStyle = 2130903576; - - // aapt resource value: 0x7F030219 - public const int materialAlertDialogTitlePanelStyle = 2130903577; - - // aapt resource value: 0x7F03021A - public const int materialAlertDialogTitleTextStyle = 2130903578; - - // aapt resource value: 0x7F03021B - public const int materialButtonOutlinedStyle = 2130903579; - - // aapt resource value: 0x7F03021C - public const int materialButtonStyle = 2130903580; - - // aapt resource value: 0x7F03021D - public const int materialButtonToggleGroupStyle = 2130903581; - - // aapt resource value: 0x7F03021E - public const int materialCalendarDay = 2130903582; - - // aapt resource value: 0x7F03021F - public const int materialCalendarFullscreenTheme = 2130903583; - - // aapt resource value: 0x7F030220 - public const int materialCalendarHeaderCancelButton = 2130903584; - - // aapt resource value: 0x7F030221 - public const int materialCalendarHeaderConfirmButton = 2130903585; - - // aapt resource value: 0x7F030222 - public const int materialCalendarHeaderDivider = 2130903586; - - // aapt resource value: 0x7F030223 - public const int materialCalendarHeaderLayout = 2130903587; - - // aapt resource value: 0x7F030224 - public const int materialCalendarHeaderSelection = 2130903588; - - // aapt resource value: 0x7F030225 - public const int materialCalendarHeaderTitle = 2130903589; - - // aapt resource value: 0x7F030226 - public const int materialCalendarHeaderToggleButton = 2130903590; - - // aapt resource value: 0x7F030227 - public const int materialCalendarMonth = 2130903591; - - // aapt resource value: 0x7F030228 - public const int materialCalendarMonthNavigationButton = 2130903592; - - // aapt resource value: 0x7F030229 - public const int materialCalendarStyle = 2130903593; - - // aapt resource value: 0x7F03022A - public const int materialCalendarTheme = 2130903594; - - // aapt resource value: 0x7F03022B - public const int materialCalendarYearNavigationButton = 2130903595; - - // aapt resource value: 0x7F03022C - public const int materialCardViewStyle = 2130903596; - - // aapt resource value: 0x7F03022D - public const int materialCircleRadius = 2130903597; - - // aapt resource value: 0x7F03022E - public const int materialClockStyle = 2130903598; - - // aapt resource value: 0x7F03022F - public const int materialThemeOverlay = 2130903599; - - // aapt resource value: 0x7F030230 - public const int materialTimePickerStyle = 2130903600; - - // aapt resource value: 0x7F030231 - public const int materialTimePickerTheme = 2130903601; - - // aapt resource value: 0x7F030232 - public const int maxAcceleration = 2130903602; - - // aapt resource value: 0x7F030233 - public const int maxActionInlineWidth = 2130903603; - - // aapt resource value: 0x7F030234 - public const int maxButtonHeight = 2130903604; - - // aapt resource value: 0x7F030235 - public const int maxCharacterCount = 2130903605; - - // aapt resource value: 0x7F030236 - public const int maxHeight = 2130903606; - - // aapt resource value: 0x7F030237 - public const int maxImageSize = 2130903607; - - // aapt resource value: 0x7F030238 - public const int maxLines = 2130903608; - - // aapt resource value: 0x7F030239 - public const int maxVelocity = 2130903609; - - // aapt resource value: 0x7F03023A - public const int maxWidth = 2130903610; - - // aapt resource value: 0x7F03023B - public const int measureWithLargestChild = 2130903611; - - // aapt resource value: 0x7F03023C - public const int menu = 2130903612; - - // aapt resource value: 0x7F03023D - public const int minHeight = 2130903613; - - // aapt resource value: 0x7F03023E - public const int minHideDelay = 2130903614; - - // aapt resource value: 0x7F03023F - public const int minSeparation = 2130903615; - - // aapt resource value: 0x7F030240 - public const int minTouchTargetSize = 2130903616; - - // aapt resource value: 0x7F030241 - public const int minWidth = 2130903617; - - // aapt resource value: 0x7F030242 - public const int mock_diagonalsColor = 2130903618; - - // aapt resource value: 0x7F030243 - public const int mock_label = 2130903619; - - // aapt resource value: 0x7F030244 - public const int mock_labelBackgroundColor = 2130903620; - - // aapt resource value: 0x7F030245 - public const int mock_labelColor = 2130903621; - - // aapt resource value: 0x7F030246 - public const int mock_showDiagonals = 2130903622; - - // aapt resource value: 0x7F030247 - public const int mock_showLabel = 2130903623; - - // aapt resource value: 0x7F030248 - public const int motionDebug = 2130903624; - - // aapt resource value: 0x7F030249 - public const int motionInterpolator = 2130903625; - - // aapt resource value: 0x7F03024A - public const int motionPathRotate = 2130903626; - - // aapt resource value: 0x7F03024B - public const int motionProgress = 2130903627; - - // aapt resource value: 0x7F03024C - public const int motionStagger = 2130903628; - - // aapt resource value: 0x7F03024D - public const int motionTarget = 2130903629; - - // aapt resource value: 0x7F03024E - public const int motion_postLayoutCollision = 2130903630; - - // aapt resource value: 0x7F03024F - public const int motion_triggerOnCollision = 2130903631; - - // aapt resource value: 0x7F030250 - public const int moveWhenScrollAtTop = 2130903632; - - // aapt resource value: 0x7F030251 - public const int multiChoiceItemLayout = 2130903633; - - // aapt resource value: 0x7F030252 - public const int navigationContentDescription = 2130903634; - - // aapt resource value: 0x7F030253 - public const int navigationIcon = 2130903635; - - // aapt resource value: 0x7F030254 - public const int navigationIconTint = 2130903636; - - // aapt resource value: 0x7F030255 - public const int navigationMode = 2130903637; - - // aapt resource value: 0x7F030256 - public const int navigationViewStyle = 2130903638; - - // aapt resource value: 0x7F030258 - public const int nestedScrollable = 2130903640; - - // aapt resource value: 0x7F030257 - public const int nestedScrollFlags = 2130903639; - - // aapt resource value: 0x7F030259 - public const int number = 2130903641; - - // aapt resource value: 0x7F03025A - public const int numericModifiers = 2130903642; - - // aapt resource value: 0x7F03025B - public const int onCross = 2130903643; - - // aapt resource value: 0x7F03025C - public const int onHide = 2130903644; - - // aapt resource value: 0x7F03025D - public const int onNegativeCross = 2130903645; - - // aapt resource value: 0x7F03025E - public const int onPositiveCross = 2130903646; - - // aapt resource value: 0x7F03025F - public const int onShow = 2130903647; - - // aapt resource value: 0x7F030260 - public const int onTouchUp = 2130903648; - - // aapt resource value: 0x7F030261 - public const int overlapAnchor = 2130903649; - - // aapt resource value: 0x7F030262 - public const int overlay = 2130903650; - - // aapt resource value: 0x7F030263 - public const int paddingBottomNoButtons = 2130903651; - - // aapt resource value: 0x7F030264 - public const int paddingBottomSystemWindowInsets = 2130903652; - - // aapt resource value: 0x7F030265 - public const int paddingEnd = 2130903653; - - // aapt resource value: 0x7F030266 - public const int paddingLeftSystemWindowInsets = 2130903654; - - // aapt resource value: 0x7F030267 - public const int paddingRightSystemWindowInsets = 2130903655; - - // aapt resource value: 0x7F030268 - public const int paddingStart = 2130903656; - - // aapt resource value: 0x7F030269 - public const int paddingTopNoTitle = 2130903657; - - // aapt resource value: 0x7F03026A - public const int panelBackground = 2130903658; - - // aapt resource value: 0x7F03026B - public const int panelMenuListTheme = 2130903659; - - // aapt resource value: 0x7F03026C - public const int panelMenuListWidth = 2130903660; - - // aapt resource value: 0x7F03026D - public const int passwordToggleContentDescription = 2130903661; - - // aapt resource value: 0x7F03026E - public const int passwordToggleDrawable = 2130903662; - - // aapt resource value: 0x7F03026F - public const int passwordToggleEnabled = 2130903663; - - // aapt resource value: 0x7F030270 - public const int passwordToggleTint = 2130903664; - - // aapt resource value: 0x7F030271 - public const int passwordToggleTintMode = 2130903665; - - // aapt resource value: 0x7F030272 - public const int pathMotionArc = 2130903666; - - // aapt resource value: 0x7F030273 - public const int path_percent = 2130903667; - - // aapt resource value: 0x7F030274 - public const int percentHeight = 2130903668; - - // aapt resource value: 0x7F030275 - public const int percentWidth = 2130903669; - - // aapt resource value: 0x7F030276 - public const int percentX = 2130903670; - - // aapt resource value: 0x7F030277 - public const int percentY = 2130903671; - - // aapt resource value: 0x7F030278 - public const int perpendicularPath_percent = 2130903672; - - // aapt resource value: 0x7F030279 - public const int pivotAnchor = 2130903673; - - // aapt resource value: 0x7F03027A - public const int placeholderText = 2130903674; - - // aapt resource value: 0x7F03027B - public const int placeholderTextAppearance = 2130903675; - - // aapt resource value: 0x7F03027C - public const int placeholderTextColor = 2130903676; - - // aapt resource value: 0x7F03027D - public const int placeholder_emptyVisibility = 2130903677; - - // aapt resource value: 0x7F03027E - public const int popupMenuBackground = 2130903678; - - // aapt resource value: 0x7F03027F - public const int popupMenuStyle = 2130903679; - - // aapt resource value: 0x7F030280 - public const int popupTheme = 2130903680; - - // aapt resource value: 0x7F030281 - public const int popupWindowStyle = 2130903681; - - // aapt resource value: 0x7F030282 - public const int prefixText = 2130903682; - - // aapt resource value: 0x7F030283 - public const int prefixTextAppearance = 2130903683; - - // aapt resource value: 0x7F030284 - public const int prefixTextColor = 2130903684; - - // aapt resource value: 0x7F030285 - public const int preserveIconSpacing = 2130903685; - - // aapt resource value: 0x7F030286 - public const int pressedTranslationZ = 2130903686; - - // aapt resource value: 0x7F030287 - public const int progressBarPadding = 2130903687; - - // aapt resource value: 0x7F030288 - public const int progressBarStyle = 2130903688; - - // aapt resource value: 0x7F030289 - public const int queryBackground = 2130903689; - - // aapt resource value: 0x7F03028A - public const int queryHint = 2130903690; - - // aapt resource value: 0x7F03028B - public const int radioButtonStyle = 2130903691; - - // aapt resource value: 0x7F03028C - public const int rangeFillColor = 2130903692; - - // aapt resource value: 0x7F03028D - public const int ratingBarStyle = 2130903693; - - // aapt resource value: 0x7F03028E - public const int ratingBarStyleIndicator = 2130903694; - - // aapt resource value: 0x7F03028F - public const int ratingBarStyleSmall = 2130903695; - - // aapt resource value: 0x7F030290 - public const int recyclerViewStyle = 2130903696; - - // aapt resource value: 0x7F030291 - public const int region_heightLessThan = 2130903697; - - // aapt resource value: 0x7F030292 - public const int region_heightMoreThan = 2130903698; - - // aapt resource value: 0x7F030293 - public const int region_widthLessThan = 2130903699; - - // aapt resource value: 0x7F030294 - public const int region_widthMoreThan = 2130903700; - - // aapt resource value: 0x7F030295 - public const int reverseLayout = 2130903701; - - // aapt resource value: 0x7F030296 - public const int rippleColor = 2130903702; - - // aapt resource value: 0x7F030297 - public const int round = 2130903703; - - // aapt resource value: 0x7F030298 - public const int roundPercent = 2130903704; - - // aapt resource value: 0x7F030299 - public const int saturation = 2130903705; - - // aapt resource value: 0x7F03029A - public const int scrimAnimationDuration = 2130903706; - - // aapt resource value: 0x7F03029B - public const int scrimBackground = 2130903707; - - // aapt resource value: 0x7F03029C - public const int scrimVisibleHeightTrigger = 2130903708; - - // aapt resource value: 0x7F03029D - public const int searchHintIcon = 2130903709; - - // aapt resource value: 0x7F03029E - public const int searchIcon = 2130903710; - - // aapt resource value: 0x7F03029F - public const int searchViewStyle = 2130903711; - - // aapt resource value: 0x7F0302A0 - public const int seekBarStyle = 2130903712; - - // aapt resource value: 0x7F0302A1 - public const int selectableItemBackground = 2130903713; - - // aapt resource value: 0x7F0302A2 - public const int selectableItemBackgroundBorderless = 2130903714; - - // aapt resource value: 0x7F0302A3 - public const int selectionRequired = 2130903715; - - // aapt resource value: 0x7F0302A4 - public const int selectorSize = 2130903716; - - // aapt resource value: 0x7F0302A5 - public const int shapeAppearance = 2130903717; - - // aapt resource value: 0x7F0302A6 - public const int shapeAppearanceLargeComponent = 2130903718; - - // aapt resource value: 0x7F0302A7 - public const int shapeAppearanceMediumComponent = 2130903719; - - // aapt resource value: 0x7F0302A8 - public const int shapeAppearanceOverlay = 2130903720; - - // aapt resource value: 0x7F0302A9 - public const int shapeAppearanceSmallComponent = 2130903721; - - // aapt resource value: 0x7F0302AA - public const int showAnimationBehavior = 2130903722; - - // aapt resource value: 0x7F0302AB - public const int showAsAction = 2130903723; - - // aapt resource value: 0x7F0302AC - public const int showDelay = 2130903724; - - // aapt resource value: 0x7F0302AD - public const int showDividers = 2130903725; - - // aapt resource value: 0x7F0302AE - public const int showMotionSpec = 2130903726; - - // aapt resource value: 0x7F0302AF - public const int showPaths = 2130903727; - - // aapt resource value: 0x7F0302B0 - public const int showText = 2130903728; - - // aapt resource value: 0x7F0302B1 - public const int showTitle = 2130903729; - - // aapt resource value: 0x7F0302B2 - public const int shrinkMotionSpec = 2130903730; - - // aapt resource value: 0x7F0302B3 - public const int singleChoiceItemLayout = 2130903731; - - // aapt resource value: 0x7F0302B4 - public const int singleLine = 2130903732; - - // aapt resource value: 0x7F0302B5 - public const int singleSelection = 2130903733; - - // aapt resource value: 0x7F0302B6 - public const int sizePercent = 2130903734; - - // aapt resource value: 0x7F0302B7 - public const int sliderStyle = 2130903735; - - // aapt resource value: 0x7F0302B8 - public const int snackbarButtonStyle = 2130903736; - - // aapt resource value: 0x7F0302B9 - public const int snackbarStyle = 2130903737; - - // aapt resource value: 0x7F0302BA - public const int snackbarTextViewStyle = 2130903738; - - // aapt resource value: 0x7F0302BB - public const int spanCount = 2130903739; - - // aapt resource value: 0x7F0302BC - public const int spinBars = 2130903740; - - // aapt resource value: 0x7F0302BD - public const int spinnerDropDownItemStyle = 2130903741; - - // aapt resource value: 0x7F0302BE - public const int spinnerStyle = 2130903742; - - // aapt resource value: 0x7F0302BF - public const int splitTrack = 2130903743; - - // aapt resource value: 0x7F0302C0 - public const int srcCompat = 2130903744; - - // aapt resource value: 0x7F0302C1 - public const int stackFromEnd = 2130903745; - - // aapt resource value: 0x7F0302C2 - public const int staggered = 2130903746; - - // aapt resource value: 0x7F0302C3 - public const int startIconCheckable = 2130903747; - - // aapt resource value: 0x7F0302C4 - public const int startIconContentDescription = 2130903748; - - // aapt resource value: 0x7F0302C5 - public const int startIconDrawable = 2130903749; - - // aapt resource value: 0x7F0302C6 - public const int startIconTint = 2130903750; - - // aapt resource value: 0x7F0302C7 - public const int startIconTintMode = 2130903751; - - // aapt resource value: 0x7F0302C8 - public const int state_above_anchor = 2130903752; - - // aapt resource value: 0x7F0302C9 - public const int state_collapsed = 2130903753; - - // aapt resource value: 0x7F0302CA - public const int state_collapsible = 2130903754; - - // aapt resource value: 0x7F0302CB - public const int state_dragged = 2130903755; - - // aapt resource value: 0x7F0302CC - public const int state_liftable = 2130903756; - - // aapt resource value: 0x7F0302CD - public const int state_lifted = 2130903757; - - // aapt resource value: 0x7F0302CE - public const int statusBarBackground = 2130903758; - - // aapt resource value: 0x7F0302CF - public const int statusBarForeground = 2130903759; - - // aapt resource value: 0x7F0302D0 - public const int statusBarScrim = 2130903760; - - // aapt resource value: 0x7F0302D1 - public const int strokeColor = 2130903761; - - // aapt resource value: 0x7F0302D2 - public const int strokeWidth = 2130903762; - - // aapt resource value: 0x7F0302D3 - public const int subMenuArrow = 2130903763; - - // aapt resource value: 0x7F0302D4 - public const int submitBackground = 2130903764; - - // aapt resource value: 0x7F0302D5 - public const int subtitle = 2130903765; - - // aapt resource value: 0x7F0302D6 - public const int subtitleTextAppearance = 2130903766; - - // aapt resource value: 0x7F0302D7 - public const int subtitleTextColor = 2130903767; - - // aapt resource value: 0x7F0302D8 - public const int subtitleTextStyle = 2130903768; - - // aapt resource value: 0x7F0302D9 - public const int suffixText = 2130903769; - - // aapt resource value: 0x7F0302DA - public const int suffixTextAppearance = 2130903770; - - // aapt resource value: 0x7F0302DB - public const int suffixTextColor = 2130903771; - - // aapt resource value: 0x7F0302DC - public const int suggestionRowLayout = 2130903772; - - // aapt resource value: 0x7F0302DD - public const int swipeRefreshLayoutProgressSpinnerBackgroundColor = 2130903773; - - // aapt resource value: 0x7F0302DE - public const int switchMinWidth = 2130903774; - - // aapt resource value: 0x7F0302DF - public const int switchPadding = 2130903775; - - // aapt resource value: 0x7F0302E0 - public const int switchStyle = 2130903776; - - // aapt resource value: 0x7F0302E1 - public const int switchTextAppearance = 2130903777; - - // aapt resource value: 0x7F0302E2 - public const int tabBackground = 2130903778; - - // aapt resource value: 0x7F0302E3 - public const int tabContentStart = 2130903779; - - // aapt resource value: 0x7F0302E4 - public const int tabGravity = 2130903780; - - // aapt resource value: 0x7F0302E5 - public const int tabIconTint = 2130903781; - - // aapt resource value: 0x7F0302E6 - public const int tabIconTintMode = 2130903782; - - // aapt resource value: 0x7F0302E7 - public const int tabIndicator = 2130903783; - - // aapt resource value: 0x7F0302E8 - public const int tabIndicatorAnimationDuration = 2130903784; - - // aapt resource value: 0x7F0302E9 - public const int tabIndicatorAnimationMode = 2130903785; - - // aapt resource value: 0x7F0302EA - public const int tabIndicatorColor = 2130903786; - - // aapt resource value: 0x7F0302EB - public const int tabIndicatorFullWidth = 2130903787; - - // aapt resource value: 0x7F0302EC - public const int tabIndicatorGravity = 2130903788; - - // aapt resource value: 0x7F0302ED - public const int tabIndicatorHeight = 2130903789; - - // aapt resource value: 0x7F0302EE - public const int tabInlineLabel = 2130903790; - - // aapt resource value: 0x7F0302EF - public const int tabMaxWidth = 2130903791; - - // aapt resource value: 0x7F0302F0 - public const int tabMinWidth = 2130903792; - - // aapt resource value: 0x7F0302F1 - public const int tabMode = 2130903793; - - // aapt resource value: 0x7F0302F2 - public const int tabPadding = 2130903794; - - // aapt resource value: 0x7F0302F3 - public const int tabPaddingBottom = 2130903795; - - // aapt resource value: 0x7F0302F4 - public const int tabPaddingEnd = 2130903796; - - // aapt resource value: 0x7F0302F5 - public const int tabPaddingStart = 2130903797; - - // aapt resource value: 0x7F0302F6 - public const int tabPaddingTop = 2130903798; - - // aapt resource value: 0x7F0302F7 - public const int tabRippleColor = 2130903799; - - // aapt resource value: 0x7F0302F8 - public const int tabSelectedTextColor = 2130903800; - - // aapt resource value: 0x7F0302F9 - public const int tabStyle = 2130903801; - - // aapt resource value: 0x7F0302FA - public const int tabTextAppearance = 2130903802; - - // aapt resource value: 0x7F0302FB - public const int tabTextColor = 2130903803; - - // aapt resource value: 0x7F0302FC - public const int tabUnboundedRipple = 2130903804; - - // aapt resource value: 0x7F0302FD - public const int targetId = 2130903805; - - // aapt resource value: 0x7F0302FE - public const int telltales_tailColor = 2130903806; - - // aapt resource value: 0x7F0302FF - public const int telltales_tailScale = 2130903807; - - // aapt resource value: 0x7F030300 - public const int telltales_velocityMode = 2130903808; - - // aapt resource value: 0x7F030301 - public const int textAllCaps = 2130903809; - - // aapt resource value: 0x7F030302 - public const int textAppearanceBody1 = 2130903810; - - // aapt resource value: 0x7F030303 - public const int textAppearanceBody2 = 2130903811; - - // aapt resource value: 0x7F030304 - public const int textAppearanceButton = 2130903812; - - // aapt resource value: 0x7F030305 - public const int textAppearanceCaption = 2130903813; - - // aapt resource value: 0x7F030306 - public const int textAppearanceHeadline1 = 2130903814; - - // aapt resource value: 0x7F030307 - public const int textAppearanceHeadline2 = 2130903815; - - // aapt resource value: 0x7F030308 - public const int textAppearanceHeadline3 = 2130903816; - - // aapt resource value: 0x7F030309 - public const int textAppearanceHeadline4 = 2130903817; - - // aapt resource value: 0x7F03030A - public const int textAppearanceHeadline5 = 2130903818; - - // aapt resource value: 0x7F03030B - public const int textAppearanceHeadline6 = 2130903819; - - // aapt resource value: 0x7F03030C - public const int textAppearanceLargePopupMenu = 2130903820; - - // aapt resource value: 0x7F03030D - public const int textAppearanceLineHeightEnabled = 2130903821; - - // aapt resource value: 0x7F03030E - public const int textAppearanceListItem = 2130903822; - - // aapt resource value: 0x7F03030F - public const int textAppearanceListItemSecondary = 2130903823; - - // aapt resource value: 0x7F030310 - public const int textAppearanceListItemSmall = 2130903824; - - // aapt resource value: 0x7F030311 - public const int textAppearanceOverline = 2130903825; - - // aapt resource value: 0x7F030312 - public const int textAppearancePopupMenuHeader = 2130903826; - - // aapt resource value: 0x7F030313 - public const int textAppearanceSearchResultSubtitle = 2130903827; - - // aapt resource value: 0x7F030314 - public const int textAppearanceSearchResultTitle = 2130903828; - - // aapt resource value: 0x7F030315 - public const int textAppearanceSmallPopupMenu = 2130903829; - - // aapt resource value: 0x7F030316 - public const int textAppearanceSubtitle1 = 2130903830; - - // aapt resource value: 0x7F030317 - public const int textAppearanceSubtitle2 = 2130903831; - - // aapt resource value: 0x7F030318 - public const int textColorAlertDialogListItem = 2130903832; - - // aapt resource value: 0x7F030319 - public const int textColorSearchUrl = 2130903833; - - // aapt resource value: 0x7F03031A - public const int textEndPadding = 2130903834; - - // aapt resource value: 0x7F03031B - public const int textInputLayoutFocusedRectEnabled = 2130903835; - - // aapt resource value: 0x7F03031C - public const int textInputStyle = 2130903836; - - // aapt resource value: 0x7F03031D - public const int textLocale = 2130903837; - - // aapt resource value: 0x7F03031E - public const int textStartPadding = 2130903838; - - // aapt resource value: 0x7F03031F - public const int theme = 2130903839; - - // aapt resource value: 0x7F030320 - public const int themeLineHeight = 2130903840; - - // aapt resource value: 0x7F030321 - public const int thickness = 2130903841; - - // aapt resource value: 0x7F030322 - public const int thumbColor = 2130903842; - - // aapt resource value: 0x7F030323 - public const int thumbElevation = 2130903843; - - // aapt resource value: 0x7F030324 - public const int thumbRadius = 2130903844; - - // aapt resource value: 0x7F030325 - public const int thumbStrokeColor = 2130903845; - - // aapt resource value: 0x7F030326 - public const int thumbStrokeWidth = 2130903846; - - // aapt resource value: 0x7F030327 - public const int thumbTextPadding = 2130903847; - - // aapt resource value: 0x7F030328 - public const int thumbTint = 2130903848; - - // aapt resource value: 0x7F030329 - public const int thumbTintMode = 2130903849; - - // aapt resource value: 0x7F03032A - public const int tickColor = 2130903850; - - // aapt resource value: 0x7F03032B - public const int tickColorActive = 2130903851; - - // aapt resource value: 0x7F03032C - public const int tickColorInactive = 2130903852; - - // aapt resource value: 0x7F03032D - public const int tickMark = 2130903853; - - // aapt resource value: 0x7F03032E - public const int tickMarkTint = 2130903854; - - // aapt resource value: 0x7F03032F - public const int tickMarkTintMode = 2130903855; - - // aapt resource value: 0x7F030330 - public const int tickVisible = 2130903856; - - // aapt resource value: 0x7F030331 - public const int tint = 2130903857; - - // aapt resource value: 0x7F030332 - public const int tintMode = 2130903858; - - // aapt resource value: 0x7F030333 - public const int title = 2130903859; - - // aapt resource value: 0x7F030334 - public const int titleEnabled = 2130903860; - - // aapt resource value: 0x7F030335 - public const int titleMargin = 2130903861; - - // aapt resource value: 0x7F030336 - public const int titleMarginBottom = 2130903862; - - // aapt resource value: 0x7F030337 - public const int titleMarginEnd = 2130903863; - - // aapt resource value: 0x7F03033A - public const int titleMargins = 2130903866; - - // aapt resource value: 0x7F030338 - public const int titleMarginStart = 2130903864; - - // aapt resource value: 0x7F030339 - public const int titleMarginTop = 2130903865; - - // aapt resource value: 0x7F03033B - public const int titleTextAppearance = 2130903867; - - // aapt resource value: 0x7F03033C - public const int titleTextColor = 2130903868; - - // aapt resource value: 0x7F03033D - public const int titleTextStyle = 2130903869; - - // aapt resource value: 0x7F03033E - public const int toolbarId = 2130903870; - - // aapt resource value: 0x7F03033F - public const int toolbarNavigationButtonStyle = 2130903871; - - // aapt resource value: 0x7F030340 - public const int toolbarStyle = 2130903872; - - // aapt resource value: 0x7F030341 - public const int tooltipForegroundColor = 2130903873; - - // aapt resource value: 0x7F030342 - public const int tooltipFrameBackground = 2130903874; - - // aapt resource value: 0x7F030343 - public const int tooltipStyle = 2130903875; - - // aapt resource value: 0x7F030344 - public const int tooltipText = 2130903876; - - // aapt resource value: 0x7F030345 - public const int touchAnchorId = 2130903877; - - // aapt resource value: 0x7F030346 - public const int touchAnchorSide = 2130903878; - - // aapt resource value: 0x7F030347 - public const int touchRegionId = 2130903879; - - // aapt resource value: 0x7F030348 - public const int track = 2130903880; - - // aapt resource value: 0x7F030349 - public const int trackColor = 2130903881; - - // aapt resource value: 0x7F03034A - public const int trackColorActive = 2130903882; - - // aapt resource value: 0x7F03034B - public const int trackColorInactive = 2130903883; - - // aapt resource value: 0x7F03034C - public const int trackCornerRadius = 2130903884; - - // aapt resource value: 0x7F03034D - public const int trackHeight = 2130903885; - - // aapt resource value: 0x7F03034E - public const int trackThickness = 2130903886; - - // aapt resource value: 0x7F03034F - public const int trackTint = 2130903887; - - // aapt resource value: 0x7F030350 - public const int trackTintMode = 2130903888; - - // aapt resource value: 0x7F030351 - public const int transitionDisable = 2130903889; - - // aapt resource value: 0x7F030352 - public const int transitionEasing = 2130903890; - - // aapt resource value: 0x7F030353 - public const int transitionFlags = 2130903891; - - // aapt resource value: 0x7F030354 - public const int transitionPathRotate = 2130903892; - - // aapt resource value: 0x7F030355 - public const int transitionShapeAppearance = 2130903893; - - // aapt resource value: 0x7F030356 - public const int triggerId = 2130903894; - - // aapt resource value: 0x7F030357 - public const int triggerReceiver = 2130903895; - - // aapt resource value: 0x7F030358 - public const int triggerSlack = 2130903896; - - // aapt resource value: 0x7F030359 - public const int ttcIndex = 2130903897; - - // aapt resource value: 0x7F03035A - public const int useCompatPadding = 2130903898; - - // aapt resource value: 0x7F03035B - public const int useMaterialThemeColors = 2130903899; - - // aapt resource value: 0x7F03035C - public const int values = 2130903900; - - // aapt resource value: 0x7F03035D - public const int verticalOffset = 2130903901; - - // aapt resource value: 0x7F03035E - public const int viewInflaterClass = 2130903902; - - // aapt resource value: 0x7F03035F - public const int visibilityMode = 2130903903; - - // aapt resource value: 0x7F030360 - public const int voiceIcon = 2130903904; - - // aapt resource value: 0x7F030361 - public const int warmth = 2130903905; - - // aapt resource value: 0x7F030362 - public const int waveDecay = 2130903906; - - // aapt resource value: 0x7F030363 - public const int waveOffset = 2130903907; - - // aapt resource value: 0x7F030364 - public const int wavePeriod = 2130903908; - - // aapt resource value: 0x7F030365 - public const int waveShape = 2130903909; - - // aapt resource value: 0x7F030366 - public const int waveVariesBy = 2130903910; - - // aapt resource value: 0x7F030367 - public const int windowActionBar = 2130903911; - - // aapt resource value: 0x7F030368 - public const int windowActionBarOverlay = 2130903912; - - // aapt resource value: 0x7F030369 - public const int windowActionModeOverlay = 2130903913; - - // aapt resource value: 0x7F03036A - public const int windowFixedHeightMajor = 2130903914; - - // aapt resource value: 0x7F03036B - public const int windowFixedHeightMinor = 2130903915; - - // aapt resource value: 0x7F03036C - public const int windowFixedWidthMajor = 2130903916; - - // aapt resource value: 0x7F03036D - public const int windowFixedWidthMinor = 2130903917; - - // aapt resource value: 0x7F03036E - public const int windowMinWidthMajor = 2130903918; - - // aapt resource value: 0x7F03036F - public const int windowMinWidthMinor = 2130903919; - - // aapt resource value: 0x7F030370 - public const int windowNoTitle = 2130903920; - - // aapt resource value: 0x7F030371 - public const int yearSelectedStyle = 2130903921; - - // aapt resource value: 0x7F030372 - public const int yearStyle = 2130903922; - - // aapt resource value: 0x7F030373 - public const int yearTodayStyle = 2130903923; - - static Attribute() - { - global::Android.Runtime.ResourceIdManager.UpdateIdValues(); - } - - private Attribute() - { - } - } - - public partial class Boolean - { - - // aapt resource value: 0x7F040000 - public const int abc_action_bar_embed_tabs = 2130968576; - - // aapt resource value: 0x7F040001 - public const int abc_allow_stacked_button_bar = 2130968577; - - // aapt resource value: 0x7F040002 - public const int abc_config_actionMenuItemAllCaps = 2130968578; - - // aapt resource value: 0x7F040003 - public const int mtrl_btn_textappearance_all_caps = 2130968579; - - static Boolean() - { - global::Android.Runtime.ResourceIdManager.UpdateIdValues(); - } - - private Boolean() - { - } - } - - public partial class Color - { - - // aapt resource value: 0x7F050000 - public const int abc_background_cache_hint_selector_material_dark = 2131034112; - - // aapt resource value: 0x7F050001 - public const int abc_background_cache_hint_selector_material_light = 2131034113; - - // aapt resource value: 0x7F050002 - public const int abc_btn_colored_borderless_text_material = 2131034114; - - // aapt resource value: 0x7F050003 - public const int abc_btn_colored_text_material = 2131034115; - - // aapt resource value: 0x7F050004 - public const int abc_color_highlight_material = 2131034116; - - // aapt resource value: 0x7F050005 - public const int abc_decor_view_status_guard = 2131034117; - - // aapt resource value: 0x7F050006 - public const int abc_decor_view_status_guard_light = 2131034118; - - // aapt resource value: 0x7F050007 - public const int abc_hint_foreground_material_dark = 2131034119; - - // aapt resource value: 0x7F050008 - public const int abc_hint_foreground_material_light = 2131034120; - - // aapt resource value: 0x7F050009 - public const int abc_primary_text_disable_only_material_dark = 2131034121; - - // aapt resource value: 0x7F05000A - public const int abc_primary_text_disable_only_material_light = 2131034122; - - // aapt resource value: 0x7F05000B - public const int abc_primary_text_material_dark = 2131034123; - - // aapt resource value: 0x7F05000C - public const int abc_primary_text_material_light = 2131034124; - - // aapt resource value: 0x7F05000D - public const int abc_search_url_text = 2131034125; - - // aapt resource value: 0x7F05000E - public const int abc_search_url_text_normal = 2131034126; - - // aapt resource value: 0x7F05000F - public const int abc_search_url_text_pressed = 2131034127; - - // aapt resource value: 0x7F050010 - public const int abc_search_url_text_selected = 2131034128; - - // aapt resource value: 0x7F050011 - public const int abc_secondary_text_material_dark = 2131034129; - - // aapt resource value: 0x7F050012 - public const int abc_secondary_text_material_light = 2131034130; - - // aapt resource value: 0x7F050013 - public const int abc_tint_btn_checkable = 2131034131; - - // aapt resource value: 0x7F050014 - public const int abc_tint_default = 2131034132; - - // aapt resource value: 0x7F050015 - public const int abc_tint_edittext = 2131034133; - - // aapt resource value: 0x7F050016 - public const int abc_tint_seek_thumb = 2131034134; - - // aapt resource value: 0x7F050017 - public const int abc_tint_spinner = 2131034135; - - // aapt resource value: 0x7F050018 - public const int abc_tint_switch_track = 2131034136; - - // aapt resource value: 0x7F050019 - public const int accent_material_dark = 2131034137; - - // aapt resource value: 0x7F05001A - public const int accent_material_light = 2131034138; - - // aapt resource value: 0x7F05001B - public const int androidx_core_ripple_material_light = 2131034139; - - // aapt resource value: 0x7F05001C - public const int androidx_core_secondary_text_default_material_light = 2131034140; - - // aapt resource value: 0x7F05001D - public const int background_floating_material_dark = 2131034141; - - // aapt resource value: 0x7F05001E - public const int background_floating_material_light = 2131034142; - - // aapt resource value: 0x7F05001F - public const int background_material_dark = 2131034143; - - // aapt resource value: 0x7F050020 - public const int background_material_light = 2131034144; - - // aapt resource value: 0x7F050021 - public const int bright_foreground_disabled_material_dark = 2131034145; - - // aapt resource value: 0x7F050022 - public const int bright_foreground_disabled_material_light = 2131034146; - - // aapt resource value: 0x7F050023 - public const int bright_foreground_inverse_material_dark = 2131034147; - - // aapt resource value: 0x7F050024 - public const int bright_foreground_inverse_material_light = 2131034148; - - // aapt resource value: 0x7F050025 - public const int bright_foreground_material_dark = 2131034149; - - // aapt resource value: 0x7F050026 - public const int bright_foreground_material_light = 2131034150; - - // aapt resource value: 0x7F050027 - public const int button_material_dark = 2131034151; - - // aapt resource value: 0x7F050028 - public const int button_material_light = 2131034152; - - // aapt resource value: 0x7F050029 - public const int cardview_dark_background = 2131034153; - - // aapt resource value: 0x7F05002A - public const int cardview_light_background = 2131034154; - - // aapt resource value: 0x7F05002B - public const int cardview_shadow_end_color = 2131034155; - - // aapt resource value: 0x7F05002C - public const int cardview_shadow_start_color = 2131034156; - - // aapt resource value: 0x7F05002D - public const int checkbox_themeable_attribute_color = 2131034157; - - // aapt resource value: 0x7F05002E - public const int design_bottom_navigation_shadow_color = 2131034158; - - // aapt resource value: 0x7F05002F - public const int design_box_stroke_color = 2131034159; - - // aapt resource value: 0x7F050030 - public const int design_dark_default_color_background = 2131034160; - - // aapt resource value: 0x7F050031 - public const int design_dark_default_color_error = 2131034161; - - // aapt resource value: 0x7F050032 - public const int design_dark_default_color_on_background = 2131034162; - - // aapt resource value: 0x7F050033 - public const int design_dark_default_color_on_error = 2131034163; - - // aapt resource value: 0x7F050034 - public const int design_dark_default_color_on_primary = 2131034164; - - // aapt resource value: 0x7F050035 - public const int design_dark_default_color_on_secondary = 2131034165; - - // aapt resource value: 0x7F050036 - public const int design_dark_default_color_on_surface = 2131034166; - - // aapt resource value: 0x7F050037 - public const int design_dark_default_color_primary = 2131034167; - - // aapt resource value: 0x7F050038 - public const int design_dark_default_color_primary_dark = 2131034168; - - // aapt resource value: 0x7F050039 - public const int design_dark_default_color_primary_variant = 2131034169; - - // aapt resource value: 0x7F05003A - public const int design_dark_default_color_secondary = 2131034170; - - // aapt resource value: 0x7F05003B - public const int design_dark_default_color_secondary_variant = 2131034171; - - // aapt resource value: 0x7F05003C - public const int design_dark_default_color_surface = 2131034172; - - // aapt resource value: 0x7F05003D - public const int design_default_color_background = 2131034173; - - // aapt resource value: 0x7F05003E - public const int design_default_color_error = 2131034174; - - // aapt resource value: 0x7F05003F - public const int design_default_color_on_background = 2131034175; - - // aapt resource value: 0x7F050040 - public const int design_default_color_on_error = 2131034176; - - // aapt resource value: 0x7F050041 - public const int design_default_color_on_primary = 2131034177; - - // aapt resource value: 0x7F050042 - public const int design_default_color_on_secondary = 2131034178; - - // aapt resource value: 0x7F050043 - public const int design_default_color_on_surface = 2131034179; - - // aapt resource value: 0x7F050044 - public const int design_default_color_primary = 2131034180; - - // aapt resource value: 0x7F050045 - public const int design_default_color_primary_dark = 2131034181; - - // aapt resource value: 0x7F050046 - public const int design_default_color_primary_variant = 2131034182; - - // aapt resource value: 0x7F050047 - public const int design_default_color_secondary = 2131034183; - - // aapt resource value: 0x7F050048 - public const int design_default_color_secondary_variant = 2131034184; - - // aapt resource value: 0x7F050049 - public const int design_default_color_surface = 2131034185; - - // aapt resource value: 0x7F05004A - public const int design_error = 2131034186; - - // aapt resource value: 0x7F05004B - public const int design_fab_shadow_end_color = 2131034187; - - // aapt resource value: 0x7F05004C - public const int design_fab_shadow_mid_color = 2131034188; - - // aapt resource value: 0x7F05004D - public const int design_fab_shadow_start_color = 2131034189; - - // aapt resource value: 0x7F05004E - public const int design_fab_stroke_end_inner_color = 2131034190; - - // aapt resource value: 0x7F05004F - public const int design_fab_stroke_end_outer_color = 2131034191; - - // aapt resource value: 0x7F050050 - public const int design_fab_stroke_top_inner_color = 2131034192; - - // aapt resource value: 0x7F050051 - public const int design_fab_stroke_top_outer_color = 2131034193; - - // aapt resource value: 0x7F050052 - public const int design_icon_tint = 2131034194; - - // aapt resource value: 0x7F050053 - public const int design_snackbar_background_color = 2131034195; - - // aapt resource value: 0x7F050054 - public const int dim_foreground_disabled_material_dark = 2131034196; - - // aapt resource value: 0x7F050055 - public const int dim_foreground_disabled_material_light = 2131034197; - - // aapt resource value: 0x7F050056 - public const int dim_foreground_material_dark = 2131034198; - - // aapt resource value: 0x7F050057 - public const int dim_foreground_material_light = 2131034199; - - // aapt resource value: 0x7F050058 - public const int error_color_material_dark = 2131034200; - - // aapt resource value: 0x7F050059 - public const int error_color_material_light = 2131034201; - - // aapt resource value: 0x7F05005A - public const int foreground_material_dark = 2131034202; - - // aapt resource value: 0x7F05005B - public const int foreground_material_light = 2131034203; - - // aapt resource value: 0x7F05005C - public const int highlighted_text_material_dark = 2131034204; - - // aapt resource value: 0x7F05005D - public const int highlighted_text_material_light = 2131034205; - - // aapt resource value: 0x7F05005E - public const int material_blue_grey_800 = 2131034206; - - // aapt resource value: 0x7F05005F - public const int material_blue_grey_900 = 2131034207; - - // aapt resource value: 0x7F050060 - public const int material_blue_grey_950 = 2131034208; - - // aapt resource value: 0x7F050061 - public const int material_cursor_color = 2131034209; - - // aapt resource value: 0x7F050062 - public const int material_deep_teal_200 = 2131034210; - - // aapt resource value: 0x7F050063 - public const int material_deep_teal_500 = 2131034211; - - // aapt resource value: 0x7F050064 - public const int material_grey_100 = 2131034212; - - // aapt resource value: 0x7F050065 - public const int material_grey_300 = 2131034213; - - // aapt resource value: 0x7F050066 - public const int material_grey_50 = 2131034214; - - // aapt resource value: 0x7F050067 - public const int material_grey_600 = 2131034215; - - // aapt resource value: 0x7F050068 - public const int material_grey_800 = 2131034216; - - // aapt resource value: 0x7F050069 - public const int material_grey_850 = 2131034217; - - // aapt resource value: 0x7F05006A - public const int material_grey_900 = 2131034218; - - // aapt resource value: 0x7F05006B - public const int material_on_background_disabled = 2131034219; - - // aapt resource value: 0x7F05006C - public const int material_on_background_emphasis_high_type = 2131034220; - - // aapt resource value: 0x7F05006D - public const int material_on_background_emphasis_medium = 2131034221; - - // aapt resource value: 0x7F05006E - public const int material_on_primary_disabled = 2131034222; - - // aapt resource value: 0x7F05006F - public const int material_on_primary_emphasis_high_type = 2131034223; - - // aapt resource value: 0x7F050070 - public const int material_on_primary_emphasis_medium = 2131034224; - - // aapt resource value: 0x7F050071 - public const int material_on_surface_disabled = 2131034225; - - // aapt resource value: 0x7F050072 - public const int material_on_surface_emphasis_high_type = 2131034226; - - // aapt resource value: 0x7F050073 - public const int material_on_surface_emphasis_medium = 2131034227; - - // aapt resource value: 0x7F050074 - public const int material_on_surface_stroke = 2131034228; - - // aapt resource value: 0x7F050075 - public const int material_slider_active_tick_marks_color = 2131034229; - - // aapt resource value: 0x7F050076 - public const int material_slider_active_track_color = 2131034230; - - // aapt resource value: 0x7F050077 - public const int material_slider_halo_color = 2131034231; - - // aapt resource value: 0x7F050078 - public const int material_slider_inactive_tick_marks_color = 2131034232; - - // aapt resource value: 0x7F050079 - public const int material_slider_inactive_track_color = 2131034233; - - // aapt resource value: 0x7F05007A - public const int material_slider_thumb_color = 2131034234; - - // aapt resource value: 0x7F05007B - public const int material_timepicker_button_background = 2131034235; - - // aapt resource value: 0x7F05007C - public const int material_timepicker_button_stroke = 2131034236; - - // aapt resource value: 0x7F05007E - public const int material_timepicker_clockface = 2131034238; - - // aapt resource value: 0x7F05007D - public const int material_timepicker_clock_text_color = 2131034237; - - // aapt resource value: 0x7F05007F - public const int material_timepicker_modebutton_tint = 2131034239; - - // aapt resource value: 0x7F050080 - public const int mtrl_bottom_nav_colored_item_tint = 2131034240; - - // aapt resource value: 0x7F050081 - public const int mtrl_bottom_nav_colored_ripple_color = 2131034241; - - // aapt resource value: 0x7F050082 - public const int mtrl_bottom_nav_item_tint = 2131034242; - - // aapt resource value: 0x7F050083 - public const int mtrl_bottom_nav_ripple_color = 2131034243; - - // aapt resource value: 0x7F050084 - public const int mtrl_btn_bg_color_selector = 2131034244; - - // aapt resource value: 0x7F050085 - public const int mtrl_btn_ripple_color = 2131034245; - - // aapt resource value: 0x7F050086 - public const int mtrl_btn_stroke_color_selector = 2131034246; - - // aapt resource value: 0x7F050087 - public const int mtrl_btn_text_btn_bg_color_selector = 2131034247; - - // aapt resource value: 0x7F050088 - public const int mtrl_btn_text_btn_ripple_color = 2131034248; - - // aapt resource value: 0x7F050089 - public const int mtrl_btn_text_color_disabled = 2131034249; - - // aapt resource value: 0x7F05008A - public const int mtrl_btn_text_color_selector = 2131034250; - - // aapt resource value: 0x7F05008B - public const int mtrl_btn_transparent_bg_color = 2131034251; - - // aapt resource value: 0x7F05008C - public const int mtrl_calendar_item_stroke_color = 2131034252; - - // aapt resource value: 0x7F05008D - public const int mtrl_calendar_selected_range = 2131034253; - - // aapt resource value: 0x7F05008E - public const int mtrl_card_view_foreground = 2131034254; - - // aapt resource value: 0x7F05008F - public const int mtrl_card_view_ripple = 2131034255; - - // aapt resource value: 0x7F050090 - public const int mtrl_chip_background_color = 2131034256; - - // aapt resource value: 0x7F050091 - public const int mtrl_chip_close_icon_tint = 2131034257; - - // aapt resource value: 0x7F050092 - public const int mtrl_chip_surface_color = 2131034258; - - // aapt resource value: 0x7F050093 - public const int mtrl_chip_text_color = 2131034259; - - // aapt resource value: 0x7F050094 - public const int mtrl_choice_chip_background_color = 2131034260; - - // aapt resource value: 0x7F050095 - public const int mtrl_choice_chip_ripple_color = 2131034261; - - // aapt resource value: 0x7F050096 - public const int mtrl_choice_chip_text_color = 2131034262; - - // aapt resource value: 0x7F050097 - public const int mtrl_error = 2131034263; - - // aapt resource value: 0x7F050098 - public const int mtrl_fab_bg_color_selector = 2131034264; - - // aapt resource value: 0x7F050099 - public const int mtrl_fab_icon_text_color_selector = 2131034265; - - // aapt resource value: 0x7F05009A - public const int mtrl_fab_ripple_color = 2131034266; - - // aapt resource value: 0x7F05009B - public const int mtrl_filled_background_color = 2131034267; - - // aapt resource value: 0x7F05009C - public const int mtrl_filled_icon_tint = 2131034268; - - // aapt resource value: 0x7F05009D - public const int mtrl_filled_stroke_color = 2131034269; - - // aapt resource value: 0x7F05009E - public const int mtrl_indicator_text_color = 2131034270; - - // aapt resource value: 0x7F05009F - public const int mtrl_navigation_item_background_color = 2131034271; - - // aapt resource value: 0x7F0500A0 - public const int mtrl_navigation_item_icon_tint = 2131034272; - - // aapt resource value: 0x7F0500A1 - public const int mtrl_navigation_item_text_color = 2131034273; - - // aapt resource value: 0x7F0500A2 - public const int mtrl_on_primary_text_btn_text_color_selector = 2131034274; - - // aapt resource value: 0x7F0500A3 - public const int mtrl_on_surface_ripple_color = 2131034275; - - // aapt resource value: 0x7F0500A4 - public const int mtrl_outlined_icon_tint = 2131034276; - - // aapt resource value: 0x7F0500A5 - public const int mtrl_outlined_stroke_color = 2131034277; - - // aapt resource value: 0x7F0500A6 - public const int mtrl_popupmenu_overlay_color = 2131034278; - - // aapt resource value: 0x7F0500A7 - public const int mtrl_scrim_color = 2131034279; - - // aapt resource value: 0x7F0500A8 - public const int mtrl_tabs_colored_ripple_color = 2131034280; - - // aapt resource value: 0x7F0500A9 - public const int mtrl_tabs_icon_color_selector = 2131034281; - - // aapt resource value: 0x7F0500AA - public const int mtrl_tabs_icon_color_selector_colored = 2131034282; - - // aapt resource value: 0x7F0500AB - public const int mtrl_tabs_legacy_text_color_selector = 2131034283; - - // aapt resource value: 0x7F0500AC - public const int mtrl_tabs_ripple_color = 2131034284; - - // aapt resource value: 0x7F0500AE - public const int mtrl_textinput_default_box_stroke_color = 2131034286; - - // aapt resource value: 0x7F0500AF - public const int mtrl_textinput_disabled_color = 2131034287; - - // aapt resource value: 0x7F0500B0 - public const int mtrl_textinput_filled_box_default_background_color = 2131034288; - - // aapt resource value: 0x7F0500B1 - public const int mtrl_textinput_focused_box_stroke_color = 2131034289; - - // aapt resource value: 0x7F0500B2 - public const int mtrl_textinput_hovered_box_stroke_color = 2131034290; - - // aapt resource value: 0x7F0500AD - public const int mtrl_text_btn_text_color_selector = 2131034285; - - // aapt resource value: 0x7F0500B3 - public const int notification_action_color_filter = 2131034291; - - // aapt resource value: 0x7F0500B4 - public const int notification_icon_bg_color = 2131034292; - - // aapt resource value: 0x7F0500B5 - public const int notification_material_background_media_default_color = 2131034293; - - // aapt resource value: 0x7F0500B6 - public const int primary_dark_material_dark = 2131034294; - - // aapt resource value: 0x7F0500B7 - public const int primary_dark_material_light = 2131034295; - - // aapt resource value: 0x7F0500B8 - public const int primary_material_dark = 2131034296; - - // aapt resource value: 0x7F0500B9 - public const int primary_material_light = 2131034297; - - // aapt resource value: 0x7F0500BA - public const int primary_text_default_material_dark = 2131034298; - - // aapt resource value: 0x7F0500BB - public const int primary_text_default_material_light = 2131034299; - - // aapt resource value: 0x7F0500BC - public const int primary_text_disabled_material_dark = 2131034300; - - // aapt resource value: 0x7F0500BD - public const int primary_text_disabled_material_light = 2131034301; - - // aapt resource value: 0x7F0500BE - public const int radiobutton_themeable_attribute_color = 2131034302; - - // aapt resource value: 0x7F0500BF - public const int ripple_material_dark = 2131034303; - - // aapt resource value: 0x7F0500C0 - public const int ripple_material_light = 2131034304; - - // aapt resource value: 0x7F0500C1 - public const int secondary_text_default_material_dark = 2131034305; - - // aapt resource value: 0x7F0500C2 - public const int secondary_text_default_material_light = 2131034306; - - // aapt resource value: 0x7F0500C3 - public const int secondary_text_disabled_material_dark = 2131034307; - - // aapt resource value: 0x7F0500C4 - public const int secondary_text_disabled_material_light = 2131034308; - - // aapt resource value: 0x7F0500C5 - public const int switch_thumb_disabled_material_dark = 2131034309; - - // aapt resource value: 0x7F0500C6 - public const int switch_thumb_disabled_material_light = 2131034310; - - // aapt resource value: 0x7F0500C7 - public const int switch_thumb_material_dark = 2131034311; - - // aapt resource value: 0x7F0500C8 - public const int switch_thumb_material_light = 2131034312; - - // aapt resource value: 0x7F0500C9 - public const int switch_thumb_normal_material_dark = 2131034313; - - // aapt resource value: 0x7F0500CA - public const int switch_thumb_normal_material_light = 2131034314; - - // aapt resource value: 0x7F0500CB - public const int test_mtrl_calendar_day = 2131034315; - - // aapt resource value: 0x7F0500CC - public const int test_mtrl_calendar_day_selected = 2131034316; - - // aapt resource value: 0x7F0500CD - public const int tooltip_background_dark = 2131034317; - - // aapt resource value: 0x7F0500CE - public const int tooltip_background_light = 2131034318; - - static Color() - { - global::Android.Runtime.ResourceIdManager.UpdateIdValues(); - } - - private Color() - { - } - } - - public partial class Dimension - { - - // aapt resource value: 0x7F060000 - public const int abc_action_bar_content_inset_material = 2131099648; - - // aapt resource value: 0x7F060001 - public const int abc_action_bar_content_inset_with_nav = 2131099649; - - // aapt resource value: 0x7F060002 - public const int abc_action_bar_default_height_material = 2131099650; - - // aapt resource value: 0x7F060003 - public const int abc_action_bar_default_padding_end_material = 2131099651; - - // aapt resource value: 0x7F060004 - public const int abc_action_bar_default_padding_start_material = 2131099652; - - // aapt resource value: 0x7F060005 - public const int abc_action_bar_elevation_material = 2131099653; - - // aapt resource value: 0x7F060006 - public const int abc_action_bar_icon_vertical_padding_material = 2131099654; - - // aapt resource value: 0x7F060007 - public const int abc_action_bar_overflow_padding_end_material = 2131099655; - - // aapt resource value: 0x7F060008 - public const int abc_action_bar_overflow_padding_start_material = 2131099656; - - // aapt resource value: 0x7F060009 - public const int abc_action_bar_stacked_max_height = 2131099657; - - // aapt resource value: 0x7F06000A - public const int abc_action_bar_stacked_tab_max_width = 2131099658; - - // aapt resource value: 0x7F06000B - public const int abc_action_bar_subtitle_bottom_margin_material = 2131099659; - - // aapt resource value: 0x7F06000C - public const int abc_action_bar_subtitle_top_margin_material = 2131099660; - - // aapt resource value: 0x7F06000D - public const int abc_action_button_min_height_material = 2131099661; - - // aapt resource value: 0x7F06000E - public const int abc_action_button_min_width_material = 2131099662; - - // aapt resource value: 0x7F06000F - public const int abc_action_button_min_width_overflow_material = 2131099663; - - // aapt resource value: 0x7F060010 - public const int abc_alert_dialog_button_bar_height = 2131099664; - - // aapt resource value: 0x7F060011 - public const int abc_alert_dialog_button_dimen = 2131099665; - - // aapt resource value: 0x7F060012 - public const int abc_button_inset_horizontal_material = 2131099666; - - // aapt resource value: 0x7F060013 - public const int abc_button_inset_vertical_material = 2131099667; - - // aapt resource value: 0x7F060014 - public const int abc_button_padding_horizontal_material = 2131099668; - - // aapt resource value: 0x7F060015 - public const int abc_button_padding_vertical_material = 2131099669; - - // aapt resource value: 0x7F060016 - public const int abc_cascading_menus_min_smallest_width = 2131099670; - - // aapt resource value: 0x7F060017 - public const int abc_config_prefDialogWidth = 2131099671; - - // aapt resource value: 0x7F060018 - public const int abc_control_corner_material = 2131099672; - - // aapt resource value: 0x7F060019 - public const int abc_control_inset_material = 2131099673; - - // aapt resource value: 0x7F06001A - public const int abc_control_padding_material = 2131099674; - - // aapt resource value: 0x7F06001B - public const int abc_dialog_corner_radius_material = 2131099675; - - // aapt resource value: 0x7F06001C - public const int abc_dialog_fixed_height_major = 2131099676; - - // aapt resource value: 0x7F06001D - public const int abc_dialog_fixed_height_minor = 2131099677; - - // aapt resource value: 0x7F06001E - public const int abc_dialog_fixed_width_major = 2131099678; - - // aapt resource value: 0x7F06001F - public const int abc_dialog_fixed_width_minor = 2131099679; - - // aapt resource value: 0x7F060020 - public const int abc_dialog_list_padding_bottom_no_buttons = 2131099680; - - // aapt resource value: 0x7F060021 - public const int abc_dialog_list_padding_top_no_title = 2131099681; - - // aapt resource value: 0x7F060022 - public const int abc_dialog_min_width_major = 2131099682; - - // aapt resource value: 0x7F060023 - public const int abc_dialog_min_width_minor = 2131099683; - - // aapt resource value: 0x7F060024 - public const int abc_dialog_padding_material = 2131099684; - - // aapt resource value: 0x7F060025 - public const int abc_dialog_padding_top_material = 2131099685; - - // aapt resource value: 0x7F060026 - public const int abc_dialog_title_divider_material = 2131099686; - - // aapt resource value: 0x7F060027 - public const int abc_disabled_alpha_material_dark = 2131099687; - - // aapt resource value: 0x7F060028 - public const int abc_disabled_alpha_material_light = 2131099688; - - // aapt resource value: 0x7F060029 - public const int abc_dropdownitem_icon_width = 2131099689; - - // aapt resource value: 0x7F06002A - public const int abc_dropdownitem_text_padding_left = 2131099690; - - // aapt resource value: 0x7F06002B - public const int abc_dropdownitem_text_padding_right = 2131099691; - - // aapt resource value: 0x7F06002C - public const int abc_edit_text_inset_bottom_material = 2131099692; - - // aapt resource value: 0x7F06002D - public const int abc_edit_text_inset_horizontal_material = 2131099693; - - // aapt resource value: 0x7F06002E - public const int abc_edit_text_inset_top_material = 2131099694; - - // aapt resource value: 0x7F06002F - public const int abc_floating_window_z = 2131099695; - - // aapt resource value: 0x7F060030 - public const int abc_list_item_height_large_material = 2131099696; - - // aapt resource value: 0x7F060031 - public const int abc_list_item_height_material = 2131099697; - - // aapt resource value: 0x7F060032 - public const int abc_list_item_height_small_material = 2131099698; - - // aapt resource value: 0x7F060033 - public const int abc_list_item_padding_horizontal_material = 2131099699; - - // aapt resource value: 0x7F060034 - public const int abc_panel_menu_list_width = 2131099700; - - // aapt resource value: 0x7F060035 - public const int abc_progress_bar_height_material = 2131099701; - - // aapt resource value: 0x7F060036 - public const int abc_search_view_preferred_height = 2131099702; - - // aapt resource value: 0x7F060037 - public const int abc_search_view_preferred_width = 2131099703; - - // aapt resource value: 0x7F060038 - public const int abc_seekbar_track_background_height_material = 2131099704; - - // aapt resource value: 0x7F060039 - public const int abc_seekbar_track_progress_height_material = 2131099705; - - // aapt resource value: 0x7F06003A - public const int abc_select_dialog_padding_start_material = 2131099706; - - // aapt resource value: 0x7F06003B - public const int abc_switch_padding = 2131099707; - - // aapt resource value: 0x7F06003C - public const int abc_text_size_body_1_material = 2131099708; - - // aapt resource value: 0x7F06003D - public const int abc_text_size_body_2_material = 2131099709; - - // aapt resource value: 0x7F06003E - public const int abc_text_size_button_material = 2131099710; - - // aapt resource value: 0x7F06003F - public const int abc_text_size_caption_material = 2131099711; - - // aapt resource value: 0x7F060040 - public const int abc_text_size_display_1_material = 2131099712; - - // aapt resource value: 0x7F060041 - public const int abc_text_size_display_2_material = 2131099713; - - // aapt resource value: 0x7F060042 - public const int abc_text_size_display_3_material = 2131099714; - - // aapt resource value: 0x7F060043 - public const int abc_text_size_display_4_material = 2131099715; - - // aapt resource value: 0x7F060044 - public const int abc_text_size_headline_material = 2131099716; - - // aapt resource value: 0x7F060045 - public const int abc_text_size_large_material = 2131099717; - - // aapt resource value: 0x7F060046 - public const int abc_text_size_medium_material = 2131099718; - - // aapt resource value: 0x7F060047 - public const int abc_text_size_menu_header_material = 2131099719; - - // aapt resource value: 0x7F060048 - public const int abc_text_size_menu_material = 2131099720; - - // aapt resource value: 0x7F060049 - public const int abc_text_size_small_material = 2131099721; - - // aapt resource value: 0x7F06004A - public const int abc_text_size_subhead_material = 2131099722; - - // aapt resource value: 0x7F06004B - public const int abc_text_size_subtitle_material_toolbar = 2131099723; - - // aapt resource value: 0x7F06004C - public const int abc_text_size_title_material = 2131099724; - - // aapt resource value: 0x7F06004D - public const int abc_text_size_title_material_toolbar = 2131099725; - - // aapt resource value: 0x7F06004E - public const int action_bar_size = 2131099726; - - // aapt resource value: 0x7F06004F - public const int appcompat_dialog_background_inset = 2131099727; - - // aapt resource value: 0x7F060050 - public const int cardview_compat_inset_shadow = 2131099728; - - // aapt resource value: 0x7F060051 - public const int cardview_default_elevation = 2131099729; - - // aapt resource value: 0x7F060052 - public const int cardview_default_radius = 2131099730; - - // aapt resource value: 0x7F060053 - public const int clock_face_margin_start = 2131099731; - - // aapt resource value: 0x7F060054 - public const int compat_button_inset_horizontal_material = 2131099732; - - // aapt resource value: 0x7F060055 - public const int compat_button_inset_vertical_material = 2131099733; - - // aapt resource value: 0x7F060056 - public const int compat_button_padding_horizontal_material = 2131099734; - - // aapt resource value: 0x7F060057 - public const int compat_button_padding_vertical_material = 2131099735; - - // aapt resource value: 0x7F060058 - public const int compat_control_corner_material = 2131099736; - - // aapt resource value: 0x7F060059 - public const int compat_notification_large_icon_max_height = 2131099737; - - // aapt resource value: 0x7F06005A - public const int compat_notification_large_icon_max_width = 2131099738; - - // aapt resource value: 0x7F06005C - public const int default_dimension = 2131099740; - - // aapt resource value: 0x7F06005B - public const int def_drawer_elevation = 2131099739; - - // aapt resource value: 0x7F06005D - public const int design_appbar_elevation = 2131099741; - - // aapt resource value: 0x7F06005E - public const int design_bottom_navigation_active_item_max_width = 2131099742; - - // aapt resource value: 0x7F06005F - public const int design_bottom_navigation_active_item_min_width = 2131099743; - - // aapt resource value: 0x7F060060 - public const int design_bottom_navigation_active_text_size = 2131099744; - - // aapt resource value: 0x7F060061 - public const int design_bottom_navigation_elevation = 2131099745; - - // aapt resource value: 0x7F060062 - public const int design_bottom_navigation_height = 2131099746; - - // aapt resource value: 0x7F060063 - public const int design_bottom_navigation_icon_size = 2131099747; - - // aapt resource value: 0x7F060064 - public const int design_bottom_navigation_item_max_width = 2131099748; - - // aapt resource value: 0x7F060065 - public const int design_bottom_navigation_item_min_width = 2131099749; - - // aapt resource value: 0x7F060066 - public const int design_bottom_navigation_label_padding = 2131099750; - - // aapt resource value: 0x7F060067 - public const int design_bottom_navigation_margin = 2131099751; - - // aapt resource value: 0x7F060068 - public const int design_bottom_navigation_shadow_height = 2131099752; - - // aapt resource value: 0x7F060069 - public const int design_bottom_navigation_text_size = 2131099753; - - // aapt resource value: 0x7F06006A - public const int design_bottom_sheet_elevation = 2131099754; - - // aapt resource value: 0x7F06006B - public const int design_bottom_sheet_modal_elevation = 2131099755; - - // aapt resource value: 0x7F06006C - public const int design_bottom_sheet_peek_height_min = 2131099756; - - // aapt resource value: 0x7F06006D - public const int design_fab_border_width = 2131099757; - - // aapt resource value: 0x7F06006E - public const int design_fab_elevation = 2131099758; - - // aapt resource value: 0x7F06006F - public const int design_fab_image_size = 2131099759; - - // aapt resource value: 0x7F060070 - public const int design_fab_size_mini = 2131099760; - - // aapt resource value: 0x7F060071 - public const int design_fab_size_normal = 2131099761; - - // aapt resource value: 0x7F060072 - public const int design_fab_translation_z_hovered_focused = 2131099762; - - // aapt resource value: 0x7F060073 - public const int design_fab_translation_z_pressed = 2131099763; - - // aapt resource value: 0x7F060074 - public const int design_navigation_elevation = 2131099764; - - // aapt resource value: 0x7F060075 - public const int design_navigation_icon_padding = 2131099765; - - // aapt resource value: 0x7F060076 - public const int design_navigation_icon_size = 2131099766; - - // aapt resource value: 0x7F060077 - public const int design_navigation_item_horizontal_padding = 2131099767; - - // aapt resource value: 0x7F060078 - public const int design_navigation_item_icon_padding = 2131099768; - - // aapt resource value: 0x7F060079 - public const int design_navigation_max_width = 2131099769; - - // aapt resource value: 0x7F06007A - public const int design_navigation_padding_bottom = 2131099770; - - // aapt resource value: 0x7F06007B - public const int design_navigation_separator_vertical_padding = 2131099771; - - // aapt resource value: 0x7F06007C - public const int design_snackbar_action_inline_max_width = 2131099772; - - // aapt resource value: 0x7F06007D - public const int design_snackbar_action_text_color_alpha = 2131099773; - - // aapt resource value: 0x7F06007E - public const int design_snackbar_background_corner_radius = 2131099774; - - // aapt resource value: 0x7F06007F - public const int design_snackbar_elevation = 2131099775; - - // aapt resource value: 0x7F060080 - public const int design_snackbar_extra_spacing_horizontal = 2131099776; - - // aapt resource value: 0x7F060081 - public const int design_snackbar_max_width = 2131099777; - - // aapt resource value: 0x7F060082 - public const int design_snackbar_min_width = 2131099778; - - // aapt resource value: 0x7F060083 - public const int design_snackbar_padding_horizontal = 2131099779; - - // aapt resource value: 0x7F060084 - public const int design_snackbar_padding_vertical = 2131099780; - - // aapt resource value: 0x7F060085 - public const int design_snackbar_padding_vertical_2lines = 2131099781; - - // aapt resource value: 0x7F060086 - public const int design_snackbar_text_size = 2131099782; - - // aapt resource value: 0x7F060087 - public const int design_tab_max_width = 2131099783; - - // aapt resource value: 0x7F060088 - public const int design_tab_scrollable_min_width = 2131099784; - - // aapt resource value: 0x7F060089 - public const int design_tab_text_size = 2131099785; - - // aapt resource value: 0x7F06008A - public const int design_tab_text_size_2line = 2131099786; - - // aapt resource value: 0x7F06008B - public const int design_textinput_caption_translate_y = 2131099787; - - // aapt resource value: 0x7F06008C - public const int disabled_alpha_material_dark = 2131099788; - - // aapt resource value: 0x7F06008D - public const int disabled_alpha_material_light = 2131099789; - - // aapt resource value: 0x7F06008E - public const int fastscroll_default_thickness = 2131099790; - - // aapt resource value: 0x7F06008F - public const int fastscroll_margin = 2131099791; - - // aapt resource value: 0x7F060090 - public const int fastscroll_minimum_range = 2131099792; - - // aapt resource value: 0x7F060091 - public const int highlight_alpha_material_colored = 2131099793; - - // aapt resource value: 0x7F060092 - public const int highlight_alpha_material_dark = 2131099794; - - // aapt resource value: 0x7F060093 - public const int highlight_alpha_material_light = 2131099795; - - // aapt resource value: 0x7F060094 - public const int hint_alpha_material_dark = 2131099796; - - // aapt resource value: 0x7F060095 - public const int hint_alpha_material_light = 2131099797; - - // aapt resource value: 0x7F060096 - public const int hint_pressed_alpha_material_dark = 2131099798; - - // aapt resource value: 0x7F060097 - public const int hint_pressed_alpha_material_light = 2131099799; - - // aapt resource value: 0x7F060098 - public const int item_touch_helper_max_drag_scroll_per_frame = 2131099800; - - // aapt resource value: 0x7F060099 - public const int item_touch_helper_swipe_escape_max_velocity = 2131099801; - - // aapt resource value: 0x7F06009A - public const int item_touch_helper_swipe_escape_velocity = 2131099802; - - // aapt resource value: 0x7F06009B - public const int material_clock_display_padding = 2131099803; - - // aapt resource value: 0x7F06009C - public const int material_clock_face_margin_top = 2131099804; - - // aapt resource value: 0x7F06009D - public const int material_clock_hand_center_dot_radius = 2131099805; - - // aapt resource value: 0x7F06009E - public const int material_clock_hand_padding = 2131099806; - - // aapt resource value: 0x7F06009F - public const int material_clock_hand_stroke_width = 2131099807; - - // aapt resource value: 0x7F0600A0 - public const int material_clock_number_text_size = 2131099808; - - // aapt resource value: 0x7F0600A1 - public const int material_clock_period_toggle_height = 2131099809; - - // aapt resource value: 0x7F0600A2 - public const int material_clock_period_toggle_margin_left = 2131099810; - - // aapt resource value: 0x7F0600A3 - public const int material_clock_period_toggle_width = 2131099811; - - // aapt resource value: 0x7F0600A4 - public const int material_clock_size = 2131099812; - - // aapt resource value: 0x7F0600A5 - public const int material_cursor_inset_bottom = 2131099813; - - // aapt resource value: 0x7F0600A6 - public const int material_cursor_inset_top = 2131099814; - - // aapt resource value: 0x7F0600A7 - public const int material_cursor_width = 2131099815; - - // aapt resource value: 0x7F0600A8 - public const int material_emphasis_disabled = 2131099816; - - // aapt resource value: 0x7F0600A9 - public const int material_emphasis_high_type = 2131099817; - - // aapt resource value: 0x7F0600AA - public const int material_emphasis_medium = 2131099818; - - // aapt resource value: 0x7F0600AB - public const int material_filled_edittext_font_1_3_padding_bottom = 2131099819; - - // aapt resource value: 0x7F0600AC - public const int material_filled_edittext_font_1_3_padding_top = 2131099820; - - // aapt resource value: 0x7F0600AD - public const int material_filled_edittext_font_2_0_padding_bottom = 2131099821; - - // aapt resource value: 0x7F0600AE - public const int material_filled_edittext_font_2_0_padding_top = 2131099822; - - // aapt resource value: 0x7F0600AF - public const int material_font_1_3_box_collapsed_padding_top = 2131099823; - - // aapt resource value: 0x7F0600B0 - public const int material_font_2_0_box_collapsed_padding_top = 2131099824; - - // aapt resource value: 0x7F0600B1 - public const int material_helper_text_default_padding_top = 2131099825; - - // aapt resource value: 0x7F0600B2 - public const int material_helper_text_font_1_3_padding_horizontal = 2131099826; - - // aapt resource value: 0x7F0600B3 - public const int material_helper_text_font_1_3_padding_top = 2131099827; - - // aapt resource value: 0x7F0600B4 - public const int material_input_text_to_prefix_suffix_padding = 2131099828; - - // aapt resource value: 0x7F0600B5 - public const int material_text_view_test_line_height = 2131099829; - - // aapt resource value: 0x7F0600B6 - public const int material_text_view_test_line_height_override = 2131099830; - - // aapt resource value: 0x7F0600B7 - public const int material_timepicker_dialog_buttons_margin_top = 2131099831; - - // aapt resource value: 0x7F0600B8 - public const int mtrl_alert_dialog_background_inset_bottom = 2131099832; - - // aapt resource value: 0x7F0600B9 - public const int mtrl_alert_dialog_background_inset_end = 2131099833; - - // aapt resource value: 0x7F0600BA - public const int mtrl_alert_dialog_background_inset_start = 2131099834; - - // aapt resource value: 0x7F0600BB - public const int mtrl_alert_dialog_background_inset_top = 2131099835; - - // aapt resource value: 0x7F0600BC - public const int mtrl_alert_dialog_picker_background_inset = 2131099836; - - // aapt resource value: 0x7F0600BD - public const int mtrl_badge_horizontal_edge_offset = 2131099837; - - // aapt resource value: 0x7F0600BE - public const int mtrl_badge_long_text_horizontal_padding = 2131099838; - - // aapt resource value: 0x7F0600BF - public const int mtrl_badge_radius = 2131099839; - - // aapt resource value: 0x7F0600C0 - public const int mtrl_badge_text_horizontal_edge_offset = 2131099840; - - // aapt resource value: 0x7F0600C1 - public const int mtrl_badge_text_size = 2131099841; - - // aapt resource value: 0x7F0600C2 - public const int mtrl_badge_toolbar_action_menu_item_horizontal_offset = 2131099842; - - // aapt resource value: 0x7F0600C3 - public const int mtrl_badge_toolbar_action_menu_item_vertical_offset = 2131099843; - - // aapt resource value: 0x7F0600C4 - public const int mtrl_badge_with_text_radius = 2131099844; - - // aapt resource value: 0x7F0600C5 - public const int mtrl_bottomappbar_fabOffsetEndMode = 2131099845; - - // aapt resource value: 0x7F0600C6 - public const int mtrl_bottomappbar_fab_bottom_margin = 2131099846; - - // aapt resource value: 0x7F0600C7 - public const int mtrl_bottomappbar_fab_cradle_margin = 2131099847; - - // aapt resource value: 0x7F0600C8 - public const int mtrl_bottomappbar_fab_cradle_rounded_corner_radius = 2131099848; - - // aapt resource value: 0x7F0600C9 - public const int mtrl_bottomappbar_fab_cradle_vertical_offset = 2131099849; - - // aapt resource value: 0x7F0600CA - public const int mtrl_bottomappbar_height = 2131099850; - - // aapt resource value: 0x7F0600CB - public const int mtrl_btn_corner_radius = 2131099851; - - // aapt resource value: 0x7F0600CC - public const int mtrl_btn_dialog_btn_min_width = 2131099852; - - // aapt resource value: 0x7F0600CD - public const int mtrl_btn_disabled_elevation = 2131099853; - - // aapt resource value: 0x7F0600CE - public const int mtrl_btn_disabled_z = 2131099854; - - // aapt resource value: 0x7F0600CF - public const int mtrl_btn_elevation = 2131099855; - - // aapt resource value: 0x7F0600D0 - public const int mtrl_btn_focused_z = 2131099856; - - // aapt resource value: 0x7F0600D1 - public const int mtrl_btn_hovered_z = 2131099857; - - // aapt resource value: 0x7F0600D2 - public const int mtrl_btn_icon_btn_padding_left = 2131099858; - - // aapt resource value: 0x7F0600D3 - public const int mtrl_btn_icon_padding = 2131099859; - - // aapt resource value: 0x7F0600D4 - public const int mtrl_btn_inset = 2131099860; - - // aapt resource value: 0x7F0600D5 - public const int mtrl_btn_letter_spacing = 2131099861; - - // aapt resource value: 0x7F0600D6 - public const int mtrl_btn_padding_bottom = 2131099862; - - // aapt resource value: 0x7F0600D7 - public const int mtrl_btn_padding_left = 2131099863; - - // aapt resource value: 0x7F0600D8 - public const int mtrl_btn_padding_right = 2131099864; - - // aapt resource value: 0x7F0600D9 - public const int mtrl_btn_padding_top = 2131099865; - - // aapt resource value: 0x7F0600DA - public const int mtrl_btn_pressed_z = 2131099866; - - // aapt resource value: 0x7F0600DB - public const int mtrl_btn_snackbar_margin_horizontal = 2131099867; - - // aapt resource value: 0x7F0600DC - public const int mtrl_btn_stroke_size = 2131099868; - - // aapt resource value: 0x7F0600DD - public const int mtrl_btn_text_btn_icon_padding = 2131099869; - - // aapt resource value: 0x7F0600DE - public const int mtrl_btn_text_btn_padding_left = 2131099870; - - // aapt resource value: 0x7F0600DF - public const int mtrl_btn_text_btn_padding_right = 2131099871; - - // aapt resource value: 0x7F0600E0 - public const int mtrl_btn_text_size = 2131099872; - - // aapt resource value: 0x7F0600E1 - public const int mtrl_btn_z = 2131099873; - - // aapt resource value: 0x7F0600E2 - public const int mtrl_calendar_action_confirm_button_min_width = 2131099874; - - // aapt resource value: 0x7F0600E3 - public const int mtrl_calendar_action_height = 2131099875; - - // aapt resource value: 0x7F0600E4 - public const int mtrl_calendar_action_padding = 2131099876; - - // aapt resource value: 0x7F0600E5 - public const int mtrl_calendar_bottom_padding = 2131099877; - - // aapt resource value: 0x7F0600E6 - public const int mtrl_calendar_content_padding = 2131099878; - - // aapt resource value: 0x7F0600ED - public const int mtrl_calendar_days_of_week_height = 2131099885; - - // aapt resource value: 0x7F0600E7 - public const int mtrl_calendar_day_corner = 2131099879; - - // aapt resource value: 0x7F0600E8 - public const int mtrl_calendar_day_height = 2131099880; - - // aapt resource value: 0x7F0600E9 - public const int mtrl_calendar_day_horizontal_padding = 2131099881; - - // aapt resource value: 0x7F0600EA - public const int mtrl_calendar_day_today_stroke = 2131099882; - - // aapt resource value: 0x7F0600EB - public const int mtrl_calendar_day_vertical_padding = 2131099883; - - // aapt resource value: 0x7F0600EC - public const int mtrl_calendar_day_width = 2131099884; - - // aapt resource value: 0x7F0600EE - public const int mtrl_calendar_dialog_background_inset = 2131099886; - - // aapt resource value: 0x7F0600EF - public const int mtrl_calendar_header_content_padding = 2131099887; - - // aapt resource value: 0x7F0600F0 - public const int mtrl_calendar_header_content_padding_fullscreen = 2131099888; - - // aapt resource value: 0x7F0600F1 - public const int mtrl_calendar_header_divider_thickness = 2131099889; - - // aapt resource value: 0x7F0600F2 - public const int mtrl_calendar_header_height = 2131099890; - - // aapt resource value: 0x7F0600F3 - public const int mtrl_calendar_header_height_fullscreen = 2131099891; - - // aapt resource value: 0x7F0600F4 - public const int mtrl_calendar_header_selection_line_height = 2131099892; - - // aapt resource value: 0x7F0600F5 - public const int mtrl_calendar_header_text_padding = 2131099893; - - // aapt resource value: 0x7F0600F6 - public const int mtrl_calendar_header_toggle_margin_bottom = 2131099894; - - // aapt resource value: 0x7F0600F7 - public const int mtrl_calendar_header_toggle_margin_top = 2131099895; - - // aapt resource value: 0x7F0600F8 - public const int mtrl_calendar_landscape_header_width = 2131099896; - - // aapt resource value: 0x7F0600F9 - public const int mtrl_calendar_maximum_default_fullscreen_minor_axis = 2131099897; - - // aapt resource value: 0x7F0600FA - public const int mtrl_calendar_month_horizontal_padding = 2131099898; - - // aapt resource value: 0x7F0600FB - public const int mtrl_calendar_month_vertical_padding = 2131099899; - - // aapt resource value: 0x7F0600FC - public const int mtrl_calendar_navigation_bottom_padding = 2131099900; - - // aapt resource value: 0x7F0600FD - public const int mtrl_calendar_navigation_height = 2131099901; - - // aapt resource value: 0x7F0600FE - public const int mtrl_calendar_navigation_top_padding = 2131099902; - - // aapt resource value: 0x7F0600FF - public const int mtrl_calendar_pre_l_text_clip_padding = 2131099903; - - // aapt resource value: 0x7F060100 - public const int mtrl_calendar_selection_baseline_to_top_fullscreen = 2131099904; - - // aapt resource value: 0x7F060101 - public const int mtrl_calendar_selection_text_baseline_to_bottom = 2131099905; - - // aapt resource value: 0x7F060102 - public const int mtrl_calendar_selection_text_baseline_to_bottom_fullscreen = 2131099906; - - // aapt resource value: 0x7F060103 - public const int mtrl_calendar_selection_text_baseline_to_top = 2131099907; - - // aapt resource value: 0x7F060104 - public const int mtrl_calendar_text_input_padding_top = 2131099908; - - // aapt resource value: 0x7F060105 - public const int mtrl_calendar_title_baseline_to_top = 2131099909; - - // aapt resource value: 0x7F060106 - public const int mtrl_calendar_title_baseline_to_top_fullscreen = 2131099910; - - // aapt resource value: 0x7F060107 - public const int mtrl_calendar_year_corner = 2131099911; - - // aapt resource value: 0x7F060108 - public const int mtrl_calendar_year_height = 2131099912; - - // aapt resource value: 0x7F060109 - public const int mtrl_calendar_year_horizontal_padding = 2131099913; - - // aapt resource value: 0x7F06010A - public const int mtrl_calendar_year_vertical_padding = 2131099914; - - // aapt resource value: 0x7F06010B - public const int mtrl_calendar_year_width = 2131099915; - - // aapt resource value: 0x7F06010C - public const int mtrl_card_checked_icon_margin = 2131099916; - - // aapt resource value: 0x7F06010D - public const int mtrl_card_checked_icon_size = 2131099917; - - // aapt resource value: 0x7F06010E - public const int mtrl_card_corner_radius = 2131099918; - - // aapt resource value: 0x7F06010F - public const int mtrl_card_dragged_z = 2131099919; - - // aapt resource value: 0x7F060110 - public const int mtrl_card_elevation = 2131099920; - - // aapt resource value: 0x7F060111 - public const int mtrl_card_spacing = 2131099921; - - // aapt resource value: 0x7F060112 - public const int mtrl_chip_pressed_translation_z = 2131099922; - - // aapt resource value: 0x7F060113 - public const int mtrl_chip_text_size = 2131099923; - - // aapt resource value: 0x7F060114 - public const int mtrl_edittext_rectangle_top_offset = 2131099924; - - // aapt resource value: 0x7F060115 - public const int mtrl_exposed_dropdown_menu_popup_elevation = 2131099925; - - // aapt resource value: 0x7F060116 - public const int mtrl_exposed_dropdown_menu_popup_vertical_offset = 2131099926; - - // aapt resource value: 0x7F060117 - public const int mtrl_exposed_dropdown_menu_popup_vertical_padding = 2131099927; - - // aapt resource value: 0x7F060118 - public const int mtrl_extended_fab_bottom_padding = 2131099928; - - // aapt resource value: 0x7F060119 - public const int mtrl_extended_fab_corner_radius = 2131099929; - - // aapt resource value: 0x7F06011A - public const int mtrl_extended_fab_disabled_elevation = 2131099930; - - // aapt resource value: 0x7F06011B - public const int mtrl_extended_fab_disabled_translation_z = 2131099931; - - // aapt resource value: 0x7F06011C - public const int mtrl_extended_fab_elevation = 2131099932; - - // aapt resource value: 0x7F06011D - public const int mtrl_extended_fab_end_padding = 2131099933; - - // aapt resource value: 0x7F06011E - public const int mtrl_extended_fab_end_padding_icon = 2131099934; - - // aapt resource value: 0x7F06011F - public const int mtrl_extended_fab_icon_size = 2131099935; - - // aapt resource value: 0x7F060120 - public const int mtrl_extended_fab_icon_text_spacing = 2131099936; - - // aapt resource value: 0x7F060121 - public const int mtrl_extended_fab_min_height = 2131099937; - - // aapt resource value: 0x7F060122 - public const int mtrl_extended_fab_min_width = 2131099938; - - // aapt resource value: 0x7F060123 - public const int mtrl_extended_fab_start_padding = 2131099939; - - // aapt resource value: 0x7F060124 - public const int mtrl_extended_fab_start_padding_icon = 2131099940; - - // aapt resource value: 0x7F060125 - public const int mtrl_extended_fab_top_padding = 2131099941; - - // aapt resource value: 0x7F060126 - public const int mtrl_extended_fab_translation_z_base = 2131099942; - - // aapt resource value: 0x7F060127 - public const int mtrl_extended_fab_translation_z_hovered_focused = 2131099943; - - // aapt resource value: 0x7F060128 - public const int mtrl_extended_fab_translation_z_pressed = 2131099944; - - // aapt resource value: 0x7F060129 - public const int mtrl_fab_elevation = 2131099945; - - // aapt resource value: 0x7F06012A - public const int mtrl_fab_min_touch_target = 2131099946; - - // aapt resource value: 0x7F06012B - public const int mtrl_fab_translation_z_hovered_focused = 2131099947; - - // aapt resource value: 0x7F06012C - public const int mtrl_fab_translation_z_pressed = 2131099948; - - // aapt resource value: 0x7F06012D - public const int mtrl_high_ripple_default_alpha = 2131099949; - - // aapt resource value: 0x7F06012E - public const int mtrl_high_ripple_focused_alpha = 2131099950; - - // aapt resource value: 0x7F06012F - public const int mtrl_high_ripple_hovered_alpha = 2131099951; - - // aapt resource value: 0x7F060130 - public const int mtrl_high_ripple_pressed_alpha = 2131099952; - - // aapt resource value: 0x7F060131 - public const int mtrl_large_touch_target = 2131099953; - - // aapt resource value: 0x7F060132 - public const int mtrl_low_ripple_default_alpha = 2131099954; - - // aapt resource value: 0x7F060133 - public const int mtrl_low_ripple_focused_alpha = 2131099955; - - // aapt resource value: 0x7F060134 - public const int mtrl_low_ripple_hovered_alpha = 2131099956; - - // aapt resource value: 0x7F060135 - public const int mtrl_low_ripple_pressed_alpha = 2131099957; - - // aapt resource value: 0x7F060136 - public const int mtrl_min_touch_target_size = 2131099958; - - // aapt resource value: 0x7F060137 - public const int mtrl_navigation_elevation = 2131099959; - - // aapt resource value: 0x7F060138 - public const int mtrl_navigation_item_horizontal_padding = 2131099960; - - // aapt resource value: 0x7F060139 - public const int mtrl_navigation_item_icon_padding = 2131099961; - - // aapt resource value: 0x7F06013A - public const int mtrl_navigation_item_icon_size = 2131099962; - - // aapt resource value: 0x7F06013B - public const int mtrl_navigation_item_shape_horizontal_margin = 2131099963; - - // aapt resource value: 0x7F06013C - public const int mtrl_navigation_item_shape_vertical_margin = 2131099964; - - // aapt resource value: 0x7F06013D - public const int mtrl_progress_circular_inset = 2131099965; - - // aapt resource value: 0x7F06013E - public const int mtrl_progress_circular_inset_extra_small = 2131099966; - - // aapt resource value: 0x7F06013F - public const int mtrl_progress_circular_inset_medium = 2131099967; - - // aapt resource value: 0x7F060140 - public const int mtrl_progress_circular_inset_small = 2131099968; - - // aapt resource value: 0x7F060141 - public const int mtrl_progress_circular_radius = 2131099969; - - // aapt resource value: 0x7F060142 - public const int mtrl_progress_circular_size = 2131099970; - - // aapt resource value: 0x7F060143 - public const int mtrl_progress_circular_size_extra_small = 2131099971; - - // aapt resource value: 0x7F060144 - public const int mtrl_progress_circular_size_medium = 2131099972; - - // aapt resource value: 0x7F060145 - public const int mtrl_progress_circular_size_small = 2131099973; - - // aapt resource value: 0x7F060146 - public const int mtrl_progress_circular_track_thickness_extra_small = 2131099974; - - // aapt resource value: 0x7F060147 - public const int mtrl_progress_circular_track_thickness_medium = 2131099975; - - // aapt resource value: 0x7F060148 - public const int mtrl_progress_circular_track_thickness_small = 2131099976; - - // aapt resource value: 0x7F060149 - public const int mtrl_progress_indicator_full_rounded_corner_radius = 2131099977; - - // aapt resource value: 0x7F06014A - public const int mtrl_progress_track_thickness = 2131099978; - - // aapt resource value: 0x7F06014B - public const int mtrl_shape_corner_size_large_component = 2131099979; - - // aapt resource value: 0x7F06014C - public const int mtrl_shape_corner_size_medium_component = 2131099980; - - // aapt resource value: 0x7F06014D - public const int mtrl_shape_corner_size_small_component = 2131099981; - - // aapt resource value: 0x7F06014E - public const int mtrl_slider_halo_radius = 2131099982; - - // aapt resource value: 0x7F06014F - public const int mtrl_slider_label_padding = 2131099983; - - // aapt resource value: 0x7F060150 - public const int mtrl_slider_label_radius = 2131099984; - - // aapt resource value: 0x7F060151 - public const int mtrl_slider_label_square_side = 2131099985; - - // aapt resource value: 0x7F060152 - public const int mtrl_slider_thumb_elevation = 2131099986; - - // aapt resource value: 0x7F060153 - public const int mtrl_slider_thumb_radius = 2131099987; - - // aapt resource value: 0x7F060154 - public const int mtrl_slider_track_height = 2131099988; - - // aapt resource value: 0x7F060155 - public const int mtrl_slider_track_side_padding = 2131099989; - - // aapt resource value: 0x7F060156 - public const int mtrl_slider_track_top = 2131099990; - - // aapt resource value: 0x7F060157 - public const int mtrl_slider_widget_height = 2131099991; - - // aapt resource value: 0x7F060158 - public const int mtrl_snackbar_action_text_color_alpha = 2131099992; - - // aapt resource value: 0x7F060159 - public const int mtrl_snackbar_background_corner_radius = 2131099993; - - // aapt resource value: 0x7F06015A - public const int mtrl_snackbar_background_overlay_color_alpha = 2131099994; - - // aapt resource value: 0x7F06015B - public const int mtrl_snackbar_margin = 2131099995; - - // aapt resource value: 0x7F06015C - public const int mtrl_snackbar_message_margin_horizontal = 2131099996; - - // aapt resource value: 0x7F06015D - public const int mtrl_snackbar_padding_horizontal = 2131099997; - - // aapt resource value: 0x7F06015E - public const int mtrl_switch_thumb_elevation = 2131099998; - - // aapt resource value: 0x7F06015F - public const int mtrl_textinput_box_corner_radius_medium = 2131099999; - - // aapt resource value: 0x7F060160 - public const int mtrl_textinput_box_corner_radius_small = 2131100000; - - // aapt resource value: 0x7F060161 - public const int mtrl_textinput_box_label_cutout_padding = 2131100001; - - // aapt resource value: 0x7F060162 - public const int mtrl_textinput_box_stroke_width_default = 2131100002; - - // aapt resource value: 0x7F060163 - public const int mtrl_textinput_box_stroke_width_focused = 2131100003; - - // aapt resource value: 0x7F060164 - public const int mtrl_textinput_counter_margin_start = 2131100004; - - // aapt resource value: 0x7F060165 - public const int mtrl_textinput_end_icon_margin_start = 2131100005; - - // aapt resource value: 0x7F060166 - public const int mtrl_textinput_outline_box_expanded_padding = 2131100006; - - // aapt resource value: 0x7F060167 - public const int mtrl_textinput_start_icon_margin_end = 2131100007; - - // aapt resource value: 0x7F060168 - public const int mtrl_toolbar_default_height = 2131100008; - - // aapt resource value: 0x7F060169 - public const int mtrl_tooltip_arrowSize = 2131100009; - - // aapt resource value: 0x7F06016A - public const int mtrl_tooltip_cornerSize = 2131100010; - - // aapt resource value: 0x7F06016B - public const int mtrl_tooltip_minHeight = 2131100011; - - // aapt resource value: 0x7F06016C - public const int mtrl_tooltip_minWidth = 2131100012; - - // aapt resource value: 0x7F06016D - public const int mtrl_tooltip_padding = 2131100013; - - // aapt resource value: 0x7F06016E - public const int mtrl_transition_shared_axis_slide_distance = 2131100014; - - // aapt resource value: 0x7F06016F - public const int notification_action_icon_size = 2131100015; - - // aapt resource value: 0x7F060170 - public const int notification_action_text_size = 2131100016; - - // aapt resource value: 0x7F060171 - public const int notification_big_circle_margin = 2131100017; - - // aapt resource value: 0x7F060172 - public const int notification_content_margin_start = 2131100018; - - // aapt resource value: 0x7F060173 - public const int notification_large_icon_height = 2131100019; - - // aapt resource value: 0x7F060174 - public const int notification_large_icon_width = 2131100020; - - // aapt resource value: 0x7F060175 - public const int notification_main_column_padding_top = 2131100021; - - // aapt resource value: 0x7F060176 - public const int notification_media_narrow_margin = 2131100022; - - // aapt resource value: 0x7F060177 - public const int notification_right_icon_size = 2131100023; - - // aapt resource value: 0x7F060178 - public const int notification_right_side_padding_top = 2131100024; - - // aapt resource value: 0x7F060179 - public const int notification_small_icon_background_padding = 2131100025; - - // aapt resource value: 0x7F06017A - public const int notification_small_icon_size_as_large = 2131100026; - - // aapt resource value: 0x7F06017B - public const int notification_subtext_size = 2131100027; - - // aapt resource value: 0x7F06017C - public const int notification_top_pad = 2131100028; - - // aapt resource value: 0x7F06017D - public const int notification_top_pad_large_text = 2131100029; - - // aapt resource value: 0x7F06017E - public const int test_mtrl_calendar_day_cornerSize = 2131100030; - - // aapt resource value: 0x7F06017F - public const int tooltip_corner_radius = 2131100031; - - // aapt resource value: 0x7F060180 - public const int tooltip_horizontal_padding = 2131100032; - - // aapt resource value: 0x7F060181 - public const int tooltip_margin = 2131100033; - - // aapt resource value: 0x7F060182 - public const int tooltip_precise_anchor_extra_offset = 2131100034; - - // aapt resource value: 0x7F060183 - public const int tooltip_precise_anchor_threshold = 2131100035; - - // aapt resource value: 0x7F060184 - public const int tooltip_vertical_padding = 2131100036; - - // aapt resource value: 0x7F060185 - public const int tooltip_y_offset_non_touch = 2131100037; - - // aapt resource value: 0x7F060186 - public const int tooltip_y_offset_touch = 2131100038; - - static Dimension() - { - global::Android.Runtime.ResourceIdManager.UpdateIdValues(); - } - - private Dimension() - { - } - } - - public partial class Drawable - { - - // aapt resource value: 0x7F070006 - public const int abc_ab_share_pack_mtrl_alpha = 2131165190; - - // aapt resource value: 0x7F070007 - public const int abc_action_bar_item_background_material = 2131165191; - - // aapt resource value: 0x7F070008 - public const int abc_btn_borderless_material = 2131165192; - - // aapt resource value: 0x7F070009 - public const int abc_btn_check_material = 2131165193; - - // aapt resource value: 0x7F07000A - public const int abc_btn_check_material_anim = 2131165194; - - // aapt resource value: 0x7F07000B - public const int abc_btn_check_to_on_mtrl_000 = 2131165195; - - // aapt resource value: 0x7F07000C - public const int abc_btn_check_to_on_mtrl_015 = 2131165196; - - // aapt resource value: 0x7F07000D - public const int abc_btn_colored_material = 2131165197; - - // aapt resource value: 0x7F07000E - public const int abc_btn_default_mtrl_shape = 2131165198; - - // aapt resource value: 0x7F07000F - public const int abc_btn_radio_material = 2131165199; - - // aapt resource value: 0x7F070010 - public const int abc_btn_radio_material_anim = 2131165200; - - // aapt resource value: 0x7F070011 - public const int abc_btn_radio_to_on_mtrl_000 = 2131165201; - - // aapt resource value: 0x7F070012 - public const int abc_btn_radio_to_on_mtrl_015 = 2131165202; - - // aapt resource value: 0x7F070013 - public const int abc_btn_switch_to_on_mtrl_00001 = 2131165203; - - // aapt resource value: 0x7F070014 - public const int abc_btn_switch_to_on_mtrl_00012 = 2131165204; - - // aapt resource value: 0x7F070015 - public const int abc_cab_background_internal_bg = 2131165205; - - // aapt resource value: 0x7F070016 - public const int abc_cab_background_top_material = 2131165206; - - // aapt resource value: 0x7F070017 - public const int abc_cab_background_top_mtrl_alpha = 2131165207; - - // aapt resource value: 0x7F070018 - public const int abc_control_background_material = 2131165208; - - // aapt resource value: 0x7F070019 - public const int abc_dialog_material_background = 2131165209; - - // aapt resource value: 0x7F07001A - public const int abc_edit_text_material = 2131165210; - - // aapt resource value: 0x7F07001B - public const int abc_ic_ab_back_material = 2131165211; - - // aapt resource value: 0x7F07001C - public const int abc_ic_arrow_drop_right_black_24dp = 2131165212; - - // aapt resource value: 0x7F07001D - public const int abc_ic_clear_material = 2131165213; - - // aapt resource value: 0x7F07001E - public const int abc_ic_commit_search_api_mtrl_alpha = 2131165214; - - // aapt resource value: 0x7F07001F - public const int abc_ic_go_search_api_material = 2131165215; - - // aapt resource value: 0x7F070020 - public const int abc_ic_menu_copy_mtrl_am_alpha = 2131165216; - - // aapt resource value: 0x7F070021 - public const int abc_ic_menu_cut_mtrl_alpha = 2131165217; - - // aapt resource value: 0x7F070022 - public const int abc_ic_menu_overflow_material = 2131165218; - - // aapt resource value: 0x7F070023 - public const int abc_ic_menu_paste_mtrl_am_alpha = 2131165219; - - // aapt resource value: 0x7F070024 - public const int abc_ic_menu_selectall_mtrl_alpha = 2131165220; - - // aapt resource value: 0x7F070025 - public const int abc_ic_menu_share_mtrl_alpha = 2131165221; - - // aapt resource value: 0x7F070026 - public const int abc_ic_search_api_material = 2131165222; - - // aapt resource value: 0x7F070027 - public const int abc_ic_star_black_16dp = 2131165223; - - // aapt resource value: 0x7F070028 - public const int abc_ic_star_black_36dp = 2131165224; - - // aapt resource value: 0x7F070029 - public const int abc_ic_star_black_48dp = 2131165225; - - // aapt resource value: 0x7F07002A - public const int abc_ic_star_half_black_16dp = 2131165226; - - // aapt resource value: 0x7F07002B - public const int abc_ic_star_half_black_36dp = 2131165227; - - // aapt resource value: 0x7F07002C - public const int abc_ic_star_half_black_48dp = 2131165228; - - // aapt resource value: 0x7F07002D - public const int abc_ic_voice_search_api_material = 2131165229; - - // aapt resource value: 0x7F07002E - public const int abc_item_background_holo_dark = 2131165230; - - // aapt resource value: 0x7F07002F - public const int abc_item_background_holo_light = 2131165231; - - // aapt resource value: 0x7F070030 - public const int abc_list_divider_material = 2131165232; - - // aapt resource value: 0x7F070031 - public const int abc_list_divider_mtrl_alpha = 2131165233; - - // aapt resource value: 0x7F070032 - public const int abc_list_focused_holo = 2131165234; - - // aapt resource value: 0x7F070033 - public const int abc_list_longpressed_holo = 2131165235; - - // aapt resource value: 0x7F070034 - public const int abc_list_pressed_holo_dark = 2131165236; - - // aapt resource value: 0x7F070035 - public const int abc_list_pressed_holo_light = 2131165237; - - // aapt resource value: 0x7F070036 - public const int abc_list_selector_background_transition_holo_dark = 2131165238; - - // aapt resource value: 0x7F070037 - public const int abc_list_selector_background_transition_holo_light = 2131165239; - - // aapt resource value: 0x7F070038 - public const int abc_list_selector_disabled_holo_dark = 2131165240; - - // aapt resource value: 0x7F070039 - public const int abc_list_selector_disabled_holo_light = 2131165241; - - // aapt resource value: 0x7F07003A - public const int abc_list_selector_holo_dark = 2131165242; - - // aapt resource value: 0x7F07003B - public const int abc_list_selector_holo_light = 2131165243; - - // aapt resource value: 0x7F07003C - public const int abc_menu_hardkey_panel_mtrl_mult = 2131165244; - - // aapt resource value: 0x7F07003D - public const int abc_popup_background_mtrl_mult = 2131165245; - - // aapt resource value: 0x7F07003E - public const int abc_ratingbar_indicator_material = 2131165246; - - // aapt resource value: 0x7F07003F - public const int abc_ratingbar_material = 2131165247; - - // aapt resource value: 0x7F070040 - public const int abc_ratingbar_small_material = 2131165248; - - // aapt resource value: 0x7F070041 - public const int abc_scrubber_control_off_mtrl_alpha = 2131165249; - - // aapt resource value: 0x7F070042 - public const int abc_scrubber_control_to_pressed_mtrl_000 = 2131165250; - - // aapt resource value: 0x7F070043 - public const int abc_scrubber_control_to_pressed_mtrl_005 = 2131165251; - - // aapt resource value: 0x7F070044 - public const int abc_scrubber_primary_mtrl_alpha = 2131165252; - - // aapt resource value: 0x7F070045 - public const int abc_scrubber_track_mtrl_alpha = 2131165253; - - // aapt resource value: 0x7F070046 - public const int abc_seekbar_thumb_material = 2131165254; - - // aapt resource value: 0x7F070047 - public const int abc_seekbar_tick_mark_material = 2131165255; - - // aapt resource value: 0x7F070048 - public const int abc_seekbar_track_material = 2131165256; - - // aapt resource value: 0x7F070049 - public const int abc_spinner_mtrl_am_alpha = 2131165257; - - // aapt resource value: 0x7F07004A - public const int abc_spinner_textfield_background_material = 2131165258; - - // aapt resource value: 0x7F07004B - public const int abc_switch_thumb_material = 2131165259; - - // aapt resource value: 0x7F07004C - public const int abc_switch_track_mtrl_alpha = 2131165260; - - // aapt resource value: 0x7F07004D - public const int abc_tab_indicator_material = 2131165261; - - // aapt resource value: 0x7F07004E - public const int abc_tab_indicator_mtrl_alpha = 2131165262; - - // aapt resource value: 0x7F070056 - public const int abc_textfield_activated_mtrl_alpha = 2131165270; - - // aapt resource value: 0x7F070057 - public const int abc_textfield_default_mtrl_alpha = 2131165271; - - // aapt resource value: 0x7F070058 - public const int abc_textfield_search_activated_mtrl_alpha = 2131165272; - - // aapt resource value: 0x7F070059 - public const int abc_textfield_search_default_mtrl_alpha = 2131165273; - - // aapt resource value: 0x7F07005A - public const int abc_textfield_search_material = 2131165274; - - // aapt resource value: 0x7F07004F - public const int abc_text_cursor_material = 2131165263; - - // aapt resource value: 0x7F070050 - public const int abc_text_select_handle_left_mtrl_dark = 2131165264; - - // aapt resource value: 0x7F070051 - public const int abc_text_select_handle_left_mtrl_light = 2131165265; - - // aapt resource value: 0x7F070052 - public const int abc_text_select_handle_middle_mtrl_dark = 2131165266; - - // aapt resource value: 0x7F070053 - public const int abc_text_select_handle_middle_mtrl_light = 2131165267; - - // aapt resource value: 0x7F070054 - public const int abc_text_select_handle_right_mtrl_dark = 2131165268; - - // aapt resource value: 0x7F070055 - public const int abc_text_select_handle_right_mtrl_light = 2131165269; - - // aapt resource value: 0x7F07005B - public const int abc_vector_test = 2131165275; - - // aapt resource value: 0x7F07005C - public const int avd_hide_password = 2131165276; - - // aapt resource value: 0x7F07005D - public const int avd_show_password = 2131165277; - - // aapt resource value: 0x7F07005E - public const int btn_checkbox_checked_mtrl = 2131165278; - - // aapt resource value: 0x7F07005F - public const int btn_checkbox_checked_to_unchecked_mtrl_animation = 2131165279; - - // aapt resource value: 0x7F070060 - public const int btn_checkbox_unchecked_mtrl = 2131165280; - - // aapt resource value: 0x7F070061 - public const int btn_checkbox_unchecked_to_checked_mtrl_animation = 2131165281; - - // aapt resource value: 0x7F070062 - public const int btn_radio_off_mtrl = 2131165282; - - // aapt resource value: 0x7F070063 - public const int btn_radio_off_to_on_mtrl_animation = 2131165283; - - // aapt resource value: 0x7F070064 - public const int btn_radio_on_mtrl = 2131165284; - - // aapt resource value: 0x7F070065 - public const int btn_radio_on_to_off_mtrl_animation = 2131165285; - - // aapt resource value: 0x7F070066 - public const int design_bottom_navigation_item_background = 2131165286; - - // aapt resource value: 0x7F070067 - public const int design_fab_background = 2131165287; - - // aapt resource value: 0x7F070068 - public const int design_ic_visibility = 2131165288; - - // aapt resource value: 0x7F070069 - public const int design_ic_visibility_off = 2131165289; - - // aapt resource value: 0x7F07006A - public const int design_password_eye = 2131165290; - - // aapt resource value: 0x7F07006B - public const int design_snackbar_background = 2131165291; - - // aapt resource value: 0x7F070072 - public const int Icon = 2131165298; - - // aapt resource value: 0x7F07006C - public const int ic_clock_black_24dp = 2131165292; - - // aapt resource value: 0x7F07006D - public const int ic_keyboard_black_24dp = 2131165293; - - // aapt resource value: 0x7F07006E - public const int ic_mtrl_checked_circle = 2131165294; - - // aapt resource value: 0x7F07006F - public const int ic_mtrl_chip_checked_black = 2131165295; - - // aapt resource value: 0x7F070070 - public const int ic_mtrl_chip_checked_circle = 2131165296; - - // aapt resource value: 0x7F070071 - public const int ic_mtrl_chip_close_circle = 2131165297; - - // aapt resource value: 0x7F070073 - public const int material_cursor_drawable = 2131165299; - - // aapt resource value: 0x7F070074 - public const int material_ic_calendar_black_24dp = 2131165300; - - // aapt resource value: 0x7F070075 - public const int material_ic_clear_black_24dp = 2131165301; - - // aapt resource value: 0x7F070076 - public const int material_ic_edit_black_24dp = 2131165302; - - // aapt resource value: 0x7F070077 - public const int material_ic_keyboard_arrow_left_black_24dp = 2131165303; - - // aapt resource value: 0x7F070078 - public const int material_ic_keyboard_arrow_next_black_24dp = 2131165304; - - // aapt resource value: 0x7F070079 - public const int material_ic_keyboard_arrow_previous_black_24dp = 2131165305; - - // aapt resource value: 0x7F07007A - public const int material_ic_keyboard_arrow_right_black_24dp = 2131165306; - - // aapt resource value: 0x7F07007B - public const int material_ic_menu_arrow_down_black_24dp = 2131165307; - - // aapt resource value: 0x7F07007C - public const int material_ic_menu_arrow_up_black_24dp = 2131165308; - - // aapt resource value: 0x7F07007D - public const int mtrl_dialog_background = 2131165309; - - // aapt resource value: 0x7F07007E - public const int mtrl_dropdown_arrow = 2131165310; - - // aapt resource value: 0x7F07007F - public const int mtrl_ic_arrow_drop_down = 2131165311; - - // aapt resource value: 0x7F070080 - public const int mtrl_ic_arrow_drop_up = 2131165312; - - // aapt resource value: 0x7F070081 - public const int mtrl_ic_cancel = 2131165313; - - // aapt resource value: 0x7F070082 - public const int mtrl_ic_error = 2131165314; - - // aapt resource value: 0x7F070083 - public const int mtrl_popupmenu_background = 2131165315; - - // aapt resource value: 0x7F070084 - public const int mtrl_popupmenu_background_dark = 2131165316; - - // aapt resource value: 0x7F070085 - public const int mtrl_tabs_default_indicator = 2131165317; - - // aapt resource value: 0x7F070086 - public const int navigation_empty_icon = 2131165318; - - // aapt resource value: 0x7F070087 - public const int notification_action_background = 2131165319; - - // aapt resource value: 0x7F070088 - public const int notification_bg = 2131165320; - - // aapt resource value: 0x7F070089 - public const int notification_bg_low = 2131165321; - - // aapt resource value: 0x7F07008A - public const int notification_bg_low_normal = 2131165322; - - // aapt resource value: 0x7F07008B - public const int notification_bg_low_pressed = 2131165323; - - // aapt resource value: 0x7F07008C - public const int notification_bg_normal = 2131165324; - - // aapt resource value: 0x7F07008D - public const int notification_bg_normal_pressed = 2131165325; - - // aapt resource value: 0x7F07008E - public const int notification_icon_background = 2131165326; - - // aapt resource value: 0x7F07008F - public const int notification_template_icon_bg = 2131165327; - - // aapt resource value: 0x7F070090 - public const int notification_template_icon_low_bg = 2131165328; - - // aapt resource value: 0x7F070091 - public const int notification_tile_bg = 2131165329; - - // aapt resource value: 0x7F070092 - public const int notify_panel_notification_icon_bg = 2131165330; - - // aapt resource value: 0x7F070093 - public const int test_custom_background = 2131165331; - - // aapt resource value: 0x7F070094 - public const int tooltip_frame_dark = 2131165332; - - // aapt resource value: 0x7F070095 - public const int tooltip_frame_light = 2131165333; - - static Drawable() - { - global::Android.Runtime.ResourceIdManager.UpdateIdValues(); - } - - private Drawable() - { - } - } - - public partial class Id - { - - // aapt resource value: 0x7F08000E - public const int accelerate = 2131230734; - - // aapt resource value: 0x7F08000F - public const int accessibility_action_clickable_span = 2131230735; - - // aapt resource value: 0x7F080010 - public const int accessibility_custom_action_0 = 2131230736; - - // aapt resource value: 0x7F080011 - public const int accessibility_custom_action_1 = 2131230737; - - // aapt resource value: 0x7F080012 - public const int accessibility_custom_action_10 = 2131230738; - - // aapt resource value: 0x7F080013 - public const int accessibility_custom_action_11 = 2131230739; - - // aapt resource value: 0x7F080014 - public const int accessibility_custom_action_12 = 2131230740; - - // aapt resource value: 0x7F080015 - public const int accessibility_custom_action_13 = 2131230741; - - // aapt resource value: 0x7F080016 - public const int accessibility_custom_action_14 = 2131230742; - - // aapt resource value: 0x7F080017 - public const int accessibility_custom_action_15 = 2131230743; - - // aapt resource value: 0x7F080018 - public const int accessibility_custom_action_16 = 2131230744; - - // aapt resource value: 0x7F080019 - public const int accessibility_custom_action_17 = 2131230745; - - // aapt resource value: 0x7F08001A - public const int accessibility_custom_action_18 = 2131230746; - - // aapt resource value: 0x7F08001B - public const int accessibility_custom_action_19 = 2131230747; - - // aapt resource value: 0x7F08001C - public const int accessibility_custom_action_2 = 2131230748; - - // aapt resource value: 0x7F08001D - public const int accessibility_custom_action_20 = 2131230749; - - // aapt resource value: 0x7F08001E - public const int accessibility_custom_action_21 = 2131230750; - - // aapt resource value: 0x7F08001F - public const int accessibility_custom_action_22 = 2131230751; - - // aapt resource value: 0x7F080020 - public const int accessibility_custom_action_23 = 2131230752; - - // aapt resource value: 0x7F080021 - public const int accessibility_custom_action_24 = 2131230753; - - // aapt resource value: 0x7F080022 - public const int accessibility_custom_action_25 = 2131230754; - - // aapt resource value: 0x7F080023 - public const int accessibility_custom_action_26 = 2131230755; - - // aapt resource value: 0x7F080024 - public const int accessibility_custom_action_27 = 2131230756; - - // aapt resource value: 0x7F080025 - public const int accessibility_custom_action_28 = 2131230757; - - // aapt resource value: 0x7F080026 - public const int accessibility_custom_action_29 = 2131230758; - - // aapt resource value: 0x7F080027 - public const int accessibility_custom_action_3 = 2131230759; - - // aapt resource value: 0x7F080028 - public const int accessibility_custom_action_30 = 2131230760; - - // aapt resource value: 0x7F080029 - public const int accessibility_custom_action_31 = 2131230761; - - // aapt resource value: 0x7F08002A - public const int accessibility_custom_action_4 = 2131230762; - - // aapt resource value: 0x7F08002B - public const int accessibility_custom_action_5 = 2131230763; - - // aapt resource value: 0x7F08002C - public const int accessibility_custom_action_6 = 2131230764; - - // aapt resource value: 0x7F08002D - public const int accessibility_custom_action_7 = 2131230765; - - // aapt resource value: 0x7F08002E - public const int accessibility_custom_action_8 = 2131230766; - - // aapt resource value: 0x7F08002F - public const int accessibility_custom_action_9 = 2131230767; - - // aapt resource value: 0x7F080030 - public const int action0 = 2131230768; - - // aapt resource value: 0x7F080042 - public const int actions = 2131230786; - - // aapt resource value: 0x7F080031 - public const int action_bar = 2131230769; - - // aapt resource value: 0x7F080032 - public const int action_bar_activity_content = 2131230770; - - // aapt resource value: 0x7F080033 - public const int action_bar_container = 2131230771; - - // aapt resource value: 0x7F080034 - public const int action_bar_root = 2131230772; - - // aapt resource value: 0x7F080035 - public const int action_bar_spinner = 2131230773; - - // aapt resource value: 0x7F080036 - public const int action_bar_subtitle = 2131230774; - - // aapt resource value: 0x7F080037 - public const int action_bar_title = 2131230775; - - // aapt resource value: 0x7F080038 - public const int action_container = 2131230776; - - // aapt resource value: 0x7F080039 - public const int action_context_bar = 2131230777; - - // aapt resource value: 0x7F08003A - public const int action_divider = 2131230778; - - // aapt resource value: 0x7F08003B - public const int action_image = 2131230779; - - // aapt resource value: 0x7F08003C - public const int action_menu_divider = 2131230780; - - // aapt resource value: 0x7F08003D - public const int action_menu_presenter = 2131230781; - - // aapt resource value: 0x7F08003E - public const int action_mode_bar = 2131230782; - - // aapt resource value: 0x7F08003F - public const int action_mode_bar_stub = 2131230783; - - // aapt resource value: 0x7F080040 - public const int action_mode_close_button = 2131230784; - - // aapt resource value: 0x7F080041 - public const int action_text = 2131230785; - - // aapt resource value: 0x7F080043 - public const int activity_chooser_view_content = 2131230787; - - // aapt resource value: 0x7F080044 - public const int add = 2131230788; - - // aapt resource value: 0x7F080045 - public const int alertTitle = 2131230789; - - // aapt resource value: 0x7F080046 - public const int aligned = 2131230790; - - // aapt resource value: 0x7F080047 - public const int all = 2131230791; - - // aapt resource value: 0x7F080000 - public const int ALT = 2131230720; - - // aapt resource value: 0x7F080048 - public const int always = 2131230792; - - // aapt resource value: 0x7F080049 - public const int animateToEnd = 2131230793; - - // aapt resource value: 0x7F08004A - public const int animateToStart = 2131230794; - - // aapt resource value: 0x7F08004B - public const int asConfigured = 2131230795; - - // aapt resource value: 0x7F08004C - public const int async = 2131230796; - - // aapt resource value: 0x7F08004D - public const int auto = 2131230797; - - // aapt resource value: 0x7F08004E - public const int autoComplete = 2131230798; - - // aapt resource value: 0x7F08004F - public const int autoCompleteToEnd = 2131230799; - - // aapt resource value: 0x7F080050 - public const int autoCompleteToStart = 2131230800; - - // aapt resource value: 0x7F080051 - public const int barrier = 2131230801; - - // aapt resource value: 0x7F080052 - public const int baseline = 2131230802; - - // aapt resource value: 0x7F080054 - public const int beginning = 2131230804; - - // aapt resource value: 0x7F080053 - public const int beginOnFirstDraw = 2131230803; - - // aapt resource value: 0x7F080055 - public const int blocking = 2131230805; - - // aapt resource value: 0x7F080056 - public const int bottom = 2131230806; - - // aapt resource value: 0x7F080001 - public const int BOTTOM_END = 2131230721; - - // aapt resource value: 0x7F080002 - public const int BOTTOM_START = 2131230722; - - // aapt resource value: 0x7F080057 - public const int bounce = 2131230807; - - // aapt resource value: 0x7F080058 - public const int buttonPanel = 2131230808; - - // aapt resource value: 0x7F080059 - public const int cache_measures = 2131230809; - - // aapt resource value: 0x7F08005A - public const int cancel_action = 2131230810; - - // aapt resource value: 0x7F08005B - public const int cancel_button = 2131230811; - - // aapt resource value: 0x7F08005C - public const int center = 2131230812; - - // aapt resource value: 0x7F08005D - public const int center_horizontal = 2131230813; - - // aapt resource value: 0x7F08005E - public const int center_vertical = 2131230814; - - // aapt resource value: 0x7F08005F - public const int chain = 2131230815; - - // aapt resource value: 0x7F080060 - public const int chains = 2131230816; - - // aapt resource value: 0x7F080061 - public const int checkbox = 2131230817; - - // aapt resource value: 0x7F080062 - public const int @checked = 2131230818; - - // aapt resource value: 0x7F080063 - public const int chip = 2131230819; - - // aapt resource value: 0x7F080064 - public const int chip1 = 2131230820; - - // aapt resource value: 0x7F080065 - public const int chip2 = 2131230821; - - // aapt resource value: 0x7F080066 - public const int chip3 = 2131230822; - - // aapt resource value: 0x7F080067 - public const int chip_group = 2131230823; - - // aapt resource value: 0x7F080068 - public const int chronometer = 2131230824; - - // aapt resource value: 0x7F080069 - public const int circle_center = 2131230825; - - // aapt resource value: 0x7F08006A - public const int clear_text = 2131230826; - - // aapt resource value: 0x7F08006B - public const int clip_horizontal = 2131230827; - - // aapt resource value: 0x7F08006C - public const int clip_vertical = 2131230828; - - // aapt resource value: 0x7F08006D - public const int clockwise = 2131230829; - - // aapt resource value: 0x7F08006E - public const int collapseActionView = 2131230830; - - // aapt resource value: 0x7F08006F - public const int confirm_button = 2131230831; - - // aapt resource value: 0x7F080070 - public const int container = 2131230832; - - // aapt resource value: 0x7F080071 - public const int content = 2131230833; - - // aapt resource value: 0x7F080072 - public const int contentPanel = 2131230834; - - // aapt resource value: 0x7F080073 - public const int contiguous = 2131230835; - - // aapt resource value: 0x7F080074 - public const int coordinator = 2131230836; - - // aapt resource value: 0x7F080075 - public const int cos = 2131230837; - - // aapt resource value: 0x7F080076 - public const int counterclockwise = 2131230838; - - // aapt resource value: 0x7F080003 - public const int CTRL = 2131230723; - - // aapt resource value: 0x7F080077 - public const int custom = 2131230839; - - // aapt resource value: 0x7F080078 - public const int customPanel = 2131230840; - - // aapt resource value: 0x7F080079 - public const int cut = 2131230841; - - // aapt resource value: 0x7F08007A - public const int date_picker_actions = 2131230842; - - // aapt resource value: 0x7F08007B - public const int decelerate = 2131230843; - - // aapt resource value: 0x7F08007C - public const int decelerateAndComplete = 2131230844; - - // aapt resource value: 0x7F08007D - public const int decor_content_parent = 2131230845; - - // aapt resource value: 0x7F08007E - public const int default_activity_button = 2131230846; - - // aapt resource value: 0x7F08007F - public const int deltaRelative = 2131230847; - - // aapt resource value: 0x7F080080 - public const int dependency_ordering = 2131230848; - - // aapt resource value: 0x7F080081 - public const int design_bottom_sheet = 2131230849; - - // aapt resource value: 0x7F080082 - public const int design_menu_item_action_area = 2131230850; - - // aapt resource value: 0x7F080083 - public const int design_menu_item_action_area_stub = 2131230851; - - // aapt resource value: 0x7F080084 - public const int design_menu_item_text = 2131230852; - - // aapt resource value: 0x7F080085 - public const int design_navigation_view = 2131230853; - - // aapt resource value: 0x7F080086 - public const int dialog_button = 2131230854; - - // aapt resource value: 0x7F080087 - public const int dimensions = 2131230855; - - // aapt resource value: 0x7F080088 - public const int direct = 2131230856; - - // aapt resource value: 0x7F080089 - public const int disableHome = 2131230857; - - // aapt resource value: 0x7F08008A - public const int disablePostScroll = 2131230858; - - // aapt resource value: 0x7F08008B - public const int disableScroll = 2131230859; - - // aapt resource value: 0x7F08008C - public const int disjoint = 2131230860; - - // aapt resource value: 0x7F08008D - public const int dragDown = 2131230861; - - // aapt resource value: 0x7F08008E - public const int dragEnd = 2131230862; - - // aapt resource value: 0x7F08008F - public const int dragLeft = 2131230863; - - // aapt resource value: 0x7F080090 - public const int dragRight = 2131230864; - - // aapt resource value: 0x7F080091 - public const int dragStart = 2131230865; - - // aapt resource value: 0x7F080092 - public const int dragUp = 2131230866; - - // aapt resource value: 0x7F080093 - public const int dropdown_menu = 2131230867; - - // aapt resource value: 0x7F080094 - public const int easeIn = 2131230868; - - // aapt resource value: 0x7F080095 - public const int easeInOut = 2131230869; - - // aapt resource value: 0x7F080096 - public const int easeOut = 2131230870; - - // aapt resource value: 0x7F080097 - public const int edit_query = 2131230871; - - // aapt resource value: 0x7F080098 - public const int elastic = 2131230872; - - // aapt resource value: 0x7F080099 - public const int end = 2131230873; - - // aapt resource value: 0x7F08009A - public const int endToStart = 2131230874; - - // aapt resource value: 0x7F08009B - public const int end_padder = 2131230875; - - // aapt resource value: 0x7F08009C - public const int enterAlways = 2131230876; - - // aapt resource value: 0x7F08009D - public const int enterAlwaysCollapsed = 2131230877; - - // aapt resource value: 0x7F08009E - public const int exitUntilCollapsed = 2131230878; - - // aapt resource value: 0x7F0800A0 - public const int expanded_menu = 2131230880; - - // aapt resource value: 0x7F08009F - public const int expand_activities_button = 2131230879; - - // aapt resource value: 0x7F0800A1 - public const int fade = 2131230881; - - // aapt resource value: 0x7F0800A2 - public const int fill = 2131230882; - - // aapt resource value: 0x7F0800A5 - public const int filled = 2131230885; - - // aapt resource value: 0x7F0800A3 - public const int fill_horizontal = 2131230883; - - // aapt resource value: 0x7F0800A4 - public const int fill_vertical = 2131230884; - - // aapt resource value: 0x7F0800A6 - public const int fitToContents = 2131230886; - - // aapt resource value: 0x7F0800A7 - public const int @fixed = 2131230887; - - // aapt resource value: 0x7F0800A8 - public const int flip = 2131230888; - - // aapt resource value: 0x7F0800A9 - public const int floating = 2131230889; - - // aapt resource value: 0x7F0800AA - public const int forever = 2131230890; - - // aapt resource value: 0x7F0800AB - public const int fragment_container_view_tag = 2131230891; - - // aapt resource value: 0x7F080004 - public const int FUNCTION = 2131230724; - - // aapt resource value: 0x7F0800AC - public const int ghost_view = 2131230892; - - // aapt resource value: 0x7F0800AD - public const int ghost_view_holder = 2131230893; - - // aapt resource value: 0x7F0800AE - public const int gone = 2131230894; - - // aapt resource value: 0x7F0800AF - public const int graph = 2131230895; - - // aapt resource value: 0x7F0800B0 - public const int graph_wrap = 2131230896; - - // aapt resource value: 0x7F0800B2 - public const int grouping = 2131230898; - - // aapt resource value: 0x7F0800B3 - public const int groups = 2131230899; - - // aapt resource value: 0x7F0800B1 - public const int group_divider = 2131230897; - - // aapt resource value: 0x7F0800B4 - public const int guideline = 2131230900; - - // aapt resource value: 0x7F0800B5 - public const int header_title = 2131230901; - - // aapt resource value: 0x7F0800B6 - public const int hideable = 2131230902; - - // aapt resource value: 0x7F0800B7 - public const int home = 2131230903; - - // aapt resource value: 0x7F0800B8 - public const int homeAsUp = 2131230904; - - // aapt resource value: 0x7F0800B9 - public const int honorRequest = 2131230905; - - // aapt resource value: 0x7F0800BA - public const int icon = 2131230906; - - // aapt resource value: 0x7F0800BB - public const int icon_group = 2131230907; - - // aapt resource value: 0x7F0800BC - public const int ifRoom = 2131230908; - - // aapt resource value: 0x7F0800BD - public const int ignore = 2131230909; - - // aapt resource value: 0x7F0800BE - public const int ignoreRequest = 2131230910; - - // aapt resource value: 0x7F0800BF - public const int image = 2131230911; - - // aapt resource value: 0x7F0800C0 - public const int info = 2131230912; - - // aapt resource value: 0x7F0800C1 - public const int invisible = 2131230913; - - // aapt resource value: 0x7F0800C2 - public const int inward = 2131230914; - - // aapt resource value: 0x7F0800C3 - public const int italic = 2131230915; - - // aapt resource value: 0x7F0800C4 - public const int item_touch_helper_previous_elevation = 2131230916; - - // aapt resource value: 0x7F0800C5 - public const int jumpToEnd = 2131230917; - - // aapt resource value: 0x7F0800C6 - public const int jumpToStart = 2131230918; - - // aapt resource value: 0x7F0800C8 - public const int labeled = 2131230920; - - // aapt resource value: 0x7F0800C7 - public const int labelGroup = 2131230919; - - // aapt resource value: 0x7F0800C9 - public const int largeLabel = 2131230921; - - // aapt resource value: 0x7F0800CA - public const int layout = 2131230922; - - // aapt resource value: 0x7F0800CB - public const int left = 2131230923; - - // aapt resource value: 0x7F0800CC - public const int leftToRight = 2131230924; - - // aapt resource value: 0x7F0800CD - public const int line1 = 2131230925; - - // aapt resource value: 0x7F0800CE - public const int line3 = 2131230926; - - // aapt resource value: 0x7F0800CF - public const int linear = 2131230927; - - // aapt resource value: 0x7F0800D0 - public const int listMode = 2131230928; - - // aapt resource value: 0x7F0800D1 - public const int list_item = 2131230929; - - // aapt resource value: 0x7F0800D2 - public const int masked = 2131230930; - - // aapt resource value: 0x7F0800D3 - public const int material_clock_display = 2131230931; - - // aapt resource value: 0x7F0800D4 - public const int material_clock_face = 2131230932; - - // aapt resource value: 0x7F0800D5 - public const int material_clock_hand = 2131230933; - - // aapt resource value: 0x7F0800D6 - public const int material_clock_period_am_button = 2131230934; - - // aapt resource value: 0x7F0800D7 - public const int material_clock_period_pm_button = 2131230935; - - // aapt resource value: 0x7F0800D8 - public const int material_clock_period_toggle = 2131230936; - - // aapt resource value: 0x7F0800D9 - public const int material_hour_text_input = 2131230937; - - // aapt resource value: 0x7F0800DA - public const int material_hour_tv = 2131230938; - - // aapt resource value: 0x7F0800DB - public const int material_label = 2131230939; - - // aapt resource value: 0x7F0800DC - public const int material_minute_text_input = 2131230940; - - // aapt resource value: 0x7F0800DD - public const int material_minute_tv = 2131230941; - - // aapt resource value: 0x7F0800DE - public const int material_textinput_timepicker = 2131230942; - - // aapt resource value: 0x7F0800DF - public const int material_timepicker_cancel_button = 2131230943; - - // aapt resource value: 0x7F0800E0 - public const int material_timepicker_container = 2131230944; - - // aapt resource value: 0x7F0800E1 - public const int material_timepicker_edit_text = 2131230945; - - // aapt resource value: 0x7F0800E2 - public const int material_timepicker_mode_button = 2131230946; - - // aapt resource value: 0x7F0800E3 - public const int material_timepicker_ok_button = 2131230947; - - // aapt resource value: 0x7F0800E4 - public const int material_timepicker_view = 2131230948; - - // aapt resource value: 0x7F0800E5 - public const int material_value_index = 2131230949; - - // aapt resource value: 0x7F0800E6 - public const int media_actions = 2131230950; - - // aapt resource value: 0x7F0800E7 - public const int media_controller_compat_view_tag = 2131230951; - - // aapt resource value: 0x7F0800E8 - public const int message = 2131230952; - - // aapt resource value: 0x7F080005 - public const int META = 2131230725; - - // aapt resource value: 0x7F0800E9 - public const int middle = 2131230953; - - // aapt resource value: 0x7F0800EA - public const int mini = 2131230954; - - // aapt resource value: 0x7F0800EB - public const int month_grid = 2131230955; - - // aapt resource value: 0x7F0800EC - public const int month_navigation_bar = 2131230956; - - // aapt resource value: 0x7F0800ED - public const int month_navigation_fragment_toggle = 2131230957; - - // aapt resource value: 0x7F0800EE - public const int month_navigation_next = 2131230958; - - // aapt resource value: 0x7F0800EF - public const int month_navigation_previous = 2131230959; - - // aapt resource value: 0x7F0800F0 - public const int month_title = 2131230960; - - // aapt resource value: 0x7F0800F1 - public const int motion_base = 2131230961; - - // aapt resource value: 0x7F0800F2 - public const int mtrl_anchor_parent = 2131230962; - - // aapt resource value: 0x7F0800F4 - public const int mtrl_calendar_days_of_week = 2131230964; - - // aapt resource value: 0x7F0800F3 - public const int mtrl_calendar_day_selector_frame = 2131230963; - - // aapt resource value: 0x7F0800F5 - public const int mtrl_calendar_frame = 2131230965; - - // aapt resource value: 0x7F0800F6 - public const int mtrl_calendar_main_pane = 2131230966; - - // aapt resource value: 0x7F0800F7 - public const int mtrl_calendar_months = 2131230967; - - // aapt resource value: 0x7F0800F8 - public const int mtrl_calendar_selection_frame = 2131230968; - - // aapt resource value: 0x7F0800F9 - public const int mtrl_calendar_text_input_frame = 2131230969; - - // aapt resource value: 0x7F0800FA - public const int mtrl_calendar_year_selector_frame = 2131230970; - - // aapt resource value: 0x7F0800FB - public const int mtrl_card_checked_layer_id = 2131230971; - - // aapt resource value: 0x7F0800FC - public const int mtrl_child_content_container = 2131230972; - - // aapt resource value: 0x7F0800FD - public const int mtrl_internal_children_alpha_tag = 2131230973; - - // aapt resource value: 0x7F0800FE - public const int mtrl_motion_snapshot_view = 2131230974; - - // aapt resource value: 0x7F0800FF - public const int mtrl_picker_fullscreen = 2131230975; - - // aapt resource value: 0x7F080100 - public const int mtrl_picker_header = 2131230976; - - // aapt resource value: 0x7F080101 - public const int mtrl_picker_header_selection_text = 2131230977; - - // aapt resource value: 0x7F080102 - public const int mtrl_picker_header_title_and_selection = 2131230978; - - // aapt resource value: 0x7F080103 - public const int mtrl_picker_header_toggle = 2131230979; - - // aapt resource value: 0x7F080104 - public const int mtrl_picker_text_input_date = 2131230980; - - // aapt resource value: 0x7F080105 - public const int mtrl_picker_text_input_range_end = 2131230981; - - // aapt resource value: 0x7F080106 - public const int mtrl_picker_text_input_range_start = 2131230982; - - // aapt resource value: 0x7F080107 - public const int mtrl_picker_title_text = 2131230983; - - // aapt resource value: 0x7F080108 - public const int mtrl_view_tag_bottom_padding = 2131230984; - - // aapt resource value: 0x7F080109 - public const int multiply = 2131230985; - - // aapt resource value: 0x7F08010A - public const int navigation_header_container = 2131230986; - - // aapt resource value: 0x7F08010B - public const int never = 2131230987; - - // aapt resource value: 0x7F08010D - public const int none = 2131230989; - - // aapt resource value: 0x7F08010E - public const int normal = 2131230990; - - // aapt resource value: 0x7F08010C - public const int noScroll = 2131230988; - - // aapt resource value: 0x7F08010F - public const int notification_background = 2131230991; - - // aapt resource value: 0x7F080110 - public const int notification_main_column = 2131230992; - - // aapt resource value: 0x7F080111 - public const int notification_main_column_container = 2131230993; - - // aapt resource value: 0x7F080006 - public const int NO_DEBUG = 2131230726; - - // aapt resource value: 0x7F080112 - public const int off = 2131230994; - - // aapt resource value: 0x7F080113 - public const int on = 2131230995; - - // aapt resource value: 0x7F080114 - public const int outline = 2131230996; - - // aapt resource value: 0x7F080115 - public const int outward = 2131230997; - - // aapt resource value: 0x7F080116 - public const int packed = 2131230998; - - // aapt resource value: 0x7F080117 - public const int parallax = 2131230999; - - // aapt resource value: 0x7F080118 - public const int parent = 2131231000; - - // aapt resource value: 0x7F080119 - public const int parentPanel = 2131231001; - - // aapt resource value: 0x7F08011A - public const int parentRelative = 2131231002; - - // aapt resource value: 0x7F08011B - public const int parent_matrix = 2131231003; - - // aapt resource value: 0x7F08011C - public const int password_toggle = 2131231004; - - // aapt resource value: 0x7F08011D - public const int path = 2131231005; - - // aapt resource value: 0x7F08011E - public const int pathRelative = 2131231006; - - // aapt resource value: 0x7F08011F - public const int peekHeight = 2131231007; - - // aapt resource value: 0x7F080120 - public const int percent = 2131231008; - - // aapt resource value: 0x7F080121 - public const int pin = 2131231009; - - // aapt resource value: 0x7F080122 - public const int position = 2131231010; - - // aapt resource value: 0x7F080123 - public const int postLayout = 2131231011; - - // aapt resource value: 0x7F080124 - public const int progress_circular = 2131231012; - - // aapt resource value: 0x7F080125 - public const int progress_horizontal = 2131231013; - - // aapt resource value: 0x7F080126 - public const int radio = 2131231014; - - // aapt resource value: 0x7F080127 - public const int ratio = 2131231015; - - // aapt resource value: 0x7F080128 - public const int rectangles = 2131231016; - - // aapt resource value: 0x7F080129 - public const int reverseSawtooth = 2131231017; - - // aapt resource value: 0x7F08012A - public const int right = 2131231018; - - // aapt resource value: 0x7F08012B - public const int rightToLeft = 2131231019; - - // aapt resource value: 0x7F08012C - public const int right_icon = 2131231020; - - // aapt resource value: 0x7F08012D - public const int right_side = 2131231021; - - // aapt resource value: 0x7F08012E - public const int rounded = 2131231022; - - // aapt resource value: 0x7F08012F - public const int row_index_key = 2131231023; - - // aapt resource value: 0x7F080130 - public const int save_non_transition_alpha = 2131231024; - - // aapt resource value: 0x7F080131 - public const int save_overlay_view = 2131231025; - - // aapt resource value: 0x7F080132 - public const int sawtooth = 2131231026; - - // aapt resource value: 0x7F080133 - public const int scale = 2131231027; - - // aapt resource value: 0x7F080134 - public const int screen = 2131231028; - - // aapt resource value: 0x7F080135 - public const int scroll = 2131231029; - - // aapt resource value: 0x7F080139 - public const int scrollable = 2131231033; - - // aapt resource value: 0x7F080136 - public const int scrollIndicatorDown = 2131231030; - - // aapt resource value: 0x7F080137 - public const int scrollIndicatorUp = 2131231031; - - // aapt resource value: 0x7F080138 - public const int scrollView = 2131231032; - - // aapt resource value: 0x7F08013A - public const int search_badge = 2131231034; - - // aapt resource value: 0x7F08013B - public const int search_bar = 2131231035; - - // aapt resource value: 0x7F08013C - public const int search_button = 2131231036; - - // aapt resource value: 0x7F08013D - public const int search_close_btn = 2131231037; - - // aapt resource value: 0x7F08013E - public const int search_edit_frame = 2131231038; - - // aapt resource value: 0x7F08013F - public const int search_go_btn = 2131231039; - - // aapt resource value: 0x7F080140 - public const int search_mag_icon = 2131231040; - - // aapt resource value: 0x7F080141 - public const int search_plate = 2131231041; - - // aapt resource value: 0x7F080142 - public const int search_src_text = 2131231042; - - // aapt resource value: 0x7F080143 - public const int search_voice_btn = 2131231043; - - // aapt resource value: 0x7F080145 - public const int selected = 2131231045; - - // aapt resource value: 0x7F080146 - public const int selection_type = 2131231046; - - // aapt resource value: 0x7F080144 - public const int select_dialog_listview = 2131231044; - - // aapt resource value: 0x7F080007 - public const int SHIFT = 2131230727; - - // aapt resource value: 0x7F080147 - public const int shortcut = 2131231047; - - // aapt resource value: 0x7F080148 - public const int showCustom = 2131231048; - - // aapt resource value: 0x7F080149 - public const int showHome = 2131231049; - - // aapt resource value: 0x7F08014A - public const int showTitle = 2131231050; - - // aapt resource value: 0x7F080008 - public const int SHOW_ALL = 2131230728; - - // aapt resource value: 0x7F080009 - public const int SHOW_PATH = 2131230729; - - // aapt resource value: 0x7F08000A - public const int SHOW_PROGRESS = 2131230730; - - // aapt resource value: 0x7F08014B - public const int sin = 2131231051; - - // aapt resource value: 0x7F08014C - public const int skipCollapsed = 2131231052; - - // aapt resource value: 0x7F08014D - public const int slide = 2131231053; - - // aapt resource value: 0x7F08014E - public const int smallLabel = 2131231054; - - // aapt resource value: 0x7F08014F - public const int snackbar_action = 2131231055; - - // aapt resource value: 0x7F080150 - public const int snackbar_text = 2131231056; - - // aapt resource value: 0x7F080151 - public const int snap = 2131231057; - - // aapt resource value: 0x7F080152 - public const int snapMargins = 2131231058; - - // aapt resource value: 0x7F080153 - public const int spacer = 2131231059; - - // aapt resource value: 0x7F080154 - public const int special_effects_controller_view_tag = 2131231060; - - // aapt resource value: 0x7F080155 - public const int spline = 2131231061; - - // aapt resource value: 0x7F080156 - public const int split_action_bar = 2131231062; - - // aapt resource value: 0x7F080157 - public const int spread = 2131231063; - - // aapt resource value: 0x7F080158 - public const int spread_inside = 2131231064; - - // aapt resource value: 0x7F080159 - public const int square = 2131231065; - - // aapt resource value: 0x7F08015A - public const int src_atop = 2131231066; - - // aapt resource value: 0x7F08015B - public const int src_in = 2131231067; - - // aapt resource value: 0x7F08015C - public const int src_over = 2131231068; - - // aapt resource value: 0x7F08015D - public const int standard = 2131231069; - - // aapt resource value: 0x7F08015E - public const int start = 2131231070; - - // aapt resource value: 0x7F08015F - public const int startHorizontal = 2131231071; - - // aapt resource value: 0x7F080160 - public const int startToEnd = 2131231072; - - // aapt resource value: 0x7F080161 - public const int startVertical = 2131231073; - - // aapt resource value: 0x7F080162 - public const int staticLayout = 2131231074; - - // aapt resource value: 0x7F080163 - public const int staticPostLayout = 2131231075; - - // aapt resource value: 0x7F080164 - public const int status_bar_latest_event_content = 2131231076; - - // aapt resource value: 0x7F080165 - public const int stop = 2131231077; - - // aapt resource value: 0x7F080166 - public const int stretch = 2131231078; - - // aapt resource value: 0x7F080167 - public const int submenuarrow = 2131231079; - - // aapt resource value: 0x7F080168 - public const int submit_area = 2131231080; - - // aapt resource value: 0x7F08000B - public const int SYM = 2131230731; - - // aapt resource value: 0x7F080169 - public const int tabMode = 2131231081; - - // aapt resource value: 0x7F08016A - public const int tag_accessibility_actions = 2131231082; - - // aapt resource value: 0x7F08016B - public const int tag_accessibility_clickable_spans = 2131231083; - - // aapt resource value: 0x7F08016C - public const int tag_accessibility_heading = 2131231084; - - // aapt resource value: 0x7F08016D - public const int tag_accessibility_pane_title = 2131231085; - - // aapt resource value: 0x7F08016E - public const int tag_screen_reader_focusable = 2131231086; - - // aapt resource value: 0x7F08016F - public const int tag_transition_group = 2131231087; - - // aapt resource value: 0x7F080170 - public const int tag_unhandled_key_event_manager = 2131231088; - - // aapt resource value: 0x7F080171 - public const int tag_unhandled_key_listeners = 2131231089; - - // aapt resource value: 0x7F080172 - public const int test_checkbox_android_button_tint = 2131231090; - - // aapt resource value: 0x7F080173 - public const int test_checkbox_app_button_tint = 2131231091; - - // aapt resource value: 0x7F080174 - public const int test_radiobutton_android_button_tint = 2131231092; - - // aapt resource value: 0x7F080175 - public const int test_radiobutton_app_button_tint = 2131231093; - - // aapt resource value: 0x7F080176 - public const int text = 2131231094; - - // aapt resource value: 0x7F080177 - public const int text2 = 2131231095; - - // aapt resource value: 0x7F080178 - public const int textEnd = 2131231096; - - // aapt resource value: 0x7F080181 - public const int textinput_counter = 2131231105; - - // aapt resource value: 0x7F080182 - public const int textinput_error = 2131231106; - - // aapt resource value: 0x7F080183 - public const int textinput_helper_text = 2131231107; - - // aapt resource value: 0x7F080184 - public const int textinput_placeholder = 2131231108; - - // aapt resource value: 0x7F080185 - public const int textinput_prefix_text = 2131231109; - - // aapt resource value: 0x7F080186 - public const int textinput_suffix_text = 2131231110; - - // aapt resource value: 0x7F080179 - public const int textItem = 2131231097; - - // aapt resource value: 0x7F08017A - public const int textSpacerNoButtons = 2131231098; - - // aapt resource value: 0x7F08017B - public const int textSpacerNoTitle = 2131231099; - - // aapt resource value: 0x7F08017C - public const int textStart = 2131231100; - - // aapt resource value: 0x7F08017D - public const int textTop = 2131231101; - - // aapt resource value: 0x7F08017E - public const int text_input_end_icon = 2131231102; - - // aapt resource value: 0x7F08017F - public const int text_input_error_icon = 2131231103; - - // aapt resource value: 0x7F080180 - public const int text_input_start_icon = 2131231104; - - // aapt resource value: 0x7F080187 - public const int time = 2131231111; - - // aapt resource value: 0x7F080188 - public const int title = 2131231112; - - // aapt resource value: 0x7F080189 - public const int titleDividerNoCustom = 2131231113; - - // aapt resource value: 0x7F08018A - public const int title_template = 2131231114; - - // aapt resource value: 0x7F08018B - public const int toggle = 2131231115; - - // aapt resource value: 0x7F08018C - public const int top = 2131231116; - - // aapt resource value: 0x7F08018D - public const int topPanel = 2131231117; - - // aapt resource value: 0x7F08000C - public const int TOP_END = 2131230732; - - // aapt resource value: 0x7F08000D - public const int TOP_START = 2131230733; - - // aapt resource value: 0x7F08018E - public const int touch_outside = 2131231118; - - // aapt resource value: 0x7F08018F - public const int transitionToEnd = 2131231119; - - // aapt resource value: 0x7F080190 - public const int transitionToStart = 2131231120; - - // aapt resource value: 0x7F080191 - public const int transition_current_scene = 2131231121; - - // aapt resource value: 0x7F080192 - public const int transition_layout_save = 2131231122; - - // aapt resource value: 0x7F080193 - public const int transition_position = 2131231123; - - // aapt resource value: 0x7F080194 - public const int transition_scene_layoutid_cache = 2131231124; - - // aapt resource value: 0x7F080195 - public const int transition_transform = 2131231125; - - // aapt resource value: 0x7F080196 - public const int triangle = 2131231126; - - // aapt resource value: 0x7F080197 - public const int @unchecked = 2131231127; - - // aapt resource value: 0x7F080198 - public const int uniform = 2131231128; - - // aapt resource value: 0x7F080199 - public const int unlabeled = 2131231129; - - // aapt resource value: 0x7F08019A - public const int up = 2131231130; - - // aapt resource value: 0x7F08019B - public const int useLogo = 2131231131; - - // aapt resource value: 0x7F08019C - public const int view_offset_helper = 2131231132; - - // aapt resource value: 0x7F08019D - public const int view_tree_lifecycle_owner = 2131231133; - - // aapt resource value: 0x7F08019E - public const int view_tree_saved_state_registry_owner = 2131231134; - - // aapt resource value: 0x7F08019F - public const int view_tree_view_model_store_owner = 2131231135; - - // aapt resource value: 0x7F0801A0 - public const int visible = 2131231136; - - // aapt resource value: 0x7F0801A1 - public const int visible_removing_fragment_view_tag = 2131231137; - - // aapt resource value: 0x7F0801A3 - public const int withinBounds = 2131231139; - - // aapt resource value: 0x7F0801A2 - public const int withText = 2131231138; - - // aapt resource value: 0x7F0801A4 - public const int wrap = 2131231140; - - // aapt resource value: 0x7F0801A5 - public const int wrap_content = 2131231141; - - // aapt resource value: 0x7F0801A6 - public const int zero_corner_chip = 2131231142; - - static Id() - { - global::Android.Runtime.ResourceIdManager.UpdateIdValues(); - } - - private Id() - { - } - } - - public partial class Integer - { - - // aapt resource value: 0x7F090000 - public const int abc_config_activityDefaultDur = 2131296256; - - // aapt resource value: 0x7F090001 - public const int abc_config_activityShortDur = 2131296257; - - // aapt resource value: 0x7F090002 - public const int app_bar_elevation_anim_duration = 2131296258; - - // aapt resource value: 0x7F090003 - public const int bottom_sheet_slide_duration = 2131296259; - - // aapt resource value: 0x7F090004 - public const int cancel_button_image_alpha = 2131296260; - - // aapt resource value: 0x7F090005 - public const int config_tooltipAnimTime = 2131296261; - - // aapt resource value: 0x7F090006 - public const int design_snackbar_text_max_lines = 2131296262; - - // aapt resource value: 0x7F090007 - public const int design_tab_indicator_anim_duration_ms = 2131296263; - - // aapt resource value: 0x7F090008 - public const int hide_password_duration = 2131296264; - - // aapt resource value: 0x7F090009 - public const int mtrl_badge_max_character_count = 2131296265; - - // aapt resource value: 0x7F09000A - public const int mtrl_btn_anim_delay_ms = 2131296266; - - // aapt resource value: 0x7F09000B - public const int mtrl_btn_anim_duration_ms = 2131296267; - - // aapt resource value: 0x7F09000C - public const int mtrl_calendar_header_orientation = 2131296268; - - // aapt resource value: 0x7F09000D - public const int mtrl_calendar_selection_text_lines = 2131296269; - - // aapt resource value: 0x7F09000E - public const int mtrl_calendar_year_selector_span = 2131296270; - - // aapt resource value: 0x7F09000F - public const int mtrl_card_anim_delay_ms = 2131296271; - - // aapt resource value: 0x7F090010 - public const int mtrl_card_anim_duration_ms = 2131296272; - - // aapt resource value: 0x7F090011 - public const int mtrl_chip_anim_duration = 2131296273; - - // aapt resource value: 0x7F090012 - public const int mtrl_tab_indicator_anim_duration_ms = 2131296274; - - // aapt resource value: 0x7F090013 - public const int show_password_duration = 2131296275; - - // aapt resource value: 0x7F090014 - public const int status_bar_notification_info_maxnum = 2131296276; - - static Integer() - { - global::Android.Runtime.ResourceIdManager.UpdateIdValues(); - } - - private Integer() - { - } - } - - public partial class Interpolator - { - - // aapt resource value: 0x7F0A0000 - public const int btn_checkbox_checked_mtrl_animation_interpolator_0 = 2131361792; - - // aapt resource value: 0x7F0A0001 - public const int btn_checkbox_checked_mtrl_animation_interpolator_1 = 2131361793; - - // aapt resource value: 0x7F0A0002 - public const int btn_checkbox_unchecked_mtrl_animation_interpolator_0 = 2131361794; - - // aapt resource value: 0x7F0A0003 - public const int btn_checkbox_unchecked_mtrl_animation_interpolator_1 = 2131361795; - - // aapt resource value: 0x7F0A0004 - public const int btn_radio_to_off_mtrl_animation_interpolator_0 = 2131361796; - - // aapt resource value: 0x7F0A0005 - public const int btn_radio_to_on_mtrl_animation_interpolator_0 = 2131361797; - - // aapt resource value: 0x7F0A0006 - public const int fast_out_slow_in = 2131361798; - - // aapt resource value: 0x7F0A0007 - public const int mtrl_fast_out_linear_in = 2131361799; - - // aapt resource value: 0x7F0A0008 - public const int mtrl_fast_out_slow_in = 2131361800; - - // aapt resource value: 0x7F0A0009 - public const int mtrl_linear = 2131361801; - - // aapt resource value: 0x7F0A000A - public const int mtrl_linear_out_slow_in = 2131361802; - - static Interpolator() - { - global::Android.Runtime.ResourceIdManager.UpdateIdValues(); - } - - private Interpolator() - { - } - } - - public partial class Layout - { - - // aapt resource value: 0x7F0B0000 - public const int abc_action_bar_title_item = 2131427328; - - // aapt resource value: 0x7F0B0001 - public const int abc_action_bar_up_container = 2131427329; - - // aapt resource value: 0x7F0B0002 - public const int abc_action_menu_item_layout = 2131427330; - - // aapt resource value: 0x7F0B0003 - public const int abc_action_menu_layout = 2131427331; - - // aapt resource value: 0x7F0B0004 - public const int abc_action_mode_bar = 2131427332; - - // aapt resource value: 0x7F0B0005 - public const int abc_action_mode_close_item_material = 2131427333; - - // aapt resource value: 0x7F0B0006 - public const int abc_activity_chooser_view = 2131427334; - - // aapt resource value: 0x7F0B0007 - public const int abc_activity_chooser_view_list_item = 2131427335; - - // aapt resource value: 0x7F0B0008 - public const int abc_alert_dialog_button_bar_material = 2131427336; - - // aapt resource value: 0x7F0B0009 - public const int abc_alert_dialog_material = 2131427337; - - // aapt resource value: 0x7F0B000A - public const int abc_alert_dialog_title_material = 2131427338; - - // aapt resource value: 0x7F0B000B - public const int abc_cascading_menu_item_layout = 2131427339; - - // aapt resource value: 0x7F0B000C - public const int abc_dialog_title_material = 2131427340; - - // aapt resource value: 0x7F0B000D - public const int abc_expanded_menu_layout = 2131427341; - - // aapt resource value: 0x7F0B000E - public const int abc_list_menu_item_checkbox = 2131427342; - - // aapt resource value: 0x7F0B000F - public const int abc_list_menu_item_icon = 2131427343; - - // aapt resource value: 0x7F0B0010 - public const int abc_list_menu_item_layout = 2131427344; - - // aapt resource value: 0x7F0B0011 - public const int abc_list_menu_item_radio = 2131427345; - - // aapt resource value: 0x7F0B0012 - public const int abc_popup_menu_header_item_layout = 2131427346; - - // aapt resource value: 0x7F0B0013 - public const int abc_popup_menu_item_layout = 2131427347; - - // aapt resource value: 0x7F0B0014 - public const int abc_screen_content_include = 2131427348; - - // aapt resource value: 0x7F0B0015 - public const int abc_screen_simple = 2131427349; - - // aapt resource value: 0x7F0B0016 - public const int abc_screen_simple_overlay_action_mode = 2131427350; - - // aapt resource value: 0x7F0B0017 - public const int abc_screen_toolbar = 2131427351; - - // aapt resource value: 0x7F0B0018 - public const int abc_search_dropdown_item_icons_2line = 2131427352; - - // aapt resource value: 0x7F0B0019 - public const int abc_search_view = 2131427353; - - // aapt resource value: 0x7F0B001A - public const int abc_select_dialog_material = 2131427354; - - // aapt resource value: 0x7F0B001B - public const int abc_tooltip = 2131427355; - - // aapt resource value: 0x7F0B001C - public const int custom_dialog = 2131427356; - - // aapt resource value: 0x7F0B001D - public const int design_bottom_navigation_item = 2131427357; - - // aapt resource value: 0x7F0B001E - public const int design_bottom_sheet_dialog = 2131427358; - - // aapt resource value: 0x7F0B001F - public const int design_layout_snackbar = 2131427359; - - // aapt resource value: 0x7F0B0020 - public const int design_layout_snackbar_include = 2131427360; - - // aapt resource value: 0x7F0B0021 - public const int design_layout_tab_icon = 2131427361; - - // aapt resource value: 0x7F0B0022 - public const int design_layout_tab_text = 2131427362; - - // aapt resource value: 0x7F0B0023 - public const int design_menu_item_action_area = 2131427363; - - // aapt resource value: 0x7F0B0024 - public const int design_navigation_item = 2131427364; - - // aapt resource value: 0x7F0B0025 - public const int design_navigation_item_header = 2131427365; - - // aapt resource value: 0x7F0B0026 - public const int design_navigation_item_separator = 2131427366; - - // aapt resource value: 0x7F0B0027 - public const int design_navigation_item_subheader = 2131427367; - - // aapt resource value: 0x7F0B0028 - public const int design_navigation_menu = 2131427368; - - // aapt resource value: 0x7F0B0029 - public const int design_navigation_menu_item = 2131427369; - - // aapt resource value: 0x7F0B002A - public const int design_text_input_end_icon = 2131427370; - - // aapt resource value: 0x7F0B002B - public const int design_text_input_start_icon = 2131427371; - - // aapt resource value: 0x7F0B002C - public const int ListViewItem = 2131427372; - - // aapt resource value: 0x7F0B002D - public const int material_chip_input_combo = 2131427373; - - // aapt resource value: 0x7F0B0032 - public const int material_clockface_textview = 2131427378; - - // aapt resource value: 0x7F0B0033 - public const int material_clockface_view = 2131427379; - - // aapt resource value: 0x7F0B002E - public const int material_clock_display = 2131427374; - - // aapt resource value: 0x7F0B002F - public const int material_clock_display_divider = 2131427375; - - // aapt resource value: 0x7F0B0030 - public const int material_clock_period_toggle = 2131427376; - - // aapt resource value: 0x7F0B0031 - public const int material_clock_period_toggle_land = 2131427377; - - // aapt resource value: 0x7F0B0034 - public const int material_radial_view_group = 2131427380; - - // aapt resource value: 0x7F0B0035 - public const int material_textinput_timepicker = 2131427381; - - // aapt resource value: 0x7F0B0038 - public const int material_timepicker = 2131427384; - - // aapt resource value: 0x7F0B0039 - public const int material_timepicker_dialog = 2131427385; - - // aapt resource value: 0x7F0B003A - public const int material_timepicker_textinput_display = 2131427386; - - // aapt resource value: 0x7F0B0036 - public const int material_time_chip = 2131427382; - - // aapt resource value: 0x7F0B0037 - public const int material_time_input = 2131427383; - - // aapt resource value: 0x7F0B003B - public const int mtrl_alert_dialog = 2131427387; - - // aapt resource value: 0x7F0B003C - public const int mtrl_alert_dialog_actions = 2131427388; - - // aapt resource value: 0x7F0B003D - public const int mtrl_alert_dialog_title = 2131427389; - - // aapt resource value: 0x7F0B003E - public const int mtrl_alert_select_dialog_item = 2131427390; - - // aapt resource value: 0x7F0B003F - public const int mtrl_alert_select_dialog_multichoice = 2131427391; - - // aapt resource value: 0x7F0B0040 - public const int mtrl_alert_select_dialog_singlechoice = 2131427392; - - // aapt resource value: 0x7F0B0041 - public const int mtrl_calendar_day = 2131427393; - - // aapt resource value: 0x7F0B0043 - public const int mtrl_calendar_days_of_week = 2131427395; - - // aapt resource value: 0x7F0B0042 - public const int mtrl_calendar_day_of_week = 2131427394; - - // aapt resource value: 0x7F0B0044 - public const int mtrl_calendar_horizontal = 2131427396; - - // aapt resource value: 0x7F0B0045 - public const int mtrl_calendar_month = 2131427397; - - // aapt resource value: 0x7F0B0048 - public const int mtrl_calendar_months = 2131427400; - - // aapt resource value: 0x7F0B0046 - public const int mtrl_calendar_month_labeled = 2131427398; - - // aapt resource value: 0x7F0B0047 - public const int mtrl_calendar_month_navigation = 2131427399; - - // aapt resource value: 0x7F0B0049 - public const int mtrl_calendar_vertical = 2131427401; - - // aapt resource value: 0x7F0B004A - public const int mtrl_calendar_year = 2131427402; - - // aapt resource value: 0x7F0B004B - public const int mtrl_layout_snackbar = 2131427403; - - // aapt resource value: 0x7F0B004C - public const int mtrl_layout_snackbar_include = 2131427404; - - // aapt resource value: 0x7F0B004D - public const int mtrl_picker_actions = 2131427405; - - // aapt resource value: 0x7F0B004E - public const int mtrl_picker_dialog = 2131427406; - - // aapt resource value: 0x7F0B004F - public const int mtrl_picker_fullscreen = 2131427407; - - // aapt resource value: 0x7F0B0050 - public const int mtrl_picker_header_dialog = 2131427408; - - // aapt resource value: 0x7F0B0051 - public const int mtrl_picker_header_fullscreen = 2131427409; - - // aapt resource value: 0x7F0B0052 - public const int mtrl_picker_header_selection_text = 2131427410; - - // aapt resource value: 0x7F0B0053 - public const int mtrl_picker_header_title_text = 2131427411; - - // aapt resource value: 0x7F0B0054 - public const int mtrl_picker_header_toggle = 2131427412; - - // aapt resource value: 0x7F0B0055 - public const int mtrl_picker_text_input_date = 2131427413; - - // aapt resource value: 0x7F0B0056 - public const int mtrl_picker_text_input_date_range = 2131427414; - - // aapt resource value: 0x7F0B0057 - public const int notification_action = 2131427415; - - // aapt resource value: 0x7F0B0058 - public const int notification_action_tombstone = 2131427416; - - // aapt resource value: 0x7F0B0059 - public const int notification_media_action = 2131427417; - - // aapt resource value: 0x7F0B005A - public const int notification_media_cancel_action = 2131427418; - - // aapt resource value: 0x7F0B005B - public const int notification_template_big_media = 2131427419; - - // aapt resource value: 0x7F0B005C - public const int notification_template_big_media_custom = 2131427420; - - // aapt resource value: 0x7F0B005D - public const int notification_template_big_media_narrow = 2131427421; - - // aapt resource value: 0x7F0B005E - public const int notification_template_big_media_narrow_custom = 2131427422; - - // aapt resource value: 0x7F0B005F - public const int notification_template_custom_big = 2131427423; - - // aapt resource value: 0x7F0B0060 - public const int notification_template_icon_group = 2131427424; - - // aapt resource value: 0x7F0B0061 - public const int notification_template_lines_media = 2131427425; - - // aapt resource value: 0x7F0B0062 - public const int notification_template_media = 2131427426; - - // aapt resource value: 0x7F0B0063 - public const int notification_template_media_custom = 2131427427; - - // aapt resource value: 0x7F0B0064 - public const int notification_template_part_chronometer = 2131427428; - - // aapt resource value: 0x7F0B0065 - public const int notification_template_part_time = 2131427429; - - // aapt resource value: 0x7F0B0066 - public const int select_dialog_item_material = 2131427430; - - // aapt resource value: 0x7F0B0067 - public const int select_dialog_multichoice_material = 2131427431; - - // aapt resource value: 0x7F0B0068 - public const int select_dialog_singlechoice_material = 2131427432; - - // aapt resource value: 0x7F0B0069 - public const int support_simple_spinner_dropdown_item = 2131427433; - - // aapt resource value: 0x7F0B006A - public const int test_action_chip = 2131427434; - - // aapt resource value: 0x7F0B006B - public const int test_chip_zero_corner_radius = 2131427435; - - // aapt resource value: 0x7F0B006C - public const int test_design_checkbox = 2131427436; - - // aapt resource value: 0x7F0B006D - public const int test_design_radiobutton = 2131427437; - - // aapt resource value: 0x7F0B006E - public const int test_reflow_chipgroup = 2131427438; - - // aapt resource value: 0x7F0B006F - public const int test_toolbar = 2131427439; - - // aapt resource value: 0x7F0B0070 - public const int test_toolbar_custom_background = 2131427440; - - // aapt resource value: 0x7F0B0071 - public const int test_toolbar_elevation = 2131427441; - - // aapt resource value: 0x7F0B0072 - public const int test_toolbar_surface = 2131427442; - - // aapt resource value: 0x7F0B0077 - public const int text_view_without_line_height = 2131427447; - - // aapt resource value: 0x7F0B0073 - public const int text_view_with_line_height_from_appearance = 2131427443; - - // aapt resource value: 0x7F0B0074 - public const int text_view_with_line_height_from_layout = 2131427444; - - // aapt resource value: 0x7F0B0075 - public const int text_view_with_line_height_from_style = 2131427445; - - // aapt resource value: 0x7F0B0076 - public const int text_view_with_theme_line_height = 2131427446; - - static Layout() - { - global::Android.Runtime.ResourceIdManager.UpdateIdValues(); - } - - private Layout() - { - } - } - - public partial class Plurals - { - - // aapt resource value: 0x7F0C0000 - public const int mtrl_badge_content_description = 2131492864; - - static Plurals() - { - global::Android.Runtime.ResourceIdManager.UpdateIdValues(); - } - - private Plurals() - { - } - } - - public partial class String - { - - // aapt resource value: 0x7F0D0000 - public const int abc_action_bar_home_description = 2131558400; - - // aapt resource value: 0x7F0D0001 - public const int abc_action_bar_up_description = 2131558401; - - // aapt resource value: 0x7F0D0002 - public const int abc_action_menu_overflow_description = 2131558402; - - // aapt resource value: 0x7F0D0003 - public const int abc_action_mode_done = 2131558403; - - // aapt resource value: 0x7F0D0005 - public const int abc_activitychooserview_choose_application = 2131558405; - - // aapt resource value: 0x7F0D0004 - public const int abc_activity_chooser_view_see_all = 2131558404; - - // aapt resource value: 0x7F0D0006 - public const int abc_capital_off = 2131558406; - - // aapt resource value: 0x7F0D0007 - public const int abc_capital_on = 2131558407; - - // aapt resource value: 0x7F0D0008 - public const int abc_menu_alt_shortcut_label = 2131558408; - - // aapt resource value: 0x7F0D0009 - public const int abc_menu_ctrl_shortcut_label = 2131558409; - - // aapt resource value: 0x7F0D000A - public const int abc_menu_delete_shortcut_label = 2131558410; - - // aapt resource value: 0x7F0D000B - public const int abc_menu_enter_shortcut_label = 2131558411; - - // aapt resource value: 0x7F0D000C - public const int abc_menu_function_shortcut_label = 2131558412; - - // aapt resource value: 0x7F0D000D - public const int abc_menu_meta_shortcut_label = 2131558413; - - // aapt resource value: 0x7F0D000E - public const int abc_menu_shift_shortcut_label = 2131558414; - - // aapt resource value: 0x7F0D000F - public const int abc_menu_space_shortcut_label = 2131558415; - - // aapt resource value: 0x7F0D0010 - public const int abc_menu_sym_shortcut_label = 2131558416; - - // aapt resource value: 0x7F0D0011 - public const int abc_prepend_shortcut_label = 2131558417; - - // aapt resource value: 0x7F0D0013 - public const int abc_searchview_description_clear = 2131558419; - - // aapt resource value: 0x7F0D0014 - public const int abc_searchview_description_query = 2131558420; - - // aapt resource value: 0x7F0D0015 - public const int abc_searchview_description_search = 2131558421; - - // aapt resource value: 0x7F0D0016 - public const int abc_searchview_description_submit = 2131558422; - - // aapt resource value: 0x7F0D0017 - public const int abc_searchview_description_voice = 2131558423; - - // aapt resource value: 0x7F0D0012 - public const int abc_search_hint = 2131558418; - - // aapt resource value: 0x7F0D0018 - public const int abc_shareactionprovider_share_with = 2131558424; - - // aapt resource value: 0x7F0D0019 - public const int abc_shareactionprovider_share_with_application = 2131558425; - - // aapt resource value: 0x7F0D001A - public const int abc_toolbar_collapse_description = 2131558426; - - // aapt resource value: 0x7F0D001C - public const int appbar_scrolling_view_behavior = 2131558428; - - // aapt resource value: 0x7F0D001B - public const int app_name = 2131558427; - - // aapt resource value: 0x7F0D001E - public const int bottomsheet_action_expand_halfway = 2131558430; - - // aapt resource value: 0x7F0D001D - public const int bottom_sheet_behavior = 2131558429; - - // aapt resource value: 0x7F0D001F - public const int character_counter_content_description = 2131558431; - - // aapt resource value: 0x7F0D0020 - public const int character_counter_overflowed_content_description = 2131558432; - - // aapt resource value: 0x7F0D0021 - public const int character_counter_pattern = 2131558433; - - // aapt resource value: 0x7F0D0022 - public const int chip_text = 2131558434; - - // aapt resource value: 0x7F0D0023 - public const int clear_text_end_icon_content_description = 2131558435; - - // aapt resource value: 0x7F0D0024 - public const int error_icon_content_description = 2131558436; - - // aapt resource value: 0x7F0D0025 - public const int exposed_dropdown_menu_content_description = 2131558437; - - // aapt resource value: 0x7F0D0026 - public const int fab_transformation_scrim_behavior = 2131558438; - - // aapt resource value: 0x7F0D0027 - public const int fab_transformation_sheet_behavior = 2131558439; - - // aapt resource value: 0x7F0D0028 - public const int hello = 2131558440; - - // aapt resource value: 0x7F0D0029 - public const int hide_bottom_view_on_scroll_behavior = 2131558441; - - // aapt resource value: 0x7F0D002A - public const int icon_content_description = 2131558442; - - // aapt resource value: 0x7F0D002B - public const int item_view_role_description = 2131558443; - - // aapt resource value: 0x7F0D002C - public const int material_clock_display_divider = 2131558444; - - // aapt resource value: 0x7F0D002D - public const int material_clock_toggle_content_description = 2131558445; - - // aapt resource value: 0x7F0D002E - public const int material_hour_selection = 2131558446; - - // aapt resource value: 0x7F0D002F - public const int material_hour_suffix = 2131558447; - - // aapt resource value: 0x7F0D0030 - public const int material_minute_selection = 2131558448; - - // aapt resource value: 0x7F0D0031 - public const int material_minute_suffix = 2131558449; - - // aapt resource value: 0x7F0D0032 - public const int material_slider_range_end = 2131558450; - - // aapt resource value: 0x7F0D0033 - public const int material_slider_range_start = 2131558451; - - // aapt resource value: 0x7F0D0034 - public const int material_timepicker_am = 2131558452; - - // aapt resource value: 0x7F0D0035 - public const int material_timepicker_clock_mode_description = 2131558453; - - // aapt resource value: 0x7F0D0036 - public const int material_timepicker_hour = 2131558454; - - // aapt resource value: 0x7F0D0037 - public const int material_timepicker_minute = 2131558455; - - // aapt resource value: 0x7F0D0038 - public const int material_timepicker_pm = 2131558456; - - // aapt resource value: 0x7F0D0039 - public const int material_timepicker_select_time = 2131558457; - - // aapt resource value: 0x7F0D003A - public const int material_timepicker_text_input_mode_description = 2131558458; - - // aapt resource value: 0x7F0D003B - public const int mtrl_badge_numberless_content_description = 2131558459; - - // aapt resource value: 0x7F0D003C - public const int mtrl_chip_close_icon_content_description = 2131558460; - - // aapt resource value: 0x7F0D003D - public const int mtrl_exceed_max_badge_number_content_description = 2131558461; - - // aapt resource value: 0x7F0D003E - public const int mtrl_exceed_max_badge_number_suffix = 2131558462; - - // aapt resource value: 0x7F0D003F - public const int mtrl_picker_a11y_next_month = 2131558463; - - // aapt resource value: 0x7F0D0040 - public const int mtrl_picker_a11y_prev_month = 2131558464; - - // aapt resource value: 0x7F0D0041 - public const int mtrl_picker_announce_current_selection = 2131558465; - - // aapt resource value: 0x7F0D0042 - public const int mtrl_picker_cancel = 2131558466; - - // aapt resource value: 0x7F0D0043 - public const int mtrl_picker_confirm = 2131558467; - - // aapt resource value: 0x7F0D0044 - public const int mtrl_picker_date_header_selected = 2131558468; - - // aapt resource value: 0x7F0D0045 - public const int mtrl_picker_date_header_title = 2131558469; - - // aapt resource value: 0x7F0D0046 - public const int mtrl_picker_date_header_unselected = 2131558470; - - // aapt resource value: 0x7F0D0047 - public const int mtrl_picker_day_of_week_column_header = 2131558471; - - // aapt resource value: 0x7F0D0048 - public const int mtrl_picker_invalid_format = 2131558472; - - // aapt resource value: 0x7F0D0049 - public const int mtrl_picker_invalid_format_example = 2131558473; - - // aapt resource value: 0x7F0D004A - public const int mtrl_picker_invalid_format_use = 2131558474; - - // aapt resource value: 0x7F0D004B - public const int mtrl_picker_invalid_range = 2131558475; - - // aapt resource value: 0x7F0D004C - public const int mtrl_picker_navigate_to_year_description = 2131558476; - - // aapt resource value: 0x7F0D004D - public const int mtrl_picker_out_of_range = 2131558477; - - // aapt resource value: 0x7F0D004E - public const int mtrl_picker_range_header_only_end_selected = 2131558478; - - // aapt resource value: 0x7F0D004F - public const int mtrl_picker_range_header_only_start_selected = 2131558479; - - // aapt resource value: 0x7F0D0050 - public const int mtrl_picker_range_header_selected = 2131558480; - - // aapt resource value: 0x7F0D0051 - public const int mtrl_picker_range_header_title = 2131558481; - - // aapt resource value: 0x7F0D0052 - public const int mtrl_picker_range_header_unselected = 2131558482; - - // aapt resource value: 0x7F0D0053 - public const int mtrl_picker_save = 2131558483; - - // aapt resource value: 0x7F0D0054 - public const int mtrl_picker_text_input_date_hint = 2131558484; - - // aapt resource value: 0x7F0D0055 - public const int mtrl_picker_text_input_date_range_end_hint = 2131558485; - - // aapt resource value: 0x7F0D0056 - public const int mtrl_picker_text_input_date_range_start_hint = 2131558486; - - // aapt resource value: 0x7F0D0057 - public const int mtrl_picker_text_input_day_abbr = 2131558487; - - // aapt resource value: 0x7F0D0058 - public const int mtrl_picker_text_input_month_abbr = 2131558488; - - // aapt resource value: 0x7F0D0059 - public const int mtrl_picker_text_input_year_abbr = 2131558489; - - // aapt resource value: 0x7F0D005A - public const int mtrl_picker_toggle_to_calendar_input_mode = 2131558490; - - // aapt resource value: 0x7F0D005B - public const int mtrl_picker_toggle_to_day_selection = 2131558491; - - // aapt resource value: 0x7F0D005C - public const int mtrl_picker_toggle_to_text_input_mode = 2131558492; - - // aapt resource value: 0x7F0D005D - public const int mtrl_picker_toggle_to_year_selection = 2131558493; - - // aapt resource value: 0x7F0D005E - public const int password_toggle_content_description = 2131558494; - - // aapt resource value: 0x7F0D005F - public const int path_password_eye = 2131558495; - - // aapt resource value: 0x7F0D0060 - public const int path_password_eye_mask_strike_through = 2131558496; - - // aapt resource value: 0x7F0D0061 - public const int path_password_eye_mask_visible = 2131558497; - - // aapt resource value: 0x7F0D0062 - public const int path_password_strike_through = 2131558498; - - // aapt resource value: 0x7F0D0063 - public const int search_menu_title = 2131558499; - - // aapt resource value: 0x7F0D0064 - public const int status_bar_notification_info_overflow = 2131558500; - - static String() - { - global::Android.Runtime.ResourceIdManager.UpdateIdValues(); - } - - private String() - { - } - } - - public partial class Style - { - - // aapt resource value: 0x7F0E0000 - public const int AlertDialog_AppCompat = 2131623936; - - // aapt resource value: 0x7F0E0001 - public const int AlertDialog_AppCompat_Light = 2131623937; - - // aapt resource value: 0x7F0E0002 - public const int AndroidThemeColorAccentYellow = 2131623938; - - // aapt resource value: 0x7F0E0003 - public const int Animation_AppCompat_Dialog = 2131623939; - - // aapt resource value: 0x7F0E0004 - public const int Animation_AppCompat_DropDownUp = 2131623940; - - // aapt resource value: 0x7F0E0005 - public const int Animation_AppCompat_Tooltip = 2131623941; - - // aapt resource value: 0x7F0E0006 - public const int Animation_Design_BottomSheetDialog = 2131623942; - - // aapt resource value: 0x7F0E0007 - public const int Animation_MaterialComponents_BottomSheetDialog = 2131623943; - - // aapt resource value: 0x7F0E0008 - public const int Base_AlertDialog_AppCompat = 2131623944; - - // aapt resource value: 0x7F0E0009 - public const int Base_AlertDialog_AppCompat_Light = 2131623945; - - // aapt resource value: 0x7F0E000A - public const int Base_Animation_AppCompat_Dialog = 2131623946; - - // aapt resource value: 0x7F0E000B - public const int Base_Animation_AppCompat_DropDownUp = 2131623947; - - // aapt resource value: 0x7F0E000C - public const int Base_Animation_AppCompat_Tooltip = 2131623948; - - // aapt resource value: 0x7F0E000D - public const int Base_CardView = 2131623949; - - // aapt resource value: 0x7F0E000F - public const int Base_DialogWindowTitleBackground_AppCompat = 2131623951; - - // aapt resource value: 0x7F0E000E - public const int Base_DialogWindowTitle_AppCompat = 2131623950; - - // aapt resource value: 0x7F0E0010 - public const int Base_MaterialAlertDialog_MaterialComponents_Title_Icon = 2131623952; - - // aapt resource value: 0x7F0E0011 - public const int Base_MaterialAlertDialog_MaterialComponents_Title_Panel = 2131623953; - - // aapt resource value: 0x7F0E0012 - public const int Base_MaterialAlertDialog_MaterialComponents_Title_Text = 2131623954; - - // aapt resource value: 0x7F0E0013 - public const int Base_TextAppearance_AppCompat = 2131623955; - - // aapt resource value: 0x7F0E0014 - public const int Base_TextAppearance_AppCompat_Body1 = 2131623956; - - // aapt resource value: 0x7F0E0015 - public const int Base_TextAppearance_AppCompat_Body2 = 2131623957; - - // aapt resource value: 0x7F0E0016 - public const int Base_TextAppearance_AppCompat_Button = 2131623958; - - // aapt resource value: 0x7F0E0017 - public const int Base_TextAppearance_AppCompat_Caption = 2131623959; - - // aapt resource value: 0x7F0E0018 - public const int Base_TextAppearance_AppCompat_Display1 = 2131623960; - - // aapt resource value: 0x7F0E0019 - public const int Base_TextAppearance_AppCompat_Display2 = 2131623961; - - // aapt resource value: 0x7F0E001A - public const int Base_TextAppearance_AppCompat_Display3 = 2131623962; - - // aapt resource value: 0x7F0E001B - public const int Base_TextAppearance_AppCompat_Display4 = 2131623963; - - // aapt resource value: 0x7F0E001C - public const int Base_TextAppearance_AppCompat_Headline = 2131623964; - - // aapt resource value: 0x7F0E001D - public const int Base_TextAppearance_AppCompat_Inverse = 2131623965; - - // aapt resource value: 0x7F0E001E - public const int Base_TextAppearance_AppCompat_Large = 2131623966; - - // aapt resource value: 0x7F0E001F - public const int Base_TextAppearance_AppCompat_Large_Inverse = 2131623967; - - // aapt resource value: 0x7F0E0020 - public const int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large = 2131623968; - - // aapt resource value: 0x7F0E0021 - public const int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small = 2131623969; - - // aapt resource value: 0x7F0E0022 - public const int Base_TextAppearance_AppCompat_Medium = 2131623970; - - // aapt resource value: 0x7F0E0023 - public const int Base_TextAppearance_AppCompat_Medium_Inverse = 2131623971; - - // aapt resource value: 0x7F0E0024 - public const int Base_TextAppearance_AppCompat_Menu = 2131623972; - - // aapt resource value: 0x7F0E0025 - public const int Base_TextAppearance_AppCompat_SearchResult = 2131623973; - - // aapt resource value: 0x7F0E0026 - public const int Base_TextAppearance_AppCompat_SearchResult_Subtitle = 2131623974; - - // aapt resource value: 0x7F0E0027 - public const int Base_TextAppearance_AppCompat_SearchResult_Title = 2131623975; - - // aapt resource value: 0x7F0E0028 - public const int Base_TextAppearance_AppCompat_Small = 2131623976; - - // aapt resource value: 0x7F0E0029 - public const int Base_TextAppearance_AppCompat_Small_Inverse = 2131623977; - - // aapt resource value: 0x7F0E002A - public const int Base_TextAppearance_AppCompat_Subhead = 2131623978; - - // aapt resource value: 0x7F0E002B - public const int Base_TextAppearance_AppCompat_Subhead_Inverse = 2131623979; - - // aapt resource value: 0x7F0E002C - public const int Base_TextAppearance_AppCompat_Title = 2131623980; - - // aapt resource value: 0x7F0E002D - public const int Base_TextAppearance_AppCompat_Title_Inverse = 2131623981; - - // aapt resource value: 0x7F0E002E - public const int Base_TextAppearance_AppCompat_Tooltip = 2131623982; - - // aapt resource value: 0x7F0E002F - public const int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu = 2131623983; - - // aapt resource value: 0x7F0E0030 - public const int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle = 2131623984; - - // aapt resource value: 0x7F0E0031 - public const int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse = 2131623985; - - // aapt resource value: 0x7F0E0032 - public const int Base_TextAppearance_AppCompat_Widget_ActionBar_Title = 2131623986; - - // aapt resource value: 0x7F0E0033 - public const int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse = 2131623987; - - // aapt resource value: 0x7F0E0034 - public const int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle = 2131623988; - - // aapt resource value: 0x7F0E0035 - public const int Base_TextAppearance_AppCompat_Widget_ActionMode_Title = 2131623989; - - // aapt resource value: 0x7F0E0036 - public const int Base_TextAppearance_AppCompat_Widget_Button = 2131623990; - - // aapt resource value: 0x7F0E0037 - public const int Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored = 2131623991; - - // aapt resource value: 0x7F0E0038 - public const int Base_TextAppearance_AppCompat_Widget_Button_Colored = 2131623992; - - // aapt resource value: 0x7F0E0039 - public const int Base_TextAppearance_AppCompat_Widget_Button_Inverse = 2131623993; - - // aapt resource value: 0x7F0E003A - public const int Base_TextAppearance_AppCompat_Widget_DropDownItem = 2131623994; - - // aapt resource value: 0x7F0E003B - public const int Base_TextAppearance_AppCompat_Widget_PopupMenu_Header = 2131623995; - - // aapt resource value: 0x7F0E003C - public const int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large = 2131623996; - - // aapt resource value: 0x7F0E003D - public const int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small = 2131623997; - - // aapt resource value: 0x7F0E003E - public const int Base_TextAppearance_AppCompat_Widget_Switch = 2131623998; - - // aapt resource value: 0x7F0E003F - public const int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem = 2131623999; - - // aapt resource value: 0x7F0E0040 - public const int Base_TextAppearance_MaterialComponents_Badge = 2131624000; - - // aapt resource value: 0x7F0E0041 - public const int Base_TextAppearance_MaterialComponents_Button = 2131624001; - - // aapt resource value: 0x7F0E0042 - public const int Base_TextAppearance_MaterialComponents_Headline6 = 2131624002; - - // aapt resource value: 0x7F0E0043 - public const int Base_TextAppearance_MaterialComponents_Subtitle2 = 2131624003; - - // aapt resource value: 0x7F0E0044 - public const int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item = 2131624004; - - // aapt resource value: 0x7F0E0045 - public const int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle = 2131624005; - - // aapt resource value: 0x7F0E0046 - public const int Base_TextAppearance_Widget_AppCompat_Toolbar_Title = 2131624006; - - // aapt resource value: 0x7F0E0068 - public const int Base_ThemeOverlay_AppCompat = 2131624040; - - // aapt resource value: 0x7F0E0069 - public const int Base_ThemeOverlay_AppCompat_ActionBar = 2131624041; - - // aapt resource value: 0x7F0E006A - public const int Base_ThemeOverlay_AppCompat_Dark = 2131624042; - - // aapt resource value: 0x7F0E006B - public const int Base_ThemeOverlay_AppCompat_Dark_ActionBar = 2131624043; - - // aapt resource value: 0x7F0E006C - public const int Base_ThemeOverlay_AppCompat_Dialog = 2131624044; - - // aapt resource value: 0x7F0E006D - public const int Base_ThemeOverlay_AppCompat_Dialog_Alert = 2131624045; - - // aapt resource value: 0x7F0E006E - public const int Base_ThemeOverlay_AppCompat_Light = 2131624046; - - // aapt resource value: 0x7F0E006F - public const int Base_ThemeOverlay_MaterialComponents_Dialog = 2131624047; - - // aapt resource value: 0x7F0E0070 - public const int Base_ThemeOverlay_MaterialComponents_Dialog_Alert = 2131624048; - - // aapt resource value: 0x7F0E0071 - public const int Base_ThemeOverlay_MaterialComponents_Dialog_Alert_Framework = 2131624049; - - // aapt resource value: 0x7F0E0072 - public const int Base_ThemeOverlay_MaterialComponents_Light_Dialog_Alert_Framework = 2131624050; - - // aapt resource value: 0x7F0E0073 - public const int Base_ThemeOverlay_MaterialComponents_MaterialAlertDialog = 2131624051; - - // aapt resource value: 0x7F0E0047 - public const int Base_Theme_AppCompat = 2131624007; - - // aapt resource value: 0x7F0E0048 - public const int Base_Theme_AppCompat_CompactMenu = 2131624008; - - // aapt resource value: 0x7F0E0049 - public const int Base_Theme_AppCompat_Dialog = 2131624009; - - // aapt resource value: 0x7F0E004D - public const int Base_Theme_AppCompat_DialogWhenLarge = 2131624013; - - // aapt resource value: 0x7F0E004A - public const int Base_Theme_AppCompat_Dialog_Alert = 2131624010; - - // aapt resource value: 0x7F0E004B - public const int Base_Theme_AppCompat_Dialog_FixedSize = 2131624011; - - // aapt resource value: 0x7F0E004C - public const int Base_Theme_AppCompat_Dialog_MinWidth = 2131624012; - - // aapt resource value: 0x7F0E004E - public const int Base_Theme_AppCompat_Light = 2131624014; - - // aapt resource value: 0x7F0E004F - public const int Base_Theme_AppCompat_Light_DarkActionBar = 2131624015; - - // aapt resource value: 0x7F0E0050 - public const int Base_Theme_AppCompat_Light_Dialog = 2131624016; - - // aapt resource value: 0x7F0E0054 - public const int Base_Theme_AppCompat_Light_DialogWhenLarge = 2131624020; - - // aapt resource value: 0x7F0E0051 - public const int Base_Theme_AppCompat_Light_Dialog_Alert = 2131624017; - - // aapt resource value: 0x7F0E0052 - public const int Base_Theme_AppCompat_Light_Dialog_FixedSize = 2131624018; - - // aapt resource value: 0x7F0E0053 - public const int Base_Theme_AppCompat_Light_Dialog_MinWidth = 2131624019; - - // aapt resource value: 0x7F0E0055 - public const int Base_Theme_MaterialComponents = 2131624021; - - // aapt resource value: 0x7F0E0056 - public const int Base_Theme_MaterialComponents_Bridge = 2131624022; - - // aapt resource value: 0x7F0E0057 - public const int Base_Theme_MaterialComponents_CompactMenu = 2131624023; - - // aapt resource value: 0x7F0E0058 - public const int Base_Theme_MaterialComponents_Dialog = 2131624024; - - // aapt resource value: 0x7F0E005D - public const int Base_Theme_MaterialComponents_DialogWhenLarge = 2131624029; - - // aapt resource value: 0x7F0E0059 - public const int Base_Theme_MaterialComponents_Dialog_Alert = 2131624025; - - // aapt resource value: 0x7F0E005A - public const int Base_Theme_MaterialComponents_Dialog_Bridge = 2131624026; - - // aapt resource value: 0x7F0E005B - public const int Base_Theme_MaterialComponents_Dialog_FixedSize = 2131624027; - - // aapt resource value: 0x7F0E005C - public const int Base_Theme_MaterialComponents_Dialog_MinWidth = 2131624028; - - // aapt resource value: 0x7F0E005E - public const int Base_Theme_MaterialComponents_Light = 2131624030; - - // aapt resource value: 0x7F0E005F - public const int Base_Theme_MaterialComponents_Light_Bridge = 2131624031; - - // aapt resource value: 0x7F0E0060 - public const int Base_Theme_MaterialComponents_Light_DarkActionBar = 2131624032; - - // aapt resource value: 0x7F0E0061 - public const int Base_Theme_MaterialComponents_Light_DarkActionBar_Bridge = 2131624033; - - // aapt resource value: 0x7F0E0062 - public const int Base_Theme_MaterialComponents_Light_Dialog = 2131624034; - - // aapt resource value: 0x7F0E0067 - public const int Base_Theme_MaterialComponents_Light_DialogWhenLarge = 2131624039; - - // aapt resource value: 0x7F0E0063 - public const int Base_Theme_MaterialComponents_Light_Dialog_Alert = 2131624035; - - // aapt resource value: 0x7F0E0064 - public const int Base_Theme_MaterialComponents_Light_Dialog_Bridge = 2131624036; - - // aapt resource value: 0x7F0E0065 - public const int Base_Theme_MaterialComponents_Light_Dialog_FixedSize = 2131624037; - - // aapt resource value: 0x7F0E0066 - public const int Base_Theme_MaterialComponents_Light_Dialog_MinWidth = 2131624038; - - // aapt resource value: 0x7F0E007D - public const int Base_V14_ThemeOverlay_MaterialComponents_Dialog = 2131624061; - - // aapt resource value: 0x7F0E007E - public const int Base_V14_ThemeOverlay_MaterialComponents_Dialog_Alert = 2131624062; - - // aapt resource value: 0x7F0E007F - public const int Base_V14_ThemeOverlay_MaterialComponents_MaterialAlertDialog = 2131624063; - - // aapt resource value: 0x7F0E0074 - public const int Base_V14_Theme_MaterialComponents = 2131624052; - - // aapt resource value: 0x7F0E0075 - public const int Base_V14_Theme_MaterialComponents_Bridge = 2131624053; - - // aapt resource value: 0x7F0E0076 - public const int Base_V14_Theme_MaterialComponents_Dialog = 2131624054; - - // aapt resource value: 0x7F0E0077 - public const int Base_V14_Theme_MaterialComponents_Dialog_Bridge = 2131624055; - - // aapt resource value: 0x7F0E0078 - public const int Base_V14_Theme_MaterialComponents_Light = 2131624056; - - // aapt resource value: 0x7F0E0079 - public const int Base_V14_Theme_MaterialComponents_Light_Bridge = 2131624057; - - // aapt resource value: 0x7F0E007A - public const int Base_V14_Theme_MaterialComponents_Light_DarkActionBar_Bridge = 2131624058; - - // aapt resource value: 0x7F0E007B - public const int Base_V14_Theme_MaterialComponents_Light_Dialog = 2131624059; - - // aapt resource value: 0x7F0E007C - public const int Base_V14_Theme_MaterialComponents_Light_Dialog_Bridge = 2131624060; - - // aapt resource value: 0x7F0E0088 - public const int Base_V21_ThemeOverlay_AppCompat_Dialog = 2131624072; - - // aapt resource value: 0x7F0E0080 - public const int Base_V21_Theme_AppCompat = 2131624064; - - // aapt resource value: 0x7F0E0081 - public const int Base_V21_Theme_AppCompat_Dialog = 2131624065; - - // aapt resource value: 0x7F0E0082 - public const int Base_V21_Theme_AppCompat_Light = 2131624066; - - // aapt resource value: 0x7F0E0083 - public const int Base_V21_Theme_AppCompat_Light_Dialog = 2131624067; - - // aapt resource value: 0x7F0E0084 - public const int Base_V21_Theme_MaterialComponents = 2131624068; - - // aapt resource value: 0x7F0E0085 - public const int Base_V21_Theme_MaterialComponents_Dialog = 2131624069; - - // aapt resource value: 0x7F0E0086 - public const int Base_V21_Theme_MaterialComponents_Light = 2131624070; - - // aapt resource value: 0x7F0E0087 - public const int Base_V21_Theme_MaterialComponents_Light_Dialog = 2131624071; - - // aapt resource value: 0x7F0E0089 - public const int Base_V22_Theme_AppCompat = 2131624073; - - // aapt resource value: 0x7F0E008A - public const int Base_V22_Theme_AppCompat_Light = 2131624074; - - // aapt resource value: 0x7F0E008B - public const int Base_V23_Theme_AppCompat = 2131624075; - - // aapt resource value: 0x7F0E008C - public const int Base_V23_Theme_AppCompat_Light = 2131624076; - - // aapt resource value: 0x7F0E008D - public const int Base_V26_Theme_AppCompat = 2131624077; - - // aapt resource value: 0x7F0E008E - public const int Base_V26_Theme_AppCompat_Light = 2131624078; - - // aapt resource value: 0x7F0E008F - public const int Base_V26_Widget_AppCompat_Toolbar = 2131624079; - - // aapt resource value: 0x7F0E0090 - public const int Base_V28_Theme_AppCompat = 2131624080; - - // aapt resource value: 0x7F0E0091 - public const int Base_V28_Theme_AppCompat_Light = 2131624081; - - // aapt resource value: 0x7F0E0096 - public const int Base_V7_ThemeOverlay_AppCompat_Dialog = 2131624086; - - // aapt resource value: 0x7F0E0092 - public const int Base_V7_Theme_AppCompat = 2131624082; - - // aapt resource value: 0x7F0E0093 - public const int Base_V7_Theme_AppCompat_Dialog = 2131624083; - - // aapt resource value: 0x7F0E0094 - public const int Base_V7_Theme_AppCompat_Light = 2131624084; - - // aapt resource value: 0x7F0E0095 - public const int Base_V7_Theme_AppCompat_Light_Dialog = 2131624085; - - // aapt resource value: 0x7F0E0097 - public const int Base_V7_Widget_AppCompat_AutoCompleteTextView = 2131624087; - - // aapt resource value: 0x7F0E0098 - public const int Base_V7_Widget_AppCompat_EditText = 2131624088; - - // aapt resource value: 0x7F0E0099 - public const int Base_V7_Widget_AppCompat_Toolbar = 2131624089; - - // aapt resource value: 0x7F0E009A - public const int Base_Widget_AppCompat_ActionBar = 2131624090; - - // aapt resource value: 0x7F0E009B - public const int Base_Widget_AppCompat_ActionBar_Solid = 2131624091; - - // aapt resource value: 0x7F0E009C - public const int Base_Widget_AppCompat_ActionBar_TabBar = 2131624092; - - // aapt resource value: 0x7F0E009D - public const int Base_Widget_AppCompat_ActionBar_TabText = 2131624093; - - // aapt resource value: 0x7F0E009E - public const int Base_Widget_AppCompat_ActionBar_TabView = 2131624094; - - // aapt resource value: 0x7F0E009F - public const int Base_Widget_AppCompat_ActionButton = 2131624095; - - // aapt resource value: 0x7F0E00A0 - public const int Base_Widget_AppCompat_ActionButton_CloseMode = 2131624096; - - // aapt resource value: 0x7F0E00A1 - public const int Base_Widget_AppCompat_ActionButton_Overflow = 2131624097; - - // aapt resource value: 0x7F0E00A2 - public const int Base_Widget_AppCompat_ActionMode = 2131624098; - - // aapt resource value: 0x7F0E00A3 - public const int Base_Widget_AppCompat_ActivityChooserView = 2131624099; - - // aapt resource value: 0x7F0E00A4 - public const int Base_Widget_AppCompat_AutoCompleteTextView = 2131624100; - - // aapt resource value: 0x7F0E00A5 - public const int Base_Widget_AppCompat_Button = 2131624101; - - // aapt resource value: 0x7F0E00AB - public const int Base_Widget_AppCompat_ButtonBar = 2131624107; - - // aapt resource value: 0x7F0E00AC - public const int Base_Widget_AppCompat_ButtonBar_AlertDialog = 2131624108; - - // aapt resource value: 0x7F0E00A6 - public const int Base_Widget_AppCompat_Button_Borderless = 2131624102; - - // aapt resource value: 0x7F0E00A7 - public const int Base_Widget_AppCompat_Button_Borderless_Colored = 2131624103; - - // aapt resource value: 0x7F0E00A8 - public const int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog = 2131624104; - - // aapt resource value: 0x7F0E00A9 - public const int Base_Widget_AppCompat_Button_Colored = 2131624105; - - // aapt resource value: 0x7F0E00AA - public const int Base_Widget_AppCompat_Button_Small = 2131624106; - - // aapt resource value: 0x7F0E00AD - public const int Base_Widget_AppCompat_CompoundButton_CheckBox = 2131624109; - - // aapt resource value: 0x7F0E00AE - public const int Base_Widget_AppCompat_CompoundButton_RadioButton = 2131624110; - - // aapt resource value: 0x7F0E00AF - public const int Base_Widget_AppCompat_CompoundButton_Switch = 2131624111; - - // aapt resource value: 0x7F0E00B0 - public const int Base_Widget_AppCompat_DrawerArrowToggle = 2131624112; - - // aapt resource value: 0x7F0E00B1 - public const int Base_Widget_AppCompat_DrawerArrowToggle_Common = 2131624113; - - // aapt resource value: 0x7F0E00B2 - public const int Base_Widget_AppCompat_DropDownItem_Spinner = 2131624114; - - // aapt resource value: 0x7F0E00B3 - public const int Base_Widget_AppCompat_EditText = 2131624115; - - // aapt resource value: 0x7F0E00B4 - public const int Base_Widget_AppCompat_ImageButton = 2131624116; - - // aapt resource value: 0x7F0E00B5 - public const int Base_Widget_AppCompat_Light_ActionBar = 2131624117; - - // aapt resource value: 0x7F0E00B6 - public const int Base_Widget_AppCompat_Light_ActionBar_Solid = 2131624118; - - // aapt resource value: 0x7F0E00B7 - public const int Base_Widget_AppCompat_Light_ActionBar_TabBar = 2131624119; - - // aapt resource value: 0x7F0E00B8 - public const int Base_Widget_AppCompat_Light_ActionBar_TabText = 2131624120; - - // aapt resource value: 0x7F0E00B9 - public const int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse = 2131624121; - - // aapt resource value: 0x7F0E00BA - public const int Base_Widget_AppCompat_Light_ActionBar_TabView = 2131624122; - - // aapt resource value: 0x7F0E00BB - public const int Base_Widget_AppCompat_Light_PopupMenu = 2131624123; - - // aapt resource value: 0x7F0E00BC - public const int Base_Widget_AppCompat_Light_PopupMenu_Overflow = 2131624124; - - // aapt resource value: 0x7F0E00BD - public const int Base_Widget_AppCompat_ListMenuView = 2131624125; - - // aapt resource value: 0x7F0E00BE - public const int Base_Widget_AppCompat_ListPopupWindow = 2131624126; - - // aapt resource value: 0x7F0E00BF - public const int Base_Widget_AppCompat_ListView = 2131624127; - - // aapt resource value: 0x7F0E00C0 - public const int Base_Widget_AppCompat_ListView_DropDown = 2131624128; - - // aapt resource value: 0x7F0E00C1 - public const int Base_Widget_AppCompat_ListView_Menu = 2131624129; - - // aapt resource value: 0x7F0E00C2 - public const int Base_Widget_AppCompat_PopupMenu = 2131624130; - - // aapt resource value: 0x7F0E00C3 - public const int Base_Widget_AppCompat_PopupMenu_Overflow = 2131624131; - - // aapt resource value: 0x7F0E00C4 - public const int Base_Widget_AppCompat_PopupWindow = 2131624132; - - // aapt resource value: 0x7F0E00C5 - public const int Base_Widget_AppCompat_ProgressBar = 2131624133; - - // aapt resource value: 0x7F0E00C6 - public const int Base_Widget_AppCompat_ProgressBar_Horizontal = 2131624134; - - // aapt resource value: 0x7F0E00C7 - public const int Base_Widget_AppCompat_RatingBar = 2131624135; - - // aapt resource value: 0x7F0E00C8 - public const int Base_Widget_AppCompat_RatingBar_Indicator = 2131624136; - - // aapt resource value: 0x7F0E00C9 - public const int Base_Widget_AppCompat_RatingBar_Small = 2131624137; - - // aapt resource value: 0x7F0E00CA - public const int Base_Widget_AppCompat_SearchView = 2131624138; - - // aapt resource value: 0x7F0E00CB - public const int Base_Widget_AppCompat_SearchView_ActionBar = 2131624139; - - // aapt resource value: 0x7F0E00CC - public const int Base_Widget_AppCompat_SeekBar = 2131624140; - - // aapt resource value: 0x7F0E00CD - public const int Base_Widget_AppCompat_SeekBar_Discrete = 2131624141; - - // aapt resource value: 0x7F0E00CE - public const int Base_Widget_AppCompat_Spinner = 2131624142; - - // aapt resource value: 0x7F0E00CF - public const int Base_Widget_AppCompat_Spinner_Underlined = 2131624143; - - // aapt resource value: 0x7F0E00D0 - public const int Base_Widget_AppCompat_TextView = 2131624144; - - // aapt resource value: 0x7F0E00D1 - public const int Base_Widget_AppCompat_TextView_SpinnerItem = 2131624145; - - // aapt resource value: 0x7F0E00D2 - public const int Base_Widget_AppCompat_Toolbar = 2131624146; - - // aapt resource value: 0x7F0E00D3 - public const int Base_Widget_AppCompat_Toolbar_Button_Navigation = 2131624147; - - // aapt resource value: 0x7F0E00D4 - public const int Base_Widget_Design_TabLayout = 2131624148; - - // aapt resource value: 0x7F0E00D5 - public const int Base_Widget_MaterialComponents_AutoCompleteTextView = 2131624149; - - // aapt resource value: 0x7F0E00D6 - public const int Base_Widget_MaterialComponents_CheckedTextView = 2131624150; - - // aapt resource value: 0x7F0E00D7 - public const int Base_Widget_MaterialComponents_Chip = 2131624151; - - // aapt resource value: 0x7F0E00D8 - public const int Base_Widget_MaterialComponents_MaterialCalendar_NavigationButton = 2131624152; - - // aapt resource value: 0x7F0E00D9 - public const int Base_Widget_MaterialComponents_PopupMenu = 2131624153; - - // aapt resource value: 0x7F0E00DA - public const int Base_Widget_MaterialComponents_PopupMenu_ContextMenu = 2131624154; - - // aapt resource value: 0x7F0E00DB - public const int Base_Widget_MaterialComponents_PopupMenu_ListPopupWindow = 2131624155; - - // aapt resource value: 0x7F0E00DC - public const int Base_Widget_MaterialComponents_PopupMenu_Overflow = 2131624156; - - // aapt resource value: 0x7F0E00DD - public const int Base_Widget_MaterialComponents_Slider = 2131624157; - - // aapt resource value: 0x7F0E00DE - public const int Base_Widget_MaterialComponents_Snackbar = 2131624158; - - // aapt resource value: 0x7F0E00DF - public const int Base_Widget_MaterialComponents_TextInputEditText = 2131624159; - - // aapt resource value: 0x7F0E00E0 - public const int Base_Widget_MaterialComponents_TextInputLayout = 2131624160; - - // aapt resource value: 0x7F0E00E1 - public const int Base_Widget_MaterialComponents_TextView = 2131624161; - - // aapt resource value: 0x7F0E00E2 - public const int CardView = 2131624162; - - // aapt resource value: 0x7F0E00E3 - public const int CardView_Dark = 2131624163; - - // aapt resource value: 0x7F0E00E4 - public const int CardView_Light = 2131624164; - - // aapt resource value: 0x7F0E00E5 - public const int EmptyTheme = 2131624165; - - // aapt resource value: 0x7F0E00E6 - public const int MaterialAlertDialog_MaterialComponents = 2131624166; - - // aapt resource value: 0x7F0E00E7 - public const int MaterialAlertDialog_MaterialComponents_Body_Text = 2131624167; - - // aapt resource value: 0x7F0E00E8 - public const int MaterialAlertDialog_MaterialComponents_Picker_Date_Calendar = 2131624168; - - // aapt resource value: 0x7F0E00E9 - public const int MaterialAlertDialog_MaterialComponents_Picker_Date_Spinner = 2131624169; - - // aapt resource value: 0x7F0E00EA - public const int MaterialAlertDialog_MaterialComponents_Title_Icon = 2131624170; - - // aapt resource value: 0x7F0E00EB - public const int MaterialAlertDialog_MaterialComponents_Title_Icon_CenterStacked = 2131624171; - - // aapt resource value: 0x7F0E00EC - public const int MaterialAlertDialog_MaterialComponents_Title_Panel = 2131624172; - - // aapt resource value: 0x7F0E00ED - public const int MaterialAlertDialog_MaterialComponents_Title_Panel_CenterStacked = 2131624173; - - // aapt resource value: 0x7F0E00EE - public const int MaterialAlertDialog_MaterialComponents_Title_Text = 2131624174; - - // aapt resource value: 0x7F0E00EF - public const int MaterialAlertDialog_MaterialComponents_Title_Text_CenterStacked = 2131624175; - - // aapt resource value: 0x7F0E00F0 - public const int Platform_AppCompat = 2131624176; - - // aapt resource value: 0x7F0E00F1 - public const int Platform_AppCompat_Light = 2131624177; - - // aapt resource value: 0x7F0E00F2 - public const int Platform_MaterialComponents = 2131624178; - - // aapt resource value: 0x7F0E00F3 - public const int Platform_MaterialComponents_Dialog = 2131624179; - - // aapt resource value: 0x7F0E00F4 - public const int Platform_MaterialComponents_Light = 2131624180; - - // aapt resource value: 0x7F0E00F5 - public const int Platform_MaterialComponents_Light_Dialog = 2131624181; - - // aapt resource value: 0x7F0E00F6 - public const int Platform_ThemeOverlay_AppCompat = 2131624182; - - // aapt resource value: 0x7F0E00F7 - public const int Platform_ThemeOverlay_AppCompat_Dark = 2131624183; - - // aapt resource value: 0x7F0E00F8 - public const int Platform_ThemeOverlay_AppCompat_Light = 2131624184; - - // aapt resource value: 0x7F0E00F9 - public const int Platform_V21_AppCompat = 2131624185; - - // aapt resource value: 0x7F0E00FA - public const int Platform_V21_AppCompat_Light = 2131624186; - - // aapt resource value: 0x7F0E00FB - public const int Platform_V25_AppCompat = 2131624187; - - // aapt resource value: 0x7F0E00FC - public const int Platform_V25_AppCompat_Light = 2131624188; - - // aapt resource value: 0x7F0E00FD - public const int Platform_Widget_AppCompat_Spinner = 2131624189; - - // aapt resource value: 0x7F0E00FE - public const int RtlOverlay_DialogWindowTitle_AppCompat = 2131624190; - - // aapt resource value: 0x7F0E00FF - public const int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem = 2131624191; - - // aapt resource value: 0x7F0E0100 - public const int RtlOverlay_Widget_AppCompat_DialogTitle_Icon = 2131624192; - - // aapt resource value: 0x7F0E0101 - public const int RtlOverlay_Widget_AppCompat_PopupMenuItem = 2131624193; - - // aapt resource value: 0x7F0E0102 - public const int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup = 2131624194; - - // aapt resource value: 0x7F0E0103 - public const int RtlOverlay_Widget_AppCompat_PopupMenuItem_Shortcut = 2131624195; - - // aapt resource value: 0x7F0E0104 - public const int RtlOverlay_Widget_AppCompat_PopupMenuItem_SubmenuArrow = 2131624196; - - // aapt resource value: 0x7F0E0105 - public const int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text = 2131624197; - - // aapt resource value: 0x7F0E0106 - public const int RtlOverlay_Widget_AppCompat_PopupMenuItem_Title = 2131624198; - - // aapt resource value: 0x7F0E010C - public const int RtlOverlay_Widget_AppCompat_SearchView_MagIcon = 2131624204; - - // aapt resource value: 0x7F0E0107 - public const int RtlOverlay_Widget_AppCompat_Search_DropDown = 2131624199; - - // aapt resource value: 0x7F0E0108 - public const int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 = 2131624200; - - // aapt resource value: 0x7F0E0109 - public const int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 = 2131624201; - - // aapt resource value: 0x7F0E010A - public const int RtlOverlay_Widget_AppCompat_Search_DropDown_Query = 2131624202; - - // aapt resource value: 0x7F0E010B - public const int RtlOverlay_Widget_AppCompat_Search_DropDown_Text = 2131624203; - - // aapt resource value: 0x7F0E010D - public const int RtlUnderlay_Widget_AppCompat_ActionButton = 2131624205; - - // aapt resource value: 0x7F0E010E - public const int RtlUnderlay_Widget_AppCompat_ActionButton_Overflow = 2131624206; - - // aapt resource value: 0x7F0E0115 - public const int ShapeAppearanceOverlay = 2131624213; - - // aapt resource value: 0x7F0E0116 - public const int ShapeAppearanceOverlay_BottomLeftDifferentCornerSize = 2131624214; - - // aapt resource value: 0x7F0E0117 - public const int ShapeAppearanceOverlay_BottomRightCut = 2131624215; - - // aapt resource value: 0x7F0E0118 - public const int ShapeAppearanceOverlay_Cut = 2131624216; - - // aapt resource value: 0x7F0E0119 - public const int ShapeAppearanceOverlay_DifferentCornerSize = 2131624217; - - // aapt resource value: 0x7F0E011A - public const int ShapeAppearanceOverlay_MaterialComponents_BottomSheet = 2131624218; - - // aapt resource value: 0x7F0E011B - public const int ShapeAppearanceOverlay_MaterialComponents_Chip = 2131624219; - - // aapt resource value: 0x7F0E011C - public const int ShapeAppearanceOverlay_MaterialComponents_ExtendedFloatingActionButton = 2131624220; - - // aapt resource value: 0x7F0E011D - public const int ShapeAppearanceOverlay_MaterialComponents_FloatingActionButton = 2131624221; - - // aapt resource value: 0x7F0E011E - public const int ShapeAppearanceOverlay_MaterialComponents_MaterialCalendar_Day = 2131624222; - - // aapt resource value: 0x7F0E011F - public const int ShapeAppearanceOverlay_MaterialComponents_MaterialCalendar_Window_Fullscreen = 2131624223; - - // aapt resource value: 0x7F0E0120 - public const int ShapeAppearanceOverlay_MaterialComponents_MaterialCalendar_Year = 2131624224; - - // aapt resource value: 0x7F0E0121 - public const int ShapeAppearanceOverlay_MaterialComponents_TextInputLayout_FilledBox = 2131624225; - - // aapt resource value: 0x7F0E0122 - public const int ShapeAppearanceOverlay_TopLeftCut = 2131624226; - - // aapt resource value: 0x7F0E0123 - public const int ShapeAppearanceOverlay_TopRightDifferentCornerSize = 2131624227; - - // aapt resource value: 0x7F0E010F - public const int ShapeAppearance_MaterialComponents = 2131624207; - - // aapt resource value: 0x7F0E0110 - public const int ShapeAppearance_MaterialComponents_LargeComponent = 2131624208; - - // aapt resource value: 0x7F0E0111 - public const int ShapeAppearance_MaterialComponents_MediumComponent = 2131624209; - - // aapt resource value: 0x7F0E0112 - public const int ShapeAppearance_MaterialComponents_SmallComponent = 2131624210; - - // aapt resource value: 0x7F0E0113 - public const int ShapeAppearance_MaterialComponents_Test = 2131624211; - - // aapt resource value: 0x7F0E0114 - public const int ShapeAppearance_MaterialComponents_Tooltip = 2131624212; - - // aapt resource value: 0x7F0E0129 - public const int TestStyleWithLineHeight = 2131624233; - - // aapt resource value: 0x7F0E012A - public const int TestStyleWithLineHeightAppearance = 2131624234; - - // aapt resource value: 0x7F0E012C - public const int TestStyleWithoutLineHeight = 2131624236; - - // aapt resource value: 0x7F0E012B - public const int TestStyleWithThemeLineHeightAttribute = 2131624235; - - // aapt resource value: 0x7F0E012D - public const int TestThemeWithLineHeight = 2131624237; - - // aapt resource value: 0x7F0E012E - public const int TestThemeWithLineHeightDisabled = 2131624238; - - // aapt resource value: 0x7F0E0124 - public const int Test_ShapeAppearanceOverlay_MaterialComponents_MaterialCalendar_Day = 2131624228; - - // aapt resource value: 0x7F0E0125 - public const int Test_Theme_MaterialComponents_MaterialCalendar = 2131624229; - - // aapt resource value: 0x7F0E0126 - public const int Test_Widget_MaterialComponents_MaterialCalendar = 2131624230; - - // aapt resource value: 0x7F0E0127 - public const int Test_Widget_MaterialComponents_MaterialCalendar_Day = 2131624231; - - // aapt resource value: 0x7F0E0128 - public const int Test_Widget_MaterialComponents_MaterialCalendar_Day_Selected = 2131624232; - - // aapt resource value: 0x7F0E012F - public const int TextAppearance_AppCompat = 2131624239; - - // aapt resource value: 0x7F0E0130 - public const int TextAppearance_AppCompat_Body1 = 2131624240; - - // aapt resource value: 0x7F0E0131 - public const int TextAppearance_AppCompat_Body2 = 2131624241; - - // aapt resource value: 0x7F0E0132 - public const int TextAppearance_AppCompat_Button = 2131624242; - - // aapt resource value: 0x7F0E0133 - public const int TextAppearance_AppCompat_Caption = 2131624243; - - // aapt resource value: 0x7F0E0134 - public const int TextAppearance_AppCompat_Display1 = 2131624244; - - // aapt resource value: 0x7F0E0135 - public const int TextAppearance_AppCompat_Display2 = 2131624245; - - // aapt resource value: 0x7F0E0136 - public const int TextAppearance_AppCompat_Display3 = 2131624246; - - // aapt resource value: 0x7F0E0137 - public const int TextAppearance_AppCompat_Display4 = 2131624247; - - // aapt resource value: 0x7F0E0138 - public const int TextAppearance_AppCompat_Headline = 2131624248; - - // aapt resource value: 0x7F0E0139 - public const int TextAppearance_AppCompat_Inverse = 2131624249; - - // aapt resource value: 0x7F0E013A - public const int TextAppearance_AppCompat_Large = 2131624250; - - // aapt resource value: 0x7F0E013B - public const int TextAppearance_AppCompat_Large_Inverse = 2131624251; - - // aapt resource value: 0x7F0E013C - public const int TextAppearance_AppCompat_Light_SearchResult_Subtitle = 2131624252; - - // aapt resource value: 0x7F0E013D - public const int TextAppearance_AppCompat_Light_SearchResult_Title = 2131624253; - - // aapt resource value: 0x7F0E013E - public const int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large = 2131624254; - - // aapt resource value: 0x7F0E013F - public const int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small = 2131624255; - - // aapt resource value: 0x7F0E0140 - public const int TextAppearance_AppCompat_Medium = 2131624256; - - // aapt resource value: 0x7F0E0141 - public const int TextAppearance_AppCompat_Medium_Inverse = 2131624257; - - // aapt resource value: 0x7F0E0142 - public const int TextAppearance_AppCompat_Menu = 2131624258; - - // aapt resource value: 0x7F0E0143 - public const int TextAppearance_AppCompat_SearchResult_Subtitle = 2131624259; - - // aapt resource value: 0x7F0E0144 - public const int TextAppearance_AppCompat_SearchResult_Title = 2131624260; - - // aapt resource value: 0x7F0E0145 - public const int TextAppearance_AppCompat_Small = 2131624261; - - // aapt resource value: 0x7F0E0146 - public const int TextAppearance_AppCompat_Small_Inverse = 2131624262; - - // aapt resource value: 0x7F0E0147 - public const int TextAppearance_AppCompat_Subhead = 2131624263; - - // aapt resource value: 0x7F0E0148 - public const int TextAppearance_AppCompat_Subhead_Inverse = 2131624264; - - // aapt resource value: 0x7F0E0149 - public const int TextAppearance_AppCompat_Title = 2131624265; - - // aapt resource value: 0x7F0E014A - public const int TextAppearance_AppCompat_Title_Inverse = 2131624266; - - // aapt resource value: 0x7F0E014B - public const int TextAppearance_AppCompat_Tooltip = 2131624267; - - // aapt resource value: 0x7F0E014C - public const int TextAppearance_AppCompat_Widget_ActionBar_Menu = 2131624268; - - // aapt resource value: 0x7F0E014D - public const int TextAppearance_AppCompat_Widget_ActionBar_Subtitle = 2131624269; - - // aapt resource value: 0x7F0E014E - public const int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse = 2131624270; - - // aapt resource value: 0x7F0E014F - public const int TextAppearance_AppCompat_Widget_ActionBar_Title = 2131624271; - - // aapt resource value: 0x7F0E0150 - public const int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse = 2131624272; - - // aapt resource value: 0x7F0E0151 - public const int TextAppearance_AppCompat_Widget_ActionMode_Subtitle = 2131624273; - - // aapt resource value: 0x7F0E0152 - public const int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse = 2131624274; - - // aapt resource value: 0x7F0E0153 - public const int TextAppearance_AppCompat_Widget_ActionMode_Title = 2131624275; - - // aapt resource value: 0x7F0E0154 - public const int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse = 2131624276; - - // aapt resource value: 0x7F0E0155 - public const int TextAppearance_AppCompat_Widget_Button = 2131624277; - - // aapt resource value: 0x7F0E0156 - public const int TextAppearance_AppCompat_Widget_Button_Borderless_Colored = 2131624278; - - // aapt resource value: 0x7F0E0157 - public const int TextAppearance_AppCompat_Widget_Button_Colored = 2131624279; - - // aapt resource value: 0x7F0E0158 - public const int TextAppearance_AppCompat_Widget_Button_Inverse = 2131624280; - - // aapt resource value: 0x7F0E0159 - public const int TextAppearance_AppCompat_Widget_DropDownItem = 2131624281; - - // aapt resource value: 0x7F0E015A - public const int TextAppearance_AppCompat_Widget_PopupMenu_Header = 2131624282; - - // aapt resource value: 0x7F0E015B - public const int TextAppearance_AppCompat_Widget_PopupMenu_Large = 2131624283; - - // aapt resource value: 0x7F0E015C - public const int TextAppearance_AppCompat_Widget_PopupMenu_Small = 2131624284; - - // aapt resource value: 0x7F0E015D - public const int TextAppearance_AppCompat_Widget_Switch = 2131624285; - - // aapt resource value: 0x7F0E015E - public const int TextAppearance_AppCompat_Widget_TextView_SpinnerItem = 2131624286; - - // aapt resource value: 0x7F0E015F - public const int TextAppearance_Compat_Notification = 2131624287; - - // aapt resource value: 0x7F0E0160 - public const int TextAppearance_Compat_Notification_Info = 2131624288; - - // aapt resource value: 0x7F0E0161 - public const int TextAppearance_Compat_Notification_Info_Media = 2131624289; - - // aapt resource value: 0x7F0E0162 - public const int TextAppearance_Compat_Notification_Line2 = 2131624290; - - // aapt resource value: 0x7F0E0163 - public const int TextAppearance_Compat_Notification_Line2_Media = 2131624291; - - // aapt resource value: 0x7F0E0164 - public const int TextAppearance_Compat_Notification_Media = 2131624292; - - // aapt resource value: 0x7F0E0165 - public const int TextAppearance_Compat_Notification_Time = 2131624293; - - // aapt resource value: 0x7F0E0166 - public const int TextAppearance_Compat_Notification_Time_Media = 2131624294; - - // aapt resource value: 0x7F0E0167 - public const int TextAppearance_Compat_Notification_Title = 2131624295; - - // aapt resource value: 0x7F0E0168 - public const int TextAppearance_Compat_Notification_Title_Media = 2131624296; - - // aapt resource value: 0x7F0E0169 - public const int TextAppearance_Design_CollapsingToolbar_Expanded = 2131624297; - - // aapt resource value: 0x7F0E016A - public const int TextAppearance_Design_Counter = 2131624298; - - // aapt resource value: 0x7F0E016B - public const int TextAppearance_Design_Counter_Overflow = 2131624299; - - // aapt resource value: 0x7F0E016C - public const int TextAppearance_Design_Error = 2131624300; - - // aapt resource value: 0x7F0E016D - public const int TextAppearance_Design_HelperText = 2131624301; - - // aapt resource value: 0x7F0E016E - public const int TextAppearance_Design_Hint = 2131624302; - - // aapt resource value: 0x7F0E016F - public const int TextAppearance_Design_Placeholder = 2131624303; - - // aapt resource value: 0x7F0E0170 - public const int TextAppearance_Design_Prefix = 2131624304; - - // aapt resource value: 0x7F0E0171 - public const int TextAppearance_Design_Snackbar_Message = 2131624305; - - // aapt resource value: 0x7F0E0172 - public const int TextAppearance_Design_Suffix = 2131624306; - - // aapt resource value: 0x7F0E0173 - public const int TextAppearance_Design_Tab = 2131624307; - - // aapt resource value: 0x7F0E0174 - public const int TextAppearance_MaterialComponents_Badge = 2131624308; - - // aapt resource value: 0x7F0E0175 - public const int TextAppearance_MaterialComponents_Body1 = 2131624309; - - // aapt resource value: 0x7F0E0176 - public const int TextAppearance_MaterialComponents_Body2 = 2131624310; - - // aapt resource value: 0x7F0E0177 - public const int TextAppearance_MaterialComponents_Button = 2131624311; - - // aapt resource value: 0x7F0E0178 - public const int TextAppearance_MaterialComponents_Caption = 2131624312; - - // aapt resource value: 0x7F0E0179 - public const int TextAppearance_MaterialComponents_Chip = 2131624313; - - // aapt resource value: 0x7F0E017A - public const int TextAppearance_MaterialComponents_Headline1 = 2131624314; - - // aapt resource value: 0x7F0E017B - public const int TextAppearance_MaterialComponents_Headline2 = 2131624315; - - // aapt resource value: 0x7F0E017C - public const int TextAppearance_MaterialComponents_Headline3 = 2131624316; - - // aapt resource value: 0x7F0E017D - public const int TextAppearance_MaterialComponents_Headline4 = 2131624317; - - // aapt resource value: 0x7F0E017E - public const int TextAppearance_MaterialComponents_Headline5 = 2131624318; - - // aapt resource value: 0x7F0E017F - public const int TextAppearance_MaterialComponents_Headline6 = 2131624319; - - // aapt resource value: 0x7F0E0180 - public const int TextAppearance_MaterialComponents_Overline = 2131624320; - - // aapt resource value: 0x7F0E0181 - public const int TextAppearance_MaterialComponents_Subtitle1 = 2131624321; - - // aapt resource value: 0x7F0E0182 - public const int TextAppearance_MaterialComponents_Subtitle2 = 2131624322; - - // aapt resource value: 0x7F0E0183 - public const int TextAppearance_MaterialComponents_TimePicker_Title = 2131624323; - - // aapt resource value: 0x7F0E0184 - public const int TextAppearance_MaterialComponents_Tooltip = 2131624324; - - // aapt resource value: 0x7F0E0185 - public const int TextAppearance_Widget_AppCompat_ExpandedMenu_Item = 2131624325; - - // aapt resource value: 0x7F0E0186 - public const int TextAppearance_Widget_AppCompat_Toolbar_Subtitle = 2131624326; - - // aapt resource value: 0x7F0E0187 - public const int TextAppearance_Widget_AppCompat_Toolbar_Title = 2131624327; - - // aapt resource value: 0x7F0E0206 - public const int ThemeOverlayColorAccentRed = 2131624454; - - // aapt resource value: 0x7F0E01D5 - public const int ThemeOverlay_AppCompat = 2131624405; - - // aapt resource value: 0x7F0E01D6 - public const int ThemeOverlay_AppCompat_ActionBar = 2131624406; - - // aapt resource value: 0x7F0E01D7 - public const int ThemeOverlay_AppCompat_Dark = 2131624407; - - // aapt resource value: 0x7F0E01D8 - public const int ThemeOverlay_AppCompat_Dark_ActionBar = 2131624408; - - // aapt resource value: 0x7F0E01D9 - public const int ThemeOverlay_AppCompat_DayNight = 2131624409; - - // aapt resource value: 0x7F0E01DA - public const int ThemeOverlay_AppCompat_DayNight_ActionBar = 2131624410; - - // aapt resource value: 0x7F0E01DB - public const int ThemeOverlay_AppCompat_Dialog = 2131624411; - - // aapt resource value: 0x7F0E01DC - public const int ThemeOverlay_AppCompat_Dialog_Alert = 2131624412; - - // aapt resource value: 0x7F0E01DD - public const int ThemeOverlay_AppCompat_Light = 2131624413; - - // aapt resource value: 0x7F0E01DE - public const int ThemeOverlay_Design_TextInputEditText = 2131624414; - - // aapt resource value: 0x7F0E01DF - public const int ThemeOverlay_MaterialComponents = 2131624415; - - // aapt resource value: 0x7F0E01E0 - public const int ThemeOverlay_MaterialComponents_ActionBar = 2131624416; - - // aapt resource value: 0x7F0E01E1 - public const int ThemeOverlay_MaterialComponents_ActionBar_Primary = 2131624417; - - // aapt resource value: 0x7F0E01E2 - public const int ThemeOverlay_MaterialComponents_ActionBar_Surface = 2131624418; - - // aapt resource value: 0x7F0E01E3 - public const int ThemeOverlay_MaterialComponents_AutoCompleteTextView = 2131624419; - - // aapt resource value: 0x7F0E01E4 - public const int ThemeOverlay_MaterialComponents_AutoCompleteTextView_FilledBox = 2131624420; - - // aapt resource value: 0x7F0E01E5 - public const int ThemeOverlay_MaterialComponents_AutoCompleteTextView_FilledBox_Dense = 2131624421; - - // aapt resource value: 0x7F0E01E6 - public const int ThemeOverlay_MaterialComponents_AutoCompleteTextView_OutlinedBox = 2131624422; - - // aapt resource value: 0x7F0E01E7 - public const int ThemeOverlay_MaterialComponents_AutoCompleteTextView_OutlinedBox_Dense = 2131624423; - - // aapt resource value: 0x7F0E01E8 - public const int ThemeOverlay_MaterialComponents_BottomAppBar_Primary = 2131624424; - - // aapt resource value: 0x7F0E01E9 - public const int ThemeOverlay_MaterialComponents_BottomAppBar_Surface = 2131624425; - - // aapt resource value: 0x7F0E01EA - public const int ThemeOverlay_MaterialComponents_BottomSheetDialog = 2131624426; - - // aapt resource value: 0x7F0E01EB - public const int ThemeOverlay_MaterialComponents_Dark = 2131624427; - - // aapt resource value: 0x7F0E01EC - public const int ThemeOverlay_MaterialComponents_Dark_ActionBar = 2131624428; - - // aapt resource value: 0x7F0E01ED - public const int ThemeOverlay_MaterialComponents_DayNight_BottomSheetDialog = 2131624429; - - // aapt resource value: 0x7F0E01EE - public const int ThemeOverlay_MaterialComponents_Dialog = 2131624430; - - // aapt resource value: 0x7F0E01EF - public const int ThemeOverlay_MaterialComponents_Dialog_Alert = 2131624431; - - // aapt resource value: 0x7F0E01F0 - public const int ThemeOverlay_MaterialComponents_Dialog_Alert_Framework = 2131624432; - - // aapt resource value: 0x7F0E01F1 - public const int ThemeOverlay_MaterialComponents_Light = 2131624433; - - // aapt resource value: 0x7F0E01F2 - public const int ThemeOverlay_MaterialComponents_Light_BottomSheetDialog = 2131624434; - - // aapt resource value: 0x7F0E01F3 - public const int ThemeOverlay_MaterialComponents_Light_Dialog_Alert_Framework = 2131624435; - - // aapt resource value: 0x7F0E01F4 - public const int ThemeOverlay_MaterialComponents_MaterialAlertDialog = 2131624436; - - // aapt resource value: 0x7F0E01F5 - public const int ThemeOverlay_MaterialComponents_MaterialAlertDialog_Centered = 2131624437; - - // aapt resource value: 0x7F0E01F6 - public const int ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date = 2131624438; - - // aapt resource value: 0x7F0E01F7 - public const int ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date_Calendar = 2131624439; - - // aapt resource value: 0x7F0E01F8 - public const int ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date_Header_Text = 2131624440; - - // aapt resource value: 0x7F0E01F9 - public const int ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date_Header_Text_Day = 2131624441; - - // aapt resource value: 0x7F0E01FA - public const int ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date_Spinner = 2131624442; - - // aapt resource value: 0x7F0E01FB - public const int ThemeOverlay_MaterialComponents_MaterialCalendar = 2131624443; - - // aapt resource value: 0x7F0E01FC - public const int ThemeOverlay_MaterialComponents_MaterialCalendar_Fullscreen = 2131624444; - - // aapt resource value: 0x7F0E01FD - public const int ThemeOverlay_MaterialComponents_TextInputEditText = 2131624445; - - // aapt resource value: 0x7F0E01FE - public const int ThemeOverlay_MaterialComponents_TextInputEditText_FilledBox = 2131624446; - - // aapt resource value: 0x7F0E01FF - public const int ThemeOverlay_MaterialComponents_TextInputEditText_FilledBox_Dense = 2131624447; - - // aapt resource value: 0x7F0E0200 - public const int ThemeOverlay_MaterialComponents_TextInputEditText_OutlinedBox = 2131624448; - - // aapt resource value: 0x7F0E0201 - public const int ThemeOverlay_MaterialComponents_TextInputEditText_OutlinedBox_Dense = 2131624449; - - // aapt resource value: 0x7F0E0202 - public const int ThemeOverlay_MaterialComponents_TimePicker = 2131624450; - - // aapt resource value: 0x7F0E0203 - public const int ThemeOverlay_MaterialComponents_TimePicker_Display = 2131624451; - - // aapt resource value: 0x7F0E0204 - public const int ThemeOverlay_MaterialComponents_Toolbar_Primary = 2131624452; - - // aapt resource value: 0x7F0E0205 - public const int ThemeOverlay_MaterialComponents_Toolbar_Surface = 2131624453; - - // aapt resource value: 0x7F0E0188 - public const int Theme_AppCompat = 2131624328; - - // aapt resource value: 0x7F0E0189 - public const int Theme_AppCompat_CompactMenu = 2131624329; - - // aapt resource value: 0x7F0E018A - public const int Theme_AppCompat_DayNight = 2131624330; - - // aapt resource value: 0x7F0E018B - public const int Theme_AppCompat_DayNight_DarkActionBar = 2131624331; - - // aapt resource value: 0x7F0E018C - public const int Theme_AppCompat_DayNight_Dialog = 2131624332; - - // aapt resource value: 0x7F0E018F - public const int Theme_AppCompat_DayNight_DialogWhenLarge = 2131624335; - - // aapt resource value: 0x7F0E018D - public const int Theme_AppCompat_DayNight_Dialog_Alert = 2131624333; - - // aapt resource value: 0x7F0E018E - public const int Theme_AppCompat_DayNight_Dialog_MinWidth = 2131624334; - - // aapt resource value: 0x7F0E0190 - public const int Theme_AppCompat_DayNight_NoActionBar = 2131624336; - - // aapt resource value: 0x7F0E0191 - public const int Theme_AppCompat_Dialog = 2131624337; - - // aapt resource value: 0x7F0E0194 - public const int Theme_AppCompat_DialogWhenLarge = 2131624340; - - // aapt resource value: 0x7F0E0192 - public const int Theme_AppCompat_Dialog_Alert = 2131624338; - - // aapt resource value: 0x7F0E0193 - public const int Theme_AppCompat_Dialog_MinWidth = 2131624339; - - // aapt resource value: 0x7F0E0195 - public const int Theme_AppCompat_Empty = 2131624341; - - // aapt resource value: 0x7F0E0196 - public const int Theme_AppCompat_Light = 2131624342; - - // aapt resource value: 0x7F0E0197 - public const int Theme_AppCompat_Light_DarkActionBar = 2131624343; - - // aapt resource value: 0x7F0E0198 - public const int Theme_AppCompat_Light_Dialog = 2131624344; - - // aapt resource value: 0x7F0E019B - public const int Theme_AppCompat_Light_DialogWhenLarge = 2131624347; - - // aapt resource value: 0x7F0E0199 - public const int Theme_AppCompat_Light_Dialog_Alert = 2131624345; - - // aapt resource value: 0x7F0E019A - public const int Theme_AppCompat_Light_Dialog_MinWidth = 2131624346; - - // aapt resource value: 0x7F0E019C - public const int Theme_AppCompat_Light_NoActionBar = 2131624348; - - // aapt resource value: 0x7F0E019D - public const int Theme_AppCompat_NoActionBar = 2131624349; - - // aapt resource value: 0x7F0E019E - public const int Theme_Design = 2131624350; - - // aapt resource value: 0x7F0E019F - public const int Theme_Design_BottomSheetDialog = 2131624351; - - // aapt resource value: 0x7F0E01A0 - public const int Theme_Design_Light = 2131624352; - - // aapt resource value: 0x7F0E01A1 - public const int Theme_Design_Light_BottomSheetDialog = 2131624353; - - // aapt resource value: 0x7F0E01A2 - public const int Theme_Design_Light_NoActionBar = 2131624354; - - // aapt resource value: 0x7F0E01A3 - public const int Theme_Design_NoActionBar = 2131624355; - - // aapt resource value: 0x7F0E01A4 - public const int Theme_MaterialComponents = 2131624356; - - // aapt resource value: 0x7F0E01A5 - public const int Theme_MaterialComponents_BottomSheetDialog = 2131624357; - - // aapt resource value: 0x7F0E01A6 - public const int Theme_MaterialComponents_Bridge = 2131624358; - - // aapt resource value: 0x7F0E01A7 - public const int Theme_MaterialComponents_CompactMenu = 2131624359; - - // aapt resource value: 0x7F0E01A8 - public const int Theme_MaterialComponents_DayNight = 2131624360; - - // aapt resource value: 0x7F0E01A9 - public const int Theme_MaterialComponents_DayNight_BottomSheetDialog = 2131624361; - - // aapt resource value: 0x7F0E01AA - public const int Theme_MaterialComponents_DayNight_Bridge = 2131624362; - - // aapt resource value: 0x7F0E01AB - public const int Theme_MaterialComponents_DayNight_DarkActionBar = 2131624363; - - // aapt resource value: 0x7F0E01AC - public const int Theme_MaterialComponents_DayNight_DarkActionBar_Bridge = 2131624364; - - // aapt resource value: 0x7F0E01AD - public const int Theme_MaterialComponents_DayNight_Dialog = 2131624365; - - // aapt resource value: 0x7F0E01B5 - public const int Theme_MaterialComponents_DayNight_DialogWhenLarge = 2131624373; - - // aapt resource value: 0x7F0E01AE - public const int Theme_MaterialComponents_DayNight_Dialog_Alert = 2131624366; - - // aapt resource value: 0x7F0E01AF - public const int Theme_MaterialComponents_DayNight_Dialog_Alert_Bridge = 2131624367; - - // aapt resource value: 0x7F0E01B0 - public const int Theme_MaterialComponents_DayNight_Dialog_Bridge = 2131624368; - - // aapt resource value: 0x7F0E01B1 - public const int Theme_MaterialComponents_DayNight_Dialog_FixedSize = 2131624369; - - // aapt resource value: 0x7F0E01B2 - public const int Theme_MaterialComponents_DayNight_Dialog_FixedSize_Bridge = 2131624370; - - // aapt resource value: 0x7F0E01B3 - public const int Theme_MaterialComponents_DayNight_Dialog_MinWidth = 2131624371; - - // aapt resource value: 0x7F0E01B4 - public const int Theme_MaterialComponents_DayNight_Dialog_MinWidth_Bridge = 2131624372; - - // aapt resource value: 0x7F0E01B6 - public const int Theme_MaterialComponents_DayNight_NoActionBar = 2131624374; - - // aapt resource value: 0x7F0E01B7 - public const int Theme_MaterialComponents_DayNight_NoActionBar_Bridge = 2131624375; - - // aapt resource value: 0x7F0E01B8 - public const int Theme_MaterialComponents_Dialog = 2131624376; - - // aapt resource value: 0x7F0E01C0 - public const int Theme_MaterialComponents_DialogWhenLarge = 2131624384; - - // aapt resource value: 0x7F0E01B9 - public const int Theme_MaterialComponents_Dialog_Alert = 2131624377; - - // aapt resource value: 0x7F0E01BA - public const int Theme_MaterialComponents_Dialog_Alert_Bridge = 2131624378; - - // aapt resource value: 0x7F0E01BB - public const int Theme_MaterialComponents_Dialog_Bridge = 2131624379; - - // aapt resource value: 0x7F0E01BC - public const int Theme_MaterialComponents_Dialog_FixedSize = 2131624380; - - // aapt resource value: 0x7F0E01BD - public const int Theme_MaterialComponents_Dialog_FixedSize_Bridge = 2131624381; - - // aapt resource value: 0x7F0E01BE - public const int Theme_MaterialComponents_Dialog_MinWidth = 2131624382; - - // aapt resource value: 0x7F0E01BF - public const int Theme_MaterialComponents_Dialog_MinWidth_Bridge = 2131624383; - - // aapt resource value: 0x7F0E01C1 - public const int Theme_MaterialComponents_Light = 2131624385; - - // aapt resource value: 0x7F0E01C2 - public const int Theme_MaterialComponents_Light_BarSize = 2131624386; - - // aapt resource value: 0x7F0E01C3 - public const int Theme_MaterialComponents_Light_BottomSheetDialog = 2131624387; - - // aapt resource value: 0x7F0E01C4 - public const int Theme_MaterialComponents_Light_Bridge = 2131624388; - - // aapt resource value: 0x7F0E01C5 - public const int Theme_MaterialComponents_Light_DarkActionBar = 2131624389; - - // aapt resource value: 0x7F0E01C6 - public const int Theme_MaterialComponents_Light_DarkActionBar_Bridge = 2131624390; - - // aapt resource value: 0x7F0E01C7 - public const int Theme_MaterialComponents_Light_Dialog = 2131624391; - - // aapt resource value: 0x7F0E01CF - public const int Theme_MaterialComponents_Light_DialogWhenLarge = 2131624399; - - // aapt resource value: 0x7F0E01C8 - public const int Theme_MaterialComponents_Light_Dialog_Alert = 2131624392; - - // aapt resource value: 0x7F0E01C9 - public const int Theme_MaterialComponents_Light_Dialog_Alert_Bridge = 2131624393; - - // aapt resource value: 0x7F0E01CA - public const int Theme_MaterialComponents_Light_Dialog_Bridge = 2131624394; - - // aapt resource value: 0x7F0E01CB - public const int Theme_MaterialComponents_Light_Dialog_FixedSize = 2131624395; - - // aapt resource value: 0x7F0E01CC - public const int Theme_MaterialComponents_Light_Dialog_FixedSize_Bridge = 2131624396; - - // aapt resource value: 0x7F0E01CD - public const int Theme_MaterialComponents_Light_Dialog_MinWidth = 2131624397; - - // aapt resource value: 0x7F0E01CE - public const int Theme_MaterialComponents_Light_Dialog_MinWidth_Bridge = 2131624398; - - // aapt resource value: 0x7F0E01D0 - public const int Theme_MaterialComponents_Light_LargeTouch = 2131624400; - - // aapt resource value: 0x7F0E01D1 - public const int Theme_MaterialComponents_Light_NoActionBar = 2131624401; - - // aapt resource value: 0x7F0E01D2 - public const int Theme_MaterialComponents_Light_NoActionBar_Bridge = 2131624402; - - // aapt resource value: 0x7F0E01D3 - public const int Theme_MaterialComponents_NoActionBar = 2131624403; - - // aapt resource value: 0x7F0E01D4 - public const int Theme_MaterialComponents_NoActionBar_Bridge = 2131624404; - - // aapt resource value: 0x7F0E0207 - public const int Widget_AppCompat_ActionBar = 2131624455; - - // aapt resource value: 0x7F0E0208 - public const int Widget_AppCompat_ActionBar_Solid = 2131624456; - - // aapt resource value: 0x7F0E0209 - public const int Widget_AppCompat_ActionBar_TabBar = 2131624457; - - // aapt resource value: 0x7F0E020A - public const int Widget_AppCompat_ActionBar_TabText = 2131624458; - - // aapt resource value: 0x7F0E020B - public const int Widget_AppCompat_ActionBar_TabView = 2131624459; - - // aapt resource value: 0x7F0E020C - public const int Widget_AppCompat_ActionButton = 2131624460; - - // aapt resource value: 0x7F0E020D - public const int Widget_AppCompat_ActionButton_CloseMode = 2131624461; - - // aapt resource value: 0x7F0E020E - public const int Widget_AppCompat_ActionButton_Overflow = 2131624462; - - // aapt resource value: 0x7F0E020F - public const int Widget_AppCompat_ActionMode = 2131624463; - - // aapt resource value: 0x7F0E0210 - public const int Widget_AppCompat_ActivityChooserView = 2131624464; - - // aapt resource value: 0x7F0E0211 - public const int Widget_AppCompat_AutoCompleteTextView = 2131624465; - - // aapt resource value: 0x7F0E0212 - public const int Widget_AppCompat_Button = 2131624466; - - // aapt resource value: 0x7F0E0218 - public const int Widget_AppCompat_ButtonBar = 2131624472; - - // aapt resource value: 0x7F0E0219 - public const int Widget_AppCompat_ButtonBar_AlertDialog = 2131624473; - - // aapt resource value: 0x7F0E0213 - public const int Widget_AppCompat_Button_Borderless = 2131624467; - - // aapt resource value: 0x7F0E0214 - public const int Widget_AppCompat_Button_Borderless_Colored = 2131624468; - - // aapt resource value: 0x7F0E0215 - public const int Widget_AppCompat_Button_ButtonBar_AlertDialog = 2131624469; - - // aapt resource value: 0x7F0E0216 - public const int Widget_AppCompat_Button_Colored = 2131624470; - - // aapt resource value: 0x7F0E0217 - public const int Widget_AppCompat_Button_Small = 2131624471; - - // aapt resource value: 0x7F0E021A - public const int Widget_AppCompat_CompoundButton_CheckBox = 2131624474; - - // aapt resource value: 0x7F0E021B - public const int Widget_AppCompat_CompoundButton_RadioButton = 2131624475; - - // aapt resource value: 0x7F0E021C - public const int Widget_AppCompat_CompoundButton_Switch = 2131624476; - - // aapt resource value: 0x7F0E021D - public const int Widget_AppCompat_DrawerArrowToggle = 2131624477; - - // aapt resource value: 0x7F0E021E - public const int Widget_AppCompat_DropDownItem_Spinner = 2131624478; - - // aapt resource value: 0x7F0E021F - public const int Widget_AppCompat_EditText = 2131624479; - - // aapt resource value: 0x7F0E0220 - public const int Widget_AppCompat_ImageButton = 2131624480; - - // aapt resource value: 0x7F0E0221 - public const int Widget_AppCompat_Light_ActionBar = 2131624481; - - // aapt resource value: 0x7F0E0222 - public const int Widget_AppCompat_Light_ActionBar_Solid = 2131624482; - - // aapt resource value: 0x7F0E0223 - public const int Widget_AppCompat_Light_ActionBar_Solid_Inverse = 2131624483; - - // aapt resource value: 0x7F0E0224 - public const int Widget_AppCompat_Light_ActionBar_TabBar = 2131624484; - - // aapt resource value: 0x7F0E0225 - public const int Widget_AppCompat_Light_ActionBar_TabBar_Inverse = 2131624485; - - // aapt resource value: 0x7F0E0226 - public const int Widget_AppCompat_Light_ActionBar_TabText = 2131624486; - - // aapt resource value: 0x7F0E0227 - public const int Widget_AppCompat_Light_ActionBar_TabText_Inverse = 2131624487; - - // aapt resource value: 0x7F0E0228 - public const int Widget_AppCompat_Light_ActionBar_TabView = 2131624488; - - // aapt resource value: 0x7F0E0229 - public const int Widget_AppCompat_Light_ActionBar_TabView_Inverse = 2131624489; - - // aapt resource value: 0x7F0E022A - public const int Widget_AppCompat_Light_ActionButton = 2131624490; - - // aapt resource value: 0x7F0E022B - public const int Widget_AppCompat_Light_ActionButton_CloseMode = 2131624491; - - // aapt resource value: 0x7F0E022C - public const int Widget_AppCompat_Light_ActionButton_Overflow = 2131624492; - - // aapt resource value: 0x7F0E022D - public const int Widget_AppCompat_Light_ActionMode_Inverse = 2131624493; - - // aapt resource value: 0x7F0E022E - public const int Widget_AppCompat_Light_ActivityChooserView = 2131624494; - - // aapt resource value: 0x7F0E022F - public const int Widget_AppCompat_Light_AutoCompleteTextView = 2131624495; - - // aapt resource value: 0x7F0E0230 - public const int Widget_AppCompat_Light_DropDownItem_Spinner = 2131624496; - - // aapt resource value: 0x7F0E0231 - public const int Widget_AppCompat_Light_ListPopupWindow = 2131624497; - - // aapt resource value: 0x7F0E0232 - public const int Widget_AppCompat_Light_ListView_DropDown = 2131624498; - - // aapt resource value: 0x7F0E0233 - public const int Widget_AppCompat_Light_PopupMenu = 2131624499; - - // aapt resource value: 0x7F0E0234 - public const int Widget_AppCompat_Light_PopupMenu_Overflow = 2131624500; - - // aapt resource value: 0x7F0E0235 - public const int Widget_AppCompat_Light_SearchView = 2131624501; - - // aapt resource value: 0x7F0E0236 - public const int Widget_AppCompat_Light_Spinner_DropDown_ActionBar = 2131624502; - - // aapt resource value: 0x7F0E0237 - public const int Widget_AppCompat_ListMenuView = 2131624503; - - // aapt resource value: 0x7F0E0238 - public const int Widget_AppCompat_ListPopupWindow = 2131624504; - - // aapt resource value: 0x7F0E0239 - public const int Widget_AppCompat_ListView = 2131624505; - - // aapt resource value: 0x7F0E023A - public const int Widget_AppCompat_ListView_DropDown = 2131624506; - - // aapt resource value: 0x7F0E023B - public const int Widget_AppCompat_ListView_Menu = 2131624507; - - // aapt resource value: 0x7F0E023C - public const int Widget_AppCompat_PopupMenu = 2131624508; - - // aapt resource value: 0x7F0E023D - public const int Widget_AppCompat_PopupMenu_Overflow = 2131624509; - - // aapt resource value: 0x7F0E023E - public const int Widget_AppCompat_PopupWindow = 2131624510; - - // aapt resource value: 0x7F0E023F - public const int Widget_AppCompat_ProgressBar = 2131624511; - - // aapt resource value: 0x7F0E0240 - public const int Widget_AppCompat_ProgressBar_Horizontal = 2131624512; - - // aapt resource value: 0x7F0E0241 - public const int Widget_AppCompat_RatingBar = 2131624513; - - // aapt resource value: 0x7F0E0242 - public const int Widget_AppCompat_RatingBar_Indicator = 2131624514; - - // aapt resource value: 0x7F0E0243 - public const int Widget_AppCompat_RatingBar_Small = 2131624515; - - // aapt resource value: 0x7F0E0244 - public const int Widget_AppCompat_SearchView = 2131624516; - - // aapt resource value: 0x7F0E0245 - public const int Widget_AppCompat_SearchView_ActionBar = 2131624517; - - // aapt resource value: 0x7F0E0246 - public const int Widget_AppCompat_SeekBar = 2131624518; - - // aapt resource value: 0x7F0E0247 - public const int Widget_AppCompat_SeekBar_Discrete = 2131624519; - - // aapt resource value: 0x7F0E0248 - public const int Widget_AppCompat_Spinner = 2131624520; - - // aapt resource value: 0x7F0E0249 - public const int Widget_AppCompat_Spinner_DropDown = 2131624521; - - // aapt resource value: 0x7F0E024A - public const int Widget_AppCompat_Spinner_DropDown_ActionBar = 2131624522; - - // aapt resource value: 0x7F0E024B - public const int Widget_AppCompat_Spinner_Underlined = 2131624523; - - // aapt resource value: 0x7F0E024C - public const int Widget_AppCompat_TextView = 2131624524; - - // aapt resource value: 0x7F0E024D - public const int Widget_AppCompat_TextView_SpinnerItem = 2131624525; - - // aapt resource value: 0x7F0E024E - public const int Widget_AppCompat_Toolbar = 2131624526; - - // aapt resource value: 0x7F0E024F - public const int Widget_AppCompat_Toolbar_Button_Navigation = 2131624527; - - // aapt resource value: 0x7F0E0250 - public const int Widget_Compat_NotificationActionContainer = 2131624528; - - // aapt resource value: 0x7F0E0251 - public const int Widget_Compat_NotificationActionText = 2131624529; - - // aapt resource value: 0x7F0E0252 - public const int Widget_Design_AppBarLayout = 2131624530; - - // aapt resource value: 0x7F0E0253 - public const int Widget_Design_BottomNavigationView = 2131624531; - - // aapt resource value: 0x7F0E0254 - public const int Widget_Design_BottomSheet_Modal = 2131624532; - - // aapt resource value: 0x7F0E0255 - public const int Widget_Design_CollapsingToolbar = 2131624533; - - // aapt resource value: 0x7F0E0256 - public const int Widget_Design_FloatingActionButton = 2131624534; - - // aapt resource value: 0x7F0E0257 - public const int Widget_Design_NavigationView = 2131624535; - - // aapt resource value: 0x7F0E0258 - public const int Widget_Design_ScrimInsetsFrameLayout = 2131624536; - - // aapt resource value: 0x7F0E0259 - public const int Widget_Design_Snackbar = 2131624537; - - // aapt resource value: 0x7F0E025A - public const int Widget_Design_TabLayout = 2131624538; - - // aapt resource value: 0x7F0E025B - public const int Widget_Design_TextInputEditText = 2131624539; - - // aapt resource value: 0x7F0E025C - public const int Widget_Design_TextInputLayout = 2131624540; - - // aapt resource value: 0x7F0E025D - public const int Widget_MaterialComponents_ActionBar_Primary = 2131624541; - - // aapt resource value: 0x7F0E025E - public const int Widget_MaterialComponents_ActionBar_PrimarySurface = 2131624542; - - // aapt resource value: 0x7F0E025F - public const int Widget_MaterialComponents_ActionBar_Solid = 2131624543; - - // aapt resource value: 0x7F0E0260 - public const int Widget_MaterialComponents_ActionBar_Surface = 2131624544; - - // aapt resource value: 0x7F0E0261 - public const int Widget_MaterialComponents_AppBarLayout_Primary = 2131624545; - - // aapt resource value: 0x7F0E0262 - public const int Widget_MaterialComponents_AppBarLayout_PrimarySurface = 2131624546; - - // aapt resource value: 0x7F0E0263 - public const int Widget_MaterialComponents_AppBarLayout_Surface = 2131624547; - - // aapt resource value: 0x7F0E0264 - public const int Widget_MaterialComponents_AutoCompleteTextView_FilledBox = 2131624548; - - // aapt resource value: 0x7F0E0265 - public const int Widget_MaterialComponents_AutoCompleteTextView_FilledBox_Dense = 2131624549; - - // aapt resource value: 0x7F0E0266 - public const int Widget_MaterialComponents_AutoCompleteTextView_OutlinedBox = 2131624550; - - // aapt resource value: 0x7F0E0267 - public const int Widget_MaterialComponents_AutoCompleteTextView_OutlinedBox_Dense = 2131624551; - - // aapt resource value: 0x7F0E0268 - public const int Widget_MaterialComponents_Badge = 2131624552; - - // aapt resource value: 0x7F0E0269 - public const int Widget_MaterialComponents_BottomAppBar = 2131624553; - - // aapt resource value: 0x7F0E026A - public const int Widget_MaterialComponents_BottomAppBar_Colored = 2131624554; - - // aapt resource value: 0x7F0E026B - public const int Widget_MaterialComponents_BottomAppBar_PrimarySurface = 2131624555; - - // aapt resource value: 0x7F0E026C - public const int Widget_MaterialComponents_BottomNavigationView = 2131624556; - - // aapt resource value: 0x7F0E026D - public const int Widget_MaterialComponents_BottomNavigationView_Colored = 2131624557; - - // aapt resource value: 0x7F0E026E - public const int Widget_MaterialComponents_BottomNavigationView_PrimarySurface = 2131624558; - - // aapt resource value: 0x7F0E026F - public const int Widget_MaterialComponents_BottomSheet = 2131624559; - - // aapt resource value: 0x7F0E0270 - public const int Widget_MaterialComponents_BottomSheet_Modal = 2131624560; - - // aapt resource value: 0x7F0E0271 - public const int Widget_MaterialComponents_Button = 2131624561; - - // aapt resource value: 0x7F0E0272 - public const int Widget_MaterialComponents_Button_Icon = 2131624562; - - // aapt resource value: 0x7F0E0273 - public const int Widget_MaterialComponents_Button_OutlinedButton = 2131624563; - - // aapt resource value: 0x7F0E0274 - public const int Widget_MaterialComponents_Button_OutlinedButton_Icon = 2131624564; - - // aapt resource value: 0x7F0E0275 - public const int Widget_MaterialComponents_Button_TextButton = 2131624565; - - // aapt resource value: 0x7F0E0276 - public const int Widget_MaterialComponents_Button_TextButton_Dialog = 2131624566; - - // aapt resource value: 0x7F0E0277 - public const int Widget_MaterialComponents_Button_TextButton_Dialog_Flush = 2131624567; - - // aapt resource value: 0x7F0E0278 - public const int Widget_MaterialComponents_Button_TextButton_Dialog_Icon = 2131624568; - - // aapt resource value: 0x7F0E0279 - public const int Widget_MaterialComponents_Button_TextButton_Icon = 2131624569; - - // aapt resource value: 0x7F0E027A - public const int Widget_MaterialComponents_Button_TextButton_Snackbar = 2131624570; - - // aapt resource value: 0x7F0E027B - public const int Widget_MaterialComponents_Button_UnelevatedButton = 2131624571; - - // aapt resource value: 0x7F0E027C - public const int Widget_MaterialComponents_Button_UnelevatedButton_Icon = 2131624572; - - // aapt resource value: 0x7F0E027D - public const int Widget_MaterialComponents_CardView = 2131624573; - - // aapt resource value: 0x7F0E027E - public const int Widget_MaterialComponents_CheckedTextView = 2131624574; - - // aapt resource value: 0x7F0E0283 - public const int Widget_MaterialComponents_ChipGroup = 2131624579; - - // aapt resource value: 0x7F0E027F - public const int Widget_MaterialComponents_Chip_Action = 2131624575; - - // aapt resource value: 0x7F0E0280 - public const int Widget_MaterialComponents_Chip_Choice = 2131624576; - - // aapt resource value: 0x7F0E0281 - public const int Widget_MaterialComponents_Chip_Entry = 2131624577; - - // aapt resource value: 0x7F0E0282 - public const int Widget_MaterialComponents_Chip_Filter = 2131624578; - - // aapt resource value: 0x7F0E0284 - public const int Widget_MaterialComponents_CircularProgressIndicator = 2131624580; - - // aapt resource value: 0x7F0E0285 - public const int Widget_MaterialComponents_CircularProgressIndicator_ExtraSmall = 2131624581; - - // aapt resource value: 0x7F0E0286 - public const int Widget_MaterialComponents_CircularProgressIndicator_Medium = 2131624582; - - // aapt resource value: 0x7F0E0287 - public const int Widget_MaterialComponents_CircularProgressIndicator_Small = 2131624583; - - // aapt resource value: 0x7F0E0288 - public const int Widget_MaterialComponents_CollapsingToolbar = 2131624584; - - // aapt resource value: 0x7F0E0289 - public const int Widget_MaterialComponents_CompoundButton_CheckBox = 2131624585; - - // aapt resource value: 0x7F0E028A - public const int Widget_MaterialComponents_CompoundButton_RadioButton = 2131624586; - - // aapt resource value: 0x7F0E028B - public const int Widget_MaterialComponents_CompoundButton_Switch = 2131624587; - - // aapt resource value: 0x7F0E028C - public const int Widget_MaterialComponents_ExtendedFloatingActionButton = 2131624588; - - // aapt resource value: 0x7F0E028D - public const int Widget_MaterialComponents_ExtendedFloatingActionButton_Icon = 2131624589; - - // aapt resource value: 0x7F0E028E - public const int Widget_MaterialComponents_FloatingActionButton = 2131624590; - - // aapt resource value: 0x7F0E028F - public const int Widget_MaterialComponents_Light_ActionBar_Solid = 2131624591; - - // aapt resource value: 0x7F0E0290 - public const int Widget_MaterialComponents_LinearProgressIndicator = 2131624592; - - // aapt resource value: 0x7F0E0291 - public const int Widget_MaterialComponents_MaterialButtonToggleGroup = 2131624593; - - // aapt resource value: 0x7F0E0292 - public const int Widget_MaterialComponents_MaterialCalendar = 2131624594; - - // aapt resource value: 0x7F0E0293 - public const int Widget_MaterialComponents_MaterialCalendar_Day = 2131624595; - - // aapt resource value: 0x7F0E0297 - public const int Widget_MaterialComponents_MaterialCalendar_DayTextView = 2131624599; - - // aapt resource value: 0x7F0E0294 - public const int Widget_MaterialComponents_MaterialCalendar_Day_Invalid = 2131624596; - - // aapt resource value: 0x7F0E0295 - public const int Widget_MaterialComponents_MaterialCalendar_Day_Selected = 2131624597; - - // aapt resource value: 0x7F0E0296 - public const int Widget_MaterialComponents_MaterialCalendar_Day_Today = 2131624598; - - // aapt resource value: 0x7F0E0298 - public const int Widget_MaterialComponents_MaterialCalendar_Fullscreen = 2131624600; - - // aapt resource value: 0x7F0E0299 - public const int Widget_MaterialComponents_MaterialCalendar_HeaderCancelButton = 2131624601; - - // aapt resource value: 0x7F0E029A - public const int Widget_MaterialComponents_MaterialCalendar_HeaderConfirmButton = 2131624602; - - // aapt resource value: 0x7F0E029B - public const int Widget_MaterialComponents_MaterialCalendar_HeaderDivider = 2131624603; - - // aapt resource value: 0x7F0E029C - public const int Widget_MaterialComponents_MaterialCalendar_HeaderLayout = 2131624604; - - // aapt resource value: 0x7F0E029D - public const int Widget_MaterialComponents_MaterialCalendar_HeaderSelection = 2131624605; - - // aapt resource value: 0x7F0E029E - public const int Widget_MaterialComponents_MaterialCalendar_HeaderSelection_Fullscreen = 2131624606; - - // aapt resource value: 0x7F0E029F - public const int Widget_MaterialComponents_MaterialCalendar_HeaderTitle = 2131624607; - - // aapt resource value: 0x7F0E02A0 - public const int Widget_MaterialComponents_MaterialCalendar_HeaderToggleButton = 2131624608; - - // aapt resource value: 0x7F0E02A1 - public const int Widget_MaterialComponents_MaterialCalendar_Item = 2131624609; - - // aapt resource value: 0x7F0E02A2 - public const int Widget_MaterialComponents_MaterialCalendar_MonthNavigationButton = 2131624610; - - // aapt resource value: 0x7F0E02A3 - public const int Widget_MaterialComponents_MaterialCalendar_MonthTextView = 2131624611; - - // aapt resource value: 0x7F0E02A4 - public const int Widget_MaterialComponents_MaterialCalendar_Year = 2131624612; - - // aapt resource value: 0x7F0E02A7 - public const int Widget_MaterialComponents_MaterialCalendar_YearNavigationButton = 2131624615; - - // aapt resource value: 0x7F0E02A5 - public const int Widget_MaterialComponents_MaterialCalendar_Year_Selected = 2131624613; - - // aapt resource value: 0x7F0E02A6 - public const int Widget_MaterialComponents_MaterialCalendar_Year_Today = 2131624614; - - // aapt resource value: 0x7F0E02A8 - public const int Widget_MaterialComponents_NavigationView = 2131624616; - - // aapt resource value: 0x7F0E02A9 - public const int Widget_MaterialComponents_PopupMenu = 2131624617; - - // aapt resource value: 0x7F0E02AA - public const int Widget_MaterialComponents_PopupMenu_ContextMenu = 2131624618; - - // aapt resource value: 0x7F0E02AB - public const int Widget_MaterialComponents_PopupMenu_ListPopupWindow = 2131624619; - - // aapt resource value: 0x7F0E02AC - public const int Widget_MaterialComponents_PopupMenu_Overflow = 2131624620; - - // aapt resource value: 0x7F0E02AD - public const int Widget_MaterialComponents_ProgressIndicator = 2131624621; - - // aapt resource value: 0x7F0E02AE - public const int Widget_MaterialComponents_ShapeableImageView = 2131624622; - - // aapt resource value: 0x7F0E02AF - public const int Widget_MaterialComponents_Slider = 2131624623; - - // aapt resource value: 0x7F0E02B0 - public const int Widget_MaterialComponents_Snackbar = 2131624624; - - // aapt resource value: 0x7F0E02B1 - public const int Widget_MaterialComponents_Snackbar_FullWidth = 2131624625; - - // aapt resource value: 0x7F0E02B2 - public const int Widget_MaterialComponents_Snackbar_TextView = 2131624626; - - // aapt resource value: 0x7F0E02B3 - public const int Widget_MaterialComponents_TabLayout = 2131624627; - - // aapt resource value: 0x7F0E02B4 - public const int Widget_MaterialComponents_TabLayout_Colored = 2131624628; - - // aapt resource value: 0x7F0E02B5 - public const int Widget_MaterialComponents_TabLayout_PrimarySurface = 2131624629; - - // aapt resource value: 0x7F0E02B6 - public const int Widget_MaterialComponents_TextInputEditText_FilledBox = 2131624630; - - // aapt resource value: 0x7F0E02B7 - public const int Widget_MaterialComponents_TextInputEditText_FilledBox_Dense = 2131624631; - - // aapt resource value: 0x7F0E02B8 - public const int Widget_MaterialComponents_TextInputEditText_OutlinedBox = 2131624632; - - // aapt resource value: 0x7F0E02B9 - public const int Widget_MaterialComponents_TextInputEditText_OutlinedBox_Dense = 2131624633; - - // aapt resource value: 0x7F0E02BA - public const int Widget_MaterialComponents_TextInputLayout_FilledBox = 2131624634; - - // aapt resource value: 0x7F0E02BB - public const int Widget_MaterialComponents_TextInputLayout_FilledBox_Dense = 2131624635; - - // aapt resource value: 0x7F0E02BC - public const int Widget_MaterialComponents_TextInputLayout_FilledBox_Dense_ExposedDropdownMenu = 2131624636; - - // aapt resource value: 0x7F0E02BD - public const int Widget_MaterialComponents_TextInputLayout_FilledBox_ExposedDropdownMenu = 2131624637; - - // aapt resource value: 0x7F0E02BE - public const int Widget_MaterialComponents_TextInputLayout_OutlinedBox = 2131624638; - - // aapt resource value: 0x7F0E02BF - public const int Widget_MaterialComponents_TextInputLayout_OutlinedBox_Dense = 2131624639; - - // aapt resource value: 0x7F0E02C0 - public const int Widget_MaterialComponents_TextInputLayout_OutlinedBox_Dense_ExposedDropdownMenu = 2131624640; - - // aapt resource value: 0x7F0E02C1 - public const int Widget_MaterialComponents_TextInputLayout_OutlinedBox_ExposedDropdownMenu = 2131624641; - - // aapt resource value: 0x7F0E02C2 - public const int Widget_MaterialComponents_TextView = 2131624642; - - // aapt resource value: 0x7F0E02C3 - public const int Widget_MaterialComponents_TimePicker = 2131624643; - - // aapt resource value: 0x7F0E02C4 - public const int Widget_MaterialComponents_TimePicker_Button = 2131624644; - - // aapt resource value: 0x7F0E02C5 - public const int Widget_MaterialComponents_TimePicker_Clock = 2131624645; - - // aapt resource value: 0x7F0E02C6 - public const int Widget_MaterialComponents_TimePicker_Display = 2131624646; - - // aapt resource value: 0x7F0E02C7 - public const int Widget_MaterialComponents_TimePicker_Display_TextInputEditText = 2131624647; - - // aapt resource value: 0x7F0E02C8 - public const int Widget_MaterialComponents_TimePicker_ImageButton = 2131624648; - - // aapt resource value: 0x7F0E02C9 - public const int Widget_MaterialComponents_TimePicker_ImageButton_ShapeAppearance = 2131624649; - - // aapt resource value: 0x7F0E02CA - public const int Widget_MaterialComponents_Toolbar = 2131624650; - - // aapt resource value: 0x7F0E02CB - public const int Widget_MaterialComponents_Toolbar_Primary = 2131624651; - - // aapt resource value: 0x7F0E02CC - public const int Widget_MaterialComponents_Toolbar_PrimarySurface = 2131624652; - - // aapt resource value: 0x7F0E02CD - public const int Widget_MaterialComponents_Toolbar_Surface = 2131624653; - - // aapt resource value: 0x7F0E02CE - public const int Widget_MaterialComponents_Tooltip = 2131624654; - - // aapt resource value: 0x7F0E02CF - public const int Widget_Support_CoordinatorLayout = 2131624655; - - static Style() - { - global::Android.Runtime.ResourceIdManager.UpdateIdValues(); - } - - private Style() - { - } - } - - public partial class Styleable - { - - // aapt resource value: { 0x7F03003A,0x7F030041,0x7F030042,0x7F0300D1,0x7F0300D2,0x7F0300D3,0x7F0300D4,0x7F0300D5,0x7F0300D6,0x7F0300FC,0x7F03010C,0x7F03010D,0x7F030126,0x7F030179,0x7F030180,0x7F030186,0x7F030187,0x7F03018A,0x7F030195,0x7F0301A7,0x7F030214,0x7F030255,0x7F030280,0x7F030287,0x7F030288,0x7F0302D5,0x7F0302D8,0x7F030333,0x7F03033D } - public static int[] ActionBar = new int[] { - 2130903098, - 2130903105, - 2130903106, - 2130903249, - 2130903250, - 2130903251, - 2130903252, - 2130903253, - 2130903254, - 2130903292, - 2130903308, - 2130903309, - 2130903334, - 2130903417, - 2130903424, - 2130903430, - 2130903431, - 2130903434, - 2130903445, - 2130903463, - 2130903572, - 2130903637, - 2130903680, - 2130903687, - 2130903688, - 2130903765, - 2130903768, - 2130903859, - 2130903869}; - - // aapt resource value: { 0x10100B3 } - public static int[] ActionBarLayout = new int[] { - 16842931}; - - // aapt resource value: 0 - public const int ActionBarLayout_android_layout_gravity = 0; - - // aapt resource value: 0 - public const int ActionBar_background = 0; - - // aapt resource value: 1 - public const int ActionBar_backgroundSplit = 1; - - // aapt resource value: 2 - public const int ActionBar_backgroundStacked = 2; - - // aapt resource value: 3 - public const int ActionBar_contentInsetEnd = 3; - - // aapt resource value: 4 - public const int ActionBar_contentInsetEndWithActions = 4; - - // aapt resource value: 5 - public const int ActionBar_contentInsetLeft = 5; - - // aapt resource value: 6 - public const int ActionBar_contentInsetRight = 6; - - // aapt resource value: 7 - public const int ActionBar_contentInsetStart = 7; - - // aapt resource value: 8 - public const int ActionBar_contentInsetStartWithNavigation = 8; - - // aapt resource value: 9 - public const int ActionBar_customNavigationLayout = 9; - - // aapt resource value: 10 - public const int ActionBar_displayOptions = 10; - - // aapt resource value: 11 - public const int ActionBar_divider = 11; - - // aapt resource value: 12 - public const int ActionBar_elevation = 12; - - // aapt resource value: 13 - public const int ActionBar_height = 13; - - // aapt resource value: 14 - public const int ActionBar_hideOnContentScroll = 14; - - // aapt resource value: 15 - public const int ActionBar_homeAsUpIndicator = 15; - - // aapt resource value: 16 - public const int ActionBar_homeLayout = 16; - - // aapt resource value: 17 - public const int ActionBar_icon = 17; - - // aapt resource value: 18 - public const int ActionBar_indeterminateProgressStyle = 18; - - // aapt resource value: 19 - public const int ActionBar_itemPadding = 19; - - // aapt resource value: 20 - public const int ActionBar_logo = 20; - - // aapt resource value: 21 - public const int ActionBar_navigationMode = 21; - - // aapt resource value: 22 - public const int ActionBar_popupTheme = 22; - - // aapt resource value: 23 - public const int ActionBar_progressBarPadding = 23; - - // aapt resource value: 24 - public const int ActionBar_progressBarStyle = 24; - - // aapt resource value: 25 - public const int ActionBar_subtitle = 25; - - // aapt resource value: 26 - public const int ActionBar_subtitleTextStyle = 26; - - // aapt resource value: 27 - public const int ActionBar_title = 27; - - // aapt resource value: 28 - public const int ActionBar_titleTextStyle = 28; - - // aapt resource value: { 0x101013F } - public static int[] ActionMenuItemView = new int[] { - 16843071}; - - // aapt resource value: 0 - public const int ActionMenuItemView_android_minWidth = 0; - - // aapt resource value: { 0xFFFFFFFF } - public static int[] ActionMenuView = new int[] { - -1}; - - // aapt resource value: { 0x7F03003A,0x7F030041,0x7F0300AB,0x7F030179,0x7F0302D8,0x7F03033D } - public static int[] ActionMode = new int[] { - 2130903098, - 2130903105, - 2130903211, - 2130903417, - 2130903768, - 2130903869}; - - // aapt resource value: 0 - public const int ActionMode_background = 0; - - // aapt resource value: 1 - public const int ActionMode_backgroundSplit = 1; - - // aapt resource value: 2 - public const int ActionMode_closeItemLayout = 2; - - // aapt resource value: 3 - public const int ActionMode_height = 3; - - // aapt resource value: 4 - public const int ActionMode_subtitleTextStyle = 4; - - // aapt resource value: 5 - public const int ActionMode_titleTextStyle = 5; - - // aapt resource value: { 0x7F030139,0x7F03019B } - public static int[] ActivityChooserView = new int[] { - 2130903353, - 2130903451}; - - // aapt resource value: 0 - public const int ActivityChooserView_expandActivityOverflowButtonDrawable = 0; - - // aapt resource value: 1 - public const int ActivityChooserView_initialActivityCount = 1; - - // aapt resource value: { 0x10100F2,0x7F030070,0x7F030071,0x7F030209,0x7F03020A,0x7F030251,0x7F0302B1,0x7F0302B3 } - public static int[] AlertDialog = new int[] { - 16842994, - 2130903152, - 2130903153, - 2130903561, - 2130903562, - 2130903633, - 2130903729, - 2130903731}; - - // aapt resource value: 0 - public const int AlertDialog_android_layout = 0; - - // aapt resource value: 1 - public const int AlertDialog_buttonIconDimen = 1; - - // aapt resource value: 2 - public const int AlertDialog_buttonPanelSideLayout = 2; - - // aapt resource value: 3 - public const int AlertDialog_listItemLayout = 3; - - // aapt resource value: 4 - public const int AlertDialog_listLayout = 4; - - // aapt resource value: 5 - public const int AlertDialog_multiChoiceItemLayout = 5; - - // aapt resource value: 6 - public const int AlertDialog_showTitle = 6; - - // aapt resource value: 7 - public const int AlertDialog_singleChoiceItemLayout = 7; - - // aapt resource value: { 0x101011C,0x1010194,0x1010195,0x1010196,0x101030C,0x101030D } - public static int[] AnimatedStateListDrawableCompat = new int[] { - 16843036, - 16843156, - 16843157, - 16843158, - 16843532, - 16843533}; - - // aapt resource value: 3 - public const int AnimatedStateListDrawableCompat_android_constantSize = 3; - - // aapt resource value: 0 - public const int AnimatedStateListDrawableCompat_android_dither = 0; - - // aapt resource value: 4 - public const int AnimatedStateListDrawableCompat_android_enterFadeDuration = 4; - - // aapt resource value: 5 - public const int AnimatedStateListDrawableCompat_android_exitFadeDuration = 5; - - // aapt resource value: 2 - public const int AnimatedStateListDrawableCompat_android_variablePadding = 2; - - // aapt resource value: 1 - public const int AnimatedStateListDrawableCompat_android_visible = 1; - - // aapt resource value: { 0x10100D0,0x1010199 } - public static int[] AnimatedStateListDrawableItem = new int[] { - 16842960, - 16843161}; - - // aapt resource value: 1 - public const int AnimatedStateListDrawableItem_android_drawable = 1; - - // aapt resource value: 0 - public const int AnimatedStateListDrawableItem_android_id = 0; - - // aapt resource value: { 0x1010199,0x1010449,0x101044A,0x101044B } - public static int[] AnimatedStateListDrawableTransition = new int[] { - 16843161, - 16843849, - 16843850, - 16843851}; - - // aapt resource value: 0 - public const int AnimatedStateListDrawableTransition_android_drawable = 0; - - // aapt resource value: 2 - public const int AnimatedStateListDrawableTransition_android_fromId = 2; - - // aapt resource value: 3 - public const int AnimatedStateListDrawableTransition_android_reversible = 3; - - // aapt resource value: 1 - public const int AnimatedStateListDrawableTransition_android_toId = 1; - - // aapt resource value: { 0x10100D4,0x101048F,0x1010540,0x7F030126,0x7F03013A,0x7F0301FF,0x7F030200,0x7F0302CF } - public static int[] AppBarLayout = new int[] { - 16842964, - 16843919, - 16844096, - 2130903334, - 2130903354, - 2130903551, - 2130903552, - 2130903759}; - - // aapt resource value: { 0x7F0302C9,0x7F0302CA,0x7F0302CC,0x7F0302CD } - public static int[] AppBarLayoutStates = new int[] { - 2130903753, - 2130903754, - 2130903756, - 2130903757}; - - // aapt resource value: 0 - public const int AppBarLayoutStates_state_collapsed = 0; - - // aapt resource value: 1 - public const int AppBarLayoutStates_state_collapsible = 1; - - // aapt resource value: 2 - public const int AppBarLayoutStates_state_liftable = 2; - - // aapt resource value: 3 - public const int AppBarLayoutStates_state_lifted = 3; - - // aapt resource value: 0 - public const int AppBarLayout_android_background = 0; - - // aapt resource value: 2 - public const int AppBarLayout_android_keyboardNavigationCluster = 2; - - // aapt resource value: 1 - public const int AppBarLayout_android_touchscreenBlocksFocus = 1; - - // aapt resource value: 3 - public const int AppBarLayout_elevation = 3; - - // aapt resource value: 4 - public const int AppBarLayout_expanded = 4; - - // aapt resource value: { 0x7F0301FD,0x7F0301FE } - public static int[] AppBarLayout_Layout = new int[] { - 2130903549, - 2130903550}; - - // aapt resource value: 0 - public const int AppBarLayout_Layout_layout_scrollFlags = 0; - - // aapt resource value: 1 - public const int AppBarLayout_Layout_layout_scrollInterpolator = 1; - - // aapt resource value: 5 - public const int AppBarLayout_liftOnScroll = 5; - - // aapt resource value: 6 - public const int AppBarLayout_liftOnScrollTargetViewId = 6; - - // aapt resource value: 7 - public const int AppBarLayout_statusBarForeground = 7; - - // aapt resource value: { 0x1010119,0x7F0302C0,0x7F030331,0x7F030332 } - public static int[] AppCompatImageView = new int[] { - 16843033, - 2130903744, - 2130903857, - 2130903858}; - - // aapt resource value: 0 - public const int AppCompatImageView_android_src = 0; - - // aapt resource value: 1 - public const int AppCompatImageView_srcCompat = 1; - - // aapt resource value: 2 - public const int AppCompatImageView_tint = 2; - - // aapt resource value: 3 - public const int AppCompatImageView_tintMode = 3; - - // aapt resource value: { 0x1010142,0x7F03032D,0x7F03032E,0x7F03032F } - public static int[] AppCompatSeekBar = new int[] { - 16843074, - 2130903853, - 2130903854, - 2130903855}; - - // aapt resource value: 0 - public const int AppCompatSeekBar_android_thumb = 0; - - // aapt resource value: 1 - public const int AppCompatSeekBar_tickMark = 1; - - // aapt resource value: 2 - public const int AppCompatSeekBar_tickMarkTint = 2; - - // aapt resource value: 3 - public const int AppCompatSeekBar_tickMarkTintMode = 3; - - // aapt resource value: { 0x1010034,0x101016D,0x101016E,0x101016F,0x1010170,0x1010392,0x1010393 } - public static int[] AppCompatTextHelper = new int[] { - 16842804, - 16843117, - 16843118, - 16843119, - 16843120, - 16843666, - 16843667}; - - // aapt resource value: 2 - public const int AppCompatTextHelper_android_drawableBottom = 2; - - // aapt resource value: 6 - public const int AppCompatTextHelper_android_drawableEnd = 6; - - // aapt resource value: 3 - public const int AppCompatTextHelper_android_drawableLeft = 3; - - // aapt resource value: 4 - public const int AppCompatTextHelper_android_drawableRight = 4; - - // aapt resource value: 5 - public const int AppCompatTextHelper_android_drawableStart = 5; - - // aapt resource value: 1 - public const int AppCompatTextHelper_android_drawableTop = 1; - - // aapt resource value: 0 - public const int AppCompatTextHelper_android_textAppearance = 0; - - // aapt resource value: { 0x1010034,0x7F030034,0x7F030035,0x7F030036,0x7F030037,0x7F030038,0x7F030115,0x7F030116,0x7F030117,0x7F030118,0x7F03011A,0x7F03011B,0x7F03011C,0x7F03011D,0x7F030151,0x7F030167,0x7F03016F,0x7F0301BD,0x7F030202,0x7F030301,0x7F03031D } - public static int[] AppCompatTextView = new int[] { - 16842804, - 2130903092, - 2130903093, - 2130903094, - 2130903095, - 2130903096, - 2130903317, - 2130903318, - 2130903319, - 2130903320, - 2130903322, - 2130903323, - 2130903324, - 2130903325, - 2130903377, - 2130903399, - 2130903407, - 2130903485, - 2130903554, - 2130903809, - 2130903837}; - - // aapt resource value: 0 - public const int AppCompatTextView_android_textAppearance = 0; - - // aapt resource value: 1 - public const int AppCompatTextView_autoSizeMaxTextSize = 1; - - // aapt resource value: 2 - public const int AppCompatTextView_autoSizeMinTextSize = 2; - - // aapt resource value: 3 - public const int AppCompatTextView_autoSizePresetSizes = 3; - - // aapt resource value: 4 - public const int AppCompatTextView_autoSizeStepGranularity = 4; - - // aapt resource value: 5 - public const int AppCompatTextView_autoSizeTextType = 5; - - // aapt resource value: 6 - public const int AppCompatTextView_drawableBottomCompat = 6; - - // aapt resource value: 7 - public const int AppCompatTextView_drawableEndCompat = 7; - - // aapt resource value: 8 - public const int AppCompatTextView_drawableLeftCompat = 8; - - // aapt resource value: 9 - public const int AppCompatTextView_drawableRightCompat = 9; - - // aapt resource value: 10 - public const int AppCompatTextView_drawableStartCompat = 10; - - // aapt resource value: 11 - public const int AppCompatTextView_drawableTint = 11; - - // aapt resource value: 12 - public const int AppCompatTextView_drawableTintMode = 12; - - // aapt resource value: 13 - public const int AppCompatTextView_drawableTopCompat = 13; - - // aapt resource value: 14 - public const int AppCompatTextView_firstBaselineToTopHeight = 14; - - // aapt resource value: 15 - public const int AppCompatTextView_fontFamily = 15; - - // aapt resource value: 16 - public const int AppCompatTextView_fontVariationSettings = 16; - - // aapt resource value: 17 - public const int AppCompatTextView_lastBaselineToBottomHeight = 17; - - // aapt resource value: 18 - public const int AppCompatTextView_lineHeight = 18; - - // aapt resource value: 19 - public const int AppCompatTextView_textAllCaps = 19; - - // aapt resource value: 20 - public const int AppCompatTextView_textLocale = 20; - - // aapt resource value: { 0x1010057,0x10100AE,0x7F030000,0x7F030001,0x7F030002,0x7F030003,0x7F030004,0x7F030005,0x7F030006,0x7F030007,0x7F030008,0x7F030009,0x7F03000A,0x7F03000B,0x7F03000C,0x7F03000E,0x7F03000F,0x7F030010,0x7F030011,0x7F030012,0x7F030013,0x7F030014,0x7F030015,0x7F030016,0x7F030017,0x7F030018,0x7F030019,0x7F03001A,0x7F03001B,0x7F03001C,0x7F03001D,0x7F03001E,0x7F030022,0x7F030023,0x7F030024,0x7F030025,0x7F030026,0x7F030033,0x7F030058,0x7F030069,0x7F03006A,0x7F03006B,0x7F03006C,0x7F03006D,0x7F030072,0x7F030073,0x7F03007F,0x7F030088,0x7F0300B3,0x7F0300B4,0x7F0300B5,0x7F0300B6,0x7F0300B7,0x7F0300B8,0x7F0300B9,0x7F0300C0,0x7F0300C1,0x7F0300C7,0x7F0300E0,0x7F030109,0x7F03010A,0x7F03010B,0x7F03010E,0x7F030110,0x7F030120,0x7F030121,0x7F030123,0x7F030124,0x7F030125,0x7F030186,0x7F030193,0x7F030205,0x7F030206,0x7F030207,0x7F030208,0x7F03020B,0x7F03020C,0x7F03020D,0x7F03020E,0x7F03020F,0x7F030210,0x7F030211,0x7F030212,0x7F030213,0x7F03026A,0x7F03026B,0x7F03026C,0x7F03027F,0x7F030281,0x7F03028B,0x7F03028D,0x7F03028E,0x7F03028F,0x7F03029F,0x7F0302A0,0x7F0302A1,0x7F0302A2,0x7F0302BD,0x7F0302BE,0x7F0302E0,0x7F03030C,0x7F03030E,0x7F03030F,0x7F030310,0x7F030312,0x7F030313,0x7F030314,0x7F030315,0x7F030318,0x7F030319,0x7F03033F,0x7F030340,0x7F030341,0x7F030342,0x7F03035E,0x7F030367,0x7F030368,0x7F030369,0x7F03036A,0x7F03036B,0x7F03036C,0x7F03036D,0x7F03036E,0x7F03036F,0x7F030370 } - public static int[] AppCompatTheme = new int[] { - 16842839, - 16842926, - 2130903040, - 2130903041, - 2130903042, - 2130903043, - 2130903044, - 2130903045, - 2130903046, - 2130903047, - 2130903048, - 2130903049, - 2130903050, - 2130903051, - 2130903052, - 2130903054, - 2130903055, - 2130903056, - 2130903057, - 2130903058, - 2130903059, - 2130903060, - 2130903061, - 2130903062, - 2130903063, - 2130903064, - 2130903065, - 2130903066, - 2130903067, - 2130903068, - 2130903069, - 2130903070, - 2130903074, - 2130903075, - 2130903076, - 2130903077, - 2130903078, - 2130903091, - 2130903128, - 2130903145, - 2130903146, - 2130903147, - 2130903148, - 2130903149, - 2130903154, - 2130903155, - 2130903167, - 2130903176, - 2130903219, - 2130903220, - 2130903221, - 2130903222, - 2130903223, - 2130903224, - 2130903225, - 2130903232, - 2130903233, - 2130903239, - 2130903264, - 2130903305, - 2130903306, - 2130903307, - 2130903310, - 2130903312, - 2130903328, - 2130903329, - 2130903331, - 2130903332, - 2130903333, - 2130903430, - 2130903443, - 2130903557, - 2130903558, - 2130903559, - 2130903560, - 2130903563, - 2130903564, - 2130903565, - 2130903566, - 2130903567, - 2130903568, - 2130903569, - 2130903570, - 2130903571, - 2130903658, - 2130903659, - 2130903660, - 2130903679, - 2130903681, - 2130903691, - 2130903693, - 2130903694, - 2130903695, - 2130903711, - 2130903712, - 2130903713, - 2130903714, - 2130903741, - 2130903742, - 2130903776, - 2130903820, - 2130903822, - 2130903823, - 2130903824, - 2130903826, - 2130903827, - 2130903828, - 2130903829, - 2130903832, - 2130903833, - 2130903871, - 2130903872, - 2130903873, - 2130903874, - 2130903902, - 2130903911, - 2130903912, - 2130903913, - 2130903914, - 2130903915, - 2130903916, - 2130903917, - 2130903918, - 2130903919, - 2130903920}; - - // aapt resource value: 2 - public const int AppCompatTheme_actionBarDivider = 2; - - // aapt resource value: 3 - public const int AppCompatTheme_actionBarItemBackground = 3; - - // aapt resource value: 4 - public const int AppCompatTheme_actionBarPopupTheme = 4; - - // aapt resource value: 5 - public const int AppCompatTheme_actionBarSize = 5; - - // aapt resource value: 6 - public const int AppCompatTheme_actionBarSplitStyle = 6; - - // aapt resource value: 7 - public const int AppCompatTheme_actionBarStyle = 7; - - // aapt resource value: 8 - public const int AppCompatTheme_actionBarTabBarStyle = 8; - - // aapt resource value: 9 - public const int AppCompatTheme_actionBarTabStyle = 9; - - // aapt resource value: 10 - public const int AppCompatTheme_actionBarTabTextStyle = 10; - - // aapt resource value: 11 - public const int AppCompatTheme_actionBarTheme = 11; - - // aapt resource value: 12 - public const int AppCompatTheme_actionBarWidgetTheme = 12; - - // aapt resource value: 13 - public const int AppCompatTheme_actionButtonStyle = 13; - - // aapt resource value: 14 - public const int AppCompatTheme_actionDropDownStyle = 14; - - // aapt resource value: 15 - public const int AppCompatTheme_actionMenuTextAppearance = 15; - - // aapt resource value: 16 - public const int AppCompatTheme_actionMenuTextColor = 16; - - // aapt resource value: 17 - public const int AppCompatTheme_actionModeBackground = 17; - - // aapt resource value: 18 - public const int AppCompatTheme_actionModeCloseButtonStyle = 18; - - // aapt resource value: 19 - public const int AppCompatTheme_actionModeCloseDrawable = 19; - - // aapt resource value: 20 - public const int AppCompatTheme_actionModeCopyDrawable = 20; - - // aapt resource value: 21 - public const int AppCompatTheme_actionModeCutDrawable = 21; - - // aapt resource value: 22 - public const int AppCompatTheme_actionModeFindDrawable = 22; - - // aapt resource value: 23 - public const int AppCompatTheme_actionModePasteDrawable = 23; - - // aapt resource value: 24 - public const int AppCompatTheme_actionModePopupWindowStyle = 24; - - // aapt resource value: 25 - public const int AppCompatTheme_actionModeSelectAllDrawable = 25; - - // aapt resource value: 26 - public const int AppCompatTheme_actionModeShareDrawable = 26; - - // aapt resource value: 27 - public const int AppCompatTheme_actionModeSplitBackground = 27; - - // aapt resource value: 28 - public const int AppCompatTheme_actionModeStyle = 28; - - // aapt resource value: 29 - public const int AppCompatTheme_actionModeWebSearchDrawable = 29; - - // aapt resource value: 30 - public const int AppCompatTheme_actionOverflowButtonStyle = 30; - - // aapt resource value: 31 - public const int AppCompatTheme_actionOverflowMenuStyle = 31; - - // aapt resource value: 32 - public const int AppCompatTheme_activityChooserViewStyle = 32; - - // aapt resource value: 33 - public const int AppCompatTheme_alertDialogButtonGroupStyle = 33; - - // aapt resource value: 34 - public const int AppCompatTheme_alertDialogCenterButtons = 34; - - // aapt resource value: 35 - public const int AppCompatTheme_alertDialogStyle = 35; - - // aapt resource value: 36 - public const int AppCompatTheme_alertDialogTheme = 36; - - // aapt resource value: 1 - public const int AppCompatTheme_android_windowAnimationStyle = 1; - - // aapt resource value: 0 - public const int AppCompatTheme_android_windowIsFloating = 0; - - // aapt resource value: 37 - public const int AppCompatTheme_autoCompleteTextViewStyle = 37; - - // aapt resource value: 38 - public const int AppCompatTheme_borderlessButtonStyle = 38; - - // aapt resource value: 39 - public const int AppCompatTheme_buttonBarButtonStyle = 39; - - // aapt resource value: 40 - public const int AppCompatTheme_buttonBarNegativeButtonStyle = 40; - - // aapt resource value: 41 - public const int AppCompatTheme_buttonBarNeutralButtonStyle = 41; - - // aapt resource value: 42 - public const int AppCompatTheme_buttonBarPositiveButtonStyle = 42; - - // aapt resource value: 43 - public const int AppCompatTheme_buttonBarStyle = 43; - - // aapt resource value: 44 - public const int AppCompatTheme_buttonStyle = 44; - - // aapt resource value: 45 - public const int AppCompatTheme_buttonStyleSmall = 45; - - // aapt resource value: 46 - public const int AppCompatTheme_checkboxStyle = 46; - - // aapt resource value: 47 - public const int AppCompatTheme_checkedTextViewStyle = 47; - - // aapt resource value: 48 - public const int AppCompatTheme_colorAccent = 48; - - // aapt resource value: 49 - public const int AppCompatTheme_colorBackgroundFloating = 49; - - // aapt resource value: 50 - public const int AppCompatTheme_colorButtonNormal = 50; - - // aapt resource value: 51 - public const int AppCompatTheme_colorControlActivated = 51; - - // aapt resource value: 52 - public const int AppCompatTheme_colorControlHighlight = 52; - - // aapt resource value: 53 - public const int AppCompatTheme_colorControlNormal = 53; - - // aapt resource value: 54 - public const int AppCompatTheme_colorError = 54; - - // aapt resource value: 55 - public const int AppCompatTheme_colorPrimary = 55; - - // aapt resource value: 56 - public const int AppCompatTheme_colorPrimaryDark = 56; - - // aapt resource value: 57 - public const int AppCompatTheme_colorSwitchThumbNormal = 57; - - // aapt resource value: 58 - public const int AppCompatTheme_controlBackground = 58; - - // aapt resource value: 59 - public const int AppCompatTheme_dialogCornerRadius = 59; - - // aapt resource value: 60 - public const int AppCompatTheme_dialogPreferredPadding = 60; - - // aapt resource value: 61 - public const int AppCompatTheme_dialogTheme = 61; - - // aapt resource value: 62 - public const int AppCompatTheme_dividerHorizontal = 62; - - // aapt resource value: 63 - public const int AppCompatTheme_dividerVertical = 63; - - // aapt resource value: 65 - public const int AppCompatTheme_dropdownListPreferredItemHeight = 65; - - // aapt resource value: 64 - public const int AppCompatTheme_dropDownListViewStyle = 64; - - // aapt resource value: 66 - public const int AppCompatTheme_editTextBackground = 66; - - // aapt resource value: 67 - public const int AppCompatTheme_editTextColor = 67; - - // aapt resource value: 68 - public const int AppCompatTheme_editTextStyle = 68; - - // aapt resource value: 69 - public const int AppCompatTheme_homeAsUpIndicator = 69; - - // aapt resource value: 70 - public const int AppCompatTheme_imageButtonStyle = 70; - - // aapt resource value: 71 - public const int AppCompatTheme_listChoiceBackgroundIndicator = 71; - - // aapt resource value: 72 - public const int AppCompatTheme_listChoiceIndicatorMultipleAnimated = 72; - - // aapt resource value: 73 - public const int AppCompatTheme_listChoiceIndicatorSingleAnimated = 73; - - // aapt resource value: 74 - public const int AppCompatTheme_listDividerAlertDialog = 74; - - // aapt resource value: 75 - public const int AppCompatTheme_listMenuViewStyle = 75; - - // aapt resource value: 76 - public const int AppCompatTheme_listPopupWindowStyle = 76; - - // aapt resource value: 77 - public const int AppCompatTheme_listPreferredItemHeight = 77; - - // aapt resource value: 78 - public const int AppCompatTheme_listPreferredItemHeightLarge = 78; - - // aapt resource value: 79 - public const int AppCompatTheme_listPreferredItemHeightSmall = 79; - - // aapt resource value: 80 - public const int AppCompatTheme_listPreferredItemPaddingEnd = 80; - - // aapt resource value: 81 - public const int AppCompatTheme_listPreferredItemPaddingLeft = 81; - - // aapt resource value: 82 - public const int AppCompatTheme_listPreferredItemPaddingRight = 82; - - // aapt resource value: 83 - public const int AppCompatTheme_listPreferredItemPaddingStart = 83; - - // aapt resource value: 84 - public const int AppCompatTheme_panelBackground = 84; - - // aapt resource value: 85 - public const int AppCompatTheme_panelMenuListTheme = 85; - - // aapt resource value: 86 - public const int AppCompatTheme_panelMenuListWidth = 86; - - // aapt resource value: 87 - public const int AppCompatTheme_popupMenuStyle = 87; - - // aapt resource value: 88 - public const int AppCompatTheme_popupWindowStyle = 88; - - // aapt resource value: 89 - public const int AppCompatTheme_radioButtonStyle = 89; - - // aapt resource value: 90 - public const int AppCompatTheme_ratingBarStyle = 90; - - // aapt resource value: 91 - public const int AppCompatTheme_ratingBarStyleIndicator = 91; - - // aapt resource value: 92 - public const int AppCompatTheme_ratingBarStyleSmall = 92; - - // aapt resource value: 93 - public const int AppCompatTheme_searchViewStyle = 93; - - // aapt resource value: 94 - public const int AppCompatTheme_seekBarStyle = 94; - - // aapt resource value: 95 - public const int AppCompatTheme_selectableItemBackground = 95; - - // aapt resource value: 96 - public const int AppCompatTheme_selectableItemBackgroundBorderless = 96; - - // aapt resource value: 97 - public const int AppCompatTheme_spinnerDropDownItemStyle = 97; - - // aapt resource value: 98 - public const int AppCompatTheme_spinnerStyle = 98; - - // aapt resource value: 99 - public const int AppCompatTheme_switchStyle = 99; - - // aapt resource value: 100 - public const int AppCompatTheme_textAppearanceLargePopupMenu = 100; - - // aapt resource value: 101 - public const int AppCompatTheme_textAppearanceListItem = 101; - - // aapt resource value: 102 - public const int AppCompatTheme_textAppearanceListItemSecondary = 102; - - // aapt resource value: 103 - public const int AppCompatTheme_textAppearanceListItemSmall = 103; - - // aapt resource value: 104 - public const int AppCompatTheme_textAppearancePopupMenuHeader = 104; - - // aapt resource value: 105 - public const int AppCompatTheme_textAppearanceSearchResultSubtitle = 105; - - // aapt resource value: 106 - public const int AppCompatTheme_textAppearanceSearchResultTitle = 106; - - // aapt resource value: 107 - public const int AppCompatTheme_textAppearanceSmallPopupMenu = 107; - - // aapt resource value: 108 - public const int AppCompatTheme_textColorAlertDialogListItem = 108; - - // aapt resource value: 109 - public const int AppCompatTheme_textColorSearchUrl = 109; - - // aapt resource value: 110 - public const int AppCompatTheme_toolbarNavigationButtonStyle = 110; - - // aapt resource value: 111 - public const int AppCompatTheme_toolbarStyle = 111; - - // aapt resource value: 112 - public const int AppCompatTheme_tooltipForegroundColor = 112; - - // aapt resource value: 113 - public const int AppCompatTheme_tooltipFrameBackground = 113; - - // aapt resource value: 114 - public const int AppCompatTheme_viewInflaterClass = 114; - - // aapt resource value: 115 - public const int AppCompatTheme_windowActionBar = 115; - - // aapt resource value: 116 - public const int AppCompatTheme_windowActionBarOverlay = 116; - - // aapt resource value: 117 - public const int AppCompatTheme_windowActionModeOverlay = 117; - - // aapt resource value: 118 - public const int AppCompatTheme_windowFixedHeightMajor = 118; - - // aapt resource value: 119 - public const int AppCompatTheme_windowFixedHeightMinor = 119; - - // aapt resource value: 120 - public const int AppCompatTheme_windowFixedWidthMajor = 120; - - // aapt resource value: 121 - public const int AppCompatTheme_windowFixedWidthMinor = 121; - - // aapt resource value: 122 - public const int AppCompatTheme_windowMinWidthMajor = 122; - - // aapt resource value: 123 - public const int AppCompatTheme_windowMinWidthMinor = 123; - - // aapt resource value: 124 - public const int AppCompatTheme_windowNoTitle = 124; - - // aapt resource value: { 0x7F03003B,0x7F030045,0x7F030047,0x7F030188,0x7F030235,0x7F030259,0x7F03035D } - public static int[] Badge = new int[] { - 2130903099, - 2130903109, - 2130903111, - 2130903432, - 2130903605, - 2130903641, - 2130903901}; - - // aapt resource value: 0 - public const int Badge_backgroundColor = 0; - - // aapt resource value: 1 - public const int Badge_badgeGravity = 1; - - // aapt resource value: 2 - public const int Badge_badgeTextColor = 2; - - // aapt resource value: 3 - public const int Badge_horizontalOffset = 3; - - // aapt resource value: 4 - public const int Badge_maxCharacterCount = 4; - - // aapt resource value: 5 - public const int Badge_number = 5; - - // aapt resource value: 6 - public const int Badge_verticalOffset = 6; - - // aapt resource value: { 0x1010139,0x7F03017E,0x7F030196,0x7F03023E,0x7F0302AA,0x7F0302AC,0x7F030349,0x7F03034C,0x7F03034E } - public static int[] BaseProgressIndicator = new int[] { - 16843065, - 2130903422, - 2130903446, - 2130903614, - 2130903722, - 2130903724, - 2130903881, - 2130903884, - 2130903886}; - - // aapt resource value: 0 - public const int BaseProgressIndicator_android_indeterminate = 0; - - // aapt resource value: 1 - public const int BaseProgressIndicator_hideAnimationBehavior = 1; - - // aapt resource value: 2 - public const int BaseProgressIndicator_indicatorColor = 2; - - // aapt resource value: 3 - public const int BaseProgressIndicator_minHideDelay = 3; - - // aapt resource value: 4 - public const int BaseProgressIndicator_showAnimationBehavior = 4; - - // aapt resource value: 5 - public const int BaseProgressIndicator_showDelay = 5; - - // aapt resource value: 6 - public const int BaseProgressIndicator_trackColor = 6; - - // aapt resource value: 7 - public const int BaseProgressIndicator_trackCornerRadius = 7; - - // aapt resource value: 8 - public const int BaseProgressIndicator_trackThickness = 8; - - // aapt resource value: { 0x7F030043,0x7F030126,0x7F030145,0x7F030146,0x7F030147,0x7F030148,0x7F030149,0x7F030181,0x7F030264,0x7F030266,0x7F030267 } - public static int[] BottomAppBar = new int[] { - 2130903107, - 2130903334, - 2130903365, - 2130903366, - 2130903367, - 2130903368, - 2130903369, - 2130903425, - 2130903652, - 2130903654, - 2130903655}; - - // aapt resource value: 0 - public const int BottomAppBar_backgroundTint = 0; - - // aapt resource value: 1 - public const int BottomAppBar_elevation = 1; - - // aapt resource value: 2 - public const int BottomAppBar_fabAlignmentMode = 2; - - // aapt resource value: 3 - public const int BottomAppBar_fabAnimationMode = 3; - - // aapt resource value: 4 - public const int BottomAppBar_fabCradleMargin = 4; - - // aapt resource value: 5 - public const int BottomAppBar_fabCradleRoundedCornerRadius = 5; - - // aapt resource value: 6 - public const int BottomAppBar_fabCradleVerticalOffset = 6; - - // aapt resource value: 7 - public const int BottomAppBar_hideOnScroll = 7; - - // aapt resource value: 8 - public const int BottomAppBar_paddingBottomSystemWindowInsets = 8; - - // aapt resource value: 9 - public const int BottomAppBar_paddingLeftSystemWindowInsets = 9; - - // aapt resource value: 10 - public const int BottomAppBar_paddingRightSystemWindowInsets = 10; - - // aapt resource value: { 0x7F030043,0x7F030126,0x7F03019F,0x7F0301A2,0x7F0301A4,0x7F0301A5,0x7F0301A8,0x7F0301B4,0x7F0301B5,0x7F0301B6,0x7F0301BC,0x7F03023C } - public static int[] BottomNavigationView = new int[] { - 2130903107, - 2130903334, - 2130903455, - 2130903458, - 2130903460, - 2130903461, - 2130903464, - 2130903476, - 2130903477, - 2130903478, - 2130903484, - 2130903612}; - - // aapt resource value: 0 - public const int BottomNavigationView_backgroundTint = 0; - - // aapt resource value: 1 - public const int BottomNavigationView_elevation = 1; - - // aapt resource value: 2 - public const int BottomNavigationView_itemBackground = 2; - - // aapt resource value: 3 - public const int BottomNavigationView_itemHorizontalTranslationEnabled = 3; - - // aapt resource value: 4 - public const int BottomNavigationView_itemIconSize = 4; - - // aapt resource value: 5 - public const int BottomNavigationView_itemIconTint = 5; - - // aapt resource value: 6 - public const int BottomNavigationView_itemRippleColor = 6; - - // aapt resource value: 7 - public const int BottomNavigationView_itemTextAppearanceActive = 7; - - // aapt resource value: 8 - public const int BottomNavigationView_itemTextAppearanceInactive = 8; - - // aapt resource value: 9 - public const int BottomNavigationView_itemTextColor = 9; - - // aapt resource value: 10 - public const int BottomNavigationView_labelVisibilityMode = 10; - - // aapt resource value: 11 - public const int BottomNavigationView_menu = 11; - - // aapt resource value: { 0x1010440,0x7F030043,0x7F03004E,0x7F03004F,0x7F030050,0x7F030051,0x7F030052,0x7F030054,0x7F030055,0x7F030056,0x7F030174,0x7F0302A5,0x7F0302A8 } - public static int[] BottomSheetBehavior_Layout = new int[] { - 16843840, - 2130903107, - 2130903118, - 2130903119, - 2130903120, - 2130903121, - 2130903122, - 2130903124, - 2130903125, - 2130903126, - 2130903412, - 2130903717, - 2130903720}; - - // aapt resource value: 0 - public const int BottomSheetBehavior_Layout_android_elevation = 0; - - // aapt resource value: 1 - public const int BottomSheetBehavior_Layout_backgroundTint = 1; - - // aapt resource value: 2 - public const int BottomSheetBehavior_Layout_behavior_draggable = 2; - - // aapt resource value: 3 - public const int BottomSheetBehavior_Layout_behavior_expandedOffset = 3; - - // aapt resource value: 4 - public const int BottomSheetBehavior_Layout_behavior_fitToContents = 4; - - // aapt resource value: 5 - public const int BottomSheetBehavior_Layout_behavior_halfExpandedRatio = 5; - - // aapt resource value: 6 - public const int BottomSheetBehavior_Layout_behavior_hideable = 6; - - // aapt resource value: 7 - public const int BottomSheetBehavior_Layout_behavior_peekHeight = 7; - - // aapt resource value: 8 - public const int BottomSheetBehavior_Layout_behavior_saveFlags = 8; - - // aapt resource value: 9 - public const int BottomSheetBehavior_Layout_behavior_skipCollapsed = 9; - - // aapt resource value: 10 - public const int BottomSheetBehavior_Layout_gestureInsetBottomIgnored = 10; - - // aapt resource value: 11 - public const int BottomSheetBehavior_Layout_shapeAppearance = 11; - - // aapt resource value: 12 - public const int BottomSheetBehavior_Layout_shapeAppearanceOverlay = 12; - - // aapt resource value: { 0x7F030027 } - public static int[] ButtonBarLayout = new int[] { - 2130903079}; - - // aapt resource value: 0 - public const int ButtonBarLayout_allowStacking = 0; - - // aapt resource value: { 0x101013F,0x1010140,0x7F030076,0x7F030077,0x7F030078,0x7F03007A,0x7F03007B,0x7F03007C,0x7F0300D7,0x7F0300D8,0x7F0300DA,0x7F0300DB,0x7F0300DD } - public static int[] CardView = new int[] { - 16843071, - 16843072, - 2130903158, - 2130903159, - 2130903160, - 2130903162, - 2130903163, - 2130903164, - 2130903255, - 2130903256, - 2130903258, - 2130903259, - 2130903261}; - - // aapt resource value: 1 - public const int CardView_android_minHeight = 1; - - // aapt resource value: 0 - public const int CardView_android_minWidth = 0; - - // aapt resource value: 2 - public const int CardView_cardBackgroundColor = 2; - - // aapt resource value: 3 - public const int CardView_cardCornerRadius = 3; - - // aapt resource value: 4 - public const int CardView_cardElevation = 4; - - // aapt resource value: 5 - public const int CardView_cardMaxElevation = 5; - - // aapt resource value: 6 - public const int CardView_cardPreventCornerOverlap = 6; - - // aapt resource value: 7 - public const int CardView_cardUseCompatPadding = 7; - - // aapt resource value: 8 - public const int CardView_contentPadding = 8; - - // aapt resource value: 9 - public const int CardView_contentPaddingBottom = 9; - - // aapt resource value: 10 - public const int CardView_contentPaddingLeft = 10; - - // aapt resource value: 11 - public const int CardView_contentPaddingRight = 11; - - // aapt resource value: 12 - public const int CardView_contentPaddingTop = 12; - - // aapt resource value: { 0x1010034,0x1010095,0x1010098,0x10100AB,0x101011F,0x101014F,0x10101E5,0x7F030082,0x7F030083,0x7F030086,0x7F030087,0x7F030089,0x7F03008A,0x7F03008B,0x7F03008D,0x7F03008E,0x7F03008F,0x7F030090,0x7F030091,0x7F030092,0x7F030093,0x7F030098,0x7F030099,0x7F03009A,0x7F03009C,0x7F0300A4,0x7F0300A5,0x7F0300A6,0x7F0300A7,0x7F0300A8,0x7F0300A9,0x7F0300AA,0x7F030131,0x7F03017F,0x7F03018B,0x7F03018F,0x7F030296,0x7F0302A5,0x7F0302A8,0x7F0302AE,0x7F03031A,0x7F03031E } - public static int[] Chip = new int[] { - 16842804, - 16842901, - 16842904, - 16842923, - 16843039, - 16843087, - 16843237, - 2130903170, - 2130903171, - 2130903174, - 2130903175, - 2130903177, - 2130903178, - 2130903179, - 2130903181, - 2130903182, - 2130903183, - 2130903184, - 2130903185, - 2130903186, - 2130903187, - 2130903192, - 2130903193, - 2130903194, - 2130903196, - 2130903204, - 2130903205, - 2130903206, - 2130903207, - 2130903208, - 2130903209, - 2130903210, - 2130903345, - 2130903423, - 2130903435, - 2130903439, - 2130903702, - 2130903717, - 2130903720, - 2130903726, - 2130903834, - 2130903838}; - - // aapt resource value: { 0x7F030081,0x7F030094,0x7F030095,0x7F030096,0x7F0302A3,0x7F0302B4,0x7F0302B5 } - public static int[] ChipGroup = new int[] { - 2130903169, - 2130903188, - 2130903189, - 2130903190, - 2130903715, - 2130903732, - 2130903733}; - - // aapt resource value: 0 - public const int ChipGroup_checkedChip = 0; - - // aapt resource value: 1 - public const int ChipGroup_chipSpacing = 1; - - // aapt resource value: 2 - public const int ChipGroup_chipSpacingHorizontal = 2; - - // aapt resource value: 3 - public const int ChipGroup_chipSpacingVertical = 3; - - // aapt resource value: 4 - public const int ChipGroup_selectionRequired = 4; - - // aapt resource value: 5 - public const int ChipGroup_singleLine = 5; - - // aapt resource value: 6 - public const int ChipGroup_singleSelection = 6; - - // aapt resource value: 6 - public const int Chip_android_checkable = 6; - - // aapt resource value: 3 - public const int Chip_android_ellipsize = 3; - - // aapt resource value: 4 - public const int Chip_android_maxWidth = 4; - - // aapt resource value: 5 - public const int Chip_android_text = 5; - - // aapt resource value: 0 - public const int Chip_android_textAppearance = 0; - - // aapt resource value: 2 - public const int Chip_android_textColor = 2; - - // aapt resource value: 1 - public const int Chip_android_textSize = 1; - - // aapt resource value: 7 - public const int Chip_checkedIcon = 7; - - // aapt resource value: 8 - public const int Chip_checkedIconEnabled = 8; - - // aapt resource value: 9 - public const int Chip_checkedIconTint = 9; - - // aapt resource value: 10 - public const int Chip_checkedIconVisible = 10; - - // aapt resource value: 11 - public const int Chip_chipBackgroundColor = 11; - - // aapt resource value: 12 - public const int Chip_chipCornerRadius = 12; - - // aapt resource value: 13 - public const int Chip_chipEndPadding = 13; - - // aapt resource value: 14 - public const int Chip_chipIcon = 14; - - // aapt resource value: 15 - public const int Chip_chipIconEnabled = 15; - - // aapt resource value: 16 - public const int Chip_chipIconSize = 16; - - // aapt resource value: 17 - public const int Chip_chipIconTint = 17; - - // aapt resource value: 18 - public const int Chip_chipIconVisible = 18; - - // aapt resource value: 19 - public const int Chip_chipMinHeight = 19; - - // aapt resource value: 20 - public const int Chip_chipMinTouchTargetSize = 20; - - // aapt resource value: 21 - public const int Chip_chipStartPadding = 21; - - // aapt resource value: 22 - public const int Chip_chipStrokeColor = 22; - - // aapt resource value: 23 - public const int Chip_chipStrokeWidth = 23; - - // aapt resource value: 24 - public const int Chip_chipSurfaceColor = 24; - - // aapt resource value: 25 - public const int Chip_closeIcon = 25; - - // aapt resource value: 26 - public const int Chip_closeIconEnabled = 26; - - // aapt resource value: 27 - public const int Chip_closeIconEndPadding = 27; - - // aapt resource value: 28 - public const int Chip_closeIconSize = 28; - - // aapt resource value: 29 - public const int Chip_closeIconStartPadding = 29; - - // aapt resource value: 30 - public const int Chip_closeIconTint = 30; - - // aapt resource value: 31 - public const int Chip_closeIconVisible = 31; - - // aapt resource value: 32 - public const int Chip_ensureMinTouchTargetSize = 32; - - // aapt resource value: 33 - public const int Chip_hideMotionSpec = 33; - - // aapt resource value: 34 - public const int Chip_iconEndPadding = 34; - - // aapt resource value: 35 - public const int Chip_iconStartPadding = 35; - - // aapt resource value: 36 - public const int Chip_rippleColor = 36; - - // aapt resource value: 37 - public const int Chip_shapeAppearance = 37; - - // aapt resource value: 38 - public const int Chip_shapeAppearanceOverlay = 38; - - // aapt resource value: 39 - public const int Chip_showMotionSpec = 39; - - // aapt resource value: 40 - public const int Chip_textEndPadding = 40; - - // aapt resource value: 41 - public const int Chip_textStartPadding = 41; - - // aapt resource value: { 0x7F030197,0x7F030199,0x7F03019A } - public static int[] CircularProgressIndicator = new int[] { - 2130903447, - 2130903449, - 2130903450}; - - // aapt resource value: 0 - public const int CircularProgressIndicator_indicatorDirectionCircular = 0; - - // aapt resource value: 1 - public const int CircularProgressIndicator_indicatorInset = 1; - - // aapt resource value: 2 - public const int CircularProgressIndicator_indicatorSize = 2; - - // aapt resource value: { 0x7F0300A0,0x7F0300A3 } - public static int[] ClockFaceView = new int[] { - 2130903200, - 2130903203}; - - // aapt resource value: 0 - public const int ClockFaceView_clockFaceBackgroundColor = 0; - - // aapt resource value: 1 - public const int ClockFaceView_clockNumberTextColor = 1; - - // aapt resource value: { 0x7F0300A1,0x7F03022D,0x7F0302A4 } - public static int[] ClockHandView = new int[] { - 2130903201, - 2130903597, - 2130903716}; - - // aapt resource value: 0 - public const int ClockHandView_clockHandColor = 0; - - // aapt resource value: 1 - public const int ClockHandView_materialCircleRadius = 1; - - // aapt resource value: 2 - public const int ClockHandView_selectorSize = 2; - - // aapt resource value: { 0x7F0300AF,0x7F0300B0,0x7F0300DE,0x7F03013C,0x7F03013D,0x7F03013E,0x7F03013F,0x7F030140,0x7F030141,0x7F030142,0x7F030238,0x7F03029A,0x7F03029C,0x7F0302D0,0x7F030333,0x7F030334,0x7F03033E } - public static int[] CollapsingToolbarLayout = new int[] { - 2130903215, - 2130903216, - 2130903262, - 2130903356, - 2130903357, - 2130903358, - 2130903359, - 2130903360, - 2130903361, - 2130903362, - 2130903608, - 2130903706, - 2130903708, - 2130903760, - 2130903859, - 2130903860, - 2130903870}; - - // aapt resource value: 0 - public const int CollapsingToolbarLayout_collapsedTitleGravity = 0; - - // aapt resource value: 1 - public const int CollapsingToolbarLayout_collapsedTitleTextAppearance = 1; - - // aapt resource value: 2 - public const int CollapsingToolbarLayout_contentScrim = 2; - - // aapt resource value: 3 - public const int CollapsingToolbarLayout_expandedTitleGravity = 3; - - // aapt resource value: 4 - public const int CollapsingToolbarLayout_expandedTitleMargin = 4; - - // aapt resource value: 5 - public const int CollapsingToolbarLayout_expandedTitleMarginBottom = 5; - - // aapt resource value: 6 - public const int CollapsingToolbarLayout_expandedTitleMarginEnd = 6; - - // aapt resource value: 7 - public const int CollapsingToolbarLayout_expandedTitleMarginStart = 7; - - // aapt resource value: 8 - public const int CollapsingToolbarLayout_expandedTitleMarginTop = 8; - - // aapt resource value: 9 - public const int CollapsingToolbarLayout_expandedTitleTextAppearance = 9; - - // aapt resource value: { 0x7F0301C5,0x7F0301C6 } - public static int[] CollapsingToolbarLayout_Layout = new int[] { - 2130903493, - 2130903494}; - - // aapt resource value: 0 - public const int CollapsingToolbarLayout_Layout_layout_collapseMode = 0; - - // aapt resource value: 1 - public const int CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier = 1; - - // aapt resource value: 10 - public const int CollapsingToolbarLayout_maxLines = 10; - - // aapt resource value: 11 - public const int CollapsingToolbarLayout_scrimAnimationDuration = 11; - - // aapt resource value: 12 - public const int CollapsingToolbarLayout_scrimVisibleHeightTrigger = 12; - - // aapt resource value: 13 - public const int CollapsingToolbarLayout_statusBarScrim = 13; - - // aapt resource value: 14 - public const int CollapsingToolbarLayout_title = 14; - - // aapt resource value: 15 - public const int CollapsingToolbarLayout_titleEnabled = 15; - - // aapt resource value: 16 - public const int CollapsingToolbarLayout_toolbarId = 16; - - // aapt resource value: { 0x10101A5,0x101031F,0x7F030028 } - public static int[] ColorStateListItem = new int[] { - 16843173, - 16843551, - 2130903080}; - - // aapt resource value: 2 - public const int ColorStateListItem_alpha = 2; - - // aapt resource value: 1 - public const int ColorStateListItem_android_alpha = 1; - - // aapt resource value: 0 - public const int ColorStateListItem_android_color = 0; - - // aapt resource value: { 0x1010107,0x7F03006E,0x7F030074,0x7F030075 } - public static int[] CompoundButton = new int[] { - 16843015, - 2130903150, - 2130903156, - 2130903157}; - - // aapt resource value: 0 - public const int CompoundButton_android_button = 0; - - // aapt resource value: 1 - public const int CompoundButton_buttonCompat = 1; - - // aapt resource value: 2 - public const int CompoundButton_buttonTint = 2; - - // aapt resource value: 3 - public const int CompoundButton_buttonTintMode = 3; - - // aapt resource value: { 0x10100C4,0x10100D0,0x10100DC,0x10100F4,0x10100F5,0x10100F7,0x10100F8,0x10100F9,0x10100FA,0x101011F,0x1010120,0x101013F,0x1010140,0x101031F,0x1010320,0x1010321,0x1010322,0x1010323,0x1010324,0x1010325,0x1010326,0x1010327,0x1010328,0x10103B5,0x10103B6,0x10103FA,0x1010440,0x7F03002B,0x7F030049,0x7F03004A,0x7F03004B,0x7F03007E,0x7F0300CC,0x7F0300CD,0x7F030114,0x7F030153,0x7F030154,0x7F030155,0x7F030156,0x7F030157,0x7F030158,0x7F030159,0x7F03015A,0x7F03015B,0x7F03015C,0x7F03015D,0x7F03015E,0x7F03015F,0x7F030161,0x7F030162,0x7F030163,0x7F030164,0x7F030165,0x7F0301C7,0x7F0301C8,0x7F0301C9,0x7F0301CA,0x7F0301CB,0x7F0301CC,0x7F0301CD,0x7F0301CE,0x7F0301CF,0x7F0301D0,0x7F0301D1,0x7F0301D2,0x7F0301D3,0x7F0301D4,0x7F0301D5,0x7F0301D6,0x7F0301D7,0x7F0301D8,0x7F0301D9,0x7F0301DA,0x7F0301DB,0x7F0301DC,0x7F0301DD,0x7F0301DE,0x7F0301DF,0x7F0301E0,0x7F0301E1,0x7F0301E2,0x7F0301E3,0x7F0301E4,0x7F0301E5,0x7F0301E6,0x7F0301E7,0x7F0301E8,0x7F0301E9,0x7F0301EA,0x7F0301EB,0x7F0301EC,0x7F0301ED,0x7F0301EE,0x7F0301EF,0x7F0301F0,0x7F0301F2,0x7F0301F3,0x7F0301F4,0x7F0301F5,0x7F0301F6,0x7F0301F7,0x7F0301F8,0x7F0301F9,0x7F03024B,0x7F03024C,0x7F030272,0x7F030279,0x7F030352,0x7F030354,0x7F03035F } - public static int[] Constraint = new int[] { - 16842948, - 16842960, - 16842972, - 16842996, - 16842997, - 16842999, - 16843000, - 16843001, - 16843002, - 16843039, - 16843040, - 16843071, - 16843072, - 16843551, - 16843552, - 16843553, - 16843554, - 16843555, - 16843556, - 16843557, - 16843558, - 16843559, - 16843560, - 16843701, - 16843702, - 16843770, - 16843840, - 2130903083, - 2130903113, - 2130903114, - 2130903115, - 2130903166, - 2130903244, - 2130903245, - 2130903316, - 2130903379, - 2130903380, - 2130903381, - 2130903382, - 2130903383, - 2130903384, - 2130903385, - 2130903386, - 2130903387, - 2130903388, - 2130903389, - 2130903390, - 2130903391, - 2130903393, - 2130903394, - 2130903395, - 2130903396, - 2130903397, - 2130903495, - 2130903496, - 2130903497, - 2130903498, - 2130903499, - 2130903500, - 2130903501, - 2130903502, - 2130903503, - 2130903504, - 2130903505, - 2130903506, - 2130903507, - 2130903508, - 2130903509, - 2130903510, - 2130903511, - 2130903512, - 2130903513, - 2130903514, - 2130903515, - 2130903516, - 2130903517, - 2130903518, - 2130903519, - 2130903520, - 2130903521, - 2130903522, - 2130903523, - 2130903524, - 2130903525, - 2130903526, - 2130903527, - 2130903528, - 2130903529, - 2130903530, - 2130903531, - 2130903532, - 2130903533, - 2130903534, - 2130903535, - 2130903536, - 2130903538, - 2130903539, - 2130903540, - 2130903541, - 2130903542, - 2130903543, - 2130903544, - 2130903545, - 2130903627, - 2130903628, - 2130903666, - 2130903673, - 2130903890, - 2130903892, - 2130903903}; - - // aapt resource value: { 0x10100C4,0x10100D5,0x10100D6,0x10100D7,0x10100D8,0x10100D9,0x10100DC,0x101011F,0x1010120,0x101013F,0x1010140,0x10103B3,0x10103B4,0x1010440,0x7F030049,0x7F03004A,0x7F03004B,0x7F03007E,0x7F0300C9,0x7F0300CC,0x7F0300CD,0x7F030153,0x7F030154,0x7F030155,0x7F030156,0x7F030157,0x7F030158,0x7F030159,0x7F03015A,0x7F03015B,0x7F03015C,0x7F03015D,0x7F03015E,0x7F03015F,0x7F030161,0x7F030162,0x7F030163,0x7F030164,0x7F030165,0x7F0301BF,0x7F0301C7,0x7F0301C8,0x7F0301C9,0x7F0301CA,0x7F0301CB,0x7F0301CC,0x7F0301CD,0x7F0301CE,0x7F0301CF,0x7F0301D0,0x7F0301D1,0x7F0301D2,0x7F0301D3,0x7F0301D4,0x7F0301D5,0x7F0301D6,0x7F0301D7,0x7F0301D8,0x7F0301D9,0x7F0301DA,0x7F0301DB,0x7F0301DC,0x7F0301DD,0x7F0301DE,0x7F0301DF,0x7F0301E0,0x7F0301E1,0x7F0301E2,0x7F0301E3,0x7F0301E4,0x7F0301E5,0x7F0301E6,0x7F0301E7,0x7F0301E8,0x7F0301E9,0x7F0301EA,0x7F0301EB,0x7F0301EC,0x7F0301ED,0x7F0301EE,0x7F0301EF,0x7F0301F0,0x7F0301F2,0x7F0301F3,0x7F0301F4,0x7F0301F5,0x7F0301F6,0x7F0301F7,0x7F0301F8,0x7F0301F9,0x7F0301FC } - public static int[] ConstraintLayout_Layout = new int[] { - 16842948, - 16842965, - 16842966, - 16842967, - 16842968, - 16842969, - 16842972, - 16843039, - 16843040, - 16843071, - 16843072, - 16843699, - 16843700, - 16843840, - 2130903113, - 2130903114, - 2130903115, - 2130903166, - 2130903241, - 2130903244, - 2130903245, - 2130903379, - 2130903380, - 2130903381, - 2130903382, - 2130903383, - 2130903384, - 2130903385, - 2130903386, - 2130903387, - 2130903388, - 2130903389, - 2130903390, - 2130903391, - 2130903393, - 2130903394, - 2130903395, - 2130903396, - 2130903397, - 2130903487, - 2130903495, - 2130903496, - 2130903497, - 2130903498, - 2130903499, - 2130903500, - 2130903501, - 2130903502, - 2130903503, - 2130903504, - 2130903505, - 2130903506, - 2130903507, - 2130903508, - 2130903509, - 2130903510, - 2130903511, - 2130903512, - 2130903513, - 2130903514, - 2130903515, - 2130903516, - 2130903517, - 2130903518, - 2130903519, - 2130903520, - 2130903521, - 2130903522, - 2130903523, - 2130903524, - 2130903525, - 2130903526, - 2130903527, - 2130903528, - 2130903529, - 2130903530, - 2130903531, - 2130903532, - 2130903533, - 2130903534, - 2130903535, - 2130903536, - 2130903538, - 2130903539, - 2130903540, - 2130903541, - 2130903542, - 2130903543, - 2130903544, - 2130903545, - 2130903548}; - - // aapt resource value: 13 - public const int ConstraintLayout_Layout_android_elevation = 13; - - // aapt resource value: 8 - public const int ConstraintLayout_Layout_android_maxHeight = 8; - - // aapt resource value: 7 - public const int ConstraintLayout_Layout_android_maxWidth = 7; - - // aapt resource value: 10 - public const int ConstraintLayout_Layout_android_minHeight = 10; - - // aapt resource value: 9 - public const int ConstraintLayout_Layout_android_minWidth = 9; - - // aapt resource value: 0 - public const int ConstraintLayout_Layout_android_orientation = 0; - - // aapt resource value: 1 - public const int ConstraintLayout_Layout_android_padding = 1; - - // aapt resource value: 5 - public const int ConstraintLayout_Layout_android_paddingBottom = 5; - - // aapt resource value: 12 - public const int ConstraintLayout_Layout_android_paddingEnd = 12; - - // aapt resource value: 2 - public const int ConstraintLayout_Layout_android_paddingLeft = 2; - - // aapt resource value: 4 - public const int ConstraintLayout_Layout_android_paddingRight = 4; - - // aapt resource value: 11 - public const int ConstraintLayout_Layout_android_paddingStart = 11; - - // aapt resource value: 3 - public const int ConstraintLayout_Layout_android_paddingTop = 3; - - // aapt resource value: 6 - public const int ConstraintLayout_Layout_android_visibility = 6; - - // aapt resource value: 14 - public const int ConstraintLayout_Layout_barrierAllowsGoneWidgets = 14; - - // aapt resource value: 15 - public const int ConstraintLayout_Layout_barrierDirection = 15; - - // aapt resource value: 16 - public const int ConstraintLayout_Layout_barrierMargin = 16; - - // aapt resource value: 17 - public const int ConstraintLayout_Layout_chainUseRtl = 17; - - // aapt resource value: 18 - public const int ConstraintLayout_Layout_constraintSet = 18; - - // aapt resource value: 19 - public const int ConstraintLayout_Layout_constraint_referenced_ids = 19; - - // aapt resource value: 20 - public const int ConstraintLayout_Layout_constraint_referenced_tags = 20; - - // aapt resource value: 21 - public const int ConstraintLayout_Layout_flow_firstHorizontalBias = 21; - - // aapt resource value: 22 - public const int ConstraintLayout_Layout_flow_firstHorizontalStyle = 22; - - // aapt resource value: 23 - public const int ConstraintLayout_Layout_flow_firstVerticalBias = 23; - - // aapt resource value: 24 - public const int ConstraintLayout_Layout_flow_firstVerticalStyle = 24; - - // aapt resource value: 25 - public const int ConstraintLayout_Layout_flow_horizontalAlign = 25; - - // aapt resource value: 26 - public const int ConstraintLayout_Layout_flow_horizontalBias = 26; - - // aapt resource value: 27 - public const int ConstraintLayout_Layout_flow_horizontalGap = 27; - - // aapt resource value: 28 - public const int ConstraintLayout_Layout_flow_horizontalStyle = 28; - - // aapt resource value: 29 - public const int ConstraintLayout_Layout_flow_lastHorizontalBias = 29; - - // aapt resource value: 30 - public const int ConstraintLayout_Layout_flow_lastHorizontalStyle = 30; - - // aapt resource value: 31 - public const int ConstraintLayout_Layout_flow_lastVerticalBias = 31; - - // aapt resource value: 32 - public const int ConstraintLayout_Layout_flow_lastVerticalStyle = 32; - - // aapt resource value: 33 - public const int ConstraintLayout_Layout_flow_maxElementsWrap = 33; - - // aapt resource value: 34 - public const int ConstraintLayout_Layout_flow_verticalAlign = 34; - - // aapt resource value: 35 - public const int ConstraintLayout_Layout_flow_verticalBias = 35; - - // aapt resource value: 36 - public const int ConstraintLayout_Layout_flow_verticalGap = 36; - - // aapt resource value: 37 - public const int ConstraintLayout_Layout_flow_verticalStyle = 37; - - // aapt resource value: 38 - public const int ConstraintLayout_Layout_flow_wrapMode = 38; - - // aapt resource value: 39 - public const int ConstraintLayout_Layout_layoutDescription = 39; - - // aapt resource value: 40 - public const int ConstraintLayout_Layout_layout_constrainedHeight = 40; - - // aapt resource value: 41 - public const int ConstraintLayout_Layout_layout_constrainedWidth = 41; - - // aapt resource value: 42 - public const int ConstraintLayout_Layout_layout_constraintBaseline_creator = 42; - - // aapt resource value: 43 - public const int ConstraintLayout_Layout_layout_constraintBaseline_toBaselineOf = 43; - - // aapt resource value: 44 - public const int ConstraintLayout_Layout_layout_constraintBottom_creator = 44; - - // aapt resource value: 45 - public const int ConstraintLayout_Layout_layout_constraintBottom_toBottomOf = 45; - - // aapt resource value: 46 - public const int ConstraintLayout_Layout_layout_constraintBottom_toTopOf = 46; - - // aapt resource value: 47 - public const int ConstraintLayout_Layout_layout_constraintCircle = 47; - - // aapt resource value: 48 - public const int ConstraintLayout_Layout_layout_constraintCircleAngle = 48; - - // aapt resource value: 49 - public const int ConstraintLayout_Layout_layout_constraintCircleRadius = 49; - - // aapt resource value: 50 - public const int ConstraintLayout_Layout_layout_constraintDimensionRatio = 50; - - // aapt resource value: 51 - public const int ConstraintLayout_Layout_layout_constraintEnd_toEndOf = 51; - - // aapt resource value: 52 - public const int ConstraintLayout_Layout_layout_constraintEnd_toStartOf = 52; - - // aapt resource value: 53 - public const int ConstraintLayout_Layout_layout_constraintGuide_begin = 53; - - // aapt resource value: 54 - public const int ConstraintLayout_Layout_layout_constraintGuide_end = 54; - - // aapt resource value: 55 - public const int ConstraintLayout_Layout_layout_constraintGuide_percent = 55; - - // aapt resource value: 56 - public const int ConstraintLayout_Layout_layout_constraintHeight_default = 56; - - // aapt resource value: 57 - public const int ConstraintLayout_Layout_layout_constraintHeight_max = 57; - - // aapt resource value: 58 - public const int ConstraintLayout_Layout_layout_constraintHeight_min = 58; - - // aapt resource value: 59 - public const int ConstraintLayout_Layout_layout_constraintHeight_percent = 59; - - // aapt resource value: 60 - public const int ConstraintLayout_Layout_layout_constraintHorizontal_bias = 60; - - // aapt resource value: 61 - public const int ConstraintLayout_Layout_layout_constraintHorizontal_chainStyle = 61; - - // aapt resource value: 62 - public const int ConstraintLayout_Layout_layout_constraintHorizontal_weight = 62; - - // aapt resource value: 63 - public const int ConstraintLayout_Layout_layout_constraintLeft_creator = 63; - - // aapt resource value: 64 - public const int ConstraintLayout_Layout_layout_constraintLeft_toLeftOf = 64; - - // aapt resource value: 65 - public const int ConstraintLayout_Layout_layout_constraintLeft_toRightOf = 65; - - // aapt resource value: 66 - public const int ConstraintLayout_Layout_layout_constraintRight_creator = 66; - - // aapt resource value: 67 - public const int ConstraintLayout_Layout_layout_constraintRight_toLeftOf = 67; - - // aapt resource value: 68 - public const int ConstraintLayout_Layout_layout_constraintRight_toRightOf = 68; - - // aapt resource value: 69 - public const int ConstraintLayout_Layout_layout_constraintStart_toEndOf = 69; - - // aapt resource value: 70 - public const int ConstraintLayout_Layout_layout_constraintStart_toStartOf = 70; - - // aapt resource value: 71 - public const int ConstraintLayout_Layout_layout_constraintTag = 71; - - // aapt resource value: 72 - public const int ConstraintLayout_Layout_layout_constraintTop_creator = 72; - - // aapt resource value: 73 - public const int ConstraintLayout_Layout_layout_constraintTop_toBottomOf = 73; - - // aapt resource value: 74 - public const int ConstraintLayout_Layout_layout_constraintTop_toTopOf = 74; - - // aapt resource value: 75 - public const int ConstraintLayout_Layout_layout_constraintVertical_bias = 75; - - // aapt resource value: 76 - public const int ConstraintLayout_Layout_layout_constraintVertical_chainStyle = 76; - - // aapt resource value: 77 - public const int ConstraintLayout_Layout_layout_constraintVertical_weight = 77; - - // aapt resource value: 78 - public const int ConstraintLayout_Layout_layout_constraintWidth_default = 78; - - // aapt resource value: 79 - public const int ConstraintLayout_Layout_layout_constraintWidth_max = 79; - - // aapt resource value: 80 - public const int ConstraintLayout_Layout_layout_constraintWidth_min = 80; - - // aapt resource value: 81 - public const int ConstraintLayout_Layout_layout_constraintWidth_percent = 81; - - // aapt resource value: 82 - public const int ConstraintLayout_Layout_layout_editor_absoluteX = 82; - - // aapt resource value: 83 - public const int ConstraintLayout_Layout_layout_editor_absoluteY = 83; - - // aapt resource value: 84 - public const int ConstraintLayout_Layout_layout_goneMarginBottom = 84; - - // aapt resource value: 85 - public const int ConstraintLayout_Layout_layout_goneMarginEnd = 85; - - // aapt resource value: 86 - public const int ConstraintLayout_Layout_layout_goneMarginLeft = 86; - - // aapt resource value: 87 - public const int ConstraintLayout_Layout_layout_goneMarginRight = 87; - - // aapt resource value: 88 - public const int ConstraintLayout_Layout_layout_goneMarginStart = 88; - - // aapt resource value: 89 - public const int ConstraintLayout_Layout_layout_goneMarginTop = 89; - - // aapt resource value: 90 - public const int ConstraintLayout_Layout_layout_optimizationLevel = 90; - - // aapt resource value: { 0x7F0300CF,0x7F03027D } - public static int[] ConstraintLayout_placeholder = new int[] { - 2130903247, - 2130903677}; - - // aapt resource value: 0 - public const int ConstraintLayout_placeholder_content = 0; - - // aapt resource value: 1 - public const int ConstraintLayout_placeholder_placeholder_emptyVisibility = 1; - - // aapt resource value: { 0x10100C4,0x10100D0,0x10100DC,0x10100F4,0x10100F5,0x10100F7,0x10100F8,0x10100F9,0x10100FA,0x101011F,0x1010120,0x101013F,0x1010140,0x10101B5,0x10101B6,0x101031F,0x1010320,0x1010321,0x1010322,0x1010323,0x1010324,0x1010325,0x1010326,0x1010327,0x1010328,0x10103B5,0x10103B6,0x10103FA,0x1010440,0x7F03002B,0x7F030049,0x7F03004A,0x7F03004B,0x7F03007E,0x7F0300CC,0x7F0300CD,0x7F030108,0x7F030114,0x7F030153,0x7F030154,0x7F030155,0x7F030156,0x7F030157,0x7F030158,0x7F030159,0x7F03015A,0x7F03015B,0x7F03015C,0x7F03015D,0x7F03015E,0x7F03015F,0x7F030161,0x7F030162,0x7F030163,0x7F030164,0x7F030165,0x7F0301C7,0x7F0301C8,0x7F0301C9,0x7F0301CA,0x7F0301CB,0x7F0301CC,0x7F0301CD,0x7F0301CE,0x7F0301CF,0x7F0301D0,0x7F0301D1,0x7F0301D2,0x7F0301D3,0x7F0301D4,0x7F0301D5,0x7F0301D6,0x7F0301D7,0x7F0301D8,0x7F0301D9,0x7F0301DA,0x7F0301DB,0x7F0301DC,0x7F0301DD,0x7F0301DE,0x7F0301DF,0x7F0301E0,0x7F0301E1,0x7F0301E2,0x7F0301E3,0x7F0301E4,0x7F0301E5,0x7F0301E6,0x7F0301E7,0x7F0301E8,0x7F0301E9,0x7F0301EA,0x7F0301EB,0x7F0301EC,0x7F0301ED,0x7F0301EE,0x7F0301EF,0x7F0301F0,0x7F0301F2,0x7F0301F3,0x7F0301F4,0x7F0301F5,0x7F0301F6,0x7F0301F7,0x7F0301F8,0x7F0301F9,0x7F03024B,0x7F03024C,0x7F030272,0x7F030279,0x7F030352,0x7F030354 } - public static int[] ConstraintSet = new int[] { - 16842948, - 16842960, - 16842972, - 16842996, - 16842997, - 16842999, - 16843000, - 16843001, - 16843002, - 16843039, - 16843040, - 16843071, - 16843072, - 16843189, - 16843190, - 16843551, - 16843552, - 16843553, - 16843554, - 16843555, - 16843556, - 16843557, - 16843558, - 16843559, - 16843560, - 16843701, - 16843702, - 16843770, - 16843840, - 2130903083, - 2130903113, - 2130903114, - 2130903115, - 2130903166, - 2130903244, - 2130903245, - 2130903304, - 2130903316, - 2130903379, - 2130903380, - 2130903381, - 2130903382, - 2130903383, - 2130903384, - 2130903385, - 2130903386, - 2130903387, - 2130903388, - 2130903389, - 2130903390, - 2130903391, - 2130903393, - 2130903394, - 2130903395, - 2130903396, - 2130903397, - 2130903495, - 2130903496, - 2130903497, - 2130903498, - 2130903499, - 2130903500, - 2130903501, - 2130903502, - 2130903503, - 2130903504, - 2130903505, - 2130903506, - 2130903507, - 2130903508, - 2130903509, - 2130903510, - 2130903511, - 2130903512, - 2130903513, - 2130903514, - 2130903515, - 2130903516, - 2130903517, - 2130903518, - 2130903519, - 2130903520, - 2130903521, - 2130903522, - 2130903523, - 2130903524, - 2130903525, - 2130903526, - 2130903527, - 2130903528, - 2130903529, - 2130903530, - 2130903531, - 2130903532, - 2130903533, - 2130903534, - 2130903535, - 2130903536, - 2130903538, - 2130903539, - 2130903540, - 2130903541, - 2130903542, - 2130903543, - 2130903544, - 2130903545, - 2130903627, - 2130903628, - 2130903666, - 2130903673, - 2130903890, - 2130903892}; - - // aapt resource value: 15 - public const int ConstraintSet_android_alpha = 15; - - // aapt resource value: 28 - public const int ConstraintSet_android_elevation = 28; - - // aapt resource value: 1 - public const int ConstraintSet_android_id = 1; - - // aapt resource value: 4 - public const int ConstraintSet_android_layout_height = 4; - - // aapt resource value: 8 - public const int ConstraintSet_android_layout_marginBottom = 8; - - // aapt resource value: 26 - public const int ConstraintSet_android_layout_marginEnd = 26; - - // aapt resource value: 5 - public const int ConstraintSet_android_layout_marginLeft = 5; - - // aapt resource value: 7 - public const int ConstraintSet_android_layout_marginRight = 7; - - // aapt resource value: 25 - public const int ConstraintSet_android_layout_marginStart = 25; - - // aapt resource value: 6 - public const int ConstraintSet_android_layout_marginTop = 6; - - // aapt resource value: 3 - public const int ConstraintSet_android_layout_width = 3; - - // aapt resource value: 10 - public const int ConstraintSet_android_maxHeight = 10; - - // aapt resource value: 9 - public const int ConstraintSet_android_maxWidth = 9; - - // aapt resource value: 12 - public const int ConstraintSet_android_minHeight = 12; - - // aapt resource value: 11 - public const int ConstraintSet_android_minWidth = 11; - - // aapt resource value: 0 - public const int ConstraintSet_android_orientation = 0; - - // aapt resource value: 13 - public const int ConstraintSet_android_pivotX = 13; - - // aapt resource value: 14 - public const int ConstraintSet_android_pivotY = 14; - - // aapt resource value: 22 - public const int ConstraintSet_android_rotation = 22; - - // aapt resource value: 23 - public const int ConstraintSet_android_rotationX = 23; - - // aapt resource value: 24 - public const int ConstraintSet_android_rotationY = 24; - - // aapt resource value: 20 - public const int ConstraintSet_android_scaleX = 20; - - // aapt resource value: 21 - public const int ConstraintSet_android_scaleY = 21; - - // aapt resource value: 16 - public const int ConstraintSet_android_transformPivotX = 16; - - // aapt resource value: 17 - public const int ConstraintSet_android_transformPivotY = 17; - - // aapt resource value: 18 - public const int ConstraintSet_android_translationX = 18; - - // aapt resource value: 19 - public const int ConstraintSet_android_translationY = 19; - - // aapt resource value: 27 - public const int ConstraintSet_android_translationZ = 27; - - // aapt resource value: 2 - public const int ConstraintSet_android_visibility = 2; - - // aapt resource value: 29 - public const int ConstraintSet_animate_relativeTo = 29; - - // aapt resource value: 30 - public const int ConstraintSet_barrierAllowsGoneWidgets = 30; - - // aapt resource value: 31 - public const int ConstraintSet_barrierDirection = 31; - - // aapt resource value: 32 - public const int ConstraintSet_barrierMargin = 32; - - // aapt resource value: 33 - public const int ConstraintSet_chainUseRtl = 33; - - // aapt resource value: 34 - public const int ConstraintSet_constraint_referenced_ids = 34; - - // aapt resource value: 35 - public const int ConstraintSet_constraint_referenced_tags = 35; - - // aapt resource value: 36 - public const int ConstraintSet_deriveConstraintsFrom = 36; - - // aapt resource value: 37 - public const int ConstraintSet_drawPath = 37; - - // aapt resource value: 38 - public const int ConstraintSet_flow_firstHorizontalBias = 38; - - // aapt resource value: 39 - public const int ConstraintSet_flow_firstHorizontalStyle = 39; - - // aapt resource value: 40 - public const int ConstraintSet_flow_firstVerticalBias = 40; - - // aapt resource value: 41 - public const int ConstraintSet_flow_firstVerticalStyle = 41; - - // aapt resource value: 42 - public const int ConstraintSet_flow_horizontalAlign = 42; - - // aapt resource value: 43 - public const int ConstraintSet_flow_horizontalBias = 43; - - // aapt resource value: 44 - public const int ConstraintSet_flow_horizontalGap = 44; - - // aapt resource value: 45 - public const int ConstraintSet_flow_horizontalStyle = 45; - - // aapt resource value: 46 - public const int ConstraintSet_flow_lastHorizontalBias = 46; - - // aapt resource value: 47 - public const int ConstraintSet_flow_lastHorizontalStyle = 47; - - // aapt resource value: 48 - public const int ConstraintSet_flow_lastVerticalBias = 48; - - // aapt resource value: 49 - public const int ConstraintSet_flow_lastVerticalStyle = 49; - - // aapt resource value: 50 - public const int ConstraintSet_flow_maxElementsWrap = 50; - - // aapt resource value: 51 - public const int ConstraintSet_flow_verticalAlign = 51; - - // aapt resource value: 52 - public const int ConstraintSet_flow_verticalBias = 52; - - // aapt resource value: 53 - public const int ConstraintSet_flow_verticalGap = 53; - - // aapt resource value: 54 - public const int ConstraintSet_flow_verticalStyle = 54; - - // aapt resource value: 55 - public const int ConstraintSet_flow_wrapMode = 55; - - // aapt resource value: 56 - public const int ConstraintSet_layout_constrainedHeight = 56; - - // aapt resource value: 57 - public const int ConstraintSet_layout_constrainedWidth = 57; - - // aapt resource value: 58 - public const int ConstraintSet_layout_constraintBaseline_creator = 58; - - // aapt resource value: 59 - public const int ConstraintSet_layout_constraintBaseline_toBaselineOf = 59; - - // aapt resource value: 60 - public const int ConstraintSet_layout_constraintBottom_creator = 60; - - // aapt resource value: 61 - public const int ConstraintSet_layout_constraintBottom_toBottomOf = 61; - - // aapt resource value: 62 - public const int ConstraintSet_layout_constraintBottom_toTopOf = 62; - - // aapt resource value: 63 - public const int ConstraintSet_layout_constraintCircle = 63; - - // aapt resource value: 64 - public const int ConstraintSet_layout_constraintCircleAngle = 64; - - // aapt resource value: 65 - public const int ConstraintSet_layout_constraintCircleRadius = 65; - - // aapt resource value: 66 - public const int ConstraintSet_layout_constraintDimensionRatio = 66; - - // aapt resource value: 67 - public const int ConstraintSet_layout_constraintEnd_toEndOf = 67; - - // aapt resource value: 68 - public const int ConstraintSet_layout_constraintEnd_toStartOf = 68; - - // aapt resource value: 69 - public const int ConstraintSet_layout_constraintGuide_begin = 69; - - // aapt resource value: 70 - public const int ConstraintSet_layout_constraintGuide_end = 70; - - // aapt resource value: 71 - public const int ConstraintSet_layout_constraintGuide_percent = 71; - - // aapt resource value: 72 - public const int ConstraintSet_layout_constraintHeight_default = 72; - - // aapt resource value: 73 - public const int ConstraintSet_layout_constraintHeight_max = 73; - - // aapt resource value: 74 - public const int ConstraintSet_layout_constraintHeight_min = 74; - - // aapt resource value: 75 - public const int ConstraintSet_layout_constraintHeight_percent = 75; - - // aapt resource value: 76 - public const int ConstraintSet_layout_constraintHorizontal_bias = 76; - - // aapt resource value: 77 - public const int ConstraintSet_layout_constraintHorizontal_chainStyle = 77; - - // aapt resource value: 78 - public const int ConstraintSet_layout_constraintHorizontal_weight = 78; - - // aapt resource value: 79 - public const int ConstraintSet_layout_constraintLeft_creator = 79; - - // aapt resource value: 80 - public const int ConstraintSet_layout_constraintLeft_toLeftOf = 80; - - // aapt resource value: 81 - public const int ConstraintSet_layout_constraintLeft_toRightOf = 81; - - // aapt resource value: 82 - public const int ConstraintSet_layout_constraintRight_creator = 82; - - // aapt resource value: 83 - public const int ConstraintSet_layout_constraintRight_toLeftOf = 83; - - // aapt resource value: 84 - public const int ConstraintSet_layout_constraintRight_toRightOf = 84; - - // aapt resource value: 85 - public const int ConstraintSet_layout_constraintStart_toEndOf = 85; - - // aapt resource value: 86 - public const int ConstraintSet_layout_constraintStart_toStartOf = 86; - - // aapt resource value: 87 - public const int ConstraintSet_layout_constraintTag = 87; - - // aapt resource value: 88 - public const int ConstraintSet_layout_constraintTop_creator = 88; - - // aapt resource value: 89 - public const int ConstraintSet_layout_constraintTop_toBottomOf = 89; - - // aapt resource value: 90 - public const int ConstraintSet_layout_constraintTop_toTopOf = 90; - - // aapt resource value: 91 - public const int ConstraintSet_layout_constraintVertical_bias = 91; - - // aapt resource value: 92 - public const int ConstraintSet_layout_constraintVertical_chainStyle = 92; - - // aapt resource value: 93 - public const int ConstraintSet_layout_constraintVertical_weight = 93; - - // aapt resource value: 94 - public const int ConstraintSet_layout_constraintWidth_default = 94; - - // aapt resource value: 95 - public const int ConstraintSet_layout_constraintWidth_max = 95; - - // aapt resource value: 96 - public const int ConstraintSet_layout_constraintWidth_min = 96; - - // aapt resource value: 97 - public const int ConstraintSet_layout_constraintWidth_percent = 97; - - // aapt resource value: 98 - public const int ConstraintSet_layout_editor_absoluteX = 98; - - // aapt resource value: 99 - public const int ConstraintSet_layout_editor_absoluteY = 99; - - // aapt resource value: 100 - public const int ConstraintSet_layout_goneMarginBottom = 100; - - // aapt resource value: 101 - public const int ConstraintSet_layout_goneMarginEnd = 101; - - // aapt resource value: 102 - public const int ConstraintSet_layout_goneMarginLeft = 102; - - // aapt resource value: 103 - public const int ConstraintSet_layout_goneMarginRight = 103; - - // aapt resource value: 104 - public const int ConstraintSet_layout_goneMarginStart = 104; - - // aapt resource value: 105 - public const int ConstraintSet_layout_goneMarginTop = 105; - - // aapt resource value: 106 - public const int ConstraintSet_motionProgress = 106; - - // aapt resource value: 107 - public const int ConstraintSet_motionStagger = 107; - - // aapt resource value: 108 - public const int ConstraintSet_pathMotionArc = 108; - - // aapt resource value: 109 - public const int ConstraintSet_pivotAnchor = 109; - - // aapt resource value: 110 - public const int ConstraintSet_transitionEasing = 110; - - // aapt resource value: 111 - public const int ConstraintSet_transitionPathRotate = 111; - - // aapt resource value: 13 - public const int Constraint_android_alpha = 13; - - // aapt resource value: 26 - public const int Constraint_android_elevation = 26; - - // aapt resource value: 1 - public const int Constraint_android_id = 1; - - // aapt resource value: 4 - public const int Constraint_android_layout_height = 4; - - // aapt resource value: 8 - public const int Constraint_android_layout_marginBottom = 8; - - // aapt resource value: 24 - public const int Constraint_android_layout_marginEnd = 24; - - // aapt resource value: 5 - public const int Constraint_android_layout_marginLeft = 5; - - // aapt resource value: 7 - public const int Constraint_android_layout_marginRight = 7; - - // aapt resource value: 23 - public const int Constraint_android_layout_marginStart = 23; - - // aapt resource value: 6 - public const int Constraint_android_layout_marginTop = 6; - - // aapt resource value: 3 - public const int Constraint_android_layout_width = 3; - - // aapt resource value: 10 - public const int Constraint_android_maxHeight = 10; - - // aapt resource value: 9 - public const int Constraint_android_maxWidth = 9; - - // aapt resource value: 12 - public const int Constraint_android_minHeight = 12; - - // aapt resource value: 11 - public const int Constraint_android_minWidth = 11; - - // aapt resource value: 0 - public const int Constraint_android_orientation = 0; - - // aapt resource value: 20 - public const int Constraint_android_rotation = 20; - - // aapt resource value: 21 - public const int Constraint_android_rotationX = 21; - - // aapt resource value: 22 - public const int Constraint_android_rotationY = 22; - - // aapt resource value: 18 - public const int Constraint_android_scaleX = 18; - - // aapt resource value: 19 - public const int Constraint_android_scaleY = 19; - - // aapt resource value: 14 - public const int Constraint_android_transformPivotX = 14; - - // aapt resource value: 15 - public const int Constraint_android_transformPivotY = 15; - - // aapt resource value: 16 - public const int Constraint_android_translationX = 16; - - // aapt resource value: 17 - public const int Constraint_android_translationY = 17; - - // aapt resource value: 25 - public const int Constraint_android_translationZ = 25; - - // aapt resource value: 2 - public const int Constraint_android_visibility = 2; - - // aapt resource value: 27 - public const int Constraint_animate_relativeTo = 27; - - // aapt resource value: 28 - public const int Constraint_barrierAllowsGoneWidgets = 28; - - // aapt resource value: 29 - public const int Constraint_barrierDirection = 29; - - // aapt resource value: 30 - public const int Constraint_barrierMargin = 30; - - // aapt resource value: 31 - public const int Constraint_chainUseRtl = 31; - - // aapt resource value: 32 - public const int Constraint_constraint_referenced_ids = 32; - - // aapt resource value: 33 - public const int Constraint_constraint_referenced_tags = 33; - - // aapt resource value: 34 - public const int Constraint_drawPath = 34; - - // aapt resource value: 35 - public const int Constraint_flow_firstHorizontalBias = 35; - - // aapt resource value: 36 - public const int Constraint_flow_firstHorizontalStyle = 36; - - // aapt resource value: 37 - public const int Constraint_flow_firstVerticalBias = 37; - - // aapt resource value: 38 - public const int Constraint_flow_firstVerticalStyle = 38; - - // aapt resource value: 39 - public const int Constraint_flow_horizontalAlign = 39; - - // aapt resource value: 40 - public const int Constraint_flow_horizontalBias = 40; - - // aapt resource value: 41 - public const int Constraint_flow_horizontalGap = 41; - - // aapt resource value: 42 - public const int Constraint_flow_horizontalStyle = 42; - - // aapt resource value: 43 - public const int Constraint_flow_lastHorizontalBias = 43; - - // aapt resource value: 44 - public const int Constraint_flow_lastHorizontalStyle = 44; - - // aapt resource value: 45 - public const int Constraint_flow_lastVerticalBias = 45; - - // aapt resource value: 46 - public const int Constraint_flow_lastVerticalStyle = 46; - - // aapt resource value: 47 - public const int Constraint_flow_maxElementsWrap = 47; - - // aapt resource value: 48 - public const int Constraint_flow_verticalAlign = 48; - - // aapt resource value: 49 - public const int Constraint_flow_verticalBias = 49; - - // aapt resource value: 50 - public const int Constraint_flow_verticalGap = 50; - - // aapt resource value: 51 - public const int Constraint_flow_verticalStyle = 51; - - // aapt resource value: 52 - public const int Constraint_flow_wrapMode = 52; - - // aapt resource value: 53 - public const int Constraint_layout_constrainedHeight = 53; - - // aapt resource value: 54 - public const int Constraint_layout_constrainedWidth = 54; - - // aapt resource value: 55 - public const int Constraint_layout_constraintBaseline_creator = 55; - - // aapt resource value: 56 - public const int Constraint_layout_constraintBaseline_toBaselineOf = 56; - - // aapt resource value: 57 - public const int Constraint_layout_constraintBottom_creator = 57; - - // aapt resource value: 58 - public const int Constraint_layout_constraintBottom_toBottomOf = 58; - - // aapt resource value: 59 - public const int Constraint_layout_constraintBottom_toTopOf = 59; - - // aapt resource value: 60 - public const int Constraint_layout_constraintCircle = 60; - - // aapt resource value: 61 - public const int Constraint_layout_constraintCircleAngle = 61; - - // aapt resource value: 62 - public const int Constraint_layout_constraintCircleRadius = 62; - - // aapt resource value: 63 - public const int Constraint_layout_constraintDimensionRatio = 63; - - // aapt resource value: 64 - public const int Constraint_layout_constraintEnd_toEndOf = 64; - - // aapt resource value: 65 - public const int Constraint_layout_constraintEnd_toStartOf = 65; - - // aapt resource value: 66 - public const int Constraint_layout_constraintGuide_begin = 66; - - // aapt resource value: 67 - public const int Constraint_layout_constraintGuide_end = 67; - - // aapt resource value: 68 - public const int Constraint_layout_constraintGuide_percent = 68; - - // aapt resource value: 69 - public const int Constraint_layout_constraintHeight_default = 69; - - // aapt resource value: 70 - public const int Constraint_layout_constraintHeight_max = 70; - - // aapt resource value: 71 - public const int Constraint_layout_constraintHeight_min = 71; - - // aapt resource value: 72 - public const int Constraint_layout_constraintHeight_percent = 72; - - // aapt resource value: 73 - public const int Constraint_layout_constraintHorizontal_bias = 73; - - // aapt resource value: 74 - public const int Constraint_layout_constraintHorizontal_chainStyle = 74; - - // aapt resource value: 75 - public const int Constraint_layout_constraintHorizontal_weight = 75; - - // aapt resource value: 76 - public const int Constraint_layout_constraintLeft_creator = 76; - - // aapt resource value: 77 - public const int Constraint_layout_constraintLeft_toLeftOf = 77; - - // aapt resource value: 78 - public const int Constraint_layout_constraintLeft_toRightOf = 78; - - // aapt resource value: 79 - public const int Constraint_layout_constraintRight_creator = 79; - - // aapt resource value: 80 - public const int Constraint_layout_constraintRight_toLeftOf = 80; - - // aapt resource value: 81 - public const int Constraint_layout_constraintRight_toRightOf = 81; - - // aapt resource value: 82 - public const int Constraint_layout_constraintStart_toEndOf = 82; - - // aapt resource value: 83 - public const int Constraint_layout_constraintStart_toStartOf = 83; - - // aapt resource value: 84 - public const int Constraint_layout_constraintTag = 84; - - // aapt resource value: 85 - public const int Constraint_layout_constraintTop_creator = 85; - - // aapt resource value: 86 - public const int Constraint_layout_constraintTop_toBottomOf = 86; - - // aapt resource value: 87 - public const int Constraint_layout_constraintTop_toTopOf = 87; - - // aapt resource value: 88 - public const int Constraint_layout_constraintVertical_bias = 88; - - // aapt resource value: 89 - public const int Constraint_layout_constraintVertical_chainStyle = 89; - - // aapt resource value: 90 - public const int Constraint_layout_constraintVertical_weight = 90; - - // aapt resource value: 91 - public const int Constraint_layout_constraintWidth_default = 91; - - // aapt resource value: 92 - public const int Constraint_layout_constraintWidth_max = 92; - - // aapt resource value: 93 - public const int Constraint_layout_constraintWidth_min = 93; - - // aapt resource value: 94 - public const int Constraint_layout_constraintWidth_percent = 94; - - // aapt resource value: 95 - public const int Constraint_layout_editor_absoluteX = 95; - - // aapt resource value: 96 - public const int Constraint_layout_editor_absoluteY = 96; - - // aapt resource value: 97 - public const int Constraint_layout_goneMarginBottom = 97; - - // aapt resource value: 98 - public const int Constraint_layout_goneMarginEnd = 98; - - // aapt resource value: 99 - public const int Constraint_layout_goneMarginLeft = 99; - - // aapt resource value: 100 - public const int Constraint_layout_goneMarginRight = 100; - - // aapt resource value: 101 - public const int Constraint_layout_goneMarginStart = 101; - - // aapt resource value: 102 - public const int Constraint_layout_goneMarginTop = 102; - - // aapt resource value: 103 - public const int Constraint_motionProgress = 103; - - // aapt resource value: 104 - public const int Constraint_motionStagger = 104; - - // aapt resource value: 105 - public const int Constraint_pathMotionArc = 105; - - // aapt resource value: 106 - public const int Constraint_pivotAnchor = 106; - - // aapt resource value: 107 - public const int Constraint_transitionEasing = 107; - - // aapt resource value: 108 - public const int Constraint_transitionPathRotate = 108; - - // aapt resource value: 109 - public const int Constraint_visibilityMode = 109; - - // aapt resource value: { 0x7F0301B9,0x7F0302CE } - public static int[] CoordinatorLayout = new int[] { - 2130903481, - 2130903758}; - - // aapt resource value: 0 - public const int CoordinatorLayout_keylines = 0; - - // aapt resource value: { 0x10100B3,0x7F0301C2,0x7F0301C3,0x7F0301C4,0x7F0301F1,0x7F0301FA,0x7F0301FB } - public static int[] CoordinatorLayout_Layout = new int[] { - 16842931, - 2130903490, - 2130903491, - 2130903492, - 2130903537, - 2130903546, - 2130903547}; - - // aapt resource value: 0 - public const int CoordinatorLayout_Layout_android_layout_gravity = 0; - - // aapt resource value: 1 - public const int CoordinatorLayout_Layout_layout_anchor = 1; - - // aapt resource value: 2 - public const int CoordinatorLayout_Layout_layout_anchorGravity = 2; - - // aapt resource value: 3 - public const int CoordinatorLayout_Layout_layout_behavior = 3; - - // aapt resource value: 4 - public const int CoordinatorLayout_Layout_layout_dodgeInsetEdges = 4; - - // aapt resource value: 5 - public const int CoordinatorLayout_Layout_layout_insetEdge = 5; - - // aapt resource value: 6 - public const int CoordinatorLayout_Layout_layout_keyline = 6; - - // aapt resource value: 1 - public const int CoordinatorLayout_statusBarBackground = 1; - - // aapt resource value: { 0x7F030032,0x7F0300F6,0x7F0300F7,0x7F0300F8,0x7F0300F9,0x7F0300FA,0x7F0300FB,0x7F0300FD,0x7F0300FE } - public static int[] CustomAttribute = new int[] { - 2130903090, - 2130903286, - 2130903287, - 2130903288, - 2130903289, - 2130903290, - 2130903291, - 2130903293, - 2130903294}; - - // aapt resource value: 0 - public const int CustomAttribute_attributeName = 0; - - // aapt resource value: 1 - public const int CustomAttribute_customBoolean = 1; - - // aapt resource value: 2 - public const int CustomAttribute_customColorDrawableValue = 2; - - // aapt resource value: 3 - public const int CustomAttribute_customColorValue = 3; - - // aapt resource value: 4 - public const int CustomAttribute_customDimension = 4; - - // aapt resource value: 5 - public const int CustomAttribute_customFloatValue = 5; - - // aapt resource value: 6 - public const int CustomAttribute_customIntegerValue = 6; - - // aapt resource value: 7 - public const int CustomAttribute_customPixelDimension = 7; - - // aapt resource value: 8 - public const int CustomAttribute_customStringValue = 8; - - // aapt resource value: { 0x7F030030,0x7F030031,0x7F030048,0x7F0300B2,0x7F030119,0x7F030173,0x7F0302BC,0x7F030321 } - public static int[] DrawerArrowToggle = new int[] { - 2130903088, - 2130903089, - 2130903112, - 2130903218, - 2130903321, - 2130903411, - 2130903740, - 2130903841}; - - // aapt resource value: 0 - public const int DrawerArrowToggle_arrowHeadLength = 0; - - // aapt resource value: 1 - public const int DrawerArrowToggle_arrowShaftLength = 1; - - // aapt resource value: 2 - public const int DrawerArrowToggle_barLength = 2; - - // aapt resource value: 3 - public const int DrawerArrowToggle_color = 3; - - // aapt resource value: 4 - public const int DrawerArrowToggle_drawableSize = 4; - - // aapt resource value: 5 - public const int DrawerArrowToggle_gapBetweenBars = 5; - - // aapt resource value: 6 - public const int DrawerArrowToggle_spinBars = 6; - - // aapt resource value: 7 - public const int DrawerArrowToggle_thickness = 7; - - // aapt resource value: { 0x7F030126 } - public static int[] DrawerLayout = new int[] { - 2130903334}; - - // aapt resource value: 0 - public const int DrawerLayout_elevation = 0; - - // aapt resource value: { 0x7F0300AE,0x7F030126,0x7F030143,0x7F03017F,0x7F0302AE,0x7F0302B2 } - public static int[] ExtendedFloatingActionButton = new int[] { - 2130903214, - 2130903334, - 2130903363, - 2130903423, - 2130903726, - 2130903730}; - - // aapt resource value: { 0x7F03004C,0x7F03004D } - public static int[] ExtendedFloatingActionButton_Behavior_Layout = new int[] { - 2130903116, - 2130903117}; - - // aapt resource value: 0 - public const int ExtendedFloatingActionButton_Behavior_Layout_behavior_autoHide = 0; - - // aapt resource value: 1 - public const int ExtendedFloatingActionButton_Behavior_Layout_behavior_autoShrink = 1; - - // aapt resource value: 0 - public const int ExtendedFloatingActionButton_collapsedSize = 0; - - // aapt resource value: 1 - public const int ExtendedFloatingActionButton_elevation = 1; - - // aapt resource value: 2 - public const int ExtendedFloatingActionButton_extendMotionSpec = 2; - - // aapt resource value: 3 - public const int ExtendedFloatingActionButton_hideMotionSpec = 3; - - // aapt resource value: 4 - public const int ExtendedFloatingActionButton_showMotionSpec = 4; - - // aapt resource value: 5 - public const int ExtendedFloatingActionButton_shrinkMotionSpec = 5; - - // aapt resource value: { 0x101000E,0x7F030043,0x7F030044,0x7F030057,0x7F030126,0x7F030131,0x7F03014A,0x7F03014B,0x7F03017F,0x7F030189,0x7F030237,0x7F030286,0x7F030296,0x7F0302A5,0x7F0302A8,0x7F0302AE,0x7F03035A } - public static int[] FloatingActionButton = new int[] { - 16842766, - 2130903107, - 2130903108, - 2130903127, - 2130903334, - 2130903345, - 2130903370, - 2130903371, - 2130903423, - 2130903433, - 2130903607, - 2130903686, - 2130903702, - 2130903717, - 2130903720, - 2130903726, - 2130903898}; - - // aapt resource value: 0 - public const int FloatingActionButton_android_enabled = 0; - - // aapt resource value: 1 - public const int FloatingActionButton_backgroundTint = 1; - - // aapt resource value: 2 - public const int FloatingActionButton_backgroundTintMode = 2; - - // aapt resource value: { 0x7F03004C } - public static int[] FloatingActionButton_Behavior_Layout = new int[] { - 2130903116}; - - // aapt resource value: 0 - public const int FloatingActionButton_Behavior_Layout_behavior_autoHide = 0; - - // aapt resource value: 3 - public const int FloatingActionButton_borderWidth = 3; - - // aapt resource value: 4 - public const int FloatingActionButton_elevation = 4; - - // aapt resource value: 5 - public const int FloatingActionButton_ensureMinTouchTargetSize = 5; - - // aapt resource value: 6 - public const int FloatingActionButton_fabCustomSize = 6; - - // aapt resource value: 7 - public const int FloatingActionButton_fabSize = 7; - - // aapt resource value: 8 - public const int FloatingActionButton_hideMotionSpec = 8; - - // aapt resource value: 9 - public const int FloatingActionButton_hoveredFocusedTranslationZ = 9; - - // aapt resource value: 10 - public const int FloatingActionButton_maxImageSize = 10; - - // aapt resource value: 11 - public const int FloatingActionButton_pressedTranslationZ = 11; - - // aapt resource value: 12 - public const int FloatingActionButton_rippleColor = 12; - - // aapt resource value: 13 - public const int FloatingActionButton_shapeAppearance = 13; - - // aapt resource value: 14 - public const int FloatingActionButton_shapeAppearanceOverlay = 14; - - // aapt resource value: 15 - public const int FloatingActionButton_showMotionSpec = 15; - - // aapt resource value: 16 - public const int FloatingActionButton_useCompatPadding = 16; - - // aapt resource value: { 0x7F0301B0,0x7F030203 } - public static int[] FlowLayout = new int[] { - 2130903472, - 2130903555}; - - // aapt resource value: 0 - public const int FlowLayout_itemSpacing = 0; - - // aapt resource value: 1 - public const int FlowLayout_lineSpacing = 1; - - // aapt resource value: { 0x7F030168,0x7F030169,0x7F03016A,0x7F03016B,0x7F03016C,0x7F03016D } - public static int[] FontFamily = new int[] { - 2130903400, - 2130903401, - 2130903402, - 2130903403, - 2130903404, - 2130903405}; - - // aapt resource value: { 0x1010532,0x1010533,0x101053F,0x101056F,0x1010570,0x7F030166,0x7F03016E,0x7F03016F,0x7F030170,0x7F030359 } - public static int[] FontFamilyFont = new int[] { - 16844082, - 16844083, - 16844095, - 16844143, - 16844144, - 2130903398, - 2130903406, - 2130903407, - 2130903408, - 2130903897}; - - // aapt resource value: 0 - public const int FontFamilyFont_android_font = 0; - - // aapt resource value: 2 - public const int FontFamilyFont_android_fontStyle = 2; - - // aapt resource value: 4 - public const int FontFamilyFont_android_fontVariationSettings = 4; - - // aapt resource value: 1 - public const int FontFamilyFont_android_fontWeight = 1; - - // aapt resource value: 3 - public const int FontFamilyFont_android_ttcIndex = 3; - - // aapt resource value: 5 - public const int FontFamilyFont_font = 5; - - // aapt resource value: 6 - public const int FontFamilyFont_fontStyle = 6; - - // aapt resource value: 7 - public const int FontFamilyFont_fontVariationSettings = 7; - - // aapt resource value: 8 - public const int FontFamilyFont_fontWeight = 8; - - // aapt resource value: 9 - public const int FontFamilyFont_ttcIndex = 9; - - // aapt resource value: 0 - public const int FontFamily_fontProviderAuthority = 0; - - // aapt resource value: 1 - public const int FontFamily_fontProviderCerts = 1; - - // aapt resource value: 2 - public const int FontFamily_fontProviderFetchStrategy = 2; - - // aapt resource value: 3 - public const int FontFamily_fontProviderFetchTimeout = 3; - - // aapt resource value: 4 - public const int FontFamily_fontProviderPackage = 4; - - // aapt resource value: 5 - public const int FontFamily_fontProviderQuery = 5; - - // aapt resource value: { 0x1010109,0x1010200,0x7F030171 } - public static int[] ForegroundLinearLayout = new int[] { - 16843017, - 16843264, - 2130903409}; - - // aapt resource value: 0 - public const int ForegroundLinearLayout_android_foreground = 0; - - // aapt resource value: 1 - public const int ForegroundLinearLayout_android_foregroundGravity = 1; - - // aapt resource value: 2 - public const int ForegroundLinearLayout_foregroundInsidePadding = 2; - - // aapt resource value: { 0x1010003,0x10100D0,0x10100D1 } - public static int[] Fragment = new int[] { - 16842755, - 16842960, - 16842961}; - - // aapt resource value: { 0x1010003,0x10100D1 } - public static int[] FragmentContainerView = new int[] { - 16842755, - 16842961}; - - // aapt resource value: 0 - public const int FragmentContainerView_android_name = 0; - - // aapt resource value: 1 - public const int FragmentContainerView_android_tag = 1; - - // aapt resource value: 1 - public const int Fragment_android_id = 1; - - // aapt resource value: 0 - public const int Fragment_android_name = 0; - - // aapt resource value: 2 - public const int Fragment_android_tag = 2; - - // aapt resource value: { 0x101019D,0x101019E,0x10101A1,0x10101A2,0x10101A3,0x10101A4,0x1010201,0x101020B,0x1010510,0x1010511,0x1010512,0x1010513 } - public static int[] GradientColor = new int[] { - 16843165, - 16843166, - 16843169, - 16843170, - 16843171, - 16843172, - 16843265, - 16843275, - 16844048, - 16844049, - 16844050, - 16844051}; - - // aapt resource value: { 0x10101A5,0x1010514 } - public static int[] GradientColorItem = new int[] { - 16843173, - 16844052}; - - // aapt resource value: 0 - public const int GradientColorItem_android_color = 0; - - // aapt resource value: 1 - public const int GradientColorItem_android_offset = 1; - - // aapt resource value: 7 - public const int GradientColor_android_centerColor = 7; - - // aapt resource value: 3 - public const int GradientColor_android_centerX = 3; - - // aapt resource value: 4 - public const int GradientColor_android_centerY = 4; - - // aapt resource value: 1 - public const int GradientColor_android_endColor = 1; - - // aapt resource value: 10 - public const int GradientColor_android_endX = 10; - - // aapt resource value: 11 - public const int GradientColor_android_endY = 11; - - // aapt resource value: 5 - public const int GradientColor_android_gradientRadius = 5; - - // aapt resource value: 0 - public const int GradientColor_android_startColor = 0; - - // aapt resource value: 8 - public const int GradientColor_android_startX = 8; - - // aapt resource value: 9 - public const int GradientColor_android_startY = 9; - - // aapt resource value: 6 - public const int GradientColor_android_tileMode = 6; - - // aapt resource value: 2 - public const int GradientColor_android_type = 2; - - // aapt resource value: { 0x7F03002A,0x7F030068,0x7F0300DF,0x7F0300F3,0x7F030262,0x7F030297,0x7F030298,0x7F030299,0x7F030361 } - public static int[] ImageFilterView = new int[] { - 2130903082, - 2130903144, - 2130903263, - 2130903283, - 2130903650, - 2130903703, - 2130903704, - 2130903705, - 2130903905}; - - // aapt resource value: 0 - public const int ImageFilterView_altSrc = 0; - - // aapt resource value: 1 - public const int ImageFilterView_brightness = 1; - - // aapt resource value: 2 - public const int ImageFilterView_contrast = 2; - - // aapt resource value: 3 - public const int ImageFilterView_crossfade = 3; - - // aapt resource value: 4 - public const int ImageFilterView_overlay = 4; - - // aapt resource value: 5 - public const int ImageFilterView_round = 5; - - // aapt resource value: 6 - public const int ImageFilterView_roundPercent = 6; - - // aapt resource value: 7 - public const int ImageFilterView_saturation = 7; - - // aapt resource value: 8 - public const int ImageFilterView_warmth = 8; - - // aapt resource value: { 0x7F030264,0x7F030266,0x7F030267 } - public static int[] Insets = new int[] { - 2130903652, - 2130903654, - 2130903655}; - - // aapt resource value: 0 - public const int Insets_paddingBottomSystemWindowInsets = 0; - - // aapt resource value: 1 - public const int Insets_paddingLeftSystemWindowInsets = 1; - - // aapt resource value: 2 - public const int Insets_paddingRightSystemWindowInsets = 2; - - // aapt resource value: { 0x101031F,0x1010320,0x1010321,0x1010322,0x1010323,0x1010324,0x1010325,0x1010326,0x1010327,0x1010328,0x10103FA,0x1010440,0x7F0300F5,0x7F030172,0x7F03024B,0x7F03024D,0x7F030352,0x7F030354 } - public static int[] KeyAttribute = new int[] { - 16843551, - 16843552, - 16843553, - 16843554, - 16843555, - 16843556, - 16843557, - 16843558, - 16843559, - 16843560, - 16843770, - 16843840, - 2130903285, - 2130903410, - 2130903627, - 2130903629, - 2130903890, - 2130903892}; - - // aapt resource value: 0 - public const int KeyAttribute_android_alpha = 0; - - // aapt resource value: 11 - public const int KeyAttribute_android_elevation = 11; - - // aapt resource value: 7 - public const int KeyAttribute_android_rotation = 7; - - // aapt resource value: 8 - public const int KeyAttribute_android_rotationX = 8; - - // aapt resource value: 9 - public const int KeyAttribute_android_rotationY = 9; - - // aapt resource value: 5 - public const int KeyAttribute_android_scaleX = 5; - - // aapt resource value: 6 - public const int KeyAttribute_android_scaleY = 6; - - // aapt resource value: 1 - public const int KeyAttribute_android_transformPivotX = 1; - - // aapt resource value: 2 - public const int KeyAttribute_android_transformPivotY = 2; - - // aapt resource value: 3 - public const int KeyAttribute_android_translationX = 3; - - // aapt resource value: 4 - public const int KeyAttribute_android_translationY = 4; - - // aapt resource value: 10 - public const int KeyAttribute_android_translationZ = 10; - - // aapt resource value: 12 - public const int KeyAttribute_curveFit = 12; - - // aapt resource value: 13 - public const int KeyAttribute_framePosition = 13; - - // aapt resource value: 14 - public const int KeyAttribute_motionProgress = 14; - - // aapt resource value: 15 - public const int KeyAttribute_motionTarget = 15; - - // aapt resource value: 16 - public const int KeyAttribute_transitionEasing = 16; - - // aapt resource value: 17 - public const int KeyAttribute_transitionPathRotate = 17; - - // aapt resource value: { 0x101031F,0x1010322,0x1010323,0x1010324,0x1010325,0x1010326,0x1010327,0x1010328,0x10103FA,0x1010440,0x7F0300F5,0x7F030172,0x7F03024B,0x7F03024D,0x7F030352,0x7F030354,0x7F030363,0x7F030364,0x7F030365,0x7F030366 } - public static int[] KeyCycle = new int[] { - 16843551, - 16843554, - 16843555, - 16843556, - 16843557, - 16843558, - 16843559, - 16843560, - 16843770, - 16843840, - 2130903285, - 2130903410, - 2130903627, - 2130903629, - 2130903890, - 2130903892, - 2130903907, - 2130903908, - 2130903909, - 2130903910}; - - // aapt resource value: 0 - public const int KeyCycle_android_alpha = 0; - - // aapt resource value: 9 - public const int KeyCycle_android_elevation = 9; - - // aapt resource value: 5 - public const int KeyCycle_android_rotation = 5; - - // aapt resource value: 6 - public const int KeyCycle_android_rotationX = 6; - - // aapt resource value: 7 - public const int KeyCycle_android_rotationY = 7; - - // aapt resource value: 3 - public const int KeyCycle_android_scaleX = 3; - - // aapt resource value: 4 - public const int KeyCycle_android_scaleY = 4; - - // aapt resource value: 1 - public const int KeyCycle_android_translationX = 1; - - // aapt resource value: 2 - public const int KeyCycle_android_translationY = 2; - - // aapt resource value: 8 - public const int KeyCycle_android_translationZ = 8; - - // aapt resource value: 10 - public const int KeyCycle_curveFit = 10; - - // aapt resource value: 11 - public const int KeyCycle_framePosition = 11; - - // aapt resource value: 12 - public const int KeyCycle_motionProgress = 12; - - // aapt resource value: 13 - public const int KeyCycle_motionTarget = 13; - - // aapt resource value: 14 - public const int KeyCycle_transitionEasing = 14; - - // aapt resource value: 15 - public const int KeyCycle_transitionPathRotate = 15; - - // aapt resource value: 16 - public const int KeyCycle_waveOffset = 16; - - // aapt resource value: 17 - public const int KeyCycle_wavePeriod = 17; - - // aapt resource value: 18 - public const int KeyCycle_waveShape = 18; - - // aapt resource value: 19 - public const int KeyCycle_waveVariesBy = 19; - - // aapt resource value: { 0xFFFFFFFF } - public static int[] KeyFrame = new int[] { - -1}; - - // aapt resource value: { 0xFFFFFFFF } - public static int[] KeyFramesAcceleration = new int[] { - -1}; - - // aapt resource value: { 0xFFFFFFFF } - public static int[] KeyFramesVelocity = new int[] { - -1}; - - // aapt resource value: { 0x7F0300F5,0x7F030114,0x7F030172,0x7F0301B7,0x7F03024D,0x7F030272,0x7F030274,0x7F030275,0x7F030276,0x7F030277,0x7F0302B6,0x7F030352 } - public static int[] KeyPosition = new int[] { - 2130903285, - 2130903316, - 2130903410, - 2130903479, - 2130903629, - 2130903666, - 2130903668, - 2130903669, - 2130903670, - 2130903671, - 2130903734, - 2130903890}; - - // aapt resource value: 0 - public const int KeyPosition_curveFit = 0; - - // aapt resource value: 1 - public const int KeyPosition_drawPath = 1; - - // aapt resource value: 2 - public const int KeyPosition_framePosition = 2; - - // aapt resource value: 3 - public const int KeyPosition_keyPositionType = 3; - - // aapt resource value: 4 - public const int KeyPosition_motionTarget = 4; - - // aapt resource value: 5 - public const int KeyPosition_pathMotionArc = 5; - - // aapt resource value: 6 - public const int KeyPosition_percentHeight = 6; - - // aapt resource value: 7 - public const int KeyPosition_percentWidth = 7; - - // aapt resource value: 8 - public const int KeyPosition_percentX = 8; - - // aapt resource value: 9 - public const int KeyPosition_percentY = 9; - - // aapt resource value: 10 - public const int KeyPosition_sizePercent = 10; - - // aapt resource value: 11 - public const int KeyPosition_transitionEasing = 11; - - // aapt resource value: { 0x101031F,0x1010322,0x1010323,0x1010324,0x1010325,0x1010326,0x1010327,0x1010328,0x10103FA,0x1010440,0x7F0300F5,0x7F030172,0x7F03024B,0x7F03024D,0x7F030352,0x7F030354,0x7F030362,0x7F030363,0x7F030364,0x7F030365 } - public static int[] KeyTimeCycle = new int[] { - 16843551, - 16843554, - 16843555, - 16843556, - 16843557, - 16843558, - 16843559, - 16843560, - 16843770, - 16843840, - 2130903285, - 2130903410, - 2130903627, - 2130903629, - 2130903890, - 2130903892, - 2130903906, - 2130903907, - 2130903908, - 2130903909}; - - // aapt resource value: 0 - public const int KeyTimeCycle_android_alpha = 0; - - // aapt resource value: 9 - public const int KeyTimeCycle_android_elevation = 9; - - // aapt resource value: 5 - public const int KeyTimeCycle_android_rotation = 5; - - // aapt resource value: 6 - public const int KeyTimeCycle_android_rotationX = 6; - - // aapt resource value: 7 - public const int KeyTimeCycle_android_rotationY = 7; - - // aapt resource value: 3 - public const int KeyTimeCycle_android_scaleX = 3; - - // aapt resource value: 4 - public const int KeyTimeCycle_android_scaleY = 4; - - // aapt resource value: 1 - public const int KeyTimeCycle_android_translationX = 1; - - // aapt resource value: 2 - public const int KeyTimeCycle_android_translationY = 2; - - // aapt resource value: 8 - public const int KeyTimeCycle_android_translationZ = 8; - - // aapt resource value: 10 - public const int KeyTimeCycle_curveFit = 10; - - // aapt resource value: 11 - public const int KeyTimeCycle_framePosition = 11; - - // aapt resource value: 12 - public const int KeyTimeCycle_motionProgress = 12; - - // aapt resource value: 13 - public const int KeyTimeCycle_motionTarget = 13; - - // aapt resource value: 14 - public const int KeyTimeCycle_transitionEasing = 14; - - // aapt resource value: 15 - public const int KeyTimeCycle_transitionPathRotate = 15; - - // aapt resource value: 16 - public const int KeyTimeCycle_waveDecay = 16; - - // aapt resource value: 17 - public const int KeyTimeCycle_waveOffset = 17; - - // aapt resource value: 18 - public const int KeyTimeCycle_wavePeriod = 18; - - // aapt resource value: 19 - public const int KeyTimeCycle_waveShape = 19; - - // aapt resource value: { 0x7F030172,0x7F03024D,0x7F03024E,0x7F03024F,0x7F03025B,0x7F03025D,0x7F03025E,0x7F030356,0x7F030357,0x7F030358 } - public static int[] KeyTrigger = new int[] { - 2130903410, - 2130903629, - 2130903630, - 2130903631, - 2130903643, - 2130903645, - 2130903646, - 2130903894, - 2130903895, - 2130903896}; - - // aapt resource value: 0 - public const int KeyTrigger_framePosition = 0; - - // aapt resource value: 1 - public const int KeyTrigger_motionTarget = 1; - - // aapt resource value: 2 - public const int KeyTrigger_motion_postLayoutCollision = 2; - - // aapt resource value: 3 - public const int KeyTrigger_motion_triggerOnCollision = 3; - - // aapt resource value: 4 - public const int KeyTrigger_onCross = 4; - - // aapt resource value: 5 - public const int KeyTrigger_onNegativeCross = 5; - - // aapt resource value: 6 - public const int KeyTrigger_onPositiveCross = 6; - - // aapt resource value: 7 - public const int KeyTrigger_triggerId = 7; - - // aapt resource value: 8 - public const int KeyTrigger_triggerReceiver = 8; - - // aapt resource value: 9 - public const int KeyTrigger_triggerSlack = 9; - - // aapt resource value: { 0x10100C4,0x10100F4,0x10100F5,0x10100F7,0x10100F8,0x10100F9,0x10100FA,0x10103B5,0x10103B6,0x7F030049,0x7F03004A,0x7F03004B,0x7F03007E,0x7F0300CC,0x7F0300CD,0x7F0301C7,0x7F0301C8,0x7F0301C9,0x7F0301CA,0x7F0301CB,0x7F0301CC,0x7F0301CD,0x7F0301CE,0x7F0301CF,0x7F0301D0,0x7F0301D1,0x7F0301D2,0x7F0301D3,0x7F0301D4,0x7F0301D5,0x7F0301D6,0x7F0301D7,0x7F0301D8,0x7F0301D9,0x7F0301DA,0x7F0301DB,0x7F0301DC,0x7F0301DD,0x7F0301DE,0x7F0301DF,0x7F0301E0,0x7F0301E1,0x7F0301E2,0x7F0301E3,0x7F0301E4,0x7F0301E5,0x7F0301E7,0x7F0301E8,0x7F0301E9,0x7F0301EA,0x7F0301EB,0x7F0301EC,0x7F0301ED,0x7F0301EE,0x7F0301EF,0x7F0301F0,0x7F0301F2,0x7F0301F3,0x7F0301F4,0x7F0301F5,0x7F0301F6,0x7F0301F7,0x7F0301F8,0x7F0301F9,0x7F030236,0x7F03023A,0x7F03023D,0x7F030241 } - public static int[] Layout = new int[] { - 16842948, - 16842996, - 16842997, - 16842999, - 16843000, - 16843001, - 16843002, - 16843701, - 16843702, - 2130903113, - 2130903114, - 2130903115, - 2130903166, - 2130903244, - 2130903245, - 2130903495, - 2130903496, - 2130903497, - 2130903498, - 2130903499, - 2130903500, - 2130903501, - 2130903502, - 2130903503, - 2130903504, - 2130903505, - 2130903506, - 2130903507, - 2130903508, - 2130903509, - 2130903510, - 2130903511, - 2130903512, - 2130903513, - 2130903514, - 2130903515, - 2130903516, - 2130903517, - 2130903518, - 2130903519, - 2130903520, - 2130903521, - 2130903522, - 2130903523, - 2130903524, - 2130903525, - 2130903527, - 2130903528, - 2130903529, - 2130903530, - 2130903531, - 2130903532, - 2130903533, - 2130903534, - 2130903535, - 2130903536, - 2130903538, - 2130903539, - 2130903540, - 2130903541, - 2130903542, - 2130903543, - 2130903544, - 2130903545, - 2130903606, - 2130903610, - 2130903613, - 2130903617}; - - // aapt resource value: 2 - public const int Layout_android_layout_height = 2; - - // aapt resource value: 6 - public const int Layout_android_layout_marginBottom = 6; - - // aapt resource value: 8 - public const int Layout_android_layout_marginEnd = 8; - - // aapt resource value: 3 - public const int Layout_android_layout_marginLeft = 3; - - // aapt resource value: 5 - public const int Layout_android_layout_marginRight = 5; - - // aapt resource value: 7 - public const int Layout_android_layout_marginStart = 7; - - // aapt resource value: 4 - public const int Layout_android_layout_marginTop = 4; - - // aapt resource value: 1 - public const int Layout_android_layout_width = 1; - - // aapt resource value: 0 - public const int Layout_android_orientation = 0; - - // aapt resource value: 9 - public const int Layout_barrierAllowsGoneWidgets = 9; - - // aapt resource value: 10 - public const int Layout_barrierDirection = 10; - - // aapt resource value: 11 - public const int Layout_barrierMargin = 11; - - // aapt resource value: 12 - public const int Layout_chainUseRtl = 12; - - // aapt resource value: 13 - public const int Layout_constraint_referenced_ids = 13; - - // aapt resource value: 14 - public const int Layout_constraint_referenced_tags = 14; - - // aapt resource value: 15 - public const int Layout_layout_constrainedHeight = 15; - - // aapt resource value: 16 - public const int Layout_layout_constrainedWidth = 16; - - // aapt resource value: 17 - public const int Layout_layout_constraintBaseline_creator = 17; - - // aapt resource value: 18 - public const int Layout_layout_constraintBaseline_toBaselineOf = 18; - - // aapt resource value: 19 - public const int Layout_layout_constraintBottom_creator = 19; - - // aapt resource value: 20 - public const int Layout_layout_constraintBottom_toBottomOf = 20; - - // aapt resource value: 21 - public const int Layout_layout_constraintBottom_toTopOf = 21; - - // aapt resource value: 22 - public const int Layout_layout_constraintCircle = 22; - - // aapt resource value: 23 - public const int Layout_layout_constraintCircleAngle = 23; - - // aapt resource value: 24 - public const int Layout_layout_constraintCircleRadius = 24; - - // aapt resource value: 25 - public const int Layout_layout_constraintDimensionRatio = 25; - - // aapt resource value: 26 - public const int Layout_layout_constraintEnd_toEndOf = 26; - - // aapt resource value: 27 - public const int Layout_layout_constraintEnd_toStartOf = 27; - - // aapt resource value: 28 - public const int Layout_layout_constraintGuide_begin = 28; - - // aapt resource value: 29 - public const int Layout_layout_constraintGuide_end = 29; - - // aapt resource value: 30 - public const int Layout_layout_constraintGuide_percent = 30; - - // aapt resource value: 31 - public const int Layout_layout_constraintHeight_default = 31; - - // aapt resource value: 32 - public const int Layout_layout_constraintHeight_max = 32; - - // aapt resource value: 33 - public const int Layout_layout_constraintHeight_min = 33; - - // aapt resource value: 34 - public const int Layout_layout_constraintHeight_percent = 34; - - // aapt resource value: 35 - public const int Layout_layout_constraintHorizontal_bias = 35; - - // aapt resource value: 36 - public const int Layout_layout_constraintHorizontal_chainStyle = 36; - - // aapt resource value: 37 - public const int Layout_layout_constraintHorizontal_weight = 37; - - // aapt resource value: 38 - public const int Layout_layout_constraintLeft_creator = 38; - - // aapt resource value: 39 - public const int Layout_layout_constraintLeft_toLeftOf = 39; - - // aapt resource value: 40 - public const int Layout_layout_constraintLeft_toRightOf = 40; - - // aapt resource value: 41 - public const int Layout_layout_constraintRight_creator = 41; - - // aapt resource value: 42 - public const int Layout_layout_constraintRight_toLeftOf = 42; - - // aapt resource value: 43 - public const int Layout_layout_constraintRight_toRightOf = 43; - - // aapt resource value: 44 - public const int Layout_layout_constraintStart_toEndOf = 44; - - // aapt resource value: 45 - public const int Layout_layout_constraintStart_toStartOf = 45; - - // aapt resource value: 46 - public const int Layout_layout_constraintTop_creator = 46; - - // aapt resource value: 47 - public const int Layout_layout_constraintTop_toBottomOf = 47; - - // aapt resource value: 48 - public const int Layout_layout_constraintTop_toTopOf = 48; - - // aapt resource value: 49 - public const int Layout_layout_constraintVertical_bias = 49; - - // aapt resource value: 50 - public const int Layout_layout_constraintVertical_chainStyle = 50; - - // aapt resource value: 51 - public const int Layout_layout_constraintVertical_weight = 51; - - // aapt resource value: 52 - public const int Layout_layout_constraintWidth_default = 52; - - // aapt resource value: 53 - public const int Layout_layout_constraintWidth_max = 53; - - // aapt resource value: 54 - public const int Layout_layout_constraintWidth_min = 54; - - // aapt resource value: 55 - public const int Layout_layout_constraintWidth_percent = 55; - - // aapt resource value: 56 - public const int Layout_layout_editor_absoluteX = 56; - - // aapt resource value: 57 - public const int Layout_layout_editor_absoluteY = 57; - - // aapt resource value: 58 - public const int Layout_layout_goneMarginBottom = 58; - - // aapt resource value: 59 - public const int Layout_layout_goneMarginEnd = 59; - - // aapt resource value: 60 - public const int Layout_layout_goneMarginLeft = 60; - - // aapt resource value: 61 - public const int Layout_layout_goneMarginRight = 61; - - // aapt resource value: 62 - public const int Layout_layout_goneMarginStart = 62; - - // aapt resource value: 63 - public const int Layout_layout_goneMarginTop = 63; - - // aapt resource value: 64 - public const int Layout_maxHeight = 64; - - // aapt resource value: 65 - public const int Layout_maxWidth = 65; - - // aapt resource value: 66 - public const int Layout_minHeight = 66; - - // aapt resource value: 67 - public const int Layout_minWidth = 67; - - // aapt resource value: { 0x10100AF,0x10100C4,0x1010126,0x1010127,0x1010128,0x7F03010D,0x7F03010F,0x7F03023B,0x7F0302AD } - public static int[] LinearLayoutCompat = new int[] { - 16842927, - 16842948, - 16843046, - 16843047, - 16843048, - 2130903309, - 2130903311, - 2130903611, - 2130903725}; - - // aapt resource value: 2 - public const int LinearLayoutCompat_android_baselineAligned = 2; - - // aapt resource value: 3 - public const int LinearLayoutCompat_android_baselineAlignedChildIndex = 3; - - // aapt resource value: 0 - public const int LinearLayoutCompat_android_gravity = 0; - - // aapt resource value: 1 - public const int LinearLayoutCompat_android_orientation = 1; - - // aapt resource value: 4 - public const int LinearLayoutCompat_android_weightSum = 4; - - // aapt resource value: 5 - public const int LinearLayoutCompat_divider = 5; - - // aapt resource value: 6 - public const int LinearLayoutCompat_dividerPadding = 6; - - // aapt resource value: { 0x10100B3,0x10100F4,0x10100F5,0x1010181 } - public static int[] LinearLayoutCompat_Layout = new int[] { - 16842931, - 16842996, - 16842997, - 16843137}; - - // aapt resource value: 0 - public const int LinearLayoutCompat_Layout_android_layout_gravity = 0; - - // aapt resource value: 2 - public const int LinearLayoutCompat_Layout_android_layout_height = 2; - - // aapt resource value: 3 - public const int LinearLayoutCompat_Layout_android_layout_weight = 3; - - // aapt resource value: 1 - public const int LinearLayoutCompat_Layout_android_layout_width = 1; - - // aapt resource value: 7 - public const int LinearLayoutCompat_measureWithLargestChild = 7; - - // aapt resource value: 8 - public const int LinearLayoutCompat_showDividers = 8; - - // aapt resource value: { 0x7F030194,0x7F030198 } - public static int[] LinearProgressIndicator = new int[] { - 2130903444, - 2130903448}; - - // aapt resource value: 0 - public const int LinearProgressIndicator_indeterminateAnimationType = 0; - - // aapt resource value: 1 - public const int LinearProgressIndicator_indicatorDirectionLinear = 1; - - // aapt resource value: { 0x10102AC,0x10102AD } - public static int[] ListPopupWindow = new int[] { - 16843436, - 16843437}; - - // aapt resource value: 0 - public const int ListPopupWindow_android_dropDownHorizontalOffset = 0; - - // aapt resource value: 1 - public const int ListPopupWindow_android_dropDownVerticalOffset = 1; - - // aapt resource value: { 0x7F03003C,0x7F03003D,0x7F03003E,0x7F03003F } - public static int[] MaterialAlertDialog = new int[] { - 2130903100, - 2130903101, - 2130903102, - 2130903103}; - - // aapt resource value: { 0x7F030216,0x7F030217,0x7F030218,0x7F030219,0x7F03021A } - public static int[] MaterialAlertDialogTheme = new int[] { - 2130903574, - 2130903575, - 2130903576, - 2130903577, - 2130903578}; - - // aapt resource value: 0 - public const int MaterialAlertDialogTheme_materialAlertDialogBodyTextStyle = 0; - - // aapt resource value: 1 - public const int MaterialAlertDialogTheme_materialAlertDialogTheme = 1; - - // aapt resource value: 2 - public const int MaterialAlertDialogTheme_materialAlertDialogTitleIconStyle = 2; - - // aapt resource value: 3 - public const int MaterialAlertDialogTheme_materialAlertDialogTitlePanelStyle = 3; - - // aapt resource value: 4 - public const int MaterialAlertDialogTheme_materialAlertDialogTitleTextStyle = 4; - - // aapt resource value: 0 - public const int MaterialAlertDialog_backgroundInsetBottom = 0; - - // aapt resource value: 1 - public const int MaterialAlertDialog_backgroundInsetEnd = 1; - - // aapt resource value: 2 - public const int MaterialAlertDialog_backgroundInsetStart = 2; - - // aapt resource value: 3 - public const int MaterialAlertDialog_backgroundInsetTop = 3; - - // aapt resource value: { 0x1010220 } - public static int[] MaterialAutoCompleteTextView = new int[] { - 16843296}; - - // aapt resource value: 0 - public const int MaterialAutoCompleteTextView_android_inputType = 0; - - // aapt resource value: { 0x10100D4,0x10101B7,0x10101B8,0x10101B9,0x10101BA,0x10101E5,0x7F030043,0x7F030044,0x7F0300E7,0x7F030126,0x7F03018A,0x7F03018C,0x7F03018D,0x7F03018E,0x7F030190,0x7F030191,0x7F030296,0x7F0302A5,0x7F0302A8,0x7F0302D1,0x7F0302D2 } - public static int[] MaterialButton = new int[] { - 16842964, - 16843191, - 16843192, - 16843193, - 16843194, - 16843237, - 2130903107, - 2130903108, - 2130903271, - 2130903334, - 2130903434, - 2130903436, - 2130903437, - 2130903438, - 2130903440, - 2130903441, - 2130903702, - 2130903717, - 2130903720, - 2130903761, - 2130903762}; - - // aapt resource value: { 0x7F030080,0x7F0302A3,0x7F0302B5 } - public static int[] MaterialButtonToggleGroup = new int[] { - 2130903168, - 2130903715, - 2130903733}; - - // aapt resource value: 0 - public const int MaterialButtonToggleGroup_checkedButton = 0; - - // aapt resource value: 1 - public const int MaterialButtonToggleGroup_selectionRequired = 1; - - // aapt resource value: 2 - public const int MaterialButtonToggleGroup_singleSelection = 2; - - // aapt resource value: 0 - public const int MaterialButton_android_background = 0; - - // aapt resource value: 5 - public const int MaterialButton_android_checkable = 5; - - // aapt resource value: 4 - public const int MaterialButton_android_insetBottom = 4; - - // aapt resource value: 1 - public const int MaterialButton_android_insetLeft = 1; - - // aapt resource value: 2 - public const int MaterialButton_android_insetRight = 2; - - // aapt resource value: 3 - public const int MaterialButton_android_insetTop = 3; - - // aapt resource value: 6 - public const int MaterialButton_backgroundTint = 6; - - // aapt resource value: 7 - public const int MaterialButton_backgroundTintMode = 7; - - // aapt resource value: 8 - public const int MaterialButton_cornerRadius = 8; - - // aapt resource value: 9 - public const int MaterialButton_elevation = 9; - - // aapt resource value: 10 - public const int MaterialButton_icon = 10; - - // aapt resource value: 11 - public const int MaterialButton_iconGravity = 11; - - // aapt resource value: 12 - public const int MaterialButton_iconPadding = 12; - - // aapt resource value: 13 - public const int MaterialButton_iconSize = 13; - - // aapt resource value: 14 - public const int MaterialButton_iconTint = 14; - - // aapt resource value: 15 - public const int MaterialButton_iconTintMode = 15; - - // aapt resource value: 16 - public const int MaterialButton_rippleColor = 16; - - // aapt resource value: 17 - public const int MaterialButton_shapeAppearance = 17; - - // aapt resource value: 18 - public const int MaterialButton_shapeAppearanceOverlay = 18; - - // aapt resource value: 19 - public const int MaterialButton_strokeColor = 19; - - // aapt resource value: 20 - public const int MaterialButton_strokeWidth = 20; - - // aapt resource value: { 0x101020D,0x7F0300FF,0x7F030100,0x7F030101,0x7F030102,0x7F030258,0x7F03028C,0x7F030371,0x7F030372,0x7F030373 } - public static int[] MaterialCalendar = new int[] { - 16843277, - 2130903295, - 2130903296, - 2130903297, - 2130903298, - 2130903640, - 2130903692, - 2130903921, - 2130903922, - 2130903923}; - - // aapt resource value: { 0x10101B7,0x10101B8,0x10101B9,0x10101BA,0x7F0301A0,0x7F0301A9,0x7F0301AA,0x7F0301B1,0x7F0301B2,0x7F0301B6 } - public static int[] MaterialCalendarItem = new int[] { - 16843191, - 16843192, - 16843193, - 16843194, - 2130903456, - 2130903465, - 2130903466, - 2130903473, - 2130903474, - 2130903478}; - - // aapt resource value: 3 - public const int MaterialCalendarItem_android_insetBottom = 3; - - // aapt resource value: 0 - public const int MaterialCalendarItem_android_insetLeft = 0; - - // aapt resource value: 1 - public const int MaterialCalendarItem_android_insetRight = 1; - - // aapt resource value: 2 - public const int MaterialCalendarItem_android_insetTop = 2; - - // aapt resource value: 4 - public const int MaterialCalendarItem_itemFillColor = 4; - - // aapt resource value: 5 - public const int MaterialCalendarItem_itemShapeAppearance = 5; - - // aapt resource value: 6 - public const int MaterialCalendarItem_itemShapeAppearanceOverlay = 6; - - // aapt resource value: 7 - public const int MaterialCalendarItem_itemStrokeColor = 7; - - // aapt resource value: 8 - public const int MaterialCalendarItem_itemStrokeWidth = 8; - - // aapt resource value: 9 - public const int MaterialCalendarItem_itemTextColor = 9; - - // aapt resource value: 0 - public const int MaterialCalendar_android_windowFullscreen = 0; - - // aapt resource value: 1 - public const int MaterialCalendar_dayInvalidStyle = 1; - - // aapt resource value: 2 - public const int MaterialCalendar_daySelectedStyle = 2; - - // aapt resource value: 3 - public const int MaterialCalendar_dayStyle = 3; - - // aapt resource value: 4 - public const int MaterialCalendar_dayTodayStyle = 4; - - // aapt resource value: 5 - public const int MaterialCalendar_nestedScrollable = 5; - - // aapt resource value: 6 - public const int MaterialCalendar_rangeFillColor = 6; - - // aapt resource value: 7 - public const int MaterialCalendar_yearSelectedStyle = 7; - - // aapt resource value: 8 - public const int MaterialCalendar_yearStyle = 8; - - // aapt resource value: 9 - public const int MaterialCalendar_yearTodayStyle = 9; - - // aapt resource value: { 0x10101E5,0x7F030079,0x7F030082,0x7F030084,0x7F030085,0x7F030086,0x7F030296,0x7F0302A5,0x7F0302A8,0x7F0302CB,0x7F0302D1,0x7F0302D2 } - public static int[] MaterialCardView = new int[] { - 16843237, - 2130903161, - 2130903170, - 2130903172, - 2130903173, - 2130903174, - 2130903702, - 2130903717, - 2130903720, - 2130903755, - 2130903761, - 2130903762}; - - // aapt resource value: 0 - public const int MaterialCardView_android_checkable = 0; - - // aapt resource value: 1 - public const int MaterialCardView_cardForegroundColor = 1; - - // aapt resource value: 2 - public const int MaterialCardView_checkedIcon = 2; - - // aapt resource value: 3 - public const int MaterialCardView_checkedIconMargin = 3; - - // aapt resource value: 4 - public const int MaterialCardView_checkedIconSize = 4; - - // aapt resource value: 5 - public const int MaterialCardView_checkedIconTint = 5; - - // aapt resource value: 6 - public const int MaterialCardView_rippleColor = 6; - - // aapt resource value: 7 - public const int MaterialCardView_shapeAppearance = 7; - - // aapt resource value: 8 - public const int MaterialCardView_shapeAppearanceOverlay = 8; - - // aapt resource value: 9 - public const int MaterialCardView_state_dragged = 9; - - // aapt resource value: 10 - public const int MaterialCardView_strokeColor = 10; - - // aapt resource value: 11 - public const int MaterialCardView_strokeWidth = 11; - - // aapt resource value: { 0x7F030074,0x7F03035B } - public static int[] MaterialCheckBox = new int[] { - 2130903156, - 2130903899}; - - // aapt resource value: 0 - public const int MaterialCheckBox_buttonTint = 0; - - // aapt resource value: 1 - public const int MaterialCheckBox_useMaterialThemeColors = 1; - - // aapt resource value: { 0x7F030074,0x7F03035B } - public static int[] MaterialRadioButton = new int[] { - 2130903156, - 2130903899}; - - // aapt resource value: 0 - public const int MaterialRadioButton_buttonTint = 0; - - // aapt resource value: 1 - public const int MaterialRadioButton_useMaterialThemeColors = 1; - - // aapt resource value: { 0x7F0302A5,0x7F0302A8 } - public static int[] MaterialShape = new int[] { - 2130903717, - 2130903720}; - - // aapt resource value: 0 - public const int MaterialShape_shapeAppearance = 0; - - // aapt resource value: 1 - public const int MaterialShape_shapeAppearanceOverlay = 1; - - // aapt resource value: { 0x10104B6,0x101057F,0x7F030202 } - public static int[] MaterialTextAppearance = new int[] { - 16843958, - 16844159, - 2130903554}; - - // aapt resource value: 0 - public const int MaterialTextAppearance_android_letterSpacing = 0; - - // aapt resource value: 1 - public const int MaterialTextAppearance_android_lineHeight = 1; - - // aapt resource value: 2 - public const int MaterialTextAppearance_lineHeight = 2; - - // aapt resource value: { 0x1010034,0x101057F,0x7F030202 } - public static int[] MaterialTextView = new int[] { - 16842804, - 16844159, - 2130903554}; - - // aapt resource value: 1 - public const int MaterialTextView_android_lineHeight = 1; - - // aapt resource value: 0 - public const int MaterialTextView_android_textAppearance = 0; - - // aapt resource value: 2 - public const int MaterialTextView_lineHeight = 2; - - // aapt resource value: { 0x7F0300A2,0x7F0301B8 } - public static int[] MaterialTimePicker = new int[] { - 2130903202, - 2130903480}; - - // aapt resource value: 0 - public const int MaterialTimePicker_clockIcon = 0; - - // aapt resource value: 1 - public const int MaterialTimePicker_keyboardIcon = 1; - - // aapt resource value: { 0x7F030254 } - public static int[] MaterialToolbar = new int[] { - 2130903636}; - - // aapt resource value: 0 - public const int MaterialToolbar_navigationIconTint = 0; - - // aapt resource value: { 0x101000E,0x10100D0,0x1010194,0x10101DE,0x10101DF,0x10101E0 } - public static int[] MenuGroup = new int[] { - 16842766, - 16842960, - 16843156, - 16843230, - 16843231, - 16843232}; - - // aapt resource value: 5 - public const int MenuGroup_android_checkableBehavior = 5; - - // aapt resource value: 0 - public const int MenuGroup_android_enabled = 0; - - // aapt resource value: 1 - public const int MenuGroup_android_id = 1; - - // aapt resource value: 3 - public const int MenuGroup_android_menuCategory = 3; - - // aapt resource value: 4 - public const int MenuGroup_android_orderInCategory = 4; - - // aapt resource value: 2 - public const int MenuGroup_android_visible = 2; - - // aapt resource value: { 0x1010002,0x101000E,0x10100D0,0x1010106,0x1010194,0x10101DE,0x10101DF,0x10101E1,0x10101E2,0x10101E3,0x10101E4,0x10101E5,0x101026F,0x7F03000D,0x7F03001F,0x7F030021,0x7F030029,0x7F0300D0,0x7F030190,0x7F030191,0x7F03025A,0x7F0302AB,0x7F030344 } - public static int[] MenuItem = new int[] { - 16842754, - 16842766, - 16842960, - 16843014, - 16843156, - 16843230, - 16843231, - 16843233, - 16843234, - 16843235, - 16843236, - 16843237, - 16843375, - 2130903053, - 2130903071, - 2130903073, - 2130903081, - 2130903248, - 2130903440, - 2130903441, - 2130903642, - 2130903723, - 2130903876}; - - // aapt resource value: 13 - public const int MenuItem_actionLayout = 13; - - // aapt resource value: 14 - public const int MenuItem_actionProviderClass = 14; - - // aapt resource value: 15 - public const int MenuItem_actionViewClass = 15; - - // aapt resource value: 16 - public const int MenuItem_alphabeticModifiers = 16; - - // aapt resource value: 9 - public const int MenuItem_android_alphabeticShortcut = 9; - - // aapt resource value: 11 - public const int MenuItem_android_checkable = 11; - - // aapt resource value: 3 - public const int MenuItem_android_checked = 3; - - // aapt resource value: 1 - public const int MenuItem_android_enabled = 1; - - // aapt resource value: 0 - public const int MenuItem_android_icon = 0; - - // aapt resource value: 2 - public const int MenuItem_android_id = 2; - - // aapt resource value: 5 - public const int MenuItem_android_menuCategory = 5; - - // aapt resource value: 10 - public const int MenuItem_android_numericShortcut = 10; - - // aapt resource value: 12 - public const int MenuItem_android_onClick = 12; - - // aapt resource value: 6 - public const int MenuItem_android_orderInCategory = 6; - - // aapt resource value: 7 - public const int MenuItem_android_title = 7; - - // aapt resource value: 8 - public const int MenuItem_android_titleCondensed = 8; - - // aapt resource value: 4 - public const int MenuItem_android_visible = 4; - - // aapt resource value: 17 - public const int MenuItem_contentDescription = 17; - - // aapt resource value: 18 - public const int MenuItem_iconTint = 18; - - // aapt resource value: 19 - public const int MenuItem_iconTintMode = 19; - - // aapt resource value: 20 - public const int MenuItem_numericModifiers = 20; - - // aapt resource value: 21 - public const int MenuItem_showAsAction = 21; - - // aapt resource value: 22 - public const int MenuItem_tooltipText = 22; - - // aapt resource value: { 0x10100AE,0x101012C,0x101012D,0x101012E,0x101012F,0x1010130,0x1010131,0x7F030285,0x7F0302D3 } - public static int[] MenuView = new int[] { - 16842926, - 16843052, - 16843053, - 16843054, - 16843055, - 16843056, - 16843057, - 2130903685, - 2130903763}; - - // aapt resource value: 4 - public const int MenuView_android_headerBackground = 4; - - // aapt resource value: 2 - public const int MenuView_android_horizontalDivider = 2; - - // aapt resource value: 5 - public const int MenuView_android_itemBackground = 5; - - // aapt resource value: 6 - public const int MenuView_android_itemIconDisabledAlpha = 6; - - // aapt resource value: 1 - public const int MenuView_android_itemTextAppearance = 1; - - // aapt resource value: 3 - public const int MenuView_android_verticalDivider = 3; - - // aapt resource value: 0 - public const int MenuView_android_windowAnimationStyle = 0; - - // aapt resource value: 7 - public const int MenuView_preserveIconSpacing = 7; - - // aapt resource value: 8 - public const int MenuView_subMenuArrow = 8; - - // aapt resource value: { 0x7F030242,0x7F030243,0x7F030244,0x7F030245,0x7F030246,0x7F030247 } - public static int[] MockView = new int[] { - 2130903618, - 2130903619, - 2130903620, - 2130903621, - 2130903622, - 2130903623}; - - // aapt resource value: 0 - public const int MockView_mock_diagonalsColor = 0; - - // aapt resource value: 1 - public const int MockView_mock_label = 1; - - // aapt resource value: 2 - public const int MockView_mock_labelBackgroundColor = 2; - - // aapt resource value: 3 - public const int MockView_mock_labelColor = 3; - - // aapt resource value: 4 - public const int MockView_mock_showDiagonals = 4; - - // aapt resource value: 5 - public const int MockView_mock_showLabel = 5; - - // aapt resource value: { 0x7F03002B,0x7F030114,0x7F03024A,0x7F03024C,0x7F030272,0x7F030352 } - public static int[] Motion = new int[] { - 2130903083, - 2130903316, - 2130903626, - 2130903628, - 2130903666, - 2130903890}; - - // aapt resource value: { 0x7F03025C,0x7F03025F } - public static int[] MotionHelper = new int[] { - 2130903644, - 2130903647}; - - // aapt resource value: 0 - public const int MotionHelper_onHide = 0; - - // aapt resource value: 1 - public const int MotionHelper_onShow = 1; - - // aapt resource value: { 0x7F03002E,0x7F0300F4,0x7F0301BF,0x7F030248,0x7F03024B,0x7F0302AF } - public static int[] MotionLayout = new int[] { - 2130903086, - 2130903284, - 2130903487, - 2130903624, - 2130903627, - 2130903727}; - - // aapt resource value: 0 - public const int MotionLayout_applyMotionScene = 0; - - // aapt resource value: 1 - public const int MotionLayout_currentState = 1; - - // aapt resource value: 2 - public const int MotionLayout_layoutDescription = 2; - - // aapt resource value: 3 - public const int MotionLayout_motionDebug = 3; - - // aapt resource value: 4 - public const int MotionLayout_motionProgress = 4; - - // aapt resource value: 5 - public const int MotionLayout_showPaths = 5; - - // aapt resource value: { 0x7F030103,0x7F0301C0 } - public static int[] MotionScene = new int[] { - 2130903299, - 2130903488}; - - // aapt resource value: 0 - public const int MotionScene_defaultDuration = 0; - - // aapt resource value: 1 - public const int MotionScene_layoutDuringTransition = 1; - - // aapt resource value: { 0x7F0302FE,0x7F0302FF,0x7F030300 } - public static int[] MotionTelltales = new int[] { - 2130903806, - 2130903807, - 2130903808}; - - // aapt resource value: 0 - public const int MotionTelltales_telltales_tailColor = 0; - - // aapt resource value: 1 - public const int MotionTelltales_telltales_tailScale = 1; - - // aapt resource value: 2 - public const int MotionTelltales_telltales_velocityMode = 2; - - // aapt resource value: 0 - public const int Motion_animate_relativeTo = 0; - - // aapt resource value: 1 - public const int Motion_drawPath = 1; - - // aapt resource value: 2 - public const int Motion_motionPathRotate = 2; - - // aapt resource value: 3 - public const int Motion_motionStagger = 3; - - // aapt resource value: 4 - public const int Motion_pathMotionArc = 4; - - // aapt resource value: 5 - public const int Motion_transitionEasing = 5; - - // aapt resource value: { 0x10100D4,0x10100DD,0x101011F,0x7F030126,0x7F030178,0x7F03019F,0x7F0301A1,0x7F0301A3,0x7F0301A4,0x7F0301A5,0x7F0301A6,0x7F0301A9,0x7F0301AA,0x7F0301AB,0x7F0301AC,0x7F0301AD,0x7F0301AE,0x7F0301AF,0x7F0301B3,0x7F0301B6,0x7F03023C,0x7F0302A5,0x7F0302A8 } - public static int[] NavigationView = new int[] { - 16842964, - 16842973, - 16843039, - 2130903334, - 2130903416, - 2130903455, - 2130903457, - 2130903459, - 2130903460, - 2130903461, - 2130903462, - 2130903465, - 2130903466, - 2130903467, - 2130903468, - 2130903469, - 2130903470, - 2130903471, - 2130903475, - 2130903478, - 2130903612, - 2130903717, - 2130903720}; - - // aapt resource value: 0 - public const int NavigationView_android_background = 0; - - // aapt resource value: 1 - public const int NavigationView_android_fitsSystemWindows = 1; - - // aapt resource value: 2 - public const int NavigationView_android_maxWidth = 2; - - // aapt resource value: 3 - public const int NavigationView_elevation = 3; - - // aapt resource value: 4 - public const int NavigationView_headerLayout = 4; - - // aapt resource value: 5 - public const int NavigationView_itemBackground = 5; - - // aapt resource value: 6 - public const int NavigationView_itemHorizontalPadding = 6; - - // aapt resource value: 7 - public const int NavigationView_itemIconPadding = 7; - - // aapt resource value: 8 - public const int NavigationView_itemIconSize = 8; - - // aapt resource value: 9 - public const int NavigationView_itemIconTint = 9; - - // aapt resource value: 10 - public const int NavigationView_itemMaxLines = 10; - - // aapt resource value: 11 - public const int NavigationView_itemShapeAppearance = 11; - - // aapt resource value: 12 - public const int NavigationView_itemShapeAppearanceOverlay = 12; - - // aapt resource value: 13 - public const int NavigationView_itemShapeFillColor = 13; - - // aapt resource value: 14 - public const int NavigationView_itemShapeInsetBottom = 14; - - // aapt resource value: 15 - public const int NavigationView_itemShapeInsetEnd = 15; - - // aapt resource value: 16 - public const int NavigationView_itemShapeInsetStart = 16; - - // aapt resource value: 17 - public const int NavigationView_itemShapeInsetTop = 17; - - // aapt resource value: 18 - public const int NavigationView_itemTextAppearance = 18; - - // aapt resource value: 19 - public const int NavigationView_itemTextColor = 19; - - // aapt resource value: 20 - public const int NavigationView_menu = 20; - - // aapt resource value: 21 - public const int NavigationView_shapeAppearance = 21; - - // aapt resource value: 22 - public const int NavigationView_shapeAppearanceOverlay = 22; - - // aapt resource value: { 0x7F03009F,0x7F0302FD } - public static int[] OnClick = new int[] { - 2130903199, - 2130903805}; - - // aapt resource value: 0 - public const int OnClick_clickAction = 0; - - // aapt resource value: 1 - public const int OnClick_targetId = 1; - - // aapt resource value: { 0x7F030111,0x7F030112,0x7F030113,0x7F030201,0x7F030232,0x7F030239,0x7F030250,0x7F030257,0x7F030260,0x7F030345,0x7F030346,0x7F030347 } - public static int[] OnSwipe = new int[] { - 2130903313, - 2130903314, - 2130903315, - 2130903553, - 2130903602, - 2130903609, - 2130903632, - 2130903639, - 2130903648, - 2130903877, - 2130903878, - 2130903879}; - - // aapt resource value: 0 - public const int OnSwipe_dragDirection = 0; - - // aapt resource value: 1 - public const int OnSwipe_dragScale = 1; - - // aapt resource value: 2 - public const int OnSwipe_dragThreshold = 2; - - // aapt resource value: 3 - public const int OnSwipe_limitBoundsTo = 3; - - // aapt resource value: 4 - public const int OnSwipe_maxAcceleration = 4; - - // aapt resource value: 5 - public const int OnSwipe_maxVelocity = 5; - - // aapt resource value: 6 - public const int OnSwipe_moveWhenScrollAtTop = 6; - - // aapt resource value: 7 - public const int OnSwipe_nestedScrollFlags = 7; - - // aapt resource value: 8 - public const int OnSwipe_onTouchUp = 8; - - // aapt resource value: 9 - public const int OnSwipe_touchAnchorId = 9; - - // aapt resource value: 10 - public const int OnSwipe_touchAnchorSide = 10; - - // aapt resource value: 11 - public const int OnSwipe_touchRegionId = 11; - - // aapt resource value: { 0x1010176,0x10102C9,0x7F030261 } - public static int[] PopupWindow = new int[] { - 16843126, - 16843465, - 2130903649}; - - // aapt resource value: { 0x7F0302C8 } - public static int[] PopupWindowBackgroundState = new int[] { - 2130903752}; - - // aapt resource value: 0 - public const int PopupWindowBackgroundState_state_above_anchor = 0; - - // aapt resource value: 1 - public const int PopupWindow_android_popupAnimationStyle = 1; - - // aapt resource value: 0 - public const int PopupWindow_android_popupBackground = 0; - - // aapt resource value: 2 - public const int PopupWindow_overlapAnchor = 2; - - // aapt resource value: { 0x10100DC,0x101031F,0x7F0301E6,0x7F03024B,0x7F03035F } - public static int[] PropertySet = new int[] { - 16842972, - 16843551, - 2130903526, - 2130903627, - 2130903903}; - - // aapt resource value: 1 - public const int PropertySet_android_alpha = 1; - - // aapt resource value: 0 - public const int PropertySet_android_visibility = 0; - - // aapt resource value: 2 - public const int PropertySet_layout_constraintTag = 2; - - // aapt resource value: 3 - public const int PropertySet_motionProgress = 3; - - // aapt resource value: 4 - public const int PropertySet_visibilityMode = 4; - - // aapt resource value: { 0x7F03022D } - public static int[] RadialViewGroup = new int[] { - 2130903597}; - - // aapt resource value: 0 - public const int RadialViewGroup_materialCircleRadius = 0; - - // aapt resource value: { 0x7F03023F,0x7F03035C } - public static int[] RangeSlider = new int[] { - 2130903615, - 2130903900}; - - // aapt resource value: 0 - public const int RangeSlider_minSeparation = 0; - - // aapt resource value: 1 - public const int RangeSlider_values = 1; - - // aapt resource value: { 0x7F030263,0x7F030269 } - public static int[] RecycleListView = new int[] { - 2130903651, - 2130903657}; - - // aapt resource value: 0 - public const int RecycleListView_paddingBottomNoButtons = 0; - - // aapt resource value: 1 - public const int RecycleListView_paddingTopNoTitle = 1; - - // aapt resource value: { 0x10100C4,0x10100EB,0x10100F1,0x7F03014C,0x7F03014D,0x7F03014E,0x7F03014F,0x7F030150,0x7F0301C1,0x7F030295,0x7F0302BB,0x7F0302C1 } - public static int[] RecyclerView = new int[] { - 16842948, - 16842987, - 16842993, - 2130903372, - 2130903373, - 2130903374, - 2130903375, - 2130903376, - 2130903489, - 2130903701, - 2130903739, - 2130903745}; - - // aapt resource value: 1 - public const int RecyclerView_android_clipToPadding = 1; - - // aapt resource value: 2 - public const int RecyclerView_android_descendantFocusability = 2; - - // aapt resource value: 0 - public const int RecyclerView_android_orientation = 0; - - // aapt resource value: 3 - public const int RecyclerView_fastScrollEnabled = 3; - - // aapt resource value: 4 - public const int RecyclerView_fastScrollHorizontalThumbDrawable = 4; - - // aapt resource value: 5 - public const int RecyclerView_fastScrollHorizontalTrackDrawable = 5; - - // aapt resource value: 6 - public const int RecyclerView_fastScrollVerticalThumbDrawable = 6; - - // aapt resource value: 7 - public const int RecyclerView_fastScrollVerticalTrackDrawable = 7; - - // aapt resource value: 8 - public const int RecyclerView_layoutManager = 8; - - // aapt resource value: 9 - public const int RecyclerView_reverseLayout = 9; - - // aapt resource value: 10 - public const int RecyclerView_spanCount = 10; - - // aapt resource value: 11 - public const int RecyclerView_stackFromEnd = 11; - - // aapt resource value: { 0x7F03019C } - public static int[] ScrimInsetsFrameLayout = new int[] { - 2130903452}; - - // aapt resource value: 0 - public const int ScrimInsetsFrameLayout_insetForeground = 0; - - // aapt resource value: { 0x7F030053 } - public static int[] ScrollingViewBehavior_Layout = new int[] { - 2130903123}; - - // aapt resource value: 0 - public const int ScrollingViewBehavior_Layout_behavior_overlapTop = 0; - - // aapt resource value: { 0x10100DA,0x101011F,0x1010220,0x1010264,0x7F0300A4,0x7F0300C8,0x7F030104,0x7F030175,0x7F030192,0x7F0301BE,0x7F030289,0x7F03028A,0x7F03029D,0x7F03029E,0x7F0302D4,0x7F0302DC,0x7F030360 } - public static int[] SearchView = new int[] { - 16842970, - 16843039, - 16843296, - 16843364, - 2130903204, - 2130903240, - 2130903300, - 2130903413, - 2130903442, - 2130903486, - 2130903689, - 2130903690, - 2130903709, - 2130903710, - 2130903764, - 2130903772, - 2130903904}; - - // aapt resource value: 0 - public const int SearchView_android_focusable = 0; - - // aapt resource value: 3 - public const int SearchView_android_imeOptions = 3; - - // aapt resource value: 2 - public const int SearchView_android_inputType = 2; - - // aapt resource value: 1 - public const int SearchView_android_maxWidth = 1; - - // aapt resource value: 4 - public const int SearchView_closeIcon = 4; - - // aapt resource value: 5 - public const int SearchView_commitIcon = 5; - - // aapt resource value: 6 - public const int SearchView_defaultQueryHint = 6; - - // aapt resource value: 7 - public const int SearchView_goIcon = 7; - - // aapt resource value: 8 - public const int SearchView_iconifiedByDefault = 8; - - // aapt resource value: 9 - public const int SearchView_layout = 9; - - // aapt resource value: 10 - public const int SearchView_queryBackground = 10; - - // aapt resource value: 11 - public const int SearchView_queryHint = 11; - - // aapt resource value: 12 - public const int SearchView_searchHintIcon = 12; - - // aapt resource value: 13 - public const int SearchView_searchIcon = 13; - - // aapt resource value: 14 - public const int SearchView_submitBackground = 14; - - // aapt resource value: 15 - public const int SearchView_suggestionRowLayout = 15; - - // aapt resource value: 16 - public const int SearchView_voiceIcon = 16; - - // aapt resource value: { 0x7F0300D7,0x7F0300D8,0x7F0300D9,0x7F0300DA,0x7F0300DB,0x7F0300DC,0x7F0300DD,0x7F0302A5,0x7F0302A8,0x7F0302D1,0x7F0302D2 } - public static int[] ShapeableImageView = new int[] { - 2130903255, - 2130903256, - 2130903257, - 2130903258, - 2130903259, - 2130903260, - 2130903261, - 2130903717, - 2130903720, - 2130903761, - 2130903762}; - - // aapt resource value: 0 - public const int ShapeableImageView_contentPadding = 0; - - // aapt resource value: 1 - public const int ShapeableImageView_contentPaddingBottom = 1; - - // aapt resource value: 2 - public const int ShapeableImageView_contentPaddingEnd = 2; - - // aapt resource value: 3 - public const int ShapeableImageView_contentPaddingLeft = 3; - - // aapt resource value: 4 - public const int ShapeableImageView_contentPaddingRight = 4; - - // aapt resource value: 5 - public const int ShapeableImageView_contentPaddingStart = 5; - - // aapt resource value: 6 - public const int ShapeableImageView_contentPaddingTop = 6; - - // aapt resource value: 7 - public const int ShapeableImageView_shapeAppearance = 7; - - // aapt resource value: 8 - public const int ShapeableImageView_shapeAppearanceOverlay = 8; - - // aapt resource value: 9 - public const int ShapeableImageView_strokeColor = 9; - - // aapt resource value: 10 - public const int ShapeableImageView_strokeWidth = 10; - - // aapt resource value: { 0x7F0300E2,0x7F0300E3,0x7F0300E4,0x7F0300E5,0x7F0300E6,0x7F0300E8,0x7F0300E9,0x7F0300EA,0x7F0300EB,0x7F0300EC } - public static int[] ShapeAppearance = new int[] { - 2130903266, - 2130903267, - 2130903268, - 2130903269, - 2130903270, - 2130903272, - 2130903273, - 2130903274, - 2130903275, - 2130903276}; - - // aapt resource value: 0 - public const int ShapeAppearance_cornerFamily = 0; - - // aapt resource value: 1 - public const int ShapeAppearance_cornerFamilyBottomLeft = 1; - - // aapt resource value: 2 - public const int ShapeAppearance_cornerFamilyBottomRight = 2; - - // aapt resource value: 3 - public const int ShapeAppearance_cornerFamilyTopLeft = 3; - - // aapt resource value: 4 - public const int ShapeAppearance_cornerFamilyTopRight = 4; - - // aapt resource value: 5 - public const int ShapeAppearance_cornerSize = 5; - - // aapt resource value: 6 - public const int ShapeAppearance_cornerSizeBottomLeft = 6; - - // aapt resource value: 7 - public const int ShapeAppearance_cornerSizeBottomRight = 7; - - // aapt resource value: 8 - public const int ShapeAppearance_cornerSizeTopLeft = 8; - - // aapt resource value: 9 - public const int ShapeAppearance_cornerSizeTopRight = 9; - - // aapt resource value: { 0x101000E,0x1010024,0x1010146,0x10102DE,0x10102DF,0x7F030176,0x7F030177,0x7F0301BA,0x7F0301BB,0x7F030322,0x7F030323,0x7F030324,0x7F030325,0x7F030326,0x7F03032A,0x7F03032B,0x7F03032C,0x7F030330,0x7F030349,0x7F03034A,0x7F03034B,0x7F03034D } - public static int[] Slider = new int[] { - 16842766, - 16842788, - 16843078, - 16843486, - 16843487, - 2130903414, - 2130903415, - 2130903482, - 2130903483, - 2130903842, - 2130903843, - 2130903844, - 2130903845, - 2130903846, - 2130903850, - 2130903851, - 2130903852, - 2130903856, - 2130903881, - 2130903882, - 2130903883, - 2130903885}; - - // aapt resource value: 0 - public const int Slider_android_enabled = 0; - - // aapt resource value: 2 - public const int Slider_android_stepSize = 2; - - // aapt resource value: 1 - public const int Slider_android_value = 1; - - // aapt resource value: 3 - public const int Slider_android_valueFrom = 3; - - // aapt resource value: 4 - public const int Slider_android_valueTo = 4; - - // aapt resource value: 5 - public const int Slider_haloColor = 5; - - // aapt resource value: 6 - public const int Slider_haloRadius = 6; - - // aapt resource value: 7 - public const int Slider_labelBehavior = 7; - - // aapt resource value: 8 - public const int Slider_labelStyle = 8; - - // aapt resource value: 9 - public const int Slider_thumbColor = 9; - - // aapt resource value: 10 - public const int Slider_thumbElevation = 10; - - // aapt resource value: 11 - public const int Slider_thumbRadius = 11; - - // aapt resource value: 12 - public const int Slider_thumbStrokeColor = 12; - - // aapt resource value: 13 - public const int Slider_thumbStrokeWidth = 13; - - // aapt resource value: 14 - public const int Slider_tickColor = 14; - - // aapt resource value: 15 - public const int Slider_tickColorActive = 15; - - // aapt resource value: 16 - public const int Slider_tickColorInactive = 16; - - // aapt resource value: 17 - public const int Slider_tickVisible = 17; - - // aapt resource value: 18 - public const int Slider_trackColor = 18; - - // aapt resource value: 19 - public const int Slider_trackColorActive = 19; - - // aapt resource value: 20 - public const int Slider_trackColorInactive = 20; - - // aapt resource value: 21 - public const int Slider_trackHeight = 21; - - // aapt resource value: { 0x7F0302B8,0x7F0302B9,0x7F0302BA } - public static int[] Snackbar = new int[] { - 2130903736, - 2130903737, - 2130903738}; - - // aapt resource value: { 0x101011F,0x7F030020,0x7F03002C,0x7F030040,0x7F030043,0x7F030044,0x7F030126,0x7F030233 } - public static int[] SnackbarLayout = new int[] { - 16843039, - 2130903072, - 2130903084, - 2130903104, - 2130903107, - 2130903108, - 2130903334, - 2130903603}; - - // aapt resource value: 1 - public const int SnackbarLayout_actionTextColorAlpha = 1; - - // aapt resource value: 0 - public const int SnackbarLayout_android_maxWidth = 0; - - // aapt resource value: 2 - public const int SnackbarLayout_animationMode = 2; - - // aapt resource value: 3 - public const int SnackbarLayout_backgroundOverlayColorAlpha = 3; - - // aapt resource value: 4 - public const int SnackbarLayout_backgroundTint = 4; - - // aapt resource value: 5 - public const int SnackbarLayout_backgroundTintMode = 5; - - // aapt resource value: 6 - public const int SnackbarLayout_elevation = 6; - - // aapt resource value: 7 - public const int SnackbarLayout_maxActionInlineWidth = 7; - - // aapt resource value: 0 - public const int Snackbar_snackbarButtonStyle = 0; - - // aapt resource value: 1 - public const int Snackbar_snackbarStyle = 1; - - // aapt resource value: 2 - public const int Snackbar_snackbarTextViewStyle = 2; - - // aapt resource value: { 0x10100B2,0x1010176,0x101017B,0x1010262,0x7F030280 } - public static int[] Spinner = new int[] { - 16842930, - 16843126, - 16843131, - 16843362, - 2130903680}; - - // aapt resource value: 3 - public const int Spinner_android_dropDownWidth = 3; - - // aapt resource value: 0 - public const int Spinner_android_entries = 0; - - // aapt resource value: 1 - public const int Spinner_android_popupBackground = 1; - - // aapt resource value: 2 - public const int Spinner_android_prompt = 2; - - // aapt resource value: 4 - public const int Spinner_popupTheme = 4; - - // aapt resource value: { 0x10100D0,0x7F0300CE } - public static int[] State = new int[] { - 16842960, - 2130903246}; - - // aapt resource value: { 0x101011C,0x1010194,0x1010195,0x1010196,0x101030C,0x101030D } - public static int[] StateListDrawable = new int[] { - 16843036, - 16843156, - 16843157, - 16843158, - 16843532, - 16843533}; - - // aapt resource value: { 0x1010199 } - public static int[] StateListDrawableItem = new int[] { - 16843161}; - - // aapt resource value: 0 - public const int StateListDrawableItem_android_drawable = 0; - - // aapt resource value: 3 - public const int StateListDrawable_android_constantSize = 3; - - // aapt resource value: 0 - public const int StateListDrawable_android_dither = 0; - - // aapt resource value: 4 - public const int StateListDrawable_android_enterFadeDuration = 4; - - // aapt resource value: 5 - public const int StateListDrawable_android_exitFadeDuration = 5; - - // aapt resource value: 2 - public const int StateListDrawable_android_variablePadding = 2; - - // aapt resource value: 1 - public const int StateListDrawable_android_visible = 1; - - // aapt resource value: { 0x7F030105 } - public static int[] StateSet = new int[] { - 2130903301}; - - // aapt resource value: 0 - public const int StateSet_defaultState = 0; - - // aapt resource value: 0 - public const int State_android_id = 0; - - // aapt resource value: 1 - public const int State_constraints = 1; - - // aapt resource value: { 0x7F0302DD } - public static int[] SwipeRefreshLayout = new int[] { - 2130903773}; - - // aapt resource value: 0 - public const int SwipeRefreshLayout_swipeRefreshLayoutProgressSpinnerBackgroundColor = 0; - - // aapt resource value: { 0x1010124,0x1010125,0x1010142,0x7F0302B0,0x7F0302BF,0x7F0302DE,0x7F0302DF,0x7F0302E1,0x7F030327,0x7F030328,0x7F030329,0x7F030348,0x7F03034F,0x7F030350 } - public static int[] SwitchCompat = new int[] { - 16843044, - 16843045, - 16843074, - 2130903728, - 2130903743, - 2130903774, - 2130903775, - 2130903777, - 2130903847, - 2130903848, - 2130903849, - 2130903880, - 2130903887, - 2130903888}; - - // aapt resource value: 1 - public const int SwitchCompat_android_textOff = 1; - - // aapt resource value: 0 - public const int SwitchCompat_android_textOn = 0; - - // aapt resource value: 2 - public const int SwitchCompat_android_thumb = 2; - - // aapt resource value: 3 - public const int SwitchCompat_showText = 3; - - // aapt resource value: 4 - public const int SwitchCompat_splitTrack = 4; - - // aapt resource value: 5 - public const int SwitchCompat_switchMinWidth = 5; - - // aapt resource value: 6 - public const int SwitchCompat_switchPadding = 6; - - // aapt resource value: 7 - public const int SwitchCompat_switchTextAppearance = 7; - - // aapt resource value: 8 - public const int SwitchCompat_thumbTextPadding = 8; - - // aapt resource value: 9 - public const int SwitchCompat_thumbTint = 9; - - // aapt resource value: 10 - public const int SwitchCompat_thumbTintMode = 10; - - // aapt resource value: 11 - public const int SwitchCompat_track = 11; - - // aapt resource value: 12 - public const int SwitchCompat_trackTint = 12; - - // aapt resource value: 13 - public const int SwitchCompat_trackTintMode = 13; - - // aapt resource value: { 0x7F03035B } - public static int[] SwitchMaterial = new int[] { - 2130903899}; - - // aapt resource value: 0 - public const int SwitchMaterial_useMaterialThemeColors = 0; - - // aapt resource value: { 0x1010002,0x10100F2,0x101014F } - public static int[] TabItem = new int[] { - 16842754, - 16842994, - 16843087}; - - // aapt resource value: 0 - public const int TabItem_android_icon = 0; - - // aapt resource value: 1 - public const int TabItem_android_layout = 1; - - // aapt resource value: 2 - public const int TabItem_android_text = 2; - - // aapt resource value: { 0x7F0302E2,0x7F0302E3,0x7F0302E4,0x7F0302E5,0x7F0302E6,0x7F0302E7,0x7F0302E8,0x7F0302E9,0x7F0302EA,0x7F0302EB,0x7F0302EC,0x7F0302ED,0x7F0302EE,0x7F0302EF,0x7F0302F0,0x7F0302F1,0x7F0302F2,0x7F0302F3,0x7F0302F4,0x7F0302F5,0x7F0302F6,0x7F0302F7,0x7F0302F8,0x7F0302FA,0x7F0302FB,0x7F0302FC } - public static int[] TabLayout = new int[] { - 2130903778, - 2130903779, - 2130903780, - 2130903781, - 2130903782, - 2130903783, - 2130903784, - 2130903785, - 2130903786, - 2130903787, - 2130903788, - 2130903789, - 2130903790, - 2130903791, - 2130903792, - 2130903793, - 2130903794, - 2130903795, - 2130903796, - 2130903797, - 2130903798, - 2130903799, - 2130903800, - 2130903802, - 2130903803, - 2130903804}; - - // aapt resource value: 0 - public const int TabLayout_tabBackground = 0; - - // aapt resource value: 1 - public const int TabLayout_tabContentStart = 1; - - // aapt resource value: 2 - public const int TabLayout_tabGravity = 2; - - // aapt resource value: 3 - public const int TabLayout_tabIconTint = 3; - - // aapt resource value: 4 - public const int TabLayout_tabIconTintMode = 4; - - // aapt resource value: 5 - public const int TabLayout_tabIndicator = 5; - - // aapt resource value: 6 - public const int TabLayout_tabIndicatorAnimationDuration = 6; - - // aapt resource value: 7 - public const int TabLayout_tabIndicatorAnimationMode = 7; - - // aapt resource value: 8 - public const int TabLayout_tabIndicatorColor = 8; - - // aapt resource value: 9 - public const int TabLayout_tabIndicatorFullWidth = 9; - - // aapt resource value: 10 - public const int TabLayout_tabIndicatorGravity = 10; - - // aapt resource value: 11 - public const int TabLayout_tabIndicatorHeight = 11; - - // aapt resource value: 12 - public const int TabLayout_tabInlineLabel = 12; - - // aapt resource value: 13 - public const int TabLayout_tabMaxWidth = 13; - - // aapt resource value: 14 - public const int TabLayout_tabMinWidth = 14; - - // aapt resource value: 15 - public const int TabLayout_tabMode = 15; - - // aapt resource value: 16 - public const int TabLayout_tabPadding = 16; - - // aapt resource value: 17 - public const int TabLayout_tabPaddingBottom = 17; - - // aapt resource value: 18 - public const int TabLayout_tabPaddingEnd = 18; - - // aapt resource value: 19 - public const int TabLayout_tabPaddingStart = 19; - - // aapt resource value: 20 - public const int TabLayout_tabPaddingTop = 20; - - // aapt resource value: 21 - public const int TabLayout_tabRippleColor = 21; - - // aapt resource value: 22 - public const int TabLayout_tabSelectedTextColor = 22; - - // aapt resource value: 23 - public const int TabLayout_tabTextAppearance = 23; - - // aapt resource value: 24 - public const int TabLayout_tabTextColor = 24; - - // aapt resource value: 25 - public const int TabLayout_tabUnboundedRipple = 25; - - // aapt resource value: { 0x1010095,0x1010096,0x1010097,0x1010098,0x101009A,0x101009B,0x1010161,0x1010162,0x1010163,0x1010164,0x10103AC,0x1010585,0x7F030167,0x7F03016F,0x7F030301,0x7F03031D } - public static int[] TextAppearance = new int[] { - 16842901, - 16842902, - 16842903, - 16842904, - 16842906, - 16842907, - 16843105, - 16843106, - 16843107, - 16843108, - 16843692, - 16844165, - 2130903399, - 2130903407, - 2130903809, - 2130903837}; - - // aapt resource value: 10 - public const int TextAppearance_android_fontFamily = 10; - - // aapt resource value: 6 - public const int TextAppearance_android_shadowColor = 6; - - // aapt resource value: 7 - public const int TextAppearance_android_shadowDx = 7; - - // aapt resource value: 8 - public const int TextAppearance_android_shadowDy = 8; - - // aapt resource value: 9 - public const int TextAppearance_android_shadowRadius = 9; - - // aapt resource value: 3 - public const int TextAppearance_android_textColor = 3; - - // aapt resource value: 4 - public const int TextAppearance_android_textColorHint = 4; - - // aapt resource value: 5 - public const int TextAppearance_android_textColorLink = 5; - - // aapt resource value: 11 - public const int TextAppearance_android_textFontWeight = 11; - - // aapt resource value: 0 - public const int TextAppearance_android_textSize = 0; - - // aapt resource value: 2 - public const int TextAppearance_android_textStyle = 2; - - // aapt resource value: 1 - public const int TextAppearance_android_typeface = 1; - - // aapt resource value: 12 - public const int TextAppearance_fontFamily = 12; - - // aapt resource value: 13 - public const int TextAppearance_fontVariationSettings = 13; - - // aapt resource value: 14 - public const int TextAppearance_textAllCaps = 14; - - // aapt resource value: 15 - public const int TextAppearance_textLocale = 15; - - // aapt resource value: { 0x7F03031B } - public static int[] TextInputEditText = new int[] { - 2130903835}; - - // aapt resource value: 0 - public const int TextInputEditText_textInputLayoutFocusedRectEnabled = 0; - - // aapt resource value: { 0x101000E,0x101009A,0x1010150,0x7F03005D,0x7F03005E,0x7F03005F,0x7F030060,0x7F030061,0x7F030062,0x7F030063,0x7F030064,0x7F030065,0x7F030066,0x7F030067,0x7F0300ED,0x7F0300EE,0x7F0300EF,0x7F0300F0,0x7F0300F1,0x7F0300F2,0x7F030129,0x7F03012A,0x7F03012B,0x7F03012C,0x7F03012D,0x7F03012E,0x7F030132,0x7F030133,0x7F030134,0x7F030135,0x7F030136,0x7F030137,0x7F030138,0x7F03013B,0x7F03017A,0x7F03017B,0x7F03017C,0x7F03017D,0x7F030182,0x7F030183,0x7F030184,0x7F030185,0x7F03026D,0x7F03026E,0x7F03026F,0x7F030270,0x7F030271,0x7F03027A,0x7F03027B,0x7F03027C,0x7F030282,0x7F030283,0x7F030284,0x7F0302A5,0x7F0302A8,0x7F0302C3,0x7F0302C4,0x7F0302C5,0x7F0302C6,0x7F0302C7,0x7F0302D9,0x7F0302DA,0x7F0302DB } - public static int[] TextInputLayout = new int[] { - 16842766, - 16842906, - 16843088, - 2130903133, - 2130903134, - 2130903135, - 2130903136, - 2130903137, - 2130903138, - 2130903139, - 2130903140, - 2130903141, - 2130903142, - 2130903143, - 2130903277, - 2130903278, - 2130903279, - 2130903280, - 2130903281, - 2130903282, - 2130903337, - 2130903338, - 2130903339, - 2130903340, - 2130903341, - 2130903342, - 2130903346, - 2130903347, - 2130903348, - 2130903349, - 2130903350, - 2130903351, - 2130903352, - 2130903355, - 2130903418, - 2130903419, - 2130903420, - 2130903421, - 2130903426, - 2130903427, - 2130903428, - 2130903429, - 2130903661, - 2130903662, - 2130903663, - 2130903664, - 2130903665, - 2130903674, - 2130903675, - 2130903676, - 2130903682, - 2130903683, - 2130903684, - 2130903717, - 2130903720, - 2130903747, - 2130903748, - 2130903749, - 2130903750, - 2130903751, - 2130903769, - 2130903770, - 2130903771}; - - // aapt resource value: 0 - public const int TextInputLayout_android_enabled = 0; - - // aapt resource value: 2 - public const int TextInputLayout_android_hint = 2; - - // aapt resource value: 1 - public const int TextInputLayout_android_textColorHint = 1; - - // aapt resource value: 3 - public const int TextInputLayout_boxBackgroundColor = 3; - - // aapt resource value: 4 - public const int TextInputLayout_boxBackgroundMode = 4; - - // aapt resource value: 5 - public const int TextInputLayout_boxCollapsedPaddingTop = 5; - - // aapt resource value: 6 - public const int TextInputLayout_boxCornerRadiusBottomEnd = 6; - - // aapt resource value: 7 - public const int TextInputLayout_boxCornerRadiusBottomStart = 7; - - // aapt resource value: 8 - public const int TextInputLayout_boxCornerRadiusTopEnd = 8; - - // aapt resource value: 9 - public const int TextInputLayout_boxCornerRadiusTopStart = 9; - - // aapt resource value: 10 - public const int TextInputLayout_boxStrokeColor = 10; - - // aapt resource value: 11 - public const int TextInputLayout_boxStrokeErrorColor = 11; - - // aapt resource value: 12 - public const int TextInputLayout_boxStrokeWidth = 12; - - // aapt resource value: 13 - public const int TextInputLayout_boxStrokeWidthFocused = 13; - - // aapt resource value: 14 - public const int TextInputLayout_counterEnabled = 14; - - // aapt resource value: 15 - public const int TextInputLayout_counterMaxLength = 15; - - // aapt resource value: 16 - public const int TextInputLayout_counterOverflowTextAppearance = 16; - - // aapt resource value: 17 - public const int TextInputLayout_counterOverflowTextColor = 17; - - // aapt resource value: 18 - public const int TextInputLayout_counterTextAppearance = 18; - - // aapt resource value: 19 - public const int TextInputLayout_counterTextColor = 19; - - // aapt resource value: 20 - public const int TextInputLayout_endIconCheckable = 20; - - // aapt resource value: 21 - public const int TextInputLayout_endIconContentDescription = 21; - - // aapt resource value: 22 - public const int TextInputLayout_endIconDrawable = 22; - - // aapt resource value: 23 - public const int TextInputLayout_endIconMode = 23; - - // aapt resource value: 24 - public const int TextInputLayout_endIconTint = 24; - - // aapt resource value: 25 - public const int TextInputLayout_endIconTintMode = 25; - - // aapt resource value: 26 - public const int TextInputLayout_errorContentDescription = 26; - - // aapt resource value: 27 - public const int TextInputLayout_errorEnabled = 27; - - // aapt resource value: 28 - public const int TextInputLayout_errorIconDrawable = 28; - - // aapt resource value: 29 - public const int TextInputLayout_errorIconTint = 29; - - // aapt resource value: 30 - public const int TextInputLayout_errorIconTintMode = 30; - - // aapt resource value: 31 - public const int TextInputLayout_errorTextAppearance = 31; - - // aapt resource value: 32 - public const int TextInputLayout_errorTextColor = 32; - - // aapt resource value: 33 - public const int TextInputLayout_expandedHintEnabled = 33; - - // aapt resource value: 34 - public const int TextInputLayout_helperText = 34; - - // aapt resource value: 35 - public const int TextInputLayout_helperTextEnabled = 35; - - // aapt resource value: 36 - public const int TextInputLayout_helperTextTextAppearance = 36; - - // aapt resource value: 37 - public const int TextInputLayout_helperTextTextColor = 37; - - // aapt resource value: 38 - public const int TextInputLayout_hintAnimationEnabled = 38; - - // aapt resource value: 39 - public const int TextInputLayout_hintEnabled = 39; - - // aapt resource value: 40 - public const int TextInputLayout_hintTextAppearance = 40; - - // aapt resource value: 41 - public const int TextInputLayout_hintTextColor = 41; - - // aapt resource value: 42 - public const int TextInputLayout_passwordToggleContentDescription = 42; - - // aapt resource value: 43 - public const int TextInputLayout_passwordToggleDrawable = 43; - - // aapt resource value: 44 - public const int TextInputLayout_passwordToggleEnabled = 44; - - // aapt resource value: 45 - public const int TextInputLayout_passwordToggleTint = 45; - - // aapt resource value: 46 - public const int TextInputLayout_passwordToggleTintMode = 46; - - // aapt resource value: 47 - public const int TextInputLayout_placeholderText = 47; - - // aapt resource value: 48 - public const int TextInputLayout_placeholderTextAppearance = 48; - - // aapt resource value: 49 - public const int TextInputLayout_placeholderTextColor = 49; - - // aapt resource value: 50 - public const int TextInputLayout_prefixText = 50; - - // aapt resource value: 51 - public const int TextInputLayout_prefixTextAppearance = 51; - - // aapt resource value: 52 - public const int TextInputLayout_prefixTextColor = 52; - - // aapt resource value: 53 - public const int TextInputLayout_shapeAppearance = 53; - - // aapt resource value: 54 - public const int TextInputLayout_shapeAppearanceOverlay = 54; - - // aapt resource value: 55 - public const int TextInputLayout_startIconCheckable = 55; - - // aapt resource value: 56 - public const int TextInputLayout_startIconContentDescription = 56; - - // aapt resource value: 57 - public const int TextInputLayout_startIconDrawable = 57; - - // aapt resource value: 58 - public const int TextInputLayout_startIconTint = 58; - - // aapt resource value: 59 - public const int TextInputLayout_startIconTintMode = 59; - - // aapt resource value: 60 - public const int TextInputLayout_suffixText = 60; - - // aapt resource value: 61 - public const int TextInputLayout_suffixTextAppearance = 61; - - // aapt resource value: 62 - public const int TextInputLayout_suffixTextColor = 62; - - // aapt resource value: { 0x1010034,0x7F03012F,0x7F030130 } - public static int[] ThemeEnforcement = new int[] { - 16842804, - 2130903343, - 2130903344}; - - // aapt resource value: 0 - public const int ThemeEnforcement_android_textAppearance = 0; - - // aapt resource value: 1 - public const int ThemeEnforcement_enforceMaterialTheme = 1; - - // aapt resource value: 2 - public const int ThemeEnforcement_enforceTextAppearance = 2; - - // aapt resource value: { 0x10100AF,0x1010140,0x7F03006F,0x7F0300AC,0x7F0300AD,0x7F0300D1,0x7F0300D2,0x7F0300D3,0x7F0300D4,0x7F0300D5,0x7F0300D6,0x7F030214,0x7F030215,0x7F030234,0x7F03023C,0x7F030252,0x7F030253,0x7F030280,0x7F0302D5,0x7F0302D6,0x7F0302D7,0x7F030333,0x7F030335,0x7F030336,0x7F030337,0x7F030338,0x7F030339,0x7F03033A,0x7F03033B,0x7F03033C } - public static int[] Toolbar = new int[] { - 16842927, - 16843072, - 2130903151, - 2130903212, - 2130903213, - 2130903249, - 2130903250, - 2130903251, - 2130903252, - 2130903253, - 2130903254, - 2130903572, - 2130903573, - 2130903604, - 2130903612, - 2130903634, - 2130903635, - 2130903680, - 2130903765, - 2130903766, - 2130903767, - 2130903859, - 2130903861, - 2130903862, - 2130903863, - 2130903864, - 2130903865, - 2130903866, - 2130903867, - 2130903868}; - - // aapt resource value: 0 - public const int Toolbar_android_gravity = 0; - - // aapt resource value: 1 - public const int Toolbar_android_minHeight = 1; - - // aapt resource value: 2 - public const int Toolbar_buttonGravity = 2; - - // aapt resource value: 3 - public const int Toolbar_collapseContentDescription = 3; - - // aapt resource value: 4 - public const int Toolbar_collapseIcon = 4; - - // aapt resource value: 5 - public const int Toolbar_contentInsetEnd = 5; - - // aapt resource value: 6 - public const int Toolbar_contentInsetEndWithActions = 6; - - // aapt resource value: 7 - public const int Toolbar_contentInsetLeft = 7; - - // aapt resource value: 8 - public const int Toolbar_contentInsetRight = 8; - - // aapt resource value: 9 - public const int Toolbar_contentInsetStart = 9; - - // aapt resource value: 10 - public const int Toolbar_contentInsetStartWithNavigation = 10; - - // aapt resource value: 11 - public const int Toolbar_logo = 11; - - // aapt resource value: 12 - public const int Toolbar_logoDescription = 12; - - // aapt resource value: 13 - public const int Toolbar_maxButtonHeight = 13; - - // aapt resource value: 14 - public const int Toolbar_menu = 14; - - // aapt resource value: 15 - public const int Toolbar_navigationContentDescription = 15; - - // aapt resource value: 16 - public const int Toolbar_navigationIcon = 16; - - // aapt resource value: 17 - public const int Toolbar_popupTheme = 17; - - // aapt resource value: 18 - public const int Toolbar_subtitle = 18; - - // aapt resource value: 19 - public const int Toolbar_subtitleTextAppearance = 19; - - // aapt resource value: 20 - public const int Toolbar_subtitleTextColor = 20; - - // aapt resource value: 21 - public const int Toolbar_title = 21; - - // aapt resource value: 22 - public const int Toolbar_titleMargin = 22; - - // aapt resource value: 23 - public const int Toolbar_titleMarginBottom = 23; - - // aapt resource value: 24 - public const int Toolbar_titleMarginEnd = 24; - - // aapt resource value: 27 - public const int Toolbar_titleMargins = 27; - - // aapt resource value: 25 - public const int Toolbar_titleMarginStart = 25; - - // aapt resource value: 26 - public const int Toolbar_titleMarginTop = 26; - - // aapt resource value: 28 - public const int Toolbar_titleTextAppearance = 28; - - // aapt resource value: 29 - public const int Toolbar_titleTextColor = 29; - - // aapt resource value: { 0x1010034,0x10100D5,0x10100F6,0x101013F,0x1010140,0x101014F,0x7F030043 } - public static int[] Tooltip = new int[] { - 16842804, - 16842965, - 16842998, - 16843071, - 16843072, - 16843087, - 2130903107}; - - // aapt resource value: 2 - public const int Tooltip_android_layout_margin = 2; - - // aapt resource value: 4 - public const int Tooltip_android_minHeight = 4; - - // aapt resource value: 3 - public const int Tooltip_android_minWidth = 3; - - // aapt resource value: 1 - public const int Tooltip_android_padding = 1; - - // aapt resource value: 5 - public const int Tooltip_android_text = 5; - - // aapt resource value: 0 - public const int Tooltip_android_textAppearance = 0; - - // aapt resource value: 6 - public const int Tooltip_backgroundTint = 6; - - // aapt resource value: { 0x1010320,0x1010321,0x1010322,0x1010323,0x1010324,0x1010325,0x1010326,0x1010327,0x1010328,0x10103FA,0x1010440 } - public static int[] Transform = new int[] { - 16843552, - 16843553, - 16843554, - 16843555, - 16843556, - 16843557, - 16843558, - 16843559, - 16843560, - 16843770, - 16843840}; - - // aapt resource value: 10 - public const int Transform_android_elevation = 10; - - // aapt resource value: 6 - public const int Transform_android_rotation = 6; - - // aapt resource value: 7 - public const int Transform_android_rotationX = 7; - - // aapt resource value: 8 - public const int Transform_android_rotationY = 8; - - // aapt resource value: 4 - public const int Transform_android_scaleX = 4; - - // aapt resource value: 5 - public const int Transform_android_scaleY = 5; - - // aapt resource value: 0 - public const int Transform_android_transformPivotX = 0; - - // aapt resource value: 1 - public const int Transform_android_transformPivotY = 1; - - // aapt resource value: 2 - public const int Transform_android_translationX = 2; - - // aapt resource value: 3 - public const int Transform_android_translationY = 3; - - // aapt resource value: 9 - public const int Transform_android_translationZ = 9; - - // aapt resource value: { 0x10100D0,0x7F030039,0x7F0300CA,0x7F0300CB,0x7F030122,0x7F0301C0,0x7F030249,0x7F030272,0x7F0302C2,0x7F030351,0x7F030353 } - public static int[] Transition = new int[] { - 16842960, - 2130903097, - 2130903242, - 2130903243, - 2130903330, - 2130903488, - 2130903625, - 2130903666, - 2130903746, - 2130903889, - 2130903891}; - - // aapt resource value: 0 - public const int Transition_android_id = 0; - - // aapt resource value: 1 - public const int Transition_autoTransition = 1; - - // aapt resource value: 2 - public const int Transition_constraintSetEnd = 2; - - // aapt resource value: 3 - public const int Transition_constraintSetStart = 3; - - // aapt resource value: 4 - public const int Transition_duration = 4; - - // aapt resource value: 5 - public const int Transition_layoutDuringTransition = 5; - - // aapt resource value: 6 - public const int Transition_motionInterpolator = 6; - - // aapt resource value: 7 - public const int Transition_pathMotionArc = 7; - - // aapt resource value: 8 - public const int Transition_staggered = 8; - - // aapt resource value: 9 - public const int Transition_transitionDisable = 9; - - // aapt resource value: 10 - public const int Transition_transitionFlags = 10; - - // aapt resource value: { 0x7F0300CE,0x7F030291,0x7F030292,0x7F030293,0x7F030294 } - public static int[] Variant = new int[] { - 2130903246, - 2130903697, - 2130903698, - 2130903699, - 2130903700}; - - // aapt resource value: 0 - public const int Variant_constraints = 0; - - // aapt resource value: 1 - public const int Variant_region_heightLessThan = 1; - - // aapt resource value: 2 - public const int Variant_region_heightMoreThan = 2; - - // aapt resource value: 3 - public const int Variant_region_widthLessThan = 3; - - // aapt resource value: 4 - public const int Variant_region_widthMoreThan = 4; - - // aapt resource value: { 0x1010000,0x10100DA,0x7F030265,0x7F030268,0x7F03031F } - public static int[] View = new int[] { - 16842752, - 16842970, - 2130903653, - 2130903656, - 2130903839}; - - // aapt resource value: { 0x10100D4,0x7F030043,0x7F030044 } - public static int[] ViewBackgroundHelper = new int[] { - 16842964, - 2130903107, - 2130903108}; - - // aapt resource value: 0 - public const int ViewBackgroundHelper_android_background = 0; - - // aapt resource value: 1 - public const int ViewBackgroundHelper_backgroundTint = 1; - - // aapt resource value: 2 - public const int ViewBackgroundHelper_backgroundTintMode = 2; - - // aapt resource value: { 0x10100C4 } - public static int[] ViewPager2 = new int[] { - 16842948}; - - // aapt resource value: 0 - public const int ViewPager2_android_orientation = 0; - - // aapt resource value: { 0x10100D0,0x10100F2,0x10100F3 } - public static int[] ViewStubCompat = new int[] { - 16842960, - 16842994, - 16842995}; - - // aapt resource value: 0 - public const int ViewStubCompat_android_id = 0; - - // aapt resource value: 2 - public const int ViewStubCompat_android_inflatedId = 2; - - // aapt resource value: 1 - public const int ViewStubCompat_android_layout = 1; - - // aapt resource value: 1 - public const int View_android_focusable = 1; - - // aapt resource value: 0 - public const int View_android_theme = 0; - - // aapt resource value: 2 - public const int View_paddingEnd = 2; - - // aapt resource value: 3 - public const int View_paddingStart = 3; - - // aapt resource value: 4 - public const int View_theme = 4; - - static Styleable() - { - global::Android.Runtime.ResourceIdManager.UpdateIdValues(); - } - - private Styleable() - { - } - } - - public partial class Xml - { - - // aapt resource value: 0x7F100000 - public const int standalone_badge = 2131755008; - - // aapt resource value: 0x7F100001 - public const int standalone_badge_gravity_bottom_end = 2131755009; - - // aapt resource value: 0x7F100002 - public const int standalone_badge_gravity_bottom_start = 2131755010; - - // aapt resource value: 0x7F100003 - public const int standalone_badge_gravity_top_start = 2131755011; - - // aapt resource value: 0x7F100004 - public const int standalone_badge_offset = 2131755012; - - static Xml() - { - global::Android.Runtime.ResourceIdManager.UpdateIdValues(); - } - - private Xml() + private String() { } } diff --git a/samples/GraphicsTester.Portable/Scenarios/DimensionTest.cs b/samples/GraphicsTester.Portable/Scenarios/DimensionTest.cs index cdb810c2..2526c7cb 100644 --- a/samples/GraphicsTester.Portable/Scenarios/DimensionTest.cs +++ b/samples/GraphicsTester.Portable/Scenarios/DimensionTest.cs @@ -30,7 +30,7 @@ public override void Draw(ICanvas canvas) canvas.FontColor = Colors.Black; canvas.FontSize = 16f; - canvas.DrawString($"{Width}x{Height}", Width / 2, 50, HorizontalAlignment.Center); + canvas.DrawString($"{Width}x{Height}", Width / 2, 50, TextAlignment.Center); } } } diff --git a/samples/GraphicsTester.Portable/Scenarios/DrawHorizontallyCenteredTextWithSimpleApi.cs b/samples/GraphicsTester.Portable/Scenarios/DrawHorizontallyCenteredTextWithSimpleApi.cs index e0a54c22..32c541d5 100644 --- a/samples/GraphicsTester.Portable/Scenarios/DrawHorizontallyCenteredTextWithSimpleApi.cs +++ b/samples/GraphicsTester.Portable/Scenarios/DrawHorizontallyCenteredTextWithSimpleApi.cs @@ -18,29 +18,29 @@ public override void Draw(ICanvas canvas) canvas.FontSize = 12f; canvas.Translate(0, 10); - canvas.DrawString("Arial - Left", 100, 10, HorizontalAlignment.Left); + canvas.DrawString("Arial - Left", 100, 10, TextAlignment.Start); canvas.FillCircle(100, 10, 2); canvas.Translate(0, 30); - canvas.DrawString("Arial - Center", 100, 10, HorizontalAlignment.Center); + canvas.DrawString("Arial - Center", 100, 10, TextAlignment.Center); canvas.FillCircle(100, 10, 2); canvas.Translate(0, 30); - canvas.DrawString("Arial - Right", 100, 10, HorizontalAlignment.Right); + canvas.DrawString("Arial - Right", 100, 10, TextAlignment.End); canvas.FillCircle(100, 10, 2); canvas.SetToSystemFont(); canvas.Translate(0, 30); - canvas.DrawString("System - Left", 100, 10, HorizontalAlignment.Left); + canvas.DrawString("System - Left", 100, 10, TextAlignment.Start); canvas.FillCircle(100, 10, 2); canvas.Translate(0, 30); - canvas.DrawString("System - Center", 100, 10, HorizontalAlignment.Center); + canvas.DrawString("System - Center", 100, 10, TextAlignment.Center); canvas.FillCircle(100, 10, 2); canvas.Translate(0, 30); - canvas.DrawString("System - Right", 100, 10, HorizontalAlignment.Right); + canvas.DrawString("System - Right", 100, 10, TextAlignment.End); canvas.FillCircle(100, 10, 2); canvas.RestoreState(); diff --git a/samples/GraphicsTester.Portable/Scenarios/DrawLines.cs b/samples/GraphicsTester.Portable/Scenarios/DrawLines.cs index c07ede73..2fc962b7 100644 --- a/samples/GraphicsTester.Portable/Scenarios/DrawLines.cs +++ b/samples/GraphicsTester.Portable/Scenarios/DrawLines.cs @@ -47,16 +47,16 @@ private static void DrawLinesWithLineCaps(ICanvas canvas) canvas.StrokeColor = Colors.Black; canvas.StrokeSize = 20; canvas.StrokeDashPattern = null; - canvas.StrokeLineCap = LineCap.Butt; + canvas.StrokeLineCap = PenLineCap.Flat; canvas.DrawLine(50, 250, 200, 250); - canvas.StrokeLineCap = LineCap.Round; + canvas.StrokeLineCap = PenLineCap.Round; canvas.DrawLine(50, 300, 200, 300); - canvas.StrokeLineCap = LineCap.Square; + canvas.StrokeLineCap = PenLineCap.Square; canvas.DrawLine(50, 350, 200, 350); canvas.StrokeColor = Colors.Blue; canvas.StrokeSize = 1; - canvas.StrokeLineCap = LineCap.Butt; + canvas.StrokeLineCap = PenLineCap.Flat; canvas.DrawLine(50, 250, 200, 250); canvas.DrawLine(50, 300, 200, 300); canvas.DrawLine(50, 350, 200, 350); diff --git a/samples/GraphicsTester.Portable/Scenarios/DrawLongTextInRect.cs b/samples/GraphicsTester.Portable/Scenarios/DrawLongTextInRect.cs index b711d383..64e1e8e2 100644 --- a/samples/GraphicsTester.Portable/Scenarios/DrawLongTextInRect.cs +++ b/samples/GraphicsTester.Portable/Scenarios/DrawLongTextInRect.cs @@ -28,8 +28,8 @@ public override void Draw(ICanvas canvas) canvas.DrawRectangle(dx, dy, 190, 140); - var horizontalAlignment = (HorizontalAlignment) x; - var verticalAlignment = (VerticalAlignment) y; + var horizontalAlignment = (TextAlignment) x; + var verticalAlignment = (TextAlignment) y; canvas.DrawString(textLong, dx, dy, 190, 140, horizontalAlignment, verticalAlignment); } diff --git a/samples/GraphicsTester.Portable/Scenarios/DrawLongTextInRectWithOverflow.cs b/samples/GraphicsTester.Portable/Scenarios/DrawLongTextInRectWithOverflow.cs index 80badd63..4b5de61f 100644 --- a/samples/GraphicsTester.Portable/Scenarios/DrawLongTextInRectWithOverflow.cs +++ b/samples/GraphicsTester.Portable/Scenarios/DrawLongTextInRectWithOverflow.cs @@ -26,7 +26,7 @@ public override void Draw(ICanvas canvas) canvas.DrawRectangle(dx, dy, 190, 140); - var verticalAlignment = (VerticalAlignment) y; + var verticalAlignment = (TextAlignment) y; canvas.DrawString( longText, @@ -34,7 +34,7 @@ public override void Draw(ICanvas canvas) dy, 190, 140, - HorizontalAlignment.Left, + TextAlignment.Left, verticalAlignment, TextFlow.OverflowBounds); } diff --git a/samples/GraphicsTester.Portable/Scenarios/DrawLongTextInRectWithoutOverflow.cs b/samples/GraphicsTester.Portable/Scenarios/DrawLongTextInRectWithoutOverflow.cs index 9c164657..e79426b3 100644 --- a/samples/GraphicsTester.Portable/Scenarios/DrawLongTextInRectWithoutOverflow.cs +++ b/samples/GraphicsTester.Portable/Scenarios/DrawLongTextInRectWithoutOverflow.cs @@ -26,7 +26,7 @@ public override void Draw(ICanvas canvas) canvas.DrawRectangle(dx, dy, 190, 140); - var verticalAlignment = (VerticalAlignment) y; + var verticalAlignment = (TextAlignment) y; canvas.DrawString( longText, @@ -34,7 +34,7 @@ public override void Draw(ICanvas canvas) dy, 190, 140, - HorizontalAlignment.Left, + TextAlignment.Start, verticalAlignment, TextFlow.ClipBounds); } diff --git a/samples/GraphicsTester.Portable/Scenarios/DrawShortTextInRect.cs b/samples/GraphicsTester.Portable/Scenarios/DrawShortTextInRect.cs index fb961993..822893bf 100644 --- a/samples/GraphicsTester.Portable/Scenarios/DrawShortTextInRect.cs +++ b/samples/GraphicsTester.Portable/Scenarios/DrawShortTextInRect.cs @@ -30,8 +30,8 @@ public override void Draw(ICanvas canvas) canvas.DrawRectangle(dx, dy, 190, 140); - var horizontalAlignment = (HorizontalAlignment) x; - var verticalAlignment = (VerticalAlignment) y; + var horizontalAlignment = (TextAlignment) x; + var verticalAlignment = (TextAlignment) y; canvas.DrawString(textShort, dx, dy, 190, 140, horizontalAlignment, verticalAlignment); } diff --git a/samples/GraphicsTester.Portable/Scenarios/DrawShortTextInRect2.cs b/samples/GraphicsTester.Portable/Scenarios/DrawShortTextInRect2.cs index 871caa0a..b988ea36 100644 --- a/samples/GraphicsTester.Portable/Scenarios/DrawShortTextInRect2.cs +++ b/samples/GraphicsTester.Portable/Scenarios/DrawShortTextInRect2.cs @@ -30,8 +30,8 @@ public override void Draw(ICanvas canvas) canvas.DrawRectangle(dx, dy, 190, 140); - var horizontalAlignment = (HorizontalAlignment) x; - var verticalAlignment = (VerticalAlignment) y; + var horizontalAlignment = (TextAlignment) x; + var verticalAlignment = (TextAlignment) y; canvas.DrawString(textShort, dx, dy, 190, 140, horizontalAlignment, verticalAlignment); } diff --git a/samples/GraphicsTester.Portable/Scenarios/DrawTextAtPoint.cs b/samples/GraphicsTester.Portable/Scenarios/DrawTextAtPoint.cs index 1d7fa64f..3da7b31b 100644 --- a/samples/GraphicsTester.Portable/Scenarios/DrawTextAtPoint.cs +++ b/samples/GraphicsTester.Portable/Scenarios/DrawTextAtPoint.cs @@ -17,17 +17,17 @@ public override void Draw(ICanvas canvas) canvas.FontSize = 12f; canvas.DrawLine(50, 50, 250, 50); - canvas.DrawString("Red - Align Left", 50, 50, HorizontalAlignment.Left); + canvas.DrawString("Red - Align Start", 50, 50, TextAlignment.Start); canvas.DrawLine(50, 100, 250, 100); - canvas.DrawString("Red - Align Center", 150, 100, HorizontalAlignment.Center); + canvas.DrawString("Red - Align Center", 150, 100, TextAlignment.Center); canvas.DrawLine(50, 150, 250, 150); - canvas.DrawString("Red - Align Right", 250, 150, HorizontalAlignment.Right); + canvas.DrawString("Red - Align End", 250, 150, TextAlignment.End); canvas.SaveState(); canvas.SetShadow(CanvasDefaults.DefaultShadowOffset, CanvasDefaults.DefaultShadowBlur, CanvasDefaults.DefaultShadowColor); - canvas.DrawString("Red - Shadowed", 50, 200, HorizontalAlignment.Left); + canvas.DrawString("Red - Shadowed", 50, 200, TextAlignment.Start); canvas.RestoreState(); var blurrableCanvas = canvas as IBlurrableCanvas; @@ -35,15 +35,15 @@ public override void Draw(ICanvas canvas) { canvas.SaveState(); blurrableCanvas.SetBlur(CanvasDefaults.DefaultShadowBlur); - canvas.DrawString("Red - Shadowed", 50, 250, HorizontalAlignment.Left); + canvas.DrawString("Red - Shadowed", 50, 250, TextAlignment.Start); canvas.RestoreState(); } canvas.SaveState(); canvas.SetToBoldSystemFont(); - canvas.DrawString("Bold System Font", 50, 350, HorizontalAlignment.Left); + canvas.DrawString("Bold System Font", 50, 350, TextAlignment.Start); canvas.SetToSystemFont(); - canvas.DrawString("System Font", 50, 400, HorizontalAlignment.Left); + canvas.DrawString("System Font", 50, 400, TextAlignment.Start); canvas.RestoreState(); } } diff --git a/samples/GraphicsTester.Portable/Scenarios/DrawTextRotatedAtPoint.cs b/samples/GraphicsTester.Portable/Scenarios/DrawTextRotatedAtPoint.cs index 827a5d46..f33ff164 100644 --- a/samples/GraphicsTester.Portable/Scenarios/DrawTextRotatedAtPoint.cs +++ b/samples/GraphicsTester.Portable/Scenarios/DrawTextRotatedAtPoint.cs @@ -20,17 +20,17 @@ public override void Draw(ICanvas canvas) canvas.FontSize = 12f; canvas.DrawLine(50, 50, 250, 50); - canvas.DrawString("Red - Align Left", 50, 50, HorizontalAlignment.Left); + canvas.DrawString("Red - Align Start", 50, 50, TextAlignment.Start); canvas.DrawLine(50, 100, 250, 100); - canvas.DrawString("Red - Align Center", 150, 100, HorizontalAlignment.Center); + canvas.DrawString("Red - Align Center", 150, 100, TextAlignment.Center); canvas.DrawLine(50, 150, 250, 150); - canvas.DrawString("Red - Align Right", 250, 150, HorizontalAlignment.Right); + canvas.DrawString("Red - Align End", 250, 150, TextAlignment.End); canvas.SaveState(); canvas.SetShadow(CanvasDefaults.DefaultShadowOffset, CanvasDefaults.DefaultShadowBlur, CanvasDefaults.DefaultShadowColor); - canvas.DrawString("Red - Shadowed", 50, 200, HorizontalAlignment.Left); + canvas.DrawString("Red - Shadowed", 50, 200, TextAlignment.Start); canvas.RestoreState(); var blurrableCanvas = canvas as IBlurrableCanvas; @@ -38,15 +38,15 @@ public override void Draw(ICanvas canvas) { canvas.SaveState(); blurrableCanvas.SetBlur(CanvasDefaults.DefaultShadowBlur); - canvas.DrawString("Red - Shadowed", 50, 250, HorizontalAlignment.Left); + canvas.DrawString("Red - Shadowed", 50, 250, TextAlignment.Start); canvas.RestoreState(); } canvas.SaveState(); canvas.SetToBoldSystemFont(); - canvas.DrawString("Bold System Font", 50, 350, HorizontalAlignment.Left); + canvas.DrawString("Bold System Font", 50, 350, TextAlignment.Start); canvas.SetToSystemFont(); - canvas.DrawString("System Font", 50, 400, HorizontalAlignment.Left); + canvas.DrawString("System Font", 50, 400, TextAlignment.Start); canvas.RestoreState(); canvas.RestoreState(); diff --git a/samples/GraphicsTester.Portable/Scenarios/DrawVerticallyCenteredText.cs b/samples/GraphicsTester.Portable/Scenarios/DrawVerticallyCenteredText.cs index 21eeb4ac..1a112342 100644 --- a/samples/GraphicsTester.Portable/Scenarios/DrawVerticallyCenteredText.cs +++ b/samples/GraphicsTester.Portable/Scenarios/DrawVerticallyCenteredText.cs @@ -21,25 +21,25 @@ public override void Draw(ICanvas canvas) var rectHeight = 20; canvas.Translate(0, 10); canvas.DrawRectangle(10, 0, 100, rectHeight); - canvas.DrawString("Really Short 1", 10, 0, 100, rectHeight, HorizontalAlignment.Center, VerticalAlignment.Center); + canvas.DrawString("Really Short 1", 10, 0, 100, rectHeight, TextAlignment.Center, TextAlignment.Center); canvas.DrawLine(10, rectHeight / 2, 100, rectHeight / 2); rectHeight -= 2; canvas.Translate(0, 30); canvas.DrawRectangle(10, 0, 100, rectHeight); - canvas.DrawString("Really Short 2", 10, 0, 100, rectHeight, HorizontalAlignment.Center, VerticalAlignment.Center); + canvas.DrawString("Really Short 2", 10, 0, 100, rectHeight, TextAlignment.Center, TextAlignment.Center); canvas.DrawLine(10, rectHeight / 2, 100, rectHeight / 2); rectHeight -= 2; canvas.Translate(0, 30); canvas.DrawRectangle(10, 0, 100, rectHeight); - canvas.DrawString("Really Short 3", 10, 0, 100, rectHeight, HorizontalAlignment.Center, VerticalAlignment.Center); + canvas.DrawString("Really Short 3", 10, 0, 100, rectHeight, TextAlignment.Center, TextAlignment.Center); canvas.DrawLine(10, rectHeight / 2, 100, rectHeight / 2); rectHeight -= 2; canvas.Translate(0, 30); canvas.DrawRectangle(10, 0, 100, rectHeight); - canvas.DrawString("Really Short 4", 10, 0, 100, rectHeight, HorizontalAlignment.Center, VerticalAlignment.Center); + canvas.DrawString("Really Short 4", 10, 0, 100, rectHeight, TextAlignment.Center, TextAlignment.Center); canvas.DrawLine(10, rectHeight / 2, 100, rectHeight / 2); canvas.RestoreState(); @@ -50,25 +50,25 @@ public override void Draw(ICanvas canvas) rectHeight = 20; canvas.Translate(0, 10); canvas.DrawRectangle(10, 0, 100, rectHeight); - canvas.DrawString("Really Short 1", 10, 0, 100, rectHeight, HorizontalAlignment.Center, VerticalAlignment.Top); + canvas.DrawString("Really Short 1", 10, 0, 100, rectHeight, TextAlignment.Center, TextAlignment.Start); canvas.DrawLine(10, rectHeight / 2, 100, rectHeight / 2); rectHeight -= 2; canvas.Translate(0, 30); canvas.DrawRectangle(10, 0, 100, rectHeight); - canvas.DrawString("Really Short 2", 10, 0, 100, rectHeight, HorizontalAlignment.Center, VerticalAlignment.Top); + canvas.DrawString("Really Short 2", 10, 0, 100, rectHeight, TextAlignment.Center, TextAlignment.Start); canvas.DrawLine(10, rectHeight / 2, 100, rectHeight / 2); rectHeight -= 2; canvas.Translate(0, 30); canvas.DrawRectangle(10, 0, 100, rectHeight); - canvas.DrawString("Really Short 3", 10, 0, 100, rectHeight, HorizontalAlignment.Center, VerticalAlignment.Top); + canvas.DrawString("Really Short 3", 10, 0, 100, rectHeight, TextAlignment.Center, TextAlignment.Start); canvas.DrawLine(10, rectHeight / 2, 100, rectHeight / 2); rectHeight -= 2; canvas.Translate(0, 30); canvas.DrawRectangle(10, 0, 100, rectHeight); - canvas.DrawString("Really Short 4", 10, 0, 100, rectHeight, HorizontalAlignment.Center, VerticalAlignment.Top); + canvas.DrawString("Really Short 4", 10, 0, 100, rectHeight, TextAlignment.Center, TextAlignment.Start); canvas.DrawLine(10, rectHeight / 2, 100, rectHeight / 2); canvas.RestoreState(); @@ -79,25 +79,25 @@ public override void Draw(ICanvas canvas) rectHeight = 20; canvas.Translate(0, 10); canvas.DrawRectangle(10, 0, 100, rectHeight); - canvas.DrawString("Really Short 1", 10, 0, 100, rectHeight, HorizontalAlignment.Center, VerticalAlignment.Bottom); + canvas.DrawString("Really Short 1", 10, 0, 100, rectHeight, TextAlignment.Center, TextAlignment.End); canvas.DrawLine(10, rectHeight / 2, 100, rectHeight / 2); rectHeight -= 2; canvas.Translate(0, 30); canvas.DrawRectangle(10, 0, 100, rectHeight); - canvas.DrawString("Really Short 2", 10, 0, 100, rectHeight, HorizontalAlignment.Center, VerticalAlignment.Bottom); + canvas.DrawString("Really Short 2", 10, 0, 100, rectHeight, TextAlignment.Center, TextAlignment.End); canvas.DrawLine(10, rectHeight / 2, 100, rectHeight / 2); rectHeight -= 2; canvas.Translate(0, 30); canvas.DrawRectangle(10, 0, 100, rectHeight); - canvas.DrawString("Really Short 3", 10, 0, 100, rectHeight, HorizontalAlignment.Center, VerticalAlignment.Bottom); + canvas.DrawString("Really Short 3", 10, 0, 100, rectHeight, TextAlignment.Center, TextAlignment.End); canvas.DrawLine(10, rectHeight / 2, 100, rectHeight / 2); rectHeight -= 2; canvas.Translate(0, 30); canvas.DrawRectangle(10, 0, 100, rectHeight); - canvas.DrawString("Really Short 4", 10, 0, 100, rectHeight, HorizontalAlignment.Center, VerticalAlignment.Bottom); + canvas.DrawString("Really Short 4", 10, 0, 100, rectHeight, TextAlignment.Center, TextAlignment.End); canvas.DrawLine(10, rectHeight / 2, 100, rectHeight / 2); canvas.RestoreState(); @@ -109,25 +109,25 @@ public override void Draw(ICanvas canvas) rectHeight = 20; canvas.Translate(0, 10); canvas.DrawRectangle(10, 0, 100, rectHeight); - canvas.DrawString("Sys Font R 1", 10, 0, 100, rectHeight, HorizontalAlignment.Center, VerticalAlignment.Center); + canvas.DrawString("Sys Font R 1", 10, 0, 100, rectHeight, TextAlignment.Center, TextAlignment.Center); canvas.DrawLine(10, rectHeight / 2, 100, rectHeight / 2); rectHeight -= 2; canvas.Translate(0, 30); canvas.DrawRectangle(10, 0, 100, rectHeight); - canvas.DrawString("Sys Font R 2", 10, 0, 100, rectHeight, HorizontalAlignment.Center, VerticalAlignment.Center); + canvas.DrawString("Sys Font R 2", 10, 0, 100, rectHeight, TextAlignment.Center, TextAlignment.Center); canvas.DrawLine(10, rectHeight / 2, 100, rectHeight / 2); rectHeight -= 2; canvas.Translate(0, 30); canvas.DrawRectangle(10, 0, 100, rectHeight); - canvas.DrawString("Sys Font R 3", 10, 0, 100, rectHeight, HorizontalAlignment.Center, VerticalAlignment.Center); + canvas.DrawString("Sys Font R 3", 10, 0, 100, rectHeight, TextAlignment.Center, TextAlignment.Center); canvas.DrawLine(10, rectHeight / 2, 100, rectHeight / 2); rectHeight -= 2; canvas.Translate(0, 30); canvas.DrawRectangle(10, 0, 100, rectHeight); - canvas.DrawString("Sys Font R 4", 10, 0, 100, rectHeight, HorizontalAlignment.Center, VerticalAlignment.Center); + canvas.DrawString("Sys Font R 4", 10, 0, 100, rectHeight, TextAlignment.Center, TextAlignment.Center); canvas.DrawLine(10, rectHeight / 2, 100, rectHeight / 2); canvas.RestoreState(); @@ -139,25 +139,25 @@ public override void Draw(ICanvas canvas) rectHeight = 20; canvas.Translate(0, 10); canvas.DrawRectangle(10, 0, 100, rectHeight); - canvas.DrawString("Sys Font R 1", 10, 0, 100, rectHeight, HorizontalAlignment.Center, VerticalAlignment.Top); + canvas.DrawString("Sys Font R 1", 10, 0, 100, rectHeight, TextAlignment.Center, TextAlignment.Start); canvas.DrawLine(10, rectHeight / 2, 100, rectHeight / 2); rectHeight -= 2; canvas.Translate(0, 30); canvas.DrawRectangle(10, 0, 100, rectHeight); - canvas.DrawString("Sys Font R 2", 10, 0, 100, rectHeight, HorizontalAlignment.Center, VerticalAlignment.Top); + canvas.DrawString("Sys Font R 2", 10, 0, 100, rectHeight, TextAlignment.Center, TextAlignment.Start); canvas.DrawLine(10, rectHeight / 2, 100, rectHeight / 2); rectHeight -= 2; canvas.Translate(0, 30); canvas.DrawRectangle(10, 0, 100, rectHeight); - canvas.DrawString("Sys Font R 3", 10, 0, 100, rectHeight, HorizontalAlignment.Center, VerticalAlignment.Top); + canvas.DrawString("Sys Font R 3", 10, 0, 100, rectHeight, TextAlignment.Center, TextAlignment.Start); canvas.DrawLine(10, rectHeight / 2, 100, rectHeight / 2); rectHeight -= 2; canvas.Translate(0, 30); canvas.DrawRectangle(10, 0, 100, rectHeight); - canvas.DrawString("Sys Font R 4", 10, 0, 100, rectHeight, HorizontalAlignment.Center, VerticalAlignment.Top); + canvas.DrawString("Sys Font R 4", 10, 0, 100, rectHeight, TextAlignment.Center, TextAlignment.Start); canvas.DrawLine(10, rectHeight / 2, 100, rectHeight / 2); canvas.RestoreState(); @@ -169,25 +169,25 @@ public override void Draw(ICanvas canvas) rectHeight = 20; canvas.Translate(0, 10); canvas.DrawRectangle(10, 0, 100, rectHeight); - canvas.DrawString("Sys Font R 1", 10, 0, 100, rectHeight, HorizontalAlignment.Center, VerticalAlignment.Bottom); + canvas.DrawString("Sys Font R 1", 10, 0, 100, rectHeight, TextAlignment.Center, TextAlignment.End); canvas.DrawLine(10, rectHeight / 2, 100, rectHeight / 2); rectHeight -= 2; canvas.Translate(0, 30); canvas.DrawRectangle(10, 0, 100, rectHeight); - canvas.DrawString("Sys Font R 2", 10, 0, 100, rectHeight, HorizontalAlignment.Center, VerticalAlignment.Bottom); + canvas.DrawString("Sys Font R 2", 10, 0, 100, rectHeight, TextAlignment.Center, TextAlignment.End); canvas.DrawLine(10, rectHeight / 2, 100, rectHeight / 2); rectHeight -= 2; canvas.Translate(0, 30); canvas.DrawRectangle(10, 0, 100, rectHeight); - canvas.DrawString("Sys Font R 3", 10, 0, 100, rectHeight, HorizontalAlignment.Center, VerticalAlignment.Bottom); + canvas.DrawString("Sys Font R 3", 10, 0, 100, rectHeight, TextAlignment.Center, TextAlignment.End); canvas.DrawLine(10, rectHeight / 2, 100, rectHeight / 2); rectHeight -= 2; canvas.Translate(0, 30); canvas.DrawRectangle(10, 0, 100, rectHeight); - canvas.DrawString("Sys Font R 4", 10, 0, 100, rectHeight, HorizontalAlignment.Center, VerticalAlignment.Bottom); + canvas.DrawString("Sys Font R 4", 10, 0, 100, rectHeight, TextAlignment.Center, TextAlignment.End); canvas.DrawLine(10, rectHeight / 2, 100, rectHeight / 2); canvas.RestoreState(); diff --git a/samples/GraphicsTester.Portable/Scenarios/DrawVerticallyCenteredText2.cs b/samples/GraphicsTester.Portable/Scenarios/DrawVerticallyCenteredText2.cs index 006ebae0..b321f1f9 100644 --- a/samples/GraphicsTester.Portable/Scenarios/DrawVerticallyCenteredText2.cs +++ b/samples/GraphicsTester.Portable/Scenarios/DrawVerticallyCenteredText2.cs @@ -21,25 +21,25 @@ public override void Draw(ICanvas canvas) var rectHeight = 32; canvas.Translate(0, 10); canvas.DrawRectangle(10, 0, 200, rectHeight); - canvas.DrawString("Really Short 1", 10, 0, 200, rectHeight, HorizontalAlignment.Center, VerticalAlignment.Center); + canvas.DrawString("Really Short 1", 10, 0, 200, rectHeight, TextAlignment.Center, TextAlignment.Center); canvas.DrawLine(10, rectHeight / 2, 200, rectHeight / 2); rectHeight -= 2; canvas.Translate(0, 45); canvas.DrawRectangle(10, 0, 200, rectHeight); - canvas.DrawString("Really Short 2", 10, 0, 200, rectHeight, HorizontalAlignment.Center, VerticalAlignment.Center); + canvas.DrawString("Really Short 2", 10, 0, 200, rectHeight, TextAlignment.Center, TextAlignment.Center); canvas.DrawLine(10, rectHeight / 2, 200, rectHeight / 2); rectHeight -= 2; canvas.Translate(0, 45); canvas.DrawRectangle(10, 0, 200, rectHeight); - canvas.DrawString("Really Short 3", 10, 0, 200, rectHeight, HorizontalAlignment.Center, VerticalAlignment.Center); + canvas.DrawString("Really Short 3", 10, 0, 200, rectHeight, TextAlignment.Center, TextAlignment.Center); canvas.DrawLine(10, rectHeight / 2, 200, rectHeight / 2); rectHeight -= 2; canvas.Translate(0, 45); canvas.DrawRectangle(10, 0, 200, rectHeight); - canvas.DrawString("Really Short 4", 10, 0, 200, rectHeight, HorizontalAlignment.Center, VerticalAlignment.Center); + canvas.DrawString("Really Short 4", 10, 0, 200, rectHeight, TextAlignment.Center, TextAlignment.Center); canvas.DrawLine(10, rectHeight / 2, 200, rectHeight / 2); canvas.RestoreState(); @@ -50,25 +50,25 @@ public override void Draw(ICanvas canvas) rectHeight = 32; canvas.Translate(0, 10); canvas.DrawRectangle(10, 0, 200, rectHeight); - canvas.DrawString("Really Short 1", 10, 0, 200, rectHeight, HorizontalAlignment.Center, VerticalAlignment.Top); + canvas.DrawString("Really Short 1", 10, 0, 200, rectHeight, TextAlignment.Center, TextAlignment.Start); canvas.DrawLine(10, rectHeight / 2, 200, rectHeight / 2); rectHeight -= 2; canvas.Translate(0, 45); canvas.DrawRectangle(10, 0, 200, rectHeight); - canvas.DrawString("Really Short 2", 10, 0, 200, rectHeight, HorizontalAlignment.Center, VerticalAlignment.Top); + canvas.DrawString("Really Short 2", 10, 0, 200, rectHeight, TextAlignment.Center, TextAlignment.Start); canvas.DrawLine(10, rectHeight / 2, 200, rectHeight / 2); rectHeight -= 2; canvas.Translate(0, 45); canvas.DrawRectangle(10, 0, 200, rectHeight); - canvas.DrawString("Really Short 3", 10, 0, 200, rectHeight, HorizontalAlignment.Center, VerticalAlignment.Top); + canvas.DrawString("Really Short 3", 10, 0, 200, rectHeight, TextAlignment.Center, TextAlignment.Start); canvas.DrawLine(10, rectHeight / 2, 200, rectHeight / 2); rectHeight -= 2; canvas.Translate(0, 45); canvas.DrawRectangle(10, 0, 200, rectHeight); - canvas.DrawString("Really Short 4", 10, 0, 200, rectHeight, HorizontalAlignment.Center, VerticalAlignment.Top); + canvas.DrawString("Really Short 4", 10, 0, 200, rectHeight, TextAlignment.Center, TextAlignment.Start); canvas.DrawLine(10, rectHeight / 2, 200, rectHeight / 2); canvas.RestoreState(); @@ -79,25 +79,25 @@ public override void Draw(ICanvas canvas) rectHeight = 32; canvas.Translate(0, 10); canvas.DrawRectangle(10, 0, 200, rectHeight); - canvas.DrawString("Really Short 1", 10, 0, 200, rectHeight, HorizontalAlignment.Center, VerticalAlignment.Bottom); + canvas.DrawString("Really Short 1", 10, 0, 200, rectHeight, TextAlignment.Center, TextAlignment.End); canvas.DrawLine(10, rectHeight / 2, 200, rectHeight / 2); rectHeight -= 2; canvas.Translate(0, 45); canvas.DrawRectangle(10, 0, 200, rectHeight); - canvas.DrawString("Really Short 2", 10, 0, 200, rectHeight, HorizontalAlignment.Center, VerticalAlignment.Bottom); + canvas.DrawString("Really Short 2", 10, 0, 200, rectHeight, TextAlignment.Center, TextAlignment.End); canvas.DrawLine(10, rectHeight / 2, 200, rectHeight / 2); rectHeight -= 2; canvas.Translate(0, 45); canvas.DrawRectangle(10, 0, 200, rectHeight); - canvas.DrawString("Really Short 3", 10, 0, 200, rectHeight, HorizontalAlignment.Center, VerticalAlignment.Bottom); + canvas.DrawString("Really Short 3", 10, 0, 200, rectHeight, TextAlignment.Center, TextAlignment.End); canvas.DrawLine(10, rectHeight / 2, 200, rectHeight / 2); rectHeight -= 2; canvas.Translate(0, 45); canvas.DrawRectangle(10, 0, 200, rectHeight); - canvas.DrawString("Really Short 4", 10, 0, 200, rectHeight, HorizontalAlignment.Center, VerticalAlignment.Bottom); + canvas.DrawString("Really Short 4", 10, 0, 200, rectHeight, TextAlignment.Center, TextAlignment.End); canvas.DrawLine(10, rectHeight / 2, 200, rectHeight / 2); canvas.RestoreState(); @@ -109,25 +109,25 @@ public override void Draw(ICanvas canvas) rectHeight = 32; canvas.Translate(0, 10); canvas.DrawRectangle(10, 0, 200, rectHeight); - canvas.DrawString("Sys Font R 1", 10, 0, 200, rectHeight, HorizontalAlignment.Center, VerticalAlignment.Center); + canvas.DrawString("Sys Font R 1", 10, 0, 200, rectHeight, TextAlignment.Center, TextAlignment.Center); canvas.DrawLine(10, rectHeight / 2, 200, rectHeight / 2); rectHeight -= 2; canvas.Translate(0, 45); canvas.DrawRectangle(10, 0, 200, rectHeight); - canvas.DrawString("Sys Font R 2", 10, 0, 200, rectHeight, HorizontalAlignment.Center, VerticalAlignment.Center); + canvas.DrawString("Sys Font R 2", 10, 0, 200, rectHeight, TextAlignment.Center, TextAlignment.Center); canvas.DrawLine(10, rectHeight / 2, 200, rectHeight / 2); rectHeight -= 2; canvas.Translate(0, 45); canvas.DrawRectangle(10, 0, 200, rectHeight); - canvas.DrawString("Sys Font R 3", 10, 0, 200, rectHeight, HorizontalAlignment.Center, VerticalAlignment.Center); + canvas.DrawString("Sys Font R 3", 10, 0, 200, rectHeight, TextAlignment.Center, TextAlignment.Center); canvas.DrawLine(10, rectHeight / 2, 200, rectHeight / 2); rectHeight -= 2; canvas.Translate(0, 45); canvas.DrawRectangle(10, 0, 200, rectHeight); - canvas.DrawString("Sys Font R 4", 10, 0, 200, rectHeight, HorizontalAlignment.Center, VerticalAlignment.Center); + canvas.DrawString("Sys Font R 4", 10, 0, 200, rectHeight, TextAlignment.Center, TextAlignment.Center); canvas.DrawLine(10, rectHeight / 2, 200, rectHeight / 2); canvas.RestoreState(); @@ -139,25 +139,25 @@ public override void Draw(ICanvas canvas) rectHeight = 32; canvas.Translate(0, 10); canvas.DrawRectangle(10, 0, 200, rectHeight); - canvas.DrawString("Sys Font R 1", 10, 0, 200, rectHeight, HorizontalAlignment.Center, VerticalAlignment.Top); + canvas.DrawString("Sys Font R 1", 10, 0, 200, rectHeight, TextAlignment.Center, TextAlignment.Start); canvas.DrawLine(10, rectHeight / 2, 200, rectHeight / 2); rectHeight -= 2; canvas.Translate(0, 45); canvas.DrawRectangle(10, 0, 200, rectHeight); - canvas.DrawString("Sys Font R 2", 10, 0, 200, rectHeight, HorizontalAlignment.Center, VerticalAlignment.Top); + canvas.DrawString("Sys Font R 2", 10, 0, 200, rectHeight, TextAlignment.Center, TextAlignment.Start); canvas.DrawLine(10, rectHeight / 2, 200, rectHeight / 2); rectHeight -= 2; canvas.Translate(0, 45); canvas.DrawRectangle(10, 0, 200, rectHeight); - canvas.DrawString("Sys Font R 3", 10, 0, 200, rectHeight, HorizontalAlignment.Center, VerticalAlignment.Top); + canvas.DrawString("Sys Font R 3", 10, 0, 200, rectHeight, TextAlignment.Center, TextAlignment.Start); canvas.DrawLine(10, rectHeight / 2, 200, rectHeight / 2); rectHeight -= 2; canvas.Translate(0, 45); canvas.DrawRectangle(10, 0, 200, rectHeight); - canvas.DrawString("Sys Font R 4", 10, 0, 200, rectHeight, HorizontalAlignment.Center, VerticalAlignment.Top); + canvas.DrawString("Sys Font R 4", 10, 0, 200, rectHeight, TextAlignment.Center, TextAlignment.Start); canvas.DrawLine(10, rectHeight / 2, 200, rectHeight / 2); canvas.RestoreState(); @@ -169,25 +169,25 @@ public override void Draw(ICanvas canvas) rectHeight = 32; canvas.Translate(0, 10); canvas.DrawRectangle(10, 0, 200, rectHeight); - canvas.DrawString("Sys Font R 1", 10, 0, 200, rectHeight, HorizontalAlignment.Center, VerticalAlignment.Bottom); + canvas.DrawString("Sys Font R 1", 10, 0, 200, rectHeight, TextAlignment.Center, TextAlignment.End); canvas.DrawLine(10, rectHeight / 2, 200, rectHeight / 2); rectHeight -= 2; canvas.Translate(0, 45); canvas.DrawRectangle(10, 0, 200, rectHeight); - canvas.DrawString("Sys Font R 2", 10, 0, 200, rectHeight, HorizontalAlignment.Center, VerticalAlignment.Bottom); + canvas.DrawString("Sys Font R 2", 10, 0, 200, rectHeight, TextAlignment.Center, TextAlignment.End); canvas.DrawLine(10, rectHeight / 2, 200, rectHeight / 2); rectHeight -= 2; canvas.Translate(0, 45); canvas.DrawRectangle(10, 0, 200, rectHeight); - canvas.DrawString("Sys Font R 3", 10, 0, 200, rectHeight, HorizontalAlignment.Center, VerticalAlignment.Bottom); + canvas.DrawString("Sys Font R 3", 10, 0, 200, rectHeight, TextAlignment.Center, TextAlignment.End); canvas.DrawLine(10, rectHeight / 2, 200, rectHeight / 2); rectHeight -= 2; canvas.Translate(0, 45); canvas.DrawRectangle(10, 0, 200, rectHeight); - canvas.DrawString("Sys Font R 4", 10, 0, 200, rectHeight, HorizontalAlignment.Center, VerticalAlignment.Bottom); + canvas.DrawString("Sys Font R 4", 10, 0, 200, rectHeight, TextAlignment.Center, TextAlignment.End); canvas.DrawLine(10, rectHeight / 2, 200, rectHeight / 2); canvas.RestoreState(); diff --git a/samples/GraphicsTester.Portable/Scenarios/LineJoins.cs b/samples/GraphicsTester.Portable/Scenarios/LineJoins.cs index c4d0bc8e..568f8e5e 100644 --- a/samples/GraphicsTester.Portable/Scenarios/LineJoins.cs +++ b/samples/GraphicsTester.Portable/Scenarios/LineJoins.cs @@ -22,28 +22,28 @@ public override void Draw(ICanvas canvas) path.LineTo(390, 120); canvas.DrawPath(path); - canvas.StrokeLineJoin = LineJoin.Miter; + canvas.StrokeLineJoin = PenLineJoin.Miter; path = new PathF(); path.MoveTo(400, 120); path.LineTo(420, 180); path.LineTo(440, 120); canvas.DrawPath(path); - canvas.StrokeLineJoin = LineJoin.Round; + canvas.StrokeLineJoin = PenLineJoin.Round; path = new PathF(); path.MoveTo(450, 120); path.LineTo(470, 180); path.LineTo(490, 120); canvas.DrawPath(path); - canvas.StrokeLineJoin = LineJoin.Bevel; + canvas.StrokeLineJoin = PenLineJoin.Bevel; path = new PathF(); path.MoveTo(500, 120); path.LineTo(520, 180); path.LineTo(540, 120); canvas.DrawPath(path); - canvas.StrokeLineJoin = LineJoin.Miter; + canvas.StrokeLineJoin = PenLineJoin.Miter; canvas.MiterLimit = 2; path = new PathF(); path.MoveTo(550, 120); diff --git a/samples/GraphicsTester.Portable/Scenarios/TestPattern1.cs b/samples/GraphicsTester.Portable/Scenarios/TestPattern1.cs index bd884930..5572e2be 100644 --- a/samples/GraphicsTester.Portable/Scenarios/TestPattern1.cs +++ b/samples/GraphicsTester.Portable/Scenarios/TestPattern1.cs @@ -79,18 +79,18 @@ public override void Draw(ICanvas canvas) canvas.DrawLine(100, 120, 300, 120); canvas.StrokeColor = Colors.Red; - canvas.StrokeLineCap = LineCap.Butt; + canvas.StrokeLineCap = PenLineCap.Flat; canvas.DrawLine(100, 140, 300, 140); canvas.StrokeColor = Colors.Green; - canvas.StrokeLineCap = LineCap.Round; + canvas.StrokeLineCap = PenLineCap.Round; canvas.DrawLine(100, 160, 300, 160); canvas.StrokeColor = Colors.Blue; - canvas.StrokeLineCap = LineCap.Square; + canvas.StrokeLineCap = PenLineCap.Square; canvas.DrawLine(100, 180, 300, 180); - canvas.StrokeLineCap = LineCap.Butt; + canvas.StrokeLineCap = PenLineCap.Flat; // // Line Joins @@ -104,28 +104,28 @@ public override void Draw(ICanvas canvas) path.LineTo(390, 120); canvas.DrawPath(path); - canvas.StrokeLineJoin = LineJoin.Miter; + canvas.StrokeLineJoin = PenLineJoin.Miter; path = new PathF(); path.MoveTo(400, 120); path.LineTo(420, 180); path.LineTo(440, 120); canvas.DrawPath(path); - canvas.StrokeLineJoin = LineJoin.Round; + canvas.StrokeLineJoin = PenLineJoin.Round; path = new PathF(); path.MoveTo(450, 120); path.LineTo(470, 180); path.LineTo(490, 120); canvas.DrawPath(path); - canvas.StrokeLineJoin = LineJoin.Bevel; + canvas.StrokeLineJoin = PenLineJoin.Bevel; path = new PathF(); path.MoveTo(500, 120); path.LineTo(520, 180); path.LineTo(540, 120); canvas.DrawPath(path); - canvas.StrokeLineJoin = LineJoin.Miter; + canvas.StrokeLineJoin = PenLineJoin.Miter; canvas.MiterLimit = 2; path = new PathF(); path.MoveTo(550, 120); @@ -152,7 +152,7 @@ public override void Draw(ICanvas canvas) canvas.StrokeDashPattern = SOLID; canvas.DrawLine(650, 180, 800, 180); - canvas.StrokeLineCap = LineCap.Butt; + canvas.StrokeLineCap = PenLineCap.Flat; // // Linear Gradient Fill @@ -418,8 +418,8 @@ public override void Draw(ICanvas canvas) canvas.DrawRectangle(dx, dy, 190, 140); - var vHorizontalAlignment = (HorizontalAlignment)x; - var vVerticalAlignment = (VerticalAlignment)y; + var vHorizontalAlignment = (TextAlignment)x; + var vVerticalAlignment = (TextAlignment)y; canvas.FontName = "Arial"; canvas.FontSize = 12f; @@ -439,8 +439,8 @@ public override void Draw(ICanvas canvas) canvas.DrawRectangle(dx, dy, 190, 140); - var vHorizontalAlignment = (HorizontalAlignment)x; - var vVerticalAlignment = (VerticalAlignment)y; + var vHorizontalAlignment = (TextAlignment)x; + var vVerticalAlignment = (TextAlignment)y; canvas.FontName = "Arial"; canvas.FontSize = 12f; @@ -457,8 +457,8 @@ public override void Draw(ICanvas canvas) canvas.DrawRectangle(dx, dy, 190, 140); - const HorizontalAlignment vHorizontalAlignment = HorizontalAlignment.Left; - var vVerticalAlignment = (VerticalAlignment)y; + const TextAlignment vHorizontalAlignment = TextAlignment.Start; + var vVerticalAlignment = (TextAlignment)y; canvas.FontName = "Arial"; canvas.FontSize = 12f; @@ -481,10 +481,10 @@ public override void Draw(ICanvas canvas) canvas.DrawLine(1000, 1350, 1200, 1350); canvas.DrawLine(1000, 1375, 1200, 1375); canvas.DrawLine(1100, 1300, 1100, 1400); - canvas.DrawString("This is a test.", 1100, 1300, HorizontalAlignment.Left); - canvas.DrawString("This is a test.", 1100, 1325, HorizontalAlignment.Center); - canvas.DrawString("This is a test.", 1100, 1350, HorizontalAlignment.Right); - canvas.DrawString("This is a test.", 1100, 1375, HorizontalAlignment.Justified); + canvas.DrawString("This is a test.", 1100, 1300, TextAlignment.Start); + canvas.DrawString("This is a test.", 1100, 1325, TextAlignment.Center); + canvas.DrawString("This is a test.", 1100, 1350, TextAlignment.End); + //canvas.DrawString("This is a test.", 1100, 1375, TextAlignment.Justified); // // Test inverse clipping area @@ -508,7 +508,7 @@ public override void Draw(ICanvas canvas) for (int i = 0; i < 4; i++) { canvas.FontSize = 12 + i * 6; - canvas.DrawString("Test String Length", 650, 400 + (100 * i), HorizontalAlignment.Left); + canvas.DrawString("Test String Length", 650, 400 + (100 * i), TextAlignment.Start); var size = graphicsPlatform.GetStringSize("Test String Length", "Arial", 12 + i * 6); canvas.DrawRectangle(650, 400 + (100 * i), size.Width, size.Height); @@ -534,4 +534,4 @@ public override void Draw(ICanvas canvas) canvas.RestoreState(); } } -} \ No newline at end of file +} diff --git a/src/Microsoft.Maui.Graphics.Blazor.JS/dist/blazor.extensions.canvas.js b/src/Microsoft.Maui.Graphics.Blazor.JS/dist/blazor.extensions.canvas.js index 632e0787..fad0cf7f 100644 --- a/src/Microsoft.Maui.Graphics.Blazor.JS/dist/blazor.extensions.canvas.js +++ b/src/Microsoft.Maui.Graphics.Blazor.JS/dist/blazor.extensions.canvas.js @@ -1,2 +1,2 @@ !function(e){var t={};function n(r){if(t[r])return t[r].exports;var i=t[r]={i:r,l:!1,exports:{}};return e[r].call(i.exports,i,i.exports,n),i.l=!0,i.exports}n.m=e,n.c=t,n.d=function(e,t,r){n.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:r})},n.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},n.t=function(e,t){if(1&t&&(e=n(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var r=Object.create(null);if(n.r(r),Object.defineProperty(r,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var i in e)n.d(r,i,function(t){return e[t]}.bind(null,i));return r},n.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return n.d(t,"a",t),t},n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},n.p="",n(n.s=0)}([function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});const r=n(1);var i;!function(e){const t="BlazorExtensions",n={Canvas2d:new r.ContextManager("2d"),WebGL:new r.ContextManager("webgl")};e.initialize=function(){"undefined"==typeof window||window[t]?window[t]=Object.assign({},window[t],n):window[t]=Object.assign({},n)}}(i||(i={})),i.initialize()},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});t.ContextManager=class{constructor(e){if(this.contexts=new Map,this.webGLObject=new Array,this.webGLContext=!1,this.webGLTypes=[WebGLBuffer,WebGLShader,WebGLProgram,WebGLFramebuffer,WebGLRenderbuffer,WebGLTexture,WebGLUniformLocation],this.add=((e,t)=>{if(!e)throw new Error("Invalid canvas.");if(!this.contexts.get(e.id)){var n;if(!(n=t?e.getContext(this.contextName,t):e.getContext(this.contextName)))throw new Error("Invalid context.");this.contexts.set(e.id,n)}}),this.remove=(e=>{this.contexts.delete(e.id)}),this.setProperty=((e,t,n)=>{this.getContext(e)[t]=this.deserialize(t,n)}),this.getProperty=((e,t)=>{const n=this.getContext(e);return this.serialize(n[t])}),this.call=((e,t,n)=>{const r=this.getContext(e);return this.serialize(this.prototypes[t].apply(r,void 0!=n?n.map(e=>this.deserialize(t,e)):[]))}),this.getContext=(e=>{if(!e)throw new Error("Invalid canvas.");const t=this.contexts.get(e.id);if(!t)throw new Error("Invalid context.");return t}),this.deserialize=((e,t)=>this.webGLContext?t.hasOwnProperty("webGLType")&&t.hasOwnProperty("id")?this.webGLObject[t.id]:Array.isArray(t)&&!e.endsWith("v")?Int8Array.of(...t):t:t),this.serialize=(e=>{if(!this.webGLContext)return e;const t=this.webGLTypes.find(t=>e instanceof t);if(void 0!=t){const n=this.webGLObject.length;return this.webGLObject.push(e),{webGLType:t.name,id:n}}return e}),this.contextName=e,"2d"===e)this.prototypes=CanvasRenderingContext2D.prototype;else{if("webgl"!==e&&"experimental-webgl"!==e)throw new Error(`Invalid context name: ${e}`);this.prototypes=WebGLRenderingContext.prototype,this.webGLContext=!0}}}}]); -//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIndlYnBhY2s6Ly8vd2VicGFjay9ib290c3RyYXAiLCJ3ZWJwYWNrOi8vLy4vc3JjL0luaXRpYWxpemVDYW52YXMudHMiLCJ3ZWJwYWNrOi8vLy4vc3JjL0NhbnZhc0NvbnRleHRNYW5hZ2VyLnRzIl0sIm5hbWVzIjpbImluc3RhbGxlZE1vZHVsZXMiLCJfX3dlYnBhY2tfcmVxdWlyZV9fIiwibW9kdWxlSWQiLCJleHBvcnRzIiwibW9kdWxlIiwiaSIsImwiLCJtb2R1bGVzIiwiY2FsbCIsIm0iLCJjIiwiZCIsIm5hbWUiLCJnZXR0ZXIiLCJvIiwiT2JqZWN0IiwiZGVmaW5lUHJvcGVydHkiLCJlbnVtZXJhYmxlIiwiZ2V0IiwiciIsIlN5bWJvbCIsInRvU3RyaW5nVGFnIiwidmFsdWUiLCJ0IiwibW9kZSIsIl9fZXNNb2R1bGUiLCJucyIsImNyZWF0ZSIsImtleSIsImJpbmQiLCJuIiwib2JqZWN0IiwicHJvcGVydHkiLCJwcm90b3R5cGUiLCJoYXNPd25Qcm9wZXJ0eSIsInAiLCJzIiwiQ2FudmFzQ29udGV4dE1hbmFnZXJfMSIsIkNhbnZhcyIsImJsYXpvckV4dGVuc2lvbnMiLCJleHRlbnNpb25PYmplY3QiLCJDYW52YXMyZCIsIkNvbnRleHRNYW5hZ2VyIiwiV2ViR0wiLCJpbml0aWFsaXplIiwid2luZG93IiwiYXNzaWduIiwiW29iamVjdCBPYmplY3RdIiwiY29udGV4dE5hbWUiLCJ0aGlzIiwiY29udGV4dHMiLCJNYXAiLCJ3ZWJHTE9iamVjdCIsIkFycmF5Iiwid2ViR0xDb250ZXh0Iiwid2ViR0xUeXBlcyIsIldlYkdMQnVmZmVyIiwiV2ViR0xTaGFkZXIiLCJXZWJHTFByb2dyYW0iLCJXZWJHTEZyYW1lYnVmZmVyIiwiV2ViR0xSZW5kZXJidWZmZXIiLCJXZWJHTFRleHR1cmUiLCJXZWJHTFVuaWZvcm1Mb2NhdGlvbiIsImFkZCIsImNhbnZhcyIsInBhcmFtZXRlcnMiLCJFcnJvciIsImlkIiwiY29udGV4dCIsImdldENvbnRleHQiLCJzZXQiLCJyZW1vdmUiLCJkZWxldGUiLCJzZXRQcm9wZXJ0eSIsImRlc2VyaWFsaXplIiwiZ2V0UHJvcGVydHkiLCJzZXJpYWxpemUiLCJtZXRob2QiLCJhcmdzIiwicHJvdG90eXBlcyIsImFwcGx5IiwidW5kZWZpbmVkIiwibWFwIiwiaXNBcnJheSIsImVuZHNXaXRoIiwiSW50OEFycmF5Iiwib2YiLCJ0eXBlIiwiZmluZCIsImxlbmd0aCIsInB1c2giLCJ3ZWJHTFR5cGUiLCJDYW52YXNSZW5kZXJpbmdDb250ZXh0MkQiLCJXZWJHTFJlbmRlcmluZ0NvbnRleHQiXSwibWFwcGluZ3MiOiJhQUNBLElBQUFBLEtBR0EsU0FBQUMsRUFBQUMsR0FHQSxHQUFBRixFQUFBRSxHQUNBLE9BQUFGLEVBQUFFLEdBQUFDLFFBR0EsSUFBQUMsRUFBQUosRUFBQUUsSUFDQUcsRUFBQUgsRUFDQUksR0FBQSxFQUNBSCxZQVVBLE9BTkFJLEVBQUFMLEdBQUFNLEtBQUFKLEVBQUFELFFBQUFDLElBQUFELFFBQUFGLEdBR0FHLEVBQUFFLEdBQUEsRUFHQUYsRUFBQUQsUUFLQUYsRUFBQVEsRUFBQUYsRUFHQU4sRUFBQVMsRUFBQVYsRUFHQUMsRUFBQVUsRUFBQSxTQUFBUixFQUFBUyxFQUFBQyxHQUNBWixFQUFBYSxFQUFBWCxFQUFBUyxJQUNBRyxPQUFBQyxlQUFBYixFQUFBUyxHQUEwQ0ssWUFBQSxFQUFBQyxJQUFBTCxLQUsxQ1osRUFBQWtCLEVBQUEsU0FBQWhCLEdBQ0Esb0JBQUFpQixlQUFBQyxhQUNBTixPQUFBQyxlQUFBYixFQUFBaUIsT0FBQUMsYUFBd0RDLE1BQUEsV0FFeERQLE9BQUFDLGVBQUFiLEVBQUEsY0FBaURtQixPQUFBLEtBUWpEckIsRUFBQXNCLEVBQUEsU0FBQUQsRUFBQUUsR0FFQSxHQURBLEVBQUFBLElBQUFGLEVBQUFyQixFQUFBcUIsSUFDQSxFQUFBRSxFQUFBLE9BQUFGLEVBQ0EsS0FBQUUsR0FBQSxpQkFBQUYsUUFBQUcsV0FBQSxPQUFBSCxFQUNBLElBQUFJLEVBQUFYLE9BQUFZLE9BQUEsTUFHQSxHQUZBMUIsRUFBQWtCLEVBQUFPLEdBQ0FYLE9BQUFDLGVBQUFVLEVBQUEsV0FBeUNULFlBQUEsRUFBQUssVUFDekMsRUFBQUUsR0FBQSxpQkFBQUYsRUFBQSxRQUFBTSxLQUFBTixFQUFBckIsRUFBQVUsRUFBQWUsRUFBQUUsRUFBQSxTQUFBQSxHQUFnSCxPQUFBTixFQUFBTSxJQUFxQkMsS0FBQSxLQUFBRCxJQUNySSxPQUFBRixHQUlBekIsRUFBQTZCLEVBQUEsU0FBQTFCLEdBQ0EsSUFBQVMsRUFBQVQsS0FBQXFCLFdBQ0EsV0FBMkIsT0FBQXJCLEVBQUEsU0FDM0IsV0FBaUMsT0FBQUEsR0FFakMsT0FEQUgsRUFBQVUsRUFBQUUsRUFBQSxJQUFBQSxHQUNBQSxHQUlBWixFQUFBYSxFQUFBLFNBQUFpQixFQUFBQyxHQUFzRCxPQUFBakIsT0FBQWtCLFVBQUFDLGVBQUExQixLQUFBdUIsRUFBQUMsSUFHdEQvQixFQUFBa0MsRUFBQSxHQUlBbEMsSUFBQW1DLEVBQUEsbUZDbEZBLE1BQUFDLEVBQUFwQyxFQUFBLEdBRUEsSUFBVXFDLEdBQVYsU0FBVUEsR0FDUixNQUFNQyxFQUEyQixtQkFFM0JDLEdBQ0pDLFNBQVUsSUFBSUosRUFBQUssZUFBZSxNQUM3QkMsTUFBTyxJQUFJTixFQUFBSyxlQUFlLFVBR1pKLEVBQUFNLFdBQWhCLFdBQ3dCLG9CQUFYQyxRQUEyQkEsT0FBT04sR0FPM0NNLE9BQU9OLEdBQWlCeEIsT0FBQStCLFVBQ25CRCxPQUFPTixHQUNQQyxHQU5MSyxPQUFPTixHQUFpQnhCLE9BQUErQixVQUNuQk4sSUFiWCxDQUFVRixXQXdCVkEsRUFBT00sNEZDMUJQekMsRUFBQXVDLHFCQVVFSyxZQUFtQkMsR0FFakIsR0FYZUMsS0FBQUMsU0FBVyxJQUFJQyxJQUNmRixLQUFBRyxZQUFjLElBQUlDLE1BRTNCSixLQUFBSyxjQUFlLEVBRU5MLEtBQUFNLFlBQ2ZDLFlBQWFDLFlBQWFDLGFBQWNDLGlCQUFrQkMsa0JBQW1CQyxhQUFjQyxzQkFjdEZiLEtBQUFjLElBQU0sRUFBQ0MsRUFBMkJDLEtBQ3ZDLElBQUtELEVBQVEsTUFBTSxJQUFJRSxNQUFNLG1CQUM3QixJQUFJakIsS0FBS0MsU0FBU2hDLElBQUk4QyxFQUFPRyxJQUE3QixDQUVBLElBQUlDLEVBTUosS0FKRUEsRUFERUgsRUFDUUQsRUFBT0ssV0FBV3BCLEtBQUtELFlBQWFpQixHQUVwQ0QsRUFBT0ssV0FBV3BCLEtBQUtELGNBRXJCLE1BQU0sSUFBSWtCLE1BQU0sb0JBRTlCakIsS0FBS0MsU0FBU29CLElBQUlOLEVBQU9HLEdBQUlDLE1BR3hCbkIsS0FBQXNCLE9BQVMsQ0FBQ1AsSUFDZmYsS0FBS0MsU0FBU3NCLE9BQU9SLEVBQU9HLE1BR3ZCbEIsS0FBQXdCLFlBQWMsRUFBQ1QsRUFBMkJoQyxFQUFrQlYsS0FDakQyQixLQUFLb0IsV0FBV0wsR0FDeEJoQyxHQUFZaUIsS0FBS3lCLFlBQVkxQyxFQUFVVixLQUcxQzJCLEtBQUEwQixZQUFjLEVBQUNYLEVBQTJCaEMsS0FDL0MsTUFBTW9DLEVBQVVuQixLQUFLb0IsV0FBV0wsR0FDaEMsT0FBT2YsS0FBSzJCLFVBQVVSLEVBQVFwQyxNQUd6QmlCLEtBQUF6QyxLQUFPLEVBQUN3RCxFQUEyQmEsRUFBZ0JDLEtBQ3hELE1BQU1WLEVBQVVuQixLQUFLb0IsV0FBV0wsR0FDaEMsT0FBT2YsS0FBSzJCLFVBQVUzQixLQUFLOEIsV0FBV0YsR0FBUUcsTUFBTVosT0FBaUJhLEdBQVJILEVBQW9CQSxFQUFLSSxJQUFLNUQsR0FBVTJCLEtBQUt5QixZQUFZRyxFQUFRdkQsV0FHeEgyQixLQUFBb0IsV0FBYSxDQUFDTCxJQUNwQixJQUFLQSxFQUFRLE1BQU0sSUFBSUUsTUFBTSxtQkFFN0IsTUFBTUUsRUFBVW5CLEtBQUtDLFNBQVNoQyxJQUFJOEMsRUFBT0csSUFDekMsSUFBS0MsRUFBUyxNQUFNLElBQUlGLE1BQU0sb0JBRTlCLE9BQU9FLElBR0RuQixLQUFBeUIsWUFBYyxFQUFDRyxFQUFnQjlDLElBQ2hDa0IsS0FBS0ssYUFFTnZCLEVBQU9HLGVBQWUsY0FBZ0JILEVBQU9HLGVBQWUsTUFDdERlLEtBQUtHLFlBQVlyQixFQUFXLElBQzNCc0IsTUFBTThCLFFBQVFwRCxLQUFZOEMsRUFBT08sU0FBUyxLQUM1Q0MsVUFBVUMsTUFBT3ZELEdBRWpCQSxFQVBzQkEsR0FVekJrQixLQUFBMkIsVUFBWSxDQUFDN0MsSUFDbkIsSUFBS2tCLEtBQUtLLGFBQWMsT0FBT3ZCLEVBRS9CLE1BQU13RCxFQUFPdEMsS0FBS00sV0FBV2lDLEtBQU1ELEdBQVN4RCxhQUFrQndELEdBQzlELFFBQVlOLEdBQVJNLEVBQW1CLENBQ3JCLE1BQU1wQixFQUFLbEIsS0FBS0csWUFBWXFDLE9BRzVCLE9BRkF4QyxLQUFLRyxZQUFZc0MsS0FBSzNELElBR3BCNEQsVUFBV0osRUFBSzNFLEtBQ2hCdUQsR0FBSUEsR0FHTixPQUFPcEMsSUE3RVRrQixLQUFLRCxZQUFjQSxFQUNDLE9BQWhCQSxFQUNGQyxLQUFLOEIsV0FBYWEseUJBQXlCM0QsY0FDeEMsSUFBb0IsVUFBaEJlLEdBQTJDLHVCQUFoQkEsRUFJbEMsTUFBTSxJQUFJa0IsK0JBQStCbEIsS0FIekNDLEtBQUs4QixXQUFhYyxzQkFBc0I1RCxVQUN4Q2dCLEtBQUtLLGNBQWUiLCJmaWxlIjoiYmxhem9yLmV4dGVuc2lvbnMuY2FudmFzLmpzIiwic291cmNlc0NvbnRlbnQiOlsiIFx0Ly8gVGhlIG1vZHVsZSBjYWNoZVxuIFx0dmFyIGluc3RhbGxlZE1vZHVsZXMgPSB7fTtcblxuIFx0Ly8gVGhlIHJlcXVpcmUgZnVuY3Rpb25cbiBcdGZ1bmN0aW9uIF9fd2VicGFja19yZXF1aXJlX18obW9kdWxlSWQpIHtcblxuIFx0XHQvLyBDaGVjayBpZiBtb2R1bGUgaXMgaW4gY2FjaGVcbiBcdFx0aWYoaW5zdGFsbGVkTW9kdWxlc1ttb2R1bGVJZF0pIHtcbiBcdFx0XHRyZXR1cm4gaW5zdGFsbGVkTW9kdWxlc1ttb2R1bGVJZF0uZXhwb3J0cztcbiBcdFx0fVxuIFx0XHQvLyBDcmVhdGUgYSBuZXcgbW9kdWxlIChhbmQgcHV0IGl0IGludG8gdGhlIGNhY2hlKVxuIFx0XHR2YXIgbW9kdWxlID0gaW5zdGFsbGVkTW9kdWxlc1ttb2R1bGVJZF0gPSB7XG4gXHRcdFx0aTogbW9kdWxlSWQsXG4gXHRcdFx0bDogZmFsc2UsXG4gXHRcdFx0ZXhwb3J0czoge31cbiBcdFx0fTtcblxuIFx0XHQvLyBFeGVjdXRlIHRoZSBtb2R1bGUgZnVuY3Rpb25cbiBcdFx0bW9kdWxlc1ttb2R1bGVJZF0uY2FsbChtb2R1bGUuZXhwb3J0cywgbW9kdWxlLCBtb2R1bGUuZXhwb3J0cywgX193ZWJwYWNrX3JlcXVpcmVfXyk7XG5cbiBcdFx0Ly8gRmxhZyB0aGUgbW9kdWxlIGFzIGxvYWRlZFxuIFx0XHRtb2R1bGUubCA9IHRydWU7XG5cbiBcdFx0Ly8gUmV0dXJuIHRoZSBleHBvcnRzIG9mIHRoZSBtb2R1bGVcbiBcdFx0cmV0dXJuIG1vZHVsZS5leHBvcnRzO1xuIFx0fVxuXG5cbiBcdC8vIGV4cG9zZSB0aGUgbW9kdWxlcyBvYmplY3QgKF9fd2VicGFja19tb2R1bGVzX18pXG4gXHRfX3dlYnBhY2tfcmVxdWlyZV9fLm0gPSBtb2R1bGVzO1xuXG4gXHQvLyBleHBvc2UgdGhlIG1vZHVsZSBjYWNoZVxuIFx0X193ZWJwYWNrX3JlcXVpcmVfXy5jID0gaW5zdGFsbGVkTW9kdWxlcztcblxuIFx0Ly8gZGVmaW5lIGdldHRlciBmdW5jdGlvbiBmb3IgaGFybW9ueSBleHBvcnRzXG4gXHRfX3dlYnBhY2tfcmVxdWlyZV9fLmQgPSBmdW5jdGlvbihleHBvcnRzLCBuYW1lLCBnZXR0ZXIpIHtcbiBcdFx0aWYoIV9fd2VicGFja19yZXF1aXJlX18ubyhleHBvcnRzLCBuYW1lKSkge1xuIFx0XHRcdE9iamVjdC5kZWZpbmVQcm9wZXJ0eShleHBvcnRzLCBuYW1lLCB7IGVudW1lcmFibGU6IHRydWUsIGdldDogZ2V0dGVyIH0pO1xuIFx0XHR9XG4gXHR9O1xuXG4gXHQvLyBkZWZpbmUgX19lc01vZHVsZSBvbiBleHBvcnRzXG4gXHRfX3dlYnBhY2tfcmVxdWlyZV9fLnIgPSBmdW5jdGlvbihleHBvcnRzKSB7XG4gXHRcdGlmKHR5cGVvZiBTeW1ib2wgIT09ICd1bmRlZmluZWQnICYmIFN5bWJvbC50b1N0cmluZ1RhZykge1xuIFx0XHRcdE9iamVjdC5kZWZpbmVQcm9wZXJ0eShleHBvcnRzLCBTeW1ib2wudG9TdHJpbmdUYWcsIHsgdmFsdWU6ICdNb2R1bGUnIH0pO1xuIFx0XHR9XG4gXHRcdE9iamVjdC5kZWZpbmVQcm9wZXJ0eShleHBvcnRzLCAnX19lc01vZHVsZScsIHsgdmFsdWU6IHRydWUgfSk7XG4gXHR9O1xuXG4gXHQvLyBjcmVhdGUgYSBmYWtlIG5hbWVzcGFjZSBvYmplY3RcbiBcdC8vIG1vZGUgJiAxOiB2YWx1ZSBpcyBhIG1vZHVsZSBpZCwgcmVxdWlyZSBpdFxuIFx0Ly8gbW9kZSAmIDI6IG1lcmdlIGFsbCBwcm9wZXJ0aWVzIG9mIHZhbHVlIGludG8gdGhlIG5zXG4gXHQvLyBtb2RlICYgNDogcmV0dXJuIHZhbHVlIHdoZW4gYWxyZWFkeSBucyBvYmplY3RcbiBcdC8vIG1vZGUgJiA4fDE6IGJlaGF2ZSBsaWtlIHJlcXVpcmVcbiBcdF9fd2VicGFja19yZXF1aXJlX18udCA9IGZ1bmN0aW9uKHZhbHVlLCBtb2RlKSB7XG4gXHRcdGlmKG1vZGUgJiAxKSB2YWx1ZSA9IF9fd2VicGFja19yZXF1aXJlX18odmFsdWUpO1xuIFx0XHRpZihtb2RlICYgOCkgcmV0dXJuIHZhbHVlO1xuIFx0XHRpZigobW9kZSAmIDQpICYmIHR5cGVvZiB2YWx1ZSA9PT0gJ29iamVjdCcgJiYgdmFsdWUgJiYgdmFsdWUuX19lc01vZHVsZSkgcmV0dXJuIHZhbHVlO1xuIFx0XHR2YXIgbnMgPSBPYmplY3QuY3JlYXRlKG51bGwpO1xuIFx0XHRfX3dlYnBhY2tfcmVxdWlyZV9fLnIobnMpO1xuIFx0XHRPYmplY3QuZGVmaW5lUHJvcGVydHkobnMsICdkZWZhdWx0JywgeyBlbnVtZXJhYmxlOiB0cnVlLCB2YWx1ZTogdmFsdWUgfSk7XG4gXHRcdGlmKG1vZGUgJiAyICYmIHR5cGVvZiB2YWx1ZSAhPSAnc3RyaW5nJykgZm9yKHZhciBrZXkgaW4gdmFsdWUpIF9fd2VicGFja19yZXF1aXJlX18uZChucywga2V5LCBmdW5jdGlvbihrZXkpIHsgcmV0dXJuIHZhbHVlW2tleV07IH0uYmluZChudWxsLCBrZXkpKTtcbiBcdFx0cmV0dXJuIG5zO1xuIFx0fTtcblxuIFx0Ly8gZ2V0RGVmYXVsdEV4cG9ydCBmdW5jdGlvbiBmb3IgY29tcGF0aWJpbGl0eSB3aXRoIG5vbi1oYXJtb255IG1vZHVsZXNcbiBcdF9fd2VicGFja19yZXF1aXJlX18ubiA9IGZ1bmN0aW9uKG1vZHVsZSkge1xuIFx0XHR2YXIgZ2V0dGVyID0gbW9kdWxlICYmIG1vZHVsZS5fX2VzTW9kdWxlID9cbiBcdFx0XHRmdW5jdGlvbiBnZXREZWZhdWx0KCkgeyByZXR1cm4gbW9kdWxlWydkZWZhdWx0J107IH0gOlxuIFx0XHRcdGZ1bmN0aW9uIGdldE1vZHVsZUV4cG9ydHMoKSB7IHJldHVybiBtb2R1bGU7IH07XG4gXHRcdF9fd2VicGFja19yZXF1aXJlX18uZChnZXR0ZXIsICdhJywgZ2V0dGVyKTtcbiBcdFx0cmV0dXJuIGdldHRlcjtcbiBcdH07XG5cbiBcdC8vIE9iamVjdC5wcm90b3R5cGUuaGFzT3duUHJvcGVydHkuY2FsbFxuIFx0X193ZWJwYWNrX3JlcXVpcmVfXy5vID0gZnVuY3Rpb24ob2JqZWN0LCBwcm9wZXJ0eSkgeyByZXR1cm4gT2JqZWN0LnByb3RvdHlwZS5oYXNPd25Qcm9wZXJ0eS5jYWxsKG9iamVjdCwgcHJvcGVydHkpOyB9O1xuXG4gXHQvLyBfX3dlYnBhY2tfcHVibGljX3BhdGhfX1xuIFx0X193ZWJwYWNrX3JlcXVpcmVfXy5wID0gXCJcIjtcblxuXG4gXHQvLyBMb2FkIGVudHJ5IG1vZHVsZSBhbmQgcmV0dXJuIGV4cG9ydHNcbiBcdHJldHVybiBfX3dlYnBhY2tfcmVxdWlyZV9fKF9fd2VicGFja19yZXF1aXJlX18ucyA9IDApO1xuIiwiaW1wb3J0IHsgQ29udGV4dE1hbmFnZXIgfSBmcm9tICcuL0NhbnZhc0NvbnRleHRNYW5hZ2VyJztcclxuXHJcbm5hbWVzcGFjZSBDYW52YXMge1xyXG4gIGNvbnN0IGJsYXpvckV4dGVuc2lvbnM6IHN0cmluZyA9ICdCbGF6b3JFeHRlbnNpb25zJztcclxuICAvLyBkZWZpbmUgd2hhdCB0aGlzIGV4dGVuc2lvbiBhZGRzIHRvIHRoZSB3aW5kb3cgb2JqZWN0IGluc2lkZSBCbGF6b3JFeHRlbnNpb25zXHJcbiAgY29uc3QgZXh0ZW5zaW9uT2JqZWN0ID0ge1xyXG4gICAgQ2FudmFzMmQ6IG5ldyBDb250ZXh0TWFuYWdlcihcIjJkXCIpLFxyXG4gICAgV2ViR0w6IG5ldyBDb250ZXh0TWFuYWdlcihcIndlYmdsXCIpXHJcbiAgfTtcclxuXHJcbiAgZXhwb3J0IGZ1bmN0aW9uIGluaXRpYWxpemUoKTogdm9pZCB7XHJcbiAgICBpZiAodHlwZW9mIHdpbmRvdyAhPT0gJ3VuZGVmaW5lZCcgJiYgIXdpbmRvd1tibGF6b3JFeHRlbnNpb25zXSkge1xyXG4gICAgICAvLyB3aGVuIHRoZSBsaWJyYXJ5IGlzIGxvYWRlZCBpbiBhIGJyb3dzZXIgdmlhIGEgPHNjcmlwdD4gZWxlbWVudCwgbWFrZSB0aGVcclxuICAgICAgLy8gZm9sbG93aW5nIEFQSXMgYXZhaWxhYmxlIGluIGdsb2JhbCBzY29wZSBmb3IgaW52b2NhdGlvbiBmcm9tIEpTXHJcbiAgICAgIHdpbmRvd1tibGF6b3JFeHRlbnNpb25zXSA9IHtcclxuICAgICAgICAuLi5leHRlbnNpb25PYmplY3RcclxuICAgICAgfTtcclxuICAgIH0gZWxzZSB7XHJcbiAgICAgIHdpbmRvd1tibGF6b3JFeHRlbnNpb25zXSA9IHtcclxuICAgICAgICAuLi53aW5kb3dbYmxhem9yRXh0ZW5zaW9uc10sXHJcbiAgICAgICAgLi4uZXh0ZW5zaW9uT2JqZWN0XHJcbiAgICAgIH07XHJcbiAgICB9XHJcbiAgfVxyXG59XHJcblxyXG5DYW52YXMuaW5pdGlhbGl6ZSgpO1xyXG4iLCJleHBvcnQgY2xhc3MgQ29udGV4dE1hbmFnZXIge1xyXG4gIHByaXZhdGUgcmVhZG9ubHkgY29udGV4dHMgPSBuZXcgTWFwPHN0cmluZywgYW55PigpO1xyXG4gIHByaXZhdGUgcmVhZG9ubHkgd2ViR0xPYmplY3QgPSBuZXcgQXJyYXk8YW55PigpO1xyXG4gIHByaXZhdGUgcmVhZG9ubHkgY29udGV4dE5hbWU6IHN0cmluZztcclxuICBwcml2YXRlIHdlYkdMQ29udGV4dCA9IGZhbHNlO1xyXG4gIHByaXZhdGUgcmVhZG9ubHkgcHJvdG90eXBlczogYW55O1xyXG4gIHByaXZhdGUgcmVhZG9ubHkgd2ViR0xUeXBlcyA9IFtcclxuICAgIFdlYkdMQnVmZmVyLCBXZWJHTFNoYWRlciwgV2ViR0xQcm9ncmFtLCBXZWJHTEZyYW1lYnVmZmVyLCBXZWJHTFJlbmRlcmJ1ZmZlciwgV2ViR0xUZXh0dXJlLCBXZWJHTFVuaWZvcm1Mb2NhdGlvblxyXG4gIF07XHJcblxyXG4gIHB1YmxpYyBjb25zdHJ1Y3Rvcihjb250ZXh0TmFtZTogc3RyaW5nKSB7XHJcbiAgICB0aGlzLmNvbnRleHROYW1lID0gY29udGV4dE5hbWU7XHJcbiAgICBpZiAoY29udGV4dE5hbWUgPT09IFwiMmRcIilcclxuICAgICAgdGhpcy5wcm90b3R5cGVzID0gQ2FudmFzUmVuZGVyaW5nQ29udGV4dDJELnByb3RvdHlwZTtcclxuICAgIGVsc2UgaWYgKGNvbnRleHROYW1lID09PSBcIndlYmdsXCIgfHwgY29udGV4dE5hbWUgPT09IFwiZXhwZXJpbWVudGFsLXdlYmdsXCIpIHtcclxuICAgICAgdGhpcy5wcm90b3R5cGVzID0gV2ViR0xSZW5kZXJpbmdDb250ZXh0LnByb3RvdHlwZTtcclxuICAgICAgdGhpcy53ZWJHTENvbnRleHQgPSB0cnVlO1xyXG4gICAgfSBlbHNlXHJcbiAgICAgIHRocm93IG5ldyBFcnJvcihgSW52YWxpZCBjb250ZXh0IG5hbWU6ICR7Y29udGV4dE5hbWV9YCk7XHJcbiAgfVxyXG5cclxuICBwdWJsaWMgYWRkID0gKGNhbnZhczogSFRNTENhbnZhc0VsZW1lbnQsIHBhcmFtZXRlcnM6IGFueSkgPT4ge1xyXG4gICAgaWYgKCFjYW52YXMpIHRocm93IG5ldyBFcnJvcignSW52YWxpZCBjYW52YXMuJyk7XHJcbiAgICBpZiAodGhpcy5jb250ZXh0cy5nZXQoY2FudmFzLmlkKSkgcmV0dXJuO1xyXG5cclxuICAgIHZhciBjb250ZXh0O1xyXG4gICAgaWYgKHBhcmFtZXRlcnMpXHJcbiAgICAgIGNvbnRleHQgPSBjYW52YXMuZ2V0Q29udGV4dCh0aGlzLmNvbnRleHROYW1lLCBwYXJhbWV0ZXJzKTtcclxuICAgIGVsc2VcclxuICAgICAgY29udGV4dCA9IGNhbnZhcy5nZXRDb250ZXh0KHRoaXMuY29udGV4dE5hbWUpO1xyXG5cclxuICAgIGlmICghY29udGV4dCkgdGhyb3cgbmV3IEVycm9yKCdJbnZhbGlkIGNvbnRleHQuJyk7XHJcblxyXG4gICAgdGhpcy5jb250ZXh0cy5zZXQoY2FudmFzLmlkLCBjb250ZXh0KTtcclxuICB9XHJcblxyXG4gIHB1YmxpYyByZW1vdmUgPSAoY2FudmFzOiBIVE1MQ2FudmFzRWxlbWVudCkgPT4ge1xyXG4gICAgdGhpcy5jb250ZXh0cy5kZWxldGUoY2FudmFzLmlkKTtcclxuICB9XHJcblxyXG4gIHB1YmxpYyBzZXRQcm9wZXJ0eSA9IChjYW52YXM6IEhUTUxDYW52YXNFbGVtZW50LCBwcm9wZXJ0eTogc3RyaW5nLCB2YWx1ZTogYW55KSA9PiB7XHJcbiAgICBjb25zdCBjb250ZXh0ID0gdGhpcy5nZXRDb250ZXh0KGNhbnZhcyk7XHJcbiAgICBjb250ZXh0W3Byb3BlcnR5XSA9IHRoaXMuZGVzZXJpYWxpemUocHJvcGVydHksIHZhbHVlKTtcclxuICB9XHJcblxyXG4gIHB1YmxpYyBnZXRQcm9wZXJ0eSA9IChjYW52YXM6IEhUTUxDYW52YXNFbGVtZW50LCBwcm9wZXJ0eTogc3RyaW5nKSA9PiB7XHJcbiAgICBjb25zdCBjb250ZXh0ID0gdGhpcy5nZXRDb250ZXh0KGNhbnZhcyk7XHJcbiAgICByZXR1cm4gdGhpcy5zZXJpYWxpemUoY29udGV4dFtwcm9wZXJ0eV0pO1xyXG4gIH1cclxuXHJcbiAgcHVibGljIGNhbGwgPSAoY2FudmFzOiBIVE1MQ2FudmFzRWxlbWVudCwgbWV0aG9kOiBzdHJpbmcsIGFyZ3M6IGFueSkgPT4ge1xyXG4gICAgY29uc3QgY29udGV4dCA9IHRoaXMuZ2V0Q29udGV4dChjYW52YXMpO1xyXG4gICAgcmV0dXJuIHRoaXMuc2VyaWFsaXplKHRoaXMucHJvdG90eXBlc1ttZXRob2RdLmFwcGx5KGNvbnRleHQsIGFyZ3MgIT0gdW5kZWZpbmVkID8gYXJncy5tYXAoKHZhbHVlKSA9PiB0aGlzLmRlc2VyaWFsaXplKG1ldGhvZCwgdmFsdWUpKSA6IFtdKSk7XHJcbiAgfVxyXG5cclxuICBwcml2YXRlIGdldENvbnRleHQgPSAoY2FudmFzOiBIVE1MQ2FudmFzRWxlbWVudCkgPT4ge1xyXG4gICAgaWYgKCFjYW52YXMpIHRocm93IG5ldyBFcnJvcignSW52YWxpZCBjYW52YXMuJyk7XHJcblxyXG4gICAgY29uc3QgY29udGV4dCA9IHRoaXMuY29udGV4dHMuZ2V0KGNhbnZhcy5pZCk7XHJcbiAgICBpZiAoIWNvbnRleHQpIHRocm93IG5ldyBFcnJvcignSW52YWxpZCBjb250ZXh0LicpO1xyXG5cclxuICAgIHJldHVybiBjb250ZXh0O1xyXG4gIH1cclxuXHJcbiAgcHJpdmF0ZSBkZXNlcmlhbGl6ZSA9IChtZXRob2Q6IHN0cmluZywgb2JqZWN0OiBhbnkpID0+IHtcclxuICAgIGlmICghdGhpcy53ZWJHTENvbnRleHQpIHJldHVybiBvYmplY3Q7IC8vZGVzZXJpYWxpemF0aW9uIG9ubHkgbmVlZHMgdG8gaGFwcGVuIGZvciB3ZWJHTFxyXG5cclxuICAgIGlmIChvYmplY3QuaGFzT3duUHJvcGVydHkoXCJ3ZWJHTFR5cGVcIikgJiYgb2JqZWN0Lmhhc093blByb3BlcnR5KFwiaWRcIikpIHtcclxuICAgICAgcmV0dXJuICh0aGlzLndlYkdMT2JqZWN0W29iamVjdFtcImlkXCJdXSk7XHJcbiAgICB9IGVsc2UgaWYgKEFycmF5LmlzQXJyYXkob2JqZWN0KSAmJiAhbWV0aG9kLmVuZHNXaXRoKFwidlwiKSkge1xyXG4gICAgICByZXR1cm4gSW50OEFycmF5Lm9mKC4uLihvYmplY3QgYXMgbnVtYmVyW10pKTtcclxuICAgIH0gZWxzZVxyXG4gICAgICByZXR1cm4gb2JqZWN0O1xyXG4gIH1cclxuXHJcbiAgcHJpdmF0ZSBzZXJpYWxpemUgPSAob2JqZWN0OiBhbnkpID0+IHtcclxuICAgIGlmICghdGhpcy53ZWJHTENvbnRleHQpIHJldHVybiBvYmplY3Q7IC8vc2VyaWFsaXphdGlvbiBvbmx5IG5lZWRzIHRvIGhhcHBlbiBmb3Igd2ViR0xcclxuXHJcbiAgICBjb25zdCB0eXBlID0gdGhpcy53ZWJHTFR5cGVzLmZpbmQoKHR5cGUpID0+IG9iamVjdCBpbnN0YW5jZW9mIHR5cGUpO1xyXG4gICAgaWYgKHR5cGUgIT0gdW5kZWZpbmVkKSB7XHJcbiAgICAgIGNvbnN0IGlkID0gdGhpcy53ZWJHTE9iamVjdC5sZW5ndGg7XHJcbiAgICAgIHRoaXMud2ViR0xPYmplY3QucHVzaChvYmplY3QpO1xyXG5cclxuICAgICAgcmV0dXJuIHtcclxuICAgICAgICB3ZWJHTFR5cGU6IHR5cGUubmFtZSxcclxuICAgICAgICBpZDogaWRcclxuICAgICAgfTtcclxuICAgIH0gZWxzZVxyXG4gICAgICByZXR1cm4gb2JqZWN0O1xyXG4gIH1cclxufVxyXG4iXSwic291cmNlUm9vdCI6IiJ9 \ No newline at end of file +//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIndlYnBhY2s6Ly8vd2VicGFjay9ib290c3RyYXAiLCJ3ZWJwYWNrOi8vLy4vc3JjL0luaXRpYWxpemVDYW52YXMudHMiLCJ3ZWJwYWNrOi8vLy4vc3JjL0NhbnZhc0NvbnRleHRNYW5hZ2VyLnRzIl0sIm5hbWVzIjpbImluc3RhbGxlZE1vZHVsZXMiLCJfX3dlYnBhY2tfcmVxdWlyZV9fIiwibW9kdWxlSWQiLCJleHBvcnRzIiwibW9kdWxlIiwiaSIsImwiLCJtb2R1bGVzIiwiY2FsbCIsIm0iLCJjIiwiZCIsIm5hbWUiLCJnZXR0ZXIiLCJvIiwiT2JqZWN0IiwiZGVmaW5lUHJvcGVydHkiLCJlbnVtZXJhYmxlIiwiZ2V0IiwiciIsIlN5bWJvbCIsInRvU3RyaW5nVGFnIiwidmFsdWUiLCJ0IiwibW9kZSIsIl9fZXNNb2R1bGUiLCJucyIsImNyZWF0ZSIsImtleSIsImJpbmQiLCJuIiwib2JqZWN0IiwicHJvcGVydHkiLCJwcm90b3R5cGUiLCJoYXNPd25Qcm9wZXJ0eSIsInAiLCJzIiwiQ2FudmFzQ29udGV4dE1hbmFnZXJfMSIsIkNhbnZhcyIsImJsYXpvckV4dGVuc2lvbnMiLCJleHRlbnNpb25PYmplY3QiLCJDYW52YXMyZCIsIkNvbnRleHRNYW5hZ2VyIiwiV2ViR0wiLCJpbml0aWFsaXplIiwid2luZG93IiwiYXNzaWduIiwiW29iamVjdCBPYmplY3RdIiwiY29udGV4dE5hbWUiLCJ0aGlzIiwiY29udGV4dHMiLCJNYXAiLCJ3ZWJHTE9iamVjdCIsIkFycmF5Iiwid2ViR0xDb250ZXh0Iiwid2ViR0xUeXBlcyIsIldlYkdMQnVmZmVyIiwiV2ViR0xTaGFkZXIiLCJXZWJHTFByb2dyYW0iLCJXZWJHTEZyYW1lYnVmZmVyIiwiV2ViR0xSZW5kZXJidWZmZXIiLCJXZWJHTFRleHR1cmUiLCJXZWJHTFVuaWZvcm1Mb2NhdGlvbiIsImFkZCIsImNhbnZhcyIsInBhcmFtZXRlcnMiLCJFcnJvciIsImlkIiwiY29udGV4dCIsImdldENvbnRleHQiLCJzZXQiLCJyZW1vdmUiLCJkZWxldGUiLCJzZXRQcm9wZXJ0eSIsImRlc2VyaWFsaXplIiwiZ2V0UHJvcGVydHkiLCJzZXJpYWxpemUiLCJtZXRob2QiLCJhcmdzIiwicHJvdG90eXBlcyIsImFwcGx5IiwidW5kZWZpbmVkIiwibWFwIiwiaXNBcnJheSIsImVuZHNXaXRoIiwiSW50OEFycmF5Iiwib2YiLCJ0eXBlIiwiZmluZCIsImxlbmd0aCIsInB1c2giLCJ3ZWJHTFR5cGUiLCJDYW52YXNSZW5kZXJpbmdDb250ZXh0MkQiLCJXZWJHTFJlbmRlcmluZ0NvbnRleHQiXSwibWFwcGluZ3MiOiJhQUNBLElBQUFBLEtBR0EsU0FBQUMsRUFBQUMsR0FHQSxHQUFBRixFQUFBRSxHQUNBLE9BQUFGLEVBQUFFLEdBQUFDLFFBR0EsSUFBQUMsRUFBQUosRUFBQUUsSUFDQUcsRUFBQUgsRUFDQUksR0FBQSxFQUNBSCxZQVVBLE9BTkFJLEVBQUFMLEdBQUFNLEtBQUFKLEVBQUFELFFBQUFDLElBQUFELFFBQUFGLEdBR0FHLEVBQUFFLEdBQUEsRUFHQUYsRUFBQUQsUUFLQUYsRUFBQVEsRUFBQUYsRUFHQU4sRUFBQVMsRUFBQVYsRUFHQUMsRUFBQVUsRUFBQSxTQUFBUixFQUFBUyxFQUFBQyxHQUNBWixFQUFBYSxFQUFBWCxFQUFBUyxJQUNBRyxPQUFBQyxlQUFBYixFQUFBUyxHQUEwQ0ssWUFBQSxFQUFBQyxJQUFBTCxLQUsxQ1osRUFBQWtCLEVBQUEsU0FBQWhCLEdBQ0Esb0JBQUFpQixlQUFBQyxhQUNBTixPQUFBQyxlQUFBYixFQUFBaUIsT0FBQUMsYUFBd0RDLE1BQUEsV0FFeERQLE9BQUFDLGVBQUFiLEVBQUEsY0FBaURtQixPQUFBLEtBUWpEckIsRUFBQXNCLEVBQUEsU0FBQUQsRUFBQUUsR0FFQSxHQURBLEVBQUFBLElBQUFGLEVBQUFyQixFQUFBcUIsSUFDQSxFQUFBRSxFQUFBLE9BQUFGLEVBQ0EsS0FBQUUsR0FBQSxpQkFBQUYsUUFBQUcsV0FBQSxPQUFBSCxFQUNBLElBQUFJLEVBQUFYLE9BQUFZLE9BQUEsTUFHQSxHQUZBMUIsRUFBQWtCLEVBQUFPLEdBQ0FYLE9BQUFDLGVBQUFVLEVBQUEsV0FBeUNULFlBQUEsRUFBQUssVUFDekMsRUFBQUUsR0FBQSxpQkFBQUYsRUFBQSxRQUFBTSxLQUFBTixFQUFBckIsRUFBQVUsRUFBQWUsRUFBQUUsRUFBQSxTQUFBQSxHQUFnSCxPQUFBTixFQUFBTSxJQUFxQkMsS0FBQSxLQUFBRCxJQUNySSxPQUFBRixHQUlBekIsRUFBQTZCLEVBQUEsU0FBQTFCLEdBQ0EsSUFBQVMsRUFBQVQsS0FBQXFCLFdBQ0EsV0FBMkIsT0FBQXJCLEVBQUEsU0FDM0IsV0FBaUMsT0FBQUEsR0FFakMsT0FEQUgsRUFBQVUsRUFBQUUsRUFBQSxJQUFBQSxHQUNBQSxHQUlBWixFQUFBYSxFQUFBLFNBQUFpQixFQUFBQyxHQUFzRCxPQUFBakIsT0FBQWtCLFVBQUFDLGVBQUExQixLQUFBdUIsRUFBQUMsSUFHdEQvQixFQUFBa0MsRUFBQSxHQUlBbEMsSUFBQW1DLEVBQUEsbUZDbEZBLE1BQUFDLEVBQUFwQyxFQUFBLEdBRUEsSUFBVXFDLEdBQVYsU0FBVUEsR0FDUixNQUFNQyxFQUEyQixtQkFFM0JDLEdBQ0pDLFNBQVUsSUFBSUosRUFBQUssZUFBZSxNQUM3QkMsTUFBTyxJQUFJTixFQUFBSyxlQUFlLFVBR1pKLEVBQUFNLFdBQWhCLFdBQ3dCLG9CQUFYQyxRQUEyQkEsT0FBT04sR0FPM0NNLE9BQU9OLEdBQWlCeEIsT0FBQStCLFVBQ25CRCxPQUFPTixHQUNQQyxHQU5MSyxPQUFPTixHQUFpQnhCLE9BQUErQixVQUNuQk4sSUFiWCxDQUFVRixXQXdCVkEsRUFBT00sNEZDMUJQekMsRUFBQXVDLHFCQVVFSyxZQUFtQkMsR0FFakIsR0FYZUMsS0FBQUMsU0FBVyxJQUFJQyxJQUNmRixLQUFBRyxZQUFjLElBQUlDLE1BRTNCSixLQUFBSyxjQUFlLEVBRU5MLEtBQUFNLFlBQ2ZDLFlBQWFDLFlBQWFDLGFBQWNDLGlCQUFrQkMsa0JBQW1CQyxhQUFjQyxzQkFjdEZiLEtBQUFjLElBQU0sRUFBQ0MsRUFBMkJDLEtBQ3ZDLElBQUtELEVBQVEsTUFBTSxJQUFJRSxNQUFNLG1CQUM3QixJQUFJakIsS0FBS0MsU0FBU2hDLElBQUk4QyxFQUFPRyxJQUE3QixDQUVBLElBQUlDLEVBTUosS0FKRUEsRUFERUgsRUFDUUQsRUFBT0ssV0FBV3BCLEtBQUtELFlBQWFpQixHQUVwQ0QsRUFBT0ssV0FBV3BCLEtBQUtELGNBRXJCLE1BQU0sSUFBSWtCLE1BQU0sb0JBRTlCakIsS0FBS0MsU0FBU29CLElBQUlOLEVBQU9HLEdBQUlDLE1BR3hCbkIsS0FBQXNCLE9BQVMsQ0FBQ1AsSUFDZmYsS0FBS0MsU0FBU3NCLE9BQU9SLEVBQU9HLE1BR3ZCbEIsS0FBQXdCLFlBQWMsRUFBQ1QsRUFBMkJoQyxFQUFrQlYsS0FDakQyQixLQUFLb0IsV0FBV0wsR0FDeEJoQyxHQUFZaUIsS0FBS3lCLFlBQVkxQyxFQUFVVixLQUcxQzJCLEtBQUEwQixZQUFjLEVBQUNYLEVBQTJCaEMsS0FDL0MsTUFBTW9DLEVBQVVuQixLQUFLb0IsV0FBV0wsR0FDaEMsT0FBT2YsS0FBSzJCLFVBQVVSLEVBQVFwQyxNQUd6QmlCLEtBQUF6QyxLQUFPLEVBQUN3RCxFQUEyQmEsRUFBZ0JDLEtBQ3hELE1BQU1WLEVBQVVuQixLQUFLb0IsV0FBV0wsR0FDaEMsT0FBT2YsS0FBSzJCLFVBQVUzQixLQUFLOEIsV0FBV0YsR0FBUUcsTUFBTVosT0FBaUJhLEdBQVJILEVBQW9CQSxFQUFLSSxJQUFLNUQsR0FBVTJCLEtBQUt5QixZQUFZRyxFQUFRdkQsV0FHeEgyQixLQUFBb0IsV0FBYSxDQUFDTCxJQUNwQixJQUFLQSxFQUFRLE1BQU0sSUFBSUUsTUFBTSxtQkFFN0IsTUFBTUUsRUFBVW5CLEtBQUtDLFNBQVNoQyxJQUFJOEMsRUFBT0csSUFDekMsSUFBS0MsRUFBUyxNQUFNLElBQUlGLE1BQU0sb0JBRTlCLE9BQU9FLElBR0RuQixLQUFBeUIsWUFBYyxFQUFDRyxFQUFnQjlDLElBQ2hDa0IsS0FBS0ssYUFFTnZCLEVBQU9HLGVBQWUsY0FBZ0JILEVBQU9HLGVBQWUsTUFDdERlLEtBQUtHLFlBQVlyQixFQUFXLElBQzNCc0IsTUFBTThCLFFBQVFwRCxLQUFZOEMsRUFBT08sU0FBUyxLQUM1Q0MsVUFBVUMsTUFBT3ZELEdBRWpCQSxFQVBzQkEsR0FVekJrQixLQUFBMkIsVUFBWSxDQUFDN0MsSUFDbkIsSUFBS2tCLEtBQUtLLGFBQWMsT0FBT3ZCLEVBRS9CLE1BQU13RCxFQUFPdEMsS0FBS00sV0FBV2lDLEtBQU1ELEdBQVN4RCxhQUFrQndELEdBQzlELFFBQVlOLEdBQVJNLEVBQW1CLENBQ3JCLE1BQU1wQixFQUFLbEIsS0FBS0csWUFBWXFDLE9BRzVCLE9BRkF4QyxLQUFLRyxZQUFZc0MsS0FBSzNELElBR3BCNEQsVUFBV0osRUFBSzNFLEtBQ2hCdUQsR0FBSUEsR0FHTixPQUFPcEMsSUE3RVRrQixLQUFLRCxZQUFjQSxFQUNDLE9BQWhCQSxFQUNGQyxLQUFLOEIsV0FBYWEseUJBQXlCM0QsY0FDeEMsSUFBb0IsVUFBaEJlLEdBQTJDLHVCQUFoQkEsRUFJbEMsTUFBTSxJQUFJa0IsK0JBQStCbEIsS0FIekNDLEtBQUs4QixXQUFhYyxzQkFBc0I1RCxVQUN4Q2dCLEtBQUtLLGNBQWUiLCJmaWxlIjoiYmxhem9yLmV4dGVuc2lvbnMuY2FudmFzLmpzIiwic291cmNlc0NvbnRlbnQiOlsiIFx0Ly8gVGhlIG1vZHVsZSBjYWNoZVxuIFx0dmFyIGluc3RhbGxlZE1vZHVsZXMgPSB7fTtcblxuIFx0Ly8gVGhlIHJlcXVpcmUgZnVuY3Rpb25cbiBcdGZ1bmN0aW9uIF9fd2VicGFja19yZXF1aXJlX18obW9kdWxlSWQpIHtcblxuIFx0XHQvLyBDaGVjayBpZiBtb2R1bGUgaXMgaW4gY2FjaGVcbiBcdFx0aWYoaW5zdGFsbGVkTW9kdWxlc1ttb2R1bGVJZF0pIHtcbiBcdFx0XHRyZXR1cm4gaW5zdGFsbGVkTW9kdWxlc1ttb2R1bGVJZF0uZXhwb3J0cztcbiBcdFx0fVxuIFx0XHQvLyBDcmVhdGUgYSBuZXcgbW9kdWxlIChhbmQgcHV0IGl0IGludG8gdGhlIGNhY2hlKVxuIFx0XHR2YXIgbW9kdWxlID0gaW5zdGFsbGVkTW9kdWxlc1ttb2R1bGVJZF0gPSB7XG4gXHRcdFx0aTogbW9kdWxlSWQsXG4gXHRcdFx0bDogZmFsc2UsXG4gXHRcdFx0ZXhwb3J0czoge31cbiBcdFx0fTtcblxuIFx0XHQvLyBFeGVjdXRlIHRoZSBtb2R1bGUgZnVuY3Rpb25cbiBcdFx0bW9kdWxlc1ttb2R1bGVJZF0uY2FsbChtb2R1bGUuZXhwb3J0cywgbW9kdWxlLCBtb2R1bGUuZXhwb3J0cywgX193ZWJwYWNrX3JlcXVpcmVfXyk7XG5cbiBcdFx0Ly8gRmxhZyB0aGUgbW9kdWxlIGFzIGxvYWRlZFxuIFx0XHRtb2R1bGUubCA9IHRydWU7XG5cbiBcdFx0Ly8gUmV0dXJuIHRoZSBleHBvcnRzIG9mIHRoZSBtb2R1bGVcbiBcdFx0cmV0dXJuIG1vZHVsZS5leHBvcnRzO1xuIFx0fVxuXG5cbiBcdC8vIGV4cG9zZSB0aGUgbW9kdWxlcyBvYmplY3QgKF9fd2VicGFja19tb2R1bGVzX18pXG4gXHRfX3dlYnBhY2tfcmVxdWlyZV9fLm0gPSBtb2R1bGVzO1xuXG4gXHQvLyBleHBvc2UgdGhlIG1vZHVsZSBjYWNoZVxuIFx0X193ZWJwYWNrX3JlcXVpcmVfXy5jID0gaW5zdGFsbGVkTW9kdWxlcztcblxuIFx0Ly8gZGVmaW5lIGdldHRlciBmdW5jdGlvbiBmb3IgaGFybW9ueSBleHBvcnRzXG4gXHRfX3dlYnBhY2tfcmVxdWlyZV9fLmQgPSBmdW5jdGlvbihleHBvcnRzLCBuYW1lLCBnZXR0ZXIpIHtcbiBcdFx0aWYoIV9fd2VicGFja19yZXF1aXJlX18ubyhleHBvcnRzLCBuYW1lKSkge1xuIFx0XHRcdE9iamVjdC5kZWZpbmVQcm9wZXJ0eShleHBvcnRzLCBuYW1lLCB7IGVudW1lcmFibGU6IHRydWUsIGdldDogZ2V0dGVyIH0pO1xuIFx0XHR9XG4gXHR9O1xuXG4gXHQvLyBkZWZpbmUgX19lc01vZHVsZSBvbiBleHBvcnRzXG4gXHRfX3dlYnBhY2tfcmVxdWlyZV9fLnIgPSBmdW5jdGlvbihleHBvcnRzKSB7XG4gXHRcdGlmKHR5cGVvZiBTeW1ib2wgIT09ICd1bmRlZmluZWQnICYmIFN5bWJvbC50b1N0cmluZ1RhZykge1xuIFx0XHRcdE9iamVjdC5kZWZpbmVQcm9wZXJ0eShleHBvcnRzLCBTeW1ib2wudG9TdHJpbmdUYWcsIHsgdmFsdWU6ICdNb2R1bGUnIH0pO1xuIFx0XHR9XG4gXHRcdE9iamVjdC5kZWZpbmVQcm9wZXJ0eShleHBvcnRzLCAnX19lc01vZHVsZScsIHsgdmFsdWU6IHRydWUgfSk7XG4gXHR9O1xuXG4gXHQvLyBjcmVhdGUgYSBmYWtlIG5hbWVzcGFjZSBvYmplY3RcbiBcdC8vIG1vZGUgJiAxOiB2YWx1ZSBpcyBhIG1vZHVsZSBpZCwgcmVxdWlyZSBpdFxuIFx0Ly8gbW9kZSAmIDI6IG1lcmdlIGFsbCBwcm9wZXJ0aWVzIG9mIHZhbHVlIGludG8gdGhlIG5zXG4gXHQvLyBtb2RlICYgNDogcmV0dXJuIHZhbHVlIHdoZW4gYWxyZWFkeSBucyBvYmplY3RcbiBcdC8vIG1vZGUgJiA4fDE6IGJlaGF2ZSBsaWtlIHJlcXVpcmVcbiBcdF9fd2VicGFja19yZXF1aXJlX18udCA9IGZ1bmN0aW9uKHZhbHVlLCBtb2RlKSB7XG4gXHRcdGlmKG1vZGUgJiAxKSB2YWx1ZSA9IF9fd2VicGFja19yZXF1aXJlX18odmFsdWUpO1xuIFx0XHRpZihtb2RlICYgOCkgcmV0dXJuIHZhbHVlO1xuIFx0XHRpZigobW9kZSAmIDQpICYmIHR5cGVvZiB2YWx1ZSA9PT0gJ29iamVjdCcgJiYgdmFsdWUgJiYgdmFsdWUuX19lc01vZHVsZSkgcmV0dXJuIHZhbHVlO1xuIFx0XHR2YXIgbnMgPSBPYmplY3QuY3JlYXRlKG51bGwpO1xuIFx0XHRfX3dlYnBhY2tfcmVxdWlyZV9fLnIobnMpO1xuIFx0XHRPYmplY3QuZGVmaW5lUHJvcGVydHkobnMsICdkZWZhdWx0JywgeyBlbnVtZXJhYmxlOiB0cnVlLCB2YWx1ZTogdmFsdWUgfSk7XG4gXHRcdGlmKG1vZGUgJiAyICYmIHR5cGVvZiB2YWx1ZSAhPSAnc3RyaW5nJykgZm9yKHZhciBrZXkgaW4gdmFsdWUpIF9fd2VicGFja19yZXF1aXJlX18uZChucywga2V5LCBmdW5jdGlvbihrZXkpIHsgcmV0dXJuIHZhbHVlW2tleV07IH0uYmluZChudWxsLCBrZXkpKTtcbiBcdFx0cmV0dXJuIG5zO1xuIFx0fTtcblxuIFx0Ly8gZ2V0RGVmYXVsdEV4cG9ydCBmdW5jdGlvbiBmb3IgY29tcGF0aWJpbGl0eSB3aXRoIG5vbi1oYXJtb255IG1vZHVsZXNcbiBcdF9fd2VicGFja19yZXF1aXJlX18ubiA9IGZ1bmN0aW9uKG1vZHVsZSkge1xuIFx0XHR2YXIgZ2V0dGVyID0gbW9kdWxlICYmIG1vZHVsZS5fX2VzTW9kdWxlID9cbiBcdFx0XHRmdW5jdGlvbiBnZXREZWZhdWx0KCkgeyByZXR1cm4gbW9kdWxlWydkZWZhdWx0J107IH0gOlxuIFx0XHRcdGZ1bmN0aW9uIGdldE1vZHVsZUV4cG9ydHMoKSB7IHJldHVybiBtb2R1bGU7IH07XG4gXHRcdF9fd2VicGFja19yZXF1aXJlX18uZChnZXR0ZXIsICdhJywgZ2V0dGVyKTtcbiBcdFx0cmV0dXJuIGdldHRlcjtcbiBcdH07XG5cbiBcdC8vIE9iamVjdC5wcm90b3R5cGUuaGFzT3duUHJvcGVydHkuY2FsbFxuIFx0X193ZWJwYWNrX3JlcXVpcmVfXy5vID0gZnVuY3Rpb24ob2JqZWN0LCBwcm9wZXJ0eSkgeyByZXR1cm4gT2JqZWN0LnByb3RvdHlwZS5oYXNPd25Qcm9wZXJ0eS5jYWxsKG9iamVjdCwgcHJvcGVydHkpOyB9O1xuXG4gXHQvLyBfX3dlYnBhY2tfcHVibGljX3BhdGhfX1xuIFx0X193ZWJwYWNrX3JlcXVpcmVfXy5wID0gXCJcIjtcblxuXG4gXHQvLyBMb2FkIGVudHJ5IG1vZHVsZSBhbmQgcmV0dXJuIGV4cG9ydHNcbiBcdHJldHVybiBfX3dlYnBhY2tfcmVxdWlyZV9fKF9fd2VicGFja19yZXF1aXJlX18ucyA9IDApO1xuIiwiaW1wb3J0IHsgQ29udGV4dE1hbmFnZXIgfSBmcm9tICcuL0NhbnZhc0NvbnRleHRNYW5hZ2VyJztcblxubmFtZXNwYWNlIENhbnZhcyB7XG4gIGNvbnN0IGJsYXpvckV4dGVuc2lvbnM6IHN0cmluZyA9ICdCbGF6b3JFeHRlbnNpb25zJztcbiAgLy8gZGVmaW5lIHdoYXQgdGhpcyBleHRlbnNpb24gYWRkcyB0byB0aGUgd2luZG93IG9iamVjdCBpbnNpZGUgQmxhem9yRXh0ZW5zaW9uc1xuICBjb25zdCBleHRlbnNpb25PYmplY3QgPSB7XG4gICAgQ2FudmFzMmQ6IG5ldyBDb250ZXh0TWFuYWdlcihcIjJkXCIpLFxuICAgIFdlYkdMOiBuZXcgQ29udGV4dE1hbmFnZXIoXCJ3ZWJnbFwiKVxuICB9O1xuXG4gIGV4cG9ydCBmdW5jdGlvbiBpbml0aWFsaXplKCk6IHZvaWQge1xuICAgIGlmICh0eXBlb2Ygd2luZG93ICE9PSAndW5kZWZpbmVkJyAmJiAhd2luZG93W2JsYXpvckV4dGVuc2lvbnNdKSB7XG4gICAgICAvLyB3aGVuIHRoZSBsaWJyYXJ5IGlzIGxvYWRlZCBpbiBhIGJyb3dzZXIgdmlhIGEgPHNjcmlwdD4gZWxlbWVudCwgbWFrZSB0aGVcbiAgICAgIC8vIGZvbGxvd2luZyBBUElzIGF2YWlsYWJsZSBpbiBnbG9iYWwgc2NvcGUgZm9yIGludm9jYXRpb24gZnJvbSBKU1xuICAgICAgd2luZG93W2JsYXpvckV4dGVuc2lvbnNdID0ge1xuICAgICAgICAuLi5leHRlbnNpb25PYmplY3RcbiAgICAgIH07XG4gICAgfSBlbHNlIHtcbiAgICAgIHdpbmRvd1tibGF6b3JFeHRlbnNpb25zXSA9IHtcbiAgICAgICAgLi4ud2luZG93W2JsYXpvckV4dGVuc2lvbnNdLFxuICAgICAgICAuLi5leHRlbnNpb25PYmplY3RcbiAgICAgIH07XG4gICAgfVxuICB9XG59XG5cbkNhbnZhcy5pbml0aWFsaXplKCk7XG4iLCJleHBvcnQgY2xhc3MgQ29udGV4dE1hbmFnZXIge1xuICBwcml2YXRlIHJlYWRvbmx5IGNvbnRleHRzID0gbmV3IE1hcDxzdHJpbmcsIGFueT4oKTtcbiAgcHJpdmF0ZSByZWFkb25seSB3ZWJHTE9iamVjdCA9IG5ldyBBcnJheTxhbnk+KCk7XG4gIHByaXZhdGUgcmVhZG9ubHkgY29udGV4dE5hbWU6IHN0cmluZztcbiAgcHJpdmF0ZSB3ZWJHTENvbnRleHQgPSBmYWxzZTtcbiAgcHJpdmF0ZSByZWFkb25seSBwcm90b3R5cGVzOiBhbnk7XG4gIHByaXZhdGUgcmVhZG9ubHkgd2ViR0xUeXBlcyA9IFtcbiAgICBXZWJHTEJ1ZmZlciwgV2ViR0xTaGFkZXIsIFdlYkdMUHJvZ3JhbSwgV2ViR0xGcmFtZWJ1ZmZlciwgV2ViR0xSZW5kZXJidWZmZXIsIFdlYkdMVGV4dHVyZSwgV2ViR0xVbmlmb3JtTG9jYXRpb25cbiAgXTtcblxuICBwdWJsaWMgY29uc3RydWN0b3IoY29udGV4dE5hbWU6IHN0cmluZykge1xuICAgIHRoaXMuY29udGV4dE5hbWUgPSBjb250ZXh0TmFtZTtcbiAgICBpZiAoY29udGV4dE5hbWUgPT09IFwiMmRcIilcbiAgICAgIHRoaXMucHJvdG90eXBlcyA9IENhbnZhc1JlbmRlcmluZ0NvbnRleHQyRC5wcm90b3R5cGU7XG4gICAgZWxzZSBpZiAoY29udGV4dE5hbWUgPT09IFwid2ViZ2xcIiB8fCBjb250ZXh0TmFtZSA9PT0gXCJleHBlcmltZW50YWwtd2ViZ2xcIikge1xuICAgICAgdGhpcy5wcm90b3R5cGVzID0gV2ViR0xSZW5kZXJpbmdDb250ZXh0LnByb3RvdHlwZTtcbiAgICAgIHRoaXMud2ViR0xDb250ZXh0ID0gdHJ1ZTtcbiAgICB9IGVsc2VcbiAgICAgIHRocm93IG5ldyBFcnJvcihgSW52YWxpZCBjb250ZXh0IG5hbWU6ICR7Y29udGV4dE5hbWV9YCk7XG4gIH1cblxuICBwdWJsaWMgYWRkID0gKGNhbnZhczogSFRNTENhbnZhc0VsZW1lbnQsIHBhcmFtZXRlcnM6IGFueSkgPT4ge1xuICAgIGlmICghY2FudmFzKSB0aHJvdyBuZXcgRXJyb3IoJ0ludmFsaWQgY2FudmFzLicpO1xuICAgIGlmICh0aGlzLmNvbnRleHRzLmdldChjYW52YXMuaWQpKSByZXR1cm47XG5cbiAgICB2YXIgY29udGV4dDtcbiAgICBpZiAocGFyYW1ldGVycylcbiAgICAgIGNvbnRleHQgPSBjYW52YXMuZ2V0Q29udGV4dCh0aGlzLmNvbnRleHROYW1lLCBwYXJhbWV0ZXJzKTtcbiAgICBlbHNlXG4gICAgICBjb250ZXh0ID0gY2FudmFzLmdldENvbnRleHQodGhpcy5jb250ZXh0TmFtZSk7XG5cbiAgICBpZiAoIWNvbnRleHQpIHRocm93IG5ldyBFcnJvcignSW52YWxpZCBjb250ZXh0LicpO1xuXG4gICAgdGhpcy5jb250ZXh0cy5zZXQoY2FudmFzLmlkLCBjb250ZXh0KTtcbiAgfVxuXG4gIHB1YmxpYyByZW1vdmUgPSAoY2FudmFzOiBIVE1MQ2FudmFzRWxlbWVudCkgPT4ge1xuICAgIHRoaXMuY29udGV4dHMuZGVsZXRlKGNhbnZhcy5pZCk7XG4gIH1cblxuICBwdWJsaWMgc2V0UHJvcGVydHkgPSAoY2FudmFzOiBIVE1MQ2FudmFzRWxlbWVudCwgcHJvcGVydHk6IHN0cmluZywgdmFsdWU6IGFueSkgPT4ge1xuICAgIGNvbnN0IGNvbnRleHQgPSB0aGlzLmdldENvbnRleHQoY2FudmFzKTtcbiAgICBjb250ZXh0W3Byb3BlcnR5XSA9IHRoaXMuZGVzZXJpYWxpemUocHJvcGVydHksIHZhbHVlKTtcbiAgfVxuXG4gIHB1YmxpYyBnZXRQcm9wZXJ0eSA9IChjYW52YXM6IEhUTUxDYW52YXNFbGVtZW50LCBwcm9wZXJ0eTogc3RyaW5nKSA9PiB7XG4gICAgY29uc3QgY29udGV4dCA9IHRoaXMuZ2V0Q29udGV4dChjYW52YXMpO1xuICAgIHJldHVybiB0aGlzLnNlcmlhbGl6ZShjb250ZXh0W3Byb3BlcnR5XSk7XG4gIH1cblxuICBwdWJsaWMgY2FsbCA9IChjYW52YXM6IEhUTUxDYW52YXNFbGVtZW50LCBtZXRob2Q6IHN0cmluZywgYXJnczogYW55KSA9PiB7XG4gICAgY29uc3QgY29udGV4dCA9IHRoaXMuZ2V0Q29udGV4dChjYW52YXMpO1xuICAgIHJldHVybiB0aGlzLnNlcmlhbGl6ZSh0aGlzLnByb3RvdHlwZXNbbWV0aG9kXS5hcHBseShjb250ZXh0LCBhcmdzICE9IHVuZGVmaW5lZCA/IGFyZ3MubWFwKCh2YWx1ZSkgPT4gdGhpcy5kZXNlcmlhbGl6ZShtZXRob2QsIHZhbHVlKSkgOiBbXSkpO1xuICB9XG5cbiAgcHJpdmF0ZSBnZXRDb250ZXh0ID0gKGNhbnZhczogSFRNTENhbnZhc0VsZW1lbnQpID0+IHtcbiAgICBpZiAoIWNhbnZhcykgdGhyb3cgbmV3IEVycm9yKCdJbnZhbGlkIGNhbnZhcy4nKTtcblxuICAgIGNvbnN0IGNvbnRleHQgPSB0aGlzLmNvbnRleHRzLmdldChjYW52YXMuaWQpO1xuICAgIGlmICghY29udGV4dCkgdGhyb3cgbmV3IEVycm9yKCdJbnZhbGlkIGNvbnRleHQuJyk7XG5cbiAgICByZXR1cm4gY29udGV4dDtcbiAgfVxuXG4gIHByaXZhdGUgZGVzZXJpYWxpemUgPSAobWV0aG9kOiBzdHJpbmcsIG9iamVjdDogYW55KSA9PiB7XG4gICAgaWYgKCF0aGlzLndlYkdMQ29udGV4dCkgcmV0dXJuIG9iamVjdDsgLy9kZXNlcmlhbGl6YXRpb24gb25seSBuZWVkcyB0byBoYXBwZW4gZm9yIHdlYkdMXG5cbiAgICBpZiAob2JqZWN0Lmhhc093blByb3BlcnR5KFwid2ViR0xUeXBlXCIpICYmIG9iamVjdC5oYXNPd25Qcm9wZXJ0eShcImlkXCIpKSB7XG4gICAgICByZXR1cm4gKHRoaXMud2ViR0xPYmplY3Rbb2JqZWN0W1wiaWRcIl1dKTtcbiAgICB9IGVsc2UgaWYgKEFycmF5LmlzQXJyYXkob2JqZWN0KSAmJiAhbWV0aG9kLmVuZHNXaXRoKFwidlwiKSkge1xuICAgICAgcmV0dXJuIEludDhBcnJheS5vZiguLi4ob2JqZWN0IGFzIG51bWJlcltdKSk7XG4gICAgfSBlbHNlXG4gICAgICByZXR1cm4gb2JqZWN0O1xuICB9XG5cbiAgcHJpdmF0ZSBzZXJpYWxpemUgPSAob2JqZWN0OiBhbnkpID0+IHtcbiAgICBpZiAoIXRoaXMud2ViR0xDb250ZXh0KSByZXR1cm4gb2JqZWN0OyAvL3NlcmlhbGl6YXRpb24gb25seSBuZWVkcyB0byBoYXBwZW4gZm9yIHdlYkdMXG5cbiAgICBjb25zdCB0eXBlID0gdGhpcy53ZWJHTFR5cGVzLmZpbmQoKHR5cGUpID0+IG9iamVjdCBpbnN0YW5jZW9mIHR5cGUpO1xuICAgIGlmICh0eXBlICE9IHVuZGVmaW5lZCkge1xuICAgICAgY29uc3QgaWQgPSB0aGlzLndlYkdMT2JqZWN0Lmxlbmd0aDtcbiAgICAgIHRoaXMud2ViR0xPYmplY3QucHVzaChvYmplY3QpO1xuXG4gICAgICByZXR1cm4ge1xuICAgICAgICB3ZWJHTFR5cGU6IHR5cGUubmFtZSxcbiAgICAgICAgaWQ6IGlkXG4gICAgICB9O1xuICAgIH0gZWxzZVxuICAgICAgcmV0dXJuIG9iamVjdDtcbiAgfVxufVxuIl0sInNvdXJjZVJvb3QiOiIifQ== \ No newline at end of file diff --git a/src/Microsoft.Maui.Graphics.Blazor.JS/package-lock.json b/src/Microsoft.Maui.Graphics.Blazor.JS/package-lock.json index 5446b69c..83ad0c61 100644 --- a/src/Microsoft.Maui.Graphics.Blazor.JS/package-lock.json +++ b/src/Microsoft.Maui.Graphics.Blazor.JS/package-lock.json @@ -1,8 +1,5057 @@ { "name": "blazor.extensions.canvas", "version": "0.0.1", - "lockfileVersion": 1, + "lockfileVersion": 2, "requires": true, + "packages": { + "": { + "name": "blazor.extensions.canvas", + "version": "0.0.1", + "devDependencies": { + "@types/emscripten": "0.0.31", + "ts-loader": "^4.4.2", + "typescript": "^2.9.2", + "webpack": "^4.16.3", + "webpack-cli": "^3.1.0" + } + }, + "node_modules/@types/emscripten": { + "version": "0.0.31", + "resolved": "https://registry.npmjs.org/@types/emscripten/-/emscripten-0.0.31.tgz", + "integrity": "sha512-6OaHAsknBA6M2gKszMZXunqFofGXCCk4UCXHMdzd3qtBpndSHuM2JgxBE9M3APyl/DlENt4FEe0C7mJwbcC/ZA==", + "dev": true, + "dependencies": { + "@types/webassembly-js-api": "*" + } + }, + "node_modules/@types/webassembly-js-api": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/@types/webassembly-js-api/-/webassembly-js-api-0.0.1.tgz", + "integrity": "sha1-YtULIBB319TMEJuxytoi/f1FI/s=", + "dev": true + }, + "node_modules/@webassemblyjs/ast": { + "version": "1.5.13", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.5.13.tgz", + "integrity": "sha512-49nwvW/Hx9i+OYHg+mRhKZfAlqThr11Dqz8TsrvqGKMhdI2ijy3KBJOun2Z4770TPjrIJhR6KxChQIDaz8clDA==", + "dev": true, + "dependencies": { + "@webassemblyjs/helper-module-context": "1.5.13", + "@webassemblyjs/helper-wasm-bytecode": "1.5.13", + "@webassemblyjs/wast-parser": "1.5.13", + "debug": "^3.1.0", + "mamacro": "^0.0.3" + } + }, + "node_modules/@webassemblyjs/ast/node_modules/debug": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.1.0.tgz", + "integrity": "sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g==", + "dev": true, + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/@webassemblyjs/floating-point-hex-parser": { + "version": "1.5.13", + "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.5.13.tgz", + "integrity": "sha512-vrvvB18Kh4uyghSKb0NTv+2WZx871WL2NzwMj61jcq2bXkyhRC+8Q0oD7JGVf0+5i/fKQYQSBCNMMsDMRVAMqA==", + "dev": true + }, + "node_modules/@webassemblyjs/helper-api-error": { + "version": "1.5.13", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.5.13.tgz", + "integrity": "sha512-dBh2CWYqjaDlvMmRP/kudxpdh30uXjIbpkLj9HQe+qtYlwvYjPRjdQXrq1cTAAOUSMTtzqbXIxEdEZmyKfcwsg==", + "dev": true + }, + "node_modules/@webassemblyjs/helper-buffer": { + "version": "1.5.13", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.5.13.tgz", + "integrity": "sha512-v7igWf1mHcpJNbn4m7e77XOAWXCDT76Xe7Is1VQFXc4K5jRcFrl9D0NrqM4XifQ0bXiuTSkTKMYqDxu5MhNljA==", + "dev": true, + "dependencies": { + "debug": "^3.1.0" + } + }, + "node_modules/@webassemblyjs/helper-buffer/node_modules/debug": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.1.0.tgz", + "integrity": "sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g==", + "dev": true, + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/@webassemblyjs/helper-code-frame": { + "version": "1.5.13", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-code-frame/-/helper-code-frame-1.5.13.tgz", + "integrity": "sha512-yN6ScQQDFCiAXnVctdVO/J5NQRbwyTbQzsGzEgXsAnrxhjp0xihh+nNHQTMrq5UhOqTb5LykpJAvEv9AT0jnAQ==", + "dev": true, + "dependencies": { + "@webassemblyjs/wast-printer": "1.5.13" + } + }, + "node_modules/@webassemblyjs/helper-fsm": { + "version": "1.5.13", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-fsm/-/helper-fsm-1.5.13.tgz", + "integrity": "sha512-hSIKzbXjVMRvy3Jzhgu+vDd/aswJ+UMEnLRCkZDdknZO3Z9e6rp1DAs0tdLItjCFqkz9+0BeOPK/mk3eYvVzZg==", + "dev": true + }, + "node_modules/@webassemblyjs/helper-module-context": { + "version": "1.5.13", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-module-context/-/helper-module-context-1.5.13.tgz", + "integrity": "sha512-zxJXULGPLB7r+k+wIlvGlXpT4CYppRz8fLUM/xobGHc9Z3T6qlmJD9ySJ2jknuktuuiR9AjnNpKYDECyaiX+QQ==", + "dev": true, + "dependencies": { + "debug": "^3.1.0", + "mamacro": "^0.0.3" + } + }, + "node_modules/@webassemblyjs/helper-module-context/node_modules/debug": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.1.0.tgz", + "integrity": "sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g==", + "dev": true, + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/@webassemblyjs/helper-wasm-bytecode": { + "version": "1.5.13", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.5.13.tgz", + "integrity": "sha512-0n3SoNGLvbJIZPhtMFq0XmmnA/YmQBXaZKQZcW8maGKwLpVcgjNrxpFZHEOLKjXJYVN5Il8vSfG7nRX50Zn+aw==", + "dev": true + }, + "node_modules/@webassemblyjs/helper-wasm-section": { + "version": "1.5.13", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.5.13.tgz", + "integrity": "sha512-IJ/goicOZ5TT1axZFSnlAtz4m8KEjYr12BNOANAwGFPKXM4byEDaMNXYowHMG0yKV9a397eU/NlibFaLwr1fbw==", + "dev": true, + "dependencies": { + "@webassemblyjs/ast": "1.5.13", + "@webassemblyjs/helper-buffer": "1.5.13", + "@webassemblyjs/helper-wasm-bytecode": "1.5.13", + "@webassemblyjs/wasm-gen": "1.5.13", + "debug": "^3.1.0" + } + }, + "node_modules/@webassemblyjs/helper-wasm-section/node_modules/debug": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.1.0.tgz", + "integrity": "sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g==", + "dev": true, + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/@webassemblyjs/ieee754": { + "version": "1.5.13", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.5.13.tgz", + "integrity": "sha512-TseswvXEPpG5TCBKoLx9tT7+/GMACjC1ruo09j46ULRZWYm8XHpDWaosOjTnI7kr4SRJFzA6MWoUkAB+YCGKKg==", + "dev": true, + "dependencies": { + "ieee754": "^1.1.11" + } + }, + "node_modules/@webassemblyjs/leb128": { + "version": "1.5.13", + "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.5.13.tgz", + "integrity": "sha512-0NRMxrL+GG3eISGZBmLBLAVjphbN8Si15s7jzThaw1UE9e5BY1oH49/+MA1xBzxpf1OW5sf9OrPDOclk9wj2yg==", + "dev": true, + "dependencies": { + "long": "4.0.0" + } + }, + "node_modules/@webassemblyjs/leb128/node_modules/long": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/long/-/long-4.0.0.tgz", + "integrity": "sha512-XsP+KhQif4bjX1kbuSiySJFNAehNxgLb6hPRGJ9QsUr8ajHkuXGdrHmFUTUUXhDwVX2R5bY4JNZEwbUiMhV+MA==", + "dev": true + }, + "node_modules/@webassemblyjs/utf8": { + "version": "1.5.13", + "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.5.13.tgz", + "integrity": "sha512-Ve1ilU2N48Ew0lVGB8FqY7V7hXjaC4+PeZM+vDYxEd+R2iQ0q+Wb3Rw8v0Ri0+rxhoz6gVGsnQNb4FjRiEH/Ng==", + "dev": true + }, + "node_modules/@webassemblyjs/wasm-edit": { + "version": "1.5.13", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.5.13.tgz", + "integrity": "sha512-X7ZNW4+Hga4f2NmqENnHke2V/mGYK/xnybJSIXImt1ulxbCOEs/A+ZK/Km2jgihjyVxp/0z0hwIcxC6PrkWtgw==", + "dev": true, + "dependencies": { + "@webassemblyjs/ast": "1.5.13", + "@webassemblyjs/helper-buffer": "1.5.13", + "@webassemblyjs/helper-wasm-bytecode": "1.5.13", + "@webassemblyjs/helper-wasm-section": "1.5.13", + "@webassemblyjs/wasm-gen": "1.5.13", + "@webassemblyjs/wasm-opt": "1.5.13", + "@webassemblyjs/wasm-parser": "1.5.13", + "@webassemblyjs/wast-printer": "1.5.13", + "debug": "^3.1.0" + } + }, + "node_modules/@webassemblyjs/wasm-edit/node_modules/debug": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.1.0.tgz", + "integrity": "sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g==", + "dev": true, + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/@webassemblyjs/wasm-gen": { + "version": "1.5.13", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.5.13.tgz", + "integrity": "sha512-yfv94Se8R73zmr8GAYzezFHc3lDwE/lBXQddSiIZEKZFuqy7yWtm3KMwA1uGbv5G1WphimJxboXHR80IgX1hQA==", + "dev": true, + "dependencies": { + "@webassemblyjs/ast": "1.5.13", + "@webassemblyjs/helper-wasm-bytecode": "1.5.13", + "@webassemblyjs/ieee754": "1.5.13", + "@webassemblyjs/leb128": "1.5.13", + "@webassemblyjs/utf8": "1.5.13" + } + }, + "node_modules/@webassemblyjs/wasm-opt": { + "version": "1.5.13", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.5.13.tgz", + "integrity": "sha512-IkXSkgzVhQ0QYAdIayuCWMmXSYx0dHGU8Ah/AxJf1gBvstMWVnzJnBwLsXLyD87VSBIcsqkmZ28dVb0mOC3oBg==", + "dev": true, + "dependencies": { + "@webassemblyjs/ast": "1.5.13", + "@webassemblyjs/helper-buffer": "1.5.13", + "@webassemblyjs/wasm-gen": "1.5.13", + "@webassemblyjs/wasm-parser": "1.5.13", + "debug": "^3.1.0" + } + }, + "node_modules/@webassemblyjs/wasm-opt/node_modules/debug": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.1.0.tgz", + "integrity": "sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g==", + "dev": true, + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/@webassemblyjs/wasm-parser": { + "version": "1.5.13", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.5.13.tgz", + "integrity": "sha512-XnYoIcu2iqq8/LrtmdnN3T+bRjqYFjRHqWbqK3osD/0r/Fcv4d9ecRzjVtC29ENEuNTK4mQ9yyxCBCbK8S/cpg==", + "dev": true, + "dependencies": { + "@webassemblyjs/ast": "1.5.13", + "@webassemblyjs/helper-api-error": "1.5.13", + "@webassemblyjs/helper-wasm-bytecode": "1.5.13", + "@webassemblyjs/ieee754": "1.5.13", + "@webassemblyjs/leb128": "1.5.13", + "@webassemblyjs/utf8": "1.5.13" + } + }, + "node_modules/@webassemblyjs/wast-parser": { + "version": "1.5.13", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-parser/-/wast-parser-1.5.13.tgz", + "integrity": "sha512-Lbz65T0LQ1LgzKiUytl34CwuhMNhaCLgrh0JW4rJBN6INnBB8NMwUfQM+FxTnLY9qJ+lHJL/gCM5xYhB9oWi4A==", + "dev": true, + "dependencies": { + "@webassemblyjs/ast": "1.5.13", + "@webassemblyjs/floating-point-hex-parser": "1.5.13", + "@webassemblyjs/helper-api-error": "1.5.13", + "@webassemblyjs/helper-code-frame": "1.5.13", + "@webassemblyjs/helper-fsm": "1.5.13", + "long": "^3.2.0", + "mamacro": "^0.0.3" + } + }, + "node_modules/@webassemblyjs/wast-printer": { + "version": "1.5.13", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.5.13.tgz", + "integrity": "sha512-QcwogrdqcBh8Z+eUF8SG+ag5iwQSXxQJELBEHmLkk790wgQgnIMmntT2sMAMw53GiFNckArf5X0bsCA44j3lWQ==", + "dev": true, + "dependencies": { + "@webassemblyjs/ast": "1.5.13", + "@webassemblyjs/wast-parser": "1.5.13", + "long": "^3.2.0" + } + }, + "node_modules/acorn": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-5.7.1.tgz", + "integrity": "sha512-d+nbxBUGKg7Arpsvbnlq61mc12ek3EY8EQldM3GPAhWJ1UVxC6TDGbIvUMNU6obBX3i1+ptCIzV4vq0gFPEGVQ==", + "dev": true, + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/acorn-dynamic-import": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/acorn-dynamic-import/-/acorn-dynamic-import-3.0.0.tgz", + "integrity": "sha512-zVWV8Z8lislJoOKKqdNMOB+s6+XV5WERty8MnKBeFgwA+19XJjJHs2RP5dzM57FftIs+jQnRToLiWazKr6sSWg==", + "dev": true, + "dependencies": { + "acorn": "^5.0.0" + } + }, + "node_modules/ajv": { + "version": "6.5.2", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.5.2.tgz", + "integrity": "sha512-hOs7GfvI6tUI1LfZddH82ky6mOMyTuY0mk7kE2pWpmhhUSkumzaTO5vbVwij39MdwPQWCV4Zv57Eo06NtL/GVA==", + "dev": true, + "dependencies": { + "fast-deep-equal": "^2.0.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.1" + } + }, + "node_modules/ajv-keywords": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.2.0.tgz", + "integrity": "sha1-6GuBnGAs+IIa1jdBNpjx3sAhhHo=", + "dev": true, + "peerDependencies": { + "ajv": "^6.0.0" + } + }, + "node_modules/ansi-escapes": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-3.1.0.tgz", + "integrity": "sha512-UgAb8H9D41AQnu/PbWlCofQVcnV4Gs2bBJi9eZPxfU/hgglFh3SMDMENRIqdr7H6XFnXdoknctFByVsCOotTVw==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/ansi-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz", + "integrity": "sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dev": true, + "dependencies": { + "color-convert": "^1.9.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/anymatch": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-2.0.0.tgz", + "integrity": "sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==", + "dev": true, + "dependencies": { + "micromatch": "^3.1.4", + "normalize-path": "^2.1.1" + } + }, + "node_modules/aproba": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/aproba/-/aproba-1.2.0.tgz", + "integrity": "sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw==", + "dev": true + }, + "node_modules/arr-diff": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz", + "integrity": "sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/arr-flatten": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.1.0.tgz", + "integrity": "sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/arr-union": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/arr-union/-/arr-union-3.1.0.tgz", + "integrity": "sha1-45sJrqne+Gao8gbiiK9jkZuuOcQ=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/array-unique": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.3.2.tgz", + "integrity": "sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/asn1.js": { + "version": "4.10.1", + "resolved": "https://registry.npmjs.org/asn1.js/-/asn1.js-4.10.1.tgz", + "integrity": "sha512-p32cOF5q0Zqs9uBiONKYLm6BClCoBCM5O9JfeUSlnQLBTxYdTK+pW+nXflm8UkKd2UYlEbYz5qEi0JuZR9ckSw==", + "dev": true, + "dependencies": { + "bn.js": "^4.0.0", + "inherits": "^2.0.1", + "minimalistic-assert": "^1.0.0" + } + }, + "node_modules/assert": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/assert/-/assert-1.4.1.tgz", + "integrity": "sha1-mZEtWRg2tab1s0XA8H7vwI/GXZE=", + "dev": true, + "dependencies": { + "util": "0.10.3" + } + }, + "node_modules/assert/node_modules/inherits": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz", + "integrity": "sha1-sX0I0ya0Qj5Wjv9xn5GwscvfafE=", + "dev": true + }, + "node_modules/assert/node_modules/util": { + "version": "0.10.3", + "resolved": "https://registry.npmjs.org/util/-/util-0.10.3.tgz", + "integrity": "sha1-evsa/lCAUkZInj23/g7TeTNqwPk=", + "dev": true, + "dependencies": { + "inherits": "2.0.1" + } + }, + "node_modules/assign-symbols": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/assign-symbols/-/assign-symbols-1.0.0.tgz", + "integrity": "sha1-WWZ/QfrdTyDMvCu5a41Pf3jsA2c=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/async-each": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/async-each/-/async-each-1.0.1.tgz", + "integrity": "sha1-GdOGodntxufByF04iu28xW0zYC0=", + "dev": true + }, + "node_modules/atob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/atob/-/atob-2.1.1.tgz", + "integrity": "sha1-ri1acpR38onWDdf5amMUoi3Wwio=", + "dev": true, + "bin": { + "atob": "bin/atob.js" + }, + "engines": { + "node": ">= 4.5.0" + } + }, + "node_modules/balanced-match": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz", + "integrity": "sha1-ibTRmasr7kneFk6gK4nORi1xt2c=", + "dev": true + }, + "node_modules/base": { + "version": "0.11.2", + "resolved": "https://registry.npmjs.org/base/-/base-0.11.2.tgz", + "integrity": "sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==", + "dev": true, + "dependencies": { + "cache-base": "^1.0.1", + "class-utils": "^0.3.5", + "component-emitter": "^1.2.1", + "define-property": "^1.0.0", + "isobject": "^3.0.1", + "mixin-deep": "^1.2.0", + "pascalcase": "^0.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/base/node_modules/define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", + "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", + "dev": true, + "dependencies": { + "is-descriptor": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/base/node_modules/is-accessor-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", + "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", + "dev": true, + "dependencies": { + "kind-of": "^6.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/base/node_modules/is-data-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", + "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", + "dev": true, + "dependencies": { + "kind-of": "^6.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/base/node_modules/is-descriptor": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", + "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", + "dev": true, + "dependencies": { + "is-accessor-descriptor": "^1.0.0", + "is-data-descriptor": "^1.0.0", + "kind-of": "^6.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/base64-js": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.3.0.tgz", + "integrity": "sha512-ccav/yGvoa80BQDljCxsmmQ3Xvx60/UpBIij5QN21W3wBi/hhIC9OoO+KLpu9IJTS9j4DRVJ3aDDF9cMSoa2lw==", + "dev": true + }, + "node_modules/big.js": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/big.js/-/big.js-3.2.0.tgz", + "integrity": "sha512-+hN/Zh2D08Mx65pZ/4g5bsmNiZUuChDiQfTUQ7qJr4/kuopCr88xZsAXv6mBoZEsUI4OuGHlX59qE94K2mMW8Q==", + "dev": true, + "engines": { + "node": "*" + } + }, + "node_modules/binary-extensions": { + "version": "1.11.0", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-1.11.0.tgz", + "integrity": "sha1-RqoXUftqL5PuXmibsQh9SxTGwgU=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/bluebird": { + "version": "3.5.1", + "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.5.1.tgz", + "integrity": "sha512-MKiLiV+I1AA596t9w1sQJ8jkiSr5+ZKi0WKrYGUn6d1Fx+Ij4tIj+m2WMQSGczs5jZVxV339chE8iwk6F64wjA==", + "dev": true + }, + "node_modules/bn.js": { + "version": "4.11.8", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.11.8.tgz", + "integrity": "sha512-ItfYfPLkWHUjckQCk8xC+LwxgK8NYcXywGigJgSwOP8Y2iyWT4f2vsZnoOXTTbo+o5yXmIUJ4gn5538SO5S3gA==", + "dev": true + }, + "node_modules/brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dev": true, + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/braces": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", + "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", + "dev": true, + "dependencies": { + "arr-flatten": "^1.1.0", + "array-unique": "^0.3.2", + "extend-shallow": "^2.0.1", + "fill-range": "^4.0.0", + "isobject": "^3.0.1", + "repeat-element": "^1.1.2", + "snapdragon": "^0.8.1", + "snapdragon-node": "^2.0.1", + "split-string": "^3.0.2", + "to-regex": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/braces/node_modules/extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dev": true, + "dependencies": { + "is-extendable": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/brorand": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/brorand/-/brorand-1.1.0.tgz", + "integrity": "sha1-EsJe/kCkXjwyPrhnWgoM5XsiNx8=", + "dev": true + }, + "node_modules/browserify-aes": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/browserify-aes/-/browserify-aes-1.2.0.tgz", + "integrity": "sha512-+7CHXqGuspUn/Sl5aO7Ea0xWGAtETPXNSAjHo48JfLdPWcMng33Xe4znFvQweqc/uzk5zSOI3H52CYnjCfb5hA==", + "dev": true, + "dependencies": { + "buffer-xor": "^1.0.3", + "cipher-base": "^1.0.0", + "create-hash": "^1.1.0", + "evp_bytestokey": "^1.0.3", + "inherits": "^2.0.1", + "safe-buffer": "^5.0.1" + } + }, + "node_modules/browserify-cipher": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/browserify-cipher/-/browserify-cipher-1.0.1.tgz", + "integrity": "sha512-sPhkz0ARKbf4rRQt2hTpAHqn47X3llLkUGn+xEJzLjwY8LRs2p0v7ljvI5EyoRO/mexrNunNECisZs+gw2zz1w==", + "dev": true, + "dependencies": { + "browserify-aes": "^1.0.4", + "browserify-des": "^1.0.0", + "evp_bytestokey": "^1.0.0" + } + }, + "node_modules/browserify-des": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/browserify-des/-/browserify-des-1.0.2.tgz", + "integrity": "sha512-BioO1xf3hFwz4kc6iBhI3ieDFompMhrMlnDFC4/0/vd5MokpuAc3R+LYbwTA9A5Yc9pq9UYPqffKpW2ObuwX5A==", + "dev": true, + "dependencies": { + "cipher-base": "^1.0.1", + "des.js": "^1.0.0", + "inherits": "^2.0.1", + "safe-buffer": "^5.1.2" + } + }, + "node_modules/browserify-rsa": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/browserify-rsa/-/browserify-rsa-4.0.1.tgz", + "integrity": "sha1-IeCr+vbyApzy+vsTNWenAdQTVSQ=", + "dev": true, + "dependencies": { + "bn.js": "^4.1.0", + "randombytes": "^2.0.1" + } + }, + "node_modules/browserify-sign": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/browserify-sign/-/browserify-sign-4.0.4.tgz", + "integrity": "sha1-qk62jl17ZYuqa/alfmMMvXqT0pg=", + "dev": true, + "dependencies": { + "bn.js": "^4.1.1", + "browserify-rsa": "^4.0.0", + "create-hash": "^1.1.0", + "create-hmac": "^1.1.2", + "elliptic": "^6.0.0", + "inherits": "^2.0.1", + "parse-asn1": "^5.0.0" + } + }, + "node_modules/browserify-zlib": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/browserify-zlib/-/browserify-zlib-0.2.0.tgz", + "integrity": "sha512-Z942RysHXmJrhqk88FmKBVq/v5tqmSkDz7p54G/MGyjMnCFFnC79XWNbg+Vta8W6Wb2qtSZTSxIGkJrRpCFEiA==", + "dev": true, + "dependencies": { + "pako": "~1.0.5" + } + }, + "node_modules/buffer": { + "version": "4.9.1", + "resolved": "https://registry.npmjs.org/buffer/-/buffer-4.9.1.tgz", + "integrity": "sha1-bRu2AbB6TvztlwlBMgkwJ8lbwpg=", + "deprecated": "This version of 'buffer' is out-of-date. You must update to v4.9.2 or newer", + "dev": true, + "dependencies": { + "base64-js": "^1.0.2", + "ieee754": "^1.1.4", + "isarray": "^1.0.0" + } + }, + "node_modules/buffer-from": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.0.tgz", + "integrity": "sha512-c5mRlguI/Pe2dSZmpER62rSCu0ryKmWddzRYsuXc50U2/g8jMOulc31VZMa4mYx31U5xsmSOpDCgH88Vl9cDGQ==", + "dev": true + }, + "node_modules/buffer-xor": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/buffer-xor/-/buffer-xor-1.0.3.tgz", + "integrity": "sha1-JuYe0UIvtw3ULm42cp7VHYVf6Nk=", + "dev": true + }, + "node_modules/builtin-status-codes": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz", + "integrity": "sha1-hZgoeOIbmOHGZCXgPQF0eI9Wnug=", + "dev": true + }, + "node_modules/cacache": { + "version": "10.0.4", + "resolved": "https://registry.npmjs.org/cacache/-/cacache-10.0.4.tgz", + "integrity": "sha512-Dph0MzuH+rTQzGPNT9fAnrPmMmjKfST6trxJeK7NQuHRaVw24VzPRWTmg9MpcwOVQZO0E1FBICUlFeNaKPIfHA==", + "dev": true, + "dependencies": { + "bluebird": "^3.5.1", + "chownr": "^1.0.1", + "glob": "^7.1.2", + "graceful-fs": "^4.1.11", + "lru-cache": "^4.1.1", + "mississippi": "^2.0.0", + "mkdirp": "^0.5.1", + "move-concurrently": "^1.0.1", + "promise-inflight": "^1.0.1", + "rimraf": "^2.6.2", + "ssri": "^5.2.4", + "unique-filename": "^1.1.0", + "y18n": "^4.0.0" + } + }, + "node_modules/cache-base": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/cache-base/-/cache-base-1.0.1.tgz", + "integrity": "sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==", + "dev": true, + "dependencies": { + "collection-visit": "^1.0.0", + "component-emitter": "^1.2.1", + "get-value": "^2.0.6", + "has-value": "^1.0.0", + "isobject": "^3.0.1", + "set-value": "^2.0.0", + "to-object-path": "^0.3.0", + "union-value": "^1.0.0", + "unset-value": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/camelcase": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-4.1.0.tgz", + "integrity": "sha1-1UVjW+HjPFQmScaRc+Xeas+uNN0=", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/chalk": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.1.tgz", + "integrity": "sha512-ObN6h1v2fTJSmUXoS3nMQ92LbDK9be4TV+6G+omQlGJFdcUX5heKi1LZ1YnRMIgwTLEj3E24bT6tYni50rlCfQ==", + "dev": true, + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/chardet": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/chardet/-/chardet-0.5.0.tgz", + "integrity": "sha512-9ZTaoBaePSCFvNlNGrsyI8ZVACP2svUtq0DkM7t4K2ClAa96sqOIRjAzDTc8zXzFt1cZR46rRzLTiHFSJ+Qw0g==", + "dev": true + }, + "node_modules/chokidar": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-2.0.4.tgz", + "integrity": "sha512-z9n7yt9rOvIJrMhvDtDictKrkFHeihkNl6uWMmZlmL6tJtX9Cs+87oK+teBx+JIgzvbX3yZHT3eF8vpbDxHJXQ==", + "deprecated": "Chokidar 2 will break on node v14+. Upgrade to chokidar 3 with 15x less dependencies.", + "dev": true, + "dependencies": { + "anymatch": "^2.0.0", + "async-each": "^1.0.0", + "braces": "^2.3.0", + "glob-parent": "^3.1.0", + "inherits": "^2.0.1", + "is-binary-path": "^1.0.0", + "is-glob": "^4.0.0", + "lodash.debounce": "^4.0.8", + "normalize-path": "^2.1.1", + "path-is-absolute": "^1.0.0", + "readdirp": "^2.0.0", + "upath": "^1.0.5" + }, + "optionalDependencies": { + "fsevents": "^1.2.2" + } + }, + "node_modules/chownr": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/chownr/-/chownr-1.0.1.tgz", + "integrity": "sha1-4qdQQqlVGQi+vSW4Uj1fl2nXkYE=", + "dev": true + }, + "node_modules/chrome-trace-event": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.0.tgz", + "integrity": "sha512-xDbVgyfDTT2piup/h8dK/y4QZfJRSa73bw1WZ8b4XM1o7fsFubUVGYcE+1ANtOzJJELGpYoG2961z0Z6OAld9A==", + "dev": true, + "dependencies": { + "tslib": "^1.9.0" + }, + "engines": { + "node": ">=6.0" + } + }, + "node_modules/cipher-base": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/cipher-base/-/cipher-base-1.0.4.tgz", + "integrity": "sha512-Kkht5ye6ZGmwv40uUDZztayT2ThLQGfnj/T71N/XzeZeo3nf8foyW7zGTsPYkEya3m5f3cAypH+qe7YOrM1U2Q==", + "dev": true, + "dependencies": { + "inherits": "^2.0.1", + "safe-buffer": "^5.0.1" + } + }, + "node_modules/class-utils": { + "version": "0.3.6", + "resolved": "https://registry.npmjs.org/class-utils/-/class-utils-0.3.6.tgz", + "integrity": "sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg==", + "dev": true, + "dependencies": { + "arr-union": "^3.1.0", + "define-property": "^0.2.5", + "isobject": "^3.0.0", + "static-extend": "^0.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/class-utils/node_modules/define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", + "dev": true, + "dependencies": { + "is-descriptor": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/cli-cursor": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-2.1.0.tgz", + "integrity": "sha1-s12sN2R5+sw+lHR9QdDQ9SOP/LU=", + "dev": true, + "dependencies": { + "restore-cursor": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/cli-width": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/cli-width/-/cli-width-2.2.0.tgz", + "integrity": "sha1-/xnt6Kml5XkyQUewwR8PvLq+1jk=", + "dev": true + }, + "node_modules/cliui": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-4.1.0.tgz", + "integrity": "sha512-4FG+RSG9DL7uEwRUZXZn3SS34DiDPfzP0VOiEwtUWlE+AR2EIg+hSyvrIgUUfhdgR/UkAeW2QHgeP+hWrXs7jQ==", + "dev": true, + "dependencies": { + "string-width": "^2.1.1", + "strip-ansi": "^4.0.0", + "wrap-ansi": "^2.0.0" + } + }, + "node_modules/code-point-at": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/code-point-at/-/code-point-at-1.1.0.tgz", + "integrity": "sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/collection-visit": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/collection-visit/-/collection-visit-1.0.0.tgz", + "integrity": "sha1-S8A3PBZLwykbTTaMgpzxqApZ3KA=", + "dev": true, + "dependencies": { + "map-visit": "^1.0.0", + "object-visit": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/color-convert": { + "version": "1.9.2", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.2.tgz", + "integrity": "sha512-3NUJZdhMhcdPn8vJ9v2UQJoH0qqoGUkYTgFEPZaPjEtwmmKUfNV46zZmgB2M5M4DCEQHMaCfWHCxiBflLm04Tg==", + "dev": true, + "dependencies": { + "color-name": "1.1.1" + } + }, + "node_modules/color-name": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.1.tgz", + "integrity": "sha1-SxQVMEz1ACjqgWQ2Q72C6gWANok=", + "dev": true + }, + "node_modules/commander": { + "version": "2.13.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.13.0.tgz", + "integrity": "sha512-MVuS359B+YzaWqjCL/c+22gfryv+mCBPHAv3zyVI2GN8EY6IRP8VwtasXn8jyyhvvq84R4ImN1OKRtcbIasjYA==", + "dev": true + }, + "node_modules/commondir": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz", + "integrity": "sha1-3dgA2gxmEnOTzKWVDqloo6rxJTs=", + "dev": true + }, + "node_modules/component-emitter": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/component-emitter/-/component-emitter-1.2.1.tgz", + "integrity": "sha1-E3kY1teCg/ffemt8WmPhQOaUJeY=", + "dev": true + }, + "node_modules/concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=", + "dev": true + }, + "node_modules/concat-stream": { + "version": "1.6.2", + "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.2.tgz", + "integrity": "sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==", + "dev": true, + "engines": [ + "node >= 0.8" + ], + "dependencies": { + "buffer-from": "^1.0.0", + "inherits": "^2.0.3", + "readable-stream": "^2.2.2", + "typedarray": "^0.0.6" + } + }, + "node_modules/console-browserify": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/console-browserify/-/console-browserify-1.1.0.tgz", + "integrity": "sha1-8CQcRXMKn8YyOyBtvzjtx0HQuxA=", + "dev": true, + "dependencies": { + "date-now": "^0.1.4" + } + }, + "node_modules/constants-browserify": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/constants-browserify/-/constants-browserify-1.0.0.tgz", + "integrity": "sha1-wguW2MYXdIqvHBYCF2DNJ/y4y3U=", + "dev": true + }, + "node_modules/copy-concurrently": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/copy-concurrently/-/copy-concurrently-1.0.5.tgz", + "integrity": "sha512-f2domd9fsVDFtaFcbaRZuYXwtdmnzqbADSwhSWYxYB/Q8zsdUUFMXVRwXGDMWmbEzAn1kdRrtI1T/KTFOL4X2A==", + "dev": true, + "dependencies": { + "aproba": "^1.1.1", + "fs-write-stream-atomic": "^1.0.8", + "iferr": "^0.1.5", + "mkdirp": "^0.5.1", + "rimraf": "^2.5.4", + "run-queue": "^1.0.0" + } + }, + "node_modules/copy-descriptor": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/copy-descriptor/-/copy-descriptor-0.1.1.tgz", + "integrity": "sha1-Z29us8OZl8LuGsOpJP1hJHSPV40=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/core-util-is": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", + "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=", + "dev": true + }, + "node_modules/create-ecdh": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/create-ecdh/-/create-ecdh-4.0.3.tgz", + "integrity": "sha512-GbEHQPMOswGpKXM9kCWVrremUcBmjteUaQ01T9rkKCPDXfUHX0IoP9LpHYo2NPFampa4e+/pFDc3jQdxrxQLaw==", + "dev": true, + "dependencies": { + "bn.js": "^4.1.0", + "elliptic": "^6.0.0" + } + }, + "node_modules/create-hash": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/create-hash/-/create-hash-1.2.0.tgz", + "integrity": "sha512-z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg==", + "dev": true, + "dependencies": { + "cipher-base": "^1.0.1", + "inherits": "^2.0.1", + "md5.js": "^1.3.4", + "ripemd160": "^2.0.1", + "sha.js": "^2.4.0" + } + }, + "node_modules/create-hmac": { + "version": "1.1.7", + "resolved": "https://registry.npmjs.org/create-hmac/-/create-hmac-1.1.7.tgz", + "integrity": "sha512-MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg==", + "dev": true, + "dependencies": { + "cipher-base": "^1.0.3", + "create-hash": "^1.1.0", + "inherits": "^2.0.1", + "ripemd160": "^2.0.0", + "safe-buffer": "^5.0.1", + "sha.js": "^2.4.8" + } + }, + "node_modules/cross-spawn": { + "version": "6.0.5", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz", + "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==", + "dev": true, + "dependencies": { + "nice-try": "^1.0.4", + "path-key": "^2.0.1", + "semver": "^5.5.0", + "shebang-command": "^1.2.0", + "which": "^1.2.9" + }, + "engines": { + "node": ">=4.8" + } + }, + "node_modules/crypto-browserify": { + "version": "3.12.0", + "resolved": "https://registry.npmjs.org/crypto-browserify/-/crypto-browserify-3.12.0.tgz", + "integrity": "sha512-fz4spIh+znjO2VjL+IdhEpRJ3YN6sMzITSBijk6FK2UvTqruSQW+/cCZTSNsMiZNvUeq0CqurF+dAbyiGOY6Wg==", + "dev": true, + "dependencies": { + "browserify-cipher": "^1.0.0", + "browserify-sign": "^4.0.0", + "create-ecdh": "^4.0.0", + "create-hash": "^1.1.0", + "create-hmac": "^1.1.0", + "diffie-hellman": "^5.0.0", + "inherits": "^2.0.1", + "pbkdf2": "^3.0.3", + "public-encrypt": "^4.0.0", + "randombytes": "^2.0.0", + "randomfill": "^1.0.3" + }, + "engines": { + "node": "*" + } + }, + "node_modules/cyclist": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/cyclist/-/cyclist-0.2.2.tgz", + "integrity": "sha1-GzN5LhHpFKL9bW7WRHRkRE5fpkA=", + "dev": true + }, + "node_modules/date-now": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/date-now/-/date-now-0.1.4.tgz", + "integrity": "sha1-6vQ5/U1ISK105cx9vvIAZyueNFs=", + "dev": true + }, + "node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/decamelize": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-2.0.0.tgz", + "integrity": "sha512-Ikpp5scV3MSYxY39ymh45ZLEecsTdv/Xj2CaQfI8RLMuwi7XvjX9H/fhraiSuU+C5w5NTDu4ZU72xNiZnurBPg==", + "dev": true, + "dependencies": { + "xregexp": "4.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/decode-uri-component": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.0.tgz", + "integrity": "sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU=", + "dev": true, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/define-property": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz", + "integrity": "sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==", + "dev": true, + "dependencies": { + "is-descriptor": "^1.0.2", + "isobject": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/define-property/node_modules/is-accessor-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", + "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", + "dev": true, + "dependencies": { + "kind-of": "^6.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/define-property/node_modules/is-data-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", + "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", + "dev": true, + "dependencies": { + "kind-of": "^6.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/define-property/node_modules/is-descriptor": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", + "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", + "dev": true, + "dependencies": { + "is-accessor-descriptor": "^1.0.0", + "is-data-descriptor": "^1.0.0", + "kind-of": "^6.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/des.js": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/des.js/-/des.js-1.0.0.tgz", + "integrity": "sha1-wHTS4qpqipoH29YfmhXCzYPsjsw=", + "dev": true, + "dependencies": { + "inherits": "^2.0.1", + "minimalistic-assert": "^1.0.0" + } + }, + "node_modules/diffie-hellman": { + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/diffie-hellman/-/diffie-hellman-5.0.3.tgz", + "integrity": "sha512-kqag/Nl+f3GwyK25fhUMYj81BUOrZ9IuJsjIcDE5icNM9FJHAVm3VcUDxdLPoQtTuUylWm6ZIknYJwwaPxsUzg==", + "dev": true, + "dependencies": { + "bn.js": "^4.1.0", + "miller-rabin": "^4.0.0", + "randombytes": "^2.0.0" + } + }, + "node_modules/domain-browser": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/domain-browser/-/domain-browser-1.2.0.tgz", + "integrity": "sha512-jnjyiM6eRyZl2H+W8Q/zLMA481hzi0eszAaBUzIVnmYVDBbnLxVNnfu1HgEBvCbL+71FrxMl3E6lpKH7Ge3OXA==", + "dev": true, + "engines": { + "node": ">=0.4", + "npm": ">=1.2" + } + }, + "node_modules/duplexify": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/duplexify/-/duplexify-3.6.0.tgz", + "integrity": "sha512-fO3Di4tBKJpYTFHAxTU00BcfWMY9w24r/x21a6rZRbsD/ToUgGxsMbiGRmB7uVAXeGKXD9MwiLZa5E97EVgIRQ==", + "dev": true, + "dependencies": { + "end-of-stream": "^1.0.0", + "inherits": "^2.0.1", + "readable-stream": "^2.0.0", + "stream-shift": "^1.0.0" + } + }, + "node_modules/elliptic": { + "version": "6.4.0", + "resolved": "https://registry.npmjs.org/elliptic/-/elliptic-6.4.0.tgz", + "integrity": "sha1-ysmvh2LIWDYYcAPI3+GT5eLq5d8=", + "dev": true, + "dependencies": { + "bn.js": "^4.4.0", + "brorand": "^1.0.1", + "hash.js": "^1.0.0", + "hmac-drbg": "^1.0.0", + "inherits": "^2.0.1", + "minimalistic-assert": "^1.0.0", + "minimalistic-crypto-utils": "^1.0.0" + } + }, + "node_modules/emojis-list": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-2.1.0.tgz", + "integrity": "sha1-TapNnbAPmBmIDHn6RXrlsJof04k=", + "dev": true, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/end-of-stream": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.1.tgz", + "integrity": "sha512-1MkrZNvWTKCaigbn+W15elq2BB/L22nqrSY5DKlo3X6+vclJm8Bb5djXJBmEX6fS3+zCh/F4VBK5Z2KxJt4s2Q==", + "dev": true, + "dependencies": { + "once": "^1.4.0" + } + }, + "node_modules/enhanced-resolve": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-4.1.0.tgz", + "integrity": "sha512-F/7vkyTtyc/llOIn8oWclcB25KdRaiPBpZYDgJHgh/UHtpgT2p2eldQgtQnLtUvfMKPKxbRaQM/hHkvLHt1Vng==", + "dev": true, + "dependencies": { + "graceful-fs": "^4.1.2", + "memory-fs": "^0.4.0", + "tapable": "^1.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/errno": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/errno/-/errno-0.1.7.tgz", + "integrity": "sha512-MfrRBDWzIWifgq6tJj60gkAwtLNb6sQPlcFrSOflcP1aFmmruKQ2wRnze/8V6kgyz7H3FF8Npzv78mZ7XLLflg==", + "dev": true, + "dependencies": { + "prr": "~1.0.1" + }, + "bin": { + "errno": "cli.js" + } + }, + "node_modules/escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=", + "dev": true, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/eslint-scope": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-4.0.0.tgz", + "integrity": "sha512-1G6UTDi7Jc1ELFwnR58HV4fK9OQK4S6N985f166xqXxpjU6plxFISJa2Ba9KCQuFa8RCnj/lSFJbHo7UFDBnUA==", + "dev": true, + "dependencies": { + "esrecurse": "^4.1.0", + "estraverse": "^4.1.1" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/esrecurse": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.2.1.tgz", + "integrity": "sha512-64RBB++fIOAXPw3P9cy89qfMlvZEXZkqqJkjqqXIvzP5ezRZjW+lPWjw35UX/3EhUPFYbg5ER4JYgDw4007/DQ==", + "dev": true, + "dependencies": { + "estraverse": "^4.1.0" + }, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/estraverse": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.2.0.tgz", + "integrity": "sha1-De4/7TH81GlhjOc0IJn8GvoL2xM=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/events": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/events/-/events-1.1.1.tgz", + "integrity": "sha1-nr23Y1rQmccNzEwqH1AEKI6L2SQ=", + "dev": true, + "engines": { + "node": ">=0.4.x" + } + }, + "node_modules/evp_bytestokey": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/evp_bytestokey/-/evp_bytestokey-1.0.3.tgz", + "integrity": "sha512-/f2Go4TognH/KvCISP7OUsHn85hT9nUkxxA9BEWxFn+Oj9o8ZNLm/40hdlgSLyuOimsrTKLUMEorQexp/aPQeA==", + "dev": true, + "dependencies": { + "md5.js": "^1.3.4", + "safe-buffer": "^5.1.1" + } + }, + "node_modules/execa": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/execa/-/execa-0.7.0.tgz", + "integrity": "sha1-lEvs00zEHuMqY6n68nrVpl/Fl3c=", + "dev": true, + "dependencies": { + "cross-spawn": "^5.0.1", + "get-stream": "^3.0.0", + "is-stream": "^1.1.0", + "npm-run-path": "^2.0.0", + "p-finally": "^1.0.0", + "signal-exit": "^3.0.0", + "strip-eof": "^1.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/execa/node_modules/cross-spawn": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-5.1.0.tgz", + "integrity": "sha1-6L0O/uWPz/b4+UUQoKVUu/ojVEk=", + "dev": true, + "dependencies": { + "lru-cache": "^4.0.1", + "shebang-command": "^1.2.0", + "which": "^1.2.9" + } + }, + "node_modules/expand-brackets": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/expand-brackets/-/expand-brackets-2.1.4.tgz", + "integrity": "sha1-t3c14xXOMPa27/D4OwQVGiJEliI=", + "dev": true, + "dependencies": { + "debug": "^2.3.3", + "define-property": "^0.2.5", + "extend-shallow": "^2.0.1", + "posix-character-classes": "^0.1.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/expand-brackets/node_modules/define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", + "dev": true, + "dependencies": { + "is-descriptor": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/expand-brackets/node_modules/extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dev": true, + "dependencies": { + "is-extendable": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", + "integrity": "sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=", + "dev": true, + "dependencies": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/extend-shallow/node_modules/is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "dev": true, + "dependencies": { + "is-plain-object": "^2.0.4" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/external-editor": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/external-editor/-/external-editor-3.0.0.tgz", + "integrity": "sha512-mpkfj0FEdxrIhOC04zk85X7StNtr0yXnG7zCb+8ikO8OJi2jsHh5YGoknNTyXgsbHOf1WOOcVU3kPFWT2WgCkQ==", + "dev": true, + "dependencies": { + "chardet": "^0.5.0", + "iconv-lite": "^0.4.22", + "tmp": "^0.0.33" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/extglob": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/extglob/-/extglob-2.0.4.tgz", + "integrity": "sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==", + "dev": true, + "dependencies": { + "array-unique": "^0.3.2", + "define-property": "^1.0.0", + "expand-brackets": "^2.1.4", + "extend-shallow": "^2.0.1", + "fragment-cache": "^0.2.1", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/extglob/node_modules/define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", + "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", + "dev": true, + "dependencies": { + "is-descriptor": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/extglob/node_modules/extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dev": true, + "dependencies": { + "is-extendable": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/extglob/node_modules/is-accessor-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", + "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", + "dev": true, + "dependencies": { + "kind-of": "^6.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/extglob/node_modules/is-data-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", + "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", + "dev": true, + "dependencies": { + "kind-of": "^6.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/extglob/node_modules/is-descriptor": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", + "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", + "dev": true, + "dependencies": { + "is-accessor-descriptor": "^1.0.0", + "is-data-descriptor": "^1.0.0", + "kind-of": "^6.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/fast-deep-equal": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-2.0.1.tgz", + "integrity": "sha1-ewUhjd+WZ79/Nwv3/bLLFf3Qqkk=", + "dev": true + }, + "node_modules/fast-json-stable-stringify": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz", + "integrity": "sha1-1RQsDK7msRifh9OnYREGT4bIu/I=", + "dev": true + }, + "node_modules/figures": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/figures/-/figures-2.0.0.tgz", + "integrity": "sha1-OrGi0qYsi/tDGgyUy3l6L84nyWI=", + "dev": true, + "dependencies": { + "escape-string-regexp": "^1.0.5" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/fill-range": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", + "integrity": "sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=", + "dev": true, + "dependencies": { + "extend-shallow": "^2.0.1", + "is-number": "^3.0.0", + "repeat-string": "^1.6.1", + "to-regex-range": "^2.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/fill-range/node_modules/extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dev": true, + "dependencies": { + "is-extendable": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/find-cache-dir": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-1.0.0.tgz", + "integrity": "sha1-kojj6ePMN0hxfTnq3hfPcfww7m8=", + "dev": true, + "dependencies": { + "commondir": "^1.0.1", + "make-dir": "^1.0.0", + "pkg-dir": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/find-up": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-2.1.0.tgz", + "integrity": "sha1-RdG35QbHF93UgndaK3eSCjwMV6c=", + "dev": true, + "dependencies": { + "locate-path": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/flush-write-stream": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/flush-write-stream/-/flush-write-stream-1.0.3.tgz", + "integrity": "sha512-calZMC10u0FMUqoiunI2AiGIIUtUIvifNwkHhNupZH4cbNnW1Itkoh/Nf5HFYmDrwWPjrUxpkZT0KhuCq0jmGw==", + "dev": true, + "dependencies": { + "inherits": "^2.0.1", + "readable-stream": "^2.0.4" + } + }, + "node_modules/for-in": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz", + "integrity": "sha1-gQaNKVqBQuwKxybG4iAMMPttXoA=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/fragment-cache": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/fragment-cache/-/fragment-cache-0.2.1.tgz", + "integrity": "sha1-QpD60n8T6Jvn8zeZxrxaCr//DRk=", + "dev": true, + "dependencies": { + "map-cache": "^0.2.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/from2": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/from2/-/from2-2.3.0.tgz", + "integrity": "sha1-i/tVAr3kpNNs/e6gB/zKIdfjgq8=", + "dev": true, + "dependencies": { + "inherits": "^2.0.1", + "readable-stream": "^2.0.0" + } + }, + "node_modules/fs-write-stream-atomic": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/fs-write-stream-atomic/-/fs-write-stream-atomic-1.0.10.tgz", + "integrity": "sha1-tH31NJPvkR33VzHnCp3tAYnbQMk=", + "dev": true, + "dependencies": { + "graceful-fs": "^4.1.2", + "iferr": "^0.1.5", + "imurmurhash": "^0.1.4", + "readable-stream": "1 || 2" + } + }, + "node_modules/fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=", + "dev": true + }, + "node_modules/fsevents": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-1.2.4.tgz", + "integrity": "sha512-z8H8/diyk76B7q5wg+Ud0+CqzcAF3mBBI/bA5ne5zrRUUIvNkJY//D3BqyH571KuAC4Nr7Rw7CjWX4r0y9DvNg==", + "bundleDependencies": [ + "node-pre-gyp" + ], + "deprecated": "fsevents 1 will break on node v14+ and could be using insecure binaries. Upgrade to fsevents 2.", + "dev": true, + "hasInstallScript": true, + "optional": true, + "os": [ + "darwin" + ], + "dependencies": { + "nan": "^2.9.2", + "node-pre-gyp": "^0.10.0" + }, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/fsevents/node_modules/abbrev": { + "version": "1.1.1", + "integrity": "sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==", + "dev": true, + "inBundle": true, + "optional": true + }, + "node_modules/fsevents/node_modules/ansi-regex": { + "version": "2.1.1", + "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=", + "dev": true, + "inBundle": true, + "optional": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/fsevents/node_modules/aproba": { + "version": "1.2.0", + "integrity": "sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw==", + "dev": true, + "inBundle": true, + "optional": true + }, + "node_modules/fsevents/node_modules/are-we-there-yet": { + "version": "1.1.4", + "integrity": "sha1-u13KOCu5TwXhUZQ3PRb9O6HKEQ0=", + "dev": true, + "inBundle": true, + "optional": true, + "dependencies": { + "delegates": "^1.0.0", + "readable-stream": "^2.0.6" + } + }, + "node_modules/fsevents/node_modules/balanced-match": { + "version": "1.0.0", + "integrity": "sha1-ibTRmasr7kneFk6gK4nORi1xt2c=", + "dev": true, + "inBundle": true, + "optional": true + }, + "node_modules/fsevents/node_modules/brace-expansion": { + "version": "1.1.11", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dev": true, + "inBundle": true, + "optional": true, + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/fsevents/node_modules/chownr": { + "version": "1.0.1", + "integrity": "sha1-4qdQQqlVGQi+vSW4Uj1fl2nXkYE=", + "dev": true, + "inBundle": true, + "optional": true + }, + "node_modules/fsevents/node_modules/code-point-at": { + "version": "1.1.0", + "integrity": "sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c=", + "dev": true, + "inBundle": true, + "optional": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/fsevents/node_modules/concat-map": { + "version": "0.0.1", + "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=", + "dev": true, + "inBundle": true, + "optional": true + }, + "node_modules/fsevents/node_modules/console-control-strings": { + "version": "1.1.0", + "integrity": "sha1-PXz0Rk22RG6mRL9LOVB/mFEAjo4=", + "dev": true, + "inBundle": true, + "optional": true + }, + "node_modules/fsevents/node_modules/core-util-is": { + "version": "1.0.2", + "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=", + "dev": true, + "inBundle": true, + "optional": true + }, + "node_modules/fsevents/node_modules/debug": { + "version": "2.6.9", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "inBundle": true, + "optional": true, + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/fsevents/node_modules/deep-extend": { + "version": "0.5.1", + "integrity": "sha512-N8vBdOa+DF7zkRrDCsaOXoCs/E2fJfx9B9MrKnnSiHNh4ws7eSys6YQE4KvT1cecKmOASYQBhbKjeuDD9lT81w==", + "dev": true, + "inBundle": true, + "optional": true, + "engines": { + "iojs": ">=1.0.0", + "node": ">=0.10.0" + } + }, + "node_modules/fsevents/node_modules/delegates": { + "version": "1.0.0", + "integrity": "sha1-hMbhWbgZBP3KWaDvRM2HDTElD5o=", + "dev": true, + "inBundle": true, + "optional": true + }, + "node_modules/fsevents/node_modules/detect-libc": { + "version": "1.0.3", + "integrity": "sha1-+hN8S9aY7fVc1c0CrFWfkaTEups=", + "dev": true, + "inBundle": true, + "optional": true, + "bin": { + "detect-libc": "bin/detect-libc.js" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/fsevents/node_modules/fs-minipass": { + "version": "1.2.5", + "integrity": "sha512-JhBl0skXjUPCFH7x6x61gQxrKyXsxB5gcgePLZCwfyCGGsTISMoIeObbrvVeP6Xmyaudw4TT43qV2Gz+iyd2oQ==", + "dev": true, + "inBundle": true, + "optional": true, + "dependencies": { + "minipass": "^2.2.1" + } + }, + "node_modules/fsevents/node_modules/fs.realpath": { + "version": "1.0.0", + "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=", + "dev": true, + "inBundle": true, + "optional": true + }, + "node_modules/fsevents/node_modules/gauge": { + "version": "2.7.4", + "integrity": "sha1-LANAXHU4w51+s3sxcCLjJfsBi/c=", + "dev": true, + "inBundle": true, + "optional": true, + "dependencies": { + "aproba": "^1.0.3", + "console-control-strings": "^1.0.0", + "has-unicode": "^2.0.0", + "object-assign": "^4.1.0", + "signal-exit": "^3.0.0", + "string-width": "^1.0.1", + "strip-ansi": "^3.0.1", + "wide-align": "^1.1.0" + } + }, + "node_modules/fsevents/node_modules/glob": { + "version": "7.1.2", + "integrity": "sha512-MJTUg1kjuLeQCJ+ccE4Vpa6kKVXkPYJ2mOCQyUuKLcLQsdrMCpBPUi8qVE6+YuaJkozeA9NusTAw3hLr8Xe5EQ==", + "dev": true, + "inBundle": true, + "optional": true, + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.4", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + } + }, + "node_modules/fsevents/node_modules/has-unicode": { + "version": "2.0.1", + "integrity": "sha1-4Ob+aijPUROIVeCG0Wkedx3iqLk=", + "dev": true, + "inBundle": true, + "optional": true + }, + "node_modules/fsevents/node_modules/iconv-lite": { + "version": "0.4.21", + "integrity": "sha512-En5V9za5mBt2oUA03WGD3TwDv0MKAruqsuxstbMUZaj9W9k/m1CV/9py3l0L5kw9Bln8fdHQmzHSYtvpvTLpKw==", + "dev": true, + "inBundle": true, + "optional": true, + "dependencies": { + "safer-buffer": "^2.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/fsevents/node_modules/ignore-walk": { + "version": "3.0.1", + "integrity": "sha512-DTVlMx3IYPe0/JJcYP7Gxg7ttZZu3IInhuEhbchuqneY9wWe5Ojy2mXLBaQFUQmo0AW2r3qG7m1mg86js+gnlQ==", + "dev": true, + "inBundle": true, + "optional": true, + "dependencies": { + "minimatch": "^3.0.4" + } + }, + "node_modules/fsevents/node_modules/inflight": { + "version": "1.0.6", + "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=", + "dev": true, + "inBundle": true, + "optional": true, + "dependencies": { + "once": "^1.3.0", + "wrappy": "1" + } + }, + "node_modules/fsevents/node_modules/inherits": { + "version": "2.0.3", + "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=", + "dev": true, + "inBundle": true, + "optional": true + }, + "node_modules/fsevents/node_modules/ini": { + "version": "1.3.5", + "integrity": "sha512-RZY5huIKCMRWDUqZlEi72f/lmXKMvuszcMBduliQ3nnWbx9X/ZBQO7DijMEYS9EhHBb2qacRUMtC7svLwe0lcw==", + "deprecated": "Please update to ini >=1.3.6 to avoid a prototype pollution issue", + "dev": true, + "inBundle": true, + "optional": true, + "engines": { + "node": "*" + } + }, + "node_modules/fsevents/node_modules/is-fullwidth-code-point": { + "version": "1.0.0", + "integrity": "sha1-754xOG8DGn8NZDr4L95QxFfvAMs=", + "dev": true, + "inBundle": true, + "optional": true, + "dependencies": { + "number-is-nan": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/fsevents/node_modules/isarray": { + "version": "1.0.0", + "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=", + "dev": true, + "inBundle": true, + "optional": true + }, + "node_modules/fsevents/node_modules/minimatch": { + "version": "3.0.4", + "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==", + "dev": true, + "inBundle": true, + "optional": true, + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/fsevents/node_modules/minimist": { + "version": "0.0.8", + "integrity": "sha1-hX/Kv8M5fSYluCKCYuhqp6ARsF0=", + "dev": true, + "inBundle": true, + "optional": true + }, + "node_modules/fsevents/node_modules/minipass": { + "version": "2.2.4", + "integrity": "sha512-hzXIWWet/BzWhYs2b+u7dRHlruXhwdgvlTMDKC6Cb1U7ps6Ac6yQlR39xsbjWJE377YTCtKwIXIpJ5oP+j5y8g==", + "dev": true, + "inBundle": true, + "optional": true, + "dependencies": { + "safe-buffer": "^5.1.1", + "yallist": "^3.0.0" + } + }, + "node_modules/fsevents/node_modules/minizlib": { + "version": "1.1.0", + "integrity": "sha512-4T6Ur/GctZ27nHfpt9THOdRZNgyJ9FZchYO1ceg5S8Q3DNLCKYy44nCZzgCJgcvx2UM8czmqak5BCxJMrq37lA==", + "dev": true, + "inBundle": true, + "optional": true, + "dependencies": { + "minipass": "^2.2.1" + } + }, + "node_modules/fsevents/node_modules/mkdirp": { + "version": "0.5.1", + "integrity": "sha1-MAV0OOrGz3+MR2fzhkjWaX11yQM=", + "deprecated": "Legacy versions of mkdirp are no longer supported. Please update to mkdirp 1.x. (Note that the API surface has changed to use Promises in 1.x.)", + "dev": true, + "inBundle": true, + "optional": true, + "dependencies": { + "minimist": "0.0.8" + }, + "bin": { + "mkdirp": "bin/cmd.js" + } + }, + "node_modules/fsevents/node_modules/ms": { + "version": "2.0.0", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", + "dev": true, + "inBundle": true, + "optional": true + }, + "node_modules/fsevents/node_modules/needle": { + "version": "2.2.0", + "integrity": "sha512-eFagy6c+TYayorXw/qtAdSvaUpEbBsDwDyxYFgLZ0lTojfH7K+OdBqAF7TAFwDokJaGpubpSGG0wO3iC0XPi8w==", + "dev": true, + "inBundle": true, + "optional": true, + "dependencies": { + "debug": "^2.1.2", + "iconv-lite": "^0.4.4", + "sax": "^1.2.4" + }, + "bin": { + "needle": "bin/needle" + }, + "engines": { + "node": ">= 0.10.x" + } + }, + "node_modules/fsevents/node_modules/node-pre-gyp": { + "version": "0.10.0", + "integrity": "sha512-G7kEonQLRbcA/mOoFoxvlMrw6Q6dPf92+t/l0DFSMuSlDoWaI9JWIyPwK0jyE1bph//CUEL65/Fz1m2vJbmjQQ==", + "deprecated": "Please upgrade to @mapbox/node-pre-gyp: the non-scoped node-pre-gyp package is deprecated and only the @mapbox scoped package will recieve updates in the future", + "dev": true, + "inBundle": true, + "optional": true, + "dependencies": { + "detect-libc": "^1.0.2", + "mkdirp": "^0.5.1", + "needle": "^2.2.0", + "nopt": "^4.0.1", + "npm-packlist": "^1.1.6", + "npmlog": "^4.0.2", + "rc": "^1.1.7", + "rimraf": "^2.6.1", + "semver": "^5.3.0", + "tar": "^4" + }, + "bin": { + "node-pre-gyp": "bin/node-pre-gyp" + } + }, + "node_modules/fsevents/node_modules/nopt": { + "version": "4.0.1", + "integrity": "sha1-0NRoWv1UFRk8jHUFYC0NF81kR00=", + "dev": true, + "inBundle": true, + "optional": true, + "dependencies": { + "abbrev": "1", + "osenv": "^0.1.4" + }, + "bin": { + "nopt": "bin/nopt.js" + } + }, + "node_modules/fsevents/node_modules/npm-bundled": { + "version": "1.0.3", + "integrity": "sha512-ByQ3oJ/5ETLyglU2+8dBObvhfWXX8dtPZDMePCahptliFX2iIuhyEszyFk401PZUNQH20vvdW5MLjJxkwU80Ow==", + "dev": true, + "inBundle": true, + "optional": true + }, + "node_modules/fsevents/node_modules/npm-packlist": { + "version": "1.1.10", + "integrity": "sha512-AQC0Dyhzn4EiYEfIUjCdMl0JJ61I2ER9ukf/sLxJUcZHfo+VyEfz2rMJgLZSS1v30OxPQe1cN0LZA1xbcaVfWA==", + "dev": true, + "inBundle": true, + "optional": true, + "dependencies": { + "ignore-walk": "^3.0.1", + "npm-bundled": "^1.0.1" + } + }, + "node_modules/fsevents/node_modules/npmlog": { + "version": "4.1.2", + "integrity": "sha512-2uUqazuKlTaSI/dC8AzicUck7+IrEaOnN/e0jd3Xtt1KcGpwx30v50mL7oPyr/h9bL3E4aZccVwpwP+5W9Vjkg==", + "dev": true, + "inBundle": true, + "optional": true, + "dependencies": { + "are-we-there-yet": "~1.1.2", + "console-control-strings": "~1.1.0", + "gauge": "~2.7.3", + "set-blocking": "~2.0.0" + } + }, + "node_modules/fsevents/node_modules/number-is-nan": { + "version": "1.0.1", + "integrity": "sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0=", + "dev": true, + "inBundle": true, + "optional": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/fsevents/node_modules/object-assign": { + "version": "4.1.1", + "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=", + "dev": true, + "inBundle": true, + "optional": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/fsevents/node_modules/once": { + "version": "1.4.0", + "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", + "dev": true, + "inBundle": true, + "optional": true, + "dependencies": { + "wrappy": "1" + } + }, + "node_modules/fsevents/node_modules/os-homedir": { + "version": "1.0.2", + "integrity": "sha1-/7xJiDNuDoM94MFox+8VISGqf7M=", + "dev": true, + "inBundle": true, + "optional": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/fsevents/node_modules/os-tmpdir": { + "version": "1.0.2", + "integrity": "sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ=", + "dev": true, + "inBundle": true, + "optional": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/fsevents/node_modules/osenv": { + "version": "0.1.5", + "integrity": "sha512-0CWcCECdMVc2Rw3U5w9ZjqX6ga6ubk1xDVKxtBQPK7wis/0F2r9T6k4ydGYhecl7YUBxBVxhL5oisPsNxAPe2g==", + "dev": true, + "inBundle": true, + "optional": true, + "dependencies": { + "os-homedir": "^1.0.0", + "os-tmpdir": "^1.0.0" + } + }, + "node_modules/fsevents/node_modules/path-is-absolute": { + "version": "1.0.1", + "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=", + "dev": true, + "inBundle": true, + "optional": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/fsevents/node_modules/process-nextick-args": { + "version": "2.0.0", + "integrity": "sha512-MtEC1TqN0EU5nephaJ4rAtThHtC86dNN9qCuEhtshvpVBkAW5ZO7BASN9REnF9eoXGcRub+pFuKEpOHE+HbEMw==", + "dev": true, + "inBundle": true, + "optional": true + }, + "node_modules/fsevents/node_modules/rc": { + "version": "1.2.7", + "integrity": "sha512-LdLD8xD4zzLsAT5xyushXDNscEjB7+2ulnl8+r1pnESlYtlJtVSoCMBGr30eDRJ3+2Gq89jK9P9e4tCEH1+ywA==", + "dev": true, + "inBundle": true, + "optional": true, + "dependencies": { + "deep-extend": "^0.5.1", + "ini": "~1.3.0", + "minimist": "^1.2.0", + "strip-json-comments": "~2.0.1" + }, + "bin": { + "rc": "cli.js" + } + }, + "node_modules/fsevents/node_modules/rc/node_modules/minimist": { + "version": "1.2.0", + "integrity": "sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ=", + "dev": true, + "inBundle": true, + "optional": true + }, + "node_modules/fsevents/node_modules/readable-stream": { + "version": "2.3.6", + "integrity": "sha512-tQtKA9WIAhBF3+VLAseyMqZeBjW0AHJoxOtYqSUZNJxauErmLbVm2FW1y+J/YA9dUrAC39ITejlZWhVIwawkKw==", + "dev": true, + "inBundle": true, + "optional": true, + "dependencies": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "node_modules/fsevents/node_modules/rimraf": { + "version": "2.6.2", + "integrity": "sha512-lreewLK/BlghmxtfH36YYVg1i8IAce4TI7oao75I1g245+6BctqTVQiBP3YUJ9C6DQOXJmkYR9X9fCLtCOJc5w==", + "dev": true, + "inBundle": true, + "optional": true, + "dependencies": { + "glob": "^7.0.5" + }, + "bin": { + "rimraf": "bin.js" + } + }, + "node_modules/fsevents/node_modules/safe-buffer": { + "version": "5.1.1", + "integrity": "sha512-kKvNJn6Mm93gAczWVJg7wH+wGYWNrDHdWvpUmHyEsgCtIwwo3bqPtV4tR5tuPaUhTOo/kvhVwd8XwwOllGYkbg==", + "dev": true, + "inBundle": true, + "optional": true + }, + "node_modules/fsevents/node_modules/safer-buffer": { + "version": "2.1.2", + "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==", + "dev": true, + "inBundle": true, + "optional": true + }, + "node_modules/fsevents/node_modules/sax": { + "version": "1.2.4", + "integrity": "sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==", + "dev": true, + "inBundle": true, + "optional": true + }, + "node_modules/fsevents/node_modules/semver": { + "version": "5.5.0", + "integrity": "sha512-4SJ3dm0WAwWy/NVeioZh5AntkdJoWKxHxcmyP622fOkgHa4z3R0TdBJICINyaSDE6uNwVc8gZr+ZinwZAH4xIA==", + "dev": true, + "inBundle": true, + "optional": true, + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/fsevents/node_modules/set-blocking": { + "version": "2.0.0", + "integrity": "sha1-BF+XgtARrppoA93TgrJDkrPYkPc=", + "dev": true, + "inBundle": true, + "optional": true + }, + "node_modules/fsevents/node_modules/signal-exit": { + "version": "3.0.2", + "integrity": "sha1-tf3AjxKH6hF4Yo5BXiUTK3NkbG0=", + "dev": true, + "inBundle": true, + "optional": true + }, + "node_modules/fsevents/node_modules/string_decoder": { + "version": "1.1.1", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dev": true, + "inBundle": true, + "optional": true, + "dependencies": { + "safe-buffer": "~5.1.0" + } + }, + "node_modules/fsevents/node_modules/string-width": { + "version": "1.0.2", + "integrity": "sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M=", + "dev": true, + "inBundle": true, + "optional": true, + "dependencies": { + "code-point-at": "^1.0.0", + "is-fullwidth-code-point": "^1.0.0", + "strip-ansi": "^3.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/fsevents/node_modules/strip-ansi": { + "version": "3.0.1", + "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", + "dev": true, + "inBundle": true, + "optional": true, + "dependencies": { + "ansi-regex": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/fsevents/node_modules/strip-json-comments": { + "version": "2.0.1", + "integrity": "sha1-PFMZQukIwml8DsNEhYwobHygpgo=", + "dev": true, + "inBundle": true, + "optional": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/fsevents/node_modules/tar": { + "version": "4.4.1", + "integrity": "sha512-O+v1r9yN4tOsvl90p5HAP4AEqbYhx4036AGMm075fH9F8Qwi3oJ+v4u50FkT/KkvywNGtwkk0zRI+8eYm1X/xg==", + "dev": true, + "inBundle": true, + "optional": true, + "dependencies": { + "chownr": "^1.0.1", + "fs-minipass": "^1.2.5", + "minipass": "^2.2.4", + "minizlib": "^1.1.0", + "mkdirp": "^0.5.0", + "safe-buffer": "^5.1.1", + "yallist": "^3.0.2" + }, + "engines": { + "node": ">=4.5" + } + }, + "node_modules/fsevents/node_modules/util-deprecate": { + "version": "1.0.2", + "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=", + "dev": true, + "inBundle": true, + "optional": true + }, + "node_modules/fsevents/node_modules/wide-align": { + "version": "1.1.2", + "integrity": "sha512-ijDLlyQ7s6x1JgCLur53osjm/UXUYD9+0PbYKrBsYisYXzCxN+HC3mYDNy/dWdmf3AwqwU3CXwDCvsNgGK1S0w==", + "dev": true, + "inBundle": true, + "optional": true, + "dependencies": { + "string-width": "^1.0.2" + } + }, + "node_modules/fsevents/node_modules/wrappy": { + "version": "1.0.2", + "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=", + "dev": true, + "inBundle": true, + "optional": true + }, + "node_modules/fsevents/node_modules/yallist": { + "version": "3.0.2", + "integrity": "sha1-hFK0u36Dx8GI2AQcGoN8dz1ti7k=", + "dev": true, + "inBundle": true, + "optional": true + }, + "node_modules/get-caller-file": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-1.0.3.tgz", + "integrity": "sha512-3t6rVToeoZfYSGd8YoLFR2DJkiQrIiUrGcjvFX2mDw3bn6k2OtwHN0TNCLbBO+w8qTvimhDkv+LSscbJY1vE6w==", + "dev": true + }, + "node_modules/get-stream": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-3.0.0.tgz", + "integrity": "sha1-jpQ9E1jcN1VQVOy+LtsFqhdO3hQ=", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/get-value": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/get-value/-/get-value-2.0.6.tgz", + "integrity": "sha1-3BXKHGcjh8p2vTesCjlbogQqLCg=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/glob": { + "version": "7.1.2", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.2.tgz", + "integrity": "sha512-MJTUg1kjuLeQCJ+ccE4Vpa6kKVXkPYJ2mOCQyUuKLcLQsdrMCpBPUi8qVE6+YuaJkozeA9NusTAw3hLr8Xe5EQ==", + "dev": true, + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.4", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + } + }, + "node_modules/glob-parent": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-3.1.0.tgz", + "integrity": "sha1-nmr2KZ2NO9K9QEMIMr0RPfkGxa4=", + "dev": true, + "dependencies": { + "is-glob": "^3.1.0", + "path-dirname": "^1.0.0" + } + }, + "node_modules/glob-parent/node_modules/is-glob": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz", + "integrity": "sha1-e6WuJCF4BKxwcHuWkiVnSGzD6Eo=", + "dev": true, + "dependencies": { + "is-extglob": "^2.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/global-modules-path": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/global-modules-path/-/global-modules-path-2.3.0.tgz", + "integrity": "sha512-HchvMJNYh9dGSCy8pOQ2O8u/hoXaL+0XhnrwH0RyLiSXMMTl9W3N6KUU73+JFOg5PGjtzl6VZzUQsnrpm7Szag==", + "dev": true + }, + "node_modules/graceful-fs": { + "version": "4.1.11", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.1.11.tgz", + "integrity": "sha1-Dovf5NHduIVNZOBOp8AOKgJuVlg=", + "dev": true, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/has-value": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-value/-/has-value-1.0.0.tgz", + "integrity": "sha1-GLKB2lhbHFxR3vJMkw7SmgvmsXc=", + "dev": true, + "dependencies": { + "get-value": "^2.0.6", + "has-values": "^1.0.0", + "isobject": "^3.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/has-values": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-values/-/has-values-1.0.0.tgz", + "integrity": "sha1-lbC2P+whRmGab+V/51Yo1aOe/k8=", + "dev": true, + "dependencies": { + "is-number": "^3.0.0", + "kind-of": "^4.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/has-values/node_modules/kind-of": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-4.0.0.tgz", + "integrity": "sha1-IIE989cSkosgc3hpGkUGb65y3Vc=", + "dev": true, + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/hash-base": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/hash-base/-/hash-base-3.0.4.tgz", + "integrity": "sha1-X8hoaEfs1zSZQDMZprCj8/auSRg=", + "dev": true, + "dependencies": { + "inherits": "^2.0.1", + "safe-buffer": "^5.0.1" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/hash.js": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/hash.js/-/hash.js-1.1.5.tgz", + "integrity": "sha512-eWI5HG9Np+eHV1KQhisXWwM+4EPPYe5dFX1UZZH7k/E3JzDEazVH+VGlZi6R94ZqImq+A3D1mCEtrFIfg/E7sA==", + "dev": true, + "dependencies": { + "inherits": "^2.0.3", + "minimalistic-assert": "^1.0.1" + } + }, + "node_modules/hmac-drbg": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/hmac-drbg/-/hmac-drbg-1.0.1.tgz", + "integrity": "sha1-0nRXAQJabHdabFRXk+1QL8DGSaE=", + "dev": true, + "dependencies": { + "hash.js": "^1.0.3", + "minimalistic-assert": "^1.0.0", + "minimalistic-crypto-utils": "^1.0.1" + } + }, + "node_modules/https-browserify": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/https-browserify/-/https-browserify-1.0.0.tgz", + "integrity": "sha1-7AbBDgo0wPL68Zn3/X/Hj//QPHM=", + "dev": true + }, + "node_modules/iconv-lite": { + "version": "0.4.23", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.23.tgz", + "integrity": "sha512-neyTUVFtahjf0mB3dZT77u+8O0QB89jFdnBkd5P1JgYPbPaia3gXXOVL2fq8VyU2gMMD7SaN7QukTB/pmXYvDA==", + "dev": true, + "dependencies": { + "safer-buffer": ">= 2.1.2 < 3" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/ieee754": { + "version": "1.1.12", + "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.1.12.tgz", + "integrity": "sha512-GguP+DRY+pJ3soyIiGPTvdiVXjZ+DbXOxGpXn3eMvNW4x4irjqXm4wHKscC+TfxSJ0yw/S1F24tqdMNsMZTiLA==", + "dev": true + }, + "node_modules/iferr": { + "version": "0.1.5", + "resolved": "https://registry.npmjs.org/iferr/-/iferr-0.1.5.tgz", + "integrity": "sha1-xg7taebY/bazEEofy8ocGS3FtQE=", + "dev": true + }, + "node_modules/import-local": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/import-local/-/import-local-1.0.0.tgz", + "integrity": "sha512-vAaZHieK9qjGo58agRBg+bhHX3hoTZU/Oa3GESWLz7t1U62fk63aHuDJJEteXoDeTCcPmUT+z38gkHPZkkmpmQ==", + "dev": true, + "dependencies": { + "pkg-dir": "^2.0.0", + "resolve-cwd": "^2.0.0" + }, + "bin": { + "import-local-fixture": "fixtures/cli.js" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/imurmurhash": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", + "integrity": "sha1-khi5srkoojixPcT7a21XbyMUU+o=", + "dev": true, + "engines": { + "node": ">=0.8.19" + } + }, + "node_modules/indexof": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/indexof/-/indexof-0.0.1.tgz", + "integrity": "sha1-gtwzbSMrkGIXnQWrMpOmYFn9Q10=", + "dev": true + }, + "node_modules/inflight": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=", + "dev": true, + "dependencies": { + "once": "^1.3.0", + "wrappy": "1" + } + }, + "node_modules/inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=", + "dev": true + }, + "node_modules/inquirer": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/inquirer/-/inquirer-6.0.0.tgz", + "integrity": "sha512-tISQWRwtcAgrz+SHPhTH7d3e73k31gsOy6i1csonLc0u1dVK/wYvuOnFeiWqC5OXFIYbmrIFInef31wbT8MEJg==", + "dev": true, + "dependencies": { + "ansi-escapes": "^3.0.0", + "chalk": "^2.0.0", + "cli-cursor": "^2.1.0", + "cli-width": "^2.0.0", + "external-editor": "^3.0.0", + "figures": "^2.0.0", + "lodash": "^4.3.0", + "mute-stream": "0.0.7", + "run-async": "^2.2.0", + "rxjs": "^6.1.0", + "string-width": "^2.1.0", + "strip-ansi": "^4.0.0", + "through": "^2.3.6" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/interpret": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/interpret/-/interpret-1.1.0.tgz", + "integrity": "sha1-ftGxQQxqDg94z5XTuEQMY/eLhhQ=", + "dev": true + }, + "node_modules/invert-kv": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/invert-kv/-/invert-kv-1.0.0.tgz", + "integrity": "sha1-EEqOSqym09jNFXqO+L+rLXo//bY=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-accessor-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", + "integrity": "sha1-qeEss66Nh2cn7u84Q/igiXtcmNY=", + "dev": true, + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-accessor-descriptor/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-binary-path": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-1.0.1.tgz", + "integrity": "sha1-dfFmQrSA8YenEcgUFh/TpKdlWJg=", + "dev": true, + "dependencies": { + "binary-extensions": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-buffer": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz", + "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==", + "dev": true + }, + "node_modules/is-data-descriptor": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", + "integrity": "sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=", + "dev": true, + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-data-descriptor/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", + "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", + "dev": true, + "dependencies": { + "is-accessor-descriptor": "^0.1.6", + "is-data-descriptor": "^0.1.4", + "kind-of": "^5.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-descriptor/node_modules/kind-of": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", + "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", + "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-fullwidth-code-point": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", + "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/is-glob": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.0.tgz", + "integrity": "sha1-lSHHaEXMJhCoUgPd8ICpWML/q8A=", + "dev": true, + "dependencies": { + "is-extglob": "^2.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-number": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", + "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", + "dev": true, + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-number/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-plain-object": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", + "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", + "dev": true, + "dependencies": { + "isobject": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-promise": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-promise/-/is-promise-2.1.0.tgz", + "integrity": "sha1-eaKp7OfwlugPNtKy87wWwf9L8/o=", + "dev": true + }, + "node_modules/is-stream": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz", + "integrity": "sha1-EtSj3U5o4Lec6428hBc66A2RykQ=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-windows": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-windows/-/is-windows-1.0.2.tgz", + "integrity": "sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=", + "dev": true + }, + "node_modules/isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=", + "dev": true + }, + "node_modules/isobject": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", + "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/json-parse-better-errors": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz", + "integrity": "sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==", + "dev": true + }, + "node_modules/json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", + "dev": true + }, + "node_modules/json5": { + "version": "0.5.1", + "resolved": "https://registry.npmjs.org/json5/-/json5-0.5.1.tgz", + "integrity": "sha1-Hq3nrMASA0rYTiOWdn6tn6VJWCE=", + "dev": true, + "bin": { + "json5": "lib/cli.js" + } + }, + "node_modules/kind-of": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.2.tgz", + "integrity": "sha512-s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/lcid": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/lcid/-/lcid-1.0.0.tgz", + "integrity": "sha1-MIrMr6C8SDo4Z7S28rlQYlHRuDU=", + "dev": true, + "dependencies": { + "invert-kv": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/loader-runner": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/loader-runner/-/loader-runner-2.3.0.tgz", + "integrity": "sha1-9IKuqC1UPgeSFwDVpG7yb9rGuKI=", + "dev": true, + "engines": { + "node": ">=4.3.0 <5.0.0 || >=5.10" + } + }, + "node_modules/loader-utils": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.1.0.tgz", + "integrity": "sha1-yYrvSIvM7aL/teLeZG1qdUQp9c0=", + "dev": true, + "dependencies": { + "big.js": "^3.1.3", + "emojis-list": "^2.0.0", + "json5": "^0.5.0" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/locate-path": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-2.0.0.tgz", + "integrity": "sha1-K1aLJl7slExtnA3pw9u7ygNUzY4=", + "dev": true, + "dependencies": { + "p-locate": "^2.0.0", + "path-exists": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/lodash": { + "version": "4.17.10", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.10.tgz", + "integrity": "sha512-UejweD1pDoXu+AD825lWwp4ZGtSwgnpZxb3JDViD7StjQz+Nb/6l093lx4OQ0foGWNRoc19mWy7BzL+UAK2iVg==", + "dev": true + }, + "node_modules/lodash.debounce": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz", + "integrity": "sha1-gteb/zCmfEAF/9XiUVMArZyk168=", + "dev": true + }, + "node_modules/long": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/long/-/long-3.2.0.tgz", + "integrity": "sha1-2CG3E4yhy1gcFymQ7xTbIAtcR0s=", + "dev": true, + "engines": { + "node": ">=0.6" + } + }, + "node_modules/lru-cache": { + "version": "4.1.3", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-4.1.3.tgz", + "integrity": "sha512-fFEhvcgzuIoJVUF8fYr5KR0YqxD238zgObTps31YdADwPPAp82a4M8TrckkWyx7ekNlf9aBcVn81cFwwXngrJA==", + "dev": true, + "dependencies": { + "pseudomap": "^1.0.2", + "yallist": "^2.1.2" + } + }, + "node_modules/make-dir": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-1.3.0.tgz", + "integrity": "sha512-2w31R7SJtieJJnQtGc7RVL2StM2vGYVfqUOvUDxH6bC6aJTxPxTF0GnIgCyu7tjockiUWAYQRbxa7vKn34s5sQ==", + "dev": true, + "dependencies": { + "pify": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/mamacro": { + "version": "0.0.3", + "resolved": "https://registry.npmjs.org/mamacro/-/mamacro-0.0.3.tgz", + "integrity": "sha512-qMEwh+UujcQ+kbz3T6V+wAmO2U8veoq2w+3wY8MquqwVA3jChfwY+Tk52GZKDfACEPjuZ7r2oJLejwpt8jtwTA==", + "dev": true + }, + "node_modules/map-cache": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/map-cache/-/map-cache-0.2.2.tgz", + "integrity": "sha1-wyq9C9ZSXZsFFkW7TyasXcmKDb8=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/map-visit": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/map-visit/-/map-visit-1.0.0.tgz", + "integrity": "sha1-7Nyo8TFE5mDxtb1B8S80edmN+48=", + "dev": true, + "dependencies": { + "object-visit": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/md5.js": { + "version": "1.3.4", + "resolved": "https://registry.npmjs.org/md5.js/-/md5.js-1.3.4.tgz", + "integrity": "sha1-6b296UogpawYsENA/Fdk1bCdkB0=", + "dev": true, + "dependencies": { + "hash-base": "^3.0.0", + "inherits": "^2.0.1" + } + }, + "node_modules/mem": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/mem/-/mem-1.1.0.tgz", + "integrity": "sha1-Xt1StIXKHZAP5kiVUFOZoN+kX3Y=", + "dev": true, + "dependencies": { + "mimic-fn": "^1.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/memory-fs": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/memory-fs/-/memory-fs-0.4.1.tgz", + "integrity": "sha1-OpoguEYlI+RHz7x+i7gO1me/xVI=", + "dev": true, + "dependencies": { + "errno": "^0.1.3", + "readable-stream": "^2.0.1" + } + }, + "node_modules/micromatch": { + "version": "3.1.10", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", + "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", + "dev": true, + "dependencies": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.3.1", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "extglob": "^2.0.4", + "fragment-cache": "^0.2.1", + "kind-of": "^6.0.2", + "nanomatch": "^1.2.9", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/miller-rabin": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/miller-rabin/-/miller-rabin-4.0.1.tgz", + "integrity": "sha512-115fLhvZVqWwHPbClyntxEVfVDfl9DLLTuJvq3g2O/Oxi8AiNouAHvDSzHS0viUJc+V5vm3eq91Xwqn9dp4jRA==", + "dev": true, + "dependencies": { + "bn.js": "^4.0.0", + "brorand": "^1.0.1" + }, + "bin": { + "miller-rabin": "bin/miller-rabin" + } + }, + "node_modules/mimic-fn": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-1.2.0.tgz", + "integrity": "sha512-jf84uxzwiuiIVKiOLpfYk7N46TSy8ubTonmneY9vrpHNAnp0QBt2BxWV9dO3/j+BoVAb+a5G6YDPW3M5HOdMWQ==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/minimalistic-assert": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz", + "integrity": "sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==", + "dev": true + }, + "node_modules/minimalistic-crypto-utils": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz", + "integrity": "sha1-9sAMHAsIIkblxNmd+4x8CDsrWCo=", + "dev": true + }, + "node_modules/minimatch": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz", + "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==", + "dev": true, + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/minimist": { + "version": "0.0.8", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz", + "integrity": "sha1-hX/Kv8M5fSYluCKCYuhqp6ARsF0=", + "dev": true + }, + "node_modules/mississippi": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/mississippi/-/mississippi-2.0.0.tgz", + "integrity": "sha512-zHo8v+otD1J10j/tC+VNoGK9keCuByhKovAvdn74dmxJl9+mWHnx6EMsDN4lgRoMI/eYo2nchAxniIbUPb5onw==", + "dev": true, + "dependencies": { + "concat-stream": "^1.5.0", + "duplexify": "^3.4.2", + "end-of-stream": "^1.1.0", + "flush-write-stream": "^1.0.0", + "from2": "^2.1.0", + "parallel-transform": "^1.1.0", + "pump": "^2.0.1", + "pumpify": "^1.3.3", + "stream-each": "^1.1.0", + "through2": "^2.0.0" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/mixin-deep": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/mixin-deep/-/mixin-deep-1.3.1.tgz", + "integrity": "sha512-8ZItLHeEgaqEvd5lYBXfm4EZSFCX29Jb9K+lAHhDKzReKBQKj3R+7NOF6tjqYi9t4oI8VUfaWITJQm86wnXGNQ==", + "deprecated": "Critical bug fixed in v2.0.1, please upgrade to the latest version.", + "dev": true, + "dependencies": { + "for-in": "^1.0.2", + "is-extendable": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/mixin-deep/node_modules/is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "dev": true, + "dependencies": { + "is-plain-object": "^2.0.4" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/mkdirp": { + "version": "0.5.1", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz", + "integrity": "sha1-MAV0OOrGz3+MR2fzhkjWaX11yQM=", + "deprecated": "Legacy versions of mkdirp are no longer supported. Please update to mkdirp 1.x. (Note that the API surface has changed to use Promises in 1.x.)", + "dev": true, + "dependencies": { + "minimist": "0.0.8" + }, + "bin": { + "mkdirp": "bin/cmd.js" + } + }, + "node_modules/move-concurrently": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/move-concurrently/-/move-concurrently-1.0.1.tgz", + "integrity": "sha1-viwAX9oy4LKa8fBdfEszIUxwH5I=", + "dev": true, + "dependencies": { + "aproba": "^1.1.1", + "copy-concurrently": "^1.0.0", + "fs-write-stream-atomic": "^1.0.8", + "mkdirp": "^0.5.1", + "rimraf": "^2.5.4", + "run-queue": "^1.0.3" + } + }, + "node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", + "dev": true + }, + "node_modules/mute-stream": { + "version": "0.0.7", + "resolved": "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.7.tgz", + "integrity": "sha1-MHXOk7whuPq0PhvE2n6BFe0ee6s=", + "dev": true + }, + "node_modules/nan": { + "version": "2.10.0", + "resolved": "https://registry.npmjs.org/nan/-/nan-2.10.0.tgz", + "integrity": "sha512-bAdJv7fBLhWC+/Bls0Oza+mvTaNQtP+1RyhhhvD95pgUJz6XM5IzgmxOkItJ9tkoCiplvAnXI1tNmmUD/eScyA==", + "dev": true, + "optional": true + }, + "node_modules/nanomatch": { + "version": "1.2.13", + "resolved": "https://registry.npmjs.org/nanomatch/-/nanomatch-1.2.13.tgz", + "integrity": "sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==", + "dev": true, + "dependencies": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "fragment-cache": "^0.2.1", + "is-windows": "^1.0.2", + "kind-of": "^6.0.2", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/neo-async": { + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.5.1.tgz", + "integrity": "sha512-3KL3fvuRkZ7s4IFOMfztb7zJp3QaVWnBeGoJlgB38XnCRPj/0tLzzLG5IB8NYOHbJ8g8UGrgZv44GLDk6CxTxA==", + "dev": true + }, + "node_modules/nice-try": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/nice-try/-/nice-try-1.0.4.tgz", + "integrity": "sha512-2NpiFHqC87y/zFke0fC0spBXL3bBsoh/p5H1EFhshxjCR5+0g2d6BiXbUFz9v1sAcxsk2htp2eQnNIci2dIYcA==", + "dev": true + }, + "node_modules/node-libs-browser": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/node-libs-browser/-/node-libs-browser-2.1.0.tgz", + "integrity": "sha512-5AzFzdoIMb89hBGMZglEegffzgRg+ZFoUmisQ8HI4j1KDdpx13J0taNp2y9xPbur6W61gepGDDotGBVQ7mfUCg==", + "dev": true, + "dependencies": { + "assert": "^1.1.1", + "browserify-zlib": "^0.2.0", + "buffer": "^4.3.0", + "console-browserify": "^1.1.0", + "constants-browserify": "^1.0.0", + "crypto-browserify": "^3.11.0", + "domain-browser": "^1.1.1", + "events": "^1.0.0", + "https-browserify": "^1.0.0", + "os-browserify": "^0.3.0", + "path-browserify": "0.0.0", + "process": "^0.11.10", + "punycode": "^1.2.4", + "querystring-es3": "^0.2.0", + "readable-stream": "^2.3.3", + "stream-browserify": "^2.0.1", + "stream-http": "^2.7.2", + "string_decoder": "^1.0.0", + "timers-browserify": "^2.0.4", + "tty-browserify": "0.0.0", + "url": "^0.11.0", + "util": "^0.10.3", + "vm-browserify": "0.0.4" + } + }, + "node_modules/node-libs-browser/node_modules/punycode": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz", + "integrity": "sha1-wNWmOycYgArY4esPpSachN1BhF4=", + "dev": true + }, + "node_modules/normalize-path": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz", + "integrity": "sha1-GrKLVW4Zg2Oowab35vogE3/mrtk=", + "dev": true, + "dependencies": { + "remove-trailing-separator": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/npm-run-path": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz", + "integrity": "sha1-NakjLfo11wZ7TLLd8jV7GHFTbF8=", + "dev": true, + "dependencies": { + "path-key": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/number-is-nan": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.1.tgz", + "integrity": "sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-copy": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/object-copy/-/object-copy-0.1.0.tgz", + "integrity": "sha1-fn2Fi3gb18mRpBupde04EnVOmYw=", + "dev": true, + "dependencies": { + "copy-descriptor": "^0.1.0", + "define-property": "^0.2.5", + "kind-of": "^3.0.3" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-copy/node_modules/define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", + "dev": true, + "dependencies": { + "is-descriptor": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-copy/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-visit": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/object-visit/-/object-visit-1.0.1.tgz", + "integrity": "sha1-95xEk68MU3e1n+OdOV5BBC3QRbs=", + "dev": true, + "dependencies": { + "isobject": "^3.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object.pick": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/object.pick/-/object.pick-1.3.0.tgz", + "integrity": "sha1-h6EKxMFpS9Lhy/U1kaZhQftd10c=", + "dev": true, + "dependencies": { + "isobject": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", + "dev": true, + "dependencies": { + "wrappy": "1" + } + }, + "node_modules/onetime": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-2.0.1.tgz", + "integrity": "sha1-BnQoIw/WdEOyeUsiu6UotoZ5YtQ=", + "dev": true, + "dependencies": { + "mimic-fn": "^1.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/os-browserify": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/os-browserify/-/os-browserify-0.3.0.tgz", + "integrity": "sha1-hUNzx/XCMVkU/Jv8a9gjj92h7Cc=", + "dev": true + }, + "node_modules/os-locale": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/os-locale/-/os-locale-2.1.0.tgz", + "integrity": "sha512-3sslG3zJbEYcaC4YVAvDorjGxc7tv6KVATnLPZONiljsUncvihe9BQoVCEs0RZ1kmf4Hk9OBqlZfJZWI4GanKA==", + "dev": true, + "dependencies": { + "execa": "^0.7.0", + "lcid": "^1.0.0", + "mem": "^1.1.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/os-tmpdir": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz", + "integrity": "sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/p-finally": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz", + "integrity": "sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4=", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/p-limit": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-1.3.0.tgz", + "integrity": "sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==", + "dev": true, + "dependencies": { + "p-try": "^1.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/p-locate": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-2.0.0.tgz", + "integrity": "sha1-IKAQOyIqcMj9OcwuWAaA893l7EM=", + "dev": true, + "dependencies": { + "p-limit": "^1.1.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/p-try": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/p-try/-/p-try-1.0.0.tgz", + "integrity": "sha1-y8ec26+P1CKOE/Yh8rGiN8GyB7M=", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/pako": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/pako/-/pako-1.0.6.tgz", + "integrity": "sha512-lQe48YPsMJAig+yngZ87Lus+NF+3mtu7DVOBu6b/gHO1YpKwIj5AWjZ/TOS7i46HD/UixzWb1zeWDZfGZ3iYcg==", + "dev": true + }, + "node_modules/parallel-transform": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/parallel-transform/-/parallel-transform-1.1.0.tgz", + "integrity": "sha1-1BDwZbBdojCB/NEPKIVMKb2jOwY=", + "dev": true, + "dependencies": { + "cyclist": "~0.2.2", + "inherits": "^2.0.3", + "readable-stream": "^2.1.5" + } + }, + "node_modules/parse-asn1": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/parse-asn1/-/parse-asn1-5.1.1.tgz", + "integrity": "sha512-KPx7flKXg775zZpnp9SxJlz00gTd4BmJ2yJufSc44gMCRrRQ7NSzAcSJQfifuOLgW6bEi+ftrALtsgALeB2Adw==", + "dev": true, + "dependencies": { + "asn1.js": "^4.0.0", + "browserify-aes": "^1.0.0", + "create-hash": "^1.1.0", + "evp_bytestokey": "^1.0.0", + "pbkdf2": "^3.0.3" + } + }, + "node_modules/pascalcase": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/pascalcase/-/pascalcase-0.1.1.tgz", + "integrity": "sha1-s2PlXoAGym/iF4TS2yK9FdeRfxQ=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/path-browserify": { + "version": "0.0.0", + "resolved": "https://registry.npmjs.org/path-browserify/-/path-browserify-0.0.0.tgz", + "integrity": "sha1-oLhwcpquIUAFt9UDLsLLuw+0RRo=", + "dev": true + }, + "node_modules/path-dirname": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/path-dirname/-/path-dirname-1.0.2.tgz", + "integrity": "sha1-zDPSTVJeCZpTiMAzbG4yuRYGCeA=", + "dev": true + }, + "node_modules/path-exists": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", + "integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/path-key": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", + "integrity": "sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A=", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/pbkdf2": { + "version": "3.0.16", + "resolved": "https://registry.npmjs.org/pbkdf2/-/pbkdf2-3.0.16.tgz", + "integrity": "sha512-y4CXP3thSxqf7c0qmOF+9UeOTrifiVTIM+u7NWlq+PRsHbr7r7dpCmvzrZxa96JJUNi0Y5w9VqG5ZNeCVMoDcA==", + "dev": true, + "dependencies": { + "create-hash": "^1.1.2", + "create-hmac": "^1.1.4", + "ripemd160": "^2.0.1", + "safe-buffer": "^5.0.1", + "sha.js": "^2.4.8" + }, + "engines": { + "node": ">=0.12" + } + }, + "node_modules/pify": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", + "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/pkg-dir": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-2.0.0.tgz", + "integrity": "sha1-9tXREJ4Z1j7fQo4L1X4Sd3YVM0s=", + "dev": true, + "dependencies": { + "find-up": "^2.1.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/posix-character-classes": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/posix-character-classes/-/posix-character-classes-0.1.1.tgz", + "integrity": "sha1-AerA/jta9xoqbAL+q7jB/vfgDqs=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/process": { + "version": "0.11.10", + "resolved": "https://registry.npmjs.org/process/-/process-0.11.10.tgz", + "integrity": "sha1-czIwDoQBYb2j5podHZGn1LwW8YI=", + "dev": true, + "engines": { + "node": ">= 0.6.0" + } + }, + "node_modules/process-nextick-args": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.0.tgz", + "integrity": "sha512-MtEC1TqN0EU5nephaJ4rAtThHtC86dNN9qCuEhtshvpVBkAW5ZO7BASN9REnF9eoXGcRub+pFuKEpOHE+HbEMw==", + "dev": true + }, + "node_modules/promise-inflight": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/promise-inflight/-/promise-inflight-1.0.1.tgz", + "integrity": "sha1-mEcocL8igTL8vdhoEputEsPAKeM=", + "dev": true + }, + "node_modules/prr": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/prr/-/prr-1.0.1.tgz", + "integrity": "sha1-0/wRS6BplaRexok/SEzrHXj19HY=", + "dev": true + }, + "node_modules/pseudomap": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/pseudomap/-/pseudomap-1.0.2.tgz", + "integrity": "sha1-8FKijacOYYkX7wqKw0wa5aaChrM=", + "dev": true + }, + "node_modules/public-encrypt": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/public-encrypt/-/public-encrypt-4.0.2.tgz", + "integrity": "sha512-4kJ5Esocg8X3h8YgJsKAuoesBgB7mqH3eowiDzMUPKiRDDE7E/BqqZD1hnTByIaAFiwAw246YEltSq7tdrOH0Q==", + "dev": true, + "dependencies": { + "bn.js": "^4.1.0", + "browserify-rsa": "^4.0.0", + "create-hash": "^1.1.0", + "parse-asn1": "^5.0.0", + "randombytes": "^2.0.1" + } + }, + "node_modules/pump": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/pump/-/pump-2.0.1.tgz", + "integrity": "sha512-ruPMNRkN3MHP1cWJc9OWr+T/xDP0jhXYCLfJcBuX54hhfIBnaQmAUMfDcG4DM5UMWByBbJY69QSphm3jtDKIkA==", + "dev": true, + "dependencies": { + "end-of-stream": "^1.1.0", + "once": "^1.3.1" + } + }, + "node_modules/pumpify": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/pumpify/-/pumpify-1.5.1.tgz", + "integrity": "sha512-oClZI37HvuUJJxSKKrC17bZ9Cu0ZYhEAGPsPUy9KlMUmv9dKX2o77RUmq7f3XjIxbwyGwYzbzQ1L2Ks8sIradQ==", + "dev": true, + "dependencies": { + "duplexify": "^3.6.0", + "inherits": "^2.0.3", + "pump": "^2.0.0" + } + }, + "node_modules/punycode": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz", + "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/querystring": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/querystring/-/querystring-0.2.0.tgz", + "integrity": "sha1-sgmEkgO7Jd+CDadW50cAWHhSFiA=", + "deprecated": "The querystring API is considered Legacy. new code should use the URLSearchParams API instead.", + "dev": true, + "engines": { + "node": ">=0.4.x" + } + }, + "node_modules/querystring-es3": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/querystring-es3/-/querystring-es3-0.2.1.tgz", + "integrity": "sha1-nsYfeQSYdXB9aUFFlv2Qek1xHnM=", + "dev": true, + "engines": { + "node": ">=0.4.x" + } + }, + "node_modules/randombytes": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.0.6.tgz", + "integrity": "sha512-CIQ5OFxf4Jou6uOKe9t1AOgqpeU5fd70A8NPdHSGeYXqXsPe6peOwI0cUl88RWZ6sP1vPMV3avd/R6cZ5/sP1A==", + "dev": true, + "dependencies": { + "safe-buffer": "^5.1.0" + } + }, + "node_modules/randomfill": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/randomfill/-/randomfill-1.0.4.tgz", + "integrity": "sha512-87lcbR8+MhcWcUiQ+9e+Rwx8MyR2P7qnt15ynUlbm3TU/fjbgz4GsvfSUDTemtCCtVCqb4ZcEFlyPNTh9bBTLw==", + "dev": true, + "dependencies": { + "randombytes": "^2.0.5", + "safe-buffer": "^5.1.0" + } + }, + "node_modules/readable-stream": { + "version": "2.3.6", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.6.tgz", + "integrity": "sha512-tQtKA9WIAhBF3+VLAseyMqZeBjW0AHJoxOtYqSUZNJxauErmLbVm2FW1y+J/YA9dUrAC39ITejlZWhVIwawkKw==", + "dev": true, + "dependencies": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "node_modules/readdirp": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-2.1.0.tgz", + "integrity": "sha1-TtCtBg3zBzMAxIRANz9y0cxkLXg=", + "dev": true, + "dependencies": { + "graceful-fs": "^4.1.2", + "minimatch": "^3.0.2", + "readable-stream": "^2.0.2", + "set-immediate-shim": "^1.0.1" + }, + "engines": { + "node": ">=0.6" + } + }, + "node_modules/regex-not": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/regex-not/-/regex-not-1.0.2.tgz", + "integrity": "sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A==", + "dev": true, + "dependencies": { + "extend-shallow": "^3.0.2", + "safe-regex": "^1.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/remove-trailing-separator": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz", + "integrity": "sha1-wkvOKig62tW8P1jg1IJJuSN52O8=", + "dev": true + }, + "node_modules/repeat-element": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/repeat-element/-/repeat-element-1.1.2.tgz", + "integrity": "sha1-7wiaF40Ug7quTZPrmLT55OEdmQo=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/repeat-string": { + "version": "1.6.1", + "resolved": "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz", + "integrity": "sha1-jcrkcOHIirwtYA//Sndihtp15jc=", + "dev": true, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/require-directory": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", + "integrity": "sha1-jGStX9MNqxyXbiNE/+f3kqam30I=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/require-main-filename": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-1.0.1.tgz", + "integrity": "sha1-l/cXtp1IeE9fUmpsWqj/3aBVpNE=", + "dev": true + }, + "node_modules/resolve-cwd": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-2.0.0.tgz", + "integrity": "sha1-AKn3OHVW4nA46uIyyqNypqWbZlo=", + "dev": true, + "dependencies": { + "resolve-from": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/resolve-from": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-3.0.0.tgz", + "integrity": "sha1-six699nWiBvItuZTM17rywoYh0g=", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/resolve-url": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/resolve-url/-/resolve-url-0.2.1.tgz", + "integrity": "sha1-LGN/53yJOv0qZj/iGqkIAGjiBSo=", + "deprecated": "https://github.com/lydell/resolve-url#deprecated", + "dev": true + }, + "node_modules/restore-cursor": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-2.0.0.tgz", + "integrity": "sha1-n37ih/gv0ybU/RYpI9YhKe7g368=", + "dev": true, + "dependencies": { + "onetime": "^2.0.0", + "signal-exit": "^3.0.2" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/ret": { + "version": "0.1.15", + "resolved": "https://registry.npmjs.org/ret/-/ret-0.1.15.tgz", + "integrity": "sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==", + "dev": true, + "engines": { + "node": ">=0.12" + } + }, + "node_modules/rimraf": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.6.2.tgz", + "integrity": "sha512-lreewLK/BlghmxtfH36YYVg1i8IAce4TI7oao75I1g245+6BctqTVQiBP3YUJ9C6DQOXJmkYR9X9fCLtCOJc5w==", + "dev": true, + "dependencies": { + "glob": "^7.0.5" + }, + "bin": { + "rimraf": "bin.js" + } + }, + "node_modules/ripemd160": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/ripemd160/-/ripemd160-2.0.2.tgz", + "integrity": "sha512-ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA==", + "dev": true, + "dependencies": { + "hash-base": "^3.0.0", + "inherits": "^2.0.1" + } + }, + "node_modules/run-async": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/run-async/-/run-async-2.3.0.tgz", + "integrity": "sha1-A3GrSuC91yDUFm19/aZP96RFpsA=", + "dev": true, + "dependencies": { + "is-promise": "^2.1.0" + }, + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/run-queue": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/run-queue/-/run-queue-1.0.3.tgz", + "integrity": "sha1-6Eg5bwV9Ij8kOGkkYY4laUFh7Ec=", + "dev": true, + "dependencies": { + "aproba": "^1.1.1" + } + }, + "node_modules/rxjs": { + "version": "6.2.2", + "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-6.2.2.tgz", + "integrity": "sha512-0MI8+mkKAXZUF9vMrEoPnaoHkfzBPP4IGwUYRJhIRJF6/w3uByO1e91bEHn8zd43RdkTMKiooYKmwz7RH6zfOQ==", + "dev": true, + "dependencies": { + "tslib": "^1.9.0" + }, + "engines": { + "npm": ">=2.0.0" + } + }, + "node_modules/safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", + "dev": true + }, + "node_modules/safe-regex": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/safe-regex/-/safe-regex-1.1.0.tgz", + "integrity": "sha1-QKNmnzsHfR6UPURinhV91IAjvy4=", + "dev": true, + "dependencies": { + "ret": "~0.1.10" + } + }, + "node_modules/safer-buffer": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", + "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==", + "dev": true + }, + "node_modules/schema-utils": { + "version": "0.4.5", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-0.4.5.tgz", + "integrity": "sha512-yYrjb9TX2k/J1Y5UNy3KYdZq10xhYcF8nMpAW6o3hy6Q8WSIEf9lJHG/ePnOBfziPM3fvQwfOwa13U/Fh8qTfA==", + "dev": true, + "dependencies": { + "ajv": "^6.1.0", + "ajv-keywords": "^3.1.0" + }, + "engines": { + "node": ">= 4.8.0 || >= 6.9.0 || >= 8.9.0" + }, + "peerDependencies": { + "webpack": "^2.0.0 || ^3.0.0 || ^4.0.0" + } + }, + "node_modules/semver": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.5.0.tgz", + "integrity": "sha512-4SJ3dm0WAwWy/NVeioZh5AntkdJoWKxHxcmyP622fOkgHa4z3R0TdBJICINyaSDE6uNwVc8gZr+ZinwZAH4xIA==", + "dev": true, + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/serialize-javascript": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-1.5.0.tgz", + "integrity": "sha512-Ga8c8NjAAp46Br4+0oZ2WxJCwIzwP60Gq1YPgU+39PiTVxyed/iKE/zyZI6+UlVYH5Q4PaQdHhcegIFPZTUfoQ==", + "dev": true + }, + "node_modules/set-blocking": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz", + "integrity": "sha1-BF+XgtARrppoA93TgrJDkrPYkPc=", + "dev": true + }, + "node_modules/set-immediate-shim": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz", + "integrity": "sha1-SysbJ+uAip+NzEgaWOXlb1mfP2E=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/set-value": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/set-value/-/set-value-2.0.0.tgz", + "integrity": "sha512-hw0yxk9GT/Hr5yJEYnHNKYXkIA8mVJgd9ditYZCe16ZczcaELYYcfvaXesNACk2O8O0nTiPQcQhGUQj8JLzeeg==", + "deprecated": "Critical bug fixed in v3.0.1, please upgrade to the latest version.", + "dev": true, + "dependencies": { + "extend-shallow": "^2.0.1", + "is-extendable": "^0.1.1", + "is-plain-object": "^2.0.3", + "split-string": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/set-value/node_modules/extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dev": true, + "dependencies": { + "is-extendable": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/setimmediate": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/setimmediate/-/setimmediate-1.0.5.tgz", + "integrity": "sha1-KQy7Iy4waULX1+qbg3Mqt4VvgoU=", + "dev": true + }, + "node_modules/sha.js": { + "version": "2.4.11", + "resolved": "https://registry.npmjs.org/sha.js/-/sha.js-2.4.11.tgz", + "integrity": "sha512-QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ==", + "dev": true, + "dependencies": { + "inherits": "^2.0.1", + "safe-buffer": "^5.0.1" + }, + "bin": { + "sha.js": "bin.js" + } + }, + "node_modules/shebang-command": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", + "integrity": "sha1-RKrGW2lbAzmJaMOfNj/uXer98eo=", + "dev": true, + "dependencies": { + "shebang-regex": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/shebang-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", + "integrity": "sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/signal-exit": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.2.tgz", + "integrity": "sha1-tf3AjxKH6hF4Yo5BXiUTK3NkbG0=", + "dev": true + }, + "node_modules/snapdragon": { + "version": "0.8.2", + "resolved": "https://registry.npmjs.org/snapdragon/-/snapdragon-0.8.2.tgz", + "integrity": "sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg==", + "dev": true, + "dependencies": { + "base": "^0.11.1", + "debug": "^2.2.0", + "define-property": "^0.2.5", + "extend-shallow": "^2.0.1", + "map-cache": "^0.2.2", + "source-map": "^0.5.6", + "source-map-resolve": "^0.5.0", + "use": "^3.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon-node": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/snapdragon-node/-/snapdragon-node-2.1.1.tgz", + "integrity": "sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw==", + "dev": true, + "dependencies": { + "define-property": "^1.0.0", + "isobject": "^3.0.0", + "snapdragon-util": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon-node/node_modules/define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", + "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", + "dev": true, + "dependencies": { + "is-descriptor": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon-node/node_modules/is-accessor-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", + "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", + "dev": true, + "dependencies": { + "kind-of": "^6.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon-node/node_modules/is-data-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", + "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", + "dev": true, + "dependencies": { + "kind-of": "^6.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon-node/node_modules/is-descriptor": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", + "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", + "dev": true, + "dependencies": { + "is-accessor-descriptor": "^1.0.0", + "is-data-descriptor": "^1.0.0", + "kind-of": "^6.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon-util": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/snapdragon-util/-/snapdragon-util-3.0.1.tgz", + "integrity": "sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ==", + "dev": true, + "dependencies": { + "kind-of": "^3.2.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon-util/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon/node_modules/define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", + "dev": true, + "dependencies": { + "is-descriptor": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon/node_modules/extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dev": true, + "dependencies": { + "is-extendable": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/source-list-map": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/source-list-map/-/source-list-map-2.0.0.tgz", + "integrity": "sha512-I2UmuJSRr/T8jisiROLU3A3ltr+swpniSmNPI4Ml3ZCX6tVnDsuZzK7F2hl5jTqbZBWCEKlj5HRQiPExXLgE8A==", + "dev": true + }, + "node_modules/source-map": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", + "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/source-map-resolve": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/source-map-resolve/-/source-map-resolve-0.5.2.tgz", + "integrity": "sha512-MjqsvNwyz1s0k81Goz/9vRBe9SZdB09Bdw+/zYyO+3CuPk6fouTaxscHkgtE8jKvf01kVfl8riHzERQ/kefaSA==", + "dev": true, + "dependencies": { + "atob": "^2.1.1", + "decode-uri-component": "^0.2.0", + "resolve-url": "^0.2.1", + "source-map-url": "^0.4.0", + "urix": "^0.1.0" + } + }, + "node_modules/source-map-url": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/source-map-url/-/source-map-url-0.4.0.tgz", + "integrity": "sha1-PpNdfd1zYxuXZZlW1VEo6HtQhKM=", + "dev": true + }, + "node_modules/split-string": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/split-string/-/split-string-3.1.0.tgz", + "integrity": "sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw==", + "dev": true, + "dependencies": { + "extend-shallow": "^3.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/ssri": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/ssri/-/ssri-5.3.0.tgz", + "integrity": "sha512-XRSIPqLij52MtgoQavH/x/dU1qVKtWUAAZeOHsR9c2Ddi4XerFy3mc1alf+dLJKl9EUIm/Ht+EowFkTUOA6GAQ==", + "dev": true, + "dependencies": { + "safe-buffer": "^5.1.1" + } + }, + "node_modules/static-extend": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/static-extend/-/static-extend-0.1.2.tgz", + "integrity": "sha1-YICcOcv/VTNyJv1eC1IPNB8ftcY=", + "dev": true, + "dependencies": { + "define-property": "^0.2.5", + "object-copy": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/static-extend/node_modules/define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", + "dev": true, + "dependencies": { + "is-descriptor": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/stream-browserify": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/stream-browserify/-/stream-browserify-2.0.1.tgz", + "integrity": "sha1-ZiZu5fm9uZQKTkUUyvtDu3Hlyds=", + "dev": true, + "dependencies": { + "inherits": "~2.0.1", + "readable-stream": "^2.0.2" + } + }, + "node_modules/stream-each": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/stream-each/-/stream-each-1.2.2.tgz", + "integrity": "sha512-mc1dbFhGBxvTM3bIWmAAINbqiuAk9TATcfIQC8P+/+HJefgaiTlMn2dHvkX8qlI12KeYKSQ1Ua9RrIqrn1VPoA==", + "dev": true, + "dependencies": { + "end-of-stream": "^1.1.0", + "stream-shift": "^1.0.0" + } + }, + "node_modules/stream-http": { + "version": "2.8.3", + "resolved": "https://registry.npmjs.org/stream-http/-/stream-http-2.8.3.tgz", + "integrity": "sha512-+TSkfINHDo4J+ZobQLWiMouQYB+UVYFttRA94FpEzzJ7ZdqcL4uUUQ7WkdkI4DSozGmgBUE/a47L+38PenXhUw==", + "dev": true, + "dependencies": { + "builtin-status-codes": "^3.0.0", + "inherits": "^2.0.1", + "readable-stream": "^2.3.6", + "to-arraybuffer": "^1.0.0", + "xtend": "^4.0.0" + } + }, + "node_modules/stream-shift": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/stream-shift/-/stream-shift-1.0.0.tgz", + "integrity": "sha1-1cdSgl5TZ+eG944Y5EXqIjoVWVI=", + "dev": true + }, + "node_modules/string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dev": true, + "dependencies": { + "safe-buffer": "~5.1.0" + } + }, + "node_modules/string-width": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz", + "integrity": "sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==", + "dev": true, + "dependencies": { + "is-fullwidth-code-point": "^2.0.0", + "strip-ansi": "^4.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/strip-ansi": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz", + "integrity": "sha1-qEeQIusaw2iocTibY1JixQXuNo8=", + "dev": true, + "dependencies": { + "ansi-regex": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/strip-eof": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/strip-eof/-/strip-eof-1.0.0.tgz", + "integrity": "sha1-u0P/VZim6wXYm1n80SnJgzE2Br8=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/supports-color": { + "version": "5.4.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.4.0.tgz", + "integrity": "sha512-zjaXglF5nnWpsq470jSv6P9DwPvgLkuapYmfDm3JWOm0vkNTVF2tI4UrN2r6jH1qM/uc/WtxYY1hYoA2dOKj5w==", + "dev": true, + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/tapable": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/tapable/-/tapable-1.0.0.tgz", + "integrity": "sha512-dQRhbNQkRnaqauC7WqSJ21EEksgT0fYZX2lqXzGkpo8JNig9zGZTYoMGvyI2nWmXlE2VSVXVDu7wLVGu/mQEsg==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/through": { + "version": "2.3.8", + "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz", + "integrity": "sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU=", + "dev": true + }, + "node_modules/through2": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.3.tgz", + "integrity": "sha1-AARWmzfHx0ujnEPzzteNGtlBQL4=", + "dev": true, + "dependencies": { + "readable-stream": "^2.1.5", + "xtend": "~4.0.1" + } + }, + "node_modules/timers-browserify": { + "version": "2.0.10", + "resolved": "https://registry.npmjs.org/timers-browserify/-/timers-browserify-2.0.10.tgz", + "integrity": "sha512-YvC1SV1XdOUaL6gx5CoGroT3Gu49pK9+TZ38ErPldOWW4j49GI1HKs9DV+KGq/w6y+LZ72W1c8cKz2vzY+qpzg==", + "dev": true, + "dependencies": { + "setimmediate": "^1.0.4" + }, + "engines": { + "node": ">=0.6.0" + } + }, + "node_modules/tmp": { + "version": "0.0.33", + "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.0.33.tgz", + "integrity": "sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==", + "dev": true, + "dependencies": { + "os-tmpdir": "~1.0.2" + }, + "engines": { + "node": ">=0.6.0" + } + }, + "node_modules/to-arraybuffer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz", + "integrity": "sha1-fSKbH8xjfkZsoIEYCDanqr/4P0M=", + "dev": true + }, + "node_modules/to-object-path": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/to-object-path/-/to-object-path-0.3.0.tgz", + "integrity": "sha1-KXWIt7Dn4KwI4E5nL4XB9JmeF68=", + "dev": true, + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/to-object-path/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/to-regex": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/to-regex/-/to-regex-3.0.2.tgz", + "integrity": "sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw==", + "dev": true, + "dependencies": { + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "regex-not": "^1.0.2", + "safe-regex": "^1.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/to-regex-range": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz", + "integrity": "sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=", + "dev": true, + "dependencies": { + "is-number": "^3.0.0", + "repeat-string": "^1.6.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/ts-loader": { + "version": "4.4.2", + "resolved": "https://registry.npmjs.org/ts-loader/-/ts-loader-4.4.2.tgz", + "integrity": "sha512-Z3Y1a7A0KZZ1s/mAZkt74l1NAF7Y5xUhD1V9VB8/1eUlUOk8Qa/oo46tO2Uu5kQ3wXypOlbv77lLQySjXEDcdw==", + "dev": true, + "dependencies": { + "chalk": "^2.3.0", + "enhanced-resolve": "^4.0.0", + "loader-utils": "^1.0.2", + "micromatch": "^3.1.4", + "semver": "^5.0.1" + }, + "engines": { + "node": ">=6.11.5" + } + }, + "node_modules/tslib": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.9.3.tgz", + "integrity": "sha512-4krF8scpejhaOgqzBEcGM7yDIEfi0/8+8zDRZhNZZ2kjmHJ4hv3zCbQWxoJGz1iw5U0Jl0nma13xzHXcncMavQ==", + "dev": true + }, + "node_modules/tty-browserify": { + "version": "0.0.0", + "resolved": "https://registry.npmjs.org/tty-browserify/-/tty-browserify-0.0.0.tgz", + "integrity": "sha1-oVe6QC2iTpv5V/mqadUk7tQpAaY=", + "dev": true + }, + "node_modules/typedarray": { + "version": "0.0.6", + "resolved": "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz", + "integrity": "sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c=", + "dev": true + }, + "node_modules/typescript": { + "version": "2.9.2", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-2.9.2.tgz", + "integrity": "sha512-Gr4p6nFNaoufRIY4NMdpQRNmgxVIGMs4Fcu/ujdYk3nAZqk7supzBE9idmvfZIlH/Cuj//dvi+019qEue9lV0w==", + "dev": true, + "bin": { + "tsc": "bin/tsc", + "tsserver": "bin/tsserver" + }, + "engines": { + "node": ">=4.2.0" + } + }, + "node_modules/uglify-es": { + "version": "3.3.9", + "resolved": "https://registry.npmjs.org/uglify-es/-/uglify-es-3.3.9.tgz", + "integrity": "sha512-r+MU0rfv4L/0eeW3xZrd16t4NZfK8Ld4SWVglYBb7ez5uXFWHuVRs6xCTrf1yirs9a4j4Y27nn7SRfO6v67XsQ==", + "deprecated": "support for ECMAScript is superseded by `uglify-js` as of v3.13.0", + "dev": true, + "dependencies": { + "commander": "~2.13.0", + "source-map": "~0.6.1" + }, + "bin": { + "uglifyjs": "bin/uglifyjs" + }, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/uglify-es/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/uglifyjs-webpack-plugin": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/uglifyjs-webpack-plugin/-/uglifyjs-webpack-plugin-1.2.7.tgz", + "integrity": "sha512-1VicfKhCYHLS8m1DCApqBhoulnASsEoJ/BvpUpP4zoNAPpKzdH+ghk0olGJMmwX2/jprK2j3hAHdUbczBSy2FA==", + "dev": true, + "dependencies": { + "cacache": "^10.0.4", + "find-cache-dir": "^1.0.0", + "schema-utils": "^0.4.5", + "serialize-javascript": "^1.4.0", + "source-map": "^0.6.1", + "uglify-es": "^3.3.4", + "webpack-sources": "^1.1.0", + "worker-farm": "^1.5.2" + }, + "engines": { + "node": ">= 4.8 < 5.0.0 || >= 5.10" + }, + "peerDependencies": { + "webpack": "^2.0.0 || ^3.0.0 || ^4.0.0" + } + }, + "node_modules/uglifyjs-webpack-plugin/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/union-value": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/union-value/-/union-value-1.0.0.tgz", + "integrity": "sha1-XHHDTLW61dzr4+oM0IIHulqhrqQ=", + "dev": true, + "dependencies": { + "arr-union": "^3.1.0", + "get-value": "^2.0.6", + "is-extendable": "^0.1.1", + "set-value": "^0.4.3" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/union-value/node_modules/extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dev": true, + "dependencies": { + "is-extendable": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/union-value/node_modules/set-value": { + "version": "0.4.3", + "resolved": "https://registry.npmjs.org/set-value/-/set-value-0.4.3.tgz", + "integrity": "sha1-fbCPnT0i3H945Trzw79GZuzfzPE=", + "deprecated": "Critical bug fixed in v3.0.1, please upgrade to the latest version.", + "dev": true, + "dependencies": { + "extend-shallow": "^2.0.1", + "is-extendable": "^0.1.1", + "is-plain-object": "^2.0.1", + "to-object-path": "^0.3.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/unique-filename": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/unique-filename/-/unique-filename-1.1.0.tgz", + "integrity": "sha1-0F8v5AMlYIcfMOk8vnNe6iAVFPM=", + "dev": true, + "dependencies": { + "unique-slug": "^2.0.0" + } + }, + "node_modules/unique-slug": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/unique-slug/-/unique-slug-2.0.0.tgz", + "integrity": "sha1-22Z258fMBimHj/GWCXx4hVrp9Ks=", + "dev": true, + "dependencies": { + "imurmurhash": "^0.1.4" + } + }, + "node_modules/unset-value": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/unset-value/-/unset-value-1.0.0.tgz", + "integrity": "sha1-g3aHP30jNRef+x5vw6jtDfyKtVk=", + "dev": true, + "dependencies": { + "has-value": "^0.3.1", + "isobject": "^3.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/unset-value/node_modules/has-value": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/has-value/-/has-value-0.3.1.tgz", + "integrity": "sha1-ex9YutpiyoJ+wKIHgCVlSEWZXh8=", + "dev": true, + "dependencies": { + "get-value": "^2.0.3", + "has-values": "^0.1.4", + "isobject": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/unset-value/node_modules/has-value/node_modules/isobject": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz", + "integrity": "sha1-8GVWEJaj8dou9GJy+BXIQNh+DIk=", + "dev": true, + "dependencies": { + "isarray": "1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/unset-value/node_modules/has-values": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/has-values/-/has-values-0.1.4.tgz", + "integrity": "sha1-bWHeldkd/Km5oCCJrThL/49it3E=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/upath": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/upath/-/upath-1.1.0.tgz", + "integrity": "sha512-bzpH/oBhoS/QI/YtbkqCg6VEiPYjSZtrHQM6/QnJS6OL9pKUFLqb3aFh4Scvwm45+7iAgiMkLhSbaZxUqmrprw==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/uri-js": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.2.2.tgz", + "integrity": "sha512-KY9Frmirql91X2Qgjry0Wd4Y+YTdrdZheS8TFwvkbLWf/G5KNJDCh6pKL5OZctEW4+0Baa5idK2ZQuELRwPznQ==", + "dev": true, + "dependencies": { + "punycode": "^2.1.0" + } + }, + "node_modules/urix": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/urix/-/urix-0.1.0.tgz", + "integrity": "sha1-2pN/emLiH+wf0Y1Js1wpNQZ6bHI=", + "deprecated": "Please see https://github.com/lydell/urix#deprecated", + "dev": true + }, + "node_modules/url": { + "version": "0.11.0", + "resolved": "https://registry.npmjs.org/url/-/url-0.11.0.tgz", + "integrity": "sha1-ODjpfPxgUh63PFJajlW/3Z4uKPE=", + "dev": true, + "dependencies": { + "punycode": "1.3.2", + "querystring": "0.2.0" + } + }, + "node_modules/url/node_modules/punycode": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.3.2.tgz", + "integrity": "sha1-llOgNvt8HuQjQvIyXM7v6jkmxI0=", + "dev": true + }, + "node_modules/use": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/use/-/use-3.1.1.tgz", + "integrity": "sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/util": { + "version": "0.10.4", + "resolved": "https://registry.npmjs.org/util/-/util-0.10.4.tgz", + "integrity": "sha512-0Pm9hTQ3se5ll1XihRic3FDIku70C+iHUdT/W926rSgHV5QgXsYbKZN8MSC3tJtSkhuROzvsQjAaFENRXr+19A==", + "dev": true, + "dependencies": { + "inherits": "2.0.3" + } + }, + "node_modules/util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=", + "dev": true + }, + "node_modules/v8-compile-cache": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/v8-compile-cache/-/v8-compile-cache-2.0.0.tgz", + "integrity": "sha512-qNdTUMaCjPs4eEnM3W9H94R3sU70YCuT+/ST7nUf+id1bVOrdjrpUaeZLqPBPRph3hsgn4a4BvwpxhHZx+oSDg==", + "dev": true + }, + "node_modules/vm-browserify": { + "version": "0.0.4", + "resolved": "https://registry.npmjs.org/vm-browserify/-/vm-browserify-0.0.4.tgz", + "integrity": "sha1-XX6kW7755Kb/ZflUOOCofDV9WnM=", + "dev": true, + "dependencies": { + "indexof": "0.0.1" + } + }, + "node_modules/watchpack": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-1.6.0.tgz", + "integrity": "sha512-i6dHe3EyLjMmDlU1/bGQpEw25XSjkJULPuAVKCbNRefQVq48yXKUpwg538F7AZTf9kyr57zj++pQFltUa5H7yA==", + "dev": true, + "dependencies": { + "chokidar": "^2.0.2", + "graceful-fs": "^4.1.2", + "neo-async": "^2.5.0" + } + }, + "node_modules/webpack": { + "version": "4.16.3", + "resolved": "https://registry.npmjs.org/webpack/-/webpack-4.16.3.tgz", + "integrity": "sha512-3VcrVoFgzSz1IYgga71YpU3HO89Al5bSnDOj9RJQPsy+FNyI1sFsUyJITn3pktNuaRBlQT0usvKZE3GgkPGAIw==", + "dev": true, + "dependencies": { + "@webassemblyjs/ast": "1.5.13", + "@webassemblyjs/helper-module-context": "1.5.13", + "@webassemblyjs/wasm-edit": "1.5.13", + "@webassemblyjs/wasm-opt": "1.5.13", + "@webassemblyjs/wasm-parser": "1.5.13", + "acorn": "^5.6.2", + "acorn-dynamic-import": "^3.0.0", + "ajv": "^6.1.0", + "ajv-keywords": "^3.1.0", + "chrome-trace-event": "^1.0.0", + "enhanced-resolve": "^4.1.0", + "eslint-scope": "^4.0.0", + "json-parse-better-errors": "^1.0.2", + "loader-runner": "^2.3.0", + "loader-utils": "^1.1.0", + "memory-fs": "~0.4.1", + "micromatch": "^3.1.8", + "mkdirp": "~0.5.0", + "neo-async": "^2.5.0", + "node-libs-browser": "^2.0.0", + "schema-utils": "^0.4.4", + "tapable": "^1.0.0", + "uglifyjs-webpack-plugin": "^1.2.4", + "watchpack": "^1.5.0", + "webpack-sources": "^1.0.1" + }, + "bin": { + "webpack": "bin/webpack.js" + }, + "engines": { + "node": ">=6.11.5" + } + }, + "node_modules/webpack-cli": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/webpack-cli/-/webpack-cli-3.1.0.tgz", + "integrity": "sha512-p5NeKDtYwjZozUWq6kGNs9w+Gtw/CPvyuXjXn2HMdz8Tie+krjEg8oAtonvIyITZdvpF7XG9xDHwscLr2c+ugQ==", + "dev": true, + "dependencies": { + "chalk": "^2.4.1", + "cross-spawn": "^6.0.5", + "enhanced-resolve": "^4.0.0", + "global-modules-path": "^2.1.0", + "import-local": "^1.0.0", + "inquirer": "^6.0.0", + "interpret": "^1.1.0", + "loader-utils": "^1.1.0", + "supports-color": "^5.4.0", + "v8-compile-cache": "^2.0.0", + "yargs": "^12.0.1" + }, + "bin": { + "webpack-cli": "bin/cli.js" + }, + "engines": { + "node": ">=6.11.5" + }, + "peerDependencies": { + "webpack": "^4.x.x" + } + }, + "node_modules/webpack-sources": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-1.1.0.tgz", + "integrity": "sha512-aqYp18kPphgoO5c/+NaUvEeACtZjMESmDChuD3NBciVpah3XpMEU9VAAtIaB1BsfJWWTSdv8Vv1m3T0aRk2dUw==", + "dev": true, + "dependencies": { + "source-list-map": "^2.0.0", + "source-map": "~0.6.1" + } + }, + "node_modules/webpack-sources/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/which": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "dev": true, + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "which": "bin/which" + } + }, + "node_modules/which-module": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/which-module/-/which-module-2.0.0.tgz", + "integrity": "sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho=", + "dev": true + }, + "node_modules/worker-farm": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/worker-farm/-/worker-farm-1.6.0.tgz", + "integrity": "sha512-6w+3tHbM87WnSWnENBUvA2pxJPLhQUg5LKwUQHq3r+XPhIM+Gh2R5ycbwPCyuGbNg+lPgdcnQUhuC02kJCvffQ==", + "dev": true, + "dependencies": { + "errno": "~0.1.7" + } + }, + "node_modules/wrap-ansi": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-2.1.0.tgz", + "integrity": "sha1-2Pw9KE3QV5T+hJc8rs3Rz4JP3YU=", + "dev": true, + "dependencies": { + "string-width": "^1.0.1", + "strip-ansi": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/wrap-ansi/node_modules/ansi-regex": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", + "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/wrap-ansi/node_modules/is-fullwidth-code-point": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz", + "integrity": "sha1-754xOG8DGn8NZDr4L95QxFfvAMs=", + "dev": true, + "dependencies": { + "number-is-nan": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/wrap-ansi/node_modules/string-width": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz", + "integrity": "sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M=", + "dev": true, + "dependencies": { + "code-point-at": "^1.0.0", + "is-fullwidth-code-point": "^1.0.0", + "strip-ansi": "^3.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/wrap-ansi/node_modules/strip-ansi": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", + "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", + "dev": true, + "dependencies": { + "ansi-regex": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=", + "dev": true + }, + "node_modules/xregexp": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/xregexp/-/xregexp-4.0.0.tgz", + "integrity": "sha512-PHyM+sQouu7xspQQwELlGwwd05mXUFqwFYfqPO0cC7x4fxyHnnuetmQr6CjJiafIDoH4MogHb9dOoJzR/Y4rFg==", + "dev": true + }, + "node_modules/xtend": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.1.tgz", + "integrity": "sha1-pcbVMr5lbiPbgg77lDofBJmNY68=", + "dev": true, + "engines": { + "node": ">=0.4" + } + }, + "node_modules/y18n": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.0.tgz", + "integrity": "sha512-r9S/ZyXu/Xu9q1tYlpsLIsa3EeLXXk0VwlxqTcFRfg9EhMW+17kbt9G0NrgCmhGb5vT2hyhJZLfDGx+7+5Uj/w==", + "dev": true + }, + "node_modules/yallist": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-2.1.2.tgz", + "integrity": "sha1-HBH5IY8HYImkfdUS+TxmmaaoHVI=", + "dev": true + }, + "node_modules/yargs": { + "version": "12.0.1", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-12.0.1.tgz", + "integrity": "sha512-B0vRAp1hRX4jgIOWFtjfNjd9OA9RWYZ6tqGA9/I/IrTMsxmKvtWy+ersM+jzpQqbC3YfLzeABPdeTgcJ9eu1qQ==", + "dev": true, + "dependencies": { + "cliui": "^4.0.0", + "decamelize": "^2.0.0", + "find-up": "^3.0.0", + "get-caller-file": "^1.0.1", + "os-locale": "^2.0.0", + "require-directory": "^2.1.1", + "require-main-filename": "^1.0.1", + "set-blocking": "^2.0.0", + "string-width": "^2.0.0", + "which-module": "^2.0.0", + "y18n": "^3.2.1 || ^4.0.0", + "yargs-parser": "^10.1.0" + } + }, + "node_modules/yargs-parser": { + "version": "10.1.0", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-10.1.0.tgz", + "integrity": "sha512-VCIyR1wJoEBZUqk5PA+oOBF6ypbwh5aNB3I50guxAL/quggdfs4TtNHQrSazFA3fYZ+tEqfs0zIGlv0c/rgjbQ==", + "dev": true, + "dependencies": { + "camelcase": "^4.1.0" + } + }, + "node_modules/yargs/node_modules/find-up": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", + "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", + "dev": true, + "dependencies": { + "locate-path": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/yargs/node_modules/locate-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", + "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", + "dev": true, + "dependencies": { + "p-locate": "^3.0.0", + "path-exists": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/yargs/node_modules/p-limit": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.0.0.tgz", + "integrity": "sha512-fl5s52lI5ahKCernzzIyAP0QAZbGIovtVHGwpcu1Jr/EpzLVDI2myISHwGqK7m8uQFugVWSrbxH7XnhGtvEc+A==", + "dev": true, + "dependencies": { + "p-try": "^2.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/yargs/node_modules/p-locate": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", + "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", + "dev": true, + "dependencies": { + "p-limit": "^2.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/yargs/node_modules/p-try": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.0.0.tgz", + "integrity": "sha512-hMp0onDKIajHfIkdRk3P4CdCmErkYAxxDtP3Wx/4nZ3aGlau2VKh3mZpcuFkH27WQkL/3WBCPOktzA9ZOAnMQQ==", + "dev": true, + "engines": { + "node": ">=6" + } + } + }, "dependencies": { "@types/emscripten": { "version": "0.0.31", @@ -309,7 +5358,8 @@ "version": "3.2.0", "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.2.0.tgz", "integrity": "sha1-6GuBnGAs+IIa1jdBNpjx3sAhhHo=", - "dev": true + "dev": true, + "requires": {} }, "ansi-escapes": { "version": "3.1.0", @@ -1955,24 +7005,24 @@ "dev": true, "optional": true }, - "string-width": { - "version": "1.0.2", + "string_decoder": { + "version": "1.1.1", "bundled": true, "dev": true, "optional": true, "requires": { - "code-point-at": "^1.0.0", - "is-fullwidth-code-point": "^1.0.0", - "strip-ansi": "^3.0.0" + "safe-buffer": "~5.1.0" } }, - "string_decoder": { - "version": "1.1.1", + "string-width": { + "version": "1.0.2", "bundled": true, "dev": true, "optional": true, "requires": { - "safe-buffer": "~5.1.0" + "code-point-at": "^1.0.0", + "is-fullwidth-code-point": "^1.0.0", + "strip-ansi": "^3.0.0" } }, "strip-ansi": { @@ -3620,6 +8670,15 @@ "integrity": "sha1-1cdSgl5TZ+eG944Y5EXqIjoVWVI=", "dev": true }, + "string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dev": true, + "requires": { + "safe-buffer": "~5.1.0" + } + }, "string-width": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz", @@ -3630,15 +8689,6 @@ "strip-ansi": "^4.0.0" } }, - "string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", - "dev": true, - "requires": { - "safe-buffer": "~5.1.0" - } - }, "strip-ansi": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz", diff --git a/src/Microsoft.Maui.Graphics.Blazor/BlazorCanvas.cs b/src/Microsoft.Maui.Graphics.Blazor/BlazorCanvas.cs index 055e7774..075dd53f 100644 --- a/src/Microsoft.Maui.Graphics.Blazor/BlazorCanvas.cs +++ b/src/Microsoft.Maui.Graphics.Blazor/BlazorCanvas.cs @@ -34,8 +34,8 @@ public CanvasRenderingContext2D Context public override float MiterLimit { set => CurrentState.MiterLimit = value; } public override Color StrokeColor { set => CurrentState.StrokeColor = value; } - public override LineCap StrokeLineCap { set => CurrentState.LineCap = value; } - public override LineJoin StrokeLineJoin { set => CurrentState.LineJoin = value; } + public override PenLineCap StrokeLineCap { set => CurrentState.LineCap = value; } + public override PenLineJoin StrokeLineJoin { set => CurrentState.LineJoin = value; } public override Color FillColor { set => CurrentState.FillColor = value; } public override Color FontColor { set => CurrentState.TextColor = value; } public override string FontName { set => CurrentState.Font = value; } @@ -83,7 +83,7 @@ public override void DrawString( string value, float x, float y, - HorizontalAlignment horizontalAlignment) + TextAlignment horizontalAlignment) { if (string.IsNullOrWhiteSpace(value)) return; @@ -93,11 +93,11 @@ public override void DrawString( y += (float)(metrics.FontBoundingBoxAscent + metrics.FontBoundingBoxDescent); - if (horizontalAlignment == HorizontalAlignment.Right) + if (horizontalAlignment == TextAlignment.End) { x -= (float)metrics.Width; } - else if (horizontalAlignment == HorizontalAlignment.Center) + else if (horizontalAlignment == TextAlignment.Center) { x -= (float)(metrics.Width / 2); } @@ -112,8 +112,8 @@ public override void DrawString( float y, float width, float height, - HorizontalAlignment horizontalAlignment, - VerticalAlignment verticalAlignment, + TextAlignment horizontalAlignment, + TextAlignment verticalAlignment, TextFlow textFlow = TextFlow.ClipBounds, float lineSpacingAdjustment = 0) { @@ -127,22 +127,22 @@ public override void DrawString( float dx = 0; float dy = 0; - if (horizontalAlignment == HorizontalAlignment.Center) + if (horizontalAlignment == TextAlignment.Center) { var diff = width - size.Width; dx = diff / 4; } - else if (horizontalAlignment == HorizontalAlignment.Right) + else if (horizontalAlignment == TextAlignment.End) { var diff = width - size.Width; dx = diff / 2; } - if (verticalAlignment == VerticalAlignment.Top) + if (verticalAlignment == TextAlignment.Start) dy = CurrentState.FontSize * .8f; - else if (verticalAlignment == VerticalAlignment.Center) + else if (verticalAlignment == TextAlignment.Center) dy = ((height - size.Height) / 2) + (CurrentState.FontSize *.6f / 2); - else if (verticalAlignment == VerticalAlignment.Bottom) + else if (verticalAlignment == TextAlignment.End) dy = height - size.Height - CurrentState.FontSize * .3f; x += dx; diff --git a/src/Microsoft.Maui.Graphics.Blazor/BlazorGraphicsService.cs b/src/Microsoft.Maui.Graphics.Blazor/BlazorGraphicsService.cs index 4fc4fa85..5be1d00c 100644 --- a/src/Microsoft.Maui.Graphics.Blazor/BlazorGraphicsService.cs +++ b/src/Microsoft.Maui.Graphics.Blazor/BlazorGraphicsService.cs @@ -20,7 +20,7 @@ public SizeF GetStringSize(string value, string fontName, float textSize) return new SizeF(value.Length * 10, textSize + 2); } - public SizeF GetStringSize(string value, string fontName, float textSize, HorizontalAlignment horizontalAlignment, VerticalAlignment verticalAlignment) + public SizeF GetStringSize(string value, string fontName, float textSize, TextAlignment horizontalAlignment, TextAlignment verticalAlignment) { return new SizeF(value.Length * 10, textSize + 2); } diff --git a/src/Microsoft.Maui.Graphics.GDI.Winforms/GDICanvas.cs b/src/Microsoft.Maui.Graphics.GDI.Winforms/GDICanvas.cs index 423e9952..ef1b7ade 100644 --- a/src/Microsoft.Maui.Graphics.GDI.Winforms/GDICanvas.cs +++ b/src/Microsoft.Maui.Graphics.GDI.Winforms/GDICanvas.cs @@ -61,16 +61,16 @@ public override Color StrokeColor set => CurrentState.StrokeColor = value?.AsColor() ?? System.Drawing.Color.Black; } - public override LineCap StrokeLineCap + public override PenLineCap StrokeLineCap { set { switch (value) { - case LineCap.Round: + case PenLineCap.Round: CurrentState.StrokeLineCap = Drawing.Drawing2D.LineCap.Round; break; - case LineCap.Square: + case PenLineCap.Square: CurrentState.StrokeLineCap = Drawing.Drawing2D.LineCap.Square; break; default: @@ -80,16 +80,16 @@ public override LineCap StrokeLineCap } } - public override LineJoin StrokeLineJoin + public override PenLineJoin StrokeLineJoin { set { switch (value) { - case LineJoin.Bevel: + case PenLineJoin.Bevel: CurrentState.StrokeLineJoin = System.Drawing.Drawing2D.LineJoin.Bevel; break; - case LineJoin.Round: + case PenLineJoin.Round: CurrentState.StrokeLineJoin = Drawing.Drawing2D.LineJoin.Round; break; default: @@ -361,18 +361,18 @@ public override void FillEllipse(float x, float y, float width, float height) Draw(g => g.FillEllipse(CurrentState.FillBrush, _rect)); } - public override void DrawString(string value, float x, float y, HorizontalAlignment horizontalAlignment) + public override void DrawString(string value, float x, float y, TextAlignment horizontalAlignment) { var font = CurrentState.Font; var size = _graphics.MeasureString(value, font); switch (horizontalAlignment) { - case HorizontalAlignment.Right: + case TextAlignment.End: x -= size.Width; break; - case HorizontalAlignment.Center: - case HorizontalAlignment.Justified: + case TextAlignment.Center: + //case TextAlignment.Justified: x -= size.Width / 2; break; } @@ -380,7 +380,7 @@ public override void DrawString(string value, float x, float y, HorizontalAlignm Draw(g => g.DrawString(value, font, CurrentState.TextBrush, x, y - size.Height)); } - public override void DrawString(string value, float x, float y, float width, float height, HorizontalAlignment horizontalAlignment, VerticalAlignment verticalAlignment, + public override void DrawString(string value, float x, float y, float width, float height, TextAlignment horizontalAlignment, TextAlignment verticalAlignment, TextFlow textFlow = TextFlow.ClipBounds, float lineAdjustment = 0) { var font = CurrentState.Font; @@ -388,13 +388,13 @@ public override void DrawString(string value, float x, float y, float width, flo switch (horizontalAlignment) { - case HorizontalAlignment.Left: + case TextAlignment.Start: format.Alignment = StringAlignment.Near; break; - case HorizontalAlignment.Center: + case TextAlignment.Center: format.Alignment = StringAlignment.Center; break; - case HorizontalAlignment.Right: + case TextAlignment.End: format.Alignment = StringAlignment.Far; break; default: @@ -404,13 +404,13 @@ public override void DrawString(string value, float x, float y, float width, flo switch (verticalAlignment) { - case VerticalAlignment.Top: + case TextAlignment.Start: format.LineAlignment = StringAlignment.Near; break; - case VerticalAlignment.Center: + case TextAlignment.Center: format.LineAlignment = StringAlignment.Center; break; - case VerticalAlignment.Bottom: + case TextAlignment.End: format.LineAlignment = StringAlignment.Far; break; } @@ -427,10 +427,10 @@ public override void DrawString(string value, float x, float y, float width, flo switch (verticalAlignment) { - case VerticalAlignment.Center: + case TextAlignment.Center: _rect.Y -= difference / 2; break; - case VerticalAlignment.Bottom: + case TextAlignment.End: _rect.Y -= difference; break; } diff --git a/src/Microsoft.Maui.Graphics.GDI.Winforms/GDIFontStyle.cs b/src/Microsoft.Maui.Graphics.GDI.Winforms/GDIFontStyle.cs index f100a860..b4bce109 100644 --- a/src/Microsoft.Maui.Graphics.GDI.Winforms/GDIFontStyle.cs +++ b/src/Microsoft.Maui.Graphics.GDI.Winforms/GDIFontStyle.cs @@ -26,7 +26,7 @@ public GDIFontStyle(GDIFontFamily family, string id, string name, string fullNam public string FullName { get; } - public FontStyleType StyleType { get; } + public FontSlant StyleType { get; } public int Weight { get; } @@ -79,15 +79,15 @@ public Stream OpenStream() public static class FontStyleExtensions { - public static FontStyleType AsStyleType(this FontStyle style) + public static FontSlant AsStyleType(this FontStyle style) { switch (style) { case FontStyle.Italic: - return FontStyleType.Italic; + return FontSlant.Italic; } - return FontStyleType.Normal; + return FontSlant.Default; } } } diff --git a/src/Microsoft.Maui.Graphics.GDI.Winforms/GDIGraphicsService.cs b/src/Microsoft.Maui.Graphics.GDI.Winforms/GDIGraphicsService.cs index 660f3511..36e0a320 100644 --- a/src/Microsoft.Maui.Graphics.GDI.Winforms/GDIGraphicsService.cs +++ b/src/Microsoft.Maui.Graphics.GDI.Winforms/GDIGraphicsService.cs @@ -21,7 +21,7 @@ public SizeF GetStringSize(string aString, string aFontName, float fontSize) } - public SizeF GetStringSize(string aString, string aFontName, float fontSize, HorizontalAlignment aHorizontalAlignment, VerticalAlignment aVerticalAlignment) + public SizeF GetStringSize(string aString, string aFontName, float fontSize, TextAlignment aHorizontalAlignment, TextAlignment aVerticalAlignment) { var fontEntry = GDIFontManager.GetMapping(aFontName); var font = new Font(fontEntry.Name, fontSize * .75f); diff --git a/src/Microsoft.Maui.Graphics.Gtk/Gtk/CanvasExtensions.cs b/src/Microsoft.Maui.Graphics.Gtk/Gtk/CanvasExtensions.cs index 801773f3..4db1ab8f 100644 --- a/src/Microsoft.Maui.Graphics.Gtk/Gtk/CanvasExtensions.cs +++ b/src/Microsoft.Maui.Graphics.Gtk/Gtk/CanvasExtensions.cs @@ -2,10 +2,10 @@ namespace Microsoft.Maui.Graphics.Native.Gtk { public static class CanvasExtensions { - public static Cairo.LineJoin ToLineJoin(this LineJoin lineJoin) => + public static Cairo.LineJoin ToLineJoin(this PenLineJoin lineJoin) => lineJoin switch { - LineJoin.Bevel => Cairo.LineJoin.Bevel, - LineJoin.Round => Cairo.LineJoin.Round, + PenLineJoin.Bevel => Cairo.LineJoin.Bevel, + PenLineJoin.Round => Cairo.LineJoin.Round, _ => Cairo.LineJoin.Miter }; @@ -15,10 +15,10 @@ public static Cairo.FillRule ToFillRule(this WindingMode windingMode) => _ => Cairo.FillRule.Winding }; - public static Cairo.LineCap ToLineCap(this LineCap lineCap) => + public static Cairo.LineCap ToLineCap(this PenLineCap lineCap) => lineCap switch { - LineCap.Butt => Cairo.LineCap.Butt, - LineCap.Round => Cairo.LineCap.Round, + PenLineCap.Flat => Cairo.LineCap.Butt, + PenLineCap.Round => Cairo.LineCap.Round, _ => Cairo.LineCap.Square }; diff --git a/src/Microsoft.Maui.Graphics.Gtk/Gtk/FontExtensions.cs b/src/Microsoft.Maui.Graphics.Gtk/Gtk/FontExtensions.cs index 79ffecf8..f42f09f0 100644 --- a/src/Microsoft.Maui.Graphics.Gtk/Gtk/FontExtensions.cs +++ b/src/Microsoft.Maui.Graphics.Gtk/Gtk/FontExtensions.cs @@ -16,16 +16,16 @@ public static class FontExtensions { public static double GetSize(this Pango.FontDescription it) => it.Size.ScaledFromPango(); - public static Pango.Style ToPangoStyle(this FontStyleType it) => it switch { - FontStyleType.Oblique => Pango.Style.Oblique, - FontStyleType.Italic => Pango.Style.Italic, + public static Pango.Style ToPangoStyle(this FontSlant it) => it switch { + FontSlant.Oblique => Pango.Style.Oblique, + FontSlant.Italic => Pango.Style.Italic, _ => Pango.Style.Normal }; - public static FontStyleType ToFontStyleType(this Pango.Style it) => it switch { - Pango.Style.Oblique => FontStyleType.Oblique, - Pango.Style.Italic => FontStyleType.Italic, - _ => FontStyleType.Normal + public static FontSlant ToFontStyleType(this Pango.Style it) => it switch { + Pango.Style.Oblique => FontSlant.Oblique, + Pango.Style.Italic => FontSlant.Italic, + _ => FontSlant.Default }; // enum Pango.Weight { Thin = 100, Ultralight = 200, Light = 300, Semilight = 350, Book = 380, Normal = 400, Medium = 500, Semibold = 600, Bold = 700, Ultrabold = 800, Heavy = 900, Ultraheavy = 1000,} diff --git a/src/Microsoft.Maui.Graphics.Gtk/Gtk/NativeCanvas.Text.cs b/src/Microsoft.Maui.Graphics.Gtk/Gtk/NativeCanvas.Text.cs index 3000945a..db5e4d35 100644 --- a/src/Microsoft.Maui.Graphics.Gtk/Gtk/NativeCanvas.Text.cs +++ b/src/Microsoft.Maui.Graphics.Gtk/Gtk/NativeCanvas.Text.cs @@ -20,7 +20,7 @@ private void LayoutBeforeDrawn(TextLayout layout) { private void LayoutAfterDrawn(TextLayout layout) { } - public override void DrawString(string value, float x, float y, HorizontalAlignment horizontalAlignment) { + public override void DrawString(string value, float x, float y, TextAlignment horizontalAlignment) { using var layout = CreateTextLayout(); layout.HorizontalAlignment = horizontalAlignment; @@ -29,7 +29,7 @@ public override void DrawString(string value, float x, float y, HorizontalAlignm } - public override void DrawString(string value, float x, float y, float width, float height, HorizontalAlignment horizontalAlignment, VerticalAlignment verticalAlignment, TextFlow textFlow = TextFlow.ClipBounds, float lineSpacingAdjustment = 0) { + public override void DrawString(string value, float x, float y, float width, float height, TextAlignment horizontalAlignment, TextAlignment verticalAlignment, TextFlow textFlow = TextFlow.ClipBounds, float lineSpacingAdjustment = 0) { using var layout = CreateTextLayout(); layout.HorizontalAlignment = horizontalAlignment; @@ -46,9 +46,6 @@ public override void DrawText(IAttributedText value, float x, float y, float wid using var layout = CreateTextLayout(); layout.DrawAttributedText(value, x, y, width, height); - } - } - } diff --git a/src/Microsoft.Maui.Graphics.Gtk/Gtk/NativeCanvas.cs b/src/Microsoft.Maui.Graphics.Gtk/Gtk/NativeCanvas.cs index 26d02e2b..45fe3e1b 100644 --- a/src/Microsoft.Maui.Graphics.Gtk/Gtk/NativeCanvas.cs +++ b/src/Microsoft.Maui.Graphics.Gtk/Gtk/NativeCanvas.cs @@ -48,11 +48,11 @@ public override Color StrokeColor { set => CurrentState.StrokeColor = value.ToCairoColor(); } - public override LineCap StrokeLineCap { + public override PenLineCap StrokeLineCap { set => CurrentState.LineCap = value.ToLineCap(); } - public override LineJoin StrokeLineJoin { + public override PenLineJoin StrokeLineJoin { set => CurrentState.LineJoin = value.ToLineJoin(); } diff --git a/src/Microsoft.Maui.Graphics.Gtk/Gtk/NativeFontStyle.cs b/src/Microsoft.Maui.Graphics.Gtk/Gtk/NativeFontStyle.cs index 170777d1..ffd2c4ee 100644 --- a/src/Microsoft.Maui.Graphics.Gtk/Gtk/NativeFontStyle.cs +++ b/src/Microsoft.Maui.Graphics.Gtk/Gtk/NativeFontStyle.cs @@ -7,7 +7,7 @@ public class NativeFontStyle : IFontStyle { private NativeFontFamily? _family; - public NativeFontStyle(string family, double size, int weight, Pango.Stretch stretch, FontStyleType styleType) { + public NativeFontStyle(string family, double size, int weight, Pango.Stretch stretch, FontSlant styleType) { FamilyName = family; Size = size; Weight = weight; @@ -31,7 +31,7 @@ public NativeFontStyle(string family, double size, int weight, Pango.Stretch str public int Weight { get; } - public FontStyleType StyleType { get; } + public FontSlant StyleType { get; } public override bool Equals(object obj) { if (obj == null) diff --git a/src/Microsoft.Maui.Graphics.Gtk/Gtk/NativeGraphicsService.cs b/src/Microsoft.Maui.Graphics.Gtk/Gtk/NativeGraphicsService.cs index 40698c17..40a53fa4 100644 --- a/src/Microsoft.Maui.Graphics.Gtk/Gtk/NativeGraphicsService.cs +++ b/src/Microsoft.Maui.Graphics.Gtk/Gtk/NativeGraphicsService.cs @@ -41,7 +41,7 @@ public SizeF GetStringSize(string value, string fontName, float textWidth) { } - public SizeF GetStringSize(string value, string fontName, float textWidth, HorizontalAlignment horizontalAlignment, VerticalAlignment verticalAlignment) { + public SizeF GetStringSize(string value, string fontName, float textWidth, TextAlignment horizontalAlignment, TextAlignment verticalAlignment) { if (string.IsNullOrEmpty(value)) return new SizeF(); diff --git a/src/Microsoft.Maui.Graphics.Gtk/Gtk/TextLayout.cs b/src/Microsoft.Maui.Graphics.Gtk/Gtk/TextLayout.cs index 30fe37e7..67c47ae1 100644 --- a/src/Microsoft.Maui.Graphics.Gtk/Gtk/TextLayout.cs +++ b/src/Microsoft.Maui.Graphics.Gtk/Gtk/TextLayout.cs @@ -33,9 +33,9 @@ public TextLayout(Context context) { public TextFlow TextFlow { get; set; } = TextFlow.OverflowBounds; - public HorizontalAlignment HorizontalAlignment { get; set; } + public TextAlignment HorizontalAlignment { get; set; } - public VerticalAlignment VerticalAlignment { get; set; } + public TextAlignment VerticalAlignment { get; set; } public LineBreakMode LineBreakMode { get; set; } = LineBreakMode.EndTruncation; @@ -99,7 +99,7 @@ public Pango.Layout GetLayout() { // allign & justify per Size _layout.Alignment = HorizontalAlignment.ToPango(); - _layout.Justify = HorizontalAlignment.HasFlag(HorizontalAlignment.Justified); + //_layout.Justify = HorizontalAlignment.HasFlag(TextAlignment.Justified); _layout.Wrap = LineBreakMode.ToPangoWrap(); _layout.Ellipsize = LineBreakMode.ToPangoEllipsize(); @@ -150,30 +150,30 @@ private void Draw() { } private float GetX(float x, int width) => HorizontalAlignment switch { - HorizontalAlignment.Left => x, - HorizontalAlignment.Right => x - width, - HorizontalAlignment.Center => x - width / 2f, + TextAlignment.Start => x, + TextAlignment.End => x - width, + TextAlignment.Center => x - width / 2f, _ => x }; private float GetY(float y, int height) => VerticalAlignment switch { - VerticalAlignment.Top => y, - VerticalAlignment.Center => y - height, - VerticalAlignment.Bottom => y - height / 2f, + TextAlignment.Start => y, + TextAlignment.Center => y - height, + TextAlignment.End => y - height / 2f, _ => y }; private float GetDx(int width) => HorizontalAlignment switch { - HorizontalAlignment.Left => 0, - HorizontalAlignment.Center => width / 2f, - HorizontalAlignment.Right => width, + TextAlignment.Start => 0, + TextAlignment.Center => width / 2f, + TextAlignment.End => width, _ => 0 }; private float GetDy(int height) => VerticalAlignment switch { - VerticalAlignment.Top => 0, - VerticalAlignment.Center => height / 2f, - VerticalAlignment.Bottom => height, + TextAlignment.Start => 0, + TextAlignment.Center => height / 2f, + TextAlignment.End => height, _ => 0 }; diff --git a/src/Microsoft.Maui.Graphics.Gtk/Gtk/TextLayoutExtensions.cs b/src/Microsoft.Maui.Graphics.Gtk/Gtk/TextLayoutExtensions.cs index f9f48994..b59fb35d 100644 --- a/src/Microsoft.Maui.Graphics.Gtk/Gtk/TextLayoutExtensions.cs +++ b/src/Microsoft.Maui.Graphics.Gtk/Gtk/TextLayoutExtensions.cs @@ -30,9 +30,9 @@ public static Size GetSize(this TextLayout it, string text, float textHeigth) { return new Size(width, height); } - public static Pango.Alignment ToPango(this HorizontalAlignment it) => it switch { - HorizontalAlignment.Center => Pango.Alignment.Center, - HorizontalAlignment.Right => Pango.Alignment.Right, + public static Pango.Alignment ToPango(this TextAlignment it) => it switch { + TextAlignment.Center => Pango.Alignment.Center, + TextAlignment.End => Pango.Alignment.Right, _ => Pango.Alignment.Left }; diff --git a/src/Microsoft.Maui.Graphics.SharpDX.Shared/DXCanvas.cs b/src/Microsoft.Maui.Graphics.SharpDX.Shared/DXCanvas.cs index 9c30e7a5..f9b1de5a 100644 --- a/src/Microsoft.Maui.Graphics.SharpDX.Shared/DXCanvas.cs +++ b/src/Microsoft.Maui.Graphics.SharpDX.Shared/DXCanvas.cs @@ -15,6 +15,7 @@ using System; using NumericsMatrix3x2 = System.Numerics.Matrix3x2; +using SharpDXTextAlignment = SharpDX.DirectWrite.TextAlignment; namespace Microsoft.Maui.Graphics.SharpDX { @@ -139,12 +140,12 @@ public override Color StrokeColor set => CurrentState.StrokeColor = value; } - public override LineCap StrokeLineCap + public override PenLineCap StrokeLineCap { set => CurrentState.StrokeLineCap = value; } - public override LineJoin StrokeLineJoin + public override PenLineJoin StrokeLineJoin { set => CurrentState.StrokeLineJoin = value; } @@ -516,7 +517,7 @@ public override void FillPath(PathF path, WindingMode windingMode) Draw(ctx => ctx.FillGeometry(geometry, CurrentState.DxFillBrush)); } - public override void DrawString(string value, float x, float y, HorizontalAlignment horizontalAlignment) + public override void DrawString(string value, float x, float y, TextAlignment horizontalAlignment) { // Initialize a TextFormat #if DEBUG @@ -530,23 +531,23 @@ public override void DrawString(string value, float x, float y, HorizontalAlignm CurrentState.FontStyle, CurrentState.FontSize); - if (horizontalAlignment == HorizontalAlignment.Left) + if (horizontalAlignment == TextAlignment.Start) { _rect.Left = x; _rect.Right = x + _renderTarget.PixelSize.Width; - textFormat.TextAlignment = TextAlignment.Leading; + textFormat.TextAlignment = SharpDXTextAlignment.Leading; } - else if (horizontalAlignment == HorizontalAlignment.Right) + else if (horizontalAlignment == TextAlignment.End) { _rect.Right = x; _rect.Left = x - _renderTarget.PixelSize.Width; - textFormat.TextAlignment = TextAlignment.Trailing; + textFormat.TextAlignment = SharpDXTextAlignment.Trailing; } else { _rect.Left = x - _renderTarget.PixelSize.Width; _rect.Right = x + _renderTarget.PixelSize.Width; - textFormat.TextAlignment = TextAlignment.Center; + textFormat.TextAlignment = SharpDXTextAlignment.Center; } _rect.Top = y - CurrentState.FontSize; @@ -573,8 +574,8 @@ public override void DrawString( float y, float width, float height, - HorizontalAlignment horizontalAlignment, - VerticalAlignment verticalAlignment, + TextAlignment horizontalAlignment, + TextAlignment verticalAlignment, TextFlow textFlow = TextFlow.ClipBounds, float lineAdjustment = 0) { @@ -584,29 +585,29 @@ public override void DrawString( switch (horizontalAlignment) { - case HorizontalAlignment.Left: - textFormat.TextAlignment = TextAlignment.Leading; + case TextAlignment.Start: + textFormat.TextAlignment = SharpDXTextAlignment.Leading; break; - case HorizontalAlignment.Center: - textFormat.TextAlignment = TextAlignment.Center; + case TextAlignment.Center: + textFormat.TextAlignment = SharpDXTextAlignment.Center; break; - case HorizontalAlignment.Right: - textFormat.TextAlignment = TextAlignment.Trailing; - break; - case HorizontalAlignment.Justified: - textFormat.TextAlignment = TextAlignment.Justified; + case TextAlignment.End: + textFormat.TextAlignment = SharpDXTextAlignment.Trailing; break; + //case HorizontalAlignment.Justified: + // textFormat.TextAlignment = TextAlignment.Justified; + // break; } switch (verticalAlignment) { - case VerticalAlignment.Top: + case TextAlignment.Start: textFormat.ParagraphAlignment = ParagraphAlignment.Near; break; - case VerticalAlignment.Center: + case TextAlignment.Center: textFormat.ParagraphAlignment = ParagraphAlignment.Center; break; - case VerticalAlignment.Bottom: + case TextAlignment.End: textFormat.ParagraphAlignment = ParagraphAlignment.Far; break; } diff --git a/src/Microsoft.Maui.Graphics.SharpDX.Shared/DXCanvasState.cs b/src/Microsoft.Maui.Graphics.SharpDX.Shared/DXCanvasState.cs index d57e0a8a..a89d7f88 100644 --- a/src/Microsoft.Maui.Graphics.SharpDX.Shared/DXCanvasState.cs +++ b/src/Microsoft.Maui.Graphics.SharpDX.Shared/DXCanvasState.cs @@ -169,17 +169,17 @@ public Color StrokeColor } } - public LineCap StrokeLineCap + public PenLineCap StrokeLineCap { set { switch (value) { - case LineCap.Butt: + case PenLineCap.Flat: _strokeStyleProperties.EndCap = CapStyle.Flat; _strokeStyleProperties.StartCap = CapStyle.Flat; break; - case LineCap.Round: + case PenLineCap.Round: _strokeStyleProperties.EndCap = CapStyle.Round; _strokeStyleProperties.StartCap = CapStyle.Round; break; diff --git a/src/Microsoft.Maui.Graphics.SharpDX.Shared/DXFontStyle.cs b/src/Microsoft.Maui.Graphics.SharpDX.Shared/DXFontStyle.cs index 69bb7bdc..e2b39395 100644 --- a/src/Microsoft.Maui.Graphics.SharpDX.Shared/DXFontStyle.cs +++ b/src/Microsoft.Maui.Graphics.SharpDX.Shared/DXFontStyle.cs @@ -11,7 +11,7 @@ public class DXFontStyle : IFontStyle, IComparable private readonly string _id; private readonly string _name; private readonly string _fullName; - private readonly FontStyleType _styleType; + private readonly FontSlant _styleType; private readonly FontStyle _dxFontStyle; private readonly FontWeight _dxFontWeight; private readonly int _weight; @@ -39,7 +39,7 @@ public DXFontStyle(DXFontFamily family, string id, string name, string fullName, public string FullName => _fullName; - public FontStyleType StyleType => _styleType; + public FontSlant StyleType => _styleType; public int Weight => _weight; @@ -125,17 +125,17 @@ public Stream OpenStream() public static class FontStyleExtensions { - public static FontStyleType AsStyleType(this FontStyle style) + public static FontSlant AsStyleType(this FontStyle style) { switch (style) { case FontStyle.Italic: - return FontStyleType.Italic; + return FontSlant.Italic; case FontStyle.Oblique: - return FontStyleType.Oblique; + return FontSlant.Oblique; } - return FontStyleType.Normal; + return FontSlant.Default; } } } diff --git a/src/Microsoft.Maui.Graphics.SharpDX.Shared/DXGraphicsService.cs b/src/Microsoft.Maui.Graphics.SharpDX.Shared/DXGraphicsService.cs index 64405dad..91d3e91f 100644 --- a/src/Microsoft.Maui.Graphics.SharpDX.Shared/DXGraphicsService.cs +++ b/src/Microsoft.Maui.Graphics.SharpDX.Shared/DXGraphicsService.cs @@ -5,6 +5,7 @@ using SharpDX.WIC; using Factory = SharpDX.Direct2D1.Factory; using FactoryType = SharpDX.Direct2D1.FactoryType; +using SharpDXTextAlignment = SharpDX.DirectWrite.TextAlignment; namespace Microsoft.Maui.Graphics.SharpDX { @@ -47,7 +48,7 @@ public SizeF GetStringSize(string value, string fontName, float textSize) var size = new SizeF(); var textFormat = new TextFormat(FactoryDirectWrite, fontName, fontSize); - textFormat.TextAlignment = TextAlignment.Leading; + textFormat.TextAlignment = SharpDXTextAlignment.Leading; textFormat.ParagraphAlignment = ParagraphAlignment.Near; var textLayout = new TextLayout(FactoryDirectWrite, value, textFormat, 512, 512); @@ -64,8 +65,8 @@ public SizeF GetStringSize( string value, string fontName, float textSize, - HorizontalAlignment horizontalAlignment, - VerticalAlignment verticalAlignment) + TextAlignment horizontalAlignment, + TextAlignment verticalAlignment) { if (value == null) return new SizeF(); @@ -81,32 +82,32 @@ public SizeF GetStringSize( var textFormat = new TextFormat(FactoryDirectWrite, SystemFontName, FontWeight.Regular, FontStyle.Normal, fontSize); - if (horizontalAlignment == HorizontalAlignment.Left) + if (horizontalAlignment == TextAlignment.Start) { - textFormat.TextAlignment = TextAlignment.Leading; + textFormat.TextAlignment = SharpDXTextAlignment.Leading; } - else if (horizontalAlignment == HorizontalAlignment.Center) + else if (horizontalAlignment == TextAlignment.Center) { - textFormat.TextAlignment = TextAlignment.Center; + textFormat.TextAlignment = SharpDXTextAlignment.Center; } - else if (horizontalAlignment == HorizontalAlignment.Right) + else if (horizontalAlignment == TextAlignment.End) { - textFormat.TextAlignment = TextAlignment.Trailing; - } - else if (horizontalAlignment == HorizontalAlignment.Justified) - { - textFormat.TextAlignment = TextAlignment.Justified; + textFormat.TextAlignment = SharpDXTextAlignment.Trailing; } + //else if (horizontalAlignment == TextAlignment.Justified) + //{ + // textFormat.TextAlignment = SharpDXTextAlignment.Justified; + //} - if (verticalAlignment == VerticalAlignment.Top) + if (verticalAlignment == TextAlignment.Start) { textFormat.ParagraphAlignment = ParagraphAlignment.Near; } - else if (verticalAlignment == VerticalAlignment.Center) + else if (verticalAlignment == TextAlignment.Center) { textFormat.ParagraphAlignment = ParagraphAlignment.Center; } - else if (verticalAlignment == VerticalAlignment.Bottom) + else if (verticalAlignment == TextAlignment.End) { textFormat.ParagraphAlignment = ParagraphAlignment.Far; } diff --git a/src/Microsoft.Maui.Graphics.Skia/SkiaGraphicsService.cs b/src/Microsoft.Maui.Graphics.Skia/SkiaGraphicsService.cs index b5e92ef7..fa1bb522 100644 --- a/src/Microsoft.Maui.Graphics.Skia/SkiaGraphicsService.cs +++ b/src/Microsoft.Maui.Graphics.Skia/SkiaGraphicsService.cs @@ -69,7 +69,7 @@ public SizeF GetStringSize(string value, string fontName, float fontSize) return new SizeF(width, fontSize); } - public SizeF GetStringSize(string value, string fontName, float fontSize, HorizontalAlignment horizontalAlignment, VerticalAlignment verticalAlignment) + public SizeF GetStringSize(string value, string fontName, float fontSize, TextAlignment horizontalAlignment, TextAlignment verticalAlignment) { if (string.IsNullOrEmpty(value)) return new SizeF(); diff --git a/src/Microsoft.Maui.Graphics.Win2D.UWP/W2DCanvas.cs b/src/Microsoft.Maui.Graphics.Win2D.UWP/W2DCanvas.cs index 9cd22c21..49155264 100644 --- a/src/Microsoft.Maui.Graphics.Win2D.UWP/W2DCanvas.cs +++ b/src/Microsoft.Maui.Graphics.Win2D.UWP/W2DCanvas.cs @@ -64,12 +64,12 @@ public override Color StrokeColor set => CurrentState.StrokeColor = value; } - public override LineCap StrokeLineCap + public override PenLineCap StrokeLineCap { set => CurrentState.StrokeLineCap = value; } - public override LineJoin StrokeLineJoin + public override PenLineJoin StrokeLineJoin { set => CurrentState.StrokeLineJoin = value; } @@ -234,7 +234,7 @@ public override void FillEllipse(float x, float y, float width, float height) Draw(s => s.FillEllipse(_point1, radiusX, radiusY, CurrentState.NativeFillBrush)); } - public override void DrawString(string value, float x, float y, HorizontalAlignment horizontalAlignment) + public override void DrawString(string value, float x, float y, TextAlignment horizontalAlignment) { // Initialize a TextFormat #if DEBUG @@ -252,12 +252,12 @@ public override void DrawString(string value, float x, float y, HorizontalAlignm switch (horizontalAlignment) { - case HorizontalAlignment.Left: + case TextAlignment.Start: _rect.X = x; _rect.Width = CanvasSize.Width; textFormat.HorizontalAlignment = CanvasHorizontalAlignment.Left; break; - case HorizontalAlignment.Right: + case TextAlignment.End: _rect.X = x - CanvasSize.Width; _rect.Width = CanvasSize.Width; textFormat.HorizontalAlignment = CanvasHorizontalAlignment.Right; @@ -300,8 +300,8 @@ public override void DrawString( float y, float width, float height, - HorizontalAlignment horizontalAlignment, - VerticalAlignment verticalAlignment, + TextAlignment horizontalAlignment, + TextAlignment verticalAlignment, TextFlow textFlow = TextFlow.ClipBounds, float lineAdjustment = 0) { @@ -315,29 +315,29 @@ public override void DrawString( switch (horizontalAlignment) { - case HorizontalAlignment.Left: + case TextAlignment.Start: textFormat.HorizontalAlignment = CanvasHorizontalAlignment.Left; break; - case HorizontalAlignment.Center: + case TextAlignment.Center: textFormat.HorizontalAlignment = CanvasHorizontalAlignment.Center; break; - case HorizontalAlignment.Right: + case TextAlignment.End: textFormat.HorizontalAlignment = CanvasHorizontalAlignment.Right; break; - case HorizontalAlignment.Justified: - textFormat.HorizontalAlignment = CanvasHorizontalAlignment.Justified; - break; + //case TextAlignment.Justified: + // textFormat.HorizontalAlignment = CanvasHorizontalAlignment.Justified; + // break; } switch (verticalAlignment) { - case VerticalAlignment.Top: + case TextAlignment.Start: textFormat.VerticalAlignment = CanvasVerticalAlignment.Top; break; - case VerticalAlignment.Center: + case TextAlignment.Center: textFormat.VerticalAlignment = CanvasVerticalAlignment.Center; break; - case VerticalAlignment.Bottom: + case TextAlignment.End: textFormat.VerticalAlignment = CanvasVerticalAlignment.Bottom; break; } diff --git a/src/Microsoft.Maui.Graphics.Win2D.UWP/W2DCanvasState.cs b/src/Microsoft.Maui.Graphics.Win2D.UWP/W2DCanvasState.cs index cfc822e7..35b42b15 100644 --- a/src/Microsoft.Maui.Graphics.Win2D.UWP/W2DCanvasState.cs +++ b/src/Microsoft.Maui.Graphics.Win2D.UWP/W2DCanvasState.cs @@ -211,16 +211,16 @@ public float MiterLimit } } - public LineCap StrokeLineCap + public PenLineCap StrokeLineCap { set { switch (value) { - case LineCap.Butt: + case PenLineCap.Flat: _lineCap = CanvasCapStyle.Flat; break; - case LineCap.Round: + case PenLineCap.Round: _lineCap = CanvasCapStyle.Round; break; default: @@ -233,16 +233,16 @@ public LineCap StrokeLineCap } } - public LineJoin StrokeLineJoin + public PenLineJoin StrokeLineJoin { set { switch (value) { - case LineJoin.Bevel: + case PenLineJoin.Bevel: _lineJoin = CanvasLineJoin.Bevel; break; - case LineJoin.Round: + case PenLineJoin.Round: _lineJoin = CanvasLineJoin.Round; break; default: diff --git a/src/Microsoft.Maui.Graphics.Win2D.UWP/W2DFontStyle.cs b/src/Microsoft.Maui.Graphics.Win2D.UWP/W2DFontStyle.cs index 066c8413..a561952e 100644 --- a/src/Microsoft.Maui.Graphics.Win2D.UWP/W2DFontStyle.cs +++ b/src/Microsoft.Maui.Graphics.Win2D.UWP/W2DFontStyle.cs @@ -29,7 +29,7 @@ public W2DFontStyle(W2DFontFamily family, string id, string name, string fullNam public string FullName { get; } - public FontStyleType StyleType { get; } + public FontSlant StyleType { get; } public int Weight { get; } @@ -93,17 +93,17 @@ public Stream OpenStream() public static class FontStyleExtensions { - public static FontStyleType AsStyleType(this FontStyle style) + public static FontSlant AsStyleType(this FontStyle style) { switch (style) { case FontStyle.Italic: - return FontStyleType.Italic; + return FontSlant.Italic; case FontStyle.Oblique: - return FontStyleType.Oblique; + return FontSlant.Oblique; } - return FontStyleType.Normal; + return FontSlant.Default; } } } diff --git a/src/Microsoft.Maui.Graphics.Win2D.UWP/W2DGraphicsService.cs b/src/Microsoft.Maui.Graphics.Win2D.UWP/W2DGraphicsService.cs index ce5eed49..32a600c6 100644 --- a/src/Microsoft.Maui.Graphics.Win2D.UWP/W2DGraphicsService.cs +++ b/src/Microsoft.Maui.Graphics.Win2D.UWP/W2DGraphicsService.cs @@ -50,7 +50,7 @@ public SizeF GetStringSize(string value, string fontName, float textSize) return new SizeF(value.Length * 10, textSize + 2); } - public SizeF GetStringSize(string value, string fontName, float textSize, HorizontalAlignment horizontalAlignment, VerticalAlignment verticalAlignment) + public SizeF GetStringSize(string value, string fontName, float textSize, TextAlignment horizontalAlignment, TextAlignment verticalAlignment) { return new SizeF(value.Length * 10, textSize + 2); } diff --git a/src/Microsoft.Maui.Graphics.Win2D.WinUI.Desktop/W2DGraphicsService.cs b/src/Microsoft.Maui.Graphics.Win2D.WinUI.Desktop/W2DGraphicsService.cs index f9bdb7c1..421b3f21 100644 --- a/src/Microsoft.Maui.Graphics.Win2D.WinUI.Desktop/W2DGraphicsService.cs +++ b/src/Microsoft.Maui.Graphics.Win2D.WinUI.Desktop/W2DGraphicsService.cs @@ -50,7 +50,7 @@ public SizeF GetStringSize(string value, string fontName, float textSize) return new SizeF(value.Length * 10, textSize + 2); } - public SizeF GetStringSize(string value, string fontName, float textSize, HorizontalAlignment horizontalAlignment, VerticalAlignment verticalAlignment) + public SizeF GetStringSize(string value, string fontName, float textSize, TextAlignment horizontalAlignment, TextAlignment verticalAlignment) { return new SizeF(value.Length * 10, textSize + 2); } diff --git a/src/Microsoft.Maui.Graphics.Xaml.UWP/XamlCanvas.cs b/src/Microsoft.Maui.Graphics.Xaml.UWP/XamlCanvas.cs index 70ab33a3..7128bd5c 100644 --- a/src/Microsoft.Maui.Graphics.Xaml.UWP/XamlCanvas.cs +++ b/src/Microsoft.Maui.Graphics.Xaml.UWP/XamlCanvas.cs @@ -1,12 +1,12 @@ using System; using System.Collections.Generic; using System.Numerics; - using Microsoft.Maui.Graphics.Text; using Windows.UI.Xaml; using Windows.UI.Xaml.Controls; using Windows.UI.Xaml.Media; using Windows.UI.Xaml.Shapes; +using WTextAlignment = Windows.UI.Xaml.TextAlignment; namespace Microsoft.Maui.Graphics.Xaml { @@ -499,8 +499,8 @@ public override void DrawString( float y, float width, float height, - HorizontalAlignment horizontalAlignment, - VerticalAlignment verticalAlignment, + TextAlignment horizontalAlignment, + TextAlignment verticalAlignment, TextFlow textFlow = TextFlow.ClipBounds, float lineAdjustment = 0) { @@ -522,30 +522,30 @@ public override void DrawString( switch (horizontalAlignment) { - case HorizontalAlignment.Left: - block.TextAlignment = TextAlignment.Left; - break; - case HorizontalAlignment.Center: - block.TextAlignment = TextAlignment.Center; + case TextAlignment.Start: + block.TextAlignment = WTextAlignment.Left; break; - case HorizontalAlignment.Right: - block.TextAlignment = TextAlignment.Right; + case TextAlignment.Center: + block.TextAlignment = WTextAlignment.Center; break; - case HorizontalAlignment.Justified: - block.TextAlignment = TextAlignment.Justify; + case TextAlignment.End: + block.TextAlignment = WTextAlignment.Right; break; + //case TextAlignment.Justified: + // block.TextAlignment = WTextAlignment.Justify; + // break; } switch (verticalAlignment) { - case VerticalAlignment.Top: - block.VerticalAlignment = global::Windows.UI.Xaml.VerticalAlignment.Top; + case TextAlignment.Start: + block.VerticalAlignment = VerticalAlignment.Top; break; - case VerticalAlignment.Center: - block.VerticalAlignment = global::Windows.UI.Xaml.VerticalAlignment.Center; + case TextAlignment.Center: + block.VerticalAlignment = VerticalAlignment.Center; break; - case VerticalAlignment.Bottom: - block.VerticalAlignment = global::Windows.UI.Xaml.VerticalAlignment.Bottom; + case TextAlignment.End: + block.VerticalAlignment = VerticalAlignment.Bottom; break; } @@ -561,7 +561,7 @@ public override void DrawString( element.RenderTransform = CurrentState.GetXamlTransform(_rectX, _rectY); } - public override void DrawString(string value, float x, float y, HorizontalAlignment horizontalAlignment) + public override void DrawString(string value, float x, float y, TextAlignment horizontalAlignment) { var item = GetOrCreateItem(ItemType.DrawText); var element = (TextBlock) item.Element; @@ -569,18 +569,18 @@ public override void DrawString(string value, float x, float y, HorizontalAlignm switch (horizontalAlignment) { - case HorizontalAlignment.Left: - element.TextAlignment = TextAlignment.Left; - break; - case HorizontalAlignment.Center: - element.TextAlignment = TextAlignment.Center; + case TextAlignment.Start: + element.TextAlignment = WTextAlignment.Left; break; - case HorizontalAlignment.Right: - element.TextAlignment = TextAlignment.Right; + case TextAlignment.Center: + element.TextAlignment = WTextAlignment.Center; break; - case HorizontalAlignment.Justified: - element.TextAlignment = TextAlignment.Justify; + case TextAlignment.End: + element.TextAlignment = WTextAlignment.Right; break; + //case TextAlignment.Justified: + // element.TextAlignment = WTextAlignment.Justify; + // break; } Canvas.SetLeft(element, _rectX); @@ -678,12 +678,12 @@ public override Color StrokeColor set => CurrentState.StrokeColor = value; } - public override LineCap StrokeLineCap + public override PenLineCap StrokeLineCap { set => CurrentState.StrokeLineCap = value; } - public override LineJoin StrokeLineJoin + public override PenLineJoin StrokeLineJoin { set => CurrentState.StrokeLineJoin = value; } diff --git a/src/Microsoft.Maui.Graphics.Xaml.UWP/XamlCanvasState.cs b/src/Microsoft.Maui.Graphics.Xaml.UWP/XamlCanvasState.cs index a71b53cc..e7c66f6a 100644 --- a/src/Microsoft.Maui.Graphics.Xaml.UWP/XamlCanvasState.cs +++ b/src/Microsoft.Maui.Graphics.Xaml.UWP/XamlCanvasState.cs @@ -1,7 +1,8 @@ using System.Numerics; - using Windows.UI.Text; using Windows.UI.Xaml.Media; +using WPenLineCap = Windows.UI.Xaml.Media.PenLineCap; +using WPenLineJoin = Windows.UI.Xaml.Media.PenLineJoin; namespace Microsoft.Maui.Graphics.Xaml { @@ -18,8 +19,8 @@ public class XamlCanvasState : CanvasState private float _shadowBlur; private Color _shadowColor; private float _miterLimit = CanvasDefaults.DefaultMiterLimit; - private LineCap _strokeLineCap = LineCap.Butt; - private LineJoin _strokeLineJoin = LineJoin.Miter; + private PenLineCap _strokeLineCap = PenLineCap.Flat; + private PenLineJoin _strokeLineJoin = PenLineJoin.Miter; private TransformGroup _transformGroup; private bool _transformUsed; private double _fontSize; @@ -129,7 +130,7 @@ public float MiterLimit set => _miterLimit = value; } - public LineCap StrokeLineCap + public PenLineCap StrokeLineCap { get => _strokeLineCap; set => _strokeLineCap = value; @@ -141,7 +142,7 @@ public double FontSize set => _fontSize = value; } - public LineJoin StrokeLineJoin + public PenLineJoin StrokeLineJoin { get => _strokeLineJoin; set => _strokeLineJoin = value; @@ -187,39 +188,39 @@ public DoubleCollection XamlDashArray set => _dashArray = value; } - public PenLineJoin XamlLineJoin + public WPenLineJoin XamlLineJoin { get { switch (_strokeLineJoin) { - case LineJoin.Miter: - return PenLineJoin.Miter; - case LineJoin.Bevel: - return PenLineJoin.Bevel; - case LineJoin.Round: - return PenLineJoin.Round; + case PenLineJoin.Miter: + return WPenLineJoin.Miter; + case PenLineJoin.Bevel: + return WPenLineJoin.Bevel; + case PenLineJoin.Round: + return WPenLineJoin.Round; } - return PenLineJoin.Miter; + return WPenLineJoin.Miter; } } - public PenLineCap XamlLineCap + public WPenLineCap XamlLineCap { get { switch (_strokeLineCap) { - case LineCap.Butt: - return PenLineCap.Flat; - case LineCap.Square: - return PenLineCap.Square; - case LineCap.Round: - return PenLineCap.Round; + case PenLineCap.Flat: + return WPenLineCap.Flat; + case PenLineCap.Square: + return WPenLineCap.Square; + case PenLineCap.Round: + return WPenLineCap.Round; } - return PenLineCap.Flat; + return WPenLineCap.Flat; } } @@ -262,9 +263,9 @@ public FontStyle FontStyle var styleType = style.StyleType; switch (styleType) { - case FontStyleType.Italic: + case FontSlant.Italic: return FontStyle.Italic; - case FontStyleType.Oblique: + case FontSlant.Oblique: return FontStyle.Oblique; } } diff --git a/src/Microsoft.Maui.Graphics.Xaml.WPF/XamlCanvas.cs b/src/Microsoft.Maui.Graphics.Xaml.WPF/XamlCanvas.cs index a918f2c0..104a3721 100644 --- a/src/Microsoft.Maui.Graphics.Xaml.WPF/XamlCanvas.cs +++ b/src/Microsoft.Maui.Graphics.Xaml.WPF/XamlCanvas.cs @@ -6,6 +6,7 @@ using System.Windows.Media; using System.Windows.Shapes; using System.Numerics; +using WTextAlignment = System.Windows.TextAlignment; namespace Microsoft.Maui.Graphics.Xaml { @@ -513,8 +514,8 @@ public override void DrawString( float y, float width, float height, - HorizontalAlignment horizontalAlignment, - VerticalAlignment verticalAlignment, + TextAlignment horizontalAlignment, + TextAlignment verticalAlignment, TextFlow textFlow = TextFlow.ClipBounds, float lineAdjustment = 0) { @@ -536,30 +537,30 @@ public override void DrawString( switch (horizontalAlignment) { - case HorizontalAlignment.Left: - block.TextAlignment = TextAlignment.Left; + case TextAlignment.Start: + block.TextAlignment = WTextAlignment.Left; break; - case HorizontalAlignment.Center: - block.TextAlignment = TextAlignment.Center; + case TextAlignment.Center: + block.TextAlignment = WTextAlignment.Center; break; - case HorizontalAlignment.Right: - block.TextAlignment = TextAlignment.Right; - break; - case HorizontalAlignment.Justified: - block.TextAlignment = TextAlignment.Justify; + case TextAlignment.End: + block.TextAlignment = WTextAlignment.Right; break; + //case TextAlignment.Justified: + // block.TextAlignment = WTextAlignment.Justify; + // break; } switch (verticalAlignment) { - case VerticalAlignment.Top: - block.VerticalAlignment = System.Windows.VerticalAlignment.Top; + case TextAlignment.Start: + block.VerticalAlignment = VerticalAlignment.Top; break; - case VerticalAlignment.Center: - block.VerticalAlignment = System.Windows.VerticalAlignment.Center; + case TextAlignment.Center: + block.VerticalAlignment = VerticalAlignment.Center; break; - case VerticalAlignment.Bottom: - block.VerticalAlignment = System.Windows.VerticalAlignment.Bottom; + case TextAlignment.End: + block.VerticalAlignment = VerticalAlignment.Bottom; break; } @@ -576,7 +577,7 @@ public override void DrawString( block.RenderTransform = CurrentState.GetXamlTransform(_rectX, _rectY); } - public override void DrawString(string value, float x, float y, HorizontalAlignment horizontalAlignment) + public override void DrawString(string value, float x, float y, TextAlignment horizontalAlignment) { var item = GetOrCreateItem(ItemType.DrawText); var element = (TextBlock) item.Element; @@ -584,18 +585,18 @@ public override void DrawString(string value, float x, float y, HorizontalAlignm switch (horizontalAlignment) { - case HorizontalAlignment.Left: - element.TextAlignment = TextAlignment.Left; - break; - case HorizontalAlignment.Center: - element.TextAlignment = TextAlignment.Center; + case TextAlignment.Start: + element.TextAlignment = WTextAlignment.Left; break; - case HorizontalAlignment.Right: - element.TextAlignment = TextAlignment.Right; + case TextAlignment.Center: + element.TextAlignment = WTextAlignment.Center; break; - case HorizontalAlignment.Justified: - element.TextAlignment = TextAlignment.Justify; + case TextAlignment.End: + element.TextAlignment = WTextAlignment.Right; break; + //case TextAlignment.Justified: + // element.TextAlignment = WTextAlignment.Justify; + // break; } Canvas.SetLeft(element, _rectX); @@ -695,12 +696,12 @@ public override Color StrokeColor set => CurrentState.StrokeColor = value; } - public override LineCap StrokeLineCap + public override PenLineCap StrokeLineCap { set => CurrentState.StrokeLineCap = value; } - public override LineJoin StrokeLineJoin + public override PenLineJoin StrokeLineJoin { set => CurrentState.StrokeLineJoin = value; } diff --git a/src/Microsoft.Maui.Graphics.Xaml.WPF/XamlCanvasState.cs b/src/Microsoft.Maui.Graphics.Xaml.WPF/XamlCanvasState.cs index 1857c431..2ff143a1 100644 --- a/src/Microsoft.Maui.Graphics.Xaml.WPF/XamlCanvasState.cs +++ b/src/Microsoft.Maui.Graphics.Xaml.WPF/XamlCanvasState.cs @@ -3,6 +3,8 @@ using System.Windows; using System.Windows.Media; using System.Windows.Media.Effects; +using WPenLineCap = System.Windows.Media.PenLineCap; +using WPenLineJoin = System.Windows.Media.PenLineJoin; namespace Microsoft.Maui.Graphics.Xaml { @@ -24,8 +26,8 @@ public class XamlCanvasState : CanvasState private Effect _shadowEffect; private Effect _blurEffect = null; private float _miterLimit = CanvasDefaults.DefaultMiterLimit; - private LineCap _strokeLineCap = LineCap.Butt; - private LineJoin _strokeLineJoin = LineJoin.Miter; + private PenLineCap _strokeLineCap = PenLineCap.Flat; + private PenLineJoin _strokeLineJoin = PenLineJoin.Miter; private TransformGroup _transformGroup; private bool _transformUsed; private double _fontSize; @@ -133,7 +135,7 @@ public float MiterLimit set => _miterLimit = value; } - public LineCap StrokeLineCap + public PenLineCap StrokeLineCap { get => _strokeLineCap; set => _strokeLineCap = value; @@ -150,7 +152,7 @@ public Color FontColor set => _fontColor = value ?? Colors.Black; } - public LineJoin StrokeLineJoin + public PenLineJoin StrokeLineJoin { get => _strokeLineJoin; set => _strokeLineJoin = value; @@ -190,40 +192,40 @@ public DoubleCollection XamlDashArray set => _dashArray = value; } - public PenLineJoin XamlLineJoin + public WPenLineJoin XamlLineJoin { get { switch (_strokeLineJoin) { - case LineJoin.Miter: - return PenLineJoin.Miter; - case LineJoin.Bevel: - return PenLineJoin.Bevel; - case LineJoin.Round: - return PenLineJoin.Round; + case PenLineJoin.Miter: + return WPenLineJoin.Miter; + case PenLineJoin.Bevel: + return WPenLineJoin.Bevel; + case PenLineJoin.Round: + return WPenLineJoin.Round; } - return PenLineJoin.Miter; + return WPenLineJoin.Miter; } } - public PenLineCap XamlLineCap + public WPenLineCap XamlLineCap { get { switch (_strokeLineCap) { - case LineCap.Butt: - return PenLineCap.Flat; - case LineCap.Square: - return PenLineCap.Square; - case LineCap.Round: - return PenLineCap.Round; + case PenLineCap.Flat: + return WPenLineCap.Flat; + case PenLineCap.Square: + return WPenLineCap.Square; + case PenLineCap.Round: + return WPenLineCap.Round; } - return PenLineCap.Flat; + return WPenLineCap.Flat; } } @@ -335,9 +337,9 @@ public FontStyle FontStyle var styleType = style.StyleType; switch (styleType) { - case FontStyleType.Italic: + case FontSlant.Italic: return FontStyles.Italic; - case FontStyleType.Oblique: + case FontSlant.Oblique: return FontStyles.Oblique; } } diff --git a/src/Microsoft.Maui.Graphics/Android/NativeGraphicsService.cs b/src/Microsoft.Maui.Graphics/Android/NativeGraphicsService.cs index 65d0ac86..88a43bbd 100644 --- a/src/Microsoft.Maui.Graphics/Android/NativeGraphicsService.cs +++ b/src/Microsoft.Maui.Graphics/Android/NativeGraphicsService.cs @@ -65,7 +65,7 @@ public SizeF GetStringSize(string value, string fontName, float fontSize) - public SizeF GetStringSize(string aString, string aFontName, float aFontSize, HorizontalAlignment aHorizontalAlignment, VerticalAlignment aVerticalAlignment) + public SizeF GetStringSize(string aString, string aFontName, float aFontSize, TextAlignment aHorizontalAlignment, TextAlignment aVerticalAlignment) { if (aString == null) return new SizeF(); @@ -75,10 +75,10 @@ public SizeF GetStringSize(string aString, string aFontName, float aFontSize, Ho Layout.Alignment vAlignment; switch (aHorizontalAlignment) { - case HorizontalAlignment.Center: + case TextAlignment.Center: vAlignment = Layout.Alignment.AlignCenter; break; - case HorizontalAlignment.Right: + case TextAlignment.End: vAlignment = Layout.Alignment.AlignOpposite; break; default: diff --git a/src/Microsoft.Maui.Graphics/GraphicsService.cs b/src/Microsoft.Maui.Graphics/GraphicsService.cs index 57ebe01a..6785724d 100644 --- a/src/Microsoft.Maui.Graphics/GraphicsService.cs +++ b/src/Microsoft.Maui.Graphics/GraphicsService.cs @@ -10,7 +10,7 @@ public interface IGraphicsService string BoldSystemFontName { get; } SizeF GetStringSize(string value, string fontName, float textSize); - SizeF GetStringSize(string value, string fontName, float textSize, HorizontalAlignment horizontalAlignment, VerticalAlignment verticalAlignment); + SizeF GetStringSize(string value, string fontName, float textSize, TextAlignment horizontalAlignment, TextAlignment verticalAlignment); RectangleF GetPathBounds(PathF path); diff --git a/src/Microsoft.Maui.Graphics/Mac/NativeGraphicsService.cs b/src/Microsoft.Maui.Graphics/Mac/NativeGraphicsService.cs index af87019c..79d4f09c 100644 --- a/src/Microsoft.Maui.Graphics/Mac/NativeGraphicsService.cs +++ b/src/Microsoft.Maui.Graphics/Mac/NativeGraphicsService.cs @@ -55,7 +55,7 @@ public SizeF GetStringSize(string value, string fontName, float fontSize) return size.AsSizeF(); } - public SizeF GetStringSize(string value, string fontName, float fontSize, HorizontalAlignment horizontalAlignment, VerticalAlignment verticalAlignment) + public SizeF GetStringSize(string value, string fontName, float fontSize, TextAlignment horizontalAlignment, TextAlignment verticalAlignment) { var actualFontSize = fontSize; float factor = 1; @@ -81,18 +81,18 @@ public SizeF GetStringSize(string value, string fontName, float fontSize, Horizo var paragraphSettings = new CTParagraphStyleSettings(); switch (horizontalAlignment) { - case HorizontalAlignment.Left: + case TextAlignment.Start: paragraphSettings.Alignment = CTTextAlignment.Left; break; - case HorizontalAlignment.Center: + case TextAlignment.Center: paragraphSettings.Alignment = CTTextAlignment.Center; break; - case HorizontalAlignment.Right: + case TextAlignment.End: paragraphSettings.Alignment = CTTextAlignment.Right; break; - case HorizontalAlignment.Justified: - paragraphSettings.Alignment = CTTextAlignment.Justified; - break; + //case TextAlignment.Justified: + // paragraphSettings.Alignment = CTTextAlignment.Justified; + // break; } var paragraphStyle = new CTParagraphStyle(paragraphSettings); diff --git a/src/Microsoft.Maui.Graphics/PictureCanvas.cs b/src/Microsoft.Maui.Graphics/PictureCanvas.cs index 6ce450cf..073a68e2 100644 --- a/src/Microsoft.Maui.Graphics/PictureCanvas.cs +++ b/src/Microsoft.Maui.Graphics/PictureCanvas.cs @@ -162,12 +162,12 @@ public void FillEllipse(float x, float y, float width, float height) _commands.Add(canvas => canvas.FillEllipse(x, y, width, height)); } - public void DrawString(string value, float x, float y, HorizontalAlignment horizontalAlignment) + public void DrawString(string value, float x, float y, TextAlignment horizontalAlignment) { _commands.Add(canvas => canvas.DrawString(value, x, y, horizontalAlignment)); } - public void DrawString(string value,float x, float y, float width, float height, HorizontalAlignment horizontalAlignment, VerticalAlignment verticalAlignment, + public void DrawString(string value,float x, float y, float width, float height, TextAlignment horizontalAlignment, TextAlignment verticalAlignment, TextFlow textFlow = TextFlow.ClipBounds, float lineSpacingAdjustment = 0) { _commands.Add(canvas => canvas.DrawString(value, x, y, width, height, horizontalAlignment, verticalAlignment, textFlow, lineSpacingAdjustment)); diff --git a/src/Microsoft.Maui.Graphics/StandardTextAttributes.cs b/src/Microsoft.Maui.Graphics/StandardTextAttributes.cs index 1a79e8e0..57cc73ce 100644 --- a/src/Microsoft.Maui.Graphics/StandardTextAttributes.cs +++ b/src/Microsoft.Maui.Graphics/StandardTextAttributes.cs @@ -6,12 +6,12 @@ public class StandardTextAttributes : ITextAttributes public float FontSize { get; set; } - public HorizontalAlignment HorizontalAlignment { get; set; } + public TextAlignment HorizontalAlignment { get; set; } public float Margin { get; set; } public Color TextFontColor { get; set; } - public VerticalAlignment VerticalAlignment { get; set; } + public TextAlignment VerticalAlignment { get; set; } } } diff --git a/src/Microsoft.Maui.Graphics/VirtualGraphicsPlatform.cs b/src/Microsoft.Maui.Graphics/VirtualGraphicsPlatform.cs index 3ca80b18..794c0f1a 100644 --- a/src/Microsoft.Maui.Graphics/VirtualGraphicsPlatform.cs +++ b/src/Microsoft.Maui.Graphics/VirtualGraphicsPlatform.cs @@ -16,7 +16,7 @@ public SizeF GetStringSize(string value, string fontName, float textSize) return new SizeF(value.Length * 10, textSize + 2); } - public SizeF GetStringSize(string value, string fontName, float textSize, HorizontalAlignment horizontalAlignment, VerticalAlignment verticalAlignment) + public SizeF GetStringSize(string value, string fontName, float textSize, TextAlignment horizontalAlignment, TextAlignment verticalAlignment) { return new SizeF(value.Length * 10, textSize + 2); } diff --git a/src/Microsoft.Maui.Graphics/iOS/NativeGraphicsService.cs b/src/Microsoft.Maui.Graphics/iOS/NativeGraphicsService.cs index 8b24e235..c4dcf9f0 100644 --- a/src/Microsoft.Maui.Graphics/iOS/NativeGraphicsService.cs +++ b/src/Microsoft.Maui.Graphics/iOS/NativeGraphicsService.cs @@ -55,8 +55,8 @@ public SizeF GetStringSize( string value, string fontName, float fontSize, - HorizontalAlignment horizontalAlignment, - VerticalAlignment verticalAlignment) + TextAlignment horizontalAlignment, + TextAlignment verticalAlignment) { float factor = 1; while (fontSize > 10) @@ -81,18 +81,18 @@ public SizeF GetStringSize( var paragraphSettings = new CTParagraphStyleSettings(); switch (horizontalAlignment) { - case HorizontalAlignment.Left: + case TextAlignment.Start: paragraphSettings.Alignment = CTTextAlignment.Left; break; - case HorizontalAlignment.Center: + case TextAlignment.Center: paragraphSettings.Alignment = CTTextAlignment.Center; break; - case HorizontalAlignment.Right: + case TextAlignment.End: paragraphSettings.Alignment = CTTextAlignment.Right; break; - case HorizontalAlignment.Justified: - paragraphSettings.Alignment = CTTextAlignment.Justified; - break; + //case TextAlignment.Justified: + // paragraphSettings.Alignment = CTTextAlignment.Justified; + // break; } var paragraphStyle = new CTParagraphStyle(paragraphSettings); From 0adbaceb84ffe9bceebb648004ae8d8904f7c57c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Javier=20Su=C3=A1rez=20Ruiz?= Date: Tue, 16 Nov 2021 16:12:37 +0100 Subject: [PATCH 6/6] More changes --- .../Resources/Resource.designer.cs | 2 +- .../Scenarios/DrawLongTextInRectWithOverflow.cs | 2 +- .../BlazorCanvasExtensions.cs | 16 ++++++++-------- .../BlazorCanvasState.cs | 8 ++++---- 4 files changed, 14 insertions(+), 14 deletions(-) diff --git a/samples/GraphicsTester.Android/Resources/Resource.designer.cs b/samples/GraphicsTester.Android/Resources/Resource.designer.cs index aab99896..58d0da22 100644 --- a/samples/GraphicsTester.Android/Resources/Resource.designer.cs +++ b/samples/GraphicsTester.Android/Resources/Resource.designer.cs @@ -14,7 +14,7 @@ namespace GraphicsTester.Android { - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Xamarin.Android.Build.Tasks", "1.0.0.0")] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Xamarin.Android.Build.Tasks", "12.1.99.81")] public partial class Resource { diff --git a/samples/GraphicsTester.Portable/Scenarios/DrawLongTextInRectWithOverflow.cs b/samples/GraphicsTester.Portable/Scenarios/DrawLongTextInRectWithOverflow.cs index 4b5de61f..628b6444 100644 --- a/samples/GraphicsTester.Portable/Scenarios/DrawLongTextInRectWithOverflow.cs +++ b/samples/GraphicsTester.Portable/Scenarios/DrawLongTextInRectWithOverflow.cs @@ -34,7 +34,7 @@ public override void Draw(ICanvas canvas) dy, 190, 140, - TextAlignment.Left, + TextAlignment.Start, verticalAlignment, TextFlow.OverflowBounds); } diff --git a/src/Microsoft.Maui.Graphics.Blazor/BlazorCanvasExtensions.cs b/src/Microsoft.Maui.Graphics.Blazor/BlazorCanvasExtensions.cs index 74b91d81..d74c631d 100644 --- a/src/Microsoft.Maui.Graphics.Blazor/BlazorCanvasExtensions.cs +++ b/src/Microsoft.Maui.Graphics.Blazor/BlazorCanvasExtensions.cs @@ -5,15 +5,15 @@ namespace Microsoft.Maui.Graphics.Blazor public static class BlazorCanvasExtensions { public static Canvas2D.LineCap AsCanvasValue( - this LineCap target) + this PenLineCap target) { switch (target) { - case LineCap.Butt: + case PenLineCap.Flat: return Canvas2D.LineCap.Butt; - case LineCap.Round: + case PenLineCap.Round: return Canvas2D.LineCap.Round; - case LineCap.Square: + case PenLineCap.Square: return Canvas2D.LineCap.Square; } @@ -21,15 +21,15 @@ public static Canvas2D.LineCap AsCanvasValue( } public static Canvas2D.LineJoin AsCanvasValue( - this LineJoin target) + this PenLineJoin target) { switch (target) { - case LineJoin.Miter: + case PenLineJoin.Miter: return Canvas2D.LineJoin.Miter; - case LineJoin.Round: + case PenLineJoin.Round: return Canvas2D.LineJoin.Round; - case LineJoin.Bevel: + case PenLineJoin.Bevel: return Canvas2D.LineJoin.Bevel; } diff --git a/src/Microsoft.Maui.Graphics.Blazor/BlazorCanvasState.cs b/src/Microsoft.Maui.Graphics.Blazor/BlazorCanvasState.cs index a3245b92..258a1d4c 100644 --- a/src/Microsoft.Maui.Graphics.Blazor/BlazorCanvasState.cs +++ b/src/Microsoft.Maui.Graphics.Blazor/BlazorCanvasState.cs @@ -10,8 +10,8 @@ public class BlazorCanvasState : CanvasState private float _miterLimit = CanvasDefaults.DefaultMiterLimit; private Color _strokeColor = Colors.Black; private float _lineWidth = 1; - private LineJoin _lineJoin; - private LineCap _lineCap; + private PenLineJoin _lineJoin; + private PenLineCap _lineCap; private float _alpha = 1; private float[] _dashPattern; @@ -77,7 +77,7 @@ public float MiterLimit } } - public LineJoin LineJoin + public PenLineJoin LineJoin { get => _lineJoin; set @@ -90,7 +90,7 @@ public LineJoin LineJoin } } - public LineCap LineCap + public PenLineCap LineCap { get => _lineCap; set