fc.property(fc.hexaString({ minLength: 2 }).filter(str => str.length % 2 == 0), originalHex => {
        const filter = namefilter.fromHex(originalHex)
        const returnHex = namefilter.toHex(filter)
        expect(returnHex).toBe(originalHex)
      })