in src/lib/ad-sizes.ts [48:56]
public isProxy(): boolean {
const isOutOfPage = this.width === 1 && this.height === 1;
const isEmpty = this.width === 2 && this.height === 2;
const isFluid = this.toString() === 'fluid';
const isMerch = this.width === 88;
const isSponsorLogo = this.width === 3 && this.height === 3;
return isOutOfPage || isEmpty || isFluid || isMerch || isSponsorLogo;
}