|
|
|
@ -17,15 +17,19 @@ public static class DrawImageExtensions |
|
|
|
/// <param name="source">The current image processing context.</param>
|
|
|
|
/// <param name="foreground">The image to draw on the currently processing image.</param>
|
|
|
|
/// <param name="opacity">The opacity of the image to draw. Must be between 0 and 1.</param>
|
|
|
|
/// <param name="foregroundRepeatCount">
|
|
|
|
/// The number of times the foreground frames are allowed to loop while applying this operation across successive frames.
|
|
|
|
/// A value of 0 means loop indefinitely.
|
|
|
|
/// </param>
|
|
|
|
/// <returns>The <see cref="IImageProcessingContext"/>.</returns>
|
|
|
|
public static IImageProcessingContext DrawImage( |
|
|
|
this IImageProcessingContext source, |
|
|
|
Image foreground, |
|
|
|
float opacity, |
|
|
|
int repeatCount) |
|
|
|
int foregroundRepeatCount = 0) |
|
|
|
{ |
|
|
|
GraphicsOptions options = source.GetGraphicsOptions(); |
|
|
|
return DrawImage(source, foreground, options.ColorBlendingMode, options.AlphaCompositionMode, opacity, repeatCount); |
|
|
|
return DrawImage(source, foreground, options.ColorBlendingMode, options.AlphaCompositionMode, opacity, foregroundRepeatCount); |
|
|
|
} |
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
@ -35,16 +39,20 @@ public static class DrawImageExtensions |
|
|
|
/// <param name="foreground">The image to draw on the currently processing image.</param>
|
|
|
|
/// <param name="foregroundRectangle">The rectangle structure that specifies the portion of the image to draw.</param>
|
|
|
|
/// <param name="opacity">The opacity of the image to draw. Must be between 0 and 1.</param>
|
|
|
|
/// <param name="foregroundRepeatCount">
|
|
|
|
/// The number of times the foreground frames are allowed to loop while applying this operation across successive frames.
|
|
|
|
/// A value of 0 means loop indefinitely.
|
|
|
|
/// </param>
|
|
|
|
/// <returns>The <see cref="IImageProcessingContext"/>.</returns>
|
|
|
|
public static IImageProcessingContext DrawImage( |
|
|
|
this IImageProcessingContext source, |
|
|
|
Image foreground, |
|
|
|
Rectangle foregroundRectangle, |
|
|
|
float opacity, |
|
|
|
int repeatCount) |
|
|
|
int foregroundRepeatCount = 0) |
|
|
|
{ |
|
|
|
GraphicsOptions options = source.GetGraphicsOptions(); |
|
|
|
return DrawImage(source, foreground, foregroundRectangle, options.ColorBlendingMode, options.AlphaCompositionMode, opacity, repeatCount); |
|
|
|
return DrawImage(source, foreground, foregroundRectangle, options.ColorBlendingMode, options.AlphaCompositionMode, opacity, foregroundRepeatCount); |
|
|
|
} |
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
@ -54,14 +62,18 @@ public static class DrawImageExtensions |
|
|
|
/// <param name="foreground">The image to draw on the currently processing image.</param>
|
|
|
|
/// <param name="colorBlending">The color blending mode.</param>
|
|
|
|
/// <param name="opacity">The opacity of the image to draw. Must be between 0 and 1.</param>
|
|
|
|
/// <param name="foregroundRepeatCount">
|
|
|
|
/// The number of times the foreground frames are allowed to loop while applying this operation across successive frames.
|
|
|
|
/// A value of 0 means loop indefinitely.
|
|
|
|
/// </param>
|
|
|
|
/// <returns>The <see cref="IImageProcessingContext"/>.</returns>
|
|
|
|
public static IImageProcessingContext DrawImage( |
|
|
|
this IImageProcessingContext source, |
|
|
|
Image foreground, |
|
|
|
PixelColorBlendingMode colorBlending, |
|
|
|
float opacity, |
|
|
|
int repeatCount) |
|
|
|
=> DrawImage(source, foreground, Point.Empty, colorBlending, opacity, repeatCount); |
|
|
|
int foregroundRepeatCount = 0) |
|
|
|
=> DrawImage(source, foreground, Point.Empty, colorBlending, opacity, foregroundRepeatCount); |
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Draws the given image together with the currently processing image by blending their pixels.
|
|
|
|
@ -71,6 +83,10 @@ public static class DrawImageExtensions |
|
|
|
/// <param name="foregroundRectangle">The rectangle structure that specifies the portion of the image to draw.</param>
|
|
|
|
/// <param name="colorBlending">The color blending mode.</param>
|
|
|
|
/// <param name="opacity">The opacity of the image to draw. Must be between 0 and 1.</param>
|
|
|
|
/// <param name="foregroundRepeatCount">
|
|
|
|
/// The number of times the foreground frames are allowed to loop while applying this operation across successive frames.
|
|
|
|
/// A value of 0 means loop indefinitely.
|
|
|
|
/// </param>
|
|
|
|
/// <returns>The <see cref="IImageProcessingContext"/>.</returns>
|
|
|
|
public static IImageProcessingContext DrawImage( |
|
|
|
this IImageProcessingContext source, |
|
|
|
@ -78,8 +94,8 @@ public static class DrawImageExtensions |
|
|
|
Rectangle foregroundRectangle, |
|
|
|
PixelColorBlendingMode colorBlending, |
|
|
|
float opacity, |
|
|
|
int repeatCount) |
|
|
|
=> DrawImage(source, foreground, Point.Empty, foregroundRectangle, colorBlending, opacity, repeatCount); |
|
|
|
int foregroundRepeatCount = 0) |
|
|
|
=> DrawImage(source, foreground, Point.Empty, foregroundRectangle, colorBlending, opacity, foregroundRepeatCount); |
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Draws the given image together with the currently processing image by blending their pixels.
|
|
|
|
@ -89,6 +105,10 @@ public static class DrawImageExtensions |
|
|
|
/// <param name="colorBlending">The color blending mode.</param>
|
|
|
|
/// <param name="alphaComposition">The alpha composition mode.</param>
|
|
|
|
/// <param name="opacity">The opacity of the image to draw. Must be between 0 and 1.</param>
|
|
|
|
/// <param name="foregroundRepeatCount">
|
|
|
|
/// The number of times the foreground frames are allowed to loop while applying this operation across successive frames.
|
|
|
|
/// A value of 0 means loop indefinitely.
|
|
|
|
/// </param>
|
|
|
|
/// <returns>The <see cref="IImageProcessingContext"/>.</returns>
|
|
|
|
public static IImageProcessingContext DrawImage( |
|
|
|
this IImageProcessingContext source, |
|
|
|
@ -96,8 +116,8 @@ public static class DrawImageExtensions |
|
|
|
PixelColorBlendingMode colorBlending, |
|
|
|
PixelAlphaCompositionMode alphaComposition, |
|
|
|
float opacity, |
|
|
|
int repeatCount) |
|
|
|
=> DrawImage(source, foreground, Point.Empty, colorBlending, alphaComposition, opacity, repeatCount); |
|
|
|
int foregroundRepeatCount = 0) |
|
|
|
=> DrawImage(source, foreground, Point.Empty, colorBlending, alphaComposition, opacity, foregroundRepeatCount); |
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Draws the given image together with the currently processing image by blending their pixels.
|
|
|
|
@ -108,6 +128,10 @@ public static class DrawImageExtensions |
|
|
|
/// <param name="colorBlending">The color blending mode.</param>
|
|
|
|
/// <param name="alphaComposition">The alpha composition mode.</param>
|
|
|
|
/// <param name="opacity">The opacity of the image to draw. Must be between 0 and 1.</param>
|
|
|
|
/// <param name="foregroundRepeatCount">
|
|
|
|
/// The number of times the foreground frames are allowed to loop while applying this operation across successive frames.
|
|
|
|
/// A value of 0 means loop indefinitely.
|
|
|
|
/// </param>
|
|
|
|
/// <returns>The <see cref="IImageProcessingContext"/>.</returns>
|
|
|
|
public static IImageProcessingContext DrawImage( |
|
|
|
this IImageProcessingContext source, |
|
|
|
@ -116,8 +140,8 @@ public static class DrawImageExtensions |
|
|
|
PixelColorBlendingMode colorBlending, |
|
|
|
PixelAlphaCompositionMode alphaComposition, |
|
|
|
float opacity, |
|
|
|
int repeatCount) |
|
|
|
=> DrawImage(source, foreground, Point.Empty, foregroundRectangle, colorBlending, alphaComposition, opacity, repeatCount); |
|
|
|
int foregroundRepeatCount = 0) |
|
|
|
=> DrawImage(source, foreground, Point.Empty, foregroundRectangle, colorBlending, alphaComposition, opacity, foregroundRepeatCount); |
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Draws the given image together with the currently processing image by blending their pixels.
|
|
|
|
@ -125,13 +149,17 @@ public static class DrawImageExtensions |
|
|
|
/// <param name="source">The current image processing context.</param>
|
|
|
|
/// <param name="foreground">The image to draw on the currently processing image.</param>
|
|
|
|
/// <param name="options">The options, including the blending type and blending amount.</param>
|
|
|
|
/// <param name="foregroundRepeatCount">
|
|
|
|
/// The number of times the foreground frames are allowed to loop while applying this operation across successive frames.
|
|
|
|
/// A value of 0 means loop indefinitely.
|
|
|
|
/// </param>
|
|
|
|
/// <returns>The <see cref="IImageProcessingContext"/>.</returns>
|
|
|
|
public static IImageProcessingContext DrawImage( |
|
|
|
this IImageProcessingContext source, |
|
|
|
Image foreground, |
|
|
|
GraphicsOptions options, |
|
|
|
int repeatCount) |
|
|
|
=> DrawImage(source, foreground, Point.Empty, options, repeatCount); |
|
|
|
int foregroundRepeatCount = 0) |
|
|
|
=> DrawImage(source, foreground, Point.Empty, options, foregroundRepeatCount); |
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Draws the given image together with the currently processing image by blending their pixels.
|
|
|
|
@ -140,14 +168,18 @@ public static class DrawImageExtensions |
|
|
|
/// <param name="foreground">The image to draw on the currently processing image.</param>
|
|
|
|
/// <param name="foregroundRectangle">The rectangle structure that specifies the portion of the image to draw.</param>
|
|
|
|
/// <param name="options">The options, including the blending type and blending amount.</param>
|
|
|
|
/// <param name="foregroundRepeatCount">
|
|
|
|
/// The number of times the foreground frames are allowed to loop while applying this operation across successive frames.
|
|
|
|
/// A value of 0 means loop indefinitely.
|
|
|
|
/// </param>
|
|
|
|
/// <returns>The <see cref="IImageProcessingContext"/>.</returns>
|
|
|
|
public static IImageProcessingContext DrawImage( |
|
|
|
this IImageProcessingContext source, |
|
|
|
Image foreground, |
|
|
|
Rectangle foregroundRectangle, |
|
|
|
GraphicsOptions options, |
|
|
|
int repeatCount) |
|
|
|
=> DrawImage(source, foreground, Point.Empty, foregroundRectangle, options, repeatCount); |
|
|
|
int foregroundRepeatCount = 0) |
|
|
|
=> DrawImage(source, foreground, Point.Empty, foregroundRectangle, options, foregroundRepeatCount); |
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Draws the given image together with the currently processing image by blending their pixels.
|
|
|
|
@ -156,16 +188,20 @@ public static class DrawImageExtensions |
|
|
|
/// <param name="foreground">The image to draw on the currently processing image.</param>
|
|
|
|
/// <param name="backgroundLocation">The location on the currently processing image at which to draw.</param>
|
|
|
|
/// <param name="opacity">The opacity of the image to draw. Must be between 0 and 1.</param>
|
|
|
|
/// <param name="foregroundRepeatCount">
|
|
|
|
/// The number of times the foreground frames are allowed to loop while applying this operation across successive frames.
|
|
|
|
/// A value of 0 means loop indefinitely.
|
|
|
|
/// </param>
|
|
|
|
/// <returns>The <see cref="IImageProcessingContext"/>.</returns>
|
|
|
|
public static IImageProcessingContext DrawImage( |
|
|
|
this IImageProcessingContext source, |
|
|
|
Image foreground, |
|
|
|
Point backgroundLocation, |
|
|
|
float opacity, |
|
|
|
int repeatCount) |
|
|
|
int foregroundRepeatCount = 0) |
|
|
|
{ |
|
|
|
GraphicsOptions options = source.GetGraphicsOptions(); |
|
|
|
return DrawImage(source, foreground, backgroundLocation, options.ColorBlendingMode, options.AlphaCompositionMode, opacity, repeatCount); |
|
|
|
return DrawImage(source, foreground, backgroundLocation, options.ColorBlendingMode, options.AlphaCompositionMode, opacity, foregroundRepeatCount); |
|
|
|
} |
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
@ -176,6 +212,10 @@ public static class DrawImageExtensions |
|
|
|
/// <param name="backgroundLocation">The location on the currently processing image at which to draw.</param>
|
|
|
|
/// <param name="foregroundRectangle">The rectangle structure that specifies the portion of the image to draw.</param>
|
|
|
|
/// <param name="opacity">The opacity of the image to draw. Must be between 0 and 1.</param>
|
|
|
|
/// <param name="foregroundRepeatCount">
|
|
|
|
/// The number of times the foreground frames are allowed to loop while applying this operation across successive frames.
|
|
|
|
/// A value of 0 means loop indefinitely.
|
|
|
|
/// </param>
|
|
|
|
/// <returns>The <see cref="IImageProcessingContext"/>.</returns>
|
|
|
|
public static IImageProcessingContext DrawImage( |
|
|
|
this IImageProcessingContext source, |
|
|
|
@ -183,10 +223,10 @@ public static class DrawImageExtensions |
|
|
|
Point backgroundLocation, |
|
|
|
Rectangle foregroundRectangle, |
|
|
|
float opacity, |
|
|
|
int repeatCount) |
|
|
|
int foregroundRepeatCount = 0) |
|
|
|
{ |
|
|
|
GraphicsOptions options = source.GetGraphicsOptions(); |
|
|
|
return DrawImage(source, foreground, backgroundLocation, foregroundRectangle, options.ColorBlendingMode, options.AlphaCompositionMode, opacity, repeatCount); |
|
|
|
return DrawImage(source, foreground, backgroundLocation, foregroundRectangle, options.ColorBlendingMode, options.AlphaCompositionMode, opacity, foregroundRepeatCount); |
|
|
|
} |
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
@ -197,6 +237,10 @@ public static class DrawImageExtensions |
|
|
|
/// <param name="backgroundLocation">The location on the currently processing image at which to draw.</param>
|
|
|
|
/// <param name="colorBlending">The color blending to apply.</param>
|
|
|
|
/// <param name="opacity">The opacity of the image to draw. Must be between 0 and 1.</param>
|
|
|
|
/// <param name="foregroundRepeatCount">
|
|
|
|
/// The number of times the foreground frames are allowed to loop while applying this operation across successive frames.
|
|
|
|
/// A value of 0 means loop indefinitely.
|
|
|
|
/// </param>
|
|
|
|
/// <returns>The <see cref="IImageProcessingContext"/>.</returns>
|
|
|
|
public static IImageProcessingContext DrawImage( |
|
|
|
this IImageProcessingContext source, |
|
|
|
@ -204,8 +248,8 @@ public static class DrawImageExtensions |
|
|
|
Point backgroundLocation, |
|
|
|
PixelColorBlendingMode colorBlending, |
|
|
|
float opacity, |
|
|
|
int repeatCount) |
|
|
|
=> DrawImage(source, foreground, backgroundLocation, colorBlending, source.GetGraphicsOptions().AlphaCompositionMode, opacity, repeatCount); |
|
|
|
int foregroundRepeatCount = 0) |
|
|
|
=> DrawImage(source, foreground, backgroundLocation, colorBlending, source.GetGraphicsOptions().AlphaCompositionMode, opacity, foregroundRepeatCount); |
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Draws the given image together with the currently processing image by blending their pixels.
|
|
|
|
@ -216,6 +260,10 @@ public static class DrawImageExtensions |
|
|
|
/// <param name="foregroundRectangle">The rectangle structure that specifies the portion of the image to draw.</param>
|
|
|
|
/// <param name="colorBlending">The color blending to apply.</param>
|
|
|
|
/// <param name="opacity">The opacity of the image to draw. Must be between 0 and 1.</param>
|
|
|
|
/// <param name="foregroundRepeatCount">
|
|
|
|
/// The number of times the foreground frames are allowed to loop while applying this operation across successive frames.
|
|
|
|
/// A value of 0 means loop indefinitely.
|
|
|
|
/// </param>
|
|
|
|
/// <returns>The <see cref="IImageProcessingContext"/>.</returns>
|
|
|
|
public static IImageProcessingContext DrawImage( |
|
|
|
this IImageProcessingContext source, |
|
|
|
@ -224,8 +272,8 @@ public static class DrawImageExtensions |
|
|
|
Rectangle foregroundRectangle, |
|
|
|
PixelColorBlendingMode colorBlending, |
|
|
|
float opacity, |
|
|
|
int repeatCount) |
|
|
|
=> DrawImage(source, foreground, backgroundLocation, foregroundRectangle, colorBlending, source.GetGraphicsOptions().AlphaCompositionMode, opacity, repeatCount); |
|
|
|
int foregroundRepeatCount = 0) |
|
|
|
=> DrawImage(source, foreground, backgroundLocation, foregroundRectangle, colorBlending, source.GetGraphicsOptions().AlphaCompositionMode, opacity, foregroundRepeatCount); |
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Draws the given image together with the currently processing image by blending their pixels.
|
|
|
|
@ -234,14 +282,18 @@ public static class DrawImageExtensions |
|
|
|
/// <param name="foreground">The image to draw on the currently processing image.</param>
|
|
|
|
/// <param name="backgroundLocation">The location on the currently processing image at which to draw.</param>
|
|
|
|
/// <param name="options">The options containing the blend mode and opacity.</param>
|
|
|
|
/// <param name="foregroundRepeatCount">
|
|
|
|
/// The number of times the foreground frames are allowed to loop while applying this operation across successive frames.
|
|
|
|
/// A value of 0 means loop indefinitely.
|
|
|
|
/// </param>
|
|
|
|
/// <returns>The <see cref="IImageProcessingContext"/>.</returns>
|
|
|
|
public static IImageProcessingContext DrawImage( |
|
|
|
this IImageProcessingContext source, |
|
|
|
Image foreground, |
|
|
|
Point backgroundLocation, |
|
|
|
GraphicsOptions options, |
|
|
|
int repeatCount) |
|
|
|
=> DrawImage(source, foreground, backgroundLocation, options.ColorBlendingMode, options.AlphaCompositionMode, options.BlendPercentage, repeatCount); |
|
|
|
int foregroundRepeatCount = 0) |
|
|
|
=> DrawImage(source, foreground, backgroundLocation, options.ColorBlendingMode, options.AlphaCompositionMode, options.BlendPercentage, foregroundRepeatCount); |
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Draws the given image together with the currently processing image by blending their pixels.
|
|
|
|
@ -251,6 +303,10 @@ public static class DrawImageExtensions |
|
|
|
/// <param name="backgroundLocation">The location on the currently processing image at which to draw.</param>
|
|
|
|
/// <param name="foregroundRectangle">The rectangle structure that specifies the portion of the image to draw.</param>
|
|
|
|
/// <param name="options">The options containing the blend mode and opacity.</param>
|
|
|
|
/// <param name="foregroundRepeatCount">
|
|
|
|
/// The number of times the foreground frames are allowed to loop while applying this operation across successive frames.
|
|
|
|
/// A value of 0 means loop indefinitely.
|
|
|
|
/// </param>
|
|
|
|
/// <returns>The <see cref="IImageProcessingContext"/>.</returns>
|
|
|
|
public static IImageProcessingContext DrawImage( |
|
|
|
this IImageProcessingContext source, |
|
|
|
@ -258,8 +314,8 @@ public static class DrawImageExtensions |
|
|
|
Point backgroundLocation, |
|
|
|
Rectangle foregroundRectangle, |
|
|
|
GraphicsOptions options, |
|
|
|
int repeatCount) |
|
|
|
=> DrawImage(source, foreground, backgroundLocation, foregroundRectangle, options.ColorBlendingMode, options.AlphaCompositionMode, options.BlendPercentage, repeatCount); |
|
|
|
int foregroundRepeatCount = 0) |
|
|
|
=> DrawImage(source, foreground, backgroundLocation, foregroundRectangle, options.ColorBlendingMode, options.AlphaCompositionMode, options.BlendPercentage, foregroundRepeatCount); |
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Draws the given image together with the currently processing image by blending their pixels.
|
|
|
|
@ -270,6 +326,10 @@ public static class DrawImageExtensions |
|
|
|
/// <param name="colorBlending">The color blending to apply.</param>
|
|
|
|
/// <param name="alphaComposition">The alpha composition mode.</param>
|
|
|
|
/// <param name="opacity">The opacity of the image to draw. Must be between 0 and 1.</param>
|
|
|
|
/// <param name="foregroundRepeatCount">
|
|
|
|
/// The number of times the foreground frames are allowed to loop while applying this operation across successive frames.
|
|
|
|
/// A value of 0 means loop indefinitely.
|
|
|
|
/// </param>
|
|
|
|
/// <returns>The <see cref="IImageProcessingContext"/>.</returns>
|
|
|
|
public static IImageProcessingContext DrawImage( |
|
|
|
this IImageProcessingContext source, |
|
|
|
@ -278,8 +338,8 @@ public static class DrawImageExtensions |
|
|
|
PixelColorBlendingMode colorBlending, |
|
|
|
PixelAlphaCompositionMode alphaComposition, |
|
|
|
float opacity, |
|
|
|
int repeatCount) |
|
|
|
=> source.ApplyProcessor(new DrawImageProcessor(foreground, backgroundLocation, foreground.Bounds, colorBlending, alphaComposition, opacity, repeatCount)); |
|
|
|
int foregroundRepeatCount = 0) |
|
|
|
=> source.ApplyProcessor(new DrawImageProcessor(foreground, backgroundLocation, foreground.Bounds, colorBlending, alphaComposition, opacity, foregroundRepeatCount)); |
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Draws the given image together with the currently processing image by blending their pixels.
|
|
|
|
@ -291,6 +351,10 @@ public static class DrawImageExtensions |
|
|
|
/// <param name="colorBlending">The color blending to apply.</param>
|
|
|
|
/// <param name="alphaComposition">The alpha composition mode.</param>
|
|
|
|
/// <param name="opacity">The opacity of the image to draw. Must be between 0 and 1.</param>
|
|
|
|
/// <param name="foregroundRepeatCount">
|
|
|
|
/// The number of times the foreground frames are allowed to loop while applying this operation across successive frames.
|
|
|
|
/// A value of 0 means loop indefinitely.
|
|
|
|
/// </param>
|
|
|
|
/// <returns>The <see cref="IImageProcessingContext"/>.</returns>
|
|
|
|
public static IImageProcessingContext DrawImage( |
|
|
|
this IImageProcessingContext source, |
|
|
|
@ -300,8 +364,8 @@ public static class DrawImageExtensions |
|
|
|
PixelColorBlendingMode colorBlending, |
|
|
|
PixelAlphaCompositionMode alphaComposition, |
|
|
|
float opacity, |
|
|
|
int repeatCount) => |
|
|
|
int foregroundRepeatCount = 0) => |
|
|
|
source.ApplyProcessor( |
|
|
|
new DrawImageProcessor(foreground, backgroundLocation, foregroundRectangle, colorBlending, alphaComposition, opacity, repeatCount), |
|
|
|
new DrawImageProcessor(foreground, backgroundLocation, foregroundRectangle, colorBlending, alphaComposition, opacity, foregroundRepeatCount), |
|
|
|
foregroundRectangle); |
|
|
|
} |
|
|
|
|