2006-01-20 20:00:43 +03:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2012-05-21 15:12:37 +04:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
2006-01-20 20:00:43 +03:00
|
|
|
|
2012-03-26 15:58:59 +04:00
|
|
|
// Main header first:
|
2006-01-20 20:00:43 +03:00
|
|
|
#include "nsSVGMaskFrame.h"
|
2012-03-20 16:15:55 +04:00
|
|
|
|
2012-03-26 15:58:59 +04:00
|
|
|
// Keep others in (case-insensitive) order:
|
2014-06-23 08:45:31 +04:00
|
|
|
#include "gfx2DGlue.h"
|
2006-11-27 20:30:57 +03:00
|
|
|
#include "gfxContext.h"
|
2014-06-23 08:45:31 +04:00
|
|
|
#include "mozilla/gfx/2D.h"
|
|
|
|
#include "mozilla/RefPtr.h"
|
2012-03-26 15:58:59 +04:00
|
|
|
#include "nsRenderingContext.h"
|
|
|
|
#include "nsSVGEffects.h"
|
2013-01-24 00:59:06 +04:00
|
|
|
#include "mozilla/dom/SVGMaskElement.h"
|
|
|
|
|
2014-06-23 08:45:31 +04:00
|
|
|
using namespace mozilla;
|
2013-01-24 00:59:06 +04:00
|
|
|
using namespace mozilla::dom;
|
2014-06-23 08:45:31 +04:00
|
|
|
using namespace mozilla::gfx;
|
2006-01-20 20:00:43 +03:00
|
|
|
|
2014-01-02 16:01:29 +04:00
|
|
|
/**
|
|
|
|
* Byte offsets of channels in a native packed gfxColor or cairo image surface.
|
|
|
|
*/
|
|
|
|
#ifdef IS_BIG_ENDIAN
|
|
|
|
#define GFX_ARGB32_OFFSET_A 0
|
|
|
|
#define GFX_ARGB32_OFFSET_R 1
|
|
|
|
#define GFX_ARGB32_OFFSET_G 2
|
|
|
|
#define GFX_ARGB32_OFFSET_B 3
|
|
|
|
#else
|
|
|
|
#define GFX_ARGB32_OFFSET_A 3
|
|
|
|
#define GFX_ARGB32_OFFSET_R 2
|
|
|
|
#define GFX_ARGB32_OFFSET_G 1
|
|
|
|
#define GFX_ARGB32_OFFSET_B 0
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// c = n / 255
|
|
|
|
// c <= 0.04045 ? c / 12.92 : pow((c + 0.055) / 1.055, 2.4)) * 255 + 0.5
|
|
|
|
static const uint8_t gsRGBToLinearRGBMap[256] = {
|
|
|
|
0, 0, 0, 0, 0, 0, 0, 1,
|
|
|
|
1, 1, 1, 1, 1, 1, 1, 1,
|
|
|
|
1, 1, 2, 2, 2, 2, 2, 2,
|
|
|
|
2, 2, 3, 3, 3, 3, 3, 3,
|
|
|
|
4, 4, 4, 4, 4, 5, 5, 5,
|
|
|
|
5, 6, 6, 6, 6, 7, 7, 7,
|
|
|
|
8, 8, 8, 8, 9, 9, 9, 10,
|
|
|
|
10, 10, 11, 11, 12, 12, 12, 13,
|
|
|
|
13, 13, 14, 14, 15, 15, 16, 16,
|
|
|
|
17, 17, 17, 18, 18, 19, 19, 20,
|
|
|
|
20, 21, 22, 22, 23, 23, 24, 24,
|
|
|
|
25, 25, 26, 27, 27, 28, 29, 29,
|
|
|
|
30, 30, 31, 32, 32, 33, 34, 35,
|
|
|
|
35, 36, 37, 37, 38, 39, 40, 41,
|
|
|
|
41, 42, 43, 44, 45, 45, 46, 47,
|
|
|
|
48, 49, 50, 51, 51, 52, 53, 54,
|
|
|
|
55, 56, 57, 58, 59, 60, 61, 62,
|
|
|
|
63, 64, 65, 66, 67, 68, 69, 70,
|
|
|
|
71, 72, 73, 74, 76, 77, 78, 79,
|
|
|
|
80, 81, 82, 84, 85, 86, 87, 88,
|
|
|
|
90, 91, 92, 93, 95, 96, 97, 99,
|
|
|
|
100, 101, 103, 104, 105, 107, 108, 109,
|
|
|
|
111, 112, 114, 115, 116, 118, 119, 121,
|
|
|
|
122, 124, 125, 127, 128, 130, 131, 133,
|
|
|
|
134, 136, 138, 139, 141, 142, 144, 146,
|
|
|
|
147, 149, 151, 152, 154, 156, 157, 159,
|
|
|
|
161, 163, 164, 166, 168, 170, 171, 173,
|
|
|
|
175, 177, 179, 181, 183, 184, 186, 188,
|
|
|
|
190, 192, 194, 196, 198, 200, 202, 204,
|
|
|
|
206, 208, 210, 212, 214, 216, 218, 220,
|
|
|
|
222, 224, 226, 229, 231, 233, 235, 237,
|
|
|
|
239, 242, 244, 246, 248, 250, 253, 255
|
|
|
|
};
|
|
|
|
|
|
|
|
static void
|
|
|
|
ComputesRGBLuminanceMask(uint8_t *aData,
|
|
|
|
int32_t aStride,
|
2014-06-23 08:45:31 +04:00
|
|
|
const IntSize &aSize,
|
2014-01-02 16:01:29 +04:00
|
|
|
float aOpacity)
|
|
|
|
{
|
2014-06-23 08:45:31 +04:00
|
|
|
for (int32_t y = 0; y < aSize.height; y++) {
|
|
|
|
for (int32_t x = 0; x < aSize.width; x++) {
|
2014-01-02 16:01:29 +04:00
|
|
|
uint8_t *pixel = aData + aStride * y + 4 * x;
|
|
|
|
uint8_t a = pixel[GFX_ARGB32_OFFSET_A];
|
|
|
|
|
|
|
|
uint8_t luminance;
|
|
|
|
if (a) {
|
|
|
|
/* sRGB -> intensity (unpremultiply cancels out the
|
|
|
|
* (a/255.0) multiplication with aOpacity */
|
|
|
|
luminance =
|
|
|
|
static_cast<uint8_t>
|
|
|
|
((pixel[GFX_ARGB32_OFFSET_R] * 0.2125 +
|
|
|
|
pixel[GFX_ARGB32_OFFSET_G] * 0.7154 +
|
|
|
|
pixel[GFX_ARGB32_OFFSET_B] * 0.0721) *
|
|
|
|
aOpacity);
|
|
|
|
} else {
|
|
|
|
luminance = 0;
|
|
|
|
}
|
|
|
|
memset(pixel, luminance, 4);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
ComputeLinearRGBLuminanceMask(uint8_t *aData,
|
|
|
|
int32_t aStride,
|
2014-06-23 08:45:31 +04:00
|
|
|
const IntSize &aSize,
|
2014-01-02 16:01:29 +04:00
|
|
|
float aOpacity)
|
|
|
|
{
|
2014-06-23 08:45:31 +04:00
|
|
|
for (int32_t y = 0; y < aSize.height; y++) {
|
|
|
|
for (int32_t x = 0; x < aSize.width; x++) {
|
2014-01-02 16:01:29 +04:00
|
|
|
uint8_t *pixel = aData + aStride * y + 4 * x;
|
|
|
|
uint8_t a = pixel[GFX_ARGB32_OFFSET_A];
|
|
|
|
|
|
|
|
uint8_t luminance;
|
|
|
|
// unpremultiply
|
|
|
|
if (a) {
|
|
|
|
if (a != 255) {
|
|
|
|
pixel[GFX_ARGB32_OFFSET_B] =
|
|
|
|
(255 * pixel[GFX_ARGB32_OFFSET_B]) / a;
|
|
|
|
pixel[GFX_ARGB32_OFFSET_G] =
|
|
|
|
(255 * pixel[GFX_ARGB32_OFFSET_G]) / a;
|
|
|
|
pixel[GFX_ARGB32_OFFSET_R] =
|
|
|
|
(255 * pixel[GFX_ARGB32_OFFSET_R]) / a;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* sRGB -> linearRGB -> intensity */
|
|
|
|
luminance =
|
|
|
|
static_cast<uint8_t>
|
|
|
|
((gsRGBToLinearRGBMap[pixel[GFX_ARGB32_OFFSET_R]] *
|
|
|
|
0.2125 +
|
|
|
|
gsRGBToLinearRGBMap[pixel[GFX_ARGB32_OFFSET_G]] *
|
|
|
|
0.7154 +
|
|
|
|
gsRGBToLinearRGBMap[pixel[GFX_ARGB32_OFFSET_B]] *
|
|
|
|
0.0721) * (a / 255.0) * aOpacity);
|
|
|
|
} else {
|
|
|
|
luminance = 0;
|
|
|
|
}
|
|
|
|
memset(pixel, luminance, 4);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
ComputeAlphaMask(uint8_t *aData,
|
|
|
|
int32_t aStride,
|
2014-06-23 08:45:31 +04:00
|
|
|
const IntSize &aSize,
|
2014-01-02 16:01:29 +04:00
|
|
|
float aOpacity)
|
|
|
|
{
|
2014-06-23 08:45:31 +04:00
|
|
|
for (int32_t y = 0; y < aSize.height; y++) {
|
|
|
|
for (int32_t x = 0; x < aSize.width; x++) {
|
2014-01-02 16:01:29 +04:00
|
|
|
uint8_t *pixel = aData + aStride * y + 4 * x;
|
|
|
|
uint8_t luminance = pixel[GFX_ARGB32_OFFSET_A] * aOpacity;
|
|
|
|
memset(pixel, luminance, 4);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-01-20 20:00:43 +03:00
|
|
|
//----------------------------------------------------------------------
|
|
|
|
// Implementation
|
|
|
|
|
|
|
|
nsIFrame*
|
2009-01-19 21:31:34 +03:00
|
|
|
NS_NewSVGMaskFrame(nsIPresShell* aPresShell, nsStyleContext* aContext)
|
2006-01-20 20:00:43 +03:00
|
|
|
{
|
2006-03-27 01:30:36 +04:00
|
|
|
return new (aPresShell) nsSVGMaskFrame(aContext);
|
2006-01-20 20:00:43 +03:00
|
|
|
}
|
|
|
|
|
2009-09-12 20:49:24 +04:00
|
|
|
NS_IMPL_FRAMEARENA_HELPERS(nsSVGMaskFrame)
|
|
|
|
|
2007-05-22 23:31:04 +04:00
|
|
|
already_AddRefed<gfxPattern>
|
2014-06-23 08:45:31 +04:00
|
|
|
nsSVGMaskFrame::GetMaskForMaskedFrame(gfxContext* aContext,
|
|
|
|
nsIFrame* aMaskedFrame,
|
|
|
|
const gfxMatrix &aMatrix,
|
|
|
|
float aOpacity)
|
2006-01-20 20:00:43 +03:00
|
|
|
{
|
2007-06-21 15:01:41 +04:00
|
|
|
// If the flag is set when we get here, it means this mask frame
|
|
|
|
// has already been used painting the current mask, and the document
|
|
|
|
// has a mask reference loop.
|
|
|
|
if (mInUse) {
|
|
|
|
NS_WARNING("Mask loop detected!");
|
2012-07-30 18:20:58 +04:00
|
|
|
return nullptr;
|
2007-06-21 15:01:41 +04:00
|
|
|
}
|
|
|
|
AutoMaskReferencer maskRef(this);
|
|
|
|
|
2014-06-23 08:45:31 +04:00
|
|
|
SVGMaskElement *maskElem = static_cast<SVGMaskElement*>(mContent);
|
2006-01-20 20:00:43 +03:00
|
|
|
|
2012-08-22 19:56:38 +04:00
|
|
|
uint16_t units =
|
2014-06-23 08:45:31 +04:00
|
|
|
maskElem->mEnumAttributes[SVGMaskElement::MASKUNITS].GetAnimValue();
|
2010-11-24 12:44:34 +03:00
|
|
|
gfxRect bbox;
|
2013-02-18 06:14:02 +04:00
|
|
|
if (units == SVG_UNIT_TYPE_OBJECTBOUNDINGBOX) {
|
2014-06-23 08:45:31 +04:00
|
|
|
bbox = nsSVGUtils::GetBBox(aMaskedFrame);
|
2006-01-20 20:00:43 +03:00
|
|
|
}
|
|
|
|
|
2014-06-23 08:45:31 +04:00
|
|
|
// Bounds in the user space of aMaskedFrame
|
2010-11-24 12:44:34 +03:00
|
|
|
gfxRect maskArea = nsSVGUtils::GetRelativeRect(units,
|
2014-06-23 08:45:31 +04:00
|
|
|
&maskElem->mLengthAttributes[SVGMaskElement::ATTR_X],
|
|
|
|
bbox, aMaskedFrame);
|
2006-01-20 20:00:43 +03:00
|
|
|
|
2012-06-29 02:59:05 +04:00
|
|
|
// Get the clip extents in device space:
|
2014-06-23 08:45:31 +04:00
|
|
|
// Minimizing the mask surface extents (using both the current clip extents
|
|
|
|
// and maskArea) is important for performance.
|
|
|
|
aContext->Save();
|
|
|
|
nsSVGUtils::SetClipRect(aContext, aMatrix, maskArea);
|
|
|
|
aContext->IdentityMatrix();
|
|
|
|
gfxRect maskSurfaceRect = aContext->GetClipExtents();
|
|
|
|
maskSurfaceRect.RoundOut();
|
|
|
|
aContext->Restore();
|
2006-11-27 20:30:57 +03:00
|
|
|
|
2011-09-29 10:19:26 +04:00
|
|
|
bool resultOverflows;
|
2014-06-23 08:45:31 +04:00
|
|
|
IntSize maskSurfaceSize =
|
|
|
|
ToIntSize(nsSVGUtils::ConvertToSurfaceSize(maskSurfaceRect.Size(),
|
|
|
|
&resultOverflows));
|
2007-06-13 13:02:48 +04:00
|
|
|
|
2014-06-23 08:45:31 +04:00
|
|
|
if (resultOverflows || maskSurfaceSize.IsEmpty()) {
|
|
|
|
// XXXjwatt we should return an empty surface so we don't paint aMaskedFrame!
|
2012-07-30 18:20:58 +04:00
|
|
|
return nullptr;
|
2014-06-23 08:45:31 +04:00
|
|
|
}
|
2007-06-13 13:02:48 +04:00
|
|
|
|
2014-06-23 08:45:31 +04:00
|
|
|
RefPtr<DrawTarget> maskDT =
|
|
|
|
Factory::CreateDrawTarget(BackendType::CAIRO, maskSurfaceSize,
|
|
|
|
SurfaceFormat::B8G8R8A8);
|
|
|
|
if (!maskDT) {
|
2012-07-30 18:20:58 +04:00
|
|
|
return nullptr;
|
2014-06-23 08:45:31 +04:00
|
|
|
}
|
2012-06-29 02:59:05 +04:00
|
|
|
|
2014-06-23 08:45:31 +04:00
|
|
|
gfxMatrix maskSurfaceMatrix =
|
|
|
|
aContext->CurrentMatrix() * gfxMatrix().Translate(-maskSurfaceRect.TopLeft());
|
2006-01-20 20:00:43 +03:00
|
|
|
|
2014-06-23 08:45:31 +04:00
|
|
|
nsRefPtr<nsRenderingContext> tmpCtx = new nsRenderingContext();
|
|
|
|
tmpCtx->Init(this->PresContext()->DeviceContext(), maskDT);
|
|
|
|
tmpCtx->ThebesContext()->SetMatrix(maskSurfaceMatrix);
|
2010-11-24 12:44:34 +03:00
|
|
|
|
2014-08-18 13:35:26 +04:00
|
|
|
mMatrixForChildren = GetMaskTransform(aMaskedFrame) * aMatrix;
|
2010-11-24 12:44:34 +03:00
|
|
|
|
|
|
|
for (nsIFrame* kid = mFrames.FirstChild(); kid;
|
|
|
|
kid = kid->GetNextSibling()) {
|
2010-12-24 12:30:01 +03:00
|
|
|
// The CTM of each frame referencing us can be different
|
|
|
|
nsISVGChildFrame* SVGFrame = do_QueryFrame(kid);
|
|
|
|
if (SVGFrame) {
|
2012-07-23 15:00:43 +04:00
|
|
|
SVGFrame->NotifySVGChanged(nsISVGChildFrame::TRANSFORM_CHANGED);
|
2010-12-24 12:30:01 +03:00
|
|
|
}
|
2014-08-29 23:42:07 +04:00
|
|
|
gfxMatrix m = mMatrixForChildren;
|
|
|
|
if (kid->GetContent()->IsSVG()) {
|
|
|
|
m = static_cast<nsSVGElement*>(kid->GetContent())->
|
|
|
|
PrependLocalTransformsTo(m);
|
|
|
|
}
|
|
|
|
nsSVGUtils::PaintFrameWithEffects(kid, tmpCtx, mMatrixForChildren);
|
2010-11-24 12:44:34 +03:00
|
|
|
}
|
2006-09-28 19:08:41 +04:00
|
|
|
|
2014-06-23 08:45:31 +04:00
|
|
|
RefPtr<SourceSurface> maskSnapshot = maskDT->Snapshot();
|
|
|
|
if (!maskSnapshot) {
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
RefPtr<DataSourceSurface> maskSurface = maskSnapshot->GetDataSurface();
|
|
|
|
DataSourceSurface::MappedSurface map;
|
|
|
|
if (!maskSurface->Map(DataSourceSurface::MapType::READ_WRITE, &map)) {
|
|
|
|
return nullptr;
|
|
|
|
}
|
2006-01-20 20:00:43 +03:00
|
|
|
|
2013-02-17 01:51:02 +04:00
|
|
|
if (StyleSVGReset()->mMaskType == NS_STYLE_MASK_TYPE_LUMINANCE) {
|
2013-02-24 13:05:09 +04:00
|
|
|
if (StyleSVG()->mColorInterpolation ==
|
|
|
|
NS_STYLE_COLOR_INTERPOLATION_LINEARRGB) {
|
2014-06-23 08:45:31 +04:00
|
|
|
ComputeLinearRGBLuminanceMask(map.mData, map.mStride, maskSurfaceSize, aOpacity);
|
2013-02-28 13:50:38 +04:00
|
|
|
} else {
|
2014-06-23 08:45:31 +04:00
|
|
|
ComputesRGBLuminanceMask(map.mData, map.mStride, maskSurfaceSize, aOpacity);
|
2006-01-20 20:00:43 +03:00
|
|
|
}
|
2012-12-21 04:15:22 +04:00
|
|
|
} else {
|
2014-06-23 08:45:31 +04:00
|
|
|
ComputeAlphaMask(map.mData, map.mStride, maskSurfaceSize, aOpacity);
|
2012-12-21 04:15:22 +04:00
|
|
|
}
|
2006-01-20 20:00:43 +03:00
|
|
|
|
2014-06-23 08:45:31 +04:00
|
|
|
maskSurface->Unmap();
|
|
|
|
|
|
|
|
// Moz2D transforms in the opposite direction to Thebes
|
2014-07-11 11:06:39 +04:00
|
|
|
if (!maskSurfaceMatrix.Invert()) {
|
2014-06-23 08:45:31 +04:00
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
nsRefPtr<gfxPattern> retval =
|
|
|
|
new gfxPattern(maskSurface, ToMatrix(maskSurfaceMatrix));
|
2013-04-22 15:15:59 +04:00
|
|
|
return retval.forget();
|
2006-01-20 20:00:43 +03:00
|
|
|
}
|
|
|
|
|
2014-02-18 11:47:48 +04:00
|
|
|
nsresult
|
2012-08-22 19:56:38 +04:00
|
|
|
nsSVGMaskFrame::AttributeChanged(int32_t aNameSpaceID,
|
2011-09-19 16:59:52 +04:00
|
|
|
nsIAtom* aAttribute,
|
2012-08-22 19:56:38 +04:00
|
|
|
int32_t aModType)
|
2011-09-19 16:59:52 +04:00
|
|
|
{
|
|
|
|
if (aNameSpaceID == kNameSpaceID_None &&
|
|
|
|
(aAttribute == nsGkAtoms::x ||
|
|
|
|
aAttribute == nsGkAtoms::y ||
|
|
|
|
aAttribute == nsGkAtoms::width ||
|
|
|
|
aAttribute == nsGkAtoms::height||
|
|
|
|
aAttribute == nsGkAtoms::maskUnits ||
|
|
|
|
aAttribute == nsGkAtoms::maskContentUnits)) {
|
2012-06-23 18:19:00 +04:00
|
|
|
nsSVGEffects::InvalidateDirectRenderingObservers(this);
|
2011-09-19 16:59:52 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
return nsSVGMaskFrameBase::AttributeChanged(aNameSpaceID,
|
|
|
|
aAttribute, aModType);
|
|
|
|
}
|
|
|
|
|
2009-01-19 21:31:34 +03:00
|
|
|
#ifdef DEBUG
|
2013-03-20 05:47:48 +04:00
|
|
|
void
|
2014-05-25 02:20:40 +04:00
|
|
|
nsSVGMaskFrame::Init(nsIContent* aContent,
|
|
|
|
nsContainerFrame* aParent,
|
|
|
|
nsIFrame* aPrevInFlow)
|
2009-01-19 21:31:34 +03:00
|
|
|
{
|
2013-01-08 07:22:41 +04:00
|
|
|
NS_ASSERTION(aContent->IsSVG(nsGkAtoms::mask),
|
|
|
|
"Content is not an SVG mask");
|
2009-01-19 21:31:34 +03:00
|
|
|
|
2013-03-20 05:47:48 +04:00
|
|
|
nsSVGMaskFrameBase::Init(aContent, aParent, aPrevInFlow);
|
2009-01-19 21:31:34 +03:00
|
|
|
}
|
|
|
|
#endif /* DEBUG */
|
|
|
|
|
2006-01-20 20:00:43 +03:00
|
|
|
nsIAtom *
|
|
|
|
nsSVGMaskFrame::GetType() const
|
|
|
|
{
|
2006-12-26 20:47:52 +03:00
|
|
|
return nsGkAtoms::svgMaskFrame;
|
2006-01-20 20:00:43 +03:00
|
|
|
}
|
|
|
|
|
2009-04-29 08:31:34 +04:00
|
|
|
gfxMatrix
|
2013-09-11 11:27:45 +04:00
|
|
|
nsSVGMaskFrame::GetCanvasTM(uint32_t aFor, nsIFrame* aTransformRoot)
|
2006-01-20 20:00:43 +03:00
|
|
|
{
|
2014-08-18 13:35:26 +04:00
|
|
|
return mMatrixForChildren;
|
|
|
|
}
|
2006-01-20 20:00:43 +03:00
|
|
|
|
2014-08-18 13:35:26 +04:00
|
|
|
gfxMatrix
|
|
|
|
nsSVGMaskFrame::GetMaskTransform(nsIFrame* aMaskedFrame)
|
|
|
|
{
|
|
|
|
SVGMaskElement *content = static_cast<SVGMaskElement*>(mContent);
|
2007-04-26 12:36:16 +04:00
|
|
|
|
2014-08-18 13:35:26 +04:00
|
|
|
nsSVGEnum* maskContentUnits =
|
|
|
|
&content->mEnumAttributes[SVGMaskElement::MASKCONTENTUNITS];
|
2006-06-28 16:32:26 +04:00
|
|
|
|
2014-08-18 13:35:26 +04:00
|
|
|
return nsSVGUtils::AdjustMatrixForUnits(gfxMatrix(), maskContentUnits,
|
|
|
|
aMaskedFrame);
|
|
|
|
}
|