Your message dated Sun, 03 Jan 2016 03:52:49 +0000
with message-id <e1afzir-0005rt...@franck.debian.org>
and subject line Bug#809266: fixed in doomsday 1.15.7-1
has caused the Debian Bug report #809266,
regarding doomsday: FTBFS: src/vector1.c:933:19: error: incompatible type for 
argument 2 of 'V3d_Set'
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
809266: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=809266
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Source: doomsday
Version: 1.15.5-1
Severity: serious
Justification: fails to build from source
User: reproducible-bui...@lists.alioth.debian.org
Usertags: ftbfs
X-Debbugs-Cc: reproducible-bui...@lists.alioth.debian.org

Dear Maintainer,

doomsday fails to build from source in unstable/amd64:

  [..]

  src/vector1.c:933:19: error: incompatible type for argument 2 of 'V3d_Set'
       V3d_Set(dest, srcf[VX], srcf[VY], srcf[VZ]);
                     ^
  src/vector1.c:885:6: note: expected 'vectorcompd_t {aka double}' but argument 
is of type 'const float *'
   void V3d_Set(pvec3d_t vec, vectorcompd_t x, vectorcompd_t y, vectorcompd_t z)
        ^
  src/vector1.c:933:29: error: incompatible type for argument 3 of 'V3d_Set'
       V3d_Set(dest, srcf[VX], srcf[VY], srcf[VZ]);
                               ^
  src/vector1.c:885:6: note: expected 'vectorcompd_t {aka double}' but argument 
is of type 'const float *'
   void V3d_Set(pvec3d_t vec, vectorcompd_t x, vectorcompd_t y, vectorcompd_t z)
        ^
  src/vector1.c:933:39: error: incompatible type for argument 4 of 'V3d_Set'
       V3d_Set(dest, srcf[VX], srcf[VY], srcf[VZ]);
                                         ^
  src/vector1.c:885:6: note: expected 'vectorcompd_t {aka double}' but argument 
