YvesP commited on
Commit
4cf88e8
1 Parent(s): 177baae

initial commit

Browse files
This view is limited to 50 files because it contains too many changes.   See raw diff
Files changed (50) hide show
  1. README.md +5 -5
  2. app.py +19 -0
  3. config.py +29 -0
  4. config_key.py +1 -0
  5. data/.DS_Store +0 -0
  6. data/doc.xml +46 -0
  7. data/examples/.DS_Store +0 -0
  8. data/examples/AldoMoro.docx +0 -0
  9. data/examples/Aldo_Moro_simple.docx +0 -0
  10. data/examples/Aldo_Moro_simple_rouge.docx +0 -0
  11. data/examples/Aldo_Moro_simple_style.docx +0 -0
  12. data/examples/Aldo_Moro_simple_vert.docx +0 -0
  13. data/examples/CorpTemplate.docx +0 -0
  14. data/examples/CorpTemplate_.docx +0 -0
  15. data/examples/[Content_Types].xml +2 -0
  16. data/examples/_rels/.rels +2 -0
  17. data/examples/corpd/[Content_Types].xml +2 -0
  18. data/examples/corpd/_rels/.rels +2 -0
  19. data/examples/corpd/customXml/_rels/item1.xml.rels +2 -0
  20. data/examples/corpd/customXml/_rels/item2.xml.rels +2 -0
  21. data/examples/corpd/customXml/_rels/item3.xml.rels +2 -0
  22. data/examples/corpd/customXml/_rels/item4.xml.rels +2 -0
  23. data/examples/corpd/customXml/item1.xml +1 -0
  24. data/examples/corpd/customXml/item2.xml +111 -0
  25. data/examples/corpd/customXml/item3.xml +1 -0
  26. data/examples/corpd/customXml/item4.xml +1 -0
  27. data/examples/corpd/customXml/itemProps1.xml +2 -0
  28. data/examples/corpd/customXml/itemProps2.xml +2 -0
  29. data/examples/corpd/customXml/itemProps3.xml +2 -0
  30. data/examples/corpd/customXml/itemProps4.xml +2 -0
  31. data/examples/corpd/docProps/app.xml +2 -0
  32. data/examples/corpd/docProps/core.xml +2 -0
  33. data/examples/corpd/docProps/custom.xml +2 -0
  34. data/examples/corpd/word/_rels/document.xml.rels +4 -0
  35. data/examples/corpd/word/_rels/header1.xml.rels +2 -0
  36. data/examples/corpd/word/_rels/header2.xml.rels +2 -0
  37. data/examples/corpd/word/_rels/header3.xml.rels +2 -0
  38. data/examples/corpd/word/_rels/header4.xml.rels +2 -0
  39. data/examples/corpd/word/_rels/header5.xml.rels +2 -0
  40. data/examples/corpd/word/_rels/header6.xml.rels +2 -0
  41. data/examples/corpd/word/_rels/header7.xml.rels +2 -0
  42. data/examples/corpd/word/_rels/settings.xml.rels +2 -0
  43. data/examples/corpd/word/document.xml +2 -0
  44. data/examples/corpd/word/endnotes.xml +2 -0
  45. data/examples/corpd/word/fontTable.xml +2 -0
  46. data/examples/corpd/word/footer1.xml +2 -0
  47. data/examples/corpd/word/footer2.xml +2 -0
  48. data/examples/corpd/word/footer3.xml +2 -0
  49. data/examples/corpd/word/footer4.xml +2 -0
  50. data/examples/corpd/word/footer5.xml +2 -0
README.md CHANGED
@@ -1,13 +1,13 @@
1
  ---
2
- title: GenDoc
3
- emoji: 🐨
4
  colorFrom: blue
5
- colorTo: green
6
  sdk: gradio
7
- sdk_version: 3.42.0
8
  app_file: app.py
9
  pinned: false
10
- license: openrail
11
  ---
12
 
13
  Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
1
  ---
2
+ title: FormatDoc
3
+ emoji: 👁
4
  colorFrom: blue
5
+ colorTo: red
6
  sdk: gradio
7
+ sdk_version: 3.34.0
8
  app_file: app.py
9
  pinned: false
10
+ license: eupl-1.1
11
  ---
12
 
13
  Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
app.py ADDED
@@ -0,0 +1,19 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import os
2
+ from langchain.llms import OpenAI
3
+ from config import config
4
+ from src.control.control import Controller
5
+ import src.view.view as view
6
+
7
+ os.environ["TOKENIZERS_PARALLELISM"] = "true"
8
+
9
+ if not "OPENAI_API_KEY" in os.environ:
10
+ from config_key import OPENAI_API_KEY
11
+
12
+ os.environ['OPENAI_API_KEY'] = OPENAI_API_KEY
13
+
14
+ llm_model = OpenAI(temperature=0)
15
+
16
+ ctrl = Controller(config)
17
+ app = view.run(controller=ctrl, config=config)
18
+
19
+ app.queue().launch()
config.py ADDED
@@ -0,0 +1,29 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import os
2
+
3
+ config = {
4
+ 'templates_path': 'data/templates',
5
+ 'these_docs_path': 'data/examples/',
6
+ 'new_docs_path': 'data/examples/',
7
+ 'default_template_index': 0,
8
+ 'styled_docs_path': 'temp/styles_files',
9
+ 'generated_docs_path': 'temp/generated_files',
10
+ 'options': ["Ajouter les sections du début", "Recentrer les tableaux", "Recentrer les images",
11
+ "Redimensionner les tableaux", "Redimensionner les images",
12
+ "Vérifier la cohérence des langues"],
13
+ 'max_styles': 300,
14
+ 'log_msg': {
15
+ 'suppressed_styles': 'Les styles suivants ont été supprimés : \n',
16
+ 'modified_styles': 'Les styles suivants ont été modifiés : \n',
17
+ 'added_styles': 'Les styles suivants ont été ajoutés :\n',
18
+ 'modified_style': ' - ',
19
+ 'color': ' la couleur,',
20
+ 'font size': ' la taille de la fonte,',
21
+ 'font': ' la fonte,',
22
+ 'all_caps': ' les majuscules,',
23
+ 'bold': 'le caractère gras',
24
+ 'document': '\n============================\n Sur le document : ',
25
+ },
26
+ }
27
+
28
+ templates = [t for t in os.listdir(config['templates_path']) if t.endswith((".docx",))]
29
+ config.update({'templates': templates})
config_key.py ADDED
@@ -0,0 +1 @@
 
 
1
+ OPENAI_API_KEY = "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"
data/.DS_Store ADDED
Binary file (6.15 kB). View file
 
