From 1c16f5175fef7972e8f025c0b867ed6c34573e92 Mon Sep 17 00:00:00 2001 From: Quentin Rendu Date: Fri, 29 Sep 2023 09:45:14 +0200 Subject: [PATCH] Compare weights and print first difference --- .../org/jeudego/pairgoth/pairing/Solver.kt | 3 +- api-webapp/src/test/kotlin/BasicTests.kt | 29 +- api-webapp/src/test/resources/weights.txt | 992 +++++++++--------- 3 files changed, 524 insertions(+), 500 deletions(-) diff --git a/api-webapp/src/main/kotlin/org/jeudego/pairgoth/pairing/Solver.kt b/api-webapp/src/main/kotlin/org/jeudego/pairgoth/pairing/Solver.kt index c751d1c..cde7e70 100644 --- a/api-webapp/src/main/kotlin/org/jeudego/pairgoth/pairing/Solver.kt +++ b/api-webapp/src/main/kotlin/org/jeudego/pairgoth/pairing/Solver.kt @@ -84,7 +84,7 @@ sealed class Solver( } open fun weight(p1: Pairable, p2: Pairable) = - 1.0 + // 1 is minimum value because 0 means "no matching allowed" + // 1.0 + // 1 is minimum value because 0 means "no matching allowed" pairing.base.apply(p1, p2) + pairing.main.apply(p1, p2) + pairing.secondary.apply(p1, p2) + @@ -141,6 +141,7 @@ sealed class Solver( File(WEIGHTS_FILE).appendText("secHandiCost="+pairing.handicap.handicap(p, q).toString()+"\n") File(WEIGHTS_FILE).appendText("secGeoCost="+pairing.geo.apply(p, q).toString()+"\n") File(WEIGHTS_FILE).appendText("totalCost="+weight(p,q).toString()+"\n") + //%.2f".format(pi) //println(weight(q,p)) logWeights("total", p, q, weight(p,q)) //weightsToFile(p, q) diff --git a/api-webapp/src/test/kotlin/BasicTests.kt b/api-webapp/src/test/kotlin/BasicTests.kt index ba3a45b..3e23463 100644 --- a/api-webapp/src/test/kotlin/BasicTests.kt +++ b/api-webapp/src/test/kotlin/BasicTests.kt @@ -237,7 +237,7 @@ class BasicTests: TestBase() { } // Add to map - if (file == "weights.txt") { + if (file == file1) { map1[Pair(name1, name2)] = costs } else { map2[Pair(name1, name2)] = costs @@ -247,6 +247,29 @@ class BasicTests: TestBase() { } + + var diff_found = false + for ((key, value) in map1) { + // Check if key exists in both + if (map2.containsKey(key)) { + // Compare values + if (value != map2[key] && diff_found==false) { + // Key exists but values differ - print key + logger.info("Difference found at $key") + logger.info("baseDuplicateGameCost = "+value!![0].toString()+" "+map2[key]!![0].toString()) + logger.info("baseRandomCost = "+value!![1].toString()+" "+map2[key]!![1].toString()) + logger.info("baseBWBalanceCost = "+value!![2].toString()+" "+map2[key]!![2].toString()) + logger.info("mainCategoryCost = "+value!![3].toString()+" "+map2[key]!![3].toString()) + logger.info("mainScoreDiffCost = "+value!![4].toString()+" "+map2[key]!![4].toString()) + logger.info("mainDUDDCost = "+value!![5].toString()+" "+map2[key]!![5].toString()) + logger.info("mainSeedCost = "+value!![6].toString()+" "+map2[key]!![6].toString()) + logger.info("secHandiCost = "+value!![7].toString()+" "+map2[key]!![7].toString()) + logger.info("secGeoCost = "+value!![8].toString()+" "+map2[key]!![8].toString()) + diff_found = true + } + } + } + return map1==map2 } @@ -268,9 +291,9 @@ class BasicTests: TestBase() { logger.info("games for round 1: {}", games_np.toString()) logger.info("Compare weights with itself") - assertTrue(compare_weights("weights.txt", "weights.txt"), "expecting success") + assertTrue(compare_weights("weights.txt", "weights_clone.txt"), "Weights not equal to itselft") logger.info("Compare weights with opengotha") - assertTrue(compare_weights("weights.txt", "opengotha/simpleswiss_weightsonly_R1.txt"), "expecting success") + assertTrue(compare_weights("weights.txt", "opengotha/simpleswiss_weightsonly_R1.txt"), "Not matching opengotha weights") val pairings_R1 = """[{"id":283,"w":195,"b":201,"h":0,"r":"?","dd":0}, |{"id":284,"w":186,"b":184,"h":0,"r":"?","dd":0},{"id":285,"w":200,"b":194,"h":0,"r":"?","dd":0}, diff --git a/api-webapp/src/test/resources/weights.txt b/api-webapp/src/test/resources/weights.txt index 941547e..e916b10 100644 --- a/api-webapp/src/test/resources/weights.txt +++ b/api-webapp/src/test/resources/weights.txt @@ -11,7 +11,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Mignucci Bernard Player2Name=Guerre-Genton Philippe baseDuplicateGameCost=5.0E14 @@ -23,7 +23,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Mignucci Bernard Player2Name=Ladet Jean-Pierre baseDuplicateGameCost=5.0E14 @@ -35,7 +35,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=7 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Mignucci Bernard Player2Name=Berreby Monique baseDuplicateGameCost=5.0E14 @@ -47,7 +47,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Mignucci Bernard Player2Name=Butaud Rémi baseDuplicateGameCost=5.0E14 @@ -59,7 +59,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=4 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Mignucci Bernard Player2Name=Feldmann Denis baseDuplicateGameCost=5.0E14 @@ -71,7 +71,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Mignucci Bernard Player2Name=Cornuejols Dominique baseDuplicateGameCost=5.0E14 @@ -83,7 +83,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Mignucci Bernard Player2Name=Habuda Stephan baseDuplicateGameCost=5.0E14 @@ -95,7 +95,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=6 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Mignucci Bernard Player2Name=Martin-Vallas Bruno baseDuplicateGameCost=5.0E14 @@ -107,7 +107,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=7 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Mignucci Bernard Player2Name=Gaillard Jean-Luc baseDuplicateGameCost=5.0E14 @@ -119,7 +119,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=5 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Mignucci Bernard Player2Name=Habart Gilles baseDuplicateGameCost=5.0E14 @@ -131,7 +131,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=3 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Mignucci Bernard Player2Name=Hubert Jérôme baseDuplicateGameCost=5.0E14 @@ -143,7 +143,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Mignucci Bernard Player2Name=Batailler Philippe baseDuplicateGameCost=5.0E14 @@ -155,7 +155,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Mignucci Bernard Player2Name=Grimond Philippe baseDuplicateGameCost=5.0E14 @@ -167,7 +167,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=3 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Mignucci Bernard Player2Name=Neant Fabrice baseDuplicateGameCost=5.0E14 @@ -179,7 +179,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=3 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Mignucci Bernard Player2Name=Jollivet Guy baseDuplicateGameCost=5.0E14 @@ -191,7 +191,7 @@ mainDUDDCost=0.0 mainSeedCost=4569919.0 secHandiCost=9 secGeoCost=0.0 -totalCost=5.0000000456992E14 +totalCost=5.00000004569919E14 Player1Name=Mignucci Bernard Player2Name=Dupré William baseDuplicateGameCost=5.0E14 @@ -203,7 +203,7 @@ mainDUDDCost=0.0 mainSeedCost=4315359.0 secHandiCost=9 secGeoCost=0.0 -totalCost=5.0000000431536E14 +totalCost=5.00000004315359E14 Player1Name=Mignucci Bernard Player2Name=Guillou Marc baseDuplicateGameCost=5.0E14 @@ -215,7 +215,7 @@ mainDUDDCost=0.0 mainSeedCost=4200016.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000004200017E14 +totalCost=5.00000004200016E14 Player1Name=Mignucci Bernard Player2Name=Jegou Marc baseDuplicateGameCost=5.0E14 @@ -227,7 +227,7 @@ mainDUDDCost=0.0 mainSeedCost=4779449.0 secHandiCost=7 secGeoCost=0.0 -totalCost=5.0000000477945E14 +totalCost=5.00000004779449E14 Player1Name=Mignucci Bernard Player2Name=Martin Yvan baseDuplicateGameCost=5.0E14 @@ -239,7 +239,7 @@ mainDUDDCost=0.0 mainSeedCost=4761012.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000004761013E14 +totalCost=5.00000004761012E14 Player1Name=Mignucci Bernard Player2Name=Born Véronique baseDuplicateGameCost=5.0E14 @@ -251,7 +251,7 @@ mainDUDDCost=0.0 mainSeedCost=4035862.0 secHandiCost=9 secGeoCost=0.0 -totalCost=5.00000004035863E14 +totalCost=5.00000004035862E14 Player1Name=Mignucci Bernard Player2Name=Bonis Michel baseDuplicateGameCost=5.0E14 @@ -263,7 +263,7 @@ mainDUDDCost=0.0 mainSeedCost=4903541.0 secHandiCost=3 secGeoCost=0.0 -totalCost=5.00000004903542E14 +totalCost=5.00000004903541E14 Player1Name=Mignucci Bernard Player2Name=Boyart Christian baseDuplicateGameCost=5.0E14 @@ -275,7 +275,7 @@ mainDUDDCost=0.0 mainSeedCost=4061936.0 secHandiCost=2 secGeoCost=0.0 -totalCost=5.00000004061937E14 +totalCost=5.00000004061936E14 Player1Name=Mignucci Bernard Player2Name=Lamôle Laurent baseDuplicateGameCost=5.0E14 @@ -287,7 +287,7 @@ mainDUDDCost=0.0 mainSeedCost=4148511.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000004148512E14 +totalCost=5.00000004148511E14 Player1Name=Mignucci Bernard Player2Name=Eon Serge baseDuplicateGameCost=5.0E14 @@ -299,7 +299,7 @@ mainDUDDCost=0.0 mainSeedCost=4340098.0 secHandiCost=1 secGeoCost=0.0 -totalCost=5.00000004340099E14 +totalCost=5.00000004340098E14 Player1Name=Mignucci Bernard Player2Name=Gajdos Chantal baseDuplicateGameCost=5.0E14 @@ -311,7 +311,7 @@ mainDUDDCost=0.0 mainSeedCost=4940440.0 secHandiCost=1 secGeoCost=0.0 -totalCost=5.00000004940441E14 +totalCost=5.0000000494044E14 Player1Name=Mignucci Bernard Player2Name=Baratou Paul baseDuplicateGameCost=5.0E14 @@ -323,7 +323,7 @@ mainDUDDCost=0.0 mainSeedCost=4446618.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000004446619E14 +totalCost=5.00000004446618E14 Player1Name=Mignucci Bernard Player2Name=Mizessyn François baseDuplicateGameCost=5.0E14 @@ -335,7 +335,7 @@ mainDUDDCost=0.0 mainSeedCost=4807818.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000004807819E14 +totalCost=5.00000004807818E14 Player1Name=Mignucci Bernard Player2Name=Donzet Frédéric baseDuplicateGameCost=5.0E14 @@ -347,7 +347,7 @@ mainDUDDCost=0.0 mainSeedCost=4878110.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000004878111E14 +totalCost=5.0000000487811E14 Player1Name=Mignucci Bernard Player2Name=Giovanni Nicita baseDuplicateGameCost=5.0E14 @@ -359,7 +359,7 @@ mainDUDDCost=0.0 mainSeedCost=4008157.0 secHandiCost=6 secGeoCost=0.0 -totalCost=5.00000004008158E14 +totalCost=5.00000004008157E14 Player1Name=Mignucci Bernard Player2Name=Brisson Claude baseDuplicateGameCost=5.0E14 @@ -371,7 +371,7 @@ mainDUDDCost=0.0 mainSeedCost=4693665.0 secHandiCost=3 secGeoCost=0.0 -totalCost=5.00000004693666E14 +totalCost=5.00000004693665E14 Player1Name=Honoré Jean-Christophe Player2Name=Guerre-Genton Philippe baseDuplicateGameCost=5.0E14 @@ -383,7 +383,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Honoré Jean-Christophe Player2Name=Ladet Jean-Pierre baseDuplicateGameCost=5.0E14 @@ -395,7 +395,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=7 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Honoré Jean-Christophe Player2Name=Berreby Monique baseDuplicateGameCost=5.0E14 @@ -407,7 +407,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Honoré Jean-Christophe Player2Name=Butaud Rémi baseDuplicateGameCost=5.0E14 @@ -419,7 +419,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=4 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Honoré Jean-Christophe Player2Name=Feldmann Denis baseDuplicateGameCost=5.0E14 @@ -431,7 +431,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Honoré Jean-Christophe Player2Name=Cornuejols Dominique baseDuplicateGameCost=5.0E14 @@ -443,7 +443,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Honoré Jean-Christophe Player2Name=Habuda Stephan baseDuplicateGameCost=5.0E14 @@ -455,7 +455,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=6 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Honoré Jean-Christophe Player2Name=Martin-Vallas Bruno baseDuplicateGameCost=5.0E14 @@ -467,7 +467,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=7 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Honoré Jean-Christophe Player2Name=Gaillard Jean-Luc baseDuplicateGameCost=5.0E14 @@ -479,7 +479,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=5 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Honoré Jean-Christophe Player2Name=Habart Gilles baseDuplicateGameCost=5.0E14 @@ -491,7 +491,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=3 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Honoré Jean-Christophe Player2Name=Hubert Jérôme baseDuplicateGameCost=5.0E14 @@ -503,7 +503,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Honoré Jean-Christophe Player2Name=Batailler Philippe baseDuplicateGameCost=5.0E14 @@ -515,7 +515,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Honoré Jean-Christophe Player2Name=Grimond Philippe baseDuplicateGameCost=5.0E14 @@ -527,7 +527,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=3 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Honoré Jean-Christophe Player2Name=Neant Fabrice baseDuplicateGameCost=5.0E14 @@ -539,7 +539,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=3 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Honoré Jean-Christophe Player2Name=Jollivet Guy baseDuplicateGameCost=5.0E14 @@ -551,7 +551,7 @@ mainDUDDCost=0.0 mainSeedCost=4510131.0 secHandiCost=9 secGeoCost=0.0 -totalCost=5.00000004510132E14 +totalCost=5.00000004510131E14 Player1Name=Honoré Jean-Christophe Player2Name=Dupré William baseDuplicateGameCost=5.0E14 @@ -563,7 +563,7 @@ mainDUDDCost=0.0 mainSeedCost=4737608.0 secHandiCost=9 secGeoCost=0.0 -totalCost=5.00000004737609E14 +totalCost=5.00000004737608E14 Player1Name=Honoré Jean-Christophe Player2Name=Guillou Marc baseDuplicateGameCost=5.0E14 @@ -575,7 +575,7 @@ mainDUDDCost=0.0 mainSeedCost=4080571.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000004080572E14 +totalCost=5.00000004080571E14 Player1Name=Honoré Jean-Christophe Player2Name=Jegou Marc baseDuplicateGameCost=5.0E14 @@ -587,7 +587,7 @@ mainDUDDCost=0.0 mainSeedCost=4850698.0 secHandiCost=7 secGeoCost=0.0 -totalCost=5.00000004850699E14 +totalCost=5.00000004850698E14 Player1Name=Honoré Jean-Christophe Player2Name=Martin Yvan baseDuplicateGameCost=5.0E14 @@ -599,7 +599,7 @@ mainDUDDCost=0.0 mainSeedCost=4748948.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000004748949E14 +totalCost=5.00000004748948E14 Player1Name=Honoré Jean-Christophe Player2Name=Born Véronique baseDuplicateGameCost=5.0E14 @@ -611,7 +611,7 @@ mainDUDDCost=0.0 mainSeedCost=4999805.0 secHandiCost=9 secGeoCost=0.0 -totalCost=5.00000004999806E14 +totalCost=5.00000004999805E14 Player1Name=Honoré Jean-Christophe Player2Name=Bonis Michel baseDuplicateGameCost=5.0E14 @@ -623,7 +623,7 @@ mainDUDDCost=0.0 mainSeedCost=4784096.0 secHandiCost=3 secGeoCost=0.0 -totalCost=5.00000004784097E14 +totalCost=5.00000004784096E14 Player1Name=Honoré Jean-Christophe Player2Name=Boyart Christian baseDuplicateGameCost=5.0E14 @@ -635,7 +635,7 @@ mainDUDDCost=0.0 mainSeedCost=4109265.0 secHandiCost=2 secGeoCost=0.0 -totalCost=5.00000004109266E14 +totalCost=5.00000004109265E14 Player1Name=Honoré Jean-Christophe Player2Name=Lamôle Laurent baseDuplicateGameCost=5.0E14 @@ -647,7 +647,7 @@ mainDUDDCost=0.0 mainSeedCost=4915079.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.0000000491508E14 +totalCost=5.00000004915079E14 Player1Name=Honoré Jean-Christophe Player2Name=Eon Serge baseDuplicateGameCost=5.0E14 @@ -659,7 +659,7 @@ mainDUDDCost=0.0 mainSeedCost=4595573.0 secHandiCost=1 secGeoCost=0.0 -totalCost=5.00000004595574E14 +totalCost=5.00000004595573E14 Player1Name=Honoré Jean-Christophe Player2Name=Gajdos Chantal baseDuplicateGameCost=5.0E14 @@ -671,7 +671,7 @@ mainDUDDCost=0.0 mainSeedCost=4904382.0 secHandiCost=1 secGeoCost=0.0 -totalCost=5.00000004904383E14 +totalCost=5.00000004904382E14 Player1Name=Honoré Jean-Christophe Player2Name=Baratou Paul baseDuplicateGameCost=5.0E14 @@ -683,7 +683,7 @@ mainDUDDCost=0.0 mainSeedCost=4327173.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000004327174E14 +totalCost=5.00000004327173E14 Player1Name=Honoré Jean-Christophe Player2Name=Mizessyn François baseDuplicateGameCost=5.0E14 @@ -695,7 +695,7 @@ mainDUDDCost=0.0 mainSeedCost=4340193.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000004340194E14 +totalCost=5.00000004340193E14 Player1Name=Honoré Jean-Christophe Player2Name=Donzet Frédéric baseDuplicateGameCost=5.0E14 @@ -707,7 +707,7 @@ mainDUDDCost=0.0 mainSeedCost=4383745.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000004383746E14 +totalCost=5.00000004383745E14 Player1Name=Honoré Jean-Christophe Player2Name=Giovanni Nicita baseDuplicateGameCost=5.0E14 @@ -719,7 +719,7 @@ mainDUDDCost=0.0 mainSeedCost=4513793.0 secHandiCost=6 secGeoCost=0.0 -totalCost=5.00000004513794E14 +totalCost=5.00000004513793E14 Player1Name=Honoré Jean-Christophe Player2Name=Brisson Claude baseDuplicateGameCost=5.0E14 @@ -731,7 +731,7 @@ mainDUDDCost=0.0 mainSeedCost=4657607.0 secHandiCost=3 secGeoCost=0.0 -totalCost=5.00000004657608E14 +totalCost=5.00000004657607E14 Player1Name=Guerre-Genton Philippe Player2Name=Ladet Jean-Pierre baseDuplicateGameCost=5.0E14 @@ -743,7 +743,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=9 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Guerre-Genton Philippe Player2Name=Berreby Monique baseDuplicateGameCost=5.0E14 @@ -755,7 +755,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Guerre-Genton Philippe Player2Name=Butaud Rémi baseDuplicateGameCost=5.0E14 @@ -767,7 +767,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=6 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Guerre-Genton Philippe Player2Name=Feldmann Denis baseDuplicateGameCost=5.0E14 @@ -779,7 +779,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Guerre-Genton Philippe Player2Name=Cornuejols Dominique baseDuplicateGameCost=5.0E14 @@ -791,7 +791,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Guerre-Genton Philippe Player2Name=Habuda Stephan baseDuplicateGameCost=5.0E14 @@ -803,7 +803,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=8 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Guerre-Genton Philippe Player2Name=Martin-Vallas Bruno baseDuplicateGameCost=5.0E14 @@ -815,7 +815,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=9 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Guerre-Genton Philippe Player2Name=Gaillard Jean-Luc baseDuplicateGameCost=5.0E14 @@ -827,7 +827,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=7 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Guerre-Genton Philippe Player2Name=Habart Gilles baseDuplicateGameCost=5.0E14 @@ -839,7 +839,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=5 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Guerre-Genton Philippe Player2Name=Hubert Jérôme baseDuplicateGameCost=5.0E14 @@ -851,7 +851,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Guerre-Genton Philippe Player2Name=Batailler Philippe baseDuplicateGameCost=5.0E14 @@ -863,7 +863,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=1 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Guerre-Genton Philippe Player2Name=Grimond Philippe baseDuplicateGameCost=5.0E14 @@ -875,7 +875,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=5 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Guerre-Genton Philippe Player2Name=Neant Fabrice baseDuplicateGameCost=5.0E14 @@ -887,7 +887,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=5 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Guerre-Genton Philippe Player2Name=Jollivet Guy baseDuplicateGameCost=5.0E14 @@ -899,7 +899,7 @@ mainDUDDCost=0.0 mainSeedCost=4446318.0 secHandiCost=9 secGeoCost=0.0 -totalCost=5.00000004446319E14 +totalCost=5.00000004446318E14 Player1Name=Guerre-Genton Philippe Player2Name=Dupré William baseDuplicateGameCost=5.0E14 @@ -911,7 +911,7 @@ mainDUDDCost=0.0 mainSeedCost=4977537.0 secHandiCost=9 secGeoCost=0.0 -totalCost=5.00000004977538E14 +totalCost=5.00000004977537E14 Player1Name=Guerre-Genton Philippe Player2Name=Guillou Marc baseDuplicateGameCost=5.0E14 @@ -923,7 +923,7 @@ mainDUDDCost=0.0 mainSeedCost=4987839.0 secHandiCost=2 secGeoCost=0.0 -totalCost=5.0000000498784E14 +totalCost=5.00000004987839E14 Player1Name=Guerre-Genton Philippe Player2Name=Jegou Marc baseDuplicateGameCost=5.0E14 @@ -935,7 +935,7 @@ mainDUDDCost=0.0 mainSeedCost=4786885.0 secHandiCost=9 secGeoCost=0.0 -totalCost=5.00000004786886E14 +totalCost=5.00000004786885E14 Player1Name=Guerre-Genton Philippe Player2Name=Martin Yvan baseDuplicateGameCost=5.0E14 @@ -947,7 +947,7 @@ mainDUDDCost=0.0 mainSeedCost=4685135.0 secHandiCost=2 secGeoCost=0.0 -totalCost=5.00000004685136E14 +totalCost=5.00000004685135E14 Player1Name=Guerre-Genton Philippe Player2Name=Born Véronique baseDuplicateGameCost=5.0E14 @@ -959,7 +959,7 @@ mainDUDDCost=0.0 mainSeedCost=4560973.0 secHandiCost=9 secGeoCost=0.0 -totalCost=5.00000004560974E14 +totalCost=5.00000004560973E14 Player1Name=Guerre-Genton Philippe Player2Name=Bonis Michel baseDuplicateGameCost=5.0E14 @@ -971,7 +971,7 @@ mainDUDDCost=0.0 mainSeedCost=4702785.0 secHandiCost=5 secGeoCost=0.0 -totalCost=5.00000004702786E14 +totalCost=5.00000004702785E14 Player1Name=Guerre-Genton Philippe Player2Name=Boyart Christian baseDuplicateGameCost=5.0E14 @@ -983,7 +983,7 @@ mainDUDDCost=0.0 mainSeedCost=4312913.0 secHandiCost=4 secGeoCost=0.0 -totalCost=5.00000004312914E14 +totalCost=5.00000004312913E14 Player1Name=Guerre-Genton Philippe Player2Name=Lamôle Laurent baseDuplicateGameCost=5.0E14 @@ -995,7 +995,7 @@ mainDUDDCost=0.0 mainSeedCost=4851266.0 secHandiCost=1 secGeoCost=0.0 -totalCost=5.00000004851267E14 +totalCost=5.00000004851266E14 Player1Name=Guerre-Genton Philippe Player2Name=Eon Serge baseDuplicateGameCost=5.0E14 @@ -1007,7 +1007,7 @@ mainDUDDCost=0.0 mainSeedCost=4550543.0 secHandiCost=3 secGeoCost=0.0 -totalCost=5.00000004550544E14 +totalCost=5.00000004550543E14 Player1Name=Guerre-Genton Philippe Player2Name=Gajdos Chantal baseDuplicateGameCost=5.0E14 @@ -1019,7 +1019,7 @@ mainDUDDCost=0.0 mainSeedCost=4465550.0 secHandiCost=3 secGeoCost=0.0 -totalCost=5.00000004465551E14 +totalCost=5.0000000446555E14 Player1Name=Guerre-Genton Philippe Player2Name=Baratou Paul baseDuplicateGameCost=5.0E14 @@ -1031,7 +1031,7 @@ mainDUDDCost=0.0 mainSeedCost=4245862.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000004245863E14 +totalCost=5.00000004245862E14 Player1Name=Guerre-Genton Philippe Player2Name=Mizessyn François baseDuplicateGameCost=5.0E14 @@ -1043,7 +1043,7 @@ mainDUDDCost=0.0 mainSeedCost=4276380.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000004276381E14 +totalCost=5.0000000427638E14 Player1Name=Guerre-Genton Philippe Player2Name=Donzet Frédéric baseDuplicateGameCost=5.0E14 @@ -1055,7 +1055,7 @@ mainDUDDCost=0.0 mainSeedCost=4266153.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000004266154E14 +totalCost=5.00000004266153E14 Player1Name=Guerre-Genton Philippe Player2Name=Giovanni Nicita baseDuplicateGameCost=5.0E14 @@ -1067,7 +1067,7 @@ mainDUDDCost=0.0 mainSeedCost=4396201.0 secHandiCost=8 secGeoCost=0.0 -totalCost=5.00000004396202E14 +totalCost=5.00000004396201E14 Player1Name=Guerre-Genton Philippe Player2Name=Brisson Claude baseDuplicateGameCost=5.0E14 @@ -1079,7 +1079,7 @@ mainDUDDCost=0.0 mainSeedCost=4218775.0 secHandiCost=5 secGeoCost=0.0 -totalCost=5.00000004218776E14 +totalCost=5.00000004218775E14 Player1Name=Ladet Jean-Pierre Player2Name=Berreby Monique baseDuplicateGameCost=5.0E14 @@ -1091,7 +1091,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Ladet Jean-Pierre Player2Name=Butaud Rémi baseDuplicateGameCost=5.0E14 @@ -1103,7 +1103,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Ladet Jean-Pierre Player2Name=Feldmann Denis baseDuplicateGameCost=5.0E14 @@ -1115,7 +1115,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Ladet Jean-Pierre Player2Name=Cornuejols Dominique baseDuplicateGameCost=5.0E14 @@ -1127,7 +1127,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Ladet Jean-Pierre Player2Name=Habuda Stephan baseDuplicateGameCost=5.0E14 @@ -1139,7 +1139,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Ladet Jean-Pierre Player2Name=Martin-Vallas Bruno baseDuplicateGameCost=5.0E14 @@ -1151,7 +1151,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Ladet Jean-Pierre Player2Name=Gaillard Jean-Luc baseDuplicateGameCost=5.0E14 @@ -1163,7 +1163,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Ladet Jean-Pierre Player2Name=Habart Gilles baseDuplicateGameCost=5.0E14 @@ -1175,7 +1175,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Ladet Jean-Pierre Player2Name=Hubert Jérôme baseDuplicateGameCost=5.0E14 @@ -1187,7 +1187,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Ladet Jean-Pierre Player2Name=Batailler Philippe baseDuplicateGameCost=5.0E14 @@ -1199,7 +1199,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Ladet Jean-Pierre Player2Name=Grimond Philippe baseDuplicateGameCost=5.0E14 @@ -1211,7 +1211,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Ladet Jean-Pierre Player2Name=Neant Fabrice baseDuplicateGameCost=5.0E14 @@ -1223,7 +1223,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Ladet Jean-Pierre Player2Name=Jollivet Guy baseDuplicateGameCost=5.0E14 @@ -1235,7 +1235,7 @@ mainDUDDCost=0.0 mainSeedCost=4640924.0 secHandiCost=8 secGeoCost=0.0 -totalCost=5.00000004640925E14 +totalCost=5.00000004640924E14 Player1Name=Ladet Jean-Pierre Player2Name=Dupré William baseDuplicateGameCost=5.0E14 @@ -1247,7 +1247,7 @@ mainDUDDCost=0.0 mainSeedCost=4904851.0 secHandiCost=9 secGeoCost=0.0 -totalCost=5.00000004904852E14 +totalCost=5.00000004904851E14 Player1Name=Ladet Jean-Pierre Player2Name=Guillou Marc baseDuplicateGameCost=5.0E14 @@ -1259,7 +1259,7 @@ mainDUDDCost=0.0 mainSeedCost=4271021.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000004271022E14 +totalCost=5.00000004271021E14 Player1Name=Ladet Jean-Pierre Player2Name=Jegou Marc baseDuplicateGameCost=5.0E14 @@ -1271,7 +1271,7 @@ mainDUDDCost=0.0 mainSeedCost=4813481.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000004813482E14 +totalCost=5.00000004813481E14 Player1Name=Ladet Jean-Pierre Player2Name=Martin Yvan baseDuplicateGameCost=5.0E14 @@ -1283,7 +1283,7 @@ mainDUDDCost=0.0 mainSeedCost=4342715.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000004342716E14 +totalCost=5.00000004342715E14 Player1Name=Ladet Jean-Pierre Player2Name=Born Véronique baseDuplicateGameCost=5.0E14 @@ -1295,7 +1295,7 @@ mainDUDDCost=0.0 mainSeedCost=4143840.0 secHandiCost=9 secGeoCost=0.0 -totalCost=5.00000004143841E14 +totalCost=5.0000000414384E14 Player1Name=Ladet Jean-Pierre Player2Name=Bonis Michel baseDuplicateGameCost=5.0E14 @@ -1307,7 +1307,7 @@ mainDUDDCost=0.0 mainSeedCost=4974546.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000004974547E14 +totalCost=5.00000004974546E14 Player1Name=Ladet Jean-Pierre Player2Name=Boyart Christian baseDuplicateGameCost=5.0E14 @@ -1319,7 +1319,7 @@ mainDUDDCost=0.0 mainSeedCost=4206887.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000004206888E14 +totalCost=5.00000004206887E14 Player1Name=Ladet Jean-Pierre Player2Name=Lamôle Laurent baseDuplicateGameCost=5.0E14 @@ -1331,7 +1331,7 @@ mainDUDDCost=0.0 mainSeedCost=4343728.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000004343729E14 +totalCost=5.00000004343728E14 Player1Name=Ladet Jean-Pierre Player2Name=Eon Serge baseDuplicateGameCost=5.0E14 @@ -1343,7 +1343,7 @@ mainDUDDCost=0.0 mainSeedCost=4855644.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000004855645E14 +totalCost=5.00000004855644E14 Player1Name=Ladet Jean-Pierre Player2Name=Gajdos Chantal baseDuplicateGameCost=5.0E14 @@ -1355,7 +1355,7 @@ mainDUDDCost=0.0 mainSeedCost=4048417.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000004048418E14 +totalCost=5.00000004048417E14 Player1Name=Ladet Jean-Pierre Player2Name=Baratou Paul baseDuplicateGameCost=5.0E14 @@ -1367,7 +1367,7 @@ mainDUDDCost=0.0 mainSeedCost=4517623.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000004517624E14 +totalCost=5.00000004517623E14 Player1Name=Ladet Jean-Pierre Player2Name=Mizessyn François baseDuplicateGameCost=5.0E14 @@ -1379,7 +1379,7 @@ mainDUDDCost=0.0 mainSeedCost=4777419.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.0000000477742E14 +totalCost=5.00000004777419E14 Player1Name=Ladet Jean-Pierre Player2Name=Donzet Frédéric baseDuplicateGameCost=5.0E14 @@ -1391,7 +1391,7 @@ mainDUDDCost=0.0 mainSeedCost=4504574.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000004504575E14 +totalCost=5.00000004504574E14 Player1Name=Ladet Jean-Pierre Player2Name=Giovanni Nicita baseDuplicateGameCost=5.0E14 @@ -1403,7 +1403,7 @@ mainDUDDCost=0.0 mainSeedCost=4634622.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000004634623E14 +totalCost=5.00000004634622E14 Player1Name=Ladet Jean-Pierre Player2Name=Brisson Claude baseDuplicateGameCost=5.0E14 @@ -1415,7 +1415,7 @@ mainDUDDCost=0.0 mainSeedCost=4801643.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000004801644E14 +totalCost=5.00000004801643E14 Player1Name=Berreby Monique Player2Name=Butaud Rémi baseDuplicateGameCost=5.0E14 @@ -1427,7 +1427,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=5 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Berreby Monique Player2Name=Feldmann Denis baseDuplicateGameCost=5.0E14 @@ -1439,7 +1439,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Berreby Monique Player2Name=Cornuejols Dominique baseDuplicateGameCost=5.0E14 @@ -1451,7 +1451,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Berreby Monique Player2Name=Habuda Stephan baseDuplicateGameCost=5.0E14 @@ -1463,7 +1463,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=7 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Berreby Monique Player2Name=Martin-Vallas Bruno baseDuplicateGameCost=5.0E14 @@ -1475,7 +1475,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=8 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Berreby Monique Player2Name=Gaillard Jean-Luc baseDuplicateGameCost=5.0E14 @@ -1487,7 +1487,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=6 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Berreby Monique Player2Name=Habart Gilles baseDuplicateGameCost=5.0E14 @@ -1499,7 +1499,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=4 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Berreby Monique Player2Name=Hubert Jérôme baseDuplicateGameCost=5.0E14 @@ -1511,7 +1511,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Berreby Monique Player2Name=Batailler Philippe baseDuplicateGameCost=5.0E14 @@ -1523,7 +1523,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Berreby Monique Player2Name=Grimond Philippe baseDuplicateGameCost=5.0E14 @@ -1535,7 +1535,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=4 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Berreby Monique Player2Name=Neant Fabrice baseDuplicateGameCost=5.0E14 @@ -1547,7 +1547,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=4 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Berreby Monique Player2Name=Jollivet Guy baseDuplicateGameCost=5.0E14 @@ -1559,7 +1559,7 @@ mainDUDDCost=0.0 mainSeedCost=4462902.0 secHandiCost=9 secGeoCost=0.0 -totalCost=5.00000004462903E14 +totalCost=5.00000004462902E14 Player1Name=Berreby Monique Player2Name=Dupré William baseDuplicateGameCost=5.0E14 @@ -1571,7 +1571,7 @@ mainDUDDCost=0.0 mainSeedCost=4622212.0 secHandiCost=9 secGeoCost=0.0 -totalCost=5.00000004622213E14 +totalCost=5.00000004622212E14 Player1Name=Berreby Monique Player2Name=Guillou Marc baseDuplicateGameCost=5.0E14 @@ -1583,7 +1583,7 @@ mainDUDDCost=0.0 mainSeedCost=4313453.0 secHandiCost=1 secGeoCost=0.0 -totalCost=5.00000004313454E14 +totalCost=5.00000004313453E14 Player1Name=Berreby Monique Player2Name=Jegou Marc baseDuplicateGameCost=5.0E14 @@ -1595,7 +1595,7 @@ mainDUDDCost=0.0 mainSeedCost=4819657.0 secHandiCost=8 secGeoCost=0.0 -totalCost=5.00000004819658E14 +totalCost=5.00000004819657E14 Player1Name=Berreby Monique Player2Name=Martin Yvan baseDuplicateGameCost=5.0E14 @@ -1607,7 +1607,7 @@ mainDUDDCost=0.0 mainSeedCost=4592357.0 secHandiCost=1 secGeoCost=0.0 -totalCost=5.00000004592358E14 +totalCost=5.00000004592357E14 Player1Name=Berreby Monique Player2Name=Born Véronique baseDuplicateGameCost=5.0E14 @@ -1619,7 +1619,7 @@ mainDUDDCost=0.0 mainSeedCost=4877810.0 secHandiCost=9 secGeoCost=0.0 -totalCost=5.00000004877811E14 +totalCost=5.0000000487781E14 Player1Name=Berreby Monique Player2Name=Bonis Michel baseDuplicateGameCost=5.0E14 @@ -1631,7 +1631,7 @@ mainDUDDCost=0.0 mainSeedCost=4535118.0 secHandiCost=4 secGeoCost=0.0 -totalCost=5.00000004535119E14 +totalCost=5.00000004535118E14 Player1Name=Berreby Monique Player2Name=Boyart Christian baseDuplicateGameCost=5.0E14 @@ -1643,7 +1643,7 @@ mainDUDDCost=0.0 mainSeedCost=4797883.0 secHandiCost=3 secGeoCost=0.0 -totalCost=5.00000004797884E14 +totalCost=5.00000004797883E14 Player1Name=Berreby Monique Player2Name=Lamôle Laurent baseDuplicateGameCost=5.0E14 @@ -1655,7 +1655,7 @@ mainDUDDCost=0.0 mainSeedCost=4727323.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000004727324E14 +totalCost=5.00000004727323E14 Player1Name=Berreby Monique Player2Name=Eon Serge baseDuplicateGameCost=5.0E14 @@ -1667,7 +1667,7 @@ mainDUDDCost=0.0 mainSeedCost=4283771.0 secHandiCost=2 secGeoCost=0.0 -totalCost=5.00000004283772E14 +totalCost=5.00000004283771E14 Player1Name=Berreby Monique Player2Name=Gajdos Chantal baseDuplicateGameCost=5.0E14 @@ -1679,7 +1679,7 @@ mainDUDDCost=0.0 mainSeedCost=4522637.0 secHandiCost=2 secGeoCost=0.0 -totalCost=5.00000004522638E14 +totalCost=5.00000004522637E14 Player1Name=Berreby Monique Player2Name=Baratou Paul baseDuplicateGameCost=5.0E14 @@ -1691,7 +1691,7 @@ mainDUDDCost=0.0 mainSeedCost=4265559.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.0000000426556E14 +totalCost=5.00000004265559E14 Player1Name=Berreby Monique Player2Name=Mizessyn François baseDuplicateGameCost=5.0E14 @@ -1703,7 +1703,7 @@ mainDUDDCost=0.0 mainSeedCost=4764444.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000004764445E14 +totalCost=5.00000004764444E14 Player1Name=Berreby Monique Player2Name=Donzet Frédéric baseDuplicateGameCost=5.0E14 @@ -1715,7 +1715,7 @@ mainDUDDCost=0.0 mainSeedCost=4088204.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000004088205E14 +totalCost=5.00000004088204E14 Player1Name=Berreby Monique Player2Name=Giovanni Nicita baseDuplicateGameCost=5.0E14 @@ -1727,7 +1727,7 @@ mainDUDDCost=0.0 mainSeedCost=4431020.0 secHandiCost=7 secGeoCost=0.0 -totalCost=5.00000004431021E14 +totalCost=5.0000000443102E14 Player1Name=Berreby Monique Player2Name=Brisson Claude baseDuplicateGameCost=5.0E14 @@ -1739,7 +1739,7 @@ mainDUDDCost=0.0 mainSeedCost=4770277.0 secHandiCost=4 secGeoCost=0.0 -totalCost=5.00000004770278E14 +totalCost=5.00000004770277E14 Player1Name=Butaud Rémi Player2Name=Feldmann Denis baseDuplicateGameCost=5.0E14 @@ -1751,7 +1751,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Butaud Rémi Player2Name=Cornuejols Dominique baseDuplicateGameCost=5.0E14 @@ -1763,7 +1763,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Butaud Rémi Player2Name=Habuda Stephan baseDuplicateGameCost=5.0E14 @@ -1775,7 +1775,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=1 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Butaud Rémi Player2Name=Martin-Vallas Bruno baseDuplicateGameCost=5.0E14 @@ -1787,7 +1787,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=2 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Butaud Rémi Player2Name=Gaillard Jean-Luc baseDuplicateGameCost=5.0E14 @@ -1799,7 +1799,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Butaud Rémi Player2Name=Habart Gilles baseDuplicateGameCost=5.0E14 @@ -1811,7 +1811,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Butaud Rémi Player2Name=Hubert Jérôme baseDuplicateGameCost=5.0E14 @@ -1823,7 +1823,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Butaud Rémi Player2Name=Batailler Philippe baseDuplicateGameCost=5.0E14 @@ -1835,7 +1835,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Butaud Rémi Player2Name=Grimond Philippe baseDuplicateGameCost=5.0E14 @@ -1847,7 +1847,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Butaud Rémi Player2Name=Neant Fabrice baseDuplicateGameCost=5.0E14 @@ -1859,7 +1859,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Butaud Rémi Player2Name=Jollivet Guy baseDuplicateGameCost=5.0E14 @@ -1871,7 +1871,7 @@ mainDUDDCost=0.0 mainSeedCost=4232859.0 secHandiCost=9 secGeoCost=0.0 -totalCost=5.0000000423286E14 +totalCost=5.00000004232859E14 Player1Name=Butaud Rémi Player2Name=Dupré William baseDuplicateGameCost=5.0E14 @@ -1883,7 +1883,7 @@ mainDUDDCost=0.0 mainSeedCost=4242201.0 secHandiCost=9 secGeoCost=0.0 -totalCost=5.00000004242202E14 +totalCost=5.00000004242201E14 Player1Name=Butaud Rémi Player2Name=Guillou Marc baseDuplicateGameCost=5.0E14 @@ -1895,7 +1895,7 @@ mainDUDDCost=0.0 mainSeedCost=4688571.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000004688572E14 +totalCost=5.00000004688571E14 Player1Name=Butaud Rémi Player2Name=Jegou Marc baseDuplicateGameCost=5.0E14 @@ -1907,7 +1907,7 @@ mainDUDDCost=0.0 mainSeedCost=4456007.0 secHandiCost=2 secGeoCost=0.0 -totalCost=5.00000004456008E14 +totalCost=5.00000004456007E14 Player1Name=Butaud Rémi Player2Name=Martin Yvan baseDuplicateGameCost=5.0E14 @@ -1919,7 +1919,7 @@ mainDUDDCost=0.0 mainSeedCost=4585536.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000004585537E14 +totalCost=5.00000004585536E14 Player1Name=Butaud Rémi Player2Name=Born Véronique baseDuplicateGameCost=5.0E14 @@ -1931,7 +1931,7 @@ mainDUDDCost=0.0 mainSeedCost=4047181.0 secHandiCost=9 secGeoCost=0.0 -totalCost=5.00000004047182E14 +totalCost=5.00000004047181E14 Player1Name=Butaud Rémi Player2Name=Bonis Michel baseDuplicateGameCost=5.0E14 @@ -1943,7 +1943,7 @@ mainDUDDCost=0.0 mainSeedCost=4839184.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000004839185E14 +totalCost=5.00000004839184E14 Player1Name=Butaud Rémi Player2Name=Boyart Christian baseDuplicateGameCost=5.0E14 @@ -1955,7 +1955,7 @@ mainDUDDCost=0.0 mainSeedCost=4148931.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000004148932E14 +totalCost=5.00000004148931E14 Player1Name=Butaud Rémi Player2Name=Lamôle Laurent baseDuplicateGameCost=5.0E14 @@ -1967,7 +1967,7 @@ mainDUDDCost=0.0 mainSeedCost=4988408.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000004988409E14 +totalCost=5.00000004988408E14 Player1Name=Butaud Rémi Player2Name=Eon Serge baseDuplicateGameCost=5.0E14 @@ -1979,7 +1979,7 @@ mainDUDDCost=0.0 mainSeedCost=4155552.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000004155553E14 +totalCost=5.00000004155552E14 Player1Name=Butaud Rémi Player2Name=Gajdos Chantal baseDuplicateGameCost=5.0E14 @@ -1991,7 +1991,7 @@ mainDUDDCost=0.0 mainSeedCost=4093790.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000004093791E14 +totalCost=5.0000000409379E14 Player1Name=Butaud Rémi Player2Name=Baratou Paul baseDuplicateGameCost=5.0E14 @@ -2003,7 +2003,7 @@ mainDUDDCost=0.0 mainSeedCost=4382261.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000004382262E14 +totalCost=5.00000004382261E14 Player1Name=Butaud Rémi Player2Name=Mizessyn François baseDuplicateGameCost=5.0E14 @@ -2015,7 +2015,7 @@ mainDUDDCost=0.0 mainSeedCost=4232389.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.0000000423239E14 +totalCost=5.00000004232389E14 Player1Name=Butaud Rémi Player2Name=Donzet Frédéric baseDuplicateGameCost=5.0E14 @@ -2027,7 +2027,7 @@ mainDUDDCost=0.0 mainSeedCost=4149793.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000004149794E14 +totalCost=5.00000004149793E14 Player1Name=Butaud Rémi Player2Name=Giovanni Nicita baseDuplicateGameCost=5.0E14 @@ -2039,7 +2039,7 @@ mainDUDDCost=0.0 mainSeedCost=4099845.0 secHandiCost=1 secGeoCost=0.0 -totalCost=5.00000004099846E14 +totalCost=5.00000004099845E14 Player1Name=Butaud Rémi Player2Name=Brisson Claude baseDuplicateGameCost=5.0E14 @@ -2051,7 +2051,7 @@ mainDUDDCost=0.0 mainSeedCost=4704984.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000004704985E14 +totalCost=5.00000004704984E14 Player1Name=Feldmann Denis Player2Name=Cornuejols Dominique baseDuplicateGameCost=5.0E14 @@ -2063,7 +2063,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Feldmann Denis Player2Name=Habuda Stephan baseDuplicateGameCost=5.0E14 @@ -2075,7 +2075,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=9 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Feldmann Denis Player2Name=Martin-Vallas Bruno baseDuplicateGameCost=5.0E14 @@ -2087,7 +2087,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=9 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Feldmann Denis Player2Name=Gaillard Jean-Luc baseDuplicateGameCost=5.0E14 @@ -2099,7 +2099,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=8 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Feldmann Denis Player2Name=Habart Gilles baseDuplicateGameCost=5.0E14 @@ -2111,7 +2111,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=6 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Feldmann Denis Player2Name=Hubert Jérôme baseDuplicateGameCost=5.0E14 @@ -2123,7 +2123,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Feldmann Denis Player2Name=Batailler Philippe baseDuplicateGameCost=5.0E14 @@ -2135,7 +2135,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=2 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Feldmann Denis Player2Name=Grimond Philippe baseDuplicateGameCost=5.0E14 @@ -2147,7 +2147,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=6 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Feldmann Denis Player2Name=Neant Fabrice baseDuplicateGameCost=5.0E14 @@ -2159,7 +2159,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=6 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Feldmann Denis Player2Name=Jollivet Guy baseDuplicateGameCost=5.0E14 @@ -2171,7 +2171,7 @@ mainDUDDCost=0.0 mainSeedCost=4196825.0 secHandiCost=9 secGeoCost=0.0 -totalCost=5.00000004196826E14 +totalCost=5.00000004196825E14 Player1Name=Feldmann Denis Player2Name=Dupré William baseDuplicateGameCost=5.0E14 @@ -2183,7 +2183,7 @@ mainDUDDCost=0.0 mainSeedCost=4550172.0 secHandiCost=9 secGeoCost=0.0 -totalCost=5.00000004550173E14 +totalCost=5.00000004550172E14 Player1Name=Feldmann Denis Player2Name=Guillou Marc baseDuplicateGameCost=5.0E14 @@ -2195,7 +2195,7 @@ mainDUDDCost=0.0 mainSeedCost=4948667.0 secHandiCost=3 secGeoCost=0.0 -totalCost=5.00000004948668E14 +totalCost=5.00000004948667E14 Player1Name=Feldmann Denis Player2Name=Jegou Marc baseDuplicateGameCost=5.0E14 @@ -2207,7 +2207,7 @@ mainDUDDCost=0.0 mainSeedCost=4270178.0 secHandiCost=9 secGeoCost=0.0 -totalCost=5.00000004270179E14 +totalCost=5.00000004270178E14 Player1Name=Feldmann Denis Player2Name=Martin Yvan baseDuplicateGameCost=5.0E14 @@ -2219,7 +2219,7 @@ mainDUDDCost=0.0 mainSeedCost=4882086.0 secHandiCost=3 secGeoCost=0.0 -totalCost=5.00000004882087E14 +totalCost=5.00000004882086E14 Player1Name=Feldmann Denis Player2Name=Born Véronique baseDuplicateGameCost=5.0E14 @@ -2231,7 +2231,7 @@ mainDUDDCost=0.0 mainSeedCost=4308167.0 secHandiCost=9 secGeoCost=0.0 -totalCost=5.00000004308168E14 +totalCost=5.00000004308167E14 Player1Name=Feldmann Denis Player2Name=Bonis Michel baseDuplicateGameCost=5.0E14 @@ -2243,7 +2243,7 @@ mainDUDDCost=0.0 mainSeedCost=4100861.0 secHandiCost=6 secGeoCost=0.0 -totalCost=5.00000004100862E14 +totalCost=5.00000004100861E14 Player1Name=Feldmann Denis Player2Name=Boyart Christian baseDuplicateGameCost=5.0E14 @@ -2255,7 +2255,7 @@ mainDUDDCost=0.0 mainSeedCost=4409225.0 secHandiCost=5 secGeoCost=0.0 -totalCost=5.00000004409226E14 +totalCost=5.00000004409225E14 Player1Name=Feldmann Denis Player2Name=Lamôle Laurent baseDuplicateGameCost=5.0E14 @@ -2267,7 +2267,7 @@ mainDUDDCost=0.0 mainSeedCost=4584028.0 secHandiCost=2 secGeoCost=0.0 -totalCost=5.00000004584029E14 +totalCost=5.00000004584028E14 Player1Name=Feldmann Denis Player2Name=Eon Serge baseDuplicateGameCost=5.0E14 @@ -2279,7 +2279,7 @@ mainDUDDCost=0.0 mainSeedCost=4424943.0 secHandiCost=4 secGeoCost=0.0 -totalCost=5.00000004424944E14 +totalCost=5.00000004424943E14 Player1Name=Feldmann Denis Player2Name=Gajdos Chantal baseDuplicateGameCost=5.0E14 @@ -2291,7 +2291,7 @@ mainDUDDCost=0.0 mainSeedCost=4206859.0 secHandiCost=4 secGeoCost=0.0 -totalCost=5.0000000420686E14 +totalCost=5.00000004206859E14 Player1Name=Feldmann Denis Player2Name=Baratou Paul baseDuplicateGameCost=5.0E14 @@ -2303,7 +2303,7 @@ mainDUDDCost=0.0 mainSeedCost=4643939.0 secHandiCost=1 secGeoCost=0.0 -totalCost=5.0000000464394E14 +totalCost=5.00000004643939E14 Player1Name=Feldmann Denis Player2Name=Mizessyn François baseDuplicateGameCost=5.0E14 @@ -2315,7 +2315,7 @@ mainDUDDCost=0.0 mainSeedCost=4422864.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000004422865E14 +totalCost=5.00000004422864E14 Player1Name=Feldmann Denis Player2Name=Donzet Frédéric baseDuplicateGameCost=5.0E14 @@ -2327,7 +2327,7 @@ mainDUDDCost=0.0 mainSeedCost=4187906.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000004187907E14 +totalCost=5.00000004187906E14 Player1Name=Feldmann Denis Player2Name=Giovanni Nicita baseDuplicateGameCost=5.0E14 @@ -2339,7 +2339,7 @@ mainDUDDCost=0.0 mainSeedCost=4139660.0 secHandiCost=9 secGeoCost=0.0 -totalCost=5.00000004139661E14 +totalCost=5.0000000413966E14 Player1Name=Feldmann Denis Player2Name=Brisson Claude baseDuplicateGameCost=5.0E14 @@ -2351,7 +2351,7 @@ mainDUDDCost=0.0 mainSeedCost=4965970.0 secHandiCost=6 secGeoCost=0.0 -totalCost=5.00000004965971E14 +totalCost=5.0000000496597E14 Player1Name=Cornuejols Dominique Player2Name=Habuda Stephan baseDuplicateGameCost=5.0E14 @@ -2363,7 +2363,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=9 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Cornuejols Dominique Player2Name=Martin-Vallas Bruno baseDuplicateGameCost=5.0E14 @@ -2375,7 +2375,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=9 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Cornuejols Dominique Player2Name=Gaillard Jean-Luc baseDuplicateGameCost=5.0E14 @@ -2387,7 +2387,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=8 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Cornuejols Dominique Player2Name=Habart Gilles baseDuplicateGameCost=5.0E14 @@ -2399,7 +2399,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=6 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Cornuejols Dominique Player2Name=Hubert Jérôme baseDuplicateGameCost=5.0E14 @@ -2411,7 +2411,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Cornuejols Dominique Player2Name=Batailler Philippe baseDuplicateGameCost=5.0E14 @@ -2423,7 +2423,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=2 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Cornuejols Dominique Player2Name=Grimond Philippe baseDuplicateGameCost=5.0E14 @@ -2435,7 +2435,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=6 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Cornuejols Dominique Player2Name=Neant Fabrice baseDuplicateGameCost=5.0E14 @@ -2447,7 +2447,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=6 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Cornuejols Dominique Player2Name=Jollivet Guy baseDuplicateGameCost=5.0E14 @@ -2459,7 +2459,7 @@ mainDUDDCost=0.0 mainSeedCost=4372125.0 secHandiCost=9 secGeoCost=0.0 -totalCost=5.00000004372126E14 +totalCost=5.00000004372125E14 Player1Name=Cornuejols Dominique Player2Name=Dupré William baseDuplicateGameCost=5.0E14 @@ -2471,7 +2471,7 @@ mainDUDDCost=0.0 mainSeedCost=4718895.0 secHandiCost=9 secGeoCost=0.0 -totalCost=5.00000004718896E14 +totalCost=5.00000004718895E14 Player1Name=Cornuejols Dominique Player2Name=Guillou Marc baseDuplicateGameCost=5.0E14 @@ -2483,7 +2483,7 @@ mainDUDDCost=0.0 mainSeedCost=4716226.0 secHandiCost=3 secGeoCost=0.0 -totalCost=5.00000004716227E14 +totalCost=5.00000004716226E14 Player1Name=Cornuejols Dominique Player2Name=Jegou Marc baseDuplicateGameCost=5.0E14 @@ -2495,7 +2495,7 @@ mainDUDDCost=0.0 mainSeedCost=4145888.0 secHandiCost=9 secGeoCost=0.0 -totalCost=5.00000004145889E14 +totalCost=5.00000004145888E14 Player1Name=Cornuejols Dominique Player2Name=Martin Yvan baseDuplicateGameCost=5.0E14 @@ -2507,7 +2507,7 @@ mainDUDDCost=0.0 mainSeedCost=4722553.0 secHandiCost=3 secGeoCost=0.0 -totalCost=5.00000004722554E14 +totalCost=5.00000004722553E14 Player1Name=Cornuejols Dominique Player2Name=Born Véronique baseDuplicateGameCost=5.0E14 @@ -2519,7 +2519,7 @@ mainDUDDCost=0.0 mainSeedCost=4917357.0 secHandiCost=9 secGeoCost=0.0 -totalCost=5.00000004917358E14 +totalCost=5.00000004917357E14 Player1Name=Cornuejols Dominique Player2Name=Bonis Michel baseDuplicateGameCost=5.0E14 @@ -2531,7 +2531,7 @@ mainDUDDCost=0.0 mainSeedCost=4663637.0 secHandiCost=6 secGeoCost=0.0 -totalCost=5.00000004663638E14 +totalCost=5.00000004663637E14 Player1Name=Cornuejols Dominique Player2Name=Boyart Christian baseDuplicateGameCost=5.0E14 @@ -2543,7 +2543,7 @@ mainDUDDCost=0.0 mainSeedCost=4064828.0 secHandiCost=5 secGeoCost=0.0 -totalCost=5.00000004064829E14 +totalCost=5.00000004064828E14 Player1Name=Cornuejols Dominique Player2Name=Lamôle Laurent baseDuplicateGameCost=5.0E14 @@ -2555,7 +2555,7 @@ mainDUDDCost=0.0 mainSeedCost=4022636.0 secHandiCost=2 secGeoCost=0.0 -totalCost=5.00000004022637E14 +totalCost=5.00000004022636E14 Player1Name=Cornuejols Dominique Player2Name=Eon Serge baseDuplicateGameCost=5.0E14 @@ -2567,7 +2567,7 @@ mainDUDDCost=0.0 mainSeedCost=4065714.0 secHandiCost=4 secGeoCost=0.0 -totalCost=5.00000004065715E14 +totalCost=5.00000004065714E14 Player1Name=Cornuejols Dominique Player2Name=Gajdos Chantal baseDuplicateGameCost=5.0E14 @@ -2579,7 +2579,7 @@ mainDUDDCost=0.0 mainSeedCost=4680365.0 secHandiCost=4 secGeoCost=0.0 -totalCost=5.00000004680366E14 +totalCost=5.00000004680365E14 Player1Name=Cornuejols Dominique Player2Name=Baratou Paul baseDuplicateGameCost=5.0E14 @@ -2591,7 +2591,7 @@ mainDUDDCost=0.0 mainSeedCost=4206714.0 secHandiCost=1 secGeoCost=0.0 -totalCost=5.00000004206715E14 +totalCost=5.00000004206714E14 Player1Name=Cornuejols Dominique Player2Name=Mizessyn François baseDuplicateGameCost=5.0E14 @@ -2603,7 +2603,7 @@ mainDUDDCost=0.0 mainSeedCost=4051181.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000004051182E14 +totalCost=5.00000004051181E14 Player1Name=Cornuejols Dominique Player2Name=Donzet Frédéric baseDuplicateGameCost=5.0E14 @@ -2615,7 +2615,7 @@ mainDUDDCost=0.0 mainSeedCost=4632888.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000004632889E14 +totalCost=5.00000004632888E14 Player1Name=Cornuejols Dominique Player2Name=Giovanni Nicita baseDuplicateGameCost=5.0E14 @@ -2627,7 +2627,7 @@ mainDUDDCost=0.0 mainSeedCost=4466658.0 secHandiCost=9 secGeoCost=0.0 -totalCost=5.00000004466659E14 +totalCost=5.00000004466658E14 Player1Name=Cornuejols Dominique Player2Name=Brisson Claude baseDuplicateGameCost=5.0E14 @@ -2639,7 +2639,7 @@ mainDUDDCost=0.0 mainSeedCost=4575159.0 secHandiCost=6 secGeoCost=0.0 -totalCost=5.0000000457516E14 +totalCost=5.00000004575159E14 Player1Name=Habuda Stephan Player2Name=Martin-Vallas Bruno baseDuplicateGameCost=5.0E14 @@ -2651,7 +2651,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Habuda Stephan Player2Name=Gaillard Jean-Luc baseDuplicateGameCost=5.0E14 @@ -2663,7 +2663,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Habuda Stephan Player2Name=Habart Gilles baseDuplicateGameCost=5.0E14 @@ -2675,7 +2675,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Habuda Stephan Player2Name=Hubert Jérôme baseDuplicateGameCost=5.0E14 @@ -2687,7 +2687,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Habuda Stephan Player2Name=Batailler Philippe baseDuplicateGameCost=5.0E14 @@ -2699,7 +2699,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Habuda Stephan Player2Name=Grimond Philippe baseDuplicateGameCost=5.0E14 @@ -2711,7 +2711,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Habuda Stephan Player2Name=Neant Fabrice baseDuplicateGameCost=5.0E14 @@ -2723,7 +2723,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Habuda Stephan Player2Name=Jollivet Guy baseDuplicateGameCost=5.0E14 @@ -2735,7 +2735,7 @@ mainDUDDCost=0.0 mainSeedCost=4567593.0 secHandiCost=9 secGeoCost=0.0 -totalCost=5.00000004567594E14 +totalCost=5.00000004567593E14 Player1Name=Habuda Stephan Player2Name=Dupré William baseDuplicateGameCost=5.0E14 @@ -2747,7 +2747,7 @@ mainDUDDCost=0.0 mainSeedCost=4179404.0 secHandiCost=9 secGeoCost=0.0 -totalCost=5.00000004179405E14 +totalCost=5.00000004179404E14 Player1Name=Habuda Stephan Player2Name=Guillou Marc baseDuplicateGameCost=5.0E14 @@ -2759,7 +2759,7 @@ mainDUDDCost=0.0 mainSeedCost=4026569.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.0000000402657E14 +totalCost=5.00000004026569E14 Player1Name=Habuda Stephan Player2Name=Jegou Marc baseDuplicateGameCost=5.0E14 @@ -2771,7 +2771,7 @@ mainDUDDCost=0.0 mainSeedCost=4640946.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000004640947E14 +totalCost=5.00000004640946E14 Player1Name=Habuda Stephan Player2Name=Martin Yvan baseDuplicateGameCost=5.0E14 @@ -2783,7 +2783,7 @@ mainDUDDCost=0.0 mainSeedCost=4252853.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000004252854E14 +totalCost=5.00000004252853E14 Player1Name=Habuda Stephan Player2Name=Born Véronique baseDuplicateGameCost=5.0E14 @@ -2795,7 +2795,7 @@ mainDUDDCost=0.0 mainSeedCost=4937400.0 secHandiCost=9 secGeoCost=0.0 -totalCost=5.00000004937401E14 +totalCost=5.000000049374E14 Player1Name=Habuda Stephan Player2Name=Bonis Michel baseDuplicateGameCost=5.0E14 @@ -2807,7 +2807,7 @@ mainDUDDCost=0.0 mainSeedCost=4730094.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000004730095E14 +totalCost=5.00000004730094E14 Player1Name=Habuda Stephan Player2Name=Boyart Christian baseDuplicateGameCost=5.0E14 @@ -2819,7 +2819,7 @@ mainDUDDCost=0.0 mainSeedCost=4038457.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000004038458E14 +totalCost=5.00000004038457E14 Player1Name=Habuda Stephan Player2Name=Lamôle Laurent baseDuplicateGameCost=5.0E14 @@ -2831,7 +2831,7 @@ mainDUDDCost=0.0 mainSeedCost=4954796.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000004954797E14 +totalCost=5.00000004954796E14 Player1Name=Habuda Stephan Player2Name=Eon Serge baseDuplicateGameCost=5.0E14 @@ -2843,7 +2843,7 @@ mainDUDDCost=0.0 mainSeedCost=4054175.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000004054176E14 +totalCost=5.00000004054175E14 Player1Name=Habuda Stephan Player2Name=Gajdos Chantal baseDuplicateGameCost=5.0E14 @@ -2855,7 +2855,7 @@ mainDUDDCost=0.0 mainSeedCost=4841977.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000004841978E14 +totalCost=5.00000004841977E14 Player1Name=Habuda Stephan Player2Name=Baratou Paul baseDuplicateGameCost=5.0E14 @@ -2867,7 +2867,7 @@ mainDUDDCost=0.0 mainSeedCost=4273171.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000004273172E14 +totalCost=5.00000004273171E14 Player1Name=Habuda Stephan Player2Name=Mizessyn François baseDuplicateGameCost=5.0E14 @@ -2879,7 +2879,7 @@ mainDUDDCost=0.0 mainSeedCost=4793632.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000004793633E14 +totalCost=5.00000004793632E14 Player1Name=Habuda Stephan Player2Name=Donzet Frédéric baseDuplicateGameCost=5.0E14 @@ -2891,7 +2891,7 @@ mainDUDDCost=0.0 mainSeedCost=4817139.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.0000000481714E14 +totalCost=5.00000004817139E14 Player1Name=Habuda Stephan Player2Name=Giovanni Nicita baseDuplicateGameCost=5.0E14 @@ -2903,7 +2903,7 @@ mainDUDDCost=0.0 mainSeedCost=4947187.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000004947188E14 +totalCost=5.00000004947187E14 Player1Name=Habuda Stephan Player2Name=Brisson Claude baseDuplicateGameCost=5.0E14 @@ -2915,7 +2915,7 @@ mainDUDDCost=0.0 mainSeedCost=4595202.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000004595203E14 +totalCost=5.00000004595202E14 Player1Name=Martin-Vallas Bruno Player2Name=Gaillard Jean-Luc baseDuplicateGameCost=5.0E14 @@ -2927,7 +2927,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Martin-Vallas Bruno Player2Name=Habart Gilles baseDuplicateGameCost=5.0E14 @@ -2939,7 +2939,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Martin-Vallas Bruno Player2Name=Hubert Jérôme baseDuplicateGameCost=5.0E14 @@ -2951,7 +2951,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Martin-Vallas Bruno Player2Name=Batailler Philippe baseDuplicateGameCost=5.0E14 @@ -2963,7 +2963,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Martin-Vallas Bruno Player2Name=Grimond Philippe baseDuplicateGameCost=5.0E14 @@ -2975,7 +2975,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Martin-Vallas Bruno Player2Name=Neant Fabrice baseDuplicateGameCost=5.0E14 @@ -2987,7 +2987,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Martin-Vallas Bruno Player2Name=Jollivet Guy baseDuplicateGameCost=5.0E14 @@ -2999,7 +2999,7 @@ mainDUDDCost=0.0 mainSeedCost=4243242.0 secHandiCost=8 secGeoCost=0.0 -totalCost=5.00000004243243E14 +totalCost=5.00000004243242E14 Player1Name=Martin-Vallas Bruno Player2Name=Dupré William baseDuplicateGameCost=5.0E14 @@ -3011,7 +3011,7 @@ mainDUDDCost=0.0 mainSeedCost=4728834.0 secHandiCost=9 secGeoCost=0.0 -totalCost=5.00000004728835E14 +totalCost=5.00000004728834E14 Player1Name=Martin-Vallas Bruno Player2Name=Guillou Marc baseDuplicateGameCost=5.0E14 @@ -3023,7 +3023,7 @@ mainDUDDCost=0.0 mainSeedCost=4873340.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000004873341E14 +totalCost=5.0000000487334E14 Player1Name=Martin-Vallas Bruno Player2Name=Jegou Marc baseDuplicateGameCost=5.0E14 @@ -3035,7 +3035,7 @@ mainDUDDCost=0.0 mainSeedCost=4972470.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000004972471E14 +totalCost=5.0000000497247E14 Player1Name=Martin-Vallas Bruno Player2Name=Martin Yvan baseDuplicateGameCost=5.0E14 @@ -3047,7 +3047,7 @@ mainDUDDCost=0.0 mainSeedCost=4694184.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000004694185E14 +totalCost=5.00000004694184E14 Player1Name=Martin-Vallas Bruno Player2Name=Born Véronique baseDuplicateGameCost=5.0E14 @@ -3059,7 +3059,7 @@ mainDUDDCost=0.0 mainSeedCost=4189488.0 secHandiCost=9 secGeoCost=0.0 -totalCost=5.00000004189489E14 +totalCost=5.00000004189488E14 Player1Name=Martin-Vallas Bruno Player2Name=Bonis Michel baseDuplicateGameCost=5.0E14 @@ -3071,7 +3071,7 @@ mainDUDDCost=0.0 mainSeedCost=4576864.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000004576865E14 +totalCost=5.00000004576864E14 Player1Name=Martin-Vallas Bruno Player2Name=Boyart Christian baseDuplicateGameCost=5.0E14 @@ -3083,7 +3083,7 @@ mainDUDDCost=0.0 mainSeedCost=4695865.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000004695866E14 +totalCost=5.00000004695865E14 Player1Name=Martin-Vallas Bruno Player2Name=Lamôle Laurent baseDuplicateGameCost=5.0E14 @@ -3095,7 +3095,7 @@ mainDUDDCost=0.0 mainSeedCost=4302137.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000004302138E14 +totalCost=5.00000004302137E14 Player1Name=Martin-Vallas Bruno Player2Name=Eon Serge baseDuplicateGameCost=5.0E14 @@ -3107,7 +3107,7 @@ mainDUDDCost=0.0 mainSeedCost=4792968.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000004792969E14 +totalCost=5.00000004792968E14 Player1Name=Martin-Vallas Bruno Player2Name=Gajdos Chantal baseDuplicateGameCost=5.0E14 @@ -3119,7 +3119,7 @@ mainDUDDCost=0.0 mainSeedCost=4094065.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000004094066E14 +totalCost=5.00000004094065E14 Player1Name=Martin-Vallas Bruno Player2Name=Baratou Paul baseDuplicateGameCost=5.0E14 @@ -3131,7 +3131,7 @@ mainDUDDCost=0.0 mainSeedCost=4119941.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000004119942E14 +totalCost=5.00000004119941E14 Player1Name=Martin-Vallas Bruno Player2Name=Mizessyn François baseDuplicateGameCost=5.0E14 @@ -3143,7 +3143,7 @@ mainDUDDCost=0.0 mainSeedCost=4472614.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000004472615E14 +totalCost=5.00000004472614E14 Player1Name=Martin-Vallas Bruno Player2Name=Donzet Frédéric baseDuplicateGameCost=5.0E14 @@ -3155,7 +3155,7 @@ mainDUDDCost=0.0 mainSeedCost=4771887.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000004771888E14 +totalCost=5.00000004771887E14 Player1Name=Martin-Vallas Bruno Player2Name=Giovanni Nicita baseDuplicateGameCost=5.0E14 @@ -3167,7 +3167,7 @@ mainDUDDCost=0.0 mainSeedCost=4901935.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000004901936E14 +totalCost=5.00000004901935E14 Player1Name=Martin-Vallas Bruno Player2Name=Brisson Claude baseDuplicateGameCost=5.0E14 @@ -3179,7 +3179,7 @@ mainDUDDCost=0.0 mainSeedCost=4847291.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000004847292E14 +totalCost=5.00000004847291E14 Player1Name=Gaillard Jean-Luc Player2Name=Habart Gilles baseDuplicateGameCost=5.0E14 @@ -3191,7 +3191,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Gaillard Jean-Luc Player2Name=Hubert Jérôme baseDuplicateGameCost=5.0E14 @@ -3203,7 +3203,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Gaillard Jean-Luc Player2Name=Batailler Philippe baseDuplicateGameCost=5.0E14 @@ -3215,7 +3215,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Gaillard Jean-Luc Player2Name=Grimond Philippe baseDuplicateGameCost=5.0E14 @@ -3227,7 +3227,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Gaillard Jean-Luc Player2Name=Neant Fabrice baseDuplicateGameCost=5.0E14 @@ -3239,7 +3239,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Gaillard Jean-Luc Player2Name=Jollivet Guy baseDuplicateGameCost=5.0E14 @@ -3251,7 +3251,7 @@ mainDUDDCost=0.0 mainSeedCost=4903538.0 secHandiCost=9 secGeoCost=0.0 -totalCost=5.00000004903539E14 +totalCost=5.00000004903538E14 Player1Name=Gaillard Jean-Luc Player2Name=Dupré William baseDuplicateGameCost=5.0E14 @@ -3263,7 +3263,7 @@ mainDUDDCost=0.0 mainSeedCost=4684570.0 secHandiCost=9 secGeoCost=0.0 -totalCost=5.00000004684571E14 +totalCost=5.0000000468457E14 Player1Name=Gaillard Jean-Luc Player2Name=Guillou Marc baseDuplicateGameCost=5.0E14 @@ -3275,7 +3275,7 @@ mainDUDDCost=0.0 mainSeedCost=4951509.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.0000000495151E14 +totalCost=5.00000004951509E14 Player1Name=Gaillard Jean-Luc Player2Name=Jegou Marc baseDuplicateGameCost=5.0E14 @@ -3287,7 +3287,7 @@ mainDUDDCost=0.0 mainSeedCost=4827096.0 secHandiCost=1 secGeoCost=0.0 -totalCost=5.00000004827097E14 +totalCost=5.00000004827096E14 Player1Name=Gaillard Jean-Luc Player2Name=Martin Yvan baseDuplicateGameCost=5.0E14 @@ -3299,7 +3299,7 @@ mainDUDDCost=0.0 mainSeedCost=4921382.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000004921383E14 +totalCost=5.00000004921382E14 Player1Name=Gaillard Jean-Luc Player2Name=Born Véronique baseDuplicateGameCost=5.0E14 @@ -3311,7 +3311,7 @@ mainDUDDCost=0.0 mainSeedCost=4874205.0 secHandiCost=9 secGeoCost=0.0 -totalCost=5.00000004874206E14 +totalCost=5.00000004874205E14 Player1Name=Gaillard Jean-Luc Player2Name=Bonis Michel baseDuplicateGameCost=5.0E14 @@ -3323,7 +3323,7 @@ mainDUDDCost=0.0 mainSeedCost=4803620.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000004803621E14 +totalCost=5.0000000480362E14 Player1Name=Gaillard Jean-Luc Player2Name=Boyart Christian baseDuplicateGameCost=5.0E14 @@ -3335,7 +3335,7 @@ mainDUDDCost=0.0 mainSeedCost=4838542.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000004838543E14 +totalCost=5.00000004838542E14 Player1Name=Gaillard Jean-Luc Player2Name=Lamôle Laurent baseDuplicateGameCost=5.0E14 @@ -3347,7 +3347,7 @@ mainDUDDCost=0.0 mainSeedCost=4922395.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000004922396E14 +totalCost=5.00000004922395E14 Player1Name=Gaillard Jean-Luc Player2Name=Eon Serge baseDuplicateGameCost=5.0E14 @@ -3359,7 +3359,7 @@ mainDUDDCost=0.0 mainSeedCost=4832783.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000004832784E14 +totalCost=5.00000004832783E14 Player1Name=Gaillard Jean-Luc Player2Name=Gajdos Chantal baseDuplicateGameCost=5.0E14 @@ -3371,7 +3371,7 @@ mainDUDDCost=0.0 mainSeedCost=4062674.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000004062675E14 +totalCost=5.00000004062674E14 Player1Name=Gaillard Jean-Luc Player2Name=Baratou Paul baseDuplicateGameCost=5.0E14 @@ -3383,7 +3383,7 @@ mainDUDDCost=0.0 mainSeedCost=4346697.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000004346698E14 +totalCost=5.00000004346697E14 Player1Name=Gaillard Jean-Luc Player2Name=Mizessyn François baseDuplicateGameCost=5.0E14 @@ -3395,7 +3395,7 @@ mainDUDDCost=0.0 mainSeedCost=4356085.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000004356086E14 +totalCost=5.00000004356085E14 Player1Name=Gaillard Jean-Luc Player2Name=Donzet Frédéric baseDuplicateGameCost=5.0E14 @@ -3407,7 +3407,7 @@ mainDUDDCost=0.0 mainSeedCost=4185583.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000004185584E14 +totalCost=5.00000004185583E14 Player1Name=Gaillard Jean-Luc Player2Name=Giovanni Nicita baseDuplicateGameCost=5.0E14 @@ -3419,7 +3419,7 @@ mainDUDDCost=0.0 mainSeedCost=4922222.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000004922223E14 +totalCost=5.00000004922222E14 Player1Name=Gaillard Jean-Luc Player2Name=Brisson Claude baseDuplicateGameCost=5.0E14 @@ -3431,7 +3431,7 @@ mainDUDDCost=0.0 mainSeedCost=4532007.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000004532008E14 +totalCost=5.00000004532007E14 Player1Name=Habart Gilles Player2Name=Hubert Jérôme baseDuplicateGameCost=5.0E14 @@ -3443,7 +3443,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Habart Gilles Player2Name=Batailler Philippe baseDuplicateGameCost=5.0E14 @@ -3455,7 +3455,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Habart Gilles Player2Name=Grimond Philippe baseDuplicateGameCost=5.0E14 @@ -3467,7 +3467,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Habart Gilles Player2Name=Neant Fabrice baseDuplicateGameCost=5.0E14 @@ -3479,7 +3479,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Habart Gilles Player2Name=Jollivet Guy baseDuplicateGameCost=5.0E14 @@ -3491,7 +3491,7 @@ mainDUDDCost=0.0 mainSeedCost=4858360.0 secHandiCost=9 secGeoCost=0.0 -totalCost=5.00000004858361E14 +totalCost=5.0000000485836E14 Player1Name=Habart Gilles Player2Name=Dupré William baseDuplicateGameCost=5.0E14 @@ -3503,7 +3503,7 @@ mainDUDDCost=0.0 mainSeedCost=4111167.0 secHandiCost=9 secGeoCost=0.0 -totalCost=5.00000004111168E14 +totalCost=5.00000004111167E14 Player1Name=Habart Gilles Player2Name=Guillou Marc baseDuplicateGameCost=5.0E14 @@ -3515,7 +3515,7 @@ mainDUDDCost=0.0 mainSeedCost=4884041.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000004884042E14 +totalCost=5.00000004884041E14 Player1Name=Habart Gilles Player2Name=Jegou Marc baseDuplicateGameCost=5.0E14 @@ -3527,7 +3527,7 @@ mainDUDDCost=0.0 mainSeedCost=4648311.0 secHandiCost=3 secGeoCost=0.0 -totalCost=5.00000004648312E14 +totalCost=5.00000004648311E14 Player1Name=Habart Gilles Player2Name=Martin Yvan baseDuplicateGameCost=5.0E14 @@ -3539,7 +3539,7 @@ mainDUDDCost=0.0 mainSeedCost=4099425.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000004099426E14 +totalCost=5.00000004099425E14 Player1Name=Habart Gilles Player2Name=Born Véronique baseDuplicateGameCost=5.0E14 @@ -3551,7 +3551,7 @@ mainDUDDCost=0.0 mainSeedCost=4943455.0 secHandiCost=9 secGeoCost=0.0 -totalCost=5.00000004943456E14 +totalCost=5.00000004943455E14 Player1Name=Habart Gilles Player2Name=Bonis Michel baseDuplicateGameCost=5.0E14 @@ -3563,7 +3563,7 @@ mainDUDDCost=0.0 mainSeedCost=4587565.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000004587566E14 +totalCost=5.00000004587565E14 Player1Name=Habart Gilles Player2Name=Boyart Christian baseDuplicateGameCost=5.0E14 @@ -3575,7 +3575,7 @@ mainDUDDCost=0.0 mainSeedCost=4193096.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000004193097E14 +totalCost=5.00000004193096E14 Player1Name=Habart Gilles Player2Name=Lamôle Laurent baseDuplicateGameCost=5.0E14 @@ -3587,7 +3587,7 @@ mainDUDDCost=0.0 mainSeedCost=4368344.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000004368345E14 +totalCost=5.00000004368344E14 Player1Name=Habart Gilles Player2Name=Eon Serge baseDuplicateGameCost=5.0E14 @@ -3599,7 +3599,7 @@ mainDUDDCost=0.0 mainSeedCost=4688771.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000004688772E14 +totalCost=5.00000004688771E14 Player1Name=Habart Gilles Player2Name=Gajdos Chantal baseDuplicateGameCost=5.0E14 @@ -3611,7 +3611,7 @@ mainDUDDCost=0.0 mainSeedCost=4848032.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000004848033E14 +totalCost=5.00000004848032E14 Player1Name=Habart Gilles Player2Name=Baratou Paul baseDuplicateGameCost=5.0E14 @@ -3623,7 +3623,7 @@ mainDUDDCost=0.0 mainSeedCost=4130642.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000004130643E14 +totalCost=5.00000004130642E14 Player1Name=Habart Gilles Player2Name=Mizessyn François baseDuplicateGameCost=5.0E14 @@ -3635,7 +3635,7 @@ mainDUDDCost=0.0 mainSeedCost=4008895.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000004008896E14 +totalCost=5.00000004008895E14 Player1Name=Habart Gilles Player2Name=Donzet Frédéric baseDuplicateGameCost=5.0E14 @@ -3647,7 +3647,7 @@ mainDUDDCost=0.0 mainSeedCost=4897486.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000004897487E14 +totalCost=5.00000004897486E14 Player1Name=Habart Gilles Player2Name=Giovanni Nicita baseDuplicateGameCost=5.0E14 @@ -3659,7 +3659,7 @@ mainDUDDCost=0.0 mainSeedCost=4027533.0 secHandiCost=2 secGeoCost=0.0 -totalCost=5.00000004027534E14 +totalCost=5.00000004027533E14 Player1Name=Habart Gilles Player2Name=Brisson Claude baseDuplicateGameCost=5.0E14 @@ -3671,7 +3671,7 @@ mainDUDDCost=0.0 mainSeedCost=4601257.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000004601258E14 +totalCost=5.00000004601257E14 Player1Name=Hubert Jérôme Player2Name=Batailler Philippe baseDuplicateGameCost=5.0E14 @@ -3683,7 +3683,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=2 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Hubert Jérôme Player2Name=Grimond Philippe baseDuplicateGameCost=5.0E14 @@ -3695,7 +3695,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=6 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Hubert Jérôme Player2Name=Neant Fabrice baseDuplicateGameCost=5.0E14 @@ -3707,7 +3707,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=6 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Hubert Jérôme Player2Name=Jollivet Guy baseDuplicateGameCost=5.0E14 @@ -3719,7 +3719,7 @@ mainDUDDCost=0.0 mainSeedCost=4061661.0 secHandiCost=9 secGeoCost=0.0 -totalCost=5.00000004061662E14 +totalCost=5.00000004061661E14 Player1Name=Hubert Jérôme Player2Name=Dupré William baseDuplicateGameCost=5.0E14 @@ -3731,7 +3731,7 @@ mainDUDDCost=0.0 mainSeedCost=4270156.0 secHandiCost=9 secGeoCost=0.0 -totalCost=5.00000004270157E14 +totalCost=5.00000004270156E14 Player1Name=Hubert Jérôme Player2Name=Guillou Marc baseDuplicateGameCost=5.0E14 @@ -3743,7 +3743,7 @@ mainDUDDCost=0.0 mainSeedCost=4784392.0 secHandiCost=3 secGeoCost=0.0 -totalCost=5.00000004784393E14 +totalCost=5.00000004784392E14 Player1Name=Hubert Jérôme Player2Name=Jegou Marc baseDuplicateGameCost=5.0E14 @@ -3755,7 +3755,7 @@ mainDUDDCost=0.0 mainSeedCost=4851613.0 secHandiCost=9 secGeoCost=0.0 -totalCost=5.00000004851614E14 +totalCost=5.00000004851613E14 Player1Name=Hubert Jérôme Player2Name=Martin Yvan baseDuplicateGameCost=5.0E14 @@ -3767,7 +3767,7 @@ mainDUDDCost=0.0 mainSeedCost=4302727.0 secHandiCost=3 secGeoCost=0.0 -totalCost=5.00000004302728E14 +totalCost=5.00000004302727E14 Player1Name=Hubert Jérôme Player2Name=Born Véronique baseDuplicateGameCost=5.0E14 @@ -3779,7 +3779,7 @@ mainDUDDCost=0.0 mainSeedCost=4361081.0 secHandiCost=9 secGeoCost=0.0 -totalCost=5.00000004361082E14 +totalCost=5.00000004361081E14 Player1Name=Hubert Jérôme Player2Name=Bonis Michel baseDuplicateGameCost=5.0E14 @@ -3791,7 +3791,7 @@ mainDUDDCost=0.0 mainSeedCost=4487916.0 secHandiCost=6 secGeoCost=0.0 -totalCost=5.00000004487917E14 +totalCost=5.00000004487916E14 Player1Name=Hubert Jérôme Player2Name=Boyart Christian baseDuplicateGameCost=5.0E14 @@ -3803,7 +3803,7 @@ mainDUDDCost=0.0 mainSeedCost=4127998.0 secHandiCost=5 secGeoCost=0.0 -totalCost=5.00000004127999E14 +totalCost=5.00000004127998E14 Player1Name=Hubert Jérôme Player2Name=Lamôle Laurent baseDuplicateGameCost=5.0E14 @@ -3815,7 +3815,7 @@ mainDUDDCost=0.0 mainSeedCost=4571646.0 secHandiCost=2 secGeoCost=0.0 -totalCost=5.00000004571647E14 +totalCost=5.00000004571646E14 Player1Name=Hubert Jérôme Player2Name=Eon Serge baseDuplicateGameCost=5.0E14 @@ -3827,7 +3827,7 @@ mainDUDDCost=0.0 mainSeedCost=4813209.0 secHandiCost=4 secGeoCost=0.0 -totalCost=5.0000000481321E14 +totalCost=5.00000004813209E14 Player1Name=Hubert Jérôme Player2Name=Gajdos Chantal baseDuplicateGameCost=5.0E14 @@ -3839,7 +3839,7 @@ mainDUDDCost=0.0 mainSeedCost=4265658.0 secHandiCost=4 secGeoCost=0.0 -totalCost=5.00000004265659E14 +totalCost=5.00000004265658E14 Player1Name=Hubert Jérôme Player2Name=Baratou Paul baseDuplicateGameCost=5.0E14 @@ -3851,7 +3851,7 @@ mainDUDDCost=0.0 mainSeedCost=4030993.0 secHandiCost=1 secGeoCost=0.0 -totalCost=5.00000004030994E14 +totalCost=5.00000004030993E14 Player1Name=Hubert Jérôme Player2Name=Mizessyn François baseDuplicateGameCost=5.0E14 @@ -3863,7 +3863,7 @@ mainDUDDCost=0.0 mainSeedCost=4212197.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000004212198E14 +totalCost=5.00000004212197E14 Player1Name=Hubert Jérôme Player2Name=Donzet Frédéric baseDuplicateGameCost=5.0E14 @@ -3875,7 +3875,7 @@ mainDUDDCost=0.0 mainSeedCost=4573750.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000004573751E14 +totalCost=5.0000000457375E14 Player1Name=Hubert Jérôme Player2Name=Giovanni Nicita baseDuplicateGameCost=5.0E14 @@ -3887,7 +3887,7 @@ mainDUDDCost=0.0 mainSeedCost=4703798.0 secHandiCost=9 secGeoCost=0.0 -totalCost=5.00000004703799E14 +totalCost=5.00000004703798E14 Player1Name=Hubert Jérôme Player2Name=Brisson Claude baseDuplicateGameCost=5.0E14 @@ -3899,7 +3899,7 @@ mainDUDDCost=0.0 mainSeedCost=4018883.0 secHandiCost=6 secGeoCost=0.0 -totalCost=5.00000004018884E14 +totalCost=5.00000004018883E14 Player1Name=Batailler Philippe Player2Name=Grimond Philippe baseDuplicateGameCost=5.0E14 @@ -3911,7 +3911,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=3 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Batailler Philippe Player2Name=Neant Fabrice baseDuplicateGameCost=5.0E14 @@ -3923,7 +3923,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=3 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Batailler Philippe Player2Name=Jollivet Guy baseDuplicateGameCost=5.0E14 @@ -3935,7 +3935,7 @@ mainDUDDCost=0.0 mainSeedCost=4110818.0 secHandiCost=9 secGeoCost=0.0 -totalCost=5.00000004110819E14 +totalCost=5.00000004110818E14 Player1Name=Batailler Philippe Player2Name=Dupré William baseDuplicateGameCost=5.0E14 @@ -3947,7 +3947,7 @@ mainDUDDCost=0.0 mainSeedCost=4382604.0 secHandiCost=9 secGeoCost=0.0 -totalCost=5.00000004382605E14 +totalCost=5.00000004382604E14 Player1Name=Batailler Philippe Player2Name=Guillou Marc baseDuplicateGameCost=5.0E14 @@ -3959,7 +3959,7 @@ mainDUDDCost=0.0 mainSeedCost=4257499.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.000000042575E14 +totalCost=5.00000004257499E14 Player1Name=Batailler Philippe Player2Name=Jegou Marc baseDuplicateGameCost=5.0E14 @@ -3971,7 +3971,7 @@ mainDUDDCost=0.0 mainSeedCost=4317778.0 secHandiCost=7 secGeoCost=0.0 -totalCost=5.00000004317779E14 +totalCost=5.00000004317778E14 Player1Name=Batailler Philippe Player2Name=Martin Yvan baseDuplicateGameCost=5.0E14 @@ -3983,7 +3983,7 @@ mainDUDDCost=0.0 mainSeedCost=4572857.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000004572858E14 +totalCost=5.00000004572857E14 Player1Name=Batailler Philippe Player2Name=Born Véronique baseDuplicateGameCost=5.0E14 @@ -3995,7 +3995,7 @@ mainDUDDCost=0.0 mainSeedCost=4564948.0 secHandiCost=9 secGeoCost=0.0 -totalCost=5.00000004564949E14 +totalCost=5.00000004564948E14 Player1Name=Batailler Philippe Player2Name=Bonis Michel baseDuplicateGameCost=5.0E14 @@ -4007,7 +4007,7 @@ mainDUDDCost=0.0 mainSeedCost=4664202.0 secHandiCost=3 secGeoCost=0.0 -totalCost=5.00000004664203E14 +totalCost=5.00000004664202E14 Player1Name=Batailler Philippe Player2Name=Boyart Christian baseDuplicateGameCost=5.0E14 @@ -4019,7 +4019,7 @@ mainDUDDCost=0.0 mainSeedCost=4337302.0 secHandiCost=2 secGeoCost=0.0 -totalCost=5.00000004337303E14 +totalCost=5.00000004337302E14 Player1Name=Batailler Philippe Player2Name=Lamôle Laurent baseDuplicateGameCost=5.0E14 @@ -4031,7 +4031,7 @@ mainDUDDCost=0.0 mainSeedCost=4006893.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000004006894E14 +totalCost=5.00000004006893E14 Player1Name=Batailler Philippe Player2Name=Eon Serge baseDuplicateGameCost=5.0E14 @@ -4043,7 +4043,7 @@ mainDUDDCost=0.0 mainSeedCost=4855320.0 secHandiCost=1 secGeoCost=0.0 -totalCost=5.00000004855321E14 +totalCost=5.0000000485532E14 Player1Name=Batailler Philippe Player2Name=Gajdos Chantal baseDuplicateGameCost=5.0E14 @@ -4055,7 +4055,7 @@ mainDUDDCost=0.0 mainSeedCost=4319656.0 secHandiCost=1 secGeoCost=0.0 -totalCost=5.00000004319657E14 +totalCost=5.00000004319656E14 Player1Name=Batailler Philippe Player2Name=Baratou Paul baseDuplicateGameCost=5.0E14 @@ -4067,7 +4067,7 @@ mainDUDDCost=0.0 mainSeedCost=4136302.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000004136303E14 +totalCost=5.00000004136302E14 Player1Name=Batailler Philippe Player2Name=Mizessyn François baseDuplicateGameCost=5.0E14 @@ -4079,7 +4079,7 @@ mainDUDDCost=0.0 mainSeedCost=4638869.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.0000000463887E14 +totalCost=5.00000004638869E14 Player1Name=Batailler Philippe Player2Name=Donzet Frédéric baseDuplicateGameCost=5.0E14 @@ -4091,7 +4091,7 @@ mainDUDDCost=0.0 mainSeedCost=4517397.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000004517398E14 +totalCost=5.00000004517397E14 Player1Name=Batailler Philippe Player2Name=Giovanni Nicita baseDuplicateGameCost=5.0E14 @@ -4103,7 +4103,7 @@ mainDUDDCost=0.0 mainSeedCost=4154785.0 secHandiCost=6 secGeoCost=0.0 -totalCost=5.00000004154786E14 +totalCost=5.00000004154785E14 Player1Name=Batailler Philippe Player2Name=Brisson Claude baseDuplicateGameCost=5.0E14 @@ -4115,7 +4115,7 @@ mainDUDDCost=0.0 mainSeedCost=4567469.0 secHandiCost=3 secGeoCost=0.0 -totalCost=5.0000000456747E14 +totalCost=5.00000004567469E14 Player1Name=Grimond Philippe Player2Name=Neant Fabrice baseDuplicateGameCost=5.0E14 @@ -4127,7 +4127,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Grimond Philippe Player2Name=Jollivet Guy baseDuplicateGameCost=5.0E14 @@ -4139,7 +4139,7 @@ mainDUDDCost=0.0 mainSeedCost=4419256.0 secHandiCost=9 secGeoCost=0.0 -totalCost=5.00000004419257E14 +totalCost=5.00000004419256E14 Player1Name=Grimond Philippe Player2Name=Dupré William baseDuplicateGameCost=5.0E14 @@ -4151,7 +4151,7 @@ mainDUDDCost=0.0 mainSeedCost=4807525.0 secHandiCost=9 secGeoCost=0.0 -totalCost=5.00000004807526E14 +totalCost=5.00000004807525E14 Player1Name=Grimond Philippe Player2Name=Guillou Marc baseDuplicateGameCost=5.0E14 @@ -4163,7 +4163,7 @@ mainDUDDCost=0.0 mainSeedCost=4368517.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000004368518E14 +totalCost=5.00000004368517E14 Player1Name=Grimond Philippe Player2Name=Jegou Marc baseDuplicateGameCost=5.0E14 @@ -4175,7 +4175,7 @@ mainDUDDCost=0.0 mainSeedCost=4059412.0 secHandiCost=3 secGeoCost=0.0 -totalCost=5.00000004059413E14 +totalCost=5.00000004059412E14 Player1Name=Grimond Philippe Player2Name=Martin Yvan baseDuplicateGameCost=5.0E14 @@ -4187,7 +4187,7 @@ mainDUDDCost=0.0 mainSeedCost=4992906.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000004992907E14 +totalCost=5.00000004992906E14 Player1Name=Grimond Philippe Player2Name=Born Véronique baseDuplicateGameCost=5.0E14 @@ -4199,7 +4199,7 @@ mainDUDDCost=0.0 mainSeedCost=4565001.0 secHandiCost=9 secGeoCost=0.0 -totalCost=5.00000004565002E14 +totalCost=5.00000004565001E14 Player1Name=Grimond Philippe Player2Name=Bonis Michel baseDuplicateGameCost=5.0E14 @@ -4211,7 +4211,7 @@ mainDUDDCost=0.0 mainSeedCost=4358733.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000004358734E14 +totalCost=5.00000004358733E14 Player1Name=Grimond Philippe Player2Name=Boyart Christian baseDuplicateGameCost=5.0E14 @@ -4223,7 +4223,7 @@ mainDUDDCost=0.0 mainSeedCost=4665021.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000004665022E14 +totalCost=5.00000004665021E14 Player1Name=Grimond Philippe Player2Name=Lamôle Laurent baseDuplicateGameCost=5.0E14 @@ -4235,7 +4235,7 @@ mainDUDDCost=0.0 mainSeedCost=4560895.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000004560896E14 +totalCost=5.00000004560895E14 Player1Name=Grimond Philippe Player2Name=Eon Serge baseDuplicateGameCost=5.0E14 @@ -4247,7 +4247,7 @@ mainDUDDCost=0.0 mainSeedCost=4684372.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000004684373E14 +totalCost=5.00000004684372E14 Player1Name=Grimond Philippe Player2Name=Gajdos Chantal baseDuplicateGameCost=5.0E14 @@ -4259,7 +4259,7 @@ mainDUDDCost=0.0 mainSeedCost=4469578.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000004469579E14 +totalCost=5.00000004469578E14 Player1Name=Grimond Philippe Player2Name=Baratou Paul baseDuplicateGameCost=5.0E14 @@ -4271,7 +4271,7 @@ mainDUDDCost=0.0 mainSeedCost=4901811.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000004901812E14 +totalCost=5.00000004901811E14 Player1Name=Grimond Philippe Player2Name=Mizessyn François baseDuplicateGameCost=5.0E14 @@ -4283,7 +4283,7 @@ mainDUDDCost=0.0 mainSeedCost=4796301.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000004796302E14 +totalCost=5.00000004796301E14 Player1Name=Grimond Philippe Player2Name=Donzet Frédéric baseDuplicateGameCost=5.0E14 @@ -4295,7 +4295,7 @@ mainDUDDCost=0.0 mainSeedCost=4444221.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000004444222E14 +totalCost=5.00000004444221E14 Player1Name=Grimond Philippe Player2Name=Giovanni Nicita baseDuplicateGameCost=5.0E14 @@ -4307,7 +4307,7 @@ mainDUDDCost=0.0 mainSeedCost=4574269.0 secHandiCost=2 secGeoCost=0.0 -totalCost=5.0000000457427E14 +totalCost=5.00000004574269E14 Player1Name=Grimond Philippe Player2Name=Brisson Claude baseDuplicateGameCost=5.0E14 @@ -4319,7 +4319,7 @@ mainDUDDCost=0.0 mainSeedCost=4222803.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000004222804E14 +totalCost=5.00000004222803E14 Player1Name=Neant Fabrice Player2Name=Jollivet Guy baseDuplicateGameCost=5.0E14 @@ -4331,7 +4331,7 @@ mainDUDDCost=0.0 mainSeedCost=4538729.0 secHandiCost=9 secGeoCost=0.0 -totalCost=5.0000000453873E14 +totalCost=5.00000004538729E14 Player1Name=Neant Fabrice Player2Name=Dupré William baseDuplicateGameCost=5.0E14 @@ -4343,7 +4343,7 @@ mainDUDDCost=0.0 mainSeedCost=4642901.0 secHandiCost=9 secGeoCost=0.0 -totalCost=5.00000004642902E14 +totalCost=5.00000004642901E14 Player1Name=Neant Fabrice Player2Name=Guillou Marc baseDuplicateGameCost=5.0E14 @@ -4355,7 +4355,7 @@ mainDUDDCost=0.0 mainSeedCost=4168826.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000004168827E14 +totalCost=5.00000004168826E14 Player1Name=Neant Fabrice Player2Name=Jegou Marc baseDuplicateGameCost=5.0E14 @@ -4367,7 +4367,7 @@ mainDUDDCost=0.0 mainSeedCost=4030795.0 secHandiCost=3 secGeoCost=0.0 -totalCost=5.00000004030796E14 +totalCost=5.00000004030795E14 Player1Name=Neant Fabrice Player2Name=Martin Yvan baseDuplicateGameCost=5.0E14 @@ -4379,7 +4379,7 @@ mainDUDDCost=0.0 mainSeedCost=4371090.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000004371091E14 +totalCost=5.0000000437109E14 Player1Name=Neant Fabrice Player2Name=Born Véronique baseDuplicateGameCost=5.0E14 @@ -4391,7 +4391,7 @@ mainDUDDCost=0.0 mainSeedCost=4722136.0 secHandiCost=9 secGeoCost=0.0 -totalCost=5.00000004722137E14 +totalCost=5.00000004722136E14 Player1Name=Neant Fabrice Player2Name=Bonis Michel baseDuplicateGameCost=5.0E14 @@ -4403,7 +4403,7 @@ mainDUDDCost=0.0 mainSeedCost=4872351.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000004872352E14 +totalCost=5.00000004872351E14 Player1Name=Neant Fabrice Player2Name=Boyart Christian baseDuplicateGameCost=5.0E14 @@ -4415,7 +4415,7 @@ mainDUDDCost=0.0 mainSeedCost=4465673.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000004465674E14 +totalCost=5.00000004465673E14 Player1Name=Neant Fabrice Player2Name=Lamôle Laurent baseDuplicateGameCost=5.0E14 @@ -4427,7 +4427,7 @@ mainDUDDCost=0.0 mainSeedCost=4834785.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000004834786E14 +totalCost=5.00000004834785E14 Player1Name=Neant Fabrice Player2Name=Eon Serge baseDuplicateGameCost=5.0E14 @@ -4439,7 +4439,7 @@ mainDUDDCost=0.0 mainSeedCost=4232713.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000004232714E14 +totalCost=5.00000004232713E14 Player1Name=Neant Fabrice Player2Name=Gajdos Chantal baseDuplicateGameCost=5.0E14 @@ -4451,7 +4451,7 @@ mainDUDDCost=0.0 mainSeedCost=4626713.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000004626714E14 +totalCost=5.00000004626713E14 Player1Name=Neant Fabrice Player2Name=Baratou Paul baseDuplicateGameCost=5.0E14 @@ -4463,7 +4463,7 @@ mainDUDDCost=0.0 mainSeedCost=4415428.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000004415429E14 +totalCost=5.00000004415428E14 Player1Name=Neant Fabrice Player2Name=Mizessyn François baseDuplicateGameCost=5.0E14 @@ -4475,7 +4475,7 @@ mainDUDDCost=0.0 mainSeedCost=4875243.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000004875244E14 +totalCost=5.00000004875243E14 Player1Name=Neant Fabrice Player2Name=Donzet Frédéric baseDuplicateGameCost=5.0E14 @@ -4487,7 +4487,7 @@ mainDUDDCost=0.0 mainSeedCost=4923115.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000004923116E14 +totalCost=5.00000004923115E14 Player1Name=Neant Fabrice Player2Name=Giovanni Nicita baseDuplicateGameCost=5.0E14 @@ -4499,7 +4499,7 @@ mainDUDDCost=0.0 mainSeedCost=4053162.0 secHandiCost=2 secGeoCost=0.0 -totalCost=5.00000004053163E14 +totalCost=5.00000004053162E14 Player1Name=Neant Fabrice Player2Name=Brisson Claude baseDuplicateGameCost=5.0E14 @@ -4511,7 +4511,7 @@ mainDUDDCost=0.0 mainSeedCost=4379938.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000004379939E14 +totalCost=5.00000004379938E14 Player1Name=Jollivet Guy Player2Name=Dupré William baseDuplicateGameCost=5.0E14 @@ -4523,7 +4523,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=9 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Jollivet Guy Player2Name=Guillou Marc baseDuplicateGameCost=5.0E14 @@ -4535,7 +4535,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Jollivet Guy Player2Name=Jegou Marc baseDuplicateGameCost=5.0E14 @@ -4547,7 +4547,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Jollivet Guy Player2Name=Martin Yvan baseDuplicateGameCost=5.0E14 @@ -4559,7 +4559,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Jollivet Guy Player2Name=Born Véronique baseDuplicateGameCost=5.0E14 @@ -4571,7 +4571,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=9 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Jollivet Guy Player2Name=Bonis Michel baseDuplicateGameCost=5.0E14 @@ -4583,7 +4583,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Jollivet Guy Player2Name=Boyart Christian baseDuplicateGameCost=5.0E14 @@ -4595,7 +4595,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Jollivet Guy Player2Name=Lamôle Laurent baseDuplicateGameCost=5.0E14 @@ -4607,7 +4607,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Jollivet Guy Player2Name=Eon Serge baseDuplicateGameCost=5.0E14 @@ -4619,7 +4619,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Jollivet Guy Player2Name=Gajdos Chantal baseDuplicateGameCost=5.0E14 @@ -4631,7 +4631,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Jollivet Guy Player2Name=Baratou Paul baseDuplicateGameCost=5.0E14 @@ -4643,7 +4643,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Jollivet Guy Player2Name=Mizessyn François baseDuplicateGameCost=5.0E14 @@ -4655,7 +4655,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Jollivet Guy Player2Name=Donzet Frédéric baseDuplicateGameCost=5.0E14 @@ -4667,7 +4667,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Jollivet Guy Player2Name=Giovanni Nicita baseDuplicateGameCost=5.0E14 @@ -4679,7 +4679,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Jollivet Guy Player2Name=Brisson Claude baseDuplicateGameCost=5.0E14 @@ -4691,7 +4691,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Dupré William Player2Name=Guillou Marc baseDuplicateGameCost=5.0E14 @@ -4703,7 +4703,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Dupré William Player2Name=Jegou Marc baseDuplicateGameCost=5.0E14 @@ -4715,7 +4715,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Dupré William Player2Name=Martin Yvan baseDuplicateGameCost=5.0E14 @@ -4727,7 +4727,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Dupré William Player2Name=Born Véronique baseDuplicateGameCost=5.0E14 @@ -4739,7 +4739,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Dupré William Player2Name=Bonis Michel baseDuplicateGameCost=5.0E14 @@ -4751,7 +4751,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Dupré William Player2Name=Boyart Christian baseDuplicateGameCost=5.0E14 @@ -4763,7 +4763,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Dupré William Player2Name=Lamôle Laurent baseDuplicateGameCost=5.0E14 @@ -4775,7 +4775,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Dupré William Player2Name=Eon Serge baseDuplicateGameCost=5.0E14 @@ -4787,7 +4787,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Dupré William Player2Name=Gajdos Chantal baseDuplicateGameCost=5.0E14 @@ -4799,7 +4799,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Dupré William Player2Name=Baratou Paul baseDuplicateGameCost=5.0E14 @@ -4811,7 +4811,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Dupré William Player2Name=Mizessyn François baseDuplicateGameCost=5.0E14 @@ -4823,7 +4823,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Dupré William Player2Name=Donzet Frédéric baseDuplicateGameCost=5.0E14 @@ -4835,7 +4835,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Dupré William Player2Name=Giovanni Nicita baseDuplicateGameCost=5.0E14 @@ -4847,7 +4847,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Dupré William Player2Name=Brisson Claude baseDuplicateGameCost=5.0E14 @@ -4859,7 +4859,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Guillou Marc Player2Name=Jegou Marc baseDuplicateGameCost=5.0E14 @@ -4871,7 +4871,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=6 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Guillou Marc Player2Name=Martin Yvan baseDuplicateGameCost=5.0E14 @@ -4883,7 +4883,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Guillou Marc Player2Name=Born Véronique baseDuplicateGameCost=5.0E14 @@ -4895,7 +4895,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=9 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Guillou Marc Player2Name=Bonis Michel baseDuplicateGameCost=5.0E14 @@ -4907,7 +4907,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=2 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Guillou Marc Player2Name=Boyart Christian baseDuplicateGameCost=5.0E14 @@ -4919,7 +4919,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=1 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Guillou Marc Player2Name=Lamôle Laurent baseDuplicateGameCost=5.0E14 @@ -4931,7 +4931,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Guillou Marc Player2Name=Eon Serge baseDuplicateGameCost=5.0E14 @@ -4943,7 +4943,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Guillou Marc Player2Name=Gajdos Chantal baseDuplicateGameCost=5.0E14 @@ -4955,7 +4955,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Guillou Marc Player2Name=Baratou Paul baseDuplicateGameCost=5.0E14 @@ -4967,7 +4967,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Guillou Marc Player2Name=Mizessyn François baseDuplicateGameCost=5.0E14 @@ -4979,7 +4979,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Guillou Marc Player2Name=Donzet Frédéric baseDuplicateGameCost=5.0E14 @@ -4991,7 +4991,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Guillou Marc Player2Name=Giovanni Nicita baseDuplicateGameCost=5.0E14 @@ -5003,7 +5003,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=5 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Guillou Marc Player2Name=Brisson Claude baseDuplicateGameCost=5.0E14 @@ -5015,7 +5015,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=2 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Jegou Marc Player2Name=Martin Yvan baseDuplicateGameCost=5.0E14 @@ -5027,7 +5027,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Jegou Marc Player2Name=Born Véronique baseDuplicateGameCost=5.0E14 @@ -5039,7 +5039,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=9 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Jegou Marc Player2Name=Bonis Michel baseDuplicateGameCost=5.0E14 @@ -5051,7 +5051,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Jegou Marc Player2Name=Boyart Christian baseDuplicateGameCost=5.0E14 @@ -5063,7 +5063,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Jegou Marc Player2Name=Lamôle Laurent baseDuplicateGameCost=5.0E14 @@ -5075,7 +5075,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Jegou Marc Player2Name=Eon Serge baseDuplicateGameCost=5.0E14 @@ -5087,7 +5087,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Jegou Marc Player2Name=Gajdos Chantal baseDuplicateGameCost=5.0E14 @@ -5099,7 +5099,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Jegou Marc Player2Name=Baratou Paul baseDuplicateGameCost=5.0E14 @@ -5111,7 +5111,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Jegou Marc Player2Name=Mizessyn François baseDuplicateGameCost=5.0E14 @@ -5123,7 +5123,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Jegou Marc Player2Name=Donzet Frédéric baseDuplicateGameCost=5.0E14 @@ -5135,7 +5135,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Jegou Marc Player2Name=Giovanni Nicita baseDuplicateGameCost=5.0E14 @@ -5147,7 +5147,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Jegou Marc Player2Name=Brisson Claude baseDuplicateGameCost=5.0E14 @@ -5159,7 +5159,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Martin Yvan Player2Name=Born Véronique baseDuplicateGameCost=5.0E14 @@ -5171,7 +5171,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=9 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Martin Yvan Player2Name=Bonis Michel baseDuplicateGameCost=5.0E14 @@ -5183,7 +5183,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=2 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Martin Yvan Player2Name=Boyart Christian baseDuplicateGameCost=5.0E14 @@ -5195,7 +5195,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=1 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Martin Yvan Player2Name=Lamôle Laurent baseDuplicateGameCost=5.0E14 @@ -5207,7 +5207,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Martin Yvan Player2Name=Eon Serge baseDuplicateGameCost=5.0E14 @@ -5219,7 +5219,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Martin Yvan Player2Name=Gajdos Chantal baseDuplicateGameCost=5.0E14 @@ -5231,7 +5231,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Martin Yvan Player2Name=Baratou Paul baseDuplicateGameCost=5.0E14 @@ -5243,7 +5243,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Martin Yvan Player2Name=Mizessyn François baseDuplicateGameCost=5.0E14 @@ -5255,7 +5255,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Martin Yvan Player2Name=Donzet Frédéric baseDuplicateGameCost=5.0E14 @@ -5267,7 +5267,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Martin Yvan Player2Name=Giovanni Nicita baseDuplicateGameCost=5.0E14 @@ -5279,7 +5279,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=5 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Martin Yvan Player2Name=Brisson Claude baseDuplicateGameCost=5.0E14 @@ -5291,7 +5291,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=2 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Born Véronique Player2Name=Bonis Michel baseDuplicateGameCost=5.0E14 @@ -5303,7 +5303,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Born Véronique Player2Name=Boyart Christian baseDuplicateGameCost=5.0E14 @@ -5315,7 +5315,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Born Véronique Player2Name=Lamôle Laurent baseDuplicateGameCost=5.0E14 @@ -5327,7 +5327,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Born Véronique Player2Name=Eon Serge baseDuplicateGameCost=5.0E14 @@ -5339,7 +5339,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Born Véronique Player2Name=Gajdos Chantal baseDuplicateGameCost=5.0E14 @@ -5351,7 +5351,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Born Véronique Player2Name=Baratou Paul baseDuplicateGameCost=5.0E14 @@ -5363,7 +5363,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Born Véronique Player2Name=Mizessyn François baseDuplicateGameCost=5.0E14 @@ -5375,7 +5375,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Born Véronique Player2Name=Donzet Frédéric baseDuplicateGameCost=5.0E14 @@ -5387,7 +5387,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Born Véronique Player2Name=Giovanni Nicita baseDuplicateGameCost=5.0E14 @@ -5399,7 +5399,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Born Véronique Player2Name=Brisson Claude baseDuplicateGameCost=5.0E14 @@ -5411,7 +5411,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Bonis Michel Player2Name=Boyart Christian baseDuplicateGameCost=5.0E14 @@ -5423,7 +5423,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Bonis Michel Player2Name=Lamôle Laurent baseDuplicateGameCost=5.0E14 @@ -5435,7 +5435,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Bonis Michel Player2Name=Eon Serge baseDuplicateGameCost=5.0E14 @@ -5447,7 +5447,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Bonis Michel Player2Name=Gajdos Chantal baseDuplicateGameCost=5.0E14 @@ -5459,7 +5459,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Bonis Michel Player2Name=Baratou Paul baseDuplicateGameCost=5.0E14 @@ -5471,7 +5471,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Bonis Michel Player2Name=Mizessyn François baseDuplicateGameCost=5.0E14 @@ -5483,7 +5483,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Bonis Michel Player2Name=Donzet Frédéric baseDuplicateGameCost=5.0E14 @@ -5495,7 +5495,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Bonis Michel Player2Name=Giovanni Nicita baseDuplicateGameCost=5.0E14 @@ -5507,7 +5507,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=2 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Bonis Michel Player2Name=Brisson Claude baseDuplicateGameCost=5.0E14 @@ -5519,7 +5519,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Boyart Christian Player2Name=Lamôle Laurent baseDuplicateGameCost=5.0E14 @@ -5531,7 +5531,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Boyart Christian Player2Name=Eon Serge baseDuplicateGameCost=5.0E14 @@ -5543,7 +5543,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Boyart Christian Player2Name=Gajdos Chantal baseDuplicateGameCost=5.0E14 @@ -5555,7 +5555,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Boyart Christian Player2Name=Baratou Paul baseDuplicateGameCost=5.0E14 @@ -5567,7 +5567,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Boyart Christian Player2Name=Mizessyn François baseDuplicateGameCost=5.0E14 @@ -5579,7 +5579,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Boyart Christian Player2Name=Donzet Frédéric baseDuplicateGameCost=5.0E14 @@ -5591,7 +5591,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Boyart Christian Player2Name=Giovanni Nicita baseDuplicateGameCost=5.0E14 @@ -5603,7 +5603,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=3 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Boyart Christian Player2Name=Brisson Claude baseDuplicateGameCost=5.0E14 @@ -5615,7 +5615,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Lamôle Laurent Player2Name=Eon Serge baseDuplicateGameCost=5.0E14 @@ -5627,7 +5627,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=1 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Lamôle Laurent Player2Name=Gajdos Chantal baseDuplicateGameCost=5.0E14 @@ -5639,7 +5639,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=1 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Lamôle Laurent Player2Name=Baratou Paul baseDuplicateGameCost=5.0E14 @@ -5651,7 +5651,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Lamôle Laurent Player2Name=Mizessyn François baseDuplicateGameCost=5.0E14 @@ -5663,7 +5663,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Lamôle Laurent Player2Name=Donzet Frédéric baseDuplicateGameCost=5.0E14 @@ -5675,7 +5675,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Lamôle Laurent Player2Name=Giovanni Nicita baseDuplicateGameCost=5.0E14 @@ -5687,7 +5687,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=6 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Lamôle Laurent Player2Name=Brisson Claude baseDuplicateGameCost=5.0E14 @@ -5699,7 +5699,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=3 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Eon Serge Player2Name=Gajdos Chantal baseDuplicateGameCost=5.0E14 @@ -5711,7 +5711,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Eon Serge Player2Name=Baratou Paul baseDuplicateGameCost=5.0E14 @@ -5723,7 +5723,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Eon Serge Player2Name=Mizessyn François baseDuplicateGameCost=5.0E14 @@ -5735,7 +5735,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Eon Serge Player2Name=Donzet Frédéric baseDuplicateGameCost=5.0E14 @@ -5747,7 +5747,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Eon Serge Player2Name=Giovanni Nicita baseDuplicateGameCost=5.0E14 @@ -5759,7 +5759,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=4 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Eon Serge Player2Name=Brisson Claude baseDuplicateGameCost=5.0E14 @@ -5771,7 +5771,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=1 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Gajdos Chantal Player2Name=Baratou Paul baseDuplicateGameCost=5.0E14 @@ -5783,7 +5783,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Gajdos Chantal Player2Name=Mizessyn François baseDuplicateGameCost=5.0E14 @@ -5795,7 +5795,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Gajdos Chantal Player2Name=Donzet Frédéric baseDuplicateGameCost=5.0E14 @@ -5807,7 +5807,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Gajdos Chantal Player2Name=Giovanni Nicita baseDuplicateGameCost=5.0E14 @@ -5819,7 +5819,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=4 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Gajdos Chantal Player2Name=Brisson Claude baseDuplicateGameCost=5.0E14 @@ -5831,7 +5831,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=1 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Baratou Paul Player2Name=Mizessyn François baseDuplicateGameCost=5.0E14 @@ -5843,7 +5843,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Baratou Paul Player2Name=Donzet Frédéric baseDuplicateGameCost=5.0E14 @@ -5855,7 +5855,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Baratou Paul Player2Name=Giovanni Nicita baseDuplicateGameCost=5.0E14 @@ -5867,7 +5867,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=7 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Baratou Paul Player2Name=Brisson Claude baseDuplicateGameCost=5.0E14 @@ -5879,7 +5879,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=4 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Mizessyn François Player2Name=Donzet Frédéric baseDuplicateGameCost=5.0E14 @@ -5891,7 +5891,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Mizessyn François Player2Name=Giovanni Nicita baseDuplicateGameCost=5.0E14 @@ -5903,7 +5903,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=9 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Mizessyn François Player2Name=Brisson Claude baseDuplicateGameCost=5.0E14 @@ -5915,7 +5915,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=6 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Donzet Frédéric Player2Name=Giovanni Nicita baseDuplicateGameCost=5.0E14 @@ -5927,7 +5927,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=9 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Donzet Frédéric Player2Name=Brisson Claude baseDuplicateGameCost=5.0E14 @@ -5939,7 +5939,7 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=6 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14 Player1Name=Giovanni Nicita Player2Name=Brisson Claude baseDuplicateGameCost=5.0E14 @@ -5951,4 +5951,4 @@ mainDUDDCost=0.0 mainSeedCost=0.0 secHandiCost=0 secGeoCost=0.0 -totalCost=5.00000000000001E14 +totalCost=5.0E14