is of type 'const float *'
   void V3d_Set(pvec3d_t vec, vectorcompd_t x, vectorcompd_t y, vectorcompd_t z)
        ^
  src/vector1.c: In function 'V3d_Sum':
  src/vector1.c:945:25: error: invalid operands to binary + (have 'const double 
*' and 'const double *')
       dest[VX] = src1[VX] + src2[VX];
                           ^
  src/vector1.c:946:25: error: invalid operands to binary + (have 'const double 
*' and 'const double *')
       dest[VY] = src1[VY] + src2[VY];
                           ^
  src/vector1.c:947:25: error: invalid operands to binary + (have 'const double 
*' and 'const double *')
       dest[VZ] = src1[VZ] + src2[VZ];
                           ^
  src/vector1.c: In function 'V3d_DotProduct':
  src/vector1.c:959:18: error: invalid operands to binary * (have 'const double 
*' and 'const double *')
       return a[VX] * b[VX] + a[VY] * b[VY] + a[VZ] * b[VZ];
                    ^
  src/vector1.c:959:34: error: invalid operands to binary * (have 'const double 
*' and 'const double *')
       return a[VX] * b[VX] + a[VY] * b[VY] + a[VZ] * b[VZ];
                                    ^
  src/vector1.c:959:50: error: invalid operands to binary * (have 'const double 
*' and 'const double *')
       return a[VX] * b[VX] + a[VY] * b[VY] + a[VZ] * b[VZ];
                                                    ^
  src/vector1.c: In function 'V3d_DotProductf':
  src/vector1.c:966:30: warning: passing argument 2 of 'V3d_DotProduct' from 
incompatible pointer type [-Wincompatible-pointer-types]
       return V3d_DotProduct(a, b);
                                ^
  src/vector1.c:957:8: note: expected 'const double (*)[3]' but argument is of 
type 'vectorcompd_t * {aka double *}'
   double V3d_DotProduct(const_pvec3d_t a, const_pvec3d_t b)
          ^
  src/vector1.c: In function 'V3d_CrossProduct':
  src/vector1.c:971:25: error: invalid operands to binary * (have 'const double 
*' and 'const double *')
       dest[VX] = src1[VY] * src2[VZ] - src1[VZ] * src2[VY];
                           ^
  src/vector1.c:971:47: error: invalid operands to binary * (have 'const double 
*' and 'const double *')
       dest[VX] = src1[VY] * src2[VZ] - src1[VZ] * src2[VY];
                                                 ^
  src/vector1.c:972:25: error: invalid operands to binary * (have 'const double 
*' and 'const double *')
       dest[VY] = src1[VZ] * src2[VX] - src1[VX] * src2[VZ];
                           ^
  src/vector1.c:972:47: error: invalid operands to binary * (have 'const double 
*' and 'const double *')
       dest[VY] = src1[VZ] * src2[VX] - src1[VX] * src2[VZ];
                                                 ^
  src/vector1.c:973:25: error: invalid operands to binary * (have 'const double 
*' and 'const double *')
       dest[VZ] = src1[VX] * src2[VY] - src1[VY] * src2[VX];
                           ^
  src/vector1.c:973:47: error: invalid operands to binary * (have 'const double 
*' and 'const double *')
       dest[VZ] = src1[VX] * src2[VY] - src1[VY] * src2[VX];
                                                 ^
  src/vector1.c: In function 'V3d_PointCrossProduct':
  src/vector1.c:982:28: warning: passing argument 2 of 'V3d_CrossProduct' from 
incompatible pointer type [-Wincompatible-pointer-types]
       V3d_CrossProduct(dest, a, b);
                              ^
  src/vector1.c:969:6: note: expected 'const double (*)[3]' but argument is of 
type 'vectorcompd_t * {aka double *}'
   void V3d_CrossProduct(pvec3d_t dest, const_pvec3d_t src1, const_pvec3d_t 
src2)
        ^
  src/vector1.c:982:31: warning: passing argument 3 of 'V3d_CrossProduct' from 
incompatible pointer type [-Wincompatible-pointer-types]
       V3d_CrossProduct(dest, a, b);
                                 ^
  src/vector1.c:969:6: note: expected 'const double (*)[3]' but argument is of 
type 'vectorcompd_t * {aka double *}'
   void V3d_CrossProduct(pvec3d_t dest, const_pvec3d_t src1, const_pvec3d_t 
src2)
        ^
  src/vector1.c: In function 'V3d_ClosestPointOnPlane':
  src/vector1.c:992:44: warning: passing argument 2 of 'V3d_DotProduct' from 
incompatible pointer type [-Wincompatible-pointer-types]
       distance = V3d_DotProduct(planeNormal, pvec);
                                              ^
  src/vector1.c:957:8: note: expected 'const double (*)[3]' but argument is of 
type 'vectorcompd_t * {aka double *}'
   double V3d_DotProduct(const_pvec3d_t a, const_pvec3d_t b)
          ^
  src/vector1.c:996:34: warning: passing argument 3 of 'V3d_Subtract' from 
incompatible pointer type [-Wincompatible-pointer-types]
       V3d_Subtract(dest, arbPoint, dest);
                                    ^
  src/vector1.c:950:6: note: expected 'const double (*)[3]' but argument is of 
type 'pvec3d_t {aka double *}'
   void V3d_Subtract(pvec3d_t dest, const_pvec3d_t src1, const_pvec3d_t src2)
        ^
  src/vector1.c: In function 'V3d_ClosestPointOnPlanef':
  src/vector1.c:1006:42: warning: passing argument 2 of 
'V3d_ClosestPointOnPlane' from incompatible pointer type 
[-Wincompatible-pointer-types]
       return V3d_ClosestPointOnPlane(dest, planeNormal, planePoint, arbPoint);
                                            ^
  src/vector1.c:985:8: note: expected 'const double (*)[3]' but argument is of 
type 'vectorcompd_t * {aka double *}'
   double V3d_ClosestPointOnPlane(pvec3d_t dest, const_pvec3d_t planeNormal,
          ^
  src/vector1.c: In function 'V3d_MajorAxis':
  src/vector1.c:1014:22: error: incompatible type for argument 1 of 'fabs'
       V3d_Set(fn, fabs(vec[VX]), fabs(vec[VY]), fabs(vec[VZ]));
                        ^
  In file included from /usr/include/features.h:361:0,
                   from /usr/include/math.h:26,
                   from src/vector1.c:22:
  /usr/include/x86_64-linux-gnu/bits/mathcalls.h:181:1: note: expected 'double' 
but argument is of type 'const double *'
   __MATHCALLX (fabs,, (_Mdouble_ __x), (__const__));
   ^
  src/vector1.c:1014:37: error: incompatible type for argument 1 of 'fabs'
       V3d_Set(fn, fabs(vec[VX]), fabs(vec[VY]), fabs(vec[VZ]));
                                       ^
  In file included from /usr/include/features.h:361:0,
                   from /usr/include/math.h:26,
                   from src/vector1.c:22:
  /usr/include/x86_64-linux-gnu/bits/mathcalls.h:181:1: note: expected 'double' 
but argument is of type 'const double *'
   __MATHCALLX (fabs,, (_Mdouble_ __x), (__const__));
   ^
  src/vector1.c:1014:52: error: incompatible type for argument 1 of 'fabs'
       V3d_Set(fn, fabs(vec[VX]), fabs(vec[VY]), fabs(vec[VZ]));
                                                      ^
  In file included from /usr/include/features.h:361:0,
                   from /usr/include/math.h:26,
                   from src/vector1.c:22:
  /usr/include/x86_64-linux-gnu/bits/mathcalls.h:181:1: note: expected 'double' 
but argument is of type 'const double *'
   __MATHCALLX (fabs,, (_Mdouble_ __x), (__const__));
   ^
  src/vector1.c: In function 'V3d_Lerp':
  src/vector1.c:1035:24: error: invalid operands to binary + (have 'const 
double *' and 'double')
           dest[i] = a[i] + c * (b[i] - a[i]);
                          ^
  src/vector1.c: In function 'V3d_BuildTangents':
  src/vector1.c:1049:22: error: incompatible type for argument 1 of 'fabs'
       V3d_Set(fn, fabs(normal[VX]), fabs(normal[VY]), fabs(normal[VZ]));
                        ^
  In file included from /usr/include/features.h:361:0,
                   from /usr/include/math.h:26,
                   from src/vector1.c:22:
  /usr/include/x86_64-linux-gnu/bits/mathcalls.h:181:1: note: expected 'double' 
but argument is of type 'const double *'
   __MATHCALLX (fabs,, (_Mdouble_ __x), (__const__));
   ^
  src/vector1.c:1049:40: error: incompatible type for argument 1 of 'fabs'
       V3d_Set(fn, fabs(normal[VX]), fabs(normal[VY]), fabs(normal[VZ]));
                                          ^
  In file included from /usr/include/features.h:361:0,
                   from /usr/include/math.h:26,
                   from src/vector1.c:22:
  /usr/include/x86_64-linux-gnu/bits/mathcalls.h:181:1: note: expected 'double' 
but argument is of type 'const double *'
   __MATHCALLX (fabs,, (_Mdouble_ __x), (__const__));
   ^
  src/vector1.c:1049:58: error: incompatible type for argument 1 of 'fabs'
       V3d_Set(fn, fabs(normal[VX]), fabs(normal[VY]), fabs(normal[VZ]));
                                                            ^
  In file included from /usr/include/features.h:361:0,
                   from /usr/include/math.h:26,
                   from src/vector1.c:22:
  /usr/include/x86_64-linux-gnu/bits/mathcalls.h:181:1: note: expected 'double' 
but argument is of type 'const double *'
   __MATHCALLX (fabs,, (_Mdouble_ __x), (__const__));
   ^
  src/vector1.c:1061:37: error: invalid operands to binary > (have 'const 
double *' and 'float')
           if(axis == VX && normal[VX] > 0.f)
                                       ^
  src/vector1.c:1070:37: error: invalid operands to binary > (have 'const 
double *' and 'float')
           if(axis == VY && normal[VY] > 0.f)
                                       ^
  src/vector1.c:1087:35: warning: passing argument 2 of 'V3d_CrossProduct' from 
incompatible pointer type [-Wincompatible-pointer-types]
           V3d_CrossProduct(tangent, (pvec3d_t)rotm[axis], normal);
                                     ^
  src/vector1.c:969:6: note: expected 'const double (*)[3]' but argument is of 
type 'vectorcompd_t * {aka double *}'
   void V3d_CrossProduct(pvec3d_t dest, const_pvec3d_t src1, const_pvec3d_t 
src2)
        ^
  src/vector1.c:1091:33: warning: passing argument 2 of 'V3d_CrossProduct' from 
incompatible pointer type [-Wincompatible-pointer-types]
       V3d_CrossProduct(bitangent, tangent, normal);
                                   ^
  src/vector1.c:969:6: note: expected 'const double (*)[3]' but argument is of 
type 'pvec3d_t {aka double *}'
   void V3d_CrossProduct(pvec3d_t dest, const_pvec3d_t src1, const_pvec3d_t 
src2)
        ^
  src/vector1.c: In function 'V4f_Length':
  src/vector1.c:1114:32: error: invalid operands to binary * (have 'const float 
*' and 'const float *')
       return (float) sqrt(vec[0] * vec[0] + vec[1] * vec[1] +
                                  ^
  src/vector1.c:1114:50: error: invalid operands to binary * (have 'const float 
*' and 'const float *')
       return (float) sqrt(vec[0] * vec[0] + vec[1] * vec[1] +
                                                    ^
  src/vector1.c:1115:32: error: invalid operands to binary * (have 'const float 
*' and 'const float *')
                           vec[2] * vec[2] + vec[3] * vec[3]);
                                  ^
  src/vector1.c:1115:50: error: invalid operands to binary * (have 'const float 
*' and 'const float *')
                           vec[2] * vec[2] + vec[3] * vec[3]);
                                                    ^
  src/vector1.c: In function 'V4f_Distance':
  src/vector1.c:1122:23: warning: passing argument 1 of 'V4f_Length' from 
incompatible pointer type [-Wincompatible-pointer-types]
       return V4f_Length(vec);
                         ^
  src/vector1.c:1111:7: note: expected 'const float (*)[4]' but argument is of 
type 'vectorcompf_t * {aka float *}'
   float V4f_Length(const_pvec4f_t vec)
         ^
  src/vector1.c: In function 'V4f_Normalize':
  src/vector1.c:1127:28: warning: passing argument 1 of 'V4f_Length' from 
incompatible pointer type [-Wincompatible-pointer-types]
       float len = V4f_Length(vec);
                              ^
  src/vector1.c:1111:7: note: expected 'const float (*)[4]' but argument is of 
type 'pvec4f_t {aka float *}'
   float V4f_Length(const_pvec4f_t vec)
         ^
  src/vector1.c: In function 'V4f_Copy':
  src/vector1.c:1140:13: error: incompatible types when assigning to type 
'vectorcompf_t {aka float}' from type 'const float *'
       dest[0] = src[0];
               ^
  src/vector1.c:1141:13: error: incompatible types when assigning to type 
'vectorcompf_t {aka float}' from type 'const float *'
       dest[1] = src[1];
               ^
  src/vector1.c:1142:13: error: incompatible types when assigning to type 
'vectorcompf_t {aka float}' from type 'const float *'
       dest[2] = src[2];
               ^
  src/vector1.c:1143:13: error: incompatible types when assigning to type 
'vectorcompf_t {aka float}' from type 'const float *'
       dest[3] = src[3];
               ^
  src/vector1.c: In function 'V4f_Sum':
  src/vector1.c:1156:23: error: invalid operands to binary + (have 'const float 
*' and 'const float *')
       dest[0] = src1[0] + src2[0];
                         ^
  src/vector1.c:1157:23: error: invalid operands to binary + (have 'const float 
*' and 'const float *')
       dest[1] = src1[1] + src2[1];
                         ^
  src/vector1.c:1158:23: error: invalid operands to binary + (have 'const float 
*' and 'const float *')
       dest[2] = src1[2] + src2[2];
                         ^
  src/vector1.c:1159:23: error: invalid operands to binary + (have 'const float 
*' and 'const float *')
       dest[3] = src1[3] + src2[3];
                         ^
  src/vector1.c: In function 'V4f_Lerp':
  src/vector1.c:1180:24: error: invalid operands to binary + (have 'const float 
*' and 'float')
           dest[i] = a[i] + c * (b[i] - a[i]);
                          ^
  src/vector1.c: In function 'V4d_Length':
  src/vector1.c:1203:24: error: invalid operands to binary * (have 'const 
double *' and 'const double *')
       return sqrt(vec[0] * vec[0] + vec[1] * vec[1] +
                          ^
  src/vector1.c:1203:42: error: invalid operands to binary * (have 'const 
double *' and 'const double *')
       return sqrt(vec[0] * vec[0] + vec[1] * vec[1] +
                                            ^
  src/vector1.c:1204:24: error: invalid operands to binary * (have 'const 
double *' and 'const double *')
                   vec[2] * vec[2] + vec[3] * vec[3]);
                          ^
  src/vector1.c:1204:42: error: invalid operands to binary * (have 'const 
double *' and 'const double *')
                   vec[2] * vec[2] + vec[3] * vec[3]);
                                            ^
  src/vector1.c: In function 'V4d_Distance':
  src/vector1.c:1211:23: warning: passing argument 1 of 'V4d_Length' from 
incompatible pointer type [-Wincompatible-pointer-types]
       return V4d_Length(vec);
                         ^
  src/vector1.c:1200:8: note: expected 'const double (*)[4]' but argument is of 
type 'vectorcompd_t * {aka double *}'
   double V4d_Length(const_pvec4d_t vec)
          ^
  src/vector1.c: In function 'V4d_Normalize':
  src/vector1.c:1216:29: warning: passing argument 1 of 'V4d_Length' from 
incompatible pointer type [-Wincompatible-pointer-types]
       double len = V4d_Length(vec);
                               ^
  src/vector1.c:1200:8: note: expected 'const double (*)[4]' but argument is of 
type 'pvec4d_t {aka double *}'
   double V4d_Length(const_pvec4d_t vec)
          ^
  src/vector1.c: In function 'V4d_Copy':
  src/vector1.c:1229:13: error: incompatible types when assigning to type 
'vectorcompd_t {aka double}' from type 'const double *'
       dest[0] = src[0];
               ^
  src/vector1.c:1230:13: error: incompatible types when assigning to type 
'vectorcompd_t {aka double}' from type 'const double *'
       dest[1] = src[1];
               ^
  src/vector1.c:1231:13: error: incompatible types when assigning to type 
'vectorcompd_t {aka double}' from type 'const double *'
       dest[2] = src[2];
               ^
  src/vector1.c:1232:13: error: incompatible types when assigning to type 
'vectorcompd_t {aka double}' from type 'const double *'
       dest[3] = src[3];
               ^
  src/vector1.c: In function 'V4d_Sum':
  src/vector1.c:1245:23: error: invalid operands to binary + (have 'const 
double *' and 'const double *')
       dest[0] = src1[0] + src2[0];
                         ^
  src/vector1.c:1246:23: error: invalid operands to binary + (have 'const 
double *' and 'const double *')
       dest[1] = src1[1] + src2[1];
                         ^
  src/vector1.c:1247:23: error: invalid operands to binary + (have 'const 
double *' and 'const double *')
       dest[2] = src1[2] + src2[2];
                         ^
  src/vector1.c:1248:23: error: invalid operands to binary + (have 'const 
double *' and 'const double *')
       dest[3] = src1[3] + src2[3];
                         ^
  src/vector1.c: In function 'V4d_Lerp':
  src/vector1.c:1269:24: error: invalid operands to binary + (have 'const 
double *' and 'double')
           dest[i] = a[i] + c * (b[i] - a[i]);
                          ^
  Makefile:348: recipe for target 'vector1.o' failed
  make[2]: *** [vector1.o] Error 1
  make[2]: *** Waiting for unfinished jobs....
  make[2]: Leaving directory 
'/home/lamby/temp/cdt.20151228221550.b2CJabzvj2/doomsday-1.15.5/doomsday/liblegacy'
  Makefile:123: recipe for target 'sub-liblegacy-make_default-ordered' failed
  make[1]: *** [sub-liblegacy-make_default-ordered] Error 2
  make[1]: Leaving directory 
'/home/lamby/temp/cdt.20151228221550.b2CJabzvj2/doomsday-1.15.5/doomsday'
  dh_auto_build: make -j8 returned exit code 2
        cd /home/lamby/temp/cdt.20151228221550.b2CJabzvj2/doomsday-1.15.5
  debian/rules:16: recipe for target 'build' failed
  make: *** [build] Error 25

  [..]

The full build log is attached.


Regards,

-- 
      ,''`.
     : :'  :     Chris Lamb
     `. `'`      la...@debian.org / chris-lamb.co.uk
       `-

Attachment: doomsday.1.15.5-1.unstable.amd64.log.txt.gz
Description: Binary data


--- End Message ---
--- Begin Message ---
Source: doomsday
Source-Version: 1.15.7-1

We believe that the bug you reported is fixed in the latest version of
doomsday, which is due to be installed in the Debian FTP archive.

A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 809...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Michael Gilbert <mgilb...@debian.org> (supplier of updated doomsday package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@ftp-master.debian.org)


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA512

Format: 1.8
Date: Sun, 03 Jan 2016 01:24:11 +0000
Source: doomsday
Binary: doomsday doomsday-server doomsday-common doomsday-data
Architecture: source
Version: 1.15.7-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Games Team <pkg-games-de...@lists.alioth.debian.org>
Changed-By: Michael Gilbert <mgilb...@debian.org>
Description:
 doomsday   - enhanced version of the legendary DOOM game
 doomsday-common - enhanced version of the legendary DOOM game - common files
 doomsday-data - enhanced version of the legendary DOOM game - data files
 doomsday-server - enhanced version of the legendary DOOM game - server
Closes: 809266
Changes:
 doomsday (1.15.7-1) unstable; urgency=medium
 .
   * New upstream release.
     - Build failure fixed (closes: #809266).
     - Support for freedoom (drop freedoom.patch).
   * Add more spelling corrections.
Checksums-Sha1:
 e5b05be112ffb97e78f73c25133571fd49294bbc 3586 doomsday_1.15.7-1.dsc
 2bd26acd3237f5de086c9287e1881a29736d1e1d 8922476 doomsday_1.15.7.orig.tar.gz
 b4a71e22906ec4c64e37cfac28c84fb343d7d4a2 15824 doomsday_1.15.7-1.debian.tar.xz
Checksums-Sha256:
 c6cda8dc1caebede39ccf8923e97524484977b6e3b2727319e424979ec8f171b 3586 
doomsday_1.15.7-1.dsc
 cecf152e496531dbe1c5ff6280852d8dd99963489028ea5d48c4b2d2ed73fd09 8922476 
doomsday_1.15.7.orig.tar.gz
 34e65e71f1b579c631fbcb30f92b1ad6d9b8c8fe30157b97faf44bdfb6b1976d 15824 
doomsday_1.15.7-1.debian.tar.xz
Files:
 fd50e0ed92953ed75042bd95f2e484b5 3586 games optional doomsday_1.15.7-1.dsc
 325b8fefeff90052efb688b795c7b30c 8922476 games optional 
doomsday_1.15.7.orig.tar.gz
 f30994804cd8af7890fdfa628de1fe28 15824 games optional 
doomsday_1.15.7-1.debian.tar.xz

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1

iQQcBAEBCgAGBQJWiIcCAAoJELjWss0C1vRzJoogAK6mQHeI7P2djCJDib0v6/BJ
edEhsYls12VPCnQwdsUSxY4i03KFXagR5GTbvmtvM3qNw/aDvwAT+V+gLd0Al1/8
5mv817bmcB94UbpPYu9l7fNUL515oBiqlUy523MIUNgJUh/ZypCvpZUAhHnXpoOF
LxUhQlotCGUCCMZzeO3awTt+IJpbCSadJ0KbU3vp4AnPEyznRjocYitXmav7gIT6
gw9MWjnDxvtTVBs6ff3IQ3xJ+1T2M97BkjDfYN5tCTtw6igNaIyTE4Mu4gbVT/qo
id86LNCPkWob6R8X7/rkiu83kiMW3Z8irmN5FtcqljnHgPrfclaokvJ+cH5x8gJk
4p2e0a/y7zQFXo3RQGzyqUiAsNxZqi2gPHY9zNx258k2ZHz0WCdj+7Tdgi4Q7SYJ
bQXq80knioFV8+FxF2Ln1m3/uXCUYWXF6hhU/Sq6abRhGFdrYCKomw7Shzrxw1/R
t+dEI4178rat0lPO8FSqXZIPKqVaXOS/ttmA5lfsFns1NKzupH6PU9SUpkMcnbDY
DkDTInPZbDGv4HsV3y0C02sfP0bZDl64zVh4/3/3vpVWDJOuFvGaJIez5PV0elxF
8YOmZ6vz1wgL8NofY1csUozQ+JyI66Ejm3P3DTmVvVurRGA7a3YMnBRF8CpjAmUx
5cDAyxuzNN+QukBvGJjYtVT+67zFlgcQF67ofMMobUoPOg3PcBkl2s3uAE57hCSl
wQSTdV207S3m7OuxX1CZKYhahCdAB1oYQAk+F/ytU7iQgQNCJ5c7BQVrvQDlmFb7
+WjMEhZON9qkOIhAdbhOcPBKmTxFbFwHFrE6WafoVi6vMJjtYLjbDHWzxicjMJJj
A4nUBmZngruTbpv2CY3nfiEKeGtBLl6Mvw/jznnvGiEcGjtv7qzKNJ8Of7fmmpK8
MuffJ1y53UKDXyt8yGkeY9ccaiMNqTlW2tuS7T2VJG6//3+10X3t05iwnfxQ+Ij8
Jz8rG5lxXG8uYlH4pHemv43Yd4R8Y/R5aE7o6L814nfckGuOYWDWBaBfiPLxJEj1
+S2gZ4Ep1ekKuQnBofiEe0WrKqOxp9QQNr94gLbas9R5Kwy4f7VcbQCOFJeczsFs
4gYnWi4hrekdaqJhaG5XKjzv2rotg1tqR7uewKf1PoaMHsS9SZMW+abwvPHWy0Os
xLnEmk/sPaLGPENRPt6XhH6yetpU8m56BviUGbIq2d0bJ89YX2ANBG4Sn3t5+YOQ
D9NNNvMEVmposewDyFUqRxsMyTV9oL3y8/w8Q9nWKBtJdj56y4q2yqL7CgSGXkty
bXOgiycWdfXE3vfJ7A8UfnXvxXABymwyHKyPskw6aPxyYnuVB3Cw/ZHmLQrRRDE=
=mhQ4
-----END PGP SIGNATURE-----

--- End Message ---

Reply via email to