data/doc.xml ADDED
@@ -0,0 +1,46 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <w:document xmlns:wpc="http://schemas.microsoft.com/office/word/2010/wordprocessingCanvas" xmlns:cx="http://schemas.microsoft.com/office/drawing/2014/chartex" xmlns:cx1="http://schemas.microsoft.com/office/drawing/2015/9/8/chartex" xmlns:cx2="http://schemas.microsoft.com/office/drawing/2015/10/21/chartex" xmlns:cx3="http://schemas.microsoft.com/office/drawing/2016/5/9/chartex" xmlns:cx4="http://schemas.microsoft.com/office/drawing/2016/5/10/chartex" xmlns:cx5="http://schemas.microsoft.com/office/drawing/2016/5/11/chartex" xmlns:cx6="http://schemas.microsoft.com/office/drawing/2016/5/12/chartex" xmlns:cx7="http://schemas.microsoft.com/office/drawing/2016/5/13/chartex" xmlns:cx8="http://schemas.microsoft.com/office/drawing/2016/5/14/chartex" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:aink="http://schemas.microsoft.com/office/drawing/2016/ink" xmlns:am3d="http://schemas.microsoft.com/office/drawing/2017/model3d" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:oel="http://schemas.microsoft.com/office/2019/extlst" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:m="http://schemas.openxmlformats.org/officeDocument/2006/math" xmlns:v="urn:schemas-microsoft-com:vml" xmlns:wp14="http://schemas.microsoft.com/office/word/2010/wordprocessingDrawing" xmlns:wp="http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing" xmlns:w10="urn:schemas-microsoft-com:office:word" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml" xmlns:w15="http://schemas.microsoft.com/office/word/2012/wordml" xmlns:w16cex="http://schemas.microsoft.com/office/word/2018/wordml/cex" xmlns:w16cid="http://schemas.microsoft.com/office/word/2016/wordml/cid" xmlns:w16="http://schemas.microsoft.com/office/word/2018/wordml" xmlns:w16sdtdh="http://schemas.microsoft.com/office/word/2020/wordml/sdtdatahash" xmlns:w16se="http://schemas.microsoft.com/office/word/2015/wordml/symex" xmlns:wpg="http://schemas.microsoft.com/office/word/2010/wordprocessingGroup" xmlns:wpi="http://schemas.microsoft.com/office/word/2010/wordprocessingInk" xmlns:wne="http://schemas.microsoft.com/office/word/2006/wordml" xmlns:wps="http://schemas.microsoft.com/office/word/2010/wordprocessingShape" mc:Ignorable="w14 w15 w16se w16cid w16 w16cex w16sdtdh wp14">
2
+ <w:body>
3
+ <w:tbl>
4
+ <w:tblPr>
5
+ <w:tblpPr w:leftFromText="141" w:rightFromText="141" w:vertAnchor="page" w:tblpY="3001"/>
6
+ <w:tblOverlap w:val="never"/>
7
+ <w:tblW w:w="7597" w:type="dxa"/>
8
+ <w:tblLayout w:type="fixed"/>
9
+ <w:tblCellMar><w:left w:w="0" w:type="dxa"/>
10
+ <w:right w:w="0" w:type="dxa"/>
11
+ </w:tblCellMar><w:tblLook w:val="0000" w:firstRow="0" w:lastRow="0" w:firstColumn="0" w:lastColumn="0" w:noHBand="0" w:noVBand="0"/>
12
+ </w:tblPr>
13
+ <w:tblGrid>
14
+ <w:gridCol w:w="7597"/>
15
+ </w:tblGrid>
16
+ <w:tr w:rsidR="008F20A4" w:rsidRPr="00C335CE" w14:paraId="58F81C33" w14:textId="77777777" w:rsidTr="00C4517C">
17
+ <w:trPr><w:cantSplit/>
18
+ <w:trHeight w:hRule="exact" w:val="397"/>
19
+ </w:trPr><w:tc>
20
+ <w:tcPr>
21
+ <w:tcW w:w="7597" w:type="dxa"/>
22
+ <w:shd w:val="clear" w:color="auto" w:fill="auto"/>
23
+ </w:tcPr><w:p w14:paraId="18CBAEA8" w14:textId="77777777" w:rsidR="008F20A4" w:rsidRPr="00C335CE" w:rsidRDefault="008F20A4" w:rsidP="00C4517C">
24
+ <w:pPr><w:pStyle w:val="BodyText"/></w:pPr><w:r w:rsidRPr="00C335CE"><w:t>R&#233;ponse &#224;</w:t></w:r></w:p></w:tc>
25
+ </w:tr><w:tr w:rsidR="008F20A4" w:rsidRPr="00C335CE" w14:paraId="6B21A2A2" w14:textId="77777777" w:rsidTr="00C4517C">
26
+ <w:trPr><w:cantSplit/>
27
+ <w:trHeight w:hRule="exact" w:val="851"/>
28
+ </w:trPr><w:tc><w:tcPr><w:tcW w:w="7597" w:type="dxa"/>
29
+ <w:shd w:val="clear" w:color="auto" w:fill="auto"/><w:vAlign w:val="bottom"/></w:tcPr>
30
+ <w:p w14:paraId="415EC112" w14:textId="77777777" w:rsidR="008F20A4" w:rsidRPr="00C335CE" w:rsidRDefault="008F20A4" w:rsidP="00DE680A">
31
+ <w:pPr><w:pStyle w:val="CompanyName"/>
32
+ <w:framePr w:hSpace="0" w:wrap="auto" w:vAnchor="margin" w:hAnchor="text" w:xAlign="left" w:yAlign="inline"/>
33
+ <w:suppressOverlap w:val="0"/></w:pPr><w:r w:rsidRPr="00C335CE">
34
+ <w:t>Nom du Client</w:t>
35
+ </w:r>
36
+ </w:p>
37
+ </w:tc>
38
+ </w:tr>
39
+ <w:tr w:rsidR="008F20A4" w:rsidRPr="00C335CE" w14:paraId="4CECECE0" w14:textId="77777777" w:rsidTr="00C4517C">
40
+ <w:trPr><w:cantSplit/><w:trHeight w:hRule="exact" w:val="397"/>
41
+ </w:trPr>
42
+ <w:tc>
43
+ <w:tcPr>
44
+ <w:tcW w:w="7597" w:type="dxa"/>
45
+ <w:shd w:val="clear" w:color="auto" w:fill="auto"/>
46
+ </w:tcPr><w:p w14:paraId="04690B8E" w14:textId="77777777" w:rsidR="008F20A4" w:rsidRPr="00C335CE" w:rsidRDefault="008F20A4" w:rsidP="00C4517C"><w:pPr><w:pStyle w:val="BodyText"/></w:pPr><w:proofErr w:type="gramStart"/><w:r w:rsidRPr="00C335CE"><w:t>pour</w:t></w:r><w:proofErr w:type="gramEnd"/><w:r w:rsidRPr="00C335CE"><w:t xml:space="preserve"> le</w:t></w:r></w:p></w:tc></w:tr><w:tr w:rsidR="008F20A4" w:rsidRPr="00C335CE" w14:paraId="10E37A3B" w14:textId="77777777" w:rsidTr="00C4517C"><w:trPr><w:cantSplit/><w:trHeight w:hRule="exact" w:val="1871"/></w:trPr><w:tc><w:tcPr><w:tcW w:w="7597" w:type="dxa"/><w:shd w:val="clear" w:color="auto" w:fill="auto"/><w:vAlign w:val="bottom"/></w:tcPr><w:p w14:paraId="3848203F" w14:textId="77777777" w:rsidR="008F20A4" w:rsidRPr="00C335CE" w:rsidRDefault="008F20A4" w:rsidP="00011EBE"><w:pPr><w:pStyle w:val="ProjectNumber"/><w:framePr w:hSpace="0" w:wrap="auto" w:hAnchor="text" w:xAlign="left" w:yAlign="inline"/></w:pPr><w:r w:rsidRPr="00C335CE"><w:t>Style pour cette page seulement (non recopi&#233; en en-t&#234;te)</w:t></w:r></w:p><w:p w14:paraId="4209E6AE" w14:textId="77777777" w:rsidR="008F20A4" w:rsidRPr="00C335CE" w:rsidRDefault="008F20A4" w:rsidP="00011EBE"><w:pPr><w:pStyle w:val="ProjectName"/><w:framePr w:hSpace="0" w:wrap="auto" w:vAnchor="margin" w:hAnchor="text" w:xAlign="left" w:yAlign="inline"/><w:suppressOverlap w:val="0"/></w:pPr><w:r w:rsidRPr="00C335CE"><w:t>Nom du projet</w:t></w:r></w:p></w:tc></w:tr><w:tr w:rsidR="008F20A4" w:rsidRPr="00C335CE" w14:paraId="5CF53648" w14:textId="77777777" w:rsidTr="00C4517C"><w:trPr><w:cantSplit/><w:trHeight w:hRule="exact" w:val="397"/></w:trPr><w:tc><w:tcPr><w:tcW w:w="7597" w:type="dxa"/><w:shd w:val="clear" w:color="auto" w:fill="auto"/></w:tcPr><w:p w14:paraId="01D4D4D2" w14:textId="77777777" w:rsidR="008F20A4" w:rsidRPr="00C335CE" w:rsidRDefault="008F20A4" w:rsidP="00C4517C"><w:pPr><w:pStyle w:val="BodyText"/></w:pPr><w:r w:rsidRPr="00C335CE"><w:t>Date de remise</w:t></w:r></w:p></w:tc></w:tr><w:tr w:rsidR="008F20A4" w:rsidRPr="00C335CE" w14:paraId="47C4D541" w14:textId="77777777" w:rsidTr="00C4517C"><w:trPr><w:cantSplit/><w:trHeight w:hRule="exact" w:val="397"/></w:trPr><w:tc><w:tcPr><w:tcW w:w="7597" w:type="dxa"/><w:shd w:val="clear" w:color="auto" w:fill="auto"/><w:vAlign w:val="bottom"/></w:tcPr><w:p w14:paraId="463058A0" w14:textId="77777777" w:rsidR="008F20A4" w:rsidRPr="00C335CE" w:rsidRDefault="008F20A4" w:rsidP="00C4517C"><w:pPr><w:pStyle w:val="DateDue"/><w:framePr w:hSpace="0" w:wrap="auto" w:vAnchor="margin" w:hAnchor="text" w:xAlign="left" w:yAlign="inline"/><w:suppressOverlap w:val="0"/></w:pPr><w:r w:rsidRPr="00C335CE"><w:t>JJ/MM/AAAA</w:t></w:r></w:p></w:tc></w:tr><w:tr w:rsidR="008F20A4" w:rsidRPr="00C335CE" w14:paraId="6452573F" w14:textId="77777777" w:rsidTr="00C4517C"><w:trPr><w:cantSplit/><w:trHeight w:hRule="exact" w:val="340"/></w:trPr><w:tc><w:tcPr><w:tcW w:w="7597" w:type="dxa"/><w:shd w:val="clear" w:color="auto" w:fill="auto"/><w:vAlign w:val="bottom"/></w:tcPr><w:p w14:paraId="6536045D" w14:textId="77777777" w:rsidR="008F20A4" w:rsidRPr="00C335CE" w:rsidRDefault="008F20A4" w:rsidP="00C4517C"><w:pPr><w:pStyle w:val="Classification"/><w:framePr w:hSpace="0" w:wrap="auto" w:vAnchor="margin" w:hAnchor="text" w:xAlign="left" w:yAlign="inline"/><w:suppressOverlap w:val="0"/></w:pPr><w:r w:rsidRPr="00C335CE"><w:rPr><w:sz w:val="18"/></w:rPr><w:t>Strictement confidentiel</w:t></w:r></w:p></w:tc></w:tr></w:tbl><w:p w14:paraId="45EA0891" w14:textId="77777777" w:rsidR="007132BD" w:rsidRPr="00C335CE" w:rsidRDefault="005A01BC" w:rsidP="00891B8F"><w:pPr><w:pStyle w:val="documentControl"/></w:pPr><w:r w:rsidRPr="00C335CE"><w:rPr><w:noProof/><w:lang w:eastAsia="fr-FR"/></w:rPr><w:drawing><wp:anchor distT="0" distB="0" distL="114300" distR="114300" simplePos="0" relativeHeight="251659264" behindDoc="1" locked="0" layoutInCell="0" allowOverlap="0" wp14:anchorId="4A040FE9" wp14:editId="18E34965"><wp:simplePos x="0" y="0"/><wp:positionH relativeFrom="margin"><wp:align>right</wp:align></wp:positionH><wp:positionV relativeFrom="margin"><wp:align>bottom</wp:align></wp:positionV><wp:extent cx="6768000" cy="6786000"/><wp:effectExtent l="0" t="0" r="0" b="0"/><wp:wrapNone/><wp:docPr id="11" name="Image 11"/><wp:cNvGraphicFramePr><a:graphicFrameLocks xmlns:a="http://schemas.openxmlformats.org/drawingml/2006/main" noChangeAspect="1"/></wp:cNvGraphicFramePr><a:graphic xmlns:a="http://schemas.openxmlformats.org/drawingml/2006/main"><a:graphicData uri="http://schemas.openxmlformats.org/drawingml/2006/picture"><pic:pic xmlns:pic="http://schemas.openxmlformats.org/drawingml/2006/picture"><pic:nvPicPr><pic:cNvPr id="0" name="Picture 2" descr="Page garde offre"/><pic:cNvPicPr><a:picLocks noChangeAspect="1" noChangeArrowheads="1"/></pic:cNvPicPr></pic:nvPicPr><pic:blipFill><a:blip r:embed="rId11"><a:extLst><a:ext uri="{28A0092B-C50C-407E-A947-70E740481C1C}"><a14:useLocalDpi xmlns:a14="http://schemas.microsoft.com/office/drawing/2010/main" val="0"/></a:ext></a:extLst></a:blip><a:stretch><a:fillRect/></a:stretch></pic:blipFill><pic:spPr bwMode="auto"><a:xfrm><a:off x="0" y="0"/><a:ext cx="6768000" cy="6786000"/></a:xfrm><a:prstGeom prst="rect"><a:avLst/></a:prstGeom><a:noFill/><a:ln><a:noFill/></a:ln></pic:spPr></pic:pic></a:graphicData></a:graphic><wp14:sizeRelH relativeFrom="page"><wp14:pctWidth>0</wp14:pctWidth></wp14:sizeRelH><wp14:sizeRelV relativeFrom="page"><wp14:pctHeight>0</wp14:pctHeight></wp14:sizeRelV></wp:anchor></w:drawing></w:r><w:r w:rsidRPr="00C335CE"><w:br w:type="page"/></w:r><w:proofErr w:type="gramStart"/><w:r w:rsidR="00B9348B" w:rsidRPr="00C335CE"><w:lastRenderedPageBreak/><w:t>clause</w:t></w:r><w:proofErr w:type="gramEnd"/><w:r w:rsidR="00B9348B" w:rsidRPr="00C335CE"><w:t xml:space="preserve"> de confidentialit&#233;</w:t></w:r></w:p><w:p w14:paraId="3E57861B" w14:textId="77777777" w:rsidR="007132BD" w:rsidRPr="00C335CE" w:rsidRDefault="00115837" w:rsidP="00891B8F"><w:pPr><w:pStyle w:val="ProprietaryNoticeText"/><w:rPr><w:color w:val="595959"/></w:rPr></w:pPr><w:r w:rsidRPr="00C335CE"><w:rPr><w:color w:val="595959"/></w:rPr><w:t xml:space="preserve">Toute </w:t></w:r><w:r w:rsidR="007132BD" w:rsidRPr="00C335CE"><w:rPr><w:color w:val="595959"/></w:rPr><w:t xml:space="preserve">information </w:t></w:r><w:r w:rsidRPr="00C335CE"><w:rPr><w:color w:val="595959"/></w:rPr><w:t xml:space="preserve">contenue dans ce </w:t></w:r><w:r w:rsidR="007132BD" w:rsidRPr="00C335CE"><w:rPr><w:color w:val="595959"/></w:rPr><w:t xml:space="preserve">document </w:t></w:r><w:r w:rsidRPr="00C335CE"><w:rPr><w:color w:val="595959"/></w:rPr><w:t xml:space="preserve">strictement confidentiel est fournie &#224; </w:t></w:r><w:r w:rsidR="007132BD" w:rsidRPr="00C335CE"><w:rPr><w:color w:val="595959"/></w:rPr><w:fldChar w:fldCharType="begin"/></w:r><w:r w:rsidR="007132BD" w:rsidRPr="00C335CE"><w:rPr><w:color w:val="595959"/></w:rPr><w:instrText xml:space="preserve"> STYLEREF .CompanyName \\* MERGEFORMAT </w:instrText></w:r><w:r w:rsidR="007132BD" w:rsidRPr="00C335CE"><w:rPr><w:color w:val="595959"/></w:rPr><w:fldChar w:fldCharType="separate"/></w:r><w:r w:rsidR="000C19BE"><w:rPr><w:noProof/><w:color w:val="595959"/></w:rPr><w:t>Nom du Client</w:t></w:r><w:r w:rsidR="007132BD" w:rsidRPr="00C335CE"><w:rPr><w:color w:val="595959"/></w:rPr><w:fldChar w:fldCharType="end"/></w:r><w:r w:rsidR="007132BD" w:rsidRPr="00C335CE"><w:rPr><w:color w:val="595959"/></w:rPr><w:t xml:space="preserve"> </w:t></w:r><w:r w:rsidRPr="00C335CE"><w:rPr><w:color w:val="595959"/></w:rPr><w:t>dans le seul but de r&#233;pondre &#224; ses demandes et ne peut &#234;tre utilis&#233;</w:t></w:r><w:r w:rsidR="007A159B" w:rsidRPr="00C335CE"><w:rPr><w:color w:val="595959"/></w:rPr><w:t>e</w:t></w:r><w:r w:rsidRPr="00C335CE"><w:rPr><w:color w:val="595959"/></w:rPr><w:t xml:space="preserve"> &#224; d&#8217;autres fins.</w:t></w:r></w:p><w:p w14:paraId="3EC09512" w14:textId="77777777" w:rsidR="007132BD" w:rsidRPr="00C335CE" w:rsidRDefault="007132BD" w:rsidP="007132BD"><w:pPr><w:pStyle w:val="ProprietaryNoticeText"/><w:rPr><w:color w:val="595959"/></w:rPr></w:pPr><w:r w:rsidRPr="00C335CE"><w:rPr><w:color w:val="595959"/></w:rPr><w:fldChar w:fldCharType="begin"/></w:r><w:r w:rsidRPr="00C335CE"><w:rPr><w:color w:val="595959"/></w:rPr><w:instrText xml:space="preserve"> STYLEREF .CompanyName \\* MERGEFORMAT </w:instrText></w:r><w:r w:rsidRPr="00C335CE"><w:rPr><w:color w:val="595959"/></w:rPr><w:fldChar w:fldCharType="separate"/></w:r><w:r w:rsidR="000C19BE"><w:rPr><w:noProof/><w:color w:val="595959"/></w:rPr><w:t>Nom du Client</w:t></w:r><w:r w:rsidRPr="00C335CE"><w:rPr><w:color w:val="595959"/></w:rPr><w:fldChar w:fldCharType="end"/></w:r><w:r w:rsidRPr="00C335CE"><w:rPr><w:color w:val="595959"/></w:rPr><w:t xml:space="preserve"> </w:t></w:r><w:r w:rsidR="00115837" w:rsidRPr="00C335CE"><w:rPr><w:color w:val="595959"/></w:rPr><w:t>s&#8217;engage &#224; ne pas publier ni faire conna&#238;tre tout ou partie de ces informations &#224; quelque tierce partie que ce soit sans l&#8217;autorisation pr&#233;alable d&#8217;</w:t></w:r><w:r w:rsidR="00712552" w:rsidRPr="00C335CE"><w:rPr><w:color w:val="595959"/></w:rPr><w:t>Orange</w:t></w:r><w:r w:rsidRPr="00C335CE"><w:rPr><w:color w:val="595959"/></w:rPr><w:t>.</w:t></w:r></w:p><w:p w14:paraId="7D23B684" w14:textId="77777777" w:rsidR="007132BD" w:rsidRPr="00C335CE" w:rsidRDefault="007132BD" w:rsidP="007132BD"><w:pPr><w:pStyle w:val="ProprietaryNoticeText"/><w:rPr><w:color w:val="595959"/></w:rPr></w:pPr><w:r w:rsidRPr="00C335CE"><w:rPr><w:color w:val="595959"/></w:rPr><w:t>&#169; copyright 201</w:t></w:r><w:r w:rsidR="00DA1A27"><w:rPr><w:color w:val="595959"/></w:rPr><w:t>8</w:t></w:r></w:p><w:p w14:paraId="5E1DE421" w14:textId="77777777" w:rsidR="007132BD" w:rsidRPr="00C335CE" w:rsidRDefault="00115837" w:rsidP="00C21D48"><w:pPr><w:pStyle w:val="ProprietaryNoticeText"/><w:spacing w:after="2800"/><w:rPr><w:color w:val="595959"/></w:rPr></w:pPr><w:r w:rsidRPr="00C335CE"><w:rPr><w:color w:val="595959"/></w:rPr><w:t>Tous droits r&#233;serv&#233;s</w:t></w:r></w:p><w:p w14:paraId="3BC5C1B2" w14:textId="77777777" w:rsidR="00AF69C7" w:rsidRPr="00C335CE" w:rsidRDefault="00AF69C7" w:rsidP="00DA1A27"><w:pPr><w:pStyle w:val="PointsContact"/><w:spacing w:before="6000"/></w:pPr><w:proofErr w:type="gramStart"/><w:r w:rsidRPr="00C335CE"><w:t>votre</w:t></w:r><w:proofErr w:type="gramEnd"/><w:r w:rsidRPr="00C335CE"><w:t xml:space="preserve"> contact</w:t></w:r></w:p><w:tbl><w:tblPr><w:tblW w:w="8505" w:type="dxa"/><w:tblInd w:w="85" w:type="dxa"/><w:tblBorders><w:top w:val="single" w:sz="4" w:space="0" w:color="808080"/><w:left w:val="single" w:sz="4" w:space="0" w:color="808080"/><w:bottom w:val="single" w:sz="4" w:space="0" w:color="808080"/><w:right w:val="single" w:sz="4" w:space="0" w:color="808080"/><w:insideH w:val="single" w:sz="4" w:space="0" w:color="808080"/><w:insideV w:val="single" w:sz="4" w:space="0" w:color="808080"/></w:tblBorders><w:tblLayout w:type="fixed"/><w:tblCellMar><w:left w:w="85" w:type="dxa"/><w:right w:w="85" w:type="dxa"/></w:tblCellMar><w:tblLook w:val="0000" w:firstRow="0" w:lastRow="0" w:firstColumn="0" w:lastColumn="0" w:noHBand="0" w:noVBand="0"/></w:tblPr><w:tblGrid><w:gridCol w:w="1095"/><w:gridCol w:w="3264"/><w:gridCol w:w="900"/><w:gridCol w:w="3246"/></w:tblGrid><w:tr w:rsidR="00AF69C7" w:rsidRPr="00C335CE" w14:paraId="64609664" w14:textId="77777777" w:rsidTr="009564E8"><w:trPr><w:cantSplit/></w:trPr><w:tc><w:tcPr><w:tcW w:w="1095" w:type="dxa"/><w:vAlign w:val="center"/></w:tcPr><w:p w14:paraId="2CA49F3C" w14:textId="77777777" w:rsidR="00AF69C7" w:rsidRPr="00C335CE" w:rsidRDefault="00AF69C7" w:rsidP="00FF5DD0"><w:pPr><w:pStyle w:val="CoordonnesContacts"/></w:pPr><w:r w:rsidRPr="00C335CE"><w:t>Nom</w:t></w:r><w:r w:rsidR="00FF5DD0" w:rsidRPr="00C335CE"><w:t xml:space="preserve"> </w:t></w:r><w:r w:rsidRPr="00C335CE"><w:t>:</w:t></w:r></w:p></w:tc><w:tc><w:tcPr><w:tcW w:w="7410" w:type="dxa"/><w:gridSpan w:val="3"/><w:vAlign w:val="center"/></w:tcPr><w:p w14:paraId="427D84E8" w14:textId="77777777" w:rsidR="00AF69C7" w:rsidRPr="00C335CE" w:rsidRDefault="00AF69C7" w:rsidP="00AF69C7"><w:pPr><w:pStyle w:val="CoordonnesContacts"/></w:pPr></w:p></w:tc></w:tr><w:tr w:rsidR="00AF69C7" w:rsidRPr="00C335CE" w14:paraId="04E8E560" w14:textId="77777777" w:rsidTr="009564E8"><w:tc><w:tcPr><w:tcW w:w="1095" w:type="dxa"/><w:vAlign w:val="center"/></w:tcPr><w:p w14:paraId="6876598F" w14:textId="77777777" w:rsidR="00AF69C7" w:rsidRPr="00C335CE" w:rsidRDefault="00AF69C7" w:rsidP="00FF5DD0"><w:pPr><w:pStyle w:val="CoordonnesContacts"/></w:pPr><w:r w:rsidRPr="00C335CE"><w:t>Titre</w:t></w:r><w:r w:rsidR="00FF5DD0" w:rsidRPr="00C335CE"><w:t xml:space="preserve"> </w:t></w:r><w:r w:rsidRPr="00C335CE"><w:t>:</w:t></w:r></w:p></w:tc><w:tc><w:tcPr><w:tcW w:w="3264" w:type="dxa"/><w:vAlign w:val="center"/></w:tcPr><w:p w14:paraId="1F56BDFC" w14:textId="77777777" w:rsidR="00AF69C7" w:rsidRPr="00C335CE" w:rsidRDefault="00AF69C7" w:rsidP="00AF69C7"><w:pPr><w:pStyle w:val="CoordonnesContacts"/></w:pPr></w:p></w:tc><w:tc><w:tcPr><w:tcW w:w="900" w:type="dxa"/><w:vAlign w:val="center"/></w:tcPr><w:p w14:paraId="5DC329C3" w14:textId="77777777" w:rsidR="00AF69C7" w:rsidRPr="00C335CE" w:rsidRDefault="00FF5DD0" w:rsidP="00AF69C7"><w:pPr><w:pStyle w:val="CoordonnesContacts"/></w:pPr><w:proofErr w:type="gramStart"/><w:r w:rsidRPr="00C335CE"><w:t>Email</w:t></w:r><w:proofErr w:type="gramEnd"/><w:r w:rsidRPr="00C335CE"><w:t xml:space="preserve"> </w:t></w:r><w:r w:rsidR="00AF69C7" w:rsidRPr="00C335CE"><w:t>:</w:t></w:r></w:p></w:tc><w:tc><w:tcPr><w:tcW w:w="3246" w:type="dxa"/><w:vAlign w:val="center"/></w:tcPr><w:p w14:paraId="2326070B" w14:textId="77777777" w:rsidR="00AF69C7" w:rsidRPr="00C335CE" w:rsidRDefault="00AF69C7" w:rsidP="00AF69C7"><w:pPr><w:pStyle w:val="CoordonnesContacts"/></w:pPr><w:r w:rsidRPr="00C335CE"><w:t>@orange.com</w:t></w:r></w:p></w:tc></w:tr><w:tr w:rsidR="00AF69C7" w:rsidRPr="00C335CE" w14:paraId="470FE1CB" w14:textId="77777777" w:rsidTr="009564E8"><w:tc><w:tcPr><w:tcW w:w="1095" w:type="dxa"/><w:vAlign w:val="center"/></w:tcPr><w:p w14:paraId="75B44613" w14:textId="77777777" w:rsidR="00AF69C7" w:rsidRPr="00C335CE" w:rsidRDefault="00AF69C7" w:rsidP="00FF5DD0"><w:pPr><w:pStyle w:val="CoordonnesContacts"/></w:pPr><w:r w:rsidRPr="00C335CE"><w:t>T&#233;l</w:t></w:r><w:r w:rsidR="00FF5DD0" w:rsidRPr="00C335CE"><w:t xml:space="preserve"> </w:t></w:r><w:r w:rsidRPr="00C335CE"><w:t>:</w:t></w:r></w:p></w:tc><w:tc><w:tcPr><w:tcW w:w="3264" w:type="dxa"/><w:vAlign w:val="center"/></w:tcPr><w:p w14:paraId="1FF13B91" w14:textId="77777777" w:rsidR="00AF69C7" w:rsidRPr="00C335CE" w:rsidRDefault="00AF69C7" w:rsidP="00AF69C7"><w:pPr><w:pStyle w:val="CoordonnesContacts"/></w:pPr></w:p></w:tc><w:tc><w:tcPr><w:tcW w:w="900" w:type="dxa"/><w:vAlign w:val="center"/></w:tcPr><w:p w14:paraId="0486FC7A" w14:textId="77777777" w:rsidR="00AF69C7" w:rsidRPr="00C335CE" w:rsidRDefault="00AF69C7" w:rsidP="00FF5DD0"><w:pPr><w:pStyle w:val="CoordonnesContacts"/></w:pPr><w:r w:rsidRPr="00C335CE"><w:t>Mobile</w:t></w:r><w:r w:rsidR="00FF5DD0" w:rsidRPr="00C335CE"><w:t xml:space="preserve"> </w:t></w:r><w:r w:rsidRPr="00C335CE"><w:t>:</w:t></w:r></w:p></w:tc><w:tc><w:tcPr><w:tcW w:w="3246" w:type="dxa"/><w:vAlign w:val="center"/></w:tcPr><w:p w14:paraId="49907CC8" w14:textId="77777777" w:rsidR="00AF69C7" w:rsidRPr="00C335CE" w:rsidRDefault="00AF69C7" w:rsidP="00AF69C7"><w:pPr><w:pStyle w:val="CoordonnesContacts"/></w:pPr></w:p></w:tc></w:tr><w:tr w:rsidR="00AF69C7" w:rsidRPr="00C335CE" w14:paraId="071A9502" w14:textId="77777777" w:rsidTr="009564E8"><w:trPr><w:cantSplit/></w:trPr><w:tc><w:tcPr><w:tcW w:w="1095" w:type="dxa"/><w:vAlign w:val="center"/></w:tcPr><w:p w14:paraId="4755FA1E" w14:textId="77777777" w:rsidR="00AF69C7" w:rsidRPr="00C335CE" w:rsidRDefault="00D221F1" w:rsidP="00FF5DD0"><w:pPr><w:pStyle w:val="CoordonnesContacts"/></w:pPr><w:r w:rsidRPr="00C335CE"><w:t>A</w:t></w:r><w:r w:rsidR="00AF69C7" w:rsidRPr="00C335CE"><w:t>dresse</w:t></w:r><w:r w:rsidR="00FF5DD0" w:rsidRPr="00C335CE"><w:t xml:space="preserve"> </w:t></w:r><w:r w:rsidR="00AF69C7" w:rsidRPr="00C335CE"><w:t>:</w:t></w:r></w:p></w:tc><w:tc><w:tcPr><w:tcW w:w="7410" w:type="dxa"/><w:gridSpan w:val="3"/><w:vAlign w:val="center"/></w:tcPr><w:p w14:paraId="486934C7" w14:textId="77777777" w:rsidR="00AF69C7" w:rsidRPr="00C335CE" w:rsidRDefault="00AF69C7" w:rsidP="00AF69C7"><w:pPr><w:pStyle w:val="CoordonnesContacts"/></w:pPr></w:p></w:tc></w:tr><w:tr w:rsidR="00AF69C7" w:rsidRPr="00C335CE" w14:paraId="74B2F971" w14:textId="77777777" w:rsidTr="009564E8"><w:trPr><w:cantSplit/></w:trPr><w:tc><w:tcPr><w:tcW w:w="1095" w:type="dxa"/><w:vAlign w:val="center"/></w:tcPr><w:p w14:paraId="21D3119F" w14:textId="77777777" w:rsidR="00AF69C7" w:rsidRPr="00C335CE" w:rsidRDefault="00AF69C7" w:rsidP="00FF5DD0"><w:pPr><w:pStyle w:val="CoordonnesContacts"/></w:pPr><w:r w:rsidRPr="00C335CE"><w:t>Site Web</w:t></w:r><w:r w:rsidR="00FF5DD0" w:rsidRPr="00C335CE"><w:t xml:space="preserve"> </w:t></w:r><w:r w:rsidRPr="00C335CE"><w:t>:</w:t></w:r></w:p></w:tc><w:tc><w:tcPr><w:tcW w:w="7410" w:type="dxa"/><w:gridSpan w:val="3"/><w:vAlign w:val="center"/></w:tcPr><w:p w14:paraId="3957B477" w14:textId="77777777" w:rsidR="00AF69C7" w:rsidRPr="00C335CE" w:rsidRDefault="00C168A5" w:rsidP="00C168A5"><w:pPr><w:pStyle w:val="CoordonnesContacts"/></w:pPr><w:r w:rsidRPr="00C335CE"><w:t>http://www.</w:t></w:r><w:r w:rsidR="00AF69C7" w:rsidRPr="00C335CE"><w:t>orange-business.com</w:t></w:r></w:p></w:tc></w:tr></w:tbl><w:p w14:paraId="11185772" w14:textId="77777777" w:rsidR="008A617E" w:rsidRPr="00C335CE" w:rsidRDefault="008A617E" w:rsidP="008A617E"><w:pPr><w:pStyle w:val="BodyText"/></w:pPr></w:p><w:p w14:paraId="6DDF5966" w14:textId="77777777" w:rsidR="007132BD" w:rsidRPr="00C335CE" w:rsidRDefault="007132BD" w:rsidP="008A617E"><w:pPr><w:pStyle w:val="BodyText"/><w:sectPr w:rsidR="007132BD" w:rsidRPr="00C335CE" w:rsidSect="002F63F5"><w:headerReference w:type="even" r:id="rId12"/><w:headerReference w:type="default" r:id="rId13"/><w:footerReference w:type="even" r:id="rId14"/><w:footerReference w:type="default" r:id="rId15"/><w:headerReference w:type="first" r:id="rId16"/><w:footerReference w:type="first" r:id="rId17"/><w:pgSz w:w="11906" w:h="16838" w:code="9"/><w:pgMar w:top="720" w:right="720" w:bottom="720" w:left="720" w:header="0" w:footer="0" w:gutter="0"/><w:cols w:space="708"/><w:titlePg/><w:docGrid w:linePitch="360"/></w:sectPr></w:pPr></w:p><w:p w14:paraId="2C75859B" w14:textId="77777777" w:rsidR="007132BD" w:rsidRPr="00C335CE" w:rsidRDefault="007132BD" w:rsidP="00C168A5"><w:pPr><w:pStyle w:val="STitre1"/></w:pPr><w:r w:rsidRPr="00C335CE"><w:lastRenderedPageBreak/><w:t xml:space="preserve">Table </w:t></w:r><w:r w:rsidR="00FA453C" w:rsidRPr="00C335CE"><w:t>des</w:t></w:r><w:r w:rsidRPr="00C335CE"><w:t xml:space="preserve"> </w:t></w:r><w:r w:rsidR="00FA453C" w:rsidRPr="00C335CE"><w:t>mati&#232;res</w:t></w:r></w:p><w:p w14:paraId="33936659" w14:textId="77777777" w:rsidR="007132BD" w:rsidRPr="00C335CE" w:rsidRDefault="00000000" w:rsidP="00F16138"><w:pPr><w:pStyle w:val="TM1"/></w:pPr><w:r><w:fldChar w:fldCharType="begin"/></w:r><w:r><w:instrText xml:space="preserve"> TOC \\o "1-3" \\h \\z \\u </w:instrText></w:r><w:r><w:fldChar w:fldCharType="separate"/></w:r><w:r w:rsidR="001F5250" w:rsidRPr="00C335CE"><w:rPr><w:noProof/></w:rPr><w:t xml:space="preserve">Aucune entr&#233;e de table des </w:t></w:r><w:r w:rsidR="001F5250" w:rsidRPr="00C335CE"><w:t>mati&#232;res</w:t></w:r><w:r w:rsidR="001F5250" w:rsidRPr="00C335CE"><w:rPr><w:noProof/></w:rPr><w:t xml:space="preserve"> n\'a &#233;t&#233; trouv&#233;e.</w:t></w:r><w:r><w:rPr><w:noProof/></w:rPr><w:fldChar w:fldCharType="end"/></w:r></w:p><w:p w14:paraId="38CA3268" w14:textId="77777777" w:rsidR="009A37C6" w:rsidRPr="00C335CE" w:rsidRDefault="009A37C6" w:rsidP="0048016E"><w:pPr><w:pStyle w:val="STitre1"/></w:pPr><w:r w:rsidRPr="00C335CE"><w:t>Liste des tableaux</w:t></w:r></w:p><w:p w14:paraId="3FFCA3F6" w14:textId="77777777" w:rsidR="009A37C6" w:rsidRPr="00C335CE" w:rsidRDefault="009A37C6" w:rsidP="002F4EEA"><w:pPr><w:pStyle w:val="Tabledesillustrations"/><w:rPr><w:lang w:val="fr-FR"/></w:rPr></w:pPr><w:r w:rsidRPr="00C335CE"><w:rPr><w:lang w:val="fr-FR"/></w:rPr><w:fldChar w:fldCharType="begin"/></w:r><w:r w:rsidRPr="00C335CE"><w:rPr><w:lang w:val="fr-FR"/></w:rPr><w:instrText xml:space="preserve"> TOC \\h \\z \\c "Tableau" </w:instrText></w:r><w:r w:rsidRPr="00C335CE"><w:rPr><w:lang w:val="fr-FR"/></w:rPr><w:fldChar w:fldCharType="separate"/></w:r><w:r w:rsidR="002F4EEA" w:rsidRPr="00C335CE"><w:rPr><w:lang w:val="fr-FR"/></w:rPr><w:t>Aucune entr&#233;e de table d\'illustration n\'a &#233;t&#233; trouv&#233;e.</w:t></w:r><w:r w:rsidRPr="00C335CE"><w:rPr><w:lang w:val="fr-FR"/></w:rPr><w:fldChar w:fldCharType="end"/></w:r></w:p><w:p w14:paraId="5A2AE896" w14:textId="77777777" w:rsidR="009A37C6" w:rsidRPr="00C335CE" w:rsidRDefault="009A37C6" w:rsidP="0048016E"><w:pPr><w:pStyle w:val="STitre1"/></w:pPr><w:r w:rsidRPr="00C335CE"><w:t>Liste des figures</w:t></w:r></w:p><w:p w14:paraId="3B29A2A0" w14:textId="77777777" w:rsidR="009A37C6" w:rsidRPr="00C335CE" w:rsidRDefault="009A37C6" w:rsidP="002F4EEA"><w:pPr><w:pStyle w:val="Tabledesillustrations"/><w:rPr><w:lang w:val="fr-FR"/></w:rPr></w:pPr><w:r w:rsidRPr="00C335CE"><w:rPr><w:lang w:val="fr-FR"/></w:rPr><w:fldChar w:fldCharType="begin"/></w:r><w:r w:rsidRPr="00C335CE"><w:rPr><w:lang w:val="fr-FR"/></w:rPr><w:instrText xml:space="preserve"> TOC \\h \\z \\c "Figure" </w:instrText></w:r><w:r w:rsidRPr="00C335CE"><w:rPr><w:lang w:val="fr-FR"/></w:rPr><w:fldChar w:fldCharType="separate"/></w:r><w:r w:rsidR="001F5250" w:rsidRPr="00C335CE"><w:rPr><w:lang w:val="fr-FR"/></w:rPr><w:t>Aucune entr&#233;e de table d\'illustration n\'a &#233;t&#233; trouv&#233;e.</w:t></w:r><w:r w:rsidRPr="00C335CE"><w:rPr><w:lang w:val="fr-FR"/></w:rPr><w:fldChar w:fldCharType="end"/></w:r></w:p><w:p w14:paraId="4750AFB0" w14:textId="77777777" w:rsidR="00F36D8E" w:rsidRPr="00C335CE" w:rsidRDefault="00F36D8E" w:rsidP="00F36D8E"/><w:p w14:paraId="7D70CB6D" w14:textId="77777777" w:rsidR="000836AE" w:rsidRPr="00C335CE" w:rsidRDefault="000836AE" w:rsidP="000836AE"><w:pPr><w:pStyle w:val="BodyText"/><w:sectPr w:rsidR="000836AE" w:rsidRPr="00C335CE" w:rsidSect="005302A5"><w:headerReference w:type="even" r:id="rId18"/><w:headerReference w:type="default" r:id="rId19"/><w:footerReference w:type="even" r:id="rId20"/><w:footerReference w:type="default" r:id="rId21"/><w:headerReference w:type="first" r:id="rId22"/><w:footerReference w:type="first" r:id="rId23"/><w:pgSz w:w="11906" w:h="16838" w:code="9"/><w:pgMar w:top="720" w:right="720" w:bottom="720" w:left="720" w:header="0" w:footer="0" w:gutter="0"/><w:cols w:space="708"/><w:docGrid w:linePitch="360"/></w:sectPr></w:pPr></w:p><w:p w14:paraId="6B39024A" w14:textId="77777777" w:rsidR="001E4CDD" w:rsidRPr="00ED1502" w:rsidRDefault="001E4CDD" w:rsidP="00ED1502"><w:pPr><w:pStyle w:val="BodyText"/></w:pPr></w:p><w:p w14:paraId="0519CE18" w14:textId="3F897D6A" w:rsidR="0048016E" w:rsidRDefault="00ED038F" w:rsidP="00ED038F"><w:pPr><w:pStyle w:val="Titre10"/><w:rPr><w:rStyle w:val="TexteOrange"/></w:rPr></w:pPr><w:proofErr w:type="spellStart"/><w:r><w:rPr><w:rStyle w:val="TexteOrange"/></w:rPr><w:lastRenderedPageBreak/><w:t>Ccc</w:t></w:r><w:proofErr w:type="spellEnd"/></w:p><w:p w14:paraId="3BC69584" w14:textId="48227D67" w:rsidR="00ED038F" w:rsidRDefault="00ED038F" w:rsidP="00ED038F"><w:pPr><w:pStyle w:val="Titre20"/></w:pPr><w:proofErr w:type="spellStart"/><w:r><w:t>Qsdd</w:t></w:r><w:proofErr w:type="spellEnd"/></w:p><w:p w14:paraId="747EE9A7" w14:textId="5DFB2DB0" w:rsidR="00ED038F" w:rsidRDefault="00947006" w:rsidP="00845F4B"><w:pPr><w:pStyle w:val="BodyText"/><w:rPr><w:rStyle w:val="TexteOrange"/></w:rPr></w:pPr><w:proofErr w:type="spellStart"/><w:r w:rsidRPr="00845F4B"><w:rPr><w:rStyle w:val="TexteOrange"/></w:rPr><w:t>Dsbvbvn</w:t></w:r><w:proofErr w:type="spellEnd"/></w:p><w:p w14:paraId="21497A0D" w14:textId="77777777" w:rsidR="00947006" w:rsidRPr="00845F4B" w:rsidRDefault="00947006" w:rsidP="00845F4B"><w:pPr><w:pStyle w:val="BodyText"/><w:rPr><w:rStyle w:val="TexteOrange"/></w:rPr></w:pPr></w:p><w:p w14:paraId="383106B5" w14:textId="5ACDB52E" w:rsidR="00947006" w:rsidRDefault="00947006" w:rsidP="00947006"><w:pPr><w:pStyle w:val="Bullet1"/><w:rPr><w:rStyle w:val="TexteOrange"/></w:rPr></w:pPr><w:proofErr w:type="spellStart"/><w:r><w:rPr><w:rStyle w:val="TexteOrange"/></w:rPr><w:t>Fezjfz</w:t></w:r><w:proofErr w:type="spellEnd"/></w:p><w:p w14:paraId="2C331B80" w14:textId="3A7D6E23" w:rsidR="00947006" w:rsidRDefault="00947006" w:rsidP="00947006"><w:pPr><w:pStyle w:val="Bullet1"/><w:rPr><w:rStyle w:val="TexteOrange"/></w:rPr></w:pPr><w:proofErr w:type="spellStart"/><w:r><w:rPr><w:rStyle w:val="TexteOrange"/></w:rPr><w:t>Jzekkfjk</w:t></w:r><w:proofErr w:type="spellEnd"/></w:p><w:p w14:paraId="603BA9F8" w14:textId="32546CFA" w:rsidR="00947006" w:rsidRPr="00845F4B" w:rsidRDefault="00845F4B" w:rsidP="00845F4B"><w:pPr><w:pStyle w:val="BodyText"/><w:rPr><w:rStyle w:val="TexteOrange"/></w:rPr></w:pPr><w:r w:rsidRPr="00845F4B"><w:rPr><w:rStyle w:val="TexteOrange"/></w:rPr><w:t xml:space="preserve"> </w:t></w:r><w:proofErr w:type="spellStart"/><w:r w:rsidRPr="00845F4B"><w:rPr><w:rStyle w:val="TexteOrange"/></w:rPr><w:t>Nf</w:t></w:r><w:proofErr w:type="spellEnd"/><w:r w:rsidRPr="00845F4B"><w:rPr><w:rStyle w:val="TexteOrange"/></w:rPr><w:t xml:space="preserve"> </w:t></w:r><w:proofErr w:type="spellStart"/><w:r w:rsidRPr="00845F4B"><w:rPr><w:rStyle w:val="TexteOrange"/></w:rPr><w:t>nvf</w:t></w:r><w:proofErr w:type="spellEnd"/><w:r w:rsidRPr="00845F4B"><w:rPr><w:rStyle w:val="TexteOrange"/></w:rPr><w:t xml:space="preserve"> </w:t></w:r><w:proofErr w:type="spellStart"/><w:proofErr w:type="gramStart"/><w:r w:rsidRPr="00845F4B"><w:rPr><w:rStyle w:val="TexteOrange"/></w:rPr><w:t>z,v</w:t></w:r><w:proofErr w:type="spellEnd"/><w:proofErr w:type="gramEnd"/><w:r w:rsidRPr="00845F4B"><w:rPr><w:rStyle w:val="TexteOrange"/></w:rPr><w:t>$</w:t></w:r></w:p><w:p w14:paraId="1E6020A0" w14:textId="77777777" w:rsidR="00845F4B" w:rsidRPr="00845F4B" w:rsidRDefault="00845F4B" w:rsidP="00845F4B"><w:pPr><w:pStyle w:val="BodyText"/><w:rPr><w:rStyle w:val="TexteOrange"/></w:rPr></w:pPr></w:p><w:sectPr w:rsidR="00845F4B" w:rsidRPr="00845F4B" w:rsidSect="00502252"><w:headerReference w:type="default" r:id="rId24"/><w:footerReference w:type="default" r:id="rId25"/><w:pgSz w:w="11906" w:h="16838" w:code="9"/><w:pgMar w:top="720" w:right="720" w:bottom="720" w:left="720" w:header="0" w:footer="0" w:gutter="0"/><w:cols w:space="708"/><w:docGrid w:linePitch="360"/></w:sectPr></w:body></w:document>
data/examples/.DS_Store ADDED
Binary file (6.15 kB). View file
 
data/examples/AldoMoro.docx ADDED
Binary file (364 kB). View file
 
data/examples/Aldo_Moro_simple.docx ADDED
Binary file (360 kB). View file
 
data/examples/Aldo_Moro_simple_rouge.docx ADDED
Binary file (364 kB). View file
 
data/examples/Aldo_Moro_simple_style.docx ADDED
Binary file (361 kB). View file
 
data/examples/Aldo_Moro_simple_vert.docx ADDED
Binary file (361 kB). View file
 
data/examples/CorpTemplate.docx ADDED
Binary file (359 kB). View file
 
data/examples/CorpTemplate_.docx ADDED
Binary file (300 kB). View file
 
data/examples/[Content_Types].xml ADDED
@@ -0,0 +1,2 @@
 
 
 
1
+ <?xml version='1.0' encoding='UTF-8' standalone='yes'?>
2
+ <Types xmlns="http://schemas.openxmlformats.org/package/2006/content-types"><Default Extension="rels" ContentType="application/vnd.openxmlformats-package.relationships+xml"/><Default Extension="xml" ContentType="application/xml"/><Override PartName="/docProps/app.xml" ContentType="application/vnd.openxmlformats-officedocument.extended-properties+xml"/><Override PartName="/docProps/core.xml" ContentType="application/vnd.openxmlformats-package.core-properties+xml"/><Override PartName="/word/document.xml" ContentType="application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml"/><Override PartName="/word/fontTable.xml" ContentType="application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml"/><Override PartName="/word/numbering.xml" ContentType="application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml"/><Override PartName="/word/settings.xml" ContentType="application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml"/><Override PartName="/word/styles.xml" ContentType="application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml"/><Override PartName="/word/theme/theme1.xml" ContentType="application/vnd.openxmlformats-officedocument.theme+xml"/><Override PartName="/word/webSettings.xml" ContentType="application/vnd.openxmlformats-officedocument.wordprocessingml.webSettings+xml"/></Types>
data/examples/_rels/.rels ADDED
@@ -0,0 +1,2 @@
 
 
 
1
+ <?xml version='1.0' encoding='UTF-8' standalone='yes'?>
2
+ <Relationships xmlns="http://schemas.openxmlformats.org/package/2006/relationships"><Relationship Id="rId3" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/extended-properties" Target="docProps/app.xml"/><Relationship Id="rId2" Type="http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties" Target="docProps/core.xml"/><Relationship Id="rId1" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument" Target="word/document.xml"/></Relationships>
data/examples/corpd/[Content_Types].xml ADDED
@@ -0,0 +1,2 @@
 
 
 
1
+ <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
2
+ <Types xmlns="http://schemas.openxmlformats.org/package/2006/content-types"><Default Extension="jpeg" ContentType="image/jpeg"/><Default Extension="jpg" ContentType="image/jpeg"/><Default Extension="png" ContentType="image/png"/><Default Extension="rels" ContentType="application/vnd.openxmlformats-package.relationships+xml"/><Default Extension="xml" ContentType="application/xml"/><Override PartName="/word/document.xml" ContentType="application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml"/><Override PartName="/customXml/itemProps1.xml" ContentType="application/vnd.openxmlformats-officedocument.customXmlProperties+xml"/><Override PartName="/customXml/itemProps2.xml" ContentType="application/vnd.openxmlformats-officedocument.customXmlProperties+xml"/><Override PartName="/customXml/itemProps3.xml" ContentType="application/vnd.openxmlformats-officedocument.customXmlProperties+xml"/><Override PartName="/customXml/itemProps4.xml" ContentType="application/vnd.openxmlformats-officedocument.customXmlProperties+xml"/><Override PartName="/word/numbering.xml" ContentType="application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml"/><Override PartName="/word/styles.xml" ContentType="application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml"/><Override PartName="/word/settings.xml" ContentType="application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml"/><Override PartName="/word/webSettings.xml" ContentType="application/vnd.openxmlformats-officedocument.wordprocessingml.webSettings+xml"/><Override PartName="/word/footnotes.xml" ContentType="application/vnd.openxmlformats-officedocument.wordprocessingml.footnotes+xml"/><Override PartName="/word/endnotes.xml" ContentType="application/vnd.openxmlformats-officedocument.wordprocessingml.endnotes+xml"/><Override PartName="/word/header1.xml" ContentType="application/vnd.openxmlformats-officedocument.wordprocessingml.header+xml"/><Override PartName="/word/header2.xml" ContentType="application/vnd.openxmlformats-officedocument.wordprocessingml.header+xml"/><Override PartName="/word/footer1.xml" ContentType="application/vnd.openxmlformats-officedocument.wordprocessingml.footer+xml"/><Override PartName="/word/footer2.xml" ContentType="application/vnd.openxmlformats-officedocument.wordprocessingml.footer+xml"/><Override PartName="/word/header3.xml" ContentType="application/vnd.openxmlformats-officedocument.wordprocessingml.header+xml"/><Override PartName="/word/footer3.xml" ContentType="application/vnd.openxmlformats-officedocument.wordprocessingml.footer+xml"/><Override PartName="/word/header4.xml" ContentType="application/vnd.openxmlformats-officedocument.wordprocessingml.header+xml"/><Override PartName="/word/header5.xml" ContentType="application/vnd.openxmlformats-officedocument.wordprocessingml.header+xml"/><Override PartName="/word/footer4.xml" ContentType="application/vnd.openxmlformats-officedocument.wordprocessingml.footer+xml"/><Override PartName="/word/footer5.xml" ContentType="application/vnd.openxmlformats-officedocument.wordprocessingml.footer+xml"/><Override PartName="/word/header6.xml" ContentType="application/vnd.openxmlformats-officedocument.wordprocessingml.header+xml"/><Override PartName="/word/footer6.xml" ContentType="application/vnd.openxmlformats-officedocument.wordprocessingml.footer+xml"/><Override PartName="/word/header7.xml" ContentType="application/vnd.openxmlformats-officedocument.wordprocessingml.header+xml"/><Override PartName="/word/footer7.xml" ContentType="application/vnd.openxmlformats-officedocument.wordprocessingml.footer+xml"/><Override PartName="/word/fontTable.xml" ContentType="application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml"/><Override PartName="/word/theme/theme1.xml" ContentType="application/vnd.openxmlformats-officedocument.theme+xml"/><Override PartName="/docProps/core.xml" ContentType="application/vnd.openxmlformats-package.core-properties+xml"/><Override PartName="/docProps/app.xml" ContentType="application/vnd.openxmlformats-officedocument.extended-properties+xml"/><Override PartName="/docProps/custom.xml" ContentType="application/vnd.openxmlformats-officedocument.custom-properties+xml"/></Types>
data/examples/corpd/_rels/.rels ADDED
@@ -0,0 +1,2 @@
 
 
 
1
+ <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
2
+ <Relationships xmlns="http://schemas.openxmlformats.org/package/2006/relationships"><Relationship Id="rId3" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/extended-properties" Target="docProps/app.xml"/><Relationship Id="rId2" Type="http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties" Target="docProps/core.xml"/><Relationship Id="rId1" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument" Target="word/document.xml"/><Relationship Id="rId4" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/custom-properties" Target="docProps/custom.xml"/></Relationships>
data/examples/corpd/customXml/_rels/item1.xml.rels ADDED
@@ -0,0 +1,2 @@
 
 
 
1
+ <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
2
+ <Relationships xmlns="http://schemas.openxmlformats.org/package/2006/relationships"><Relationship Id="rId1" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/customXmlProps" Target="itemProps1.xml"/></Relationships>
data/examples/corpd/customXml/_rels/item2.xml.rels ADDED
@@ -0,0 +1,2 @@
 
 
 
1
+ <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
2
+ <Relationships xmlns="http://schemas.openxmlformats.org/package/2006/relationships"><Relationship Id="rId1" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/customXmlProps" Target="itemProps2.xml"/></Relationships>
data/examples/corpd/customXml/_rels/item3.xml.rels ADDED
@@ -0,0 +1,2 @@
 
 
 
1
+ <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
2
+ <Relationships xmlns="http://schemas.openxmlformats.org/package/2006/relationships"><Relationship Id="rId1" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/customXmlProps" Target="itemProps3.xml"/></Relationships>
data/examples/corpd/customXml/_rels/item4.xml.rels ADDED
@@ -0,0 +1,2 @@
 
 
 
1
+ <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
2
+ <Relationships xmlns="http://schemas.openxmlformats.org/package/2006/relationships"><Relationship Id="rId1" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/customXmlProps" Target="itemProps4.xml"/></Relationships>
data/examples/corpd/customXml/item1.xml ADDED
@@ -0,0 +1 @@
 
 
1
+ <?mso-contentType?><FormTemplates xmlns="http://schemas.microsoft.com/sharepoint/v3/contenttype/forms"><Display>DocumentLibraryForm</Display><Edit>DocumentLibraryForm</Edit><New>DocumentLibraryForm</New></FormTemplates>
data/examples/corpd/customXml/item2.xml ADDED
@@ -0,0 +1,111 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0" encoding="utf-8"?><ct:contentTypeSchema ct:_="" ma:_="" ma:contentTypeName="Document" ma:contentTypeID="0x0101000D129E6A83B3234C936C6D85FE6AF210" ma:contentTypeVersion="0" ma:contentTypeDescription="Crée un document." ma:contentTypeScope="" ma:versionID="9789d0e58ad402d7bfd796b625e1d77a" xmlns:ct="http://schemas.microsoft.com/office/2006/metadata/contentType" xmlns:ma="http://schemas.microsoft.com/office/2006/metadata/properties/metaAttributes">
2
+ <xsd:schema targetNamespace="http://schemas.microsoft.com/office/2006/metadata/properties" ma:root="true" ma:fieldsID="9b3613ba4871b6d4221e6a6d8c4f7bd5" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:p="http://schemas.microsoft.com/office/2006/metadata/properties">
3
+ <xsd:element name="properties">
4
+ <xsd:complexType>
5
+ <xsd:sequence>
6
+ <xsd:element name="documentManagement">
7
+ <xsd:complexType>
8
+ <xsd:all/>
9
+ </xsd:complexType>
10
+ </xsd:element>
11
+ </xsd:sequence>
12
+ </xsd:complexType>
13
+ </xsd:element>
14
+ </xsd:schema>
15
+ <xsd:schema targetNamespace="http://schemas.openxmlformats.org/package/2006/metadata/core-properties" elementFormDefault="qualified" attributeFormDefault="unqualified" blockDefault="#all" xmlns="http://schemas.openxmlformats.org/package/2006/metadata/core-properties" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:odoc="http://schemas.microsoft.com/internal/obd">
16
+ <xsd:import namespace="http://purl.org/dc/elements/1.1/" schemaLocation="http://dublincore.org/schemas/xmls/qdc/2003/04/02/dc.xsd"/>
17
+ <xsd:import namespace="http://purl.org/dc/terms/" schemaLocation="http://dublincore.org/schemas/xmls/qdc/2003/04/02/dcterms.xsd"/>
18
+ <xsd:element name="coreProperties" type="CT_coreProperties"/>
19
+ <xsd:complexType name="CT_coreProperties">
20
+ <xsd:all>
21
+ <xsd:element ref="dc:creator" minOccurs="0" maxOccurs="1"/>
22
+ <xsd:element ref="dcterms:created" minOccurs="0" maxOccurs="1"/>
23
+ <xsd:element ref="dc:identifier" minOccurs="0" maxOccurs="1"/>
24
+ <xsd:element name="contentType" minOccurs="0" maxOccurs="1" type="xsd:string" ma:index="0" ma:displayName="Type de contenu"/>
25
+ <xsd:element ref="dc:title" minOccurs="0" maxOccurs="1" ma:index="4" ma:displayName="Titre"/>
26
+ <xsd:element ref="dc:subject" minOccurs="0" maxOccurs="1"/>
27
+ <xsd:element ref="dc:description" minOccurs="0" maxOccurs="1"/>
28
+ <xsd:element name="keywords" minOccurs="0" maxOccurs="1" type="xsd:string"/>
29
+ <xsd:element ref="dc:language" minOccurs="0" maxOccurs="1"/>
30
+ <xsd:element name="category" minOccurs="0" maxOccurs="1" type="xsd:string"/>
31
+ <xsd:element name="version" minOccurs="0" maxOccurs="1" type="xsd:string"/>
32
+ <xsd:element name="revision" minOccurs="0" maxOccurs="1" type="xsd:string">
33
+ <xsd:annotation>
34
+ <xsd:documentation>
35
+ This value indicates the number of saves or revisions. The application is responsible for updating this value after each revision.
36
+ </xsd:documentation>
37
+ </xsd:annotation>
38
+ </xsd:element>
39
+ <xsd:element name="lastModifiedBy" minOccurs="0" maxOccurs="1" type="xsd:string"/>
40
+ <xsd:element ref="dcterms:modified" minOccurs="0" maxOccurs="1"/>
41
+ <xsd:element name="contentStatus" minOccurs="0" maxOccurs="1" type="xsd:string"/>
42
+ </xsd:all>
43
+ </xsd:complexType>
44
+ </xsd:schema>
45
+ <xs:schema targetNamespace="http://schemas.microsoft.com/office/infopath/2007/PartnerControls" elementFormDefault="qualified" attributeFormDefault="unqualified" xmlns:pc="http://schemas.microsoft.com/office/infopath/2007/PartnerControls" xmlns:xs="http://www.w3.org/2001/XMLSchema">
46
+ <xs:element name="Person">
47
+ <xs:complexType>
48
+ <xs:sequence>
49
+ <xs:element ref="pc:DisplayName" minOccurs="0"></xs:element>
50
+ <xs:element ref="pc:AccountId" minOccurs="0"></xs:element>
51
+ <xs:element ref="pc:AccountType" minOccurs="0"></xs:element>
52
+ </xs:sequence>
53
+ </xs:complexType>
54
+ </xs:element>
55
+ <xs:element name="DisplayName" type="xs:string"></xs:element>
56
+ <xs:element name="AccountId" type="xs:string"></xs:element>
57
+ <xs:element name="AccountType" type="xs:string"></xs:element>
58
+ <xs:element name="BDCAssociatedEntity">
59
+ <xs:complexType>
60
+ <xs:sequence>
61
+ <xs:element ref="pc:BDCEntity" minOccurs="0" maxOccurs="unbounded"></xs:element>
62
+ </xs:sequence>
63
+ <xs:attribute ref="pc:EntityNamespace"></xs:attribute>
64
+ <xs:attribute ref="pc:EntityName"></xs:attribute>
65
+ <xs:attribute ref="pc:SystemInstanceName"></xs:attribute>
66
+ <xs:attribute ref="pc:AssociationName"></xs:attribute>
67
+ </xs:complexType>
68
+ </xs:element>
69
+ <xs:attribute name="EntityNamespace" type="xs:string"></xs:attribute>
70
+ <xs:attribute name="EntityName" type="xs:string"></xs:attribute>
71
+ <xs:attribute name="SystemInstanceName" type="xs:string"></xs:attribute>
72
+ <xs:attribute name="AssociationName" type="xs:string"></xs:attribute>
73
+ <xs:element name="BDCEntity">
74
+ <xs:complexType>
75
+ <xs:sequence>
76
+ <xs:element ref="pc:EntityDisplayName" minOccurs="0"></xs:element>
77
+ <xs:element ref="pc:EntityInstanceReference" minOccurs="0"></xs:element>
78
+ <xs:element ref="pc:EntityId1" minOccurs="0"></xs:element>
79
+ <xs:element ref="pc:EntityId2" minOccurs="0"></xs:element>
80
+ <xs:element ref="pc:EntityId3" minOccurs="0"></xs:element>
81
+ <xs:element ref="pc:EntityId4" minOccurs="0"></xs:element>
82
+ <xs:element ref="pc:EntityId5" minOccurs="0"></xs:element>
83
+ </xs:sequence>
84
+ </xs:complexType>
85
+ </xs:element>
86
+ <xs:element name="EntityDisplayName" type="xs:string"></xs:element>
87
+ <xs:element name="EntityInstanceReference" type="xs:string"></xs:element>
88
+ <xs:element name="EntityId1" type="xs:string"></xs:element>
89
+ <xs:element name="EntityId2" type="xs:string"></xs:element>
90
+ <xs:element name="EntityId3" type="xs:string"></xs:element>
91
+ <xs:element name="EntityId4" type="xs:string"></xs:element>
92
+ <xs:element name="EntityId5" type="xs:string"></xs:element>
93
+ <xs:element name="Terms">
94
+ <xs:complexType>
95
+ <xs:sequence>
96
+ <xs:element ref="pc:TermInfo" minOccurs="0" maxOccurs="unbounded"></xs:element>
97
+ </xs:sequence>
98
+ </xs:complexType>
99
+ </xs:element>
100
+ <xs:element name="TermInfo">
101
+ <xs:complexType>
102
+ <xs:sequence>
103
+ <xs:element ref="pc:TermName" minOccurs="0"></xs:element>
104
+ <xs:element ref="pc:TermId" minOccurs="0"></xs:element>
105
+ </xs:sequence>
106
+ </xs:complexType>
107
+ </xs:element>
108
+ <xs:element name="TermName" type="xs:string"></xs:element>
109
+ <xs:element name="TermId" type="xs:string"></xs:element>
110
+ </xs:schema>
111
+ </ct:contentTypeSchema>
data/examples/corpd/customXml/item3.xml ADDED
@@ -0,0 +1 @@
 
 
1
+ <b:Sources SelectedStyle="\APA.XSL" StyleName="APA" xmlns:b="http://schemas.openxmlformats.org/officeDocument/2006/bibliography" xmlns="http://schemas.openxmlformats.org/officeDocument/2006/bibliography"></b:Sources>
data/examples/corpd/customXml/item4.xml ADDED
@@ -0,0 +1 @@
 
 
1
+ <?xml version="1.0" encoding="utf-8"?><p:properties xmlns:p="http://schemas.microsoft.com/office/2006/metadata/properties" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:pc="http://schemas.microsoft.com/office/infopath/2007/PartnerControls"><documentManagement/></p:properties>
data/examples/corpd/customXml/itemProps1.xml ADDED
@@ -0,0 +1,2 @@
 
 
 
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <ds:datastoreItem ds:itemID="{9C5BBA88-C197-4F98-9520-000525595C0B}" xmlns:ds="http://schemas.openxmlformats.org/officeDocument/2006/customXml"><ds:schemaRefs><ds:schemaRef ds:uri="http://schemas.microsoft.com/sharepoint/v3/contenttype/forms"/></ds:schemaRefs></ds:datastoreItem>
data/examples/corpd/customXml/itemProps2.xml ADDED
@@ -0,0 +1,2 @@
 
 
 
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <ds:datastoreItem ds:itemID="{874676D3-480E-48BF-931C-C6FD67E5ABD4}" xmlns:ds="http://schemas.openxmlformats.org/officeDocument/2006/customXml"><ds:schemaRefs><ds:schemaRef ds:uri="http://schemas.microsoft.com/office/2006/metadata/contentType"/><ds:schemaRef ds:uri="http://schemas.microsoft.com/office/2006/metadata/properties/metaAttributes"/><ds:schemaRef ds:uri="http://www.w3.org/2001/XMLSchema"/><ds:schemaRef ds:uri="http://schemas.microsoft.com/office/2006/metadata/properties"/><ds:schemaRef ds:uri="http://schemas.openxmlformats.org/package/2006/metadata/core-properties"/><ds:schemaRef ds:uri="http://purl.org/dc/elements/1.1/"/><ds:schemaRef ds:uri="http://purl.org/dc/terms/"/><ds:schemaRef ds:uri="http://schemas.microsoft.com/internal/obd"/><ds:schemaRef ds:uri="http://schemas.microsoft.com/office/infopath/2007/PartnerControls"/></ds:schemaRefs></ds:datastoreItem>
data/examples/corpd/customXml/itemProps3.xml ADDED
@@ -0,0 +1,2 @@
 
 
 
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <ds:datastoreItem ds:itemID="{9B52EBF8-60DF-4463-BC09-299A4D73F10B}" xmlns:ds="http://schemas.openxmlformats.org/officeDocument/2006/customXml"><ds:schemaRefs><ds:schemaRef ds:uri="http://schemas.openxmlformats.org/officeDocument/2006/bibliography"/></ds:schemaRefs></ds:datastoreItem>
data/examples/corpd/customXml/itemProps4.xml ADDED
@@ -0,0 +1,2 @@
 
 
 
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <ds:datastoreItem ds:itemID="{9C06089B-DCE3-4EDE-BBBF-24C1F337BC15}" xmlns:ds="http://schemas.openxmlformats.org/officeDocument/2006/customXml"><ds:schemaRefs><ds:schemaRef ds:uri="http://schemas.microsoft.com/office/2006/metadata/properties"/><ds:schemaRef ds:uri="http://schemas.microsoft.com/office/infopath/2007/PartnerControls"/></ds:schemaRefs></ds:datastoreItem>
data/examples/corpd/docProps/app.xml ADDED
@@ -0,0 +1,2 @@
 
 
 
1
+ <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
2
+ <Properties xmlns="http://schemas.openxmlformats.org/officeDocument/2006/extended-properties" xmlns:vt="http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes"><Template>Corporate Template Fr.dotx</Template><TotalTime>1</TotalTime><Pages>5</Pages><Words>175</Words><Characters>967</Characters><Application>Microsoft Office Word</Application><DocSecurity>0</DocSecurity><Lines>8</Lines><Paragraphs>2</Paragraphs><ScaleCrop>false</ScaleCrop><HeadingPairs><vt:vector size="4" baseType="variant"><vt:variant><vt:lpstr>Titre</vt:lpstr></vt:variant><vt:variant><vt:i4>1</vt:i4></vt:variant><vt:variant><vt:lpstr>Title</vt:lpstr></vt:variant><vt:variant><vt:i4>1</vt:i4></vt:variant></vt:vector></HeadingPairs><TitlesOfParts><vt:vector size="2" baseType="lpstr"><vt:lpstr></vt:lpstr><vt:lpstr></vt:lpstr></vt:vector></TitlesOfParts><Company>ORANGE FT Group</Company><LinksUpToDate>false</LinksUpToDate><CharactersWithSpaces>1140</CharactersWithSpaces><SharedDoc>false</SharedDoc><HyperlinksChanged>false</HyperlinksChanged><AppVersion>16.0000</AppVersion></Properties>
data/examples/corpd/docProps/core.xml ADDED
@@ -0,0 +1,2 @@
 
 
 
1
+ <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
2
+ <cp:coreProperties xmlns:cp="http://schemas.openxmlformats.org/package/2006/metadata/core-properties" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:dcmitype="http://purl.org/dc/dcmitype/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><dc:creator>Microsoft Office User</dc:creator><cp:lastModifiedBy>laura peligry</cp:lastModifiedBy><cp:revision>2</cp:revision><dcterms:created xsi:type="dcterms:W3CDTF">2023-07-07T10:21:00Z</dcterms:created><dcterms:modified xsi:type="dcterms:W3CDTF">2023-07-07T10:21:00Z</dcterms:modified></cp:coreProperties>
data/examples/corpd/docProps/custom.xml ADDED
@@ -0,0 +1,2 @@
 
 
 
1
+ <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
2
+ <Properties xmlns="http://schemas.openxmlformats.org/officeDocument/2006/custom-properties" xmlns:vt="http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes"><property fmtid="{D5CDD505-2E9C-101B-9397-08002B2CF9AE}" pid="2" name="ContentTypeId"><vt:lpwstr>0x0101000D129E6A83B3234C936C6D85FE6AF210</vt:lpwstr></property></Properties>
data/examples/corpd/word/_rels/document.xml.rels ADDED
@@ -0,0 +1,4 @@
 
 
 
 
 
1
+ <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
2
+ <Relationships xmlns="http://schemas.openxmlformats.org/package/2006/relationships">
3
+ <Relationship Id="rId8" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/webSettings" Target="webSettings.xml"/><Relationship Id="rId13" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/header" Target="header2.xml"/><Relationship Id="rId18" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/header" Target="header4.xml"/><Relationship Id="rId26" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/fontTable" Target="fontTable.xml"/><Relationship Id="rId3" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/customXml" Target="../customXml/item3.xml"/><Relationship Id="rId21" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/footer" Target="footer5.xml"/><Relationship Id="rId7" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/settings" Target="settings.xml"/>
4
+ <Relationship Id="rId12" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/header" Target="header1.xml"/><Relationship Id="rId17" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/footer" Target="footer3.xml"/><Relationship Id="rId25" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/footer" Target="footer7.xml"/><Relationship Id="rId2" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/customXml" Target="../customXml/item2.xml"/><Relationship Id="rId16" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/header" Target="header3.xml"/><Relationship Id="rId20" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/footer" Target="footer4.xml"/><Relationship Id="rId1" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/customXml" Target="../customXml/item1.xml"/><Relationship Id="rId6" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/styles" Target="styles.xml"/><Relationship Id="rId11" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/image" Target="media/image1.jpg"/><Relationship Id="rId24" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/header" Target="header7.xml"/><Relationship Id="rId5" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/numbering" Target="numbering.xml"/><Relationship Id="rId15" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/footer" Target="footer2.xml"/><Relationship Id="rId23" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/footer" Target="footer6.xml"/><Relationship Id="rId10" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/endnotes" Target="endnotes.xml"/><Relationship Id="rId19" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/header" Target="header5.xml"/><Relationship Id="rId4" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/customXml" Target="../customXml/item4.xml"/><Relationship Id="rId9" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/footnotes" Target="footnotes.xml"/><Relationship Id="rId14" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/footer" Target="footer1.xml"/><Relationship Id="rId22" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/header" Target="header6.xml"/><Relationship Id="rId27" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/theme" Target="theme/theme1.xml"/></Relationships>
data/examples/corpd/word/_rels/header1.xml.rels ADDED
@@ -0,0 +1,2 @@
 
 
 
1
+ <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
2
+ <Relationships xmlns="http://schemas.openxmlformats.org/package/2006/relationships"><Relationship Id="rId1" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/image" Target="media/image2.png"/></Relationships>
data/examples/corpd/word/_rels/header2.xml.rels ADDED
@@ -0,0 +1,2 @@
 
 
 
1
+ <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
2
+ <Relationships xmlns="http://schemas.openxmlformats.org/package/2006/relationships"><Relationship Id="rId1" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/image" Target="media/image3.png"/></Relationships>
data/examples/corpd/word/_rels/header3.xml.rels ADDED
@@ -0,0 +1,2 @@
 
 
 
1
+ <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
2
+ <Relationships xmlns="http://schemas.openxmlformats.org/package/2006/relationships"><Relationship Id="rId1" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/image" Target="media/image3.png"/></Relationships>
data/examples/corpd/word/_rels/header4.xml.rels ADDED
@@ -0,0 +1,2 @@
 
 
 
1
+ <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
2
+ <Relationships xmlns="http://schemas.openxmlformats.org/package/2006/relationships"><Relationship Id="rId1" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/image" Target="media/image4.png"/></Relationships>
data/examples/corpd/word/_rels/header5.xml.rels ADDED
@@ -0,0 +1,2 @@
 
 
 
1
+ <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
2
+ <Relationships xmlns="http://schemas.openxmlformats.org/package/2006/relationships"><Relationship Id="rId1" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/image" Target="media/image3.png"/></Relationships>
data/examples/corpd/word/_rels/header6.xml.rels ADDED
@@ -0,0 +1,2 @@
 
 
 
1
+ <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
2
+ <Relationships xmlns="http://schemas.openxmlformats.org/package/2006/relationships"><Relationship Id="rId1" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/image" Target="media/image5.jpeg"/></Relationships>
data/examples/corpd/word/_rels/header7.xml.rels ADDED
@@ -0,0 +1,2 @@
 
 
 
1
+ <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
2
+ <Relationships xmlns="http://schemas.openxmlformats.org/package/2006/relationships"><Relationship Id="rId1" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/image" Target="media/image3.png"/></Relationships>
data/examples/corpd/word/_rels/settings.xml.rels ADDED
@@ -0,0 +1,2 @@
 
 
 
1
+ <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
2
+ <Relationships xmlns="http://schemas.openxmlformats.org/package/2006/relationships"><Relationship Id="rId1" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/attachedTemplate" Target="file:////Users/yvespeligry/HF/FormatDoc/data/templates/Corporate%20Template%20Fr.dotx" TargetMode="External"/></Relationships>
data/examples/corpd/word/document.xml ADDED
@@ -0,0 +1,2 @@
 
 
 
1
+ <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
2
+ <w:document xmlns:wpc="http://schemas.microsoft.com/office/word/2010/wordprocessingCanvas" xmlns:cx="http://schemas.microsoft.com/office/drawing/2014/chartex" xmlns:cx1="http://schemas.microsoft.com/office/drawing/2015/9/8/chartex" xmlns:cx2="http://schemas.microsoft.com/office/drawing/2015/10/21/chartex" xmlns:cx3="http://schemas.microsoft.com/office/drawing/2016/5/9/chartex" xmlns:cx4="http://schemas.microsoft.com/office/drawing/2016/5/10/chartex" xmlns:cx5="http://schemas.microsoft.com/office/drawing/2016/5/11/chartex" xmlns:cx6="http://schemas.microsoft.com/office/drawing/2016/5/12/chartex" xmlns:cx7="http://schemas.microsoft.com/office/drawing/2016/5/13/chartex" xmlns:cx8="http://schemas.microsoft.com/office/drawing/2016/5/14/chartex" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:aink="http://schemas.microsoft.com/office/drawing/2016/ink" xmlns:am3d="http://schemas.microsoft.com/office/drawing/2017/model3d" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:oel="http://schemas.microsoft.com/office/2019/extlst" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:m="http://schemas.openxmlformats.org/officeDocument/2006/math" xmlns:v="urn:schemas-microsoft-com:vml" xmlns:wp14="http://schemas.microsoft.com/office/word/2010/wordprocessingDrawing" xmlns:wp="http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing" xmlns:w10="urn:schemas-microsoft-com:office:word" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml" xmlns:w15="http://schemas.microsoft.com/office/word/2012/wordml" xmlns:w16cex="http://schemas.microsoft.com/office/word/2018/wordml/cex" xmlns:w16cid="http://schemas.microsoft.com/office/word/2016/wordml/cid" xmlns:w16="http://schemas.microsoft.com/office/word/2018/wordml" xmlns:w16sdtdh="http://schemas.microsoft.com/office/word/2020/wordml/sdtdatahash" xmlns:w16se="http://schemas.microsoft.com/office/word/2015/wordml/symex" xmlns:wpg="http://schemas.microsoft.com/office/word/2010/wordprocessingGroup" xmlns:wpi="http://schemas.microsoft.com/office/word/2010/wordprocessingInk" xmlns:wne="http://schemas.microsoft.com/office/word/2006/wordml" xmlns:wps="http://schemas.microsoft.com/office/word/2010/wordprocessingShape" mc:Ignorable="w14 w15 w16se w16cid w16 w16cex w16sdtdh wp14"><w:body><w:tbl><w:tblPr><w:tblpPr w:leftFromText="141" w:rightFromText="141" w:vertAnchor="page" w:tblpY="3001"/><w:tblOverlap w:val="never"/><w:tblW w:w="7597" w:type="dxa"/><w:tblLayout w:type="fixed"/><w:tblCellMar><w:left w:w="0" w:type="dxa"/><w:right w:w="0" w:type="dxa"/></w:tblCellMar><w:tblLook w:val="0000" w:firstRow="0" w:lastRow="0" w:firstColumn="0" w:lastColumn="0" w:noHBand="0" w:noVBand="0"/></w:tblPr><w:tblGrid><w:gridCol w:w="7597"/></w:tblGrid><w:tr w:rsidR="008F20A4" w:rsidRPr="00C335CE" w14:paraId="58F81C33" w14:textId="77777777" w:rsidTr="00C4517C"><w:trPr><w:cantSplit/><w:trHeight w:hRule="exact" w:val="397"/></w:trPr><w:tc><w:tcPr><w:tcW w:w="7597" w:type="dxa"/><w:shd w:val="clear" w:color="auto" w:fill="auto"/></w:tcPr><w:p w14:paraId="18CBAEA8" w14:textId="77777777" w:rsidR="008F20A4" w:rsidRPr="00C335CE" w:rsidRDefault="008F20A4" w:rsidP="00C4517C"><w:pPr><w:pStyle w:val="BodyText"/></w:pPr><w:r w:rsidRPr="00C335CE"><w:t>Réponse à</w:t></w:r></w:p></w:tc></w:tr><w:tr w:rsidR="008F20A4" w:rsidRPr="00C335CE" w14:paraId="6B21A2A2" w14:textId="77777777" w:rsidTr="00C4517C"><w:trPr><w:cantSplit/><w:trHeight w:hRule="exact" w:val="851"/></w:trPr><w:tc><w:tcPr><w:tcW w:w="7597" w:type="dxa"/><w:shd w:val="clear" w:color="auto" w:fill="auto"/><w:vAlign w:val="bottom"/></w:tcPr><w:p w14:paraId="415EC112" w14:textId="77777777" w:rsidR="008F20A4" w:rsidRPr="00C335CE" w:rsidRDefault="008F20A4" w:rsidP="00DE680A"><w:pPr><w:pStyle w:val="CompanyName"/><w:framePr w:hSpace="0" w:wrap="auto" w:vAnchor="margin" w:hAnchor="text" w:xAlign="left" w:yAlign="inline"/><w:suppressOverlap w:val="0"/></w:pPr><w:r w:rsidRPr="00C335CE"><w:t>Nom du Client</w:t></w:r></w:p></w:tc></w:tr><w:tr w:rsidR="008F20A4" w:rsidRPr="00C335CE" w14:paraId="4CECECE0" w14:textId="77777777" w:rsidTr="00C4517C"><w:trPr><w:cantSplit/><w:trHeight w:hRule="exact" w:val="397"/></w:trPr><w:tc><w:tcPr><w:tcW w:w="7597" w:type="dxa"/><w:shd w:val="clear" w:color="auto" w:fill="auto"/></w:tcPr><w:p w14:paraId="04690B8E" w14:textId="77777777" w:rsidR="008F20A4" w:rsidRPr="00C335CE" w:rsidRDefault="008F20A4" w:rsidP="00C4517C"><w:pPr><w:pStyle w:val="BodyText"/></w:pPr><w:proofErr w:type="gramStart"/><w:r w:rsidRPr="00C335CE"><w:t>pour</w:t></w:r><w:proofErr w:type="gramEnd"/><w:r w:rsidRPr="00C335CE"><w:t xml:space="preserve"> le</w:t></w:r></w:p></w:tc></w:tr><w:tr w:rsidR="008F20A4" w:rsidRPr="00C335CE" w14:paraId="10E37A3B" w14:textId="77777777" w:rsidTr="00C4517C"><w:trPr><w:cantSplit/><w:trHeight w:hRule="exact" w:val="1871"/></w:trPr><w:tc><w:tcPr><w:tcW w:w="7597" w:type="dxa"/><w:shd w:val="clear" w:color="auto" w:fill="auto"/><w:vAlign w:val="bottom"/></w:tcPr><w:p w14:paraId="3848203F" w14:textId="77777777" w:rsidR="008F20A4" w:rsidRPr="00C335CE" w:rsidRDefault="008F20A4" w:rsidP="00011EBE"><w:pPr><w:pStyle w:val="ProjectNumber"/><w:framePr w:hSpace="0" w:wrap="auto" w:hAnchor="text" w:xAlign="left" w:yAlign="inline"/></w:pPr><w:r w:rsidRPr="00C335CE"><w:t>Style pour cette page seulement (non recopié en en-tête)</w:t></w:r></w:p><w:p w14:paraId="4209E6AE" w14:textId="77777777" w:rsidR="008F20A4" w:rsidRPr="00C335CE" w:rsidRDefault="008F20A4" w:rsidP="00011EBE"><w:pPr><w:pStyle w:val="ProjectName"/><w:framePr w:hSpace="0" w:wrap="auto" w:vAnchor="margin" w:hAnchor="text" w:xAlign="left" w:yAlign="inline"/><w:suppressOverlap w:val="0"/></w:pPr><w:r w:rsidRPr="00C335CE"><w:t>Nom du projet</w:t></w:r></w:p></w:tc></w:tr><w:tr w:rsidR="008F20A4" w:rsidRPr="00C335CE" w14:paraId="5CF53648" w14:textId="77777777" w:rsidTr="00C4517C"><w:trPr><w:cantSplit/><w:trHeight w:hRule="exact" w:val="397"/></w:trPr><w:tc><w:tcPr><w:tcW w:w="7597" w:type="dxa"/><w:shd w:val="clear" w:color="auto" w:fill="auto"/></w:tcPr><w:p w14:paraId="01D4D4D2" w14:textId="77777777" w:rsidR="008F20A4" w:rsidRPr="00C335CE" w:rsidRDefault="008F20A4" w:rsidP="00C4517C"><w:pPr><w:pStyle w:val="BodyText"/></w:pPr><w:r w:rsidRPr="00C335CE"><w:t>Date de remise</w:t></w:r></w:p></w:tc></w:tr><w:tr w:rsidR="008F20A4" w:rsidRPr="00C335CE" w14:paraId="47C4D541" w14:textId="77777777" w:rsidTr="00C4517C"><w:trPr><w:cantSplit/><w:trHeight w:hRule="exact" w:val="397"/></w:trPr><w:tc><w:tcPr><w:tcW w:w="7597" w:type="dxa"/><w:shd w:val="clear" w:color="auto" w:fill="auto"/><w:vAlign w:val="bottom"/></w:tcPr><w:p w14:paraId="463058A0" w14:textId="77777777" w:rsidR="008F20A4" w:rsidRPr="00C335CE" w:rsidRDefault="008F20A4" w:rsidP="00C4517C"><w:pPr><w:pStyle w:val="DateDue"/><w:framePr w:hSpace="0" w:wrap="auto" w:vAnchor="margin" w:hAnchor="text" w:xAlign="left" w:yAlign="inline"/><w:suppressOverlap w:val="0"/></w:pPr><w:r w:rsidRPr="00C335CE"><w:t>JJ/MM/AAAA</w:t></w:r></w:p></w:tc></w:tr><w:tr w:rsidR="008F20A4" w:rsidRPr="00C335CE" w14:paraId="6452573F" w14:textId="77777777" w:rsidTr="00C4517C"><w:trPr><w:cantSplit/><w:trHeight w:hRule="exact" w:val="340"/></w:trPr><w:tc><w:tcPr><w:tcW w:w="7597" w:type="dxa"/><w:shd w:val="clear" w:color="auto" w:fill="auto"/><w:vAlign w:val="bottom"/></w:tcPr><w:p w14:paraId="6536045D" w14:textId="77777777" w:rsidR="008F20A4" w:rsidRPr="00C335CE" w:rsidRDefault="008F20A4" w:rsidP="00C4517C"><w:pPr><w:pStyle w:val="Classification"/><w:framePr w:hSpace="0" w:wrap="auto" w:vAnchor="margin" w:hAnchor="text" w:xAlign="left" w:yAlign="inline"/><w:suppressOverlap w:val="0"/></w:pPr><w:r w:rsidRPr="00C335CE"><w:rPr><w:sz w:val="18"/></w:rPr><w:t>Strictement confidentiel</w:t></w:r></w:p></w:tc></w:tr></w:tbl><w:p w14:paraId="45EA0891" w14:textId="77777777" w:rsidR="007132BD" w:rsidRPr="00C335CE" w:rsidRDefault="005A01BC" w:rsidP="00891B8F"><w:pPr><w:pStyle w:val="documentControl"/></w:pPr><w:r w:rsidRPr="00C335CE"><w:rPr><w:noProof/><w:lang w:eastAsia="fr-FR"/></w:rPr><w:drawing><wp:anchor distT="0" distB="0" distL="114300" distR="114300" simplePos="0" relativeHeight="251659264" behindDoc="1" locked="0" layoutInCell="0" allowOverlap="0" wp14:anchorId="4A040FE9" wp14:editId="18E34965"><wp:simplePos x="0" y="0"/><wp:positionH relativeFrom="margin"><wp:align>right</wp:align></wp:positionH><wp:positionV relativeFrom="margin"><wp:align>bottom</wp:align></wp:positionV><wp:extent cx="6768000" cy="6786000"/><wp:effectExtent l="0" t="0" r="0" b="0"/><wp:wrapNone/><wp:docPr id="11" name="Image 11"/><wp:cNvGraphicFramePr><a:graphicFrameLocks xmlns:a="http://schemas.openxmlformats.org/drawingml/2006/main" noChangeAspect="1"/></wp:cNvGraphicFramePr><a:graphic xmlns:a="http://schemas.openxmlformats.org/drawingml/2006/main"><a:graphicData uri="http://schemas.openxmlformats.org/drawingml/2006/picture"><pic:pic xmlns:pic="http://schemas.openxmlformats.org/drawingml/2006/picture"><pic:nvPicPr><pic:cNvPr id="0" name="Picture 2" descr="Page garde offre"/><pic:cNvPicPr><a:picLocks noChangeAspect="1" noChangeArrowheads="1"/></pic:cNvPicPr></pic:nvPicPr><pic:blipFill><a:blip r:embed="rId11"><a:extLst><a:ext uri="{28A0092B-C50C-407E-A947-70E740481C1C}"><a14:useLocalDpi xmlns:a14="http://schemas.microsoft.com/office/drawing/2010/main" val="0"/></a:ext></a:extLst></a:blip><a:stretch><a:fillRect/></a:stretch></pic:blipFill><pic:spPr bwMode="auto"><a:xfrm><a:off x="0" y="0"/><a:ext cx="6768000" cy="6786000"/></a:xfrm><a:prstGeom prst="rect"><a:avLst/></a:prstGeom><a:noFill/><a:ln><a:noFill/></a:ln></pic:spPr></pic:pic></a:graphicData></a:graphic><wp14:sizeRelH relativeFrom="page"><wp14:pctWidth>0</wp14:pctWidth></wp14:sizeRelH><wp14:sizeRelV relativeFrom="page"><wp14:pctHeight>0</wp14:pctHeight></wp14:sizeRelV></wp:anchor></w:drawing></w:r><w:r w:rsidRPr="00C335CE"><w:br w:type="page"/></w:r><w:proofErr w:type="gramStart"/><w:r w:rsidR="00B9348B" w:rsidRPr="00C335CE"><w:lastRenderedPageBreak/><w:t>clause</w:t></w:r><w:proofErr w:type="gramEnd"/><w:r w:rsidR="00B9348B" w:rsidRPr="00C335CE"><w:t xml:space="preserve"> de confidentialité</w:t></w:r></w:p><w:p w14:paraId="3E57861B" w14:textId="77777777" w:rsidR="007132BD" w:rsidRPr="00C335CE" w:rsidRDefault="00115837" w:rsidP="00891B8F"><w:pPr><w:pStyle w:val="ProprietaryNoticeText"/><w:rPr><w:color w:val="595959"/></w:rPr></w:pPr><w:r w:rsidRPr="00C335CE"><w:rPr><w:color w:val="595959"/></w:rPr><w:t xml:space="preserve">Toute </w:t></w:r><w:r w:rsidR="007132BD" w:rsidRPr="00C335CE"><w:rPr><w:color w:val="595959"/></w:rPr><w:t xml:space="preserve">information </w:t></w:r><w:r w:rsidRPr="00C335CE"><w:rPr><w:color w:val="595959"/></w:rPr><w:t xml:space="preserve">contenue dans ce </w:t></w:r><w:r w:rsidR="007132BD" w:rsidRPr="00C335CE"><w:rPr><w:color w:val="595959"/></w:rPr><w:t xml:space="preserve">document </w:t></w:r><w:r w:rsidRPr="00C335CE"><w:rPr><w:color w:val="595959"/></w:rPr><w:t xml:space="preserve">strictement confidentiel est fournie à </w:t></w:r><w:r w:rsidR="007132BD" w:rsidRPr="00C335CE"><w:rPr><w:color w:val="595959"/></w:rPr><w:fldChar w:fldCharType="begin"/></w:r><w:r w:rsidR="007132BD" w:rsidRPr="00C335CE"><w:rPr><w:color w:val="595959"/></w:rPr><w:instrText xml:space="preserve"> STYLEREF .CompanyName \* MERGEFORMAT </w:instrText></w:r><w:r w:rsidR="007132BD" w:rsidRPr="00C335CE"><w:rPr><w:color w:val="595959"/></w:rPr><w:fldChar w:fldCharType="separate"/></w:r><w:r w:rsidR="000C19BE"><w:rPr><w:noProof/><w:color w:val="595959"/></w:rPr><w:t>Nom du Client</w:t></w:r><w:r w:rsidR="007132BD" w:rsidRPr="00C335CE"><w:rPr><w:color w:val="595959"/></w:rPr><w:fldChar w:fldCharType="end"/></w:r><w:r w:rsidR="007132BD" w:rsidRPr="00C335CE"><w:rPr><w:color w:val="595959"/></w:rPr><w:t xml:space="preserve"> </w:t></w:r><w:r w:rsidRPr="00C335CE"><w:rPr><w:color w:val="595959"/></w:rPr><w:t>dans le seul but de répondre à ses demandes et ne peut être utilisé</w:t></w:r><w:r w:rsidR="007A159B" w:rsidRPr="00C335CE"><w:rPr><w:color w:val="595959"/></w:rPr><w:t>e</w:t></w:r><w:r w:rsidRPr="00C335CE"><w:rPr><w:color w:val="595959"/></w:rPr><w:t xml:space="preserve"> à d’autres fins.</w:t></w:r></w:p><w:p w14:paraId="3EC09512" w14:textId="77777777" w:rsidR="007132BD" w:rsidRPr="00C335CE" w:rsidRDefault="007132BD" w:rsidP="007132BD"><w:pPr><w:pStyle w:val="ProprietaryNoticeText"/><w:rPr><w:color w:val="595959"/></w:rPr></w:pPr><w:r w:rsidRPr="00C335CE"><w:rPr><w:color w:val="595959"/></w:rPr><w:fldChar w:fldCharType="begin"/></w:r><w:r w:rsidRPr="00C335CE"><w:rPr><w:color w:val="595959"/></w:rPr><w:instrText xml:space="preserve"> STYLEREF .CompanyName \* MERGEFORMAT </w:instrText></w:r><w:r w:rsidRPr="00C335CE"><w:rPr><w:color w:val="595959"/></w:rPr><w:fldChar w:fldCharType="separate"/></w:r><w:r w:rsidR="000C19BE"><w:rPr><w:noProof/><w:color w:val="595959"/></w:rPr><w:t>Nom du Client</w:t></w:r><w:r w:rsidRPr="00C335CE"><w:rPr><w:color w:val="595959"/></w:rPr><w:fldChar w:fldCharType="end"/></w:r><w:r w:rsidRPr="00C335CE"><w:rPr><w:color w:val="595959"/></w:rPr><w:t xml:space="preserve"> </w:t></w:r><w:r w:rsidR="00115837" w:rsidRPr="00C335CE"><w:rPr><w:color w:val="595959"/></w:rPr><w:t>s’engage à ne pas publier ni faire connaître tout ou partie de ces informations à quelque tierce partie que ce soit sans l’autorisation préalable d’</w:t></w:r><w:r w:rsidR="00712552" w:rsidRPr="00C335CE"><w:rPr><w:color w:val="595959"/></w:rPr><w:t>Orange</w:t></w:r><w:r w:rsidRPr="00C335CE"><w:rPr><w:color w:val="595959"/></w:rPr><w:t>.</w:t></w:r></w:p><w:p w14:paraId="7D23B684" w14:textId="77777777" w:rsidR="007132BD" w:rsidRPr="00C335CE" w:rsidRDefault="007132BD" w:rsidP="007132BD"><w:pPr><w:pStyle w:val="ProprietaryNoticeText"/><w:rPr><w:color w:val="595959"/></w:rPr></w:pPr><w:r w:rsidRPr="00C335CE"><w:rPr><w:color w:val="595959"/></w:rPr><w:t>© copyright 201</w:t></w:r><w:r w:rsidR="00DA1A27"><w:rPr><w:color w:val="595959"/></w:rPr><w:t>8</w:t></w:r></w:p><w:p w14:paraId="5E1DE421" w14:textId="77777777" w:rsidR="007132BD" w:rsidRPr="00C335CE" w:rsidRDefault="00115837" w:rsidP="00C21D48"><w:pPr><w:pStyle w:val="ProprietaryNoticeText"/><w:spacing w:after="2800"/><w:rPr><w:color w:val="595959"/></w:rPr></w:pPr><w:r w:rsidRPr="00C335CE"><w:rPr><w:color w:val="595959"/></w:rPr><w:t>Tous droits réservés</w:t></w:r></w:p><w:p w14:paraId="3BC5C1B2" w14:textId="77777777" w:rsidR="00AF69C7" w:rsidRPr="00C335CE" w:rsidRDefault="00AF69C7" w:rsidP="00DA1A27"><w:pPr><w:pStyle w:val="PointsContact"/><w:spacing w:before="6000"/></w:pPr><w:proofErr w:type="gramStart"/><w:r w:rsidRPr="00C335CE"><w:t>votre</w:t></w:r><w:proofErr w:type="gramEnd"/><w:r w:rsidRPr="00C335CE"><w:t xml:space="preserve"> contact</w:t></w:r></w:p><w:tbl><w:tblPr><w:tblW w:w="8505" w:type="dxa"/><w:tblInd w:w="85" w:type="dxa"/><w:tblBorders><w:top w:val="single" w:sz="4" w:space="0" w:color="808080"/><w:left w:val="single" w:sz="4" w:space="0" w:color="808080"/><w:bottom w:val="single" w:sz="4" w:space="0" w:color="808080"/><w:right w:val="single" w:sz="4" w:space="0" w:color="808080"/><w:insideH w:val="single" w:sz="4" w:space="0" w:color="808080"/><w:insideV w:val="single" w:sz="4" w:space="0" w:color="808080"/></w:tblBorders><w:tblLayout w:type="fixed"/><w:tblCellMar><w:left w:w="85" w:type="dxa"/><w:right w:w="85" w:type="dxa"/></w:tblCellMar><w:tblLook w:val="0000" w:firstRow="0" w:lastRow="0" w:firstColumn="0" w:lastColumn="0" w:noHBand="0" w:noVBand="0"/></w:tblPr><w:tblGrid><w:gridCol w:w="1095"/><w:gridCol w:w="3264"/><w:gridCol w:w="900"/><w:gridCol w:w="3246"/></w:tblGrid><w:tr w:rsidR="00AF69C7" w:rsidRPr="00C335CE" w14:paraId="64609664" w14:textId="77777777" w:rsidTr="009564E8"><w:trPr><w:cantSplit/></w:trPr><w:tc><w:tcPr><w:tcW w:w="1095" w:type="dxa"/><w:vAlign w:val="center"/></w:tcPr><w:p w14:paraId="2CA49F3C" w14:textId="77777777" w:rsidR="00AF69C7" w:rsidRPr="00C335CE" w:rsidRDefault="00AF69C7" w:rsidP="00FF5DD0"><w:pPr><w:pStyle w:val="CoordonnesContacts"/></w:pPr><w:r w:rsidRPr="00C335CE"><w:t>Nom</w:t></w:r><w:r w:rsidR="00FF5DD0" w:rsidRPr="00C335CE"><w:t xml:space="preserve"> </w:t></w:r><w:r w:rsidRPr="00C335CE"><w:t>:</w:t></w:r></w:p></w:tc><w:tc><w:tcPr><w:tcW w:w="7410" w:type="dxa"/><w:gridSpan w:val="3"/><w:vAlign w:val="center"/></w:tcPr><w:p w14:paraId="427D84E8" w14:textId="77777777" w:rsidR="00AF69C7" w:rsidRPr="00C335CE" w:rsidRDefault="00AF69C7" w:rsidP="00AF69C7"><w:pPr><w:pStyle w:val="CoordonnesContacts"/></w:pPr></w:p></w:tc></w:tr><w:tr w:rsidR="00AF69C7" w:rsidRPr="00C335CE" w14:paraId="04E8E560" w14:textId="77777777" w:rsidTr="009564E8"><w:tc><w:tcPr><w:tcW w:w="1095" w:type="dxa"/><w:vAlign w:val="center"/></w:tcPr><w:p w14:paraId="6876598F" w14:textId="77777777" w:rsidR="00AF69C7" w:rsidRPr="00C335CE" w:rsidRDefault="00AF69C7" w:rsidP="00FF5DD0"><w:pPr><w:pStyle w:val="CoordonnesContacts"/></w:pPr><w:r w:rsidRPr="00C335CE"><w:t>Titre</w:t></w:r><w:r w:rsidR="00FF5DD0" w:rsidRPr="00C335CE"><w:t xml:space="preserve"> </w:t></w:r><w:r w:rsidRPr="00C335CE"><w:t>:</w:t></w:r></w:p></w:tc><w:tc><w:tcPr><w:tcW w:w="3264" w:type="dxa"/><w:vAlign w:val="center"/></w:tcPr><w:p w14:paraId="1F56BDFC" w14:textId="77777777" w:rsidR="00AF69C7" w:rsidRPr="00C335CE" w:rsidRDefault="00AF69C7" w:rsidP="00AF69C7"><w:pPr><w:pStyle w:val="CoordonnesContacts"/></w:pPr></w:p></w:tc><w:tc><w:tcPr><w:tcW w:w="900" w:type="dxa"/><w:vAlign w:val="center"/></w:tcPr><w:p w14:paraId="5DC329C3" w14:textId="77777777" w:rsidR="00AF69C7" w:rsidRPr="00C335CE" w:rsidRDefault="00FF5DD0" w:rsidP="00AF69C7"><w:pPr><w:pStyle w:val="CoordonnesContacts"/></w:pPr><w:proofErr w:type="gramStart"/><w:r w:rsidRPr="00C335CE"><w:t>Email</w:t></w:r><w:proofErr w:type="gramEnd"/><w:r w:rsidRPr="00C335CE"><w:t xml:space="preserve"> </w:t></w:r><w:r w:rsidR="00AF69C7" w:rsidRPr="00C335CE"><w:t>:</w:t></w:r></w:p></w:tc><w:tc><w:tcPr><w:tcW w:w="3246" w:type="dxa"/><w:vAlign w:val="center"/></w:tcPr><w:p w14:paraId="2326070B" w14:textId="77777777" w:rsidR="00AF69C7" w:rsidRPr="00C335CE" w:rsidRDefault="00AF69C7" w:rsidP="00AF69C7"><w:pPr><w:pStyle w:val="CoordonnesContacts"/></w:pPr><w:r w:rsidRPr="00C335CE"><w:t>@orange.com</w:t></w:r></w:p></w:tc></w:tr><w:tr w:rsidR="00AF69C7" w:rsidRPr="00C335CE" w14:paraId="470FE1CB" w14:textId="77777777" w:rsidTr="009564E8"><w:tc><w:tcPr><w:tcW w:w="1095" w:type="dxa"/><w:vAlign w:val="center"/></w:tcPr><w:p w14:paraId="75B44613" w14:textId="77777777" w:rsidR="00AF69C7" w:rsidRPr="00C335CE" w:rsidRDefault="00AF69C7" w:rsidP="00FF5DD0"><w:pPr><w:pStyle w:val="CoordonnesContacts"/></w:pPr><w:r w:rsidRPr="00C335CE"><w:t>Tél</w:t></w:r><w:r w:rsidR="00FF5DD0" w:rsidRPr="00C335CE"><w:t xml:space="preserve"> </w:t></w:r><w:r w:rsidRPr="00C335CE"><w:t>:</w:t></w:r></w:p></w:tc><w:tc><w:tcPr><w:tcW w:w="3264" w:type="dxa"/><w:vAlign w:val="center"/></w:tcPr><w:p w14:paraId="1FF13B91" w14:textId="77777777" w:rsidR="00AF69C7" w:rsidRPr="00C335CE" w:rsidRDefault="00AF69C7" w:rsidP="00AF69C7"><w:pPr><w:pStyle w:val="CoordonnesContacts"/></w:pPr></w:p></w:tc><w:tc><w:tcPr><w:tcW w:w="900" w:type="dxa"/><w:vAlign w:val="center"/></w:tcPr><w:p w14:paraId="0486FC7A" w14:textId="77777777" w:rsidR="00AF69C7" w:rsidRPr="00C335CE" w:rsidRDefault="00AF69C7" w:rsidP="00FF5DD0"><w:pPr><w:pStyle w:val="CoordonnesContacts"/></w:pPr><w:r w:rsidRPr="00C335CE"><w:t>Mobile</w:t></w:r><w:r w:rsidR="00FF5DD0" w:rsidRPr="00C335CE"><w:t xml:space="preserve"> </w:t></w:r><w:r w:rsidRPr="00C335CE"><w:t>:</w:t></w:r></w:p></w:tc><w:tc><w:tcPr><w:tcW w:w="3246" w:type="dxa"/><w:vAlign w:val="center"/></w:tcPr><w:p w14:paraId="49907CC8" w14:textId="77777777" w:rsidR="00AF69C7" w:rsidRPr="00C335CE" w:rsidRDefault="00AF69C7" w:rsidP="00AF69C7"><w:pPr><w:pStyle w:val="CoordonnesContacts"/></w:pPr></w:p></w:tc></w:tr><w:tr w:rsidR="00AF69C7" w:rsidRPr="00C335CE" w14:paraId="071A9502" w14:textId="77777777" w:rsidTr="009564E8"><w:trPr><w:cantSplit/></w:trPr><w:tc><w:tcPr><w:tcW w:w="1095" w:type="dxa"/><w:vAlign w:val="center"/></w:tcPr><w:p w14:paraId="4755FA1E" w14:textId="77777777" w:rsidR="00AF69C7" w:rsidRPr="00C335CE" w:rsidRDefault="00D221F1" w:rsidP="00FF5DD0"><w:pPr><w:pStyle w:val="CoordonnesContacts"/></w:pPr><w:r w:rsidRPr="00C335CE"><w:t>A</w:t></w:r><w:r w:rsidR="00AF69C7" w:rsidRPr="00C335CE"><w:t>dresse</w:t></w:r><w:r w:rsidR="00FF5DD0" w:rsidRPr="00C335CE"><w:t xml:space="preserve"> </w:t></w:r><w:r w:rsidR="00AF69C7" w:rsidRPr="00C335CE"><w:t>:</w:t></w:r></w:p></w:tc><w:tc><w:tcPr><w:tcW w:w="7410" w:type="dxa"/><w:gridSpan w:val="3"/><w:vAlign w:val="center"/></w:tcPr><w:p w14:paraId="486934C7" w14:textId="77777777" w:rsidR="00AF69C7" w:rsidRPr="00C335CE" w:rsidRDefault="00AF69C7" w:rsidP="00AF69C7"><w:pPr><w:pStyle w:val="CoordonnesContacts"/></w:pPr></w:p></w:tc></w:tr><w:tr w:rsidR="00AF69C7" w:rsidRPr="00C335CE" w14:paraId="74B2F971" w14:textId="77777777" w:rsidTr="009564E8"><w:trPr><w:cantSplit/></w:trPr><w:tc><w:tcPr><w:tcW w:w="1095" w:type="dxa"/><w:vAlign w:val="center"/></w:tcPr><w:p w14:paraId="21D3119F" w14:textId="77777777" w:rsidR="00AF69C7" w:rsidRPr="00C335CE" w:rsidRDefault="00AF69C7" w:rsidP="00FF5DD0"><w:pPr><w:pStyle w:val="CoordonnesContacts"/></w:pPr><w:r w:rsidRPr="00C335CE"><w:t>Site Web</w:t></w:r><w:r w:rsidR="00FF5DD0" w:rsidRPr="00C335CE"><w:t xml:space="preserve"> </w:t></w:r><w:r w:rsidRPr="00C335CE"><w:t>:</w:t></w:r></w:p></w:tc><w:tc><w:tcPr><w:tcW w:w="7410" w:type="dxa"/><w:gridSpan w:val="3"/><w:vAlign w:val="center"/></w:tcPr><w:p w14:paraId="3957B477" w14:textId="77777777" w:rsidR="00AF69C7" w:rsidRPr="00C335CE" w:rsidRDefault="00C168A5" w:rsidP="00C168A5"><w:pPr><w:pStyle w:val="CoordonnesContacts"/></w:pPr><w:r w:rsidRPr="00C335CE"><w:t>http://www.</w:t></w:r><w:r w:rsidR="00AF69C7" w:rsidRPr="00C335CE"><w:t>orange-business.com</w:t></w:r></w:p></w:tc></w:tr></w:tbl><w:p w14:paraId="11185772" w14:textId="77777777" w:rsidR="008A617E" w:rsidRPr="00C335CE" w:rsidRDefault="008A617E" w:rsidP="008A617E"><w:pPr><w:pStyle w:val="BodyText"/></w:pPr></w:p><w:p w14:paraId="6DDF5966" w14:textId="77777777" w:rsidR="007132BD" w:rsidRPr="00C335CE" w:rsidRDefault="007132BD" w:rsidP="008A617E"><w:pPr><w:pStyle w:val="BodyText"/><w:sectPr w:rsidR="007132BD" w:rsidRPr="00C335CE" w:rsidSect="002F63F5"><w:headerReference w:type="even" r:id="rId12"/><w:headerReference w:type="default" r:id="rId13"/><w:footerReference w:type="even" r:id="rId14"/><w:footerReference w:type="default" r:id="rId15"/><w:headerReference w:type="first" r:id="rId16"/><w:footerReference w:type="first" r:id="rId17"/><w:pgSz w:w="11906" w:h="16838" w:code="9"/><w:pgMar w:top="720" w:right="720" w:bottom="720" w:left="720" w:header="0" w:footer="0" w:gutter="0"/><w:cols w:space="708"/><w:titlePg/><w:docGrid w:linePitch="360"/></w:sectPr></w:pPr></w:p><w:p w14:paraId="2C75859B" w14:textId="77777777" w:rsidR="007132BD" w:rsidRPr="00C335CE" w:rsidRDefault="007132BD" w:rsidP="00C168A5"><w:pPr><w:pStyle w:val="STitre1"/></w:pPr><w:r w:rsidRPr="00C335CE"><w:lastRenderedPageBreak/><w:t xml:space="preserve">Table </w:t></w:r><w:r w:rsidR="00FA453C" w:rsidRPr="00C335CE"><w:t>des</w:t></w:r><w:r w:rsidRPr="00C335CE"><w:t xml:space="preserve"> </w:t></w:r><w:r w:rsidR="00FA453C" w:rsidRPr="00C335CE"><w:t>matières</w:t></w:r></w:p><w:p w14:paraId="33936659" w14:textId="77777777" w:rsidR="007132BD" w:rsidRPr="00C335CE" w:rsidRDefault="00000000" w:rsidP="00F16138"><w:pPr><w:pStyle w:val="TM1"/></w:pPr><w:r><w:fldChar w:fldCharType="begin"/></w:r><w:r><w:instrText xml:space="preserve"> TOC \o "1-3" \h \z \u </w:instrText></w:r><w:r><w:fldChar w:fldCharType="separate"/></w:r><w:r w:rsidR="001F5250" w:rsidRPr="00C335CE"><w:rPr><w:noProof/></w:rPr><w:t xml:space="preserve">Aucune entrée de table des </w:t></w:r><w:r w:rsidR="001F5250" w:rsidRPr="00C335CE"><w:t>matières</w:t></w:r><w:r w:rsidR="001F5250" w:rsidRPr="00C335CE"><w:rPr><w:noProof/></w:rPr><w:t xml:space="preserve"> n'a été trouvée.</w:t></w:r><w:r><w:rPr><w:noProof/></w:rPr><w:fldChar w:fldCharType="end"/></w:r></w:p><w:p w14:paraId="38CA3268" w14:textId="77777777" w:rsidR="009A37C6" w:rsidRPr="00C335CE" w:rsidRDefault="009A37C6" w:rsidP="0048016E"><w:pPr><w:pStyle w:val="STitre1"/></w:pPr><w:r w:rsidRPr="00C335CE"><w:t>Liste des tableaux</w:t></w:r></w:p><w:p w14:paraId="3FFCA3F6" w14:textId="77777777" w:rsidR="009A37C6" w:rsidRPr="00C335CE" w:rsidRDefault="009A37C6" w:rsidP="002F4EEA"><w:pPr><w:pStyle w:val="Tabledesillustrations"/><w:rPr><w:lang w:val="fr-FR"/></w:rPr></w:pPr><w:r w:rsidRPr="00C335CE"><w:rPr><w:lang w:val="fr-FR"/></w:rPr><w:fldChar w:fldCharType="begin"/></w:r><w:r w:rsidRPr="00C335CE"><w:rPr><w:lang w:val="fr-FR"/></w:rPr><w:instrText xml:space="preserve"> TOC \h \z \c "Tableau" </w:instrText></w:r><w:r w:rsidRPr="00C335CE"><w:rPr><w:lang w:val="fr-FR"/></w:rPr><w:fldChar w:fldCharType="separate"/></w:r><w:r w:rsidR="002F4EEA" w:rsidRPr="00C335CE"><w:rPr><w:lang w:val="fr-FR"/></w:rPr><w:t>Aucune entrée de table d'illustration n'a été trouvée.</w:t></w:r><w:r w:rsidRPr="00C335CE"><w:rPr><w:lang w:val="fr-FR"/></w:rPr><w:fldChar w:fldCharType="end"/></w:r></w:p><w:p w14:paraId="5A2AE896" w14:textId="77777777" w:rsidR="009A37C6" w:rsidRPr="00C335CE" w:rsidRDefault="009A37C6" w:rsidP="0048016E"><w:pPr><w:pStyle w:val="STitre1"/></w:pPr><w:r w:rsidRPr="00C335CE"><w:t>Liste des figures</w:t></w:r></w:p><w:p w14:paraId="3B29A2A0" w14:textId="77777777" w:rsidR="009A37C6" w:rsidRPr="00C335CE" w:rsidRDefault="009A37C6" w:rsidP="002F4EEA"><w:pPr><w:pStyle w:val="Tabledesillustrations"/><w:rPr><w:lang w:val="fr-FR"/></w:rPr></w:pPr><w:r w:rsidRPr="00C335CE"><w:rPr><w:lang w:val="fr-FR"/></w:rPr><w:fldChar w:fldCharType="begin"/></w:r><w:r w:rsidRPr="00C335CE"><w:rPr><w:lang w:val="fr-FR"/></w:rPr><w:instrText xml:space="preserve"> TOC \h \z \c "Figure" </w:instrText></w:r><w:r w:rsidRPr="00C335CE"><w:rPr><w:lang w:val="fr-FR"/></w:rPr><w:fldChar w:fldCharType="separate"/></w:r><w:r w:rsidR="001F5250" w:rsidRPr="00C335CE"><w:rPr><w:lang w:val="fr-FR"/></w:rPr><w:t>Aucune entrée de table d'illustration n'a été trouvée.</w:t></w:r><w:r w:rsidRPr="00C335CE"><w:rPr><w:lang w:val="fr-FR"/></w:rPr><w:fldChar w:fldCharType="end"/></w:r></w:p><w:p w14:paraId="4750AFB0" w14:textId="77777777" w:rsidR="00F36D8E" w:rsidRPr="00C335CE" w:rsidRDefault="00F36D8E" w:rsidP="00F36D8E"/><w:p w14:paraId="7D70CB6D" w14:textId="77777777" w:rsidR="000836AE" w:rsidRPr="00C335CE" w:rsidRDefault="000836AE" w:rsidP="000836AE"><w:pPr><w:pStyle w:val="BodyText"/><w:sectPr w:rsidR="000836AE" w:rsidRPr="00C335CE" w:rsidSect="005302A5"><w:headerReference w:type="even" r:id="rId18"/><w:headerReference w:type="default" r:id="rId19"/><w:footerReference w:type="even" r:id="rId20"/><w:footerReference w:type="default" r:id="rId21"/><w:headerReference w:type="first" r:id="rId22"/><w:footerReference w:type="first" r:id="rId23"/><w:pgSz w:w="11906" w:h="16838" w:code="9"/><w:pgMar w:top="720" w:right="720" w:bottom="720" w:left="720" w:header="0" w:footer="0" w:gutter="0"/><w:cols w:space="708"/><w:docGrid w:linePitch="360"/></w:sectPr></w:pPr></w:p><w:p w14:paraId="6B39024A" w14:textId="77777777" w:rsidR="001E4CDD" w:rsidRPr="00ED1502" w:rsidRDefault="001E4CDD" w:rsidP="00ED1502"><w:pPr><w:pStyle w:val="BodyText"/></w:pPr></w:p><w:p w14:paraId="0519CE18" w14:textId="3F897D6A" w:rsidR="0048016E" w:rsidRDefault="00ED038F" w:rsidP="00ED038F"><w:pPr><w:pStyle w:val="Titre10"/><w:rPr><w:rStyle w:val="TexteOrange"/></w:rPr></w:pPr><w:proofErr w:type="spellStart"/><w:r><w:rPr><w:rStyle w:val="TexteOrange"/></w:rPr><w:lastRenderedPageBreak/><w:t>Ccc</w:t></w:r><w:proofErr w:type="spellEnd"/></w:p><w:p w14:paraId="3BC69584" w14:textId="48227D67" w:rsidR="00ED038F" w:rsidRDefault="00ED038F" w:rsidP="00ED038F"><w:pPr><w:pStyle w:val="Titre20"/></w:pPr><w:proofErr w:type="spellStart"/><w:r><w:t>Qsdd</w:t></w:r><w:proofErr w:type="spellEnd"/></w:p><w:p w14:paraId="747EE9A7" w14:textId="5DFB2DB0" w:rsidR="00ED038F" w:rsidRDefault="00947006" w:rsidP="00845F4B"><w:pPr><w:pStyle w:val="BodyText"/><w:rPr><w:rStyle w:val="TexteOrange"/></w:rPr></w:pPr><w:proofErr w:type="spellStart"/><w:r w:rsidRPr="00845F4B"><w:rPr><w:rStyle w:val="TexteOrange"/></w:rPr><w:t>Dsbvbvn</w:t></w:r><w:proofErr w:type="spellEnd"/></w:p><w:p w14:paraId="21497A0D" w14:textId="77777777" w:rsidR="00947006" w:rsidRPr="00845F4B" w:rsidRDefault="00947006" w:rsidP="00845F4B"><w:pPr><w:pStyle w:val="BodyText"/><w:rPr><w:rStyle w:val="TexteOrange"/></w:rPr></w:pPr></w:p><w:p w14:paraId="383106B5" w14:textId="5ACDB52E" w:rsidR="00947006" w:rsidRDefault="00947006" w:rsidP="00947006"><w:pPr><w:pStyle w:val="Bullet1"/><w:rPr><w:rStyle w:val="TexteOrange"/></w:rPr></w:pPr><w:proofErr w:type="spellStart"/><w:r><w:rPr><w:rStyle w:val="TexteOrange"/></w:rPr><w:t>Fezjfz</w:t></w:r><w:proofErr w:type="spellEnd"/></w:p><w:p w14:paraId="2C331B80" w14:textId="3A7D6E23" w:rsidR="00947006" w:rsidRDefault="00947006" w:rsidP="00947006"><w:pPr><w:pStyle w:val="Bullet1"/><w:rPr><w:rStyle w:val="TexteOrange"/></w:rPr></w:pPr><w:proofErr w:type="spellStart"/><w:r><w:rPr><w:rStyle w:val="TexteOrange"/></w:rPr><w:t>Jzekkfjk</w:t></w:r><w:proofErr w:type="spellEnd"/></w:p><w:p w14:paraId="603BA9F8" w14:textId="32546CFA" w:rsidR="00947006" w:rsidRPr="00845F4B" w:rsidRDefault="00845F4B" w:rsidP="00845F4B"><w:pPr><w:pStyle w:val="BodyText"/><w:rPr><w:rStyle w:val="TexteOrange"/></w:rPr></w:pPr><w:r w:rsidRPr="00845F4B"><w:rPr><w:rStyle w:val="TexteOrange"/></w:rPr><w:t xml:space="preserve"> </w:t></w:r><w:proofErr w:type="spellStart"/><w:r w:rsidRPr="00845F4B"><w:rPr><w:rStyle w:val="TexteOrange"/></w:rPr><w:t>Nf</w:t></w:r><w:proofErr w:type="spellEnd"/><w:r w:rsidRPr="00845F4B"><w:rPr><w:rStyle w:val="TexteOrange"/></w:rPr><w:t xml:space="preserve"> </w:t></w:r><w:proofErr w:type="spellStart"/><w:r w:rsidRPr="00845F4B"><w:rPr><w:rStyle w:val="TexteOrange"/></w:rPr><w:t>nvf</w:t></w:r><w:proofErr w:type="spellEnd"/><w:r w:rsidRPr="00845F4B"><w:rPr><w:rStyle w:val="TexteOrange"/></w:rPr><w:t xml:space="preserve"> </w:t></w:r><w:proofErr w:type="spellStart"/><w:proofErr w:type="gramStart"/><w:r w:rsidRPr="00845F4B"><w:rPr><w:rStyle w:val="TexteOrange"/></w:rPr><w:t>z,v</w:t></w:r><w:proofErr w:type="spellEnd"/><w:proofErr w:type="gramEnd"/><w:r w:rsidRPr="00845F4B"><w:rPr><w:rStyle w:val="TexteOrange"/></w:rPr><w:t>$</w:t></w:r></w:p><w:p w14:paraId="1E6020A0" w14:textId="77777777" w:rsidR="00845F4B" w:rsidRPr="00845F4B" w:rsidRDefault="00845F4B" w:rsidP="00845F4B"><w:pPr><w:pStyle w:val="BodyText"/><w:rPr><w:rStyle w:val="TexteOrange"/></w:rPr></w:pPr></w:p><w:sectPr w:rsidR="00845F4B" w:rsidRPr="00845F4B" w:rsidSect="00502252"><w:headerReference w:type="default" r:id="rId24"/><w:footerReference w:type="default" r:id="rId25"/><w:pgSz w:w="11906" w:h="16838" w:code="9"/><w:pgMar w:top="720" w:right="720" w:bottom="720" w:left="720" w:header="0" w:footer="0" w:gutter="0"/><w:cols w:space="708"/><w:docGrid w:linePitch="360"/></w:sectPr></w:body></w:document>
data/examples/corpd/word/endnotes.xml ADDED
@@ -0,0 +1,2 @@
 
 
 
1
+ <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
2
+ <w:endnotes xmlns:wpc="http://schemas.microsoft.com/office/word/2010/wordprocessingCanvas" xmlns:cx="http://schemas.microsoft.com/office/drawing/2014/chartex" xmlns:cx1="http://schemas.microsoft.com/office/drawing/2015/9/8/chartex" xmlns:cx2="http://schemas.microsoft.com/office/drawing/2015/10/21/chartex" xmlns:cx3="http://schemas.microsoft.com/office/drawing/2016/5/9/chartex" xmlns:cx4="http://schemas.microsoft.com/office/drawing/2016/5/10/chartex" xmlns:cx5="http://schemas.microsoft.com/office/drawing/2016/5/11/chartex" xmlns:cx6="http://schemas.microsoft.com/office/drawing/2016/5/12/chartex" xmlns:cx7="http://schemas.microsoft.com/office/drawing/2016/5/13/chartex" xmlns:cx8="http://schemas.microsoft.com/office/drawing/2016/5/14/chartex" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:aink="http://schemas.microsoft.com/office/drawing/2016/ink" xmlns:am3d="http://schemas.microsoft.com/office/drawing/2017/model3d" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:oel="http://schemas.microsoft.com/office/2019/extlst" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:m="http://schemas.openxmlformats.org/officeDocument/2006/math" xmlns:v="urn:schemas-microsoft-com:vml" xmlns:wp14="http://schemas.microsoft.com/office/word/2010/wordprocessingDrawing" xmlns:wp="http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing" xmlns:w10="urn:schemas-microsoft-com:office:word" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml" xmlns:w15="http://schemas.microsoft.com/office/word/2012/wordml" xmlns:w16cex="http://schemas.microsoft.com/office/word/2018/wordml/cex" xmlns:w16cid="http://schemas.microsoft.com/office/word/2016/wordml/cid" xmlns:w16="http://schemas.microsoft.com/office/word/2018/wordml" xmlns:w16sdtdh="http://schemas.microsoft.com/office/word/2020/wordml/sdtdatahash" xmlns:w16se="http://schemas.microsoft.com/office/word/2015/wordml/symex" xmlns:wpg="http://schemas.microsoft.com/office/word/2010/wordprocessingGroup" xmlns:wpi="http://schemas.microsoft.com/office/word/2010/wordprocessingInk" xmlns:wne="http://schemas.microsoft.com/office/word/2006/wordml" xmlns:wps="http://schemas.microsoft.com/office/word/2010/wordprocessingShape" mc:Ignorable="w14 w15 w16se w16cid w16 w16cex w16sdtdh wp14"><w:endnote w:type="separator" w:id="-1"><w:p w14:paraId="28CEBB0A" w14:textId="77777777" w:rsidR="007F6B51" w:rsidRDefault="007F6B51" w:rsidP="006D17DC"><w:r><w:separator/></w:r></w:p><w:p w14:paraId="1DEA2568" w14:textId="77777777" w:rsidR="007F6B51" w:rsidRDefault="007F6B51"/></w:endnote><w:endnote w:type="continuationSeparator" w:id="0"><w:p w14:paraId="20D6340D" w14:textId="77777777" w:rsidR="007F6B51" w:rsidRDefault="007F6B51" w:rsidP="006D17DC"><w:r><w:continuationSeparator/></w:r></w:p><w:p w14:paraId="54978F11" w14:textId="77777777" w:rsidR="007F6B51" w:rsidRDefault="007F6B51"/></w:endnote></w:endnotes>
data/examples/corpd/word/fontTable.xml ADDED
@@ -0,0 +1,2 @@
 
 
 
1
+ <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
2
+ <w:fonts xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml" xmlns:w15="http://schemas.microsoft.com/office/word/2012/wordml" xmlns:w16cex="http://schemas.microsoft.com/office/word/2018/wordml/cex" xmlns:w16cid="http://schemas.microsoft.com/office/word/2016/wordml/cid" xmlns:w16="http://schemas.microsoft.com/office/word/2018/wordml" xmlns:w16sdtdh="http://schemas.microsoft.com/office/word/2020/wordml/sdtdatahash" xmlns:w16se="http://schemas.microsoft.com/office/word/2015/wordml/symex" mc:Ignorable="w14 w15 w16se w16cid w16 w16cex w16sdtdh"><w:font w:name="Symbol"><w:panose1 w:val="05050102010706020507"/><w:charset w:val="02"/><w:family w:val="decorative"/><w:pitch w:val="variable"/><w:sig w:usb0="00000000" w:usb1="10000000" w:usb2="00000000" w:usb3="00000000" w:csb0="80000000" w:csb1="00000000"/></w:font><w:font w:name="Times New Roman"><w:panose1 w:val="02020603050405020304"/><w:charset w:val="00"/><w:family w:val="roman"/><w:pitch w:val="variable"/><w:sig w:usb0="E0002EFF" w:usb1="C000785B" w:usb2="00000009" w:usb3="00000000" w:csb0="000001FF" w:csb1="00000000"/></w:font><w:font w:name="Arial Gras"><w:altName w:val="Arial"/><w:panose1 w:val="020B0604020202020204"/><w:charset w:val="4D"/><w:family w:val="roman"/><w:notTrueType/><w:pitch w:val="default"/><w:sig w:usb0="00000003" w:usb1="00000000" w:usb2="00000000" w:usb3="00000000" w:csb0="00000001" w:csb1="00000000"/></w:font><w:font w:name="Helvetica 75 Bold"><w:altName w:val="Arial"/><w:panose1 w:val="00000000000000000000"/><w:charset w:val="00"/><w:family w:val="swiss"/><w:pitch w:val="variable"/><w:sig w:usb0="A00002AF" w:usb1="5000205B" w:usb2="00000000" w:usb3="00000000" w:csb0="0000009F" w:csb1="00000000"/></w:font><w:font w:name="Wingdings"><w:panose1 w:val="05000000000000000000"/><w:charset w:val="4D"/><w:family w:val="decorative"/><w:pitch w:val="variable"/><w:sig w:usb0="00000003" w:usb1="00000000" w:usb2="00000000" w:usb3="00000000" w:csb0="80000001" w:csb1="00000000"/></w:font><w:font w:name="Courier New"><w:panose1 w:val="02070309020205020404"/><w:charset w:val="00"/><w:family w:val="modern"/><w:pitch w:val="fixed"/><w:sig w:usb0="E0002AFF" w:usb1="C0007843" w:usb2="00000009" w:usb3="00000000" w:csb0="000001FF" w:csb1="00000000"/></w:font><w:font w:name="Helvetica 55 Roman"><w:altName w:val="Arial"/><w:panose1 w:val="00000000000000000000"/><w:charset w:val="00"/><w:family w:val="swiss"/><w:pitch w:val="variable"/><w:sig w:usb0="A00002AF" w:usb1="5000205B" w:usb2="00000000" w:usb3="00000000" w:csb0="0000009F" w:csb1="00000000"/></w:font><w:font w:name="Helvetica 45 Light"><w:altName w:val="Arial"/><w:panose1 w:val="020B0403020202020204"/><w:charset w:val="00"/><w:family w:val="swiss"/><w:pitch w:val="variable"/><w:sig w:usb0="A00002AF" w:usb1="5000205B" w:usb2="00000000" w:usb3="00000000" w:csb0="0000009F" w:csb1="00000000"/></w:font><w:font w:name="Helvetica 65 Medium"><w:altName w:val="Arial"/><w:panose1 w:val="00000000000000000000"/><w:charset w:val="00"/><w:family w:val="swiss"/><w:pitch w:val="variable"/><w:sig w:usb0="A00002AF" w:usb1="5000205B" w:usb2="00000000" w:usb3="00000000" w:csb0="0000009F" w:csb1="00000000"/></w:font><w:font w:name="Arial"><w:panose1 w:val="020B0604020202020204"/><w:charset w:val="00"/><w:family w:val="swiss"/><w:pitch w:val="variable"/><w:sig w:usb0="E0002AFF" w:usb1="C0007843" w:usb2="00000009" w:usb3="00000000" w:csb0="000001FF" w:csb1="00000000"/></w:font><w:font w:name="Garamond"><w:panose1 w:val="02020404030301010803"/><w:charset w:val="00"/><w:family w:val="roman"/><w:pitch w:val="variable"/><w:sig w:usb0="00000287" w:usb1="00000002" w:usb2="00000000" w:usb3="00000000" w:csb0="0000009F" w:csb1="00000000"/></w:font><w:font w:name="Calibri"><w:panose1 w:val="020F0502020204030204"/><w:charset w:val="00"/><w:family w:val="swiss"/><w:pitch w:val="variable"/><w:sig w:usb0="E4002EFF" w:usb1="C000247B" w:usb2="00000009" w:usb3="00000000" w:csb0="000001FF" w:csb1="00000000"/></w:font><w:font w:name="Arial Unicode MS"><w:panose1 w:val="020B0604020202020204"/><w:charset w:val="80"/><w:family w:val="swiss"/><w:pitch w:val="variable"/><w:sig w:usb0="F7FFAFFF" w:usb1="E9DFFFFF" w:usb2="0000003F" w:usb3="00000000" w:csb0="003F01FF" w:csb1="00000000"/></w:font><w:font w:name="MS Mincho"><w:altName w:val="MS 明朝"/><w:panose1 w:val="02020609040205080304"/><w:charset w:val="80"/><w:family w:val="modern"/><w:notTrueType/><w:pitch w:val="fixed"/><w:sig w:usb0="E00002FF" w:usb1="6AC7FDFB" w:usb2="08000012" w:usb3="00000000" w:csb0="0002009F" w:csb1="00000000"/></w:font><w:font w:name="Tahoma"><w:panose1 w:val="020B0604030504040204"/><w:charset w:val="00"/><w:family w:val="swiss"/><w:pitch w:val="variable"/><w:sig w:usb0="E1002EFF" w:usb1="C000605B" w:usb2="00000029" w:usb3="00000000" w:csb0="000101FF" w:csb1="00000000"/></w:font><w:font w:name="Cambria"><w:panose1 w:val="02040503050406030204"/><w:charset w:val="00"/><w:family w:val="roman"/><w:pitch w:val="variable"/><w:sig w:usb0="E00002FF" w:usb1="400004FF" w:usb2="00000000" w:usb3="00000000" w:csb0="0000019F" w:csb1="00000000"/></w:font></w:fonts>
data/examples/corpd/word/footer1.xml ADDED
@@ -0,0 +1,2 @@
 
 
 
1
+ <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
2
+ <w:ftr xmlns:wpc="http://schemas.microsoft.com/office/word/2010/wordprocessingCanvas" xmlns:cx="http://schemas.microsoft.com/office/drawing/2014/chartex" xmlns:cx1="http://schemas.microsoft.com/office/drawing/2015/9/8/chartex" xmlns:cx2="http://schemas.microsoft.com/office/drawing/2015/10/21/chartex" xmlns:cx3="http://schemas.microsoft.com/office/drawing/2016/5/9/chartex" xmlns:cx4="http://schemas.microsoft.com/office/drawing/2016/5/10/chartex" xmlns:cx5="http://schemas.microsoft.com/office/drawing/2016/5/11/chartex" xmlns:cx6="http://schemas.microsoft.com/office/drawing/2016/5/12/chartex" xmlns:cx7="http://schemas.microsoft.com/office/drawing/2016/5/13/chartex" xmlns:cx8="http://schemas.microsoft.com/office/drawing/2016/5/14/chartex" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:aink="http://schemas.microsoft.com/office/drawing/2016/ink" xmlns:am3d="http://schemas.microsoft.com/office/drawing/2017/model3d" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:oel="http://schemas.microsoft.com/office/2019/extlst" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:m="http://schemas.openxmlformats.org/officeDocument/2006/math" xmlns:v="urn:schemas-microsoft-com:vml" xmlns:wp14="http://schemas.microsoft.com/office/word/2010/wordprocessingDrawing" xmlns:wp="http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing" xmlns:w10="urn:schemas-microsoft-com:office:word" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml" xmlns:w15="http://schemas.microsoft.com/office/word/2012/wordml" xmlns:w16cex="http://schemas.microsoft.com/office/word/2018/wordml/cex" xmlns:w16cid="http://schemas.microsoft.com/office/word/2016/wordml/cid" xmlns:w16="http://schemas.microsoft.com/office/word/2018/wordml" xmlns:w16sdtdh="http://schemas.microsoft.com/office/word/2020/wordml/sdtdatahash" xmlns:w16se="http://schemas.microsoft.com/office/word/2015/wordml/symex" xmlns:wpg="http://schemas.microsoft.com/office/word/2010/wordprocessingGroup" xmlns:wpi="http://schemas.microsoft.com/office/word/2010/wordprocessingInk" xmlns:wne="http://schemas.microsoft.com/office/word/2006/wordml" xmlns:wps="http://schemas.microsoft.com/office/word/2010/wordprocessingShape" mc:Ignorable="w14 w15 w16se w16cid w16 w16cex w16sdtdh wp14"><w:tbl><w:tblPr><w:tblStyle w:val="Grilledutableau"/><w:tblW w:w="5175" w:type="pct"/><w:jc w:val="center"/><w:tblBorders><w:top w:val="single" w:sz="4" w:space="0" w:color="FF7900"/><w:left w:val="none" w:sz="0" w:space="0" w:color="auto"/><w:bottom w:val="none" w:sz="0" w:space="0" w:color="auto"/><w:right w:val="none" w:sz="0" w:space="0" w:color="auto"/><w:insideH w:val="none" w:sz="0" w:space="0" w:color="auto"/><w:insideV w:val="none" w:sz="0" w:space="0" w:color="auto"/></w:tblBorders><w:tblCellMar><w:left w:w="0" w:type="dxa"/><w:right w:w="0" w:type="dxa"/></w:tblCellMar><w:tblLook w:val="04A0" w:firstRow="1" w:lastRow="0" w:firstColumn="1" w:lastColumn="0" w:noHBand="0" w:noVBand="1"/></w:tblPr><w:tblGrid><w:gridCol w:w="3895"/><w:gridCol w:w="3412"/><w:gridCol w:w="3525"/></w:tblGrid><w:tr w:rsidR="00B4251A" w:rsidRPr="00E50FAE" w14:paraId="58379B1D" w14:textId="77777777" w:rsidTr="00E60D81"><w:trPr><w:trHeight w:val="614"/><w:jc w:val="center"/></w:trPr><w:tc><w:tcPr><w:tcW w:w="1798" w:type="pct"/><w:vAlign w:val="bottom"/></w:tcPr><w:p w14:paraId="4DCF5825" w14:textId="77777777" w:rsidR="00B4251A" w:rsidRDefault="00B4251A" w:rsidP="007F667E"><w:pPr><w:pStyle w:val="footer"/></w:pPr><w:r><w:t>Clause de confidentialité</w:t></w:r></w:p><w:p w14:paraId="26755C29" w14:textId="77777777" w:rsidR="00B4251A" w:rsidRPr="006B78C4" w:rsidRDefault="00B4251A" w:rsidP="006D17DC"><w:r w:rsidRPr="006B78C4"><w:t xml:space="preserve">Page </w:t></w:r><w:r w:rsidRPr="006B78C4"><w:rPr><w:lang w:val="en-GB"/></w:rPr><w:fldChar w:fldCharType="begin"/></w:r><w:r w:rsidRPr="006B78C4"><w:instrText xml:space="preserve"> PAGE \* Arabic \* MERGEFORMAT </w:instrText></w:r><w:r w:rsidRPr="006B78C4"><w:rPr><w:lang w:val="en-GB"/></w:rPr><w:fldChar w:fldCharType="separate"/></w:r><w:r><w:rPr><w:noProof/></w:rPr><w:t>2</w:t></w:r><w:r w:rsidRPr="006B78C4"><w:rPr><w:lang w:val="en-GB"/></w:rPr><w:fldChar w:fldCharType="end"/></w:r><w:r w:rsidRPr="006B78C4"><w:t xml:space="preserve"> sur </w:t></w:r><w:fldSimple w:instr=" NUMPAGES \* Arabic \* MERGEFORMAT "><w:r><w:rPr><w:noProof/></w:rPr><w:t>4</w:t></w:r></w:fldSimple></w:p></w:tc><w:tc><w:tcPr><w:tcW w:w="1575" w:type="pct"/><w:vAlign w:val="bottom"/></w:tcPr><w:p w14:paraId="7F5D46C4" w14:textId="77777777" w:rsidR="00B4251A" w:rsidRPr="005F46EC" w:rsidRDefault="00B4251A" w:rsidP="006D17DC"><w:pPr><w:rPr><w:lang w:val="en-GB"/></w:rPr></w:pPr><w:r w:rsidRPr="005F46EC"><w:rPr><w:lang w:val="en-GB"/></w:rPr><w:fldChar w:fldCharType="begin"/></w:r><w:r w:rsidRPr="005F46EC"><w:rPr><w:lang w:val="en-GB"/></w:rPr><w:instrText xml:space="preserve"> STYLEREF .Classification \* MERGEFORMAT </w:instrText></w:r><w:r w:rsidRPr="005F46EC"><w:rPr><w:lang w:val="en-GB"/></w:rPr><w:fldChar w:fldCharType="separate"/></w:r><w:r w:rsidR="000C19BE"><w:rPr><w:noProof/><w:lang w:val="en-GB"/></w:rPr><w:t>Strictement confidentiel</w:t></w:r><w:r w:rsidRPr="005F46EC"><w:rPr><w:noProof/><w:lang w:val="en-GB"/></w:rPr><w:fldChar w:fldCharType="end"/></w:r></w:p></w:tc><w:tc><w:tcPr><w:tcW w:w="1627" w:type="pct"/><w:vAlign w:val="bottom"/></w:tcPr><w:p w14:paraId="3870BE0C" w14:textId="77777777" w:rsidR="00B4251A" w:rsidRPr="00E50FAE" w:rsidRDefault="00B4251A" w:rsidP="006D17DC"><w:pPr><w:rPr><w:lang w:val="en-GB"/></w:rPr></w:pPr><w:r w:rsidRPr="00E50FAE"><w:rPr><w:lang w:val="en-GB"/></w:rPr><w:fldChar w:fldCharType="begin"/></w:r><w:r w:rsidRPr="00E50FAE"><w:rPr><w:lang w:val="en-GB"/></w:rPr><w:instrText xml:space="preserve"> STYLEREF .DateDue \* MERGEFORMAT </w:instrText></w:r><w:r w:rsidRPr="00E50FAE"><w:rPr><w:lang w:val="en-GB"/></w:rPr><w:fldChar w:fldCharType="separate"/></w:r><w:r w:rsidR="000C19BE"><w:rPr><w:noProof/><w:lang w:val="en-GB"/></w:rPr><w:t>JJ/MM/AAAA</w:t></w:r><w:r w:rsidRPr="00E50FAE"><w:rPr><w:noProof/><w:lang w:val="en-GB"/></w:rPr><w:fldChar w:fldCharType="end"/></w:r></w:p></w:tc></w:tr></w:tbl><w:p w14:paraId="68468FAF" w14:textId="77777777" w:rsidR="00B4251A" w:rsidRPr="007F7E55" w:rsidRDefault="00B4251A" w:rsidP="00D305F5"><w:pPr><w:pStyle w:val="footer"/><w:rPr><w:sz w:val="10"/><w:szCs w:val="12"/></w:rPr></w:pPr></w:p></w:ftr>
data/examples/corpd/word/footer2.xml ADDED
@@ -0,0 +1,2 @@
 
 
 
1
+ <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
2
+ <w:ftr xmlns:wpc="http://schemas.microsoft.com/office/word/2010/wordprocessingCanvas" xmlns:cx="http://schemas.microsoft.com/office/drawing/2014/chartex" xmlns:cx1="http://schemas.microsoft.com/office/drawing/2015/9/8/chartex" xmlns:cx2="http://schemas.microsoft.com/office/drawing/2015/10/21/chartex" xmlns:cx3="http://schemas.microsoft.com/office/drawing/2016/5/9/chartex" xmlns:cx4="http://schemas.microsoft.com/office/drawing/2016/5/10/chartex" xmlns:cx5="http://schemas.microsoft.com/office/drawing/2016/5/11/chartex" xmlns:cx6="http://schemas.microsoft.com/office/drawing/2016/5/12/chartex" xmlns:cx7="http://schemas.microsoft.com/office/drawing/2016/5/13/chartex" xmlns:cx8="http://schemas.microsoft.com/office/drawing/2016/5/14/chartex" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:aink="http://schemas.microsoft.com/office/drawing/2016/ink" xmlns:am3d="http://schemas.microsoft.com/office/drawing/2017/model3d" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:oel="http://schemas.microsoft.com/office/2019/extlst" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:m="http://schemas.openxmlformats.org/officeDocument/2006/math" xmlns:v="urn:schemas-microsoft-com:vml" xmlns:wp14="http://schemas.microsoft.com/office/word/2010/wordprocessingDrawing" xmlns:wp="http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing" xmlns:w10="urn:schemas-microsoft-com:office:word" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml" xmlns:w15="http://schemas.microsoft.com/office/word/2012/wordml" xmlns:w16cex="http://schemas.microsoft.com/office/word/2018/wordml/cex" xmlns:w16cid="http://schemas.microsoft.com/office/word/2016/wordml/cid" xmlns:w16="http://schemas.microsoft.com/office/word/2018/wordml" xmlns:w16sdtdh="http://schemas.microsoft.com/office/word/2020/wordml/sdtdatahash" xmlns:w16se="http://schemas.microsoft.com/office/word/2015/wordml/symex" xmlns:wpg="http://schemas.microsoft.com/office/word/2010/wordprocessingGroup" xmlns:wpi="http://schemas.microsoft.com/office/word/2010/wordprocessingInk" xmlns:wne="http://schemas.microsoft.com/office/word/2006/wordml" xmlns:wps="http://schemas.microsoft.com/office/word/2010/wordprocessingShape" mc:Ignorable="w14 w15 w16se w16cid w16 w16cex w16sdtdh wp14"><w:p w14:paraId="6FDD025D" w14:textId="77777777" w:rsidR="00B4251A" w:rsidRPr="00A048B5" w:rsidRDefault="00B4251A" w:rsidP="00A048B5"><w:pPr><w:pStyle w:val="Pieddepage"/><w:rPr><w:sz w:val="10"/></w:rPr></w:pPr></w:p><w:tbl><w:tblPr><w:tblStyle w:val="Grilledutableau"/><w:tblW w:w="5000" w:type="pct"/><w:jc w:val="center"/><w:tblBorders><w:top w:val="single" w:sz="4" w:space="0" w:color="FF7900"/><w:left w:val="none" w:sz="0" w:space="0" w:color="auto"/><w:bottom w:val="none" w:sz="0" w:space="0" w:color="auto"/><w:right w:val="none" w:sz="0" w:space="0" w:color="auto"/><w:insideH w:val="none" w:sz="0" w:space="0" w:color="auto"/><w:insideV w:val="none" w:sz="0" w:space="0" w:color="auto"/></w:tblBorders><w:tblCellMar><w:left w:w="0" w:type="dxa"/><w:right w:w="0" w:type="dxa"/></w:tblCellMar><w:tblLook w:val="04A0" w:firstRow="1" w:lastRow="0" w:firstColumn="1" w:lastColumn="0" w:noHBand="0" w:noVBand="1"/></w:tblPr><w:tblGrid><w:gridCol w:w="3740"/><w:gridCol w:w="3314"/><w:gridCol w:w="3412"/></w:tblGrid><w:tr w:rsidR="00B4251A" w:rsidRPr="00C05DDA" w14:paraId="6DF23DA0" w14:textId="77777777" w:rsidTr="005A01BC"><w:trPr><w:cantSplit/><w:trHeight w:hRule="exact" w:val="284"/><w:jc w:val="center"/></w:trPr><w:tc><w:tcPr><w:tcW w:w="5000" w:type="pct"/><w:gridSpan w:val="3"/><w:vAlign w:val="bottom"/></w:tcPr><w:p w14:paraId="0CB09935" w14:textId="77777777" w:rsidR="00B4251A" w:rsidRPr="006D17DC" w:rsidRDefault="00B4251A" w:rsidP="00A048B5"><w:pPr><w:pStyle w:val="Pieddepage"/></w:pPr><w:r><w:t>Clause de confidentialité</w:t></w:r></w:p></w:tc></w:tr><w:tr w:rsidR="00B4251A" w:rsidRPr="00C05DDA" w14:paraId="2A684BD7" w14:textId="77777777" w:rsidTr="005A01BC"><w:trPr><w:cantSplit/><w:trHeight w:hRule="exact" w:val="284"/><w:jc w:val="center"/></w:trPr><w:tc><w:tcPr><w:tcW w:w="1787" w:type="pct"/><w:vAlign w:val="bottom"/></w:tcPr><w:p w14:paraId="013305E2" w14:textId="77777777" w:rsidR="00B4251A" w:rsidRPr="00C05DDA" w:rsidRDefault="00B4251A" w:rsidP="00A048B5"><w:pPr><w:pStyle w:val="Pieddepage"/></w:pPr><w:r w:rsidRPr="00C05DDA"><w:t xml:space="preserve">Page </w:t></w:r><w:r w:rsidRPr="00C05DDA"><w:fldChar w:fldCharType="begin"/></w:r><w:r w:rsidRPr="00C05DDA"><w:instrText xml:space="preserve"> PAGE \* Arabic \* MERGEFORMAT </w:instrText></w:r><w:r w:rsidRPr="00C05DDA"><w:fldChar w:fldCharType="separate"/></w:r><w:r w:rsidR="00985F76"><w:rPr><w:noProof/></w:rPr><w:t>2</w:t></w:r><w:r w:rsidRPr="00C05DDA"><w:fldChar w:fldCharType="end"/></w:r><w:r w:rsidRPr="00C05DDA"><w:t xml:space="preserve"> sur </w:t></w:r><w:fldSimple w:instr=" NUMPAGES \* Arabic \* MERGEFORMAT "><w:r w:rsidR="00985F76"><w:rPr><w:noProof/></w:rPr><w:t>5</w:t></w:r></w:fldSimple></w:p></w:tc><w:tc><w:tcPr><w:tcW w:w="1583" w:type="pct"/><w:vAlign w:val="bottom"/></w:tcPr><w:p w14:paraId="1D75722A" w14:textId="638C4918" w:rsidR="00B4251A" w:rsidRPr="009C5073" w:rsidRDefault="00B4251A" w:rsidP="00A048B5"><w:pPr><w:pStyle w:val="Pieddepage"/><w:jc w:val="center"/><w:rPr><w:lang w:val="en-GB"/></w:rPr></w:pPr><w:r w:rsidRPr="009C5073"><w:rPr><w:lang w:val="en-GB"/></w:rPr><w:fldChar w:fldCharType="begin"/></w:r><w:r w:rsidRPr="009C5073"><w:rPr><w:lang w:val="en-GB"/></w:rPr><w:instrText xml:space="preserve"> STYLEREF .Classification \* MERGEFORMAT </w:instrText></w:r><w:r w:rsidRPr="009C5073"><w:rPr><w:lang w:val="en-GB"/></w:rPr><w:fldChar w:fldCharType="separate"/></w:r><w:r w:rsidR="00845F4B" w:rsidRPr="00845F4B"><w:rPr><w:bCs/><w:noProof/></w:rPr><w:t>Strictement confidentiel</w:t></w:r><w:r w:rsidRPr="009C5073"><w:rPr><w:noProof/><w:lang w:val="en-GB"/></w:rPr><w:fldChar w:fldCharType="end"/></w:r></w:p></w:tc><w:tc><w:tcPr><w:tcW w:w="1630" w:type="pct"/><w:vAlign w:val="bottom"/></w:tcPr><w:p w14:paraId="3DA97E8A" w14:textId="18983AFF" w:rsidR="00B4251A" w:rsidRPr="009C5073" w:rsidRDefault="00000000" w:rsidP="00A048B5"><w:pPr><w:pStyle w:val="Pieddepage"/><w:jc w:val="right"/></w:pPr><w:fldSimple w:instr=" STYLEREF .DateDue \* MERGEFORMAT "><w:r w:rsidR="00845F4B" w:rsidRPr="00845F4B"><w:rPr><w:bCs/><w:noProof/></w:rPr><w:t>JJ/MM/AAAA</w:t></w:r></w:fldSimple><w:r w:rsidR="00B4251A" w:rsidRPr="009C5073"><w:t xml:space="preserve"> </w:t></w:r></w:p></w:tc></w:tr></w:tbl><w:p w14:paraId="7E322ED9" w14:textId="77777777" w:rsidR="00B4251A" w:rsidRPr="00DB7F80" w:rsidRDefault="00B4251A" w:rsidP="00A048B5"><w:pPr><w:pStyle w:val="Pieddepage"/><w:rPr><w:sz w:val="14"/></w:rPr></w:pPr></w:p></w:ftr>
data/examples/corpd/word/footer3.xml ADDED
@@ -0,0 +1,2 @@
 
 
 
1
+ <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
2
+ <w:ftr xmlns:wpc="http://schemas.microsoft.com/office/word/2010/wordprocessingCanvas" xmlns:cx="http://schemas.microsoft.com/office/drawing/2014/chartex" xmlns:cx1="http://schemas.microsoft.com/office/drawing/2015/9/8/chartex" xmlns:cx2="http://schemas.microsoft.com/office/drawing/2015/10/21/chartex" xmlns:cx3="http://schemas.microsoft.com/office/drawing/2016/5/9/chartex" xmlns:cx4="http://schemas.microsoft.com/office/drawing/2016/5/10/chartex" xmlns:cx5="http://schemas.microsoft.com/office/drawing/2016/5/11/chartex" xmlns:cx6="http://schemas.microsoft.com/office/drawing/2016/5/12/chartex" xmlns:cx7="http://schemas.microsoft.com/office/drawing/2016/5/13/chartex" xmlns:cx8="http://schemas.microsoft.com/office/drawing/2016/5/14/chartex" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:aink="http://schemas.microsoft.com/office/drawing/2016/ink" xmlns:am3d="http://schemas.microsoft.com/office/drawing/2017/model3d" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:oel="http://schemas.microsoft.com/office/2019/extlst" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:m="http://schemas.openxmlformats.org/officeDocument/2006/math" xmlns:v="urn:schemas-microsoft-com:vml" xmlns:wp14="http://schemas.microsoft.com/office/word/2010/wordprocessingDrawing" xmlns:wp="http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing" xmlns:w10="urn:schemas-microsoft-com:office:word" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml" xmlns:w15="http://schemas.microsoft.com/office/word/2012/wordml" xmlns:w16cex="http://schemas.microsoft.com/office/word/2018/wordml/cex" xmlns:w16cid="http://schemas.microsoft.com/office/word/2016/wordml/cid" xmlns:w16="http://schemas.microsoft.com/office/word/2018/wordml" xmlns:w16sdtdh="http://schemas.microsoft.com/office/word/2020/wordml/sdtdatahash" xmlns:w16se="http://schemas.microsoft.com/office/word/2015/wordml/symex" xmlns:wpg="http://schemas.microsoft.com/office/word/2010/wordprocessingGroup" xmlns:wpi="http://schemas.microsoft.com/office/word/2010/wordprocessingInk" xmlns:wne="http://schemas.microsoft.com/office/word/2006/wordml" xmlns:wps="http://schemas.microsoft.com/office/word/2010/wordprocessingShape" mc:Ignorable="w14 w15 w16se w16cid w16 w16cex w16sdtdh wp14"><w:p w14:paraId="5F32384D" w14:textId="77777777" w:rsidR="00B4251A" w:rsidRPr="00A048B5" w:rsidRDefault="00B4251A" w:rsidP="008D54A0"><w:pPr><w:pStyle w:val="Pieddepage"/><w:rPr><w:sz w:val="10"/></w:rPr></w:pPr></w:p><w:tbl><w:tblPr><w:tblStyle w:val="Grilledutableau"/><w:tblW w:w="5000" w:type="pct"/><w:jc w:val="center"/><w:tblBorders><w:top w:val="single" w:sz="4" w:space="0" w:color="FF7900"/><w:left w:val="none" w:sz="0" w:space="0" w:color="auto"/><w:bottom w:val="none" w:sz="0" w:space="0" w:color="auto"/><w:right w:val="none" w:sz="0" w:space="0" w:color="auto"/><w:insideH w:val="none" w:sz="0" w:space="0" w:color="auto"/><w:insideV w:val="none" w:sz="0" w:space="0" w:color="auto"/></w:tblBorders><w:tblCellMar><w:left w:w="0" w:type="dxa"/><w:right w:w="0" w:type="dxa"/></w:tblCellMar><w:tblLook w:val="04A0" w:firstRow="1" w:lastRow="0" w:firstColumn="1" w:lastColumn="0" w:noHBand="0" w:noVBand="1"/></w:tblPr><w:tblGrid><w:gridCol w:w="3740"/><w:gridCol w:w="3314"/><w:gridCol w:w="3412"/></w:tblGrid><w:tr w:rsidR="00B4251A" w:rsidRPr="00C05DDA" w14:paraId="2B0CF169" w14:textId="77777777" w:rsidTr="008D54A0"><w:trPr><w:cantSplit/><w:trHeight w:hRule="exact" w:val="284"/><w:jc w:val="center"/></w:trPr><w:tc><w:tcPr><w:tcW w:w="5000" w:type="pct"/><w:gridSpan w:val="3"/><w:tcBorders><w:top w:val="nil"/></w:tcBorders><w:vAlign w:val="bottom"/></w:tcPr><w:p w14:paraId="24A6B8D1" w14:textId="77777777" w:rsidR="00B4251A" w:rsidRPr="006D17DC" w:rsidRDefault="00B4251A" w:rsidP="00491F44"><w:pPr><w:pStyle w:val="Pieddepage"/></w:pPr></w:p></w:tc></w:tr><w:tr w:rsidR="00B4251A" w:rsidRPr="00C05DDA" w14:paraId="650A204F" w14:textId="77777777" w:rsidTr="00491F44"><w:trPr><w:cantSplit/><w:trHeight w:hRule="exact" w:val="284"/><w:jc w:val="center"/></w:trPr><w:tc><w:tcPr><w:tcW w:w="1787" w:type="pct"/><w:vAlign w:val="bottom"/></w:tcPr><w:p w14:paraId="2A960790" w14:textId="77777777" w:rsidR="00B4251A" w:rsidRPr="00C05DDA" w:rsidRDefault="00B4251A" w:rsidP="00491F44"><w:pPr><w:pStyle w:val="Pieddepage"/></w:pPr></w:p></w:tc><w:tc><w:tcPr><w:tcW w:w="1583" w:type="pct"/><w:vAlign w:val="bottom"/></w:tcPr><w:p w14:paraId="58ACDE8D" w14:textId="77777777" w:rsidR="00B4251A" w:rsidRPr="00C05DDA" w:rsidRDefault="00B4251A" w:rsidP="00491F44"><w:pPr><w:pStyle w:val="Pieddepage"/><w:jc w:val="center"/><w:rPr><w:lang w:val="en-GB"/></w:rPr></w:pPr></w:p></w:tc><w:tc><w:tcPr><w:tcW w:w="1630" w:type="pct"/><w:vAlign w:val="bottom"/></w:tcPr><w:p w14:paraId="7AE2ACBF" w14:textId="77777777" w:rsidR="00B4251A" w:rsidRPr="008408BC" w:rsidRDefault="00B4251A" w:rsidP="00491F44"><w:pPr><w:pStyle w:val="Pieddepage"/><w:jc w:val="right"/></w:pPr></w:p></w:tc></w:tr></w:tbl><w:p w14:paraId="50865987" w14:textId="77777777" w:rsidR="00B4251A" w:rsidRPr="00DB7F80" w:rsidRDefault="00B4251A" w:rsidP="008D54A0"><w:pPr><w:pStyle w:val="Pieddepage"/><w:rPr><w:sz w:val="14"/></w:rPr></w:pPr></w:p></w:ftr>
data/examples/corpd/word/footer4.xml ADDED
@@ -0,0 +1,2 @@
 
 
 
1
+ <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
2
+ <w:ftr xmlns:wpc="http://schemas.microsoft.com/office/word/2010/wordprocessingCanvas" xmlns:cx="http://schemas.microsoft.com/office/drawing/2014/chartex" xmlns:cx1="http://schemas.microsoft.com/office/drawing/2015/9/8/chartex" xmlns:cx2="http://schemas.microsoft.com/office/drawing/2015/10/21/chartex" xmlns:cx3="http://schemas.microsoft.com/office/drawing/2016/5/9/chartex" xmlns:cx4="http://schemas.microsoft.com/office/drawing/2016/5/10/chartex" xmlns:cx5="http://schemas.microsoft.com/office/drawing/2016/5/11/chartex" xmlns:cx6="http://schemas.microsoft.com/office/drawing/2016/5/12/chartex" xmlns:cx7="http://schemas.microsoft.com/office/drawing/2016/5/13/chartex" xmlns:cx8="http://schemas.microsoft.com/office/drawing/2016/5/14/chartex" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:aink="http://schemas.microsoft.com/office/drawing/2016/ink" xmlns:am3d="http://schemas.microsoft.com/office/drawing/2017/model3d" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:oel="http://schemas.microsoft.com/office/2019/extlst" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:m="http://schemas.openxmlformats.org/officeDocument/2006/math" xmlns:v="urn:schemas-microsoft-com:vml" xmlns:wp14="http://schemas.microsoft.com/office/word/2010/wordprocessingDrawing" xmlns:wp="http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing" xmlns:w10="urn:schemas-microsoft-com:office:word" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml" xmlns:w15="http://schemas.microsoft.com/office/word/2012/wordml" xmlns:w16cex="http://schemas.microsoft.com/office/word/2018/wordml/cex" xmlns:w16cid="http://schemas.microsoft.com/office/word/2016/wordml/cid" xmlns:w16="http://schemas.microsoft.com/office/word/2018/wordml" xmlns:w16sdtdh="http://schemas.microsoft.com/office/word/2020/wordml/sdtdatahash" xmlns:w16se="http://schemas.microsoft.com/office/word/2015/wordml/symex" xmlns:wpg="http://schemas.microsoft.com/office/word/2010/wordprocessingGroup" xmlns:wpi="http://schemas.microsoft.com/office/word/2010/wordprocessingInk" xmlns:wne="http://schemas.microsoft.com/office/word/2006/wordml" xmlns:wps="http://schemas.microsoft.com/office/word/2010/wordprocessingShape" mc:Ignorable="w14 w15 w16se w16cid w16 w16cex w16sdtdh wp14"><w:p w14:paraId="2469B839" w14:textId="77777777" w:rsidR="00B4251A" w:rsidRPr="00B00DFC" w:rsidRDefault="00B4251A" w:rsidP="006D17DC"/><w:tbl><w:tblPr><w:tblStyle w:val="TableGrid2"/><w:tblW w:w="5284" w:type="pct"/><w:tblInd w:w="-483" w:type="dxa"/><w:tblBorders><w:top w:val="none" w:sz="0" w:space="0" w:color="auto"/><w:left w:val="none" w:sz="0" w:space="0" w:color="auto"/><w:bottom w:val="none" w:sz="0" w:space="0" w:color="auto"/><w:right w:val="none" w:sz="0" w:space="0" w:color="auto"/><w:insideH w:val="none" w:sz="0" w:space="0" w:color="auto"/><w:insideV w:val="none" w:sz="0" w:space="0" w:color="auto"/></w:tblBorders><w:tblCellMar><w:left w:w="43" w:type="dxa"/><w:right w:w="115" w:type="dxa"/></w:tblCellMar><w:tblLook w:val="04A0" w:firstRow="1" w:lastRow="0" w:firstColumn="1" w:lastColumn="0" w:noHBand="0" w:noVBand="1"/></w:tblPr><w:tblGrid><w:gridCol w:w="4018"/><w:gridCol w:w="3545"/><w:gridCol w:w="3664"/></w:tblGrid><w:tr w:rsidR="00B4251A" w:rsidRPr="00F8713A" w14:paraId="096DA5FC" w14:textId="77777777" w:rsidTr="004846F2"><w:tc><w:tcPr><w:tcW w:w="5000" w:type="pct"/><w:gridSpan w:val="3"/><w:vAlign w:val="bottom"/></w:tcPr><w:p w14:paraId="06CD34C2" w14:textId="77777777" w:rsidR="00B4251A" w:rsidRPr="00ED038F" w:rsidRDefault="00B4251A" w:rsidP="006D17DC"><w:pPr><w:rPr><w:b/></w:rPr></w:pPr><w:r w:rsidRPr="00ED038F"><w:t xml:space="preserve">Chapitre </w:t></w:r><w:r w:rsidRPr="004B28F3"><w:rPr><w:b/><w:lang w:val="en-GB"/></w:rPr><w:fldChar w:fldCharType="begin"/></w:r><w:r w:rsidRPr="00ED038F"><w:rPr><w:b/></w:rPr><w:instrText xml:space="preserve"> STYLEREF 1 \n </w:instrText></w:r><w:r w:rsidRPr="004B28F3"><w:rPr><w:b/><w:lang w:val="en-GB"/></w:rPr><w:fldChar w:fldCharType="separate"/></w:r><w:r w:rsidR="000C19BE"><w:rPr><w:bCs/><w:noProof/></w:rPr><w:t>Erreur ! Il n'y a pas de texte répondant à ce style dans ce document.</w:t></w:r><w:r w:rsidRPr="004B28F3"><w:rPr><w:b/><w:lang w:val="en-GB"/></w:rPr><w:fldChar w:fldCharType="end"/></w:r><w:r w:rsidRPr="00ED038F"><w:rPr><w:b/></w:rPr><w:t xml:space="preserve">: </w:t></w:r><w:r w:rsidRPr="004B28F3"><w:rPr><w:b/><w:lang w:val="en-GB"/></w:rPr><w:fldChar w:fldCharType="begin"/></w:r><w:r w:rsidRPr="00ED038F"><w:rPr><w:b/></w:rPr><w:instrText xml:space="preserve"> STYLEREF 1 </w:instrText></w:r><w:r w:rsidRPr="004B28F3"><w:rPr><w:b/><w:lang w:val="en-GB"/></w:rPr><w:fldChar w:fldCharType="separate"/></w:r><w:r w:rsidR="000C19BE"><w:rPr><w:bCs/><w:noProof/></w:rPr><w:t>Erreur ! Il n'y a pas de texte répondant à ce style dans ce document.</w:t></w:r><w:r w:rsidRPr="004B28F3"><w:rPr><w:b/><w:lang w:val="en-GB"/></w:rPr><w:fldChar w:fldCharType="end"/></w:r></w:p></w:tc></w:tr><w:tr w:rsidR="00B4251A" w:rsidRPr="00F8713A" w14:paraId="2B70A46C" w14:textId="77777777" w:rsidTr="004846F2"><w:tc><w:tcPr><w:tcW w:w="1789" w:type="pct"/><w:vAlign w:val="bottom"/></w:tcPr><w:p w14:paraId="4E856E2B" w14:textId="77777777" w:rsidR="00B4251A" w:rsidRPr="004B28F3" w:rsidRDefault="00B4251A" w:rsidP="006D17DC"><w:pPr><w:rPr><w:lang w:val="en-US"/></w:rPr></w:pPr><w:r w:rsidRPr="004B28F3"><w:rPr><w:lang w:val="en-GB"/></w:rPr><w:t xml:space="preserve">Page </w:t></w:r><w:r w:rsidRPr="004B28F3"><w:rPr><w:lang w:val="en-GB"/></w:rPr><w:fldChar w:fldCharType="begin"/></w:r><w:r w:rsidRPr="004B28F3"><w:rPr><w:lang w:val="en-GB"/></w:rPr><w:instrText xml:space="preserve"> PAGE \* Arabic \* MERGEFORMAT </w:instrText></w:r><w:r w:rsidRPr="004B28F3"><w:rPr><w:lang w:val="en-GB"/></w:rPr><w:fldChar w:fldCharType="separate"/></w:r><w:r><w:rPr><w:noProof/><w:lang w:val="en-GB"/></w:rPr><w:t>4</w:t></w:r><w:r w:rsidRPr="004B28F3"><w:rPr><w:lang w:val="en-GB"/></w:rPr><w:fldChar w:fldCharType="end"/></w:r><w:r w:rsidRPr="004B28F3"><w:rPr><w:lang w:val="en-GB"/></w:rPr><w:t xml:space="preserve"> </w:t></w:r><w:r w:rsidRPr="004B28F3"><w:t xml:space="preserve">sur </w:t></w:r><w:r w:rsidRPr="004B28F3"><w:rPr><w:lang w:val="en-GB"/></w:rPr><w:fldChar w:fldCharType="begin"/></w:r><w:r w:rsidRPr="004B28F3"><w:rPr><w:lang w:val="en-GB"/></w:rPr><w:instrText xml:space="preserve"> NUMPAGES \* Arabic \* MERGEFORMAT </w:instrText></w:r><w:r w:rsidRPr="004B28F3"><w:rPr><w:lang w:val="en-GB"/></w:rPr><w:fldChar w:fldCharType="separate"/></w:r><w:r><w:rPr><w:noProof/><w:lang w:val="en-GB"/></w:rPr><w:t>3</w:t></w:r><w:r w:rsidRPr="004B28F3"><w:rPr><w:noProof/><w:lang w:val="en-GB"/></w:rPr><w:fldChar w:fldCharType="end"/></w:r></w:p></w:tc><w:tc><w:tcPr><w:tcW w:w="1579" w:type="pct"/><w:vAlign w:val="bottom"/></w:tcPr><w:p w14:paraId="6FE0353F" w14:textId="77777777" w:rsidR="00B4251A" w:rsidRPr="004B28F3" w:rsidRDefault="00B4251A" w:rsidP="006D17DC"><w:pPr><w:rPr><w:lang w:val="en-GB"/></w:rPr></w:pPr><w:r w:rsidRPr="004B28F3"><w:rPr><w:lang w:val="en-GB"/></w:rPr><w:fldChar w:fldCharType="begin"/></w:r><w:r w:rsidRPr="004B28F3"><w:rPr><w:lang w:val="en-GB"/></w:rPr><w:instrText xml:space="preserve"> STYLEREF .Classification \* MERGEFORMAT </w:instrText></w:r><w:r w:rsidRPr="004B28F3"><w:rPr><w:lang w:val="en-GB"/></w:rPr><w:fldChar w:fldCharType="separate"/></w:r><w:r w:rsidR="000C19BE"><w:rPr><w:noProof/><w:lang w:val="en-GB"/></w:rPr><w:t>Strictement confidentiel</w:t></w:r><w:r w:rsidRPr="004B28F3"><w:rPr><w:noProof/><w:lang w:val="en-GB"/></w:rPr><w:fldChar w:fldCharType="end"/></w:r></w:p></w:tc><w:tc><w:tcPr><w:tcW w:w="1632" w:type="pct"/><w:vAlign w:val="bottom"/></w:tcPr><w:p w14:paraId="0767929F" w14:textId="77777777" w:rsidR="00B4251A" w:rsidRPr="004B28F3" w:rsidRDefault="00B4251A" w:rsidP="006D17DC"><w:pPr><w:rPr><w:lang w:val="en-GB"/></w:rPr></w:pPr><w:r w:rsidRPr="004B28F3"><w:rPr><w:lang w:val="en-GB"/></w:rPr><w:fldChar w:fldCharType="begin"/></w:r><w:r w:rsidRPr="004B28F3"><w:rPr><w:lang w:val="en-GB"/></w:rPr><w:instrText xml:space="preserve"> STYLEREF .DateDue \* MERGEFORMAT </w:instrText></w:r><w:r w:rsidRPr="004B28F3"><w:rPr><w:lang w:val="en-GB"/></w:rPr><w:fldChar w:fldCharType="separate"/></w:r><w:r w:rsidR="000C19BE"><w:rPr><w:noProof/><w:lang w:val="en-GB"/></w:rPr><w:t>JJ/MM/AAAA</w:t></w:r><w:r w:rsidRPr="004B28F3"><w:rPr><w:noProof/><w:lang w:val="en-GB"/></w:rPr><w:fldChar w:fldCharType="end"/></w:r><w:r w:rsidRPr="004B28F3"><w:rPr><w:lang w:val="en-GB"/></w:rPr><w:t xml:space="preserve"> </w:t></w:r></w:p></w:tc></w:tr></w:tbl><w:p w14:paraId="1B6081BA" w14:textId="77777777" w:rsidR="00B4251A" w:rsidRPr="00B00DFC" w:rsidRDefault="00B4251A" w:rsidP="006D17DC"/></w:ftr>
data/examples/corpd/word/footer5.xml ADDED
@@ -0,0 +1,2 @@
 
 
 
1
+ <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
2
+ <w:ftr xmlns:wpc="http://schemas.microsoft.com/office/word/2010/wordprocessingCanvas" xmlns:cx="http://schemas.microsoft.com/office/drawing/2014/chartex" xmlns:cx1="http://schemas.microsoft.com/office/drawing/2015/9/8/chartex" xmlns:cx2="http://schemas.microsoft.com/office/drawing/2015/10/21/chartex" xmlns:cx3="http://schemas.microsoft.com/office/drawing/2016/5/9/chartex" xmlns:cx4="http://schemas.microsoft.com/office/drawing/2016/5/10/chartex" xmlns:cx5="http://schemas.microsoft.com/office/drawing/2016/5/11/chartex" xmlns:cx6="http://schemas.microsoft.com/office/drawing/2016/5/12/chartex" xmlns:cx7="http://schemas.microsoft.com/office/drawing/2016/5/13/chartex" xmlns:cx8="http://schemas.microsoft.com/office/drawing/2016/5/14/chartex" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:aink="http://schemas.microsoft.com/office/drawing/2016/ink" xmlns:am3d="http://schemas.microsoft.com/office/drawing/2017/model3d" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:oel="http://schemas.microsoft.com/office/2019/extlst" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:m="http://schemas.openxmlformats.org/officeDocument/2006/math" xmlns:v="urn:schemas-microsoft-com:vml" xmlns:wp14="http://schemas.microsoft.com/office/word/2010/wordprocessingDrawing" xmlns:wp="http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing" xmlns:w10="urn:schemas-microsoft-com:office:word" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml" xmlns:w15="http://schemas.microsoft.com/office/word/2012/wordml" xmlns:w16cex="http://schemas.microsoft.com/office/word/2018/wordml/cex" xmlns:w16cid="http://schemas.microsoft.com/office/word/2016/wordml/cid" xmlns:w16="http://schemas.microsoft.com/office/word/2018/wordml" xmlns:w16sdtdh="http://schemas.microsoft.com/office/word/2020/wordml/sdtdatahash" xmlns:w16se="http://schemas.microsoft.com/office/word/2015/wordml/symex" xmlns:wpg="http://schemas.microsoft.com/office/word/2010/wordprocessingGroup" xmlns:wpi="http://schemas.microsoft.com/office/word/2010/wordprocessingInk" xmlns:wne="http://schemas.microsoft.com/office/word/2006/wordml" xmlns:wps="http://schemas.microsoft.com/office/word/2010/wordprocessingShape" mc:Ignorable="w14 w15 w16se w16cid w16 w16cex w16sdtdh wp14"><w:p w14:paraId="7E6EEDB2" w14:textId="77777777" w:rsidR="00B4251A" w:rsidRPr="00A048B5" w:rsidRDefault="00B4251A" w:rsidP="00A048B5"><w:pPr><w:pStyle w:val="Pieddepage"/><w:rPr><w:sz w:val="10"/></w:rPr></w:pPr></w:p><w:tbl><w:tblPr><w:tblStyle w:val="Grilledutableau"/><w:tblW w:w="5000" w:type="pct"/><w:jc w:val="center"/><w:tblBorders><w:top w:val="single" w:sz="4" w:space="0" w:color="FF7900"/><w:left w:val="none" w:sz="0" w:space="0" w:color="auto"/><w:bottom w:val="none" w:sz="0" w:space="0" w:color="auto"/><w:right w:val="none" w:sz="0" w:space="0" w:color="auto"/><w:insideH w:val="none" w:sz="0" w:space="0" w:color="auto"/><w:insideV w:val="none" w:sz="0" w:space="0" w:color="auto"/></w:tblBorders><w:tblCellMar><w:left w:w="0" w:type="dxa"/><w:right w:w="0" w:type="dxa"/></w:tblCellMar><w:tblLook w:val="04A0" w:firstRow="1" w:lastRow="0" w:firstColumn="1" w:lastColumn="0" w:noHBand="0" w:noVBand="1"/></w:tblPr><w:tblGrid><w:gridCol w:w="3740"/><w:gridCol w:w="3314"/><w:gridCol w:w="3412"/></w:tblGrid><w:tr w:rsidR="00B4251A" w:rsidRPr="00C05DDA" w14:paraId="59F41E9A" w14:textId="77777777" w:rsidTr="005A01BC"><w:trPr><w:cantSplit/><w:trHeight w:hRule="exact" w:val="284"/><w:jc w:val="center"/></w:trPr><w:tc><w:tcPr><w:tcW w:w="5000" w:type="pct"/><w:gridSpan w:val="3"/><w:vAlign w:val="bottom"/></w:tcPr><w:p w14:paraId="00A1CAF7" w14:textId="77777777" w:rsidR="00B4251A" w:rsidRPr="006D17DC" w:rsidRDefault="00B4251A" w:rsidP="00A048B5"><w:pPr><w:pStyle w:val="Pieddepage"/></w:pPr><w:r><w:t>Table des matières</w:t></w:r></w:p></w:tc></w:tr><w:tr w:rsidR="00B4251A" w:rsidRPr="00C05DDA" w14:paraId="453311CE" w14:textId="77777777" w:rsidTr="005A01BC"><w:trPr><w:cantSplit/><w:trHeight w:hRule="exact" w:val="284"/><w:jc w:val="center"/></w:trPr><w:tc><w:tcPr><w:tcW w:w="1787" w:type="pct"/><w:vAlign w:val="bottom"/></w:tcPr><w:p w14:paraId="0546CE9F" w14:textId="77777777" w:rsidR="00B4251A" w:rsidRPr="00C05DDA" w:rsidRDefault="00B4251A" w:rsidP="00A048B5"><w:pPr><w:pStyle w:val="Pieddepage"/></w:pPr><w:r w:rsidRPr="00C05DDA"><w:t xml:space="preserve">Page </w:t></w:r><w:r w:rsidRPr="00C05DDA"><w:fldChar w:fldCharType="begin"/></w:r><w:r w:rsidRPr="00C05DDA"><w:instrText xml:space="preserve"> PAGE \* Arabic \* MERGEFORMAT </w:instrText></w:r><w:r w:rsidRPr="00C05DDA"><w:fldChar w:fldCharType="separate"/></w:r><w:r w:rsidR="00985F76"><w:rPr><w:noProof/></w:rPr><w:t>3</w:t></w:r><w:r w:rsidRPr="00C05DDA"><w:fldChar w:fldCharType="end"/></w:r><w:r w:rsidRPr="00C05DDA"><w:t xml:space="preserve"> sur </w:t></w:r><w:fldSimple w:instr=" NUMPAGES \* Arabic \* MERGEFORMAT "><w:r w:rsidR="00985F76"><w:rPr><w:noProof/></w:rPr><w:t>4</w:t></w:r></w:fldSimple></w:p></w:tc><w:tc><w:tcPr><w:tcW w:w="1583" w:type="pct"/><w:vAlign w:val="bottom"/></w:tcPr><w:p w14:paraId="08714C15" w14:textId="07120B3A" w:rsidR="00B4251A" w:rsidRPr="00C05DDA" w:rsidRDefault="00B4251A" w:rsidP="00A048B5"><w:pPr><w:pStyle w:val="Pieddepage"/><w:jc w:val="center"/><w:rPr><w:lang w:val="en-GB"/></w:rPr></w:pPr><w:r w:rsidRPr="00C05DDA"><w:rPr><w:lang w:val="en-GB"/></w:rPr><w:fldChar w:fldCharType="begin"/></w:r><w:r w:rsidRPr="00C05DDA"><w:rPr><w:lang w:val="en-GB"/></w:rPr><w:instrText xml:space="preserve"> STYLEREF .Classification \* MERGEFORMAT </w:instrText></w:r><w:r w:rsidRPr="00C05DDA"><w:rPr><w:lang w:val="en-GB"/></w:rPr><w:fldChar w:fldCharType="separate"/></w:r><w:r w:rsidR="00845F4B"><w:rPr><w:noProof/><w:lang w:val="en-GB"/></w:rPr><w:t>Strictement confidentiel</w:t></w:r><w:r w:rsidRPr="00C05DDA"><w:rPr><w:noProof/><w:lang w:val="en-GB"/></w:rPr><w:fldChar w:fldCharType="end"/></w:r></w:p></w:tc><w:tc><w:tcPr><w:tcW w:w="1630" w:type="pct"/><w:vAlign w:val="bottom"/></w:tcPr><w:p w14:paraId="7D807C72" w14:textId="34815E18" w:rsidR="00B4251A" w:rsidRPr="008408BC" w:rsidRDefault="00000000" w:rsidP="00A048B5"><w:pPr><w:pStyle w:val="Pieddepage"/><w:jc w:val="right"/></w:pPr><w:fldSimple w:instr=" STYLEREF .DateDue \* MERGEFORMAT "><w:r w:rsidR="00845F4B"><w:rPr><w:noProof/></w:rPr><w:t>JJ/MM/AAAA</w:t></w:r></w:fldSimple><w:r w:rsidR="00B4251A"><w:t xml:space="preserve"> </w:t></w:r></w:p></w:tc></w:tr></w:tbl><w:p w14:paraId="533EF75B" w14:textId="77777777" w:rsidR="00B4251A" w:rsidRPr="005F0C4E" w:rsidRDefault="00B4251A" w:rsidP="00A048B5"><w:pPr><w:pStyle w:val="Pieddepage"/><w:rPr><w:sz w:val="14"/></w:rPr></w:pPr></w:p></w:ftr>