summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordiskdance <106794417+diskdance@users.noreply.github.com>2023-04-05 22:07:40 +0800
committerGitHub <noreply@github.com>2023-04-05 16:07:40 +0200
commiteaca69091119e0ac5c97e626ba9e3b21b688c5ed (patch)
treeff94454e9d8729d54cee122c943bcf5364af8414
parent0e9c87bcf096908956e031f15a4e589e83be1691 (diff)
downloadpygments-git-eaca69091119e0ac5c97e626ba9e3b21b688c5ed.tar.gz
Add lexer for MediaWiki Wikitext (#2373)
-rw-r--r--AUTHORS1
-rw-r--r--pygments/lexers/_mapping.py1
-rw-r--r--pygments/lexers/markup.py737
-rw-r--r--tests/examplefiles/wikitext/article_france.wikitext973
-rw-r--r--tests/examplefiles/wikitext/article_france.wikitext.output108576
-rw-r--r--tests/snippets/wikitext/bold-italic.txt289
-rw-r--r--tests/snippets/wikitext/entity.txt185
-rw-r--r--tests/snippets/wikitext/extlink.txt292
-rw-r--r--tests/snippets/wikitext/heading.txt53
-rw-r--r--tests/snippets/wikitext/hr.txt42
-rw-r--r--tests/snippets/wikitext/html.txt449
-rw-r--r--tests/snippets/wikitext/language-converter.txt273
-rw-r--r--tests/snippets/wikitext/list.txt532
-rw-r--r--tests/snippets/wikitext/magic-link.txt52
-rw-r--r--tests/snippets/wikitext/magic-word.txt157
-rw-r--r--tests/snippets/wikitext/medialink.txt171
-rw-r--r--tests/snippets/wikitext/only-highlight-first-redirect.txt22
-rw-r--r--tests/snippets/wikitext/parser-function.txt2717
-rw-r--r--tests/snippets/wikitext/parser-tag.txt2133
-rw-r--r--tests/snippets/wikitext/signurature.txt24
-rw-r--r--tests/snippets/wikitext/table.txt2323
-rw-r--r--tests/snippets/wikitext/template.txt617
-rw-r--r--tests/snippets/wikitext/wikilink.txt772
23 files changed, 121390 insertions, 1 deletions
diff --git a/AUTHORS b/AUTHORS
index 8dd42e2d..20a8ca6a 100644
--- a/AUTHORS
+++ b/AUTHORS
@@ -265,5 +265,6 @@ Other contributors, listed alphabetically, are:
* Martin Fischer -- WCAG contrast testing
* Marc Auberer -- Spice lexer
* Amr Hesham -- Carbon lexer
+* diskdance -- Wikitext lexer
Many thanks for all contributions!
diff --git a/pygments/lexers/_mapping.py b/pygments/lexers/_mapping.py
index 94d4f312..05e9b32f 100644
--- a/pygments/lexers/_mapping.py
+++ b/pygments/lexers/_mapping.py
@@ -533,6 +533,7 @@ LEXERS = {
'WebIDLLexer': ('pygments.lexers.webidl', 'Web IDL', ('webidl',), ('*.webidl',), ()),
'WgslLexer': ('pygments.lexers.wgsl', 'WebGPU Shading Language', ('wgsl',), ('*.wgsl',), ('text/wgsl',)),
'WhileyLexer': ('pygments.lexers.whiley', 'Whiley', ('whiley',), ('*.whiley',), ('text/x-whiley',)),
+ 'WikitextLexer': ('pygments.lexers.markup', 'Wikitext', ('wikitext', 'mediawiki'), (), ('text/x-wiki',)),
'WoWTocLexer': ('pygments.lexers.wowtoc', 'World of Warcraft TOC', ('wowtoc',), ('*.toc',), ()),
'WrenLexer': ('pygments.lexers.wren', 'Wren', ('wren',), ('*.wren',), ()),
'X10Lexer': ('pygments.lexers.x10', 'X10', ('x10', 'xten'), ('*.x10',), ('text/x-x10',)),
diff --git a/pygments/lexers/markup.py b/pygments/lexers/markup.py
index 224bed0c..ec7da2e7 100644
--- a/pygments/lexers/markup.py
+++ b/pygments/lexers/markup.py
@@ -13,6 +13,8 @@ import re
from pygments.lexers.html import XmlLexer
from pygments.lexers.javascript import JavascriptLexer
from pygments.lexers.css import CssLexer
+from pygments.lexers.lilypond import LilyPondLexer
+from pygments.lexers.data import JsonLexer
from pygments.lexer import RegexLexer, DelegatingLexer, include, bygroups, \
using, this, do_insertions, default, words
@@ -23,7 +25,7 @@ from pygments.util import get_bool_opt, ClassNotFound
__all__ = ['BBCodeLexer', 'MoinWikiLexer', 'RstLexer', 'TexLexer', 'GroffLexer',
'MozPreprocHashLexer', 'MozPreprocPercentLexer',
'MozPreprocXulLexer', 'MozPreprocJavascriptLexer',
- 'MozPreprocCssLexer', 'MarkdownLexer', 'TiddlyWiki5Lexer']
+ 'MozPreprocCssLexer', 'MarkdownLexer', 'TiddlyWiki5Lexer', 'WikitextLexer']
class BBCodeLexer(RegexLexer):
@@ -763,3 +765,736 @@ class TiddlyWiki5Lexer(RegexLexer):
def __init__(self, **options):
self.handlecodeblocks = get_bool_opt(options, 'handlecodeblocks', True)
RegexLexer.__init__(self, **options)
+
+
+class WikitextLexer(RegexLexer):
+ """
+ For MediaWiki Wikitext.
+
+ Parsing Wikitext is tricky, and results vary between different MediaWiki installations,
+ so we only highlight common syntaxes (built-in or from popular extensions),
+ and also assume templates produce no unbalanced syntaxes.
+ """
+ name = 'Wikitext'
+ url = 'https://www.mediawiki.org/wiki/Wikitext'
+ aliases = ['wikitext', 'mediawiki']
+ filenames = []
+ mimetypes = ['text/x-wiki']
+ flags = re.MULTILINE
+
+ def nowiki_tag_rules(tag_name):
+ return [
+ (r'(?i)(</)({})(\s*)(>)'.format(tag_name), bygroups(Punctuation,
+ Name.Tag, Whitespace, Punctuation), '#pop'),
+ include('entity'),
+ include('text'),
+ ]
+
+ def plaintext_tag_rules(tag_name):
+ return [
+ (r'(?si)(.*?)(</)({})(\s*)(>)'.format(tag_name), bygroups(Text,
+ Punctuation, Name.Tag, Whitespace, Punctuation), '#pop'),
+ ]
+
+ def delegate_tag_rules(tag_name, lexer):
+ return [
+ (r'(?i)(</)({})(\s*)(>)'.format(tag_name), bygroups(Punctuation,
+ Name.Tag, Whitespace, Punctuation), '#pop'),
+ (r'(?si).+?(?=</{}\s*>)'.format(tag_name), using(lexer)),
+ ]
+
+ def text_rules(token):
+ return [
+ (r'\w+', token),
+ (r'[^\S\n]+', token),
+ (r'(?s).', token),
+ ]
+
+ def handle_syntaxhighlight(self, match, ctx):
+ from pygments.lexers import get_lexer_by_name
+
+ attr_content = match.group()
+ start = 0
+ index = 0
+ while True:
+ index = attr_content.find('>', start)
+ # Exclude comment end (-->)
+ if attr_content[index-2:index] != '--':
+ break
+ start = index + 1
+
+ if index == -1:
+ # No tag end
+ yield from self.get_tokens_unprocessed(attr_content, stack=['root', 'attr'])
+ return
+ attr = attr_content[:index]
+ yield from self.get_tokens_unprocessed(attr, stack=['root', 'attr'])
+ yield match.start(3) + index, Punctuation, '>'
+
+ lexer = None
+ content = attr_content[index+1:]
+ lang_match = re.findall(r'\blang=("|\'|)(\w+)(\1)', attr)
+
+ if len(lang_match) >= 1:
+ # Pick the last match in case of multiple matches
+ lang = lang_match[-1][1]
+ try:
+ lexer = get_lexer_by_name(lang)
+ except ClassNotFound:
+ pass
+
+ if lexer is None:
+ yield match.start() + index + 1, Text, content
+ else:
+ yield from lexer.get_tokens_unprocessed(content)
+
+ def handle_score(self, match, ctx):
+ attr_content = match.group()
+ start = 0
+ index = 0
+ while True:
+ index = attr_content.find('>', start)
+ # Exclude comment end (-->)
+ if attr_content[index-2:index] != '--':
+ break
+ start = index + 1
+
+ if index == -1:
+ # No tag end
+ yield from self.get_tokens_unprocessed(attr_content, stack=['root', 'attr'])
+ return
+ attr = attr_content[:index]
+ content = attr_content[index+1:]
+ yield from self.get_tokens_unprocessed(attr, stack=['root', 'attr'])
+ yield match.start(3) + index, Punctuation, '>'
+
+ lang_match = re.findall(r'\blang=("|\'|)(\w+)(\1)', attr)
+ # Pick the last match in case of multiple matches
+ lang = lang_match[-1][1] if len(lang_match) >= 1 else 'lilypond'
+
+ if lang == 'lilypond': # Case sensitive
+ yield from LilyPondLexer().get_tokens_unprocessed(content)
+ else: # ABC
+ # FIXME: Use ABC lexer in the future
+ yield match.start() + index + 1, Text, content
+
+ # a-z removed to prevent linter from complaining, REMEMBER to use (?i)
+ title_char = r' %!"$&\'()*,\-./0-9:;=?@A-Z\\\^_`~+\u0080-\uFFFF'
+ nbsp_char = r'(?:\t|&nbsp;|&\#0*160;|&\#[Xx]0*[Aa]0;|[ \xA0\u1680\u2000-\u200A\u202F\u205F\u3000])'
+ link_address = r'(?:[0-9.]+|\[[0-9a-f:.]+\]|[^\x00-\x20"<>\[\]\x7F\xA0\u1680\u2000-\u200A\u202F\u205F\u3000\uFFFD])'
+ link_char_class = r'[^\x00-\x20"<>\[\]\x7F\xA0\u1680\u2000-\u200A\u202F\u205F\u3000\uFFFD]'
+ double_slashes_i = {
+ '__FORCETOC__', '__NOCONTENTCONVERT__', '__NOCC__', '__NOEDITSECTION__', '__NOGALLERY__',
+ '__NOTITLECONVERT__', '__NOTC__', '__NOTOC__', '__TOC__',
+ }
+ double_slashes = {
+ '__EXPECTUNUSEDCATEGORY__', '__HIDDENCAT__', '__INDEX__', '__NEWSECTIONLINK__',
+ '__NOINDEX__', '__NONEWSECTIONLINK__', '__STATICREDIRECT__', '__NOGLOBAL__',
+ '__DISAMBIG__', '__EXPECTED_UNCONNECTED_PAGE__',
+ }
+ protocols = {
+ 'bitcoin:', 'ftp://', 'ftps://', 'geo:', 'git://', 'gopher://', 'http://', 'https://',
+ 'irc://', 'ircs://', 'magnet:', 'mailto:', 'mms://', 'news:', 'nntp://', 'redis://',
+ 'sftp://', 'sip:', 'sips:', 'sms:', 'ssh://', 'svn://', 'tel:', 'telnet://', 'urn:',
+ 'worldwind://', 'xmpp:', '//',
+ }
+ non_relative_protocols = protocols - {'//'}
+ html_tags = {
+ 'abbr', 'b', 'bdi', 'bdo', 'big', 'blockquote', 'br', 'caption', 'center', 'cite', 'code',
+ 'data', 'dd', 'del', 'dfn', 'div', 'dl', 'dt', 'em', 'font', 'h1', 'h2', 'h3', 'h4', 'h5',
+ 'h6', 'hr', 'i', 'ins', 'kbd', 'li', 'link', 'mark', 'meta', 'ol', 'p', 'q', 'rb', 'rp',
+ 'rt', 'rtc', 'ruby', 's', 'samp', 'small', 'span', 'strike', 'strong', 'sub', 'sup',
+ 'table', 'td', 'th', 'time', 'tr', 'tt', 'u', 'ul', 'var', 'wbr',
+ }
+ parser_tags = {
+ 'graph', 'charinsert', 'rss', 'chem', 'categorytree', 'nowiki', 'inputbox', 'math',
+ 'hiero', 'score', 'pre', 'ref', 'translate', 'imagemap', 'templatestyles', 'languages',
+ 'noinclude', 'mapframe', 'section', 'poem', 'syntaxhighlight', 'includeonly', 'tvar',
+ 'onlyinclude', 'templatedata', 'langconvert', 'timeline', 'dynamicpagelist', 'gallery',
+ 'maplink', 'ce', 'references',
+ }
+ variant_langs = {
+ # ZhConverter.php
+ 'zh', 'zh-hans', 'zh-hant', 'zh-cn', 'zh-hk', 'zh-mo', 'zh-my', 'zh-sg', 'zh-tw',
+ # UnConverter.php
+ 'uz', 'uz-latn', 'uz-cyrl',
+ # TlyConverter.php
+ 'tly', 'tly-cyrl',
+ # TgConverter.php
+ 'tg', 'tg-latn',
+ # SrConverter.php
+ 'sr', 'sr-ec', 'sr-el',
+ # ShiConverter.php
+ 'shi', 'shi-tfng', 'shi-latn',
+ # ShConverter.php
+ 'sh-latn', 'sh-cyrl',
+ # KuConverter.php
+ 'ku', 'ku-arab', 'ku-latn',
+ # KkConverter.php
+ 'kk', 'kk-cyrl', 'kk-latn', 'kk-arab', 'kk-kz', 'kk-tr', 'kk-cn',
+ # IuConverter.php
+ 'iu', 'ike-cans', 'ike-latn',
+ # GanConverter.php
+ 'gan', 'gan-hans', 'gan-hant',
+ # EnConverter.php
+ 'en', 'en-x-piglatin',
+ # CrhConverter.php
+ 'crh', 'crh-cyrl', 'crh-latn',
+ # BanConverter.php
+ 'ban', 'ban-bali', 'ban-x-dharma', 'ban-x-palmleaf', 'ban-x-pku',
+ }
+ magic_vars_i = {
+ 'ARTICLEPATH', 'INT', 'PAGEID', 'SCRIPTPATH', 'SERVER', 'SERVERNAME', 'STYLEPATH',
+ }
+ magic_vars = {
+ '!', '=', 'BASEPAGENAME', 'BASEPAGENAMEE', 'CASCADINGSOURCES', 'CONTENTLANGUAGE',
+ 'CONTENTLANG', 'CURRENTDAY', 'CURRENTDAY2', 'CURRENTDAYNAME', 'CURRENTDOW', 'CURRENTHOUR',
+ 'CURRENTMONTH', 'CURRENTMONTH2', 'CURRENTMONTH1', 'CURRENTMONTHABBREV', 'CURRENTMONTHNAME',
+ 'CURRENTMONTHNAMEGEN', 'CURRENTTIME', 'CURRENTTIMESTAMP', 'CURRENTVERSION', 'CURRENTWEEK',
+ 'CURRENTYEAR', 'DIRECTIONMARK', 'DIRMARK', 'FULLPAGENAME', 'FULLPAGENAMEE', 'LOCALDAY',
+ 'LOCALDAY2', 'LOCALDAYNAME', 'LOCALDOW', 'LOCALHOUR', 'LOCALMONTH', 'LOCALMONTH2',
+ 'LOCALMONTH1', 'LOCALMONTHABBREV', 'LOCALMONTHNAME', 'LOCALMONTHNAMEGEN', 'LOCALTIME',
+ 'LOCALTIMESTAMP', 'LOCALWEEK', 'LOCALYEAR', 'NAMESPACE', 'NAMESPACEE', 'NAMESPACENUMBER',
+ 'NUMBEROFACTIVEUSERS', 'NUMBEROFADMINS', 'NUMBEROFARTICLES', 'NUMBEROFEDITS',
+ 'NUMBEROFFILES', 'NUMBEROFPAGES', 'NUMBEROFUSERS', 'PAGELANGUAGE', 'PAGENAME', 'PAGENAMEE',
+ 'REVISIONDAY', 'REVISIONDAY2', 'REVISIONID', 'REVISIONMONTH', 'REVISIONMONTH1',
+ 'REVISIONSIZE', 'REVISIONTIMESTAMP', 'REVISIONUSER', 'REVISIONYEAR', 'ROOTPAGENAME',
+ 'ROOTPAGENAMEE', 'SITENAME', 'SUBJECTPAGENAME', 'ARTICLEPAGENAME', 'SUBJECTPAGENAMEE',
+ 'ARTICLEPAGENAMEE', 'SUBJECTSPACE', 'ARTICLESPACE', 'SUBJECTSPACEE', 'ARTICLESPACEE',
+ 'SUBPAGENAME', 'SUBPAGENAMEE', 'TALKPAGENAME', 'TALKPAGENAMEE', 'TALKSPACE', 'TALKSPACEE',
+ }
+ parser_functions_i = {
+ 'ANCHORENCODE', 'BIDI', 'CANONICALURL', 'CANONICALURLE', 'FILEPATH', 'FORMATNUM',
+ 'FULLURL', 'FULLURLE', 'GENDER', 'GRAMMAR', 'INT', r'\#LANGUAGE', 'LC', 'LCFIRST', 'LOCALURL',
+ 'LOCALURLE', 'NS', 'NSE', 'PADLEFT', 'PADRIGHT', 'PAGEID', 'PLURAL', 'UC', 'UCFIRST',
+ 'URLENCODE',
+ }
+ parser_functions = {
+ 'BASEPAGENAME', 'BASEPAGENAMEE', 'CASCADINGSOURCES', 'DEFAULTSORT', 'DEFAULTSORTKEY',
+ 'DEFAULTCATEGORYSORT', 'FULLPAGENAME', 'FULLPAGENAMEE', 'NAMESPACE', 'NAMESPACEE',
+ 'NAMESPACENUMBER', 'NUMBERINGROUP', 'NUMINGROUP', 'NUMBEROFACTIVEUSERS', 'NUMBEROFADMINS',
+ 'NUMBEROFARTICLES', 'NUMBEROFEDITS', 'NUMBEROFFILES', 'NUMBEROFPAGES', 'NUMBEROFUSERS',
+ 'PAGENAME', 'PAGENAMEE', 'PAGESINCATEGORY', 'PAGESINCAT', 'PAGESIZE', 'PROTECTIONEXPIRY',
+ 'PROTECTIONLEVEL', 'REVISIONDAY', 'REVISIONDAY2', 'REVISIONID', 'REVISIONMONTH',
+ 'REVISIONMONTH1', 'REVISIONTIMESTAMP', 'REVISIONUSER', 'REVISIONYEAR', 'ROOTPAGENAME',
+ 'ROOTPAGENAMEE', 'SUBJECTPAGENAME', 'ARTICLEPAGENAME', 'SUBJECTPAGENAMEE',
+ 'ARTICLEPAGENAMEE', 'SUBJECTSPACE', 'ARTICLESPACE', 'SUBJECTSPACEE', 'ARTICLESPACEE',
+ 'SUBPAGENAME', 'SUBPAGENAMEE', 'TALKPAGENAME', 'TALKPAGENAMEE', 'TALKSPACE', 'TALKSPACEE',
+ 'INT', 'DISPLAYTITLE', 'PAGESINNAMESPACE', 'PAGESINNS',
+ }
+
+ tokens = {
+ 'root': [
+ # Redirects
+ (r"""(?xi)
+ (\A\s*?)(\#REDIRECT:?) # may contain a colon
+ (\s+)(\[\[) (?=[^\]\n]* \]\]$)
+ """,
+ bygroups(Whitespace, Keyword, Whitespace, Punctuation), 'redirect-inner'),
+ # Subheadings
+ (r'^(={2,6})(.+?)(\1)(\s*$\n)',
+ bygroups(Generic.Subheading, Generic.Subheading, Generic.Subheading, Whitespace)),
+ # Headings
+ (r'^(=.+?=)(\s*$\n)',
+ bygroups(Generic.Heading, Whitespace)),
+ # Double-slashed magic words
+ (words(double_slashes_i, prefix=r'(?i)'), Name.Function.Magic),
+ (words(double_slashes), Name.Function.Magic),
+ # Raw URLs
+ (r'(?i)\b(?:{}){}{}*'.format('|'.join(protocols),
+ link_address, link_char_class), Name.Label),
+ # Magic links
+ (r'\b(?:RFC|PMID){}+[0-9]+\b'.format(nbsp_char),
+ Name.Function.Magic),
+ (r"""(?x)
+ \bISBN {nbsp_char}
+ (?: 97[89] {nbsp_dash}? )?
+ (?: [0-9] {nbsp_dash}? ){{9}} # escape format()
+ [0-9Xx]\b
+ """.format(nbsp_char=nbsp_char, nbsp_dash=f'(?:-|{nbsp_char})'), Name.Function.Magic),
+ include('list'),
+ include('inline'),
+ include('text'),
+ ],
+ 'redirect-inner': [
+ (r'(\]\])(\s*?\n)', bygroups(Punctuation, Whitespace), '#pop'),
+ (r'(\#)([^#]*?)', bygroups(Punctuation, Name.Label)),
+ (r'(?i)[{}]+'.format(title_char), Name.Tag),
+ ],
+ 'list': [
+ # Description lists
+ (r'^;', Keyword, 'dt'),
+ # Ordered lists, unordered lists and indents
+ (r'^[#:*]+', Keyword),
+ # Horizontal rules
+ (r'^-{4,}', Keyword),
+ ],
+ 'inline': [
+ # Signatures
+ (r'~{3,5}', Keyword),
+ # Entities
+ include('entity'),
+ # Bold & italic
+ (r"('')(''')(?!')", bygroups(Generic.Emph,
+ Generic.Strong), 'inline-italic-bold'),
+ (r"'''(?!')", Generic.Strong, 'inline-bold'),
+ (r"''(?!')", Generic.Emph, 'inline-italic'),
+ # Comments & parameters & templates
+ include('replaceable'),
+ # Media links
+ (
+ r"""(?xi)
+ (\[\[)
+ (File|Image) (:)
+ ([{}]*)
+ (?: (\#) ([{}]*?) )?
+ """.format(title_char, f'{title_char}#'),
+ bygroups(Punctuation, Name.Namespace, Punctuation,
+ Name.Tag, Punctuation, Name.Label),
+ 'medialink-inner'
+ ),
+ # Wikilinks
+ (
+ r"""(?xi)
+ (\[\[)(?!{}) # Should not contain URLs
+ (?: ([{}]*) (:))?
+ ([{}]*?)
+ (?: (\#) ([{}]*?) )?
+ (\]\])
+ """.format('|'.join(protocols), title_char.replace('/', ''),
+ title_char, f'{title_char}#'),
+ bygroups(Punctuation, Name.Namespace, Punctuation,
+ Name.Tag, Punctuation, Name.Label, Punctuation)
+ ),
+ (
+ r"""(?xi)
+ (\[\[)(?!{})
+ (?: ([{}]*) (:))?
+ ([{}]*?)
+ (?: (\#) ([{}]*?) )?
+ (\|)
+ """.format('|'.join(protocols), title_char.replace('/', ''),
+ title_char, f'{title_char}#'),
+ bygroups(Punctuation, Name.Namespace, Punctuation,
+ Name.Tag, Punctuation, Name.Label, Punctuation),
+ 'wikilink-inner'
+ ),
+ # External links
+ (
+ r"""(?xi)
+ (\[)
+ ((?:{}) {} {}*)
+ (\s*)
+ """.format('|'.join(protocols), link_address, link_char_class),
+ bygroups(Punctuation, Name.Label, Whitespace),
+ 'extlink-inner'
+ ),
+ # Tables
+ (r'^(:*)(\s*?)(\{\|)([^\n]*)$', bygroups(Keyword,
+ Whitespace, Punctuation, using(this, state=['root', 'attr'])), 'table'),
+ # HTML tags
+ (r'(?i)(<)({})\b'.format('|'.join(html_tags)),
+ bygroups(Punctuation, Name.Tag), 'tag-inner-ordinary'),
+ (r'(?i)(</)({})\b(\s*)(>)'.format('|'.join(html_tags)),
+ bygroups(Punctuation, Name.Tag, Whitespace, Punctuation)),
+ # <nowiki>
+ (r'(?i)(<)(nowiki)\b', bygroups(Punctuation,
+ Name.Tag), ('tag-nowiki', 'tag-inner')),
+ # <pre>
+ (r'(?i)(<)(pre)\b', bygroups(Punctuation,
+ Name.Tag), ('tag-pre', 'tag-inner')),
+ # <categorytree>
+ (r'(?i)(<)(categorytree)\b', bygroups(
+ Punctuation, Name.Tag), ('tag-categorytree', 'tag-inner')),
+ # <hiero>
+ (r'(?i)(<)(hiero)\b', bygroups(Punctuation,
+ Name.Tag), ('tag-hiero', 'tag-inner')),
+ # <math>
+ (r'(?i)(<)(math)\b', bygroups(Punctuation,
+ Name.Tag), ('tag-math', 'tag-inner')),
+ # <chem>
+ (r'(?i)(<)(chem)\b', bygroups(Punctuation,
+ Name.Tag), ('tag-chem', 'tag-inner')),
+ # <ce>
+ (r'(?i)(<)(ce)\b', bygroups(Punctuation,
+ Name.Tag), ('tag-ce', 'tag-inner')),
+ # <charinsert>
+ (r'(?i)(<)(charinsert)\b', bygroups(
+ Punctuation, Name.Tag), ('tag-charinsert', 'tag-inner')),
+ # <templatedata>
+ (r'(?i)(<)(templatedata)\b', bygroups(
+ Punctuation, Name.Tag), ('tag-templatedata', 'tag-inner')),
+ # <gallery>
+ (r'(?i)(<)(gallery)\b', bygroups(
+ Punctuation, Name.Tag), ('tag-gallery', 'tag-inner')),
+ # <graph>
+ (r'(?i)(<)(gallery)\b', bygroups(
+ Punctuation, Name.Tag), ('tag-graph', 'tag-inner')),
+ # <dynamicpagelist>
+ (r'(?i)(<)(dynamicpagelist)\b', bygroups(
+ Punctuation, Name.Tag), ('tag-dynamicpagelist', 'tag-inner')),
+ # <inputbox>
+ (r'(?i)(<)(inputbox)\b', bygroups(
+ Punctuation, Name.Tag), ('tag-inputbox', 'tag-inner')),
+ # <rss>
+ (r'(?i)(<)(rss)\b', bygroups(
+ Punctuation, Name.Tag), ('tag-rss', 'tag-inner')),
+ # <imagemap>
+ (r'(?i)(<)(imagemap)\b', bygroups(
+ Punctuation, Name.Tag), ('tag-imagemap', 'tag-inner')),
+ # <syntaxhighlight>
+ (r'(?i)(</)(syntaxhighlight)\b(\s*)(>)',
+ bygroups(Punctuation, Name.Tag, Whitespace, Punctuation)),
+ (r'(?si)(<)(syntaxhighlight)\b([^>]*?(?<!/)>.*?)(?=</\2\s*>)',
+ bygroups(Punctuation, Name.Tag, handle_syntaxhighlight)),
+ # <syntaxhighlight>: Fallback case for self-closing tags
+ (r'(?i)(<)(syntaxhighlight)\b(\s*?)((?:[^>]|-->)*?)(/\s*?(?<!--)>)', bygroups(
+ Punctuation, Name.Tag, Whitespace, using(this, state=['root', 'attr']), Punctuation)),
+ # <source>
+ (r'(?i)(</)(source)\b(\s*)(>)',
+ bygroups(Punctuation, Name.Tag, Whitespace, Punctuation)),
+ (r'(?si)(<)(source)\b([^>]*?(?<!/)>.*?)(?=</\2\s*>)',
+ bygroups(Punctuation, Name.Tag, handle_syntaxhighlight)),
+ # <source>: Fallback case for self-closing tags
+ (r'(?i)(<)(source)\b(\s*?)((?:[^>]|-->)*?)(/\s*?(?<!--)>)', bygroups(
+ Punctuation, Name.Tag, Whitespace, using(this, state=['root', 'attr']), Punctuation)),
+ # <score>
+ (r'(?i)(</)(score)\b(\s*)(>)',
+ bygroups(Punctuation, Name.Tag, Whitespace, Punctuation)),
+ (r'(?si)(<)(score)\b([^>]*?(?<!/)>.*?)(?=</\2\s*>)',
+ bygroups(Punctuation, Name.Tag, handle_score)),
+ # <score>: Fallback case for self-closing tags
+ (r'(?i)(<)(score)\b(\s*?)((?:[^>]|-->)*?)(/\s*?(?<!--)>)', bygroups(
+ Punctuation, Name.Tag, Whitespace, using(this, state=['root', 'attr']), Punctuation)),
+ # Other parser tags
+ (r'(?i)(<)({})\b'.format('|'.join(parser_tags)),
+ bygroups(Punctuation, Name.Tag), 'tag-inner-ordinary'),
+ (r'(?i)(</)({})\b(\s*)(>)'.format('|'.join(parser_tags)),
+ bygroups(Punctuation, Name.Tag, Whitespace, Punctuation)),
+ # LanguageConverter markups
+ (
+ r"""(?xi)
+ (-\{{) # Escape format()
+ (?: ([^|]) (\|))?
+ (?: (\s* (?:{variants}) \s*) (=>))?
+ (\s* (?:{variants}) \s*) (:)
+ """.format(variants='|'.join(variant_langs)),
+ bygroups(Punctuation, Keyword, Punctuation,
+ Name.Label, Operator, Name.Label, Punctuation),
+ 'lc-inner'
+ ),
+ (r'-\{', Punctuation, 'lc-raw'),
+ ],
+ 'wikilink-inner': [
+ # Quit in case of another wikilink
+ (r'(?=\[\[)', Punctuation, '#pop'),
+ (r'\]\]', Punctuation, '#pop'),
+ include('inline'),
+ include('text'),
+ ],
+ 'medialink-inner': [
+ (r'\]\]', Punctuation, '#pop'),
+ (r'(\|)([^\n=|]*)(=)',
+ bygroups(Punctuation, Name.Attribute, Operator)),
+ (r'\|', Punctuation),
+ include('inline'),
+ include('text'),
+ ],
+ 'quote-common': [
+ # Quit in case of link/template endings
+ (r'(?=\]\]|\{\{|\}\})', Punctuation, '#pop'),
+ (r'\n', Text, '#pop'),
+ ],
+ 'inline-italic': [
+ include('quote-common'),
+ (r"('')(''')(?!')", bygroups(Generic.Emph,
+ Generic.Strong), ('#pop', 'inline-bold')),
+ (r"'''(?!')", Generic.Strong, ('#pop', 'inline-italic-bold')),
+ (r"''(?!')", Generic.Emph, '#pop'),
+ include('inline'),
+ include('text-italic'),
+ ],
+ 'inline-bold': [
+ include('quote-common'),
+ (r"(''')('')(?!')", bygroups(
+ Generic.Strong, Generic.Emph), ('#pop', 'inline-italic')),
+ (r"'''(?!')", Generic.Strong, '#pop'),
+ (r"''(?!')", Generic.Emph, ('#pop', 'inline-bold-italic')),
+ include('inline'),
+ include('text-bold'),
+ ],
+ 'inline-bold-italic': [
+ include('quote-common'),
+ (r"('')(''')(?!')", bygroups(Generic.Emph,
+ Generic.Strong), '#pop'),
+ (r"'''(?!')", Generic.Strong, ('#pop', 'inline-italic')),
+ (r"''(?!')", Generic.Emph, ('#pop', 'inline-bold')),
+ include('inline'),
+ include('text-italic'),
+ ],
+ 'inline-italic-bold': [
+ include('quote-common'),
+ (r"(''')('')(?!')", bygroups(
+ Generic.Strong, Generic.Emph), '#pop'),
+ (r"'''(?!')", Generic.Strong, ('#pop', 'inline-italic')),
+ (r"''(?!')", Generic.Emph, ('#pop', 'inline-bold')),
+ include('text-bold'),
+ ],
+ 'lc-inner': [
+ (
+ r"""(?xi)
+ (;)
+ (?: (\s* (?:{variants}) \s*) (=>))?
+ (\s* (?:{variants}) \s*) (:)
+ """.format(variants='|'.join(variant_langs)),
+ bygroups(Punctuation, Name.Label,
+ Operator, Name.Label, Punctuation)
+ ),
+ (r';?\s*?\}-', Punctuation, '#pop'),
+ include('inline'),
+ include('text'),
+ ],
+ 'lc-raw': [
+ (r'\}-', Punctuation, '#pop'),
+ include('inline'),
+ include('text'),
+ ],
+ 'replaceable': [
+ # Comments
+ (r'<!--[\s\S]*?(?:-->|\Z)', Comment.Multiline),
+ # Parameters
+ (
+ r"""(?x)
+ (\{{3})
+ ([^|]*?)
+ (?=\}{3}|\|)
+ """,
+ bygroups(Punctuation, Name.Variable),
+ 'parameter-inner',
+ ),
+ # Magic variables
+ (r'(?i)(\{\{)(\s*)(%s)(\s*)(\}\})' % '|'.join(magic_vars_i),
+ bygroups(Punctuation, Whitespace, Name.Function, Whitespace, Punctuation)),
+ (r'(\{\{)(\s*)(%s)(\s*)(\}\})' % '|'.join(magic_vars),
+ bygroups(Punctuation, Whitespace, Name.Function, Whitespace, Punctuation)),
+ # Parser functions & templates
+ (r'\{\{', Punctuation, 'template-begin-space'),
+ # <tvar> legacy syntax
+ (r'(?i)(<)(tvar)\b(\|)([^>]*?)(>)', bygroups(Punctuation,
+ Name.Tag, Punctuation, String, Punctuation)),
+ (r'</>', Punctuation, '#pop'),
+ # <tvar>
+ (r'(?i)(<)(tvar)\b', bygroups(Punctuation, Name.Tag), 'tag-inner-ordinary'),
+ (r'(?i)(</)(tvar)\b(\s*)(>)',
+ bygroups(Punctuation, Name.Tag, Whitespace, Punctuation)),
+ ],
+ 'parameter-inner': [
+ (r'\}{3}', Punctuation, '#pop'),
+ (r'\|', Punctuation),
+ include('inline'),
+ include('text'),
+ ],
+ 'template-begin-space': [
+ # Templates allow line breaks at the beginning, and due to how MediaWiki handles
+ # comments, an extra state is required to handle things like {{\n<!---->\n name}}
+ (r'<!--[\s\S]*?(?:-->|\Z)', Comment.Multiline),
+ (r'\s+', Whitespace),
+ # Parser functions
+ (
+ r'(?i)(\#[%s]*?|%s)(:)' % (title_char,
+ '|'.join(parser_functions_i)),
+ bygroups(Name.Function, Punctuation), ('#pop', 'template-inner')
+ ),
+ (
+ r'(%s)(:)' % ('|'.join(parser_functions)),
+ bygroups(Name.Function, Punctuation), ('#pop', 'template-inner')
+ ),
+ # Templates
+ (
+ r'(?i)([%s]*?)(:)' % title_char,
+ bygroups(Name.Namespace, Punctuation), ('#pop', 'template-name')
+ ),
+ default(('#pop', 'template-name'),),
+ ],
+ 'template-name': [
+ (r'(\s*?)(\|)', bygroups(Text, Punctuation), ('#pop', 'template-inner')),
+ (r'\}\}', Punctuation, '#pop'),
+ (r'\n', Text, '#pop'),
+ include('replaceable'),
+ *text_rules(Name.Tag),
+ ],
+ 'template-inner': [
+ (r'\}\}', Punctuation, '#pop'),
+ (r'\|', Punctuation),
+ (
+ r"""(?x)
+ (?<=\|)
+ ( (?: (?! \{\{ | \}\} )[^=\|<])*? ) # Exclude templates and tags
+ (=)
+ """,
+ bygroups(Name.Label, Operator)
+ ),
+ include('inline'),
+ include('text'),
+ ],
+ 'table': [
+ # Use [ \t\n\r\0\x0B] instead of \s to follow PHP trim() behavior
+ # Endings
+ (r'^([ \t\n\r\0\x0B]*?)(\|\})',
+ bygroups(Whitespace, Punctuation), '#pop'),
+ # Table rows
+ (r'^([ \t\n\r\0\x0B]*?)(\|-+)(.*)$', bygroups(Whitespace, Punctuation,
+ using(this, state=['root', 'attr']))),
+ # Captions
+ (
+ r"""(?x)
+ ^([ \t\n\r\0\x0B]*?)(\|\+)
+ # Exclude links, template and tags
+ (?: ( (?: (?! \[\[ | \{\{ )[^|\n<] )*? )(\|) )?
+ (.*?)$
+ """,
+ bygroups(Whitespace, Punctuation, using(this, state=[
+ 'root', 'attr']), Punctuation, Generic.Heading),
+ ),
+ # Table data
+ (
+ r"""(?x)
+ ( ^(?:[ \t\n\r\0\x0B]*?)\| | \|\| )
+ (?: ( (?: (?! \[\[ | \{\{ )[^|\n<] )*? )(\|)(?!\|) )?
+ """,
+ bygroups(Punctuation, using(this, state=[
+ 'root', 'attr']), Punctuation),
+ ),
+ # Table headers
+ (
+ r"""(?x)
+ ( ^(?:[ \t\n\r\0\x0B]*?)! )
+ (?: ( (?: (?! \[\[ | \{\{ )[^|\n<] )*? )(\|)(?!\|) )?
+ """,
+ bygroups(Punctuation, using(this, state=[
+ 'root', 'attr']), Punctuation),
+ 'table-header',
+ ),
+ include('list'),
+ include('inline'),
+ include('text'),
+ ],
+ 'table-header': [
+ # Requires another state for || handling inside headers
+ (r'\n', Text, '#pop'),
+ (
+ r"""(?x)
+ (!!|\|\|)
+ (?:
+ ( (?: (?! \[\[ | \{\{ )[^|\n<] )*? )
+ (\|)(?!\|)
+ )?
+ """,
+ bygroups(Punctuation, using(this, state=[
+ 'root', 'attr']), Punctuation)
+ ),
+ *text_rules(Generic.Subheading),
+ ],
+ 'entity': [
+ (r'&\S*?;', Name.Entity),
+ ],
+ 'dt': [
+ (r'\n', Text, '#pop'),
+ include('inline'),
+ (r':', Keyword, '#pop'),
+ include('text'),
+ ],
+ 'extlink-inner': [
+ (r'\]', Punctuation, '#pop'),
+ include('inline'),
+ include('text'),
+ ],
+ 'nowiki-ish': [
+ include('entity'),
+ include('text'),
+ ],
+ 'attr': [
+ include('replaceable'),
+ (r'\s+', Whitespace),
+ (r'(=)(\s*)(")', bygroups(Operator, Whitespace, String.Double), 'attr-val-2'),
+ (r"(=)(\s*)(')", bygroups(Operator, Whitespace, String.Single), 'attr-val-1'),
+ (r'(=)(\s*)', bygroups(Operator, Whitespace), 'attr-val-0'),
+ (r'[\w:-]+', Name.Attribute),
+
+ ],
+ 'attr-val-0': [
+ (r'\s', Whitespace, '#pop'),
+ include('replaceable'),
+ *text_rules(String),
+ ],
+ 'attr-val-1': [
+ (r"'", String.Single, '#pop'),
+ include('replaceable'),
+ *text_rules(String.Single),
+ ],
+ 'attr-val-2': [
+ (r'"', String.Double, '#pop'),
+ include('replaceable'),
+ *text_rules(String.Double),
+ ],
+ 'tag-inner-ordinary': [
+ (r'/?\s*>', Punctuation, '#pop'),
+ include('tag-attr'),
+ ],
+ 'tag-inner': [
+ # Return to root state for self-closing tags
+ (r'/\s*>', Punctuation, '#pop:2'),
+ (r'\s*>', Punctuation, '#pop'),
+ include('tag-attr'),
+ ],
+ # There states below are just like their non-tag variants, the key difference is
+ # they forcibly quit when encountering tag closing markup
+ 'tag-attr': [
+ include('replaceable'),
+ (r'\s+', Whitespace),
+ (r'(=)(\s*)(")', bygroups(Operator,
+ Whitespace, String.Double), 'tag-attr-val-2'),
+ (r"(=)(\s*)(')", bygroups(Operator,
+ Whitespace, String.Single), 'tag-attr-val-1'),
+ (r'(=)(\s*)', bygroups(Operator, Whitespace), 'tag-attr-val-0'),
+ (r'[\w:-]+', Name.Attribute),
+
+ ],
+ 'tag-attr-val-0': [
+ (r'\s', Whitespace, '#pop'),
+ (r'/?>', Punctuation, '#pop:2'),
+ include('replaceable'),
+ *text_rules(String),
+ ],
+ 'tag-attr-val-1': [
+ (r"'", String.Single, '#pop'),
+ (r'/?>', Punctuation, '#pop:2'),
+ include('replaceable'),
+ *text_rules(String.Single),
+ ],
+ 'tag-attr-val-2': [
+ (r'"', String.Double, '#pop'),
+ (r'/?>', Punctuation, '#pop:2'),
+ include('replaceable'),
+ *text_rules(String.Double),
+ ],
+ 'tag-nowiki': nowiki_tag_rules('nowiki'),
+ 'tag-pre': nowiki_tag_rules('pre'),
+ 'tag-categorytree': plaintext_tag_rules('categorytree'),
+ 'tag-dynamicpagelist': plaintext_tag_rules('dynamicpagelist'),
+ 'tag-hiero': plaintext_tag_rules('hiero'),
+ 'tag-inputbox': plaintext_tag_rules('inputbox'),
+ 'tag-imagemap': plaintext_tag_rules('imagemap'),
+ 'tag-charinsert': plaintext_tag_rules('charinsert'),
+ 'tag-timeline': plaintext_tag_rules('timeline'),
+ 'tag-gallery': plaintext_tag_rules('gallery'),
+ 'tag-graph': plaintext_tag_rules('graph'),
+ 'tag-rss': plaintext_tag_rules('rss'),
+ 'tag-math': delegate_tag_rules('math', TexLexer),
+ 'tag-chem': delegate_tag_rules('chem', TexLexer),
+ 'tag-ce': delegate_tag_rules('ce', TexLexer),
+ 'tag-templatedata': delegate_tag_rules('templatedata', JsonLexer),
+ 'text-italic': text_rules(Generic.Emph),
+ 'text-bold': text_rules(Generic.Strong),
+ 'text': text_rules(Text),
+ }
diff --git a/tests/examplefiles/wikitext/article_france.wikitext b/tests/examplefiles/wikitext/article_france.wikitext
new file mode 100644
index 00000000..21baac4a
--- /dev/null
+++ b/tests/examplefiles/wikitext/article_france.wikitext
@@ -0,0 +1,973 @@
+{{Short description|Country located primarily in Western Europe}}
+{{Other uses}}
+{{Redirect|La France|other uses|Lafrance (disambiguation){{!}}Lafrance}}
+{{Redirect|French Republic|previous republics|French Republics (disambiguation){{!}}French Republics}}
+{{Pp-vandalism|small=yes}}
+
+{{Coord|47|N|2|E|type:country_region:FR|display=title}}
+
+{{Use British English|date=July 2022}}
+
+{{Use dmy dates|date=March 2022}}
+{{Infobox country
+| conventional_long_name = French Republic
+| common_name = France
+| native_name = {{Native name|fr|République française}}
+| image_flag = Flag of France.svg
+| image_coat = Armoiries république française.svg
+| symbol_width = 75px
+| symbol_type = [[Diplomatic emblem of France|Emblem]]{{Efn-ur|The current [[Constitution of France]] does not specify a national emblem.<ref>{{Cite constitution|article=II|polity=France|date=1958}}</ref> This [[Diplomatic emblem of France|emblem]] is used by the [[President of France|President]], [[Ministry for Europe and Foreign Affairs]],<ref>{{Cite web |date=20 November 2012 |title=The lictor's fasces |url=https://www.elysee.fr/en/french-presidency/the-lictor-s-fasces |website=elysee.fr |language=en}}</ref> and is on the cover of [[French passport]]s. For other symbols, see [[National symbols of France]].}}
+| other_symbol = <div style="padding:0.3em">[[File:Great Seal of France.svg|100px|Obverse]] [[File:Great Seal of France (reverse).svg|100px|Reverse]]</div>
+| other_symbol_type = [[Great Seal of France|Great Seal]]
+| national_motto = "{{Lang|fr|[[Liberté, égalité, fraternité]]|italics=no}}"
+| englishmotto = ("Liberty, Equality, Fraternity")
+| national_anthem = "[[La Marseillaise]]"<br/><div style="display:inline-block;margin-top:0.4em">[[File:La Marseillaise.ogg|alt=sound clip of the Marseillaise French national anthem]]</div>
+| image_map = {{Switcher|[[File:EU-France (orthographic projection).svg|upright=1.15|frameless]]|France on the globe centred on Europe|[[File:EU-France.svg|upright=1.15|frameless]]|[[Metropolitan France]] (European part of France) in Europe|[[File:France in the World (+Antarctica claims).svg|upright=1.15|frameless]]|France and its overseas territories in the world|default=1}}
+| map_caption = {{Map caption|location_color=red or dark green|country=France|region=Europe|region_color=dark grey|subregion=the European Union|subregion_color=green|unbulleted list|Location of the territory of the (red)|[[Adélie Land]] (Antarctic claim; hatched)}}
+| capital = [[Paris]]
+| coordinates = {{Coord|48|51|N|2|21|E|type:city}}
+| largest_city = capital
+| languages_type = Official language<br/>{{Nobold|and national language}}
+| languages = [[French language|French]]{{Efn-ur|name=one|For information about regional languages see [[Languages of France]].}}{{Infobox|child=yes
+| regional_languages = See [[Languages of France]]
+| label1 = Nationality {{Nobold|(2021)}}
+| data1 = {{Unbulleted list|92.3% [[French people|French]]|7.7% Others<ref>{{Cite web |date=August 5, 2022 |title=Share of the population in France 2021, by nationality status |url=https://www.statista.com/statistics/466028/distribution-population-nationality-france/ |website=statista.com}}</ref>}}}}
+| religion_ref = <ref>{{Cite web |last=El Karoui |first=Hakim |date=2016-09-19 |title=A French Islam is possible |url=https://www.institutmontaigne.org/ressources/publications-pdfs/a-french-islam-is-possible-report.pdf |access-date=5 September 2022 |website=Institut Montaigne |language=en}}</ref>
+| religion_year = 2016
+| religion = {{Ublist|item_style=white-space:nowrap;
+|51.1% [[Christianity in France|Christianity]]
+|39.6% [[Irreligion in France|No religion]]
+|5.6% [[Islam in France|Islam]]
+|0.8% [[History of the Jews in France|Judaism]]
+|2.5% Others
+}}
+| demonym = French
+| government_type = [[Unitary state|Unitary]] [[Semi-presidential system|semi-presidential]] [[republic]]
+| leader_title1 = [[President of France|President]]
+| leader_name1 = [[Emmanuel Macron]]
+| leader_title2 = [[Prime Minister of France|Prime Minister]]
+| leader_name2 = [[Élisabeth Borne]]
+| legislature = [[French Parliament|Parliament]]
+| upper_house = [[Senate (France)|Senate]]
+| lower_house = [[National Assembly (France)|National Assembly]]
+| sovereignty_type = [[History of France|Establishment]]
+| established_event1 = [[West Francia|Kingdom of the West Franks]] - [[Treaty of Verdun]]
+| established_date1 = 10 August 843
+| established_event2 = [[Kingdom of France]] - [[List of French monarchs#House of Capet (987–1792)|Capetian rulers of France]]
+| established_date2 = 3 July 987
+| established_event3 = [[Proclamation of the abolition of the monarchy|French Republic]] - [[French First Republic]]
+| established_date3 = 22 September 1792
+| established_event4 = [[Enlargement of the European Union#Founding members|Founded]] the [[European Economic Community|EEC]]{{Efn-ur|[[European Union]] since 1993}}
+| established_date4 = 1 January 1958
+| established_event5 = [[Constitution of France|Current&nbsp;constitution]] - [[French Fifth Republic]]
+| established_date5 = 4 October 1958
+| area_km2 = 643,801
+| area_footnote = <ref name="Field Listing :: Area">{{Cite web |title=Field Listing :: Area |url=https://www.cia.gov/library/publications/the-world-factbook/fields/2147.html |url-status=dead |archive-url=https://web.archive.org/web/20140131115000/https://www.cia.gov/library/publications/the-world-factbook/fields/2147.html |archive-date=31 January 2014 |access-date=1 November 2015 |website=The World Factbook |publisher=CIA}} {{PD-notice}}</ref>
+| area_rank = 42nd <!-- Area rank should match [[List of countries and dependencies by area]] -->
+| area_sq_mi = 248,600 <!--Do not remove per [[Wikipedia:Manual of Style/Dates and numbers|WP:MOSNUM]] -->
+| area_label2 = [[Metropolitan France]] ([[Institut géographique national|IGN]])
+| area_data2 = {{Cvt|551695|km2}}{{Efn-ur|name=three|French [[Institut géographique national|National Geographic Institute]] data, which includes bodies of water}} ([[List of countries and dependencies by area|50th]])
+| area_label3 = Metropolitan France ([[Cadastre]])
+| area_data3 = {{Cvt|543940.9|km2}}{{Efn-ur|name=four|French [[Land registration|Land Register]] data, which exclude lakes, ponds and [[glacier]]s larger than 1 km<sup>2</sup> (0.386 sq mi or 247 acres) as well as the estuaries of rivers}}<ref>{{Cite journal |year=2011 |title=France Métropolitaine |url=http://www.insee.fr/fr/themes/comparateur.asp?codgeo=METRODOM-1 |url-status=dead |journal=INSEE |archive-url=https://web.archive.org/web/20150828051307/http://www.insee.fr/fr/themes/comparateur.asp?codgeo=METRODOM-1 |archive-date=28 August 2015}}</ref> ([[List of countries and dependencies by area|50th]])
+| population_estimate = {{IncreaseNeutral}} 68,042,591<ref name="pop_est">{{Cite web |date=17 January 2023 |title=Bilan démographique 2022 - Composantes de la croissance démographique, France |url=https://www.insee.fr/fr/statistiques/6686993?sommaire=6686521#titre-bloc-1 |access-date=2022-01-27 |website=Insee}}</ref>
+| percent_water = 0.86 (2015)<ref>{{Cite web |title=Surface water and surface water change |url=https://stats.oecd.org/Index.aspx?DataSetCode=SURFACE_WATER# |access-date=11 October 2020 |publisher=Organisation for Economic Co-operation and Development (OECD)}}</ref>
+| population_estimate_year = January 2023
+| population_estimate_rank = 20th
+| population_label2 = Density
+| population_data2 = {{Pop density|67897000|643801|km2}} ([[List of countries and territories by population density|106th]])
+| population_label3 = Metropolitan France, estimate {{As of|lc=y|January 2023}}
+| population_data3 = {{IncreaseNeutral}} 65,834,837<ref>{{Cite web |date=17 January 2023 |title=Bilan démographique 2022 - Composantes de la croissance démographique, France métropolitaine |url=https://www.insee.fr/fr/statistiques/6686993?sommaire=6686521#titre-bloc-3 |access-date=2022-01-27 |website=Insee}}</ref> ([[List of countries and dependencies by population|23rd]])
+| population_density_km2 = 121
+| population_density_sq_mi = 313 <!-- Do not remove per [[Wikipedia:Manual of Style/Dates and numbers|WP:MOSNUM]] -->
+| pop_den_footnote =
+| population_density_rank = 89th
+| GDP_PPP = {{Increase}} $3.667 trillion<ref name="IMFWEOFR">{{Cite web |title=World Economic Outlook Database, October 2021 |url=https://www.imf.org/en/Publications/WEO/weo-database/2021/October/weo-report?c=132,&s=NGDP_RPCH,NGDPD,PPPGDP,NGDPDPC,PPPPC,&sy=2016&ey=2026&ssm=0&scsm=1&scc=0&ssd=1&ssc=0&sic=0&sort=country&ds=.&br=1 |access-date=25 February 2022 |website=imf.org |publisher=International Monetary Fund}}</ref>
+| GDP_PPP_year = 2022
+| GDP_PPP_rank = 10th
+| GDP_PPP_per_capita = {{Increase}} $56,036<ref name="IMFWEOFR" />
+| GDP_PPP_per_capita_rank = 24th
+| GDP_nominal = {{Increase}} $2.936 trillion<ref name="IMFWEOFR" />
+| GDP_nominal_year = 2022
+| GDP_nominal_rank = 7th
+| GDP_nominal_per_capita = {{Increase}} $44,747<ref name="IMFWEOFR" />
+| GDP_nominal_per_capita_rank = 28th
+| Gini = 29.3 <!-- number only -->
+| Gini_year = 2020
+| Gini_change = increase <!-- increase/decrease/steady -->
+| Gini_ref = <ref name="eurogini">{{Cite web |title=Gini coefficient of equivalised disposable income – EU-SILC survey |url=https://ec.europa.eu/eurostat/databrowser/view/tessi190/default/table?lang=en |access-date=21 June 2022 |website=ec.europa.eu |publisher=[[Eurostat]]}}</ref>
+| Gini_rank =
+| HDI = 0.903 <!-- number only -->
+| HDI_year = 2021 <!-- Please use the year to which the data refers, not the publication year -->
+| HDI_change = increase <!-- increase/decrease/steady -->
+| HDI_ref = <ref name="UNHDR">{{Cite web |date=8 September 2022 |title=Human Development Report 2021/2022 |url=https://hdr.undp.org/system/files/documents/global-report-document/hdr2021-22pdf_1.pdf |access-date=8 September 2022 |publisher=[[United Nations Development Programme]] |language=en}}</ref>
+| HDI_rank = 28th
+| currency = {{Unbulleted list
+| [[Euro]] ([[Euro sign|€]]) ([[ISO 4217|EUR]]){{Efn-ur|name=six|Whole of the except the overseas territories in the Pacific Ocean}}
+| [[CFP franc]] (XPF){{Efn-ur|name=seven|French overseas territories in the Pacific Ocean only}}
+}}
+| time_zone = [[Central European Time]]
+| utc_offset = +1
+| utc_offset_DST = +2
+| time_zone_DST = [[Central European Summer Time]]{{Efn-ur|name=eight|Daylight saving time is observed in metropolitan France and [[Saint Pierre and Miquelon]] only.}}
+| DST_note = Note: Various other time zones are observed in overseas France.{{Efn-ur|name=nine|Time zones across the span from UTC−10 ([[French Polynesia]]) to UTC+12 ([[Wallis and Futuna]])}}<br/> Although France is in the [[Coordinated Universal Time|UTC]] (Z) ([[Western European Time]]) zone, [[UTC+01:00]] ([[Central European Time]]) was enforced as the standard time since 25 February 1940, upon [[German military administration in occupied France during World War II|German occupation in WW2]], with a +0:50:39 offset (and +1:50:39 during [[Daylight saving time|DST]]) from Paris [[Local mean time|LMT]] (UTC+0:09:21).<ref>{{Cite web |title=Time Zone & Clock Changes in Paris, Île-de-France, France |url=https://www.timeanddate.com/time/zone/france/paris |access-date=9 October 2021 |website=timeanddate.com}}</ref>
+| date_format = dd/mm/yyyy ([[Anno Domini|AD]])
+| drives_on = right
+| calling_code = [[Telephone numbers in France|+33]]{{Efn-ur|name=eleven|The overseas regions and collectivities form part of the [[Telephone numbers in France|French telephone numbering plan]], but have their own country calling codes: [[Guadeloupe]] +590; [[Martinique]] +596; [[French Guiana]] +594; [[Réunion]] and [[Mayotte]] +262; [[Saint Pierre and Miquelon]] +508. The overseas territories are not part of the French telephone numbering plan; their country calling codes are: [[New Caledonia]] +687; [[French Polynesia]] +689; [[Wallis and Futuna]] +681.}}
+| cctld = [[.fr]]{{Efn-ur|name=ten|In addition to [[.fr]], several other Internet TLDs are used in French overseas ''départements'' and territories: [[.re]], [[.mq]], [[.gp]], [[.tf]], [[.nc]], [[.pf]], [[.wf]], [[.pm]], [[.gf]] and [[.yt]]. France also uses [[.eu]], shared with other members of the European Union. The [[.cat]] domain is used in [[Catalan Countries|Catalan-speaking territories]].}}
+| footnotes = Source gives area of metropolitan France as 551,500 km<sup>2</sup> (212,900 sq mi) and lists overseas regions separately, whose areas sum to 89,179 km<sup>2</sup> (34,432 sq mi). Adding these give the total shown here for the entire French Republic. The CIA reports the total as 643,801 km<sup>2</sup> (248,573 sq mi).
+| flag_p1 = Flag of France (1794–1815, 1830–1974, 2020–present).svg
+}}
+
+'''France''' ({{IPA-fr|fʁɑ̃s|lang|LL-Q150 (fra)-Fhala.K-France.wav|attribution=no}})<!-- Do not add English pronunciation per [[Wikipedia:Manual of Style/Lead Section]] -->, officially the '''French Republic''' ({{Lang-fr|link=no|République française}} {{IPA-fr|ʁepyblik frɑ̃sɛz|}}),<ref name="formal country name">{{Cite web |title=France |url=https://unstats.un.org/unsd/geoinfo/geonames/ |access-date=27 November 2020 |website=UNGEGN World Geographical Names |publisher=United Nations Group of Experts on Geographical Names |location=New York, NY}}</ref> is a country located primarily in [[Western Europe]]. It also includes [[Overseas France|overseas regions and territories]] in the [[Americas]] and the [[Atlantic Ocean|Atlantic]], [[Pacific Ocean|Pacific]] and [[Indian Ocean]]s,{{Efn-ur|name=twelve|[[French Guiana]] is in South America; [[Guadeloupe]] and [[Martinique]] are in the Caribbean Sea; and [[Réunion]] and [[Mayotte]] are in the Indian Ocean, off the coast of Africa. All five [[Administrative divisions of France|are considered integral parts of the French Republic]]. France also comprises [[Saint Pierre and Miquelon]] in North America; [[Saint Barthélemy]] and [[Saint Martin (island)|Saint Martin]] in the Caribbean; [[French Polynesia]], [[New Caledonia]], [[Wallis and Futuna]] and [[Clipperton Island]] in the Pacific Ocean; and the [[French Southern and Antarctic Lands]].}} giving it one of the largest discontiguous [[exclusive economic zone]]s in the world. Its [[Metropolitan France|metropolitan area]] extends from the [[Rhine]] to the Atlantic Ocean and from the [[Mediterranean Sea]] to the [[English Channel]] and the [[North Sea]]; overseas territories include [[French Guiana]] in [[South America]], [[Saint Pierre and Miquelon]] in the North Atlantic, the [[French West Indies]], and many islands in [[Oceania]] and the Indian Ocean. Its [[Regions of France|eighteen integral regions]] (five of which are overseas) span a combined area of {{Cvt|643801|km2}} and had a total population of over 68 million {{As of|2023|January|lc=y}}.<ref name="Field Listing :: Area" /><ref name=pop_est/> France is a [[Unitary state|unitary]] [[Semi-presidential system|semi-presidential]] [[republic]] with its capital in [[Paris]], the country's [[List of communes in France with over 20,000 inhabitants|largest city]] and main cultural and commercial centre; other major [[Urban area (France)|urban areas]] include [[Marseille]], [[Lyon]], [[Toulouse]], [[Lille]], [[Bordeaux]], and [[Nice]].
+
+Inhabited since the [[Upper Paleolithic|Palaeolithic]] era, the territory of Metropolitan France was settled by [[List of ancient Celtic peoples and tribes|Celtic tribes]] known as [[Gauls]] during the [[Iron Age]]. [[Roman Gaul|Rome annexed the area]] in 51 BC, leading to a distinct [[Gallo-Roman culture]] that laid the foundation of the [[French language]]. The [[Germanic peoples|Germanic]] [[Franks]] formed the Kingdom of [[Francia]], which became the heartland of the [[Carolingian Empire]]. The [[Treaty of Verdun]] of 843 partitioned the empire, with [[West Francia]] becoming the [[Kingdom of France]] in 987. In the [[High Middle Ages]], France was a powerful but highly decentralised [[Feudalism|feudal]] kingdom. [[Philip II of France|Philip II]] successfully strengthened royal power and [[Battle of Bouvines|defeated his rivals]] to double the size of the [[Crown lands of France|crown lands]]; by the end of his reign, France had emerged as the most powerful state in Europe. From the mid-14th to the mid-15th century, France was plunged into a series of dynastic conflicts involving [[Kingdom of England|England]], collectively known as the [[Hundred Years' War]], and a distinct French identity emerged as a result. The [[French Renaissance]] saw art and culture flourish, conflict with the [[House of Habsburg]], and the establishment of a [[French colonial empire|global colonial empire]], which by the 20th century would become the second-largest in the world.<ref name=":8">{{Cite book |url=https://books.google.com/books?id=UX8aeX_Lbi4C&pg=PA1 |title=Memory, Empire, and Postcolonialism: Legacies of French Colonialism |publisher=Lexington Books |year=2005 |isbn=978-0-7391-0821-5 |editor-last=Hargreaves, Alan G. |page=1}}</ref> The second half of the 16th century was dominated by [[French Wars of Religion|religious civil wars]] between [[Catholic Church|Catholics]] and [[Huguenots]] that severely weakened the country. France again emerged as Europe's dominant power in the 17th century under [[Louis XIV]] following the [[Thirty Years' War]].<ref>{{Cite book |last1=R.R. Palmer |url=https://archive.org/details/historyofmodernw00palm |title=A History of the Modern World |last2=Joel Colton |year=1978 |edition=5th |page=[https://archive.org/details/historyofmodernw00palm/page/161 161] |url-access=registration}}</ref> Inadequate economic policies, inequitable taxes and frequent wars (notably a defeat in the [[Seven Years' War]] and costly [[France in the American Revolutionary War|involvement in the American War of Independence]]) left the kingdom in a precarious economic situation by the end of the 18th century. This precipitated the [[French Revolution]] of 1789, which overthrew the {{Lang|fr|[[Ancien Régime]]|italic=no}} and produced the [[Declaration of the Rights of Man and of the Citizen|Declaration of the Rights of Man]], which expresses the nation's ideals to this day.
+
+France reached its political and military zenith in the early 19th century under [[Napoleon|Napoleon Bonaparte]], subjugating much of continental Europe and establishing the [[First French Empire]]. The [[French Revolutionary Wars|French Revolutionary]] and [[Napoleonic Wars]] shaped the course of European and world history. The collapse of the empire initiated a period of relative decline, in which France endured a tumultuous succession of governments until the founding of the [[French Third Republic]] during the [[Franco-Prussian War]] in 1870. Subsequent decades saw a period of optimism, cultural and scientific flourishing, as well as economic prosperity, known as the [[Belle Époque]]. France was one of the [[Triple Entente|major participants]] of [[World War I]], from which it [[Treaty of Versailles|emerged victorious]] at a great human and economic cost. It was among the [[Allies of World War II|Allied powers]] of [[World War II]] but was soon [[German military administration in occupied France during World War II|occupied]] by the [[Axis powers|Axis]] in 1940. Following [[Liberation of France|liberation]] in 1944, the short-lived [[French Fourth Republic|Fourth Republic]] was established and later dissolved in the course of the [[Algerian War]]. The current [[French Fifth Republic|Fifth Republic]] was formed in 1958 by [[Charles de Gaulle]]. Algeria and most French colonies became independent in the 1960s, with the majority retaining [[Françafrique|close economic and military ties with France]].
+
+France retains its centuries-long status as a global centre of [[French art|art]], [[List of French scientists|science]] and [[List of French philosophers|philosophy]]. It [[List of World Heritage Sites in France|hosts]] the fifth-largest number of UNESCO [[World Heritage Site]]s and is the world's leading tourist destination, receiving over 89&nbsp;million foreign [[Tourism in France|visitors]] in 2018.<ref>{{Cite web |date=17 May 2019 |title=France posts new tourist record despite Yellow Vest unrest |url=https://www.france24.com/en/20190517-france-tourism-record-number-visitors-tourists-despite-yellow-vests-paris |website=France 24}}</ref> France is a [[developed country]] ranked 28th in the [[Human Development Index]], with the world's [[List of countries by GDP (nominal)|seventh-largest economy by nominal GDP]] and [[List of countries by GDP (PPP)|tenth-largest by PPP]]; in terms of aggregate household wealth, it ranks fourth in the world.<ref>{{Cite web |date=October 2010 |title=Global Wealth Report |url=http://piketty.pse.ens.fr/fichiers/enseig/ecoineg/EcoIneg_fichiers/DaviesShorrocks2010(CSGlobalWealthReport).pdf |url-status=live |archive-url=https://web.archive.org/web/20141109055804/http://piketty.pse.ens.fr/fichiers/enseig/ecoineg/EcoIneg_fichiers/DaviesShorrocks2010%28CSGlobalWealthReport%29.pdf |archive-date=9 November 2014 |access-date=27 October 2014 |publisher=Credit Suisse |quote="In euro and USD terms, the total wealth of French households is very sizeable. Although it has just 1% of the world's adults, France ranks fourth among nations in aggregate household wealth&nbsp;– behind China and just ahead of Germany. Europe as a whole accounts for 35% of the individuals in the global top 1%, but France itself contributes a quarter of the European contingent.}}</ref> France performs well in [[International rankings of France|international rankings]] of [[Education in France|education]], [[Health care in France|health care]], and [[List of countries by life expectancy|life expectancy]]. It remains a [[great power]] in global affairs,<ref>Jack S. Levy, ''War in the Modern Great Power System, 1495–1975'', (2014) p. 29</ref> being one of the five [[permanent members of the United Nations Security Council]] and an official [[List of states with nuclear weapons|nuclear-weapon state]]. France is a founding and [[Big Four (Western Europe)|leading]] [[Member state of the European Union|member of the European Union]] and the [[Eurozone]],<ref name="superficy" /> as well as a key member of the [[Group of Seven]], [[NATO|North Atlantic Treaty Organization]] (NATO), [[OECD|Organisation for Economic Co-operation and Development]] (OECD) and [[Organisation internationale de la Francophonie|Francophonie]].
+
+==Etymology and pronunciation==
+{{Main|Name of France}}
+Originally applied to the whole [[Francia|Frankish Empire]], the name ''France'' comes from the [[Latin]] {{Lang|la|[[Francia]]}}, or "realm of the [[Franks]]".<ref>{{Cite web |title=History of France |url=http://www.discoverfrance.net/France/History/DF_history.shtml |url-status=dead |archive-url=https://web.archive.org/web/20110824051936/http://www.discoverfrance.net/France/History/DF_history.shtml |archive-date=24 August 2011 |access-date=17 July 2011 |publisher=Discoverfrance.net}}</ref> Modern France is still named today {{Lang|it|Francia}} in Italian and Spanish, while {{Lang|de|Frankreich}} in German, {{Lang|nl|Frankrijk}} in Dutch and {{Lang|sv|Frankrike}} in Swedish all mean "Land/realm of the Franks".
+
+The [[name of the Franks]] is related to the English word ''frank'' ("free"): the latter stems from the [[Old French]] {{Lang|ang|franc}} ("free, noble, sincere"), ultimately from [[Medieval Latin]] ''francus'' ("free, exempt from service; freeman, Frank"), a generalisation of the tribal name that emerged as a [[Late Latin]] borrowing of the reconstructed [[Frankish language|Frankish]] [[Endonym and exonym|endonym]] {{Lang|frk|*Frank}}.<ref>Examples: {{Cite encyclopedia |title=frank |encyclopedia=American Heritage Dictionary}} {{Cite encyclopedia|title=frank|encyclopedia=Webster's Third New International Dictionary}} And so on.</ref><ref name=":0" /> It has been suggested that the meaning "free" was adopted because, after the conquest of Gaul, only Franks were free of taxation,<ref>{{Cite book |last=Michel Rouche |title=A History of Private Life: From Pagan Rome to Byzantium |publisher=Belknap Press |year=1987 |isbn=978-0-674-39974-7 |editor-last=Paul Veyne |page=425 |chapter=The Early Middle Ages in the West |oclc=59830199}}</ref> or more generally because they had the status of freemen in contrast to servants or slaves.<ref name=":0" />
+
+The etymology of ''*Frank'' is uncertain. It is traditionally derived from the [[Proto-Germanic language|Proto-Germanic]] word {{Lang|gem-x-proto|frankōn}}, which translates as "javelin" or "lance" (the throwing axe of the Franks was known as the ''[[francisca]]''),<ref>{{Cite book |last1=Tarassuk |first1=Leonid |url=https://books.google.com/books?id=UJbyPwAACAAJ |title=The Complete Encyclopedia of Arms and Weapons: the most comprehensive reference work ever published on arms and armor from prehistoric times to the present with over 1,250 illustrations |last2=Blair |first2=Claude |publisher=Simon & Schuster |year=1982 |isbn=978-0-671-42257-8 |page=186 |access-date=5 July 2011}}</ref> although these weapons may have been named because of their use by the Franks, not the other way around.<ref name=":0">{{Cite web |title=Origin and meaning of Frank |url=https://www.etymonline.com/word/frank |website=Online Etymology Dictionary |language=en}}</ref>
+
+In English, 'France' is pronounced {{IPAc-en|f|r|æ|n|s}} {{Respell|FRANSS}} in American English and {{IPAc-en|f|r|ɑː|n|s}} {{Respell|FRAHNSS}} or {{IPAc-en|f|r|æ|n|s}} {{Respell|FRANSS}} in British English. The pronunciation with {{IPAc-en|ɑː}} is mostly confined to accents with the [[Trap–bath split|trap-bath split]] such as [[Received Pronunciation]], though it can be also heard in some other dialects such as [[Cardiff English]], in which {{IPAc-en|f|r|ɑː|n|s}} is in free variation with {{IPAc-en|f|r|æ|n|s}}.<ref>{{Cite book |last=Wells |first=John C. |title=Longman Pronunciation Dictionary |publisher=Longman |year=2008 |isbn=978-1-4058-8118-0 |edition=3rd}}; {{Cite book|last1=Collins|first1=Beverley|last2=Mees|first2=Inger M.|editor-last1=Coupland|editor-first1=Nikolas|editor-last2=Thomas|editor-first2=Alan Richard|year=1990|title=English in Wales: Diversity, Conflict, and Change|chapter=The Phonetics of Cardiff English|publisher=Multilingual Matters Ltd.|page=96|isbn=978-1-85359-032-0|url=https://books.google.com/books?id=tPwYt3gVbu4C}}</ref>
+
+==History==
+{{Main|History of France}}
+{{For timeline|Timeline of French history}}
+
+===Prehistory (before the 6th century BC)===
+{{Main|Prehistory of France}}
+[[File:Lascaux2.jpg|thumb|left|alt=Lascaux cave paintings: a horse from Dordogne facing right brown on white background|One of the [[Lascaux]] paintings: a horse&nbsp;– approximately 17,000 BC.<ref>[https://www.scientificamerican.com/article/the-worlds-oldest-animal-paintings-are-on-this-cave-wall The World’s Oldest Animal Paintings Are on This Cave Wall], [[Scientific American]], 14 January 2021</ref>]]
+The oldest traces of human life in what is now France date from approximately 1.8&nbsp;million years ago.<ref name="Jean Carpentier 1987 p.17">Jean Carpentier (dir.), François Lebrun (dir.), Alain Tranoy, Élisabeth Carpentier et Jean-Marie Mayeur (préface de Jacques Le Goff), Histoire de France, Points Seuil, coll. " Histoire ", Paris, 2000 (1re éd. 1987), p. 17 {{ISBN|978-2-02-010879-9}}</ref> Over the ensuing millennia, [[human]]s were confronted by a harsh and variable climate, marked by several [[glacial period]]s. Early hominids led a [[nomad]]ic [[hunter-gatherer]] life.<ref name="Jean Carpentier 1987 p.17" /> France has a large number of decorated caves from the [[Upper Paleolithic]] era, including one of the most famous and best-preserved, [[Lascaux]]<ref name="Jean Carpentier 1987 p.17" /> (approximately 18,000 BC). At the end of the [[Last Glacial Period|last glacial period]] (10,000 BC), the climate became milder;<ref name="Jean Carpentier 1987 p.17" /> from approximately 7,000 BC, this part of Western Europe entered the [[Neolithic]] era and its inhabitants became [[Sedentism|sedentary]].
+
+After strong demographic and agricultural development between the 4th and 3rd millennia, metallurgy appeared at the end of the 3rd millennium, initially working gold, copper and bronze, as well as later iron.<ref>Carpentier ''et al.'' 2000, pp. 20–24.</ref> France has numerous [[megalith]]ic sites from the Neolithic period, including the exceptionally dense [[Carnac stones]] site (approximately 3,300 BC).
+
+===Antiquity (6th century BC–5th century AD)===
+{{Main|Gaul|Celts|Roman Gaul}}
+[[File:Siege-alesia-vercingetorix-jules-cesar.jpg|left|thumb|[[Vercingetorix]] surrenders to [[Julius Caesar|Caesar]] during the [[Battle of Alesia]]. The Gallic defeat in the [[Gallic Wars]] secured the [[Roman Republic|Roman]] conquest of the country.]]
+In 600 BC, [[Ionia]]n [[Greeks in pre-Roman Gaul|Greeks]] from [[Phocaea]] founded the [[Greek colonisation|colony]] of [[Massalia]] (present-day [[Marseille]]), on the shores of the [[Mediterranean Sea]]. This makes it France's oldest city.<ref>{{Cite book |url=https://books.google.com/books?id=n1TmVvMwmo4C&pg=RA1-PA754 |title=The Cambridge ancient history |publisher=Cambridge University Press |year=2000 |isbn=978-0-521-08691-2 |page=754 |access-date=23 January 2011}}; {{Cite book|url=https://books.google.com/books?id=b8cA8hymTw8C&pg=PA62|title=A history of ancient Greece|author=Claude Orrieux|page=62|publisher=John Wiley & Sons|year=1999|access-date=23 January 2011|isbn=978-0-631-20309-4}}</ref> At the same time, some Gallic Celtic tribes penetrated parts of Eastern and Northern France, gradually spreading through the rest of the country between the 5th and 3rd century BC.<ref>Carpentier ''et al.'' 2000, p. 29.</ref> The concept of [[Gaul]] emerged during this period, corresponding to the territories of Celtic settlement ranging between the [[Rhine]], the [[Atlantic Ocean]], the [[Pyrenees]] and the Mediterranean. The borders of modern France roughly correspond to ancient Gaul, which was inhabited by Celtic ''Gauls''. Gaul was then a prosperous country, of which the southernmost part was heavily subject to Greek and Roman cultural and economic influences.
+
+[[File:Maison_Carree_in_Nimes_(16).jpg|thumb|left|alt=Maison Carrée temple in Nemausus Corinthian columns and portico|The [[Maison Carrée]] was a temple of the [[Gallo-Roman culture|Gallo-Roman]] city of Nemausus (present-day [[Nîmes]]) and is one of the best-preserved vestiges of the [[Roman Empire]].]]
+Around 390 BC, the Gallic [[Tribal chief|chieftain]] [[Brennus (4th century BC)|Brennus]] and his troops made their way to Italy through the [[Alps]], defeated the Romans in the [[Battle of the Allia]], and besieged and [[ransom]]ed Rome.<ref>{{Cite web |title=Cornelius Tacitus, The History, BOOK II, chapter 91 |url=https://www.perseus.tufts.edu/hopper/text?doc=Perseus:text:1999.02.0080:book=2:chapter=91 |website=perseus.tufts.edu}}</ref> The Gallic invasion left Rome weakened, and the Gauls continued to harass the region until 345 BC when they entered into a formal peace treaty with Rome.<ref>Polybius, The Histories, 2.18.19</ref> But the Romans and the Gauls would remain adversaries for the next centuries, and the Gauls would continue to be a threat in [[Roman Italy|Italy]].<ref>Cornell, The Beginnings of Rome, p. 325</ref>
+
+Around 125 BC, the south of Gaul was conquered by the Romans, who called this region {{Lang|la|[[Gallia Narbonensis|Provincia Nostra]]}} ("Our Province"), which over time evolved into the name [[Provence]] in French.<ref>{{Cite magazine |date=13 July 1953 |title=Provence in Stone |url=https://books.google.com/books?id=ZEIEAAAAMBAJ&pg=PA77 |magazine=Life |page=77 |access-date=23 January 2011}}</ref> [[Julius Caesar]] conquered the remainder of Gaul and overcame a revolt carried out by the Gallic chieftain [[Vercingetorix]] in 52 BC.<ref>Carpentier ''et al.'' 2000, pp. 44–45.</ref>
+
+Gaul was divided by [[Augustus]] into Roman provinces.<ref name="c53">Carpentier ''et al.'' 2000, pp. 53–55.</ref> Many cities were founded during the [[Roman Gaul|Gallo-Roman period]], including [[Lugdunum]] (present-day [[Lyon]]), which is considered the capital of the Gauls.<ref name=c53/> These cities were built in traditional Roman style, with a [[Roman Forum|forum]], a [[Roman theatre (structure)|theatre]], a [[Roman circus|circus]], an [[amphitheatre]] and [[Spa|thermal baths]]. The Gauls mixed with Roman settlers and eventually adopted Roman culture and [[Romance languages|Roman]] speech ([[Latin]], from which the French language evolved). [[Religion in ancient Rome|Roman polytheism]] merged with [[Ancient Celtic religion|Gallic paganism]] into the same [[syncretism]].
+
+From the 250s to the 280s AD, Roman Gaul suffered a serious crisis with its [[Limes (Roman Empire)|fortified borders]] being attacked on several occasions by [[barbarian]]s.<ref name="c77">Carpentier et al. 2000, pp. 76–77</ref> Nevertheless, the situation improved in the first half of the 4th century, which was a period of revival and prosperity for Roman Gaul.<ref>Carpentier ''et al.'' 2000, pp. 79–82.</ref> In 312, Emperor [[Constantine the Great|Constantine I]] converted to Christianity. Subsequently, Christians, who had been persecuted until then, increased rapidly across the entire Roman Empire.<ref>Carpentier ''et al.'' 2000, p. 81.</ref> But, from the beginning of the 5th century, the [[Migration Period|Barbarian Invasions]] resumed.<ref>Carpentier ''et al.'' 2000, p. 84.</ref> Teutonic tribes invaded the region from present-day Germany, the [[Visigoths]] settling in the southwest, the [[Burgundians]] along the Rhine River Valley, and the [[Franks]] (from whom the French take their name) in the north.<ref>Carpentier ''et al.'' 2000, pp. 84–88.</ref>
+
+===Early Middle Ages (5th–10th century)===
+{{Main|Francia|Merovingian dynasty|Carolingian dynasty}}
+{{See also|List of French monarchs|France in the Middle Ages}}
+[[File:Franks expansion.gif|thumb|alt=animated gif showing expansion of Franks across Europe|Frankish expansion from 481 to 870]]
+At the end of the [[Late antiquity|Antiquity]] period, ancient Gaul was divided into several Germanic kingdoms and a remaining Gallo-Roman territory, known as the [[Kingdom of Soissons|Kingdom of Syagrius]]. Simultaneously, [[Celtic Britons]], fleeing the [[Anglo-Saxon settlement of Britain]], settled in the western part of [[Armorica]]. As a result, the Armorican [[peninsula]] was renamed [[Brittany]], [[Celts|Celtic culture]] was revived and independent [[petty kingdom]]s arose in this region.
+
+The first leader to make himself king of all the Franks was [[Clovis I]], who began his reign in 481, routing the last forces of the Roman governors of the province in 486. Clovis claimed that he would be baptised a Christian in the event of his victory against the [[Visigothic Kingdom|Visigoths]], which was said to have guaranteed the battle. Clovis [[Franco-Visigothic Wars|regained the southwest from the Visigoths]], was baptised in 508 and made himself master of what is now western Germany.
+
+Clovis I was the first [[Germanic peoples|Germanic]] conqueror after the fall of the Roman Empire to convert to Catholic Christianity, rather than [[Arianism]]; thus France was given the title "Eldest daughter of the Church" (''{{Lang-fr|La fille aînée de l'Église|links=no}}'') by the papacy,<ref>{{Cite web |title=Faith of the Eldest Daughter&nbsp;– Can France retain her Catholic heritage? |url=http://www.wf-f.org/03-1-France.html |url-status=dead |archive-url=https://web.archive.org/web/20110722112834/http://www.wf-f.org/03-1-France.html |archive-date=22 July 2011 |access-date=17 July 2011 |publisher=Wf-f.org}}</ref> and French kings would be called "the Most Christian Kings of France" (''{{Lang|und|Rex Christianissimus}}'').
+
+[[File:Chlodwigs taufe.jpg|thumb|left|upright|alt=painting of Clovis I conversion to Catholicism in 498, a king being baptised in a tub in a cathedral surrounded by bishop and monks|With [[Clovis I|Clovis]]'s conversion to Catholicism in 498, the [[List of Frankish kings|Frankish monarchy]], [[Elective monarchy|elective]] and [[Secular state|secular]] until then, became [[Hereditary monarchy|hereditary]] and of [[Divine right of kings|divine right]].]]
+The Franks embraced the Christian [[Gallo-Roman culture]] and ancient Gaul was eventually renamed ''[[Francia]]'' ("Land of the Franks"). The Germanic Franks adopted [[Romance languages|Romanic languages]], except in northern Gaul where Roman settlements were less dense and where [[Germanic languages]] emerged. Clovis made Paris his capital and established the [[Merovingian dynasty]], but his kingdom would not survive his death. The Franks treated land purely as a private possession and divided it among their heirs, so four kingdoms emerged from that of Clovis: Paris, [[Orléans]], [[Soissons]], and [[Reims|Rheims]]. The [[Roi fainéant|last Merovingian kings]] [[Power behind the throne|lost power]] to their [[Mayor of the palace|mayors of the palace]] (head of household). One mayor of the palace, [[Charles Martel]], defeated an [[Umayyad invasion of Gaul]] at the [[Battle of Tours]] (732) and earned respect and power within the Frankish kingdoms. His son, [[Pepin the Short]], seized the crown of Francia from the weakened Merovingians and founded the [[Carolingian dynasty]]. Pepin's son, [[Charlemagne]], reunited the Frankish kingdoms and built a vast empire across [[Western Europe|Western]] and Central Europe.
+
+Proclaimed [[Holy Roman Emperor]] by [[Pope Leo III]] and thus establishing in earnest the French Government's longtime [[History of the Catholic Church in France|historical association]] with the [[Catholic Church]],<ref name="georgetown1">{{Cite web |title=France |url=http://berkleycenter.georgetown.edu/resources/countries/france |url-status=dead |archive-url=https://web.archive.org/web/20110206213909/http://berkleycenter.georgetown.edu/resources/countries/france |archive-date=6 February 2011 |access-date=14 December 2011 |publisher=[[Berkley Center for Religion, Peace, and World Affairs]]}} See drop-down essay on "Religion and Politics until the French Revolution"</ref> Charlemagne tried to revive the [[Western Roman Empire]] and its cultural grandeur. Charlemagne's son, [[Louis the Pious|Louis I]] (Emperor 814–840), kept the empire united; however, this Carolingian Empire would not survive his death. In 843, under the [[Treaty of Verdun]], the empire was divided between Louis' three sons, with [[East Francia]] going to [[Louis the German]], [[Middle Francia]] to [[Lothair I]], and [[West Francia]] to [[Charles the Bald]]. West Francia approximated the area occupied by and was the precursor to, modern France.<ref>{{Cite web |date=27 February 2008 |title=Treaty of Verdun |url=http://history.howstuffworks.com/european-history/treaty-of-verdun.htm |url-status=dead |archive-url=https://web.archive.org/web/20110716063456/http://history.howstuffworks.com/european-history/treaty-of-verdun.htm |archive-date=16 July 2011 |access-date=17 July 2011 |publisher=History.howstuffworks.com}}</ref>
+
+During the 9th and 10th centuries, continually threatened by [[Viking expansion|Viking invasions]], France became a very decentralised state: the nobility's titles and lands became hereditary, and the authority of the king became more religious than secular and thus was less effective and constantly challenged by powerful noblemen. Thus was established [[feudalism]] in France. Over time, some of the king's vassals would grow so powerful that they often posed a threat to the king. For example, after the [[Battle of Hastings]] in 1066, [[William the Conqueror]] added "King of England" to his titles, becoming both the vassal to (as Duke of [[Normandy]]) and the equal of (as king of England) the king of France, creating recurring tensions.
+
+===High and Late Middle Ages (10th–15th century)===
+{{Main|Kingdom of France|Capetian dynasty|House of Valois|House of Bourbon}}
+{{See also|List of French monarchs|France in the Middle Ages}}
+[[File:Joan of Arc miniature graded.jpg|thumb|left|upright|[[Joan of Arc]] led the [[French Army]] to several important victories during the [[Hundred Years' War]] (1337–1453), which paved the way for the final victory.]]
+
+The Carolingian dynasty ruled France until 987, when [[Hugh Capet]], Duke of France and Count of Paris, was crowned [[List of French monarchs|King of the Franks]].<ref>{{Cite web |title=History of France&nbsp;– The Capetian kings of France: AD 987–1328 |url=http://www.historyworld.net/wrldhis/PlainTextHistories.asp?groupid=1008&HistoryID=ab03&gtrack=pthc |url-status=dead |archive-url=https://web.archive.org/web/20110806020426/http://www.historyworld.net/wrldhis/PlainTextHistories.asp?groupid=1008&HistoryID=ab03&gtrack=pthc |archive-date=6 August 2011 |access-date=21 July 2011 |publisher=Historyworld.net}}</ref> His descendants{{Mdash}}the [[House of Capet|Capetians]], the [[House of Valois]] and the [[House of Bourbon]]{{Mdash}}progressively unified the country through wars and dynastic inheritance into the Kingdom of France, which was fully declared in 1190 by [[Philip II of France]] (''Philippe Auguste''). Later kings would expand their directly possessed [[Crown lands of France|''domaine royal'']] to cover over half of modern continental France by the 15th century, including most of the north, centre and west of France. During this process, the royal authority became more and more assertive, centred on a [[Estates of the realm|hierarchically conceived society]] distinguishing [[French nobility|nobility]], clergy, and [[Estates General (France)|commoners]].
+
+The French nobility played a prominent role in most [[Crusades]] to restore Christian access to the [[Holy Land]]. French knights made up the bulk of the steady flow of reinforcements throughout the two-hundred-year span of the Crusades, in such a fashion that the Arabs uniformly referred to the crusaders as ''Franj'' caring little whether they came from France.<ref name="google.fr">{{Cite book |last1=Nadeau |first1=Jean-Benoit |url=https://books.google.com/books?id=JYDOrzMpgGcC&pg=PT34 |title=The Story of French |last2=Barlow |first2=Julie |date=8 January 2008 |publisher=St. Martin's Press |isbn=978-1-4299-3240-0 |pages=34ff |author-link=Jean-Benoît Nadeau |author-link2=Julie Barlow}}</ref> The French Crusaders also imported the French language into the [[Levant]], making [[Old French|French]] the base of the ''[[lingua franca]]'' (lit. "Frankish language") of the [[Crusader states]].<ref name="google.fr" /> French knights also made up the majority in both the [[Knights Hospitaller|Hospital]] and the [[Knights Templar|Temple orders]]. The latter, in particular, held numerous properties throughout France and by the 13th century were the principal bankers for the French crown, until [[Philip IV of France|Philip IV]] annihilated the order in 1307. The [[Albigensian Crusade]] was launched in 1209 to eliminate the heretical [[Catharism|Cathars]] in the southwestern area of modern-day France. In the end, the Cathars were exterminated and the autonomous [[Counts of Toulouse|County of Toulouse]] was annexed into the [[crown lands of France]].<ref>{{Cite magazine |date=28 April 1961 |title=Massacre of the Pure |magazine=Time |location=New York |url=http://www.time.com/time/magazine/article/0,9171,897752-2,00.html |url-status=dead |archive-url=https://web.archive.org/web/20080120172908/http://www.time.com/time/magazine/article/0,9171,897752-2,00.html |archive-date=20 January 2008}}</ref>
+[[File:French borders from 985 to 1947.gif|thumb|alt=animated gif showing changes in French borders|[[Territorial evolution of France|Metropolitan France territorial evolution]] from 985 to 1947]]
+
+From the 11th century, the House of Plantagenet, the rulers of the [[County of Anjou]], succeeded in establishing its dominion over the surrounding provinces of [[Maine (province)|Maine]] and [[Touraine]], then progressively built an "empire" that spanned from England to the [[Pyrenees]] and covering half of modern France. Tensions between the kingdom of France and the [[Angevin Empire|Plantagenet empire]] would last a hundred years, until Philip II of France conquered, between 1202 and 1214, most of the continental possessions of the empire, leaving England and [[Aquitaine]] to the Plantagenets.
+
+[[Charles IV of France|Charles IV the Fair]] died without an heir in 1328.<ref name="guerard">{{Cite book |last=Guerard |first=Albert |title=France: A Modern History |date=1959 |publisher=University of Michigan Press |location=Ann Arbor |pages=100, 101 |author-link=Albert Léon Guérard}}</ref> Under [[Salic law]] the crown of France could not pass to a woman nor could the line of kingship pass through the female line.<ref name="guerard" /> Accordingly, the crown passed to Philip of Valois, rather than through the female line to Edward of Plantagenet, who would soon become [[Edward III of England]]. During the reign of [[Philip IV of France|Philip of Valois]], the French monarchy reached the height of its medieval power.<ref name="guerard" /> However Philip's seat on the throne was contested by Edward III of England in 1337, and England and France entered the off-and-on [[Hundred Years' War]].<ref>{{Cite journal |last=Templeman |first=Geoffrey |author-link=Geoffrey Templeman |date=1952 |title=Edward III and the beginnings of the Hundred Years War |journal=Transactions of the Royal Historical Society |volume=2 |pages=69–88 |doi=10.2307/3678784|jstor=3678784 |s2cid=161389883 }}</ref> The exact boundaries changed greatly with time, but landholdings inside France by the English Kings remained extensive for decades. With charismatic leaders, such as [[Joan of Arc]] and [[La Hire]], strong French counterattacks won back most English continental territories. Like the rest of Europe, France was struck by the Black Death due to which half of the 17&nbsp;million population of France died.<ref>{{Cite book |last=Le Roy Ladurie |first=Emmanuel |title=The French peasantry, 1450–1660 |date=1987 |publisher=University of California Press |isbn=978-0-520-05523-0 |page=[https://archive.org/details/frenchpeasantry10000lero/page/32 32] |author-link=Emmanuel}}; {{Cite book |first=Peter |last=Turchin |author-link=Peter Turchin |date=2003 |page=[https://books.google.com/books?id=mUoCrTUo-eEC&pg=PA179 179] |title=Historical dynamics: why states rise and fall |publisher=Princeton University Press |isbn=978-0-691-11669-3}}</ref>
+
+===Early modern period (15th century–1789)===
+{{Main article|French Renaissance|Early modern France|French colonial empire|Ancien Régime}}
+[[File:Chateau de Chenonceau 2008E.jpg|thumb|left|The [[Château de Chenonceau]], nowadays part of a [[UNESCO]] [[World Heritage Site]], was built in the early 16th century.]]
+The French Renaissance saw spectacular cultural development and the first standardisation of the French language, which would become the [[Ordinance of Villers-Cotterêts|official language of France]] and the language of Europe's aristocracy. It also saw a long set of wars, known as the [[Italian Wars]], between France and the [[House of Habsburg]]. French explorers, such as [[Jacques Cartier]] or [[Samuel de Champlain]], claimed lands in the Americas for France, paving the way for the expansion of the French colonial empire. The rise of Protestantism in Europe led France to a civil war known as the [[French Wars of Religion]], where, in the most notorious incident, thousands of [[Huguenot]]s were murdered in the [[St. Bartholomew's Day massacre]] of 1572.<ref>{{Cite encyclopedia |title=Massacre of Saint Bartholomew's Day |encyclopedia=Encyclopædia Britannica |url=https://www.britannica.com/EBchecked/topic/516821/Massacre-of-Saint-Bartholomews-Day |access-date=21 July 2011}}</ref> The Wars of Religion were ended by [[Henry IV of France|Henry IV]]'s [[Edict of Nantes]], which granted some freedom of religion to the Huguenots. [[Habsburg Spain|Spanish]] troops, the terror of Western Europe,<ref>{{Cite book |last=Rex |first=Richard |url=https://books.google.com/books?id=uSVVBQAAQBAJ&pg=PT302 |title=Tudors: The Illustrated History |date=15 November 2014 |publisher=Amberley Publishing Limited |isbn=978-1-4456-4403-5 |via=Google Books}}</ref> assisted the Catholic side during the Wars of Religion in 1589–1594, and invaded northern France in 1597; after some skirmishing in the 1620s and 1630s, Spain and France returned to all-out war between 1635 and 1659. [[Franco-Spanish War (1635–1659)|The war]] cost France 300,000 casualties.<ref>Clodfelter 2017: 40</ref>
+
+Under [[Louis XIII]], [[Cardinal Richelieu]] promoted the centralisation of the state and reinforced royal power by disarming domestic power holders in the 1620s. He systematically destroyed castles of defiant lords and denounced the use of private violence (dueling, carrying weapons and maintaining private armies). By the end of the 1620s, Richelieu established "the royal monopoly of force" as the doctrine.<ref>Tilly, Charles (1985). "War making and state making as organized crime," in Bringing the State Back In, eds P.B. Evans, D. Rueschemeyer, & T. Skocpol. Cambridge: Cambridge University Press, 1985. p. 174.</ref>
+
+From the 16th to the 19th century, France was responsible for 11% of the [[transatlantic slave trade]],<ref name = "BNF">{{cite web | author = Cécil Vidal | date = May 2021 | url = https://heritage.bnf.fr/france-ameriques/en/slave-trade-article | website = bnf.fr | title = Slave trade | language = en}}</ref> second only to Great Britain during the 18th century.<ref>{{cite web | author = Claire Sibelle | title = Guide des sources de la traite négrière, de l'esclavage et de leurs abolitions: XVIe - XXe siècles| url = https://www.archivesportaleurope.net/advanced-search/search-in-archives/results-(archives)/?&repositoryCode=FR-SIAF&levelName=archdesc&t=sg&recordId=FRDAF_esclavage001 | website = Archives Portal Europe | language = fr}}</ref> While the state began condoning the practice with [[letters patent]] in the 1630s, Louis XIII only formalized this authorization more generally in 1642 in the last year of his reign. By the mid-18th century, [[Role of Nantes in the slave trade|Nantes]] had become the primary port involved.<ref name = "BNF" />
+
+During [[Louis XIV]]'s minority and the regency of [[Anne of Austria|Queen Anne]] and [[Cardinal Mazarin]], a period of trouble known as the [[Fronde]] occurred in France. This rebellion was driven by the great feudal lords and [[sovereign court]]s as a reaction to the [[Absolutism (European history)|rise of royal absolute power]] in France.
+
+[[File:Louis XIV of France.jpg|thumb|upright|alt=Louis XIV of France standing in plate armour and blue sash facing left holding baton|[[Louis XIV]], the "Sun King", was the [[Absolute monarchy in France|absolute monarch of France]] and made France the leading European power.]]
+The monarchy reached its peak during the 17th century and the reign of Louis XIV (1643–1715). By turning powerful feudal lords into [[courtier]]s at the [[Palace of Versailles]], his command of the military went unchallenged. Remembered for numerous wars, the so-called Sun King made France the leading European power. France became the [[Demographics of France|most populous country in Europe]] and had tremendous influence over European politics, economy, and culture. French became the most-used language in diplomacy, science, literature and international affairs, and remained so until the 20th century.<ref name="Language and Diplomacy">{{Cite web |title=Language and Diplomacy |url=http://www.nakedtranslations.com/en/2004/language-and-diplomacy/ |url-status=dead |archive-url=https://web.archive.org/web/20110721070018/http://www.nakedtranslations.com/en/2004/language-and-diplomacy/ |archive-date=21 July 2011 |access-date=21 July 2011 |publisher=Nakedtranslations.com}}</ref> During his reign, France took colonial control of many overseas territories in the Americas, Africa and Asia. In 1685, Louis XIV [[Edict of Fontainebleau|revoked the Edict of Nantes]], forcing thousands of Huguenots into exile and published the ''[[Code Noir]]'' providing the legal framework for slavery and expelling Jewish people from the French colonies.<ref>{{Cite journal | journal = Louisiana Law Review | title = The Origins and Authors of the Code Noir | author = Vernon Valentine Palmer | url = https://digitalcommons.law.lsu.edu/lalrev/vol56/iss2/5 | year = 1996 | volume = 56 | issue = 2}}</ref>
+
+Under the wars of [[Louis XV]] (r. 1715–1774), France lost [[New France]] and most of its [[French India|Indian possessions]] after its defeat in the [[Seven Years' War]] (1756–1763). Its [[Metropolitan France|European territory]] kept growing, however, with notable acquisitions such as [[Lorraine]] (1766) and [[Corsica]] (1770). An unpopular king, Louis XV's weak rule, his ill-advised financial, political and military decisions – as well as the debauchery of his court– discredited the monarchy, which arguably paved the way for the French Revolution 15 years after his death.<ref>{{Cite web |title=BBC History: Louis XV (1710–1774) |url=https://www.bbc.co.uk/history/historic_figures/louis_xv.shtml |access-date=21 July 2011 |publisher=BBC}}; {{Cite web|url=http://webspace.qmul.ac.uk/cdhjones/documents/gn_pdf.pdf|title=Scholarly bibliography by Colin Jones (2002)|access-date=21 July 2011|url-status=dead|archive-url=https://web.archive.org/web/20110725101858/http://webspace.qmul.ac.uk/cdhjones/documents/gn_pdf.pdf|archive-date=25 July 2011}}</ref>
+
+[[Louis XVI]] (r. 1774–1793), [[France in the American Revolutionary War|actively supported the Americans with money, fleets and armies]], helping them win [[American Revolutionary War|independence from Great Britain]]. France gained revenge but spent so heavily that the government verged on bankruptcy—a factor that contributed to the French Revolution. Some of the [[Age of Enlightenment|Enlightenment]] occurred in French intellectual circles, and major scientific breakthroughs and inventions, such as the [[Antoine Lavoisier|discovery of oxygen]] (1778) and the first [[Montgolfier brothers|hot air balloon carrying passengers]] (1783), were achieved by French scientists. French explorers, such as [[Louis Antoine de Bougainville|Bougainville]] and [[Jean-François de Galaup, comte de Lapérouse|Lapérouse]], took part in the [[European and American voyages of scientific exploration|voyages of scientific exploration]] through maritime expeditions around the globe. The Enlightenment philosophy, in which [[Rationalism|reason]] is advocated as the primary source of [[Legitimacy (political)|legitimacy]], undermined the power of and support for the monarchy and also was a factor in the French Revolution.
+
+===Revolutionary France (1789–1799)===
+{{Main|History of France#Revolutionary France (1789–1799)|French Revolution}}
+[[File:Couder Stati generali.jpg|left|thumb|''Ouverture des États généraux à Versailles, 5 mai 1789'' by [[Auguste Couder]]]]
+[[File:Prise de la Bastille.jpg|thumb|left|alt=drawing of the Storming of the Bastille on 14 July 1789, smoke of gunfire enveloping stone castle|The [[Storming of the Bastille]] on 14 July 1789 was the most emblematic event of the [[French Revolution]].]]
+Facing financial troubles, King [[Louis XVI of France|Louis XVI]] summoned the [[Estates-General of 1789|Estates-General]] (gathering the three [[Estates of the realm]]) in May 1789 to propose solutions to his government. As it came to an impasse, the representatives of the [[Commoner|Third Estate]] formed a [[National Assembly (French Revolution)|National Assembly]], signaling the outbreak of the [[French Revolution]]. Fearing that the king would suppress the newly created National Assembly, insurgents [[Storming of the Bastille|stormed the Bastille]] on 14 July 1789, a date which would become [[Bastille Day|France's National Day]].
+
+In early August 1789, the [[National Constituent Assembly (France)|National Constituent Assembly]] [[August Decrees|abolished the privileges]] of the [[French nobility|nobility]] such as [[Serfdom|personal serfdom]] and exclusive hunting rights. Through the [[Declaration of the Rights of the Man and of the Citizen of 1789|Declaration of the Rights of Man and of the Citizen]] (27 August 1789), France established fundamental rights for men. The Declaration affirms "the natural and imprescriptible rights of man" to "liberty, property, security and resistance to oppression". Freedom of speech and press were declared, and arbitrary arrests were outlawed. It called for the destruction of aristocratic privileges and proclaimed freedom and equal rights for all men, as well as access to public office based on talent rather than birth. In November 1789, the Assembly decided to nationalise and sell all property of the Catholic Church which had been the largest landowner in the country. In July 1790, a [[Civil Constitution of the Clergy]] reorganised the French Catholic Church, cancelling the authority of the Church to levy taxes, et cetera. This fueled much discontent in parts of France, which would contribute to the civil war breaking out some years later. While King Louis XVI still enjoyed popularity among the population, his disastrous [[flight to Varennes]] (June 1791) seemed to justify rumours he had tied his hopes of political salvation to the prospects of foreign invasion. His credibility was so deeply undermined that the [[Abolition of monarchy|abolition of the monarchy]] and the establishment of a republic became an increasing possibility.
+
+In the August 1791 [[Declaration of Pillnitz]], the Emperor of [[Habsburg monarchy|Austria]] and the King of [[Kingdom of Prussia|Prussia]] threatened to restore the French monarch by force. In September 1791, the National Constituent Assembly forced King Louis XVI to accept the [[French Constitution of 1791]], thus turning the French absolute monarchy into a [[Kingdom of France (1791–92)|constitutional monarchy]]. In the newly established [[Legislative Assembly (France)|Legislative Assembly]] (October 1791), enmity developed and deepened between a group, later called the '[[Girondins]]', who favoured war with [[Habsburg monarchy|Austria]] and [[Kingdom of Prussia|Prussia]], and a group later called '[[The Mountain|Montagnards]]' or '[[Jacobin]]s', who opposed such a war. A majority in the [[Legislative Assembly (France)|Assembly]] in 1792 however saw a war with Austria and Prussia as a chance to boost the popularity of the revolutionary government and thought that such a war could be won and so [[French Revolutionary Wars|declared war on Austria]] on 20 April 1792.
+
+[[File:Serment du Jeu de Paume - Jacques-Louis David.jpg|thumb|[[The Tennis Court Oath (David)|''Le Serment du Jeu de paume'']] by [[Jacques-Louis David]], 1791]]
+On 10 August 1792, an angry crowd [[Insurrection of 10 August 1792|threatened the palace of King Louis XVI]], who took refuge in the Legislative Assembly.<ref name=Shus-5/><ref>Jack R. Censer, and Lynn Hunt, ''Liberty, Equality, Fraternity: Exploring the French Revolution.'' University Park, Pennsylvania: Pennsylvania State University Press, 2004.</ref> A Prussian Army invaded France later in August 1792. In early September, Parisians, infuriated by [[French Revolutionary Wars|the Prussian Army capturing Verdun]] and counter-revolutionary uprisings in the west of France, [[September Massacres|murdered between 1,000 and 1,500 prisoners]] by raiding the Parisian prisons. The [[Legislative Assembly (France)|Assembly]] and the [[Paris Commune (French Revolution)|Paris City Council]] seemed unable to stop that bloodshed.<ref name=Shus-5/><ref>Doyle, William. ''The Oxford History of The French Revolution.'' Oxford: Oxford University Press, 1989. pp 191–192.</ref> The [[National Convention]], chosen in the first elections under male [[universal suffrage]],<ref name="Shus-5">{{In lang|nl}} Noah Shusterman – ''De Franse Revolutie (The French Revolution).'' Veen Media, Amsterdam, 2015. (Translation of: ''The French Revolution. Faith, Desire, and Politics.'' Routledge, London/New York, 2014.) Chapter 5 (p. 187–221) : The end of the monarchy and the September Murders (summer-fall 1792).</ref> on 20 September 1792 succeeded the [[Legislative Assembly (France)|Legislative Assembly]] and on 21 September abolished the monarchy by proclaiming the [[French First Republic]].
+Ex-King Louis XVI was [[Trial of Louis XVI|convicted]] of treason and [[Execution of Louis XVI|guillotined in January 1793]].
+France had declared war on Great Britain and the Dutch Republic in November 1792 and did the same on Spain in March 1793; in the spring of 1793, Austria and Prussia invaded France; in March, France created a "[[sister republic]]" in the "[[Republic of Mainz]]", and kept it under control.
+
+Also in March 1793, the [[War in the Vendée|civil war of the Vendée against Paris]] started, evoked by both the [[Civil Constitution of the Clergy]] of 1790 and the nationwide army conscription in early 1793; elsewhere in France rebellion was brewing too. A factionalist feud in the National Convention, smouldering ever since October 1791, came to a climax with the group of the '[[Girondins]]' on 2 June 1793 being forced to resign and leave the convention. The counter-revolution, begun in March 1793 in the Vendée, by July had spread to [[Brittany (administrative region)|Brittany]], Normandy, Bordeaux, Marseilles, Toulon, and Lyon. Paris' Convention government between October and December 1793 with brutal measures managed to subdue most internal uprisings, at the cost of tens of thousands of lives. Some historians consider the civil war to have lasted until 1796 with a toll of possibly 450,000 lives.<ref>{{Cite news |last=Dr Linton |first=Marisa |title=The Terror in the French Revolution |publisher=Kingston University |url=http://www.port.ac.uk/special/france1815to2003/chapter1/interviews/filetodownload,20545,en.pdf |url-status=dead |archive-url=https://web.archive.org/web/20120117152123/http://www.port.ac.uk/special/france1815to2003/chapter1/interviews/filetodownload%2C20545%2Cen.pdf |archive-date=17 January 2012}}; Jacques Hussenet (dir.), ''" Détruisez la Vendée ! " Regards croisés sur les victimes et destructions de la guerre de Vendée'', La Roche-sur-Yon, Centre vendéen de recherches historiques, 2007</ref> By the end of 1793, the allies had been driven from France. France in February 1794 [[Abolitionism|abolished slavery]] in its [[French colonial empire|American colonies]] but would reintroduce it later.
+
+Political disagreements and enmity in the [[National Convention]] between October 1793 and July 1794 reached unprecedented levels, leading to dozens of Convention members being sentenced to death and guillotined. Meanwhile, [[French Revolutionary Wars|France's external wars]] in 1794 were prospering, for example in Belgium. In 1795, the government seemed to return to indifference towards the desires and needs of the lower classes concerning freedom of ([[Catholic Church|Catholic]]) religion and fair distribution of food. Until 1799, politicians, apart from inventing a new parliamentary system (the '[[French Directory|Directory]]'), busied themselves with dissuading the people from [[Catholic Church|Catholicism]] and royalism.
+
+===Napoleon and 19th century (1799–1914)===
+{{Main|History of France#Napoleonic France (1799–1815)|History of France#Long 19th century, 1815–1914|First French Empire|Second French Empire|French colonial empire}}
+{{See also|France in the 19th century|France in the 20th century}}
+[[File:Jacques-Louis David - The Emperor Napoleon in His Study at the Tuileries - Google Art Project.jpg|thumb|upright|left|alt=painting of Napoleon in 1806 standing with hand in vest attended by staff and Imperial guard regiment|[[Napoleon]], [[Emperor of the French]], built a [[First French Empire|vast empire across Europe]].<ref>{{Cite book |last=Frank W. Thackeray |url=https://books.google.com/books?id=W0ktX_xI1fYC&pg=PA6 |title=Events that Changed the World in the Nineteenth Century |year=1996 |isbn=978-0-313-29076-3 |page=6}}</ref>]]
+[[Napoleon|Napoleon Bonaparte]] [[Coup of 18 Brumaire|seized control of the Republic]] in 1799 becoming [[French Consulate|First Consul]] and later [[Constitution of the Year XII|Emperor]] of the [[First French Empire|French Empire]] (1804–1814; 1815). As a continuation of [[French Revolutionary Wars|the wars]] sparked by the European monarchies against the French Republic, changing sets of [[Coalition Wars|European Coalitions]] declared [[Napoleonic Wars|wars]] on Napoleon's Empire. His armies conquered most of continental Europe with swift victories such as the [[Battle of Jena-Auerstadt|battles of Jena-Auerstadt]] or [[Battle of Austerlitz|Austerlitz]]. Members of the [[House of Bonaparte|Bonaparte]] family were appointed as monarchs in some of the newly established kingdoms.<ref name="Blanning">{{Cite news |last=Blanning |first=Tim |author-link=Tim Blanning |date=April 1998 |title=Napoleon and German identity |volume=48 |work=[[History Today]] |location=London}}</ref>
+
+These victories led to the worldwide expansion of French revolutionary ideals and reforms, such as the [[metric system]], the [[Napoleonic Code]] and the Declaration of the Rights of Man. In June 1812, Napoleon attacked Russia, reaching Moscow. Thereafter his army disintegrated through supply problems, disease, Russian attacks, and finally winter. After the catastrophic [[French invasion of Russia|Russian campaign]], and the ensuing [[War of the Sixth Coalition|uprising of European monarchies]] against his rule, Napoleon was defeated and the Bourbon monarchy [[Bourbon Restoration in France|restored]]. About a million Frenchmen [[Napoleonic Wars casualties|died during the Napoleonic Wars]].<ref name="Blanning" /> After his [[Hundred Days|brief return]] from exile, Napoleon was finally defeated in 1815 at the [[Battle of Waterloo]], the monarchy was [[Bourbon Restoration in France|re-established]] (1815–1830), with new constitutional limitations.
+
+The discredited Bourbon dynasty was overthrown by the [[July Revolution]] of 1830, which established the constitutional [[July Monarchy]]. In that year, French troops began the conquest of Algeria, establishing the first colonial presence in Africa since Napoleon's abortive [[French campaign in Egypt and Syria|invasion of Egypt]] in 1798. In 1848, general unrest led to the [[French Revolution of 1848|February Revolution]] and the end of the July Monarchy. The abolition of slavery and the introduction of male [[universal suffrage]], which were briefly enacted during the French Revolution, was re-enacted in 1848. In 1852, the president of the French Republic, [[Napoleon III|Louis-Napoléon Bonaparte]], Napoleon I's nephew, was proclaimed emperor of the [[Second French Empire|Second Empire]], as Napoleon III. He multiplied French interventions abroad, especially in [[Crimean War|Crimea]], [[Second French intervention in Mexico|Mexico]] and [[Second Italian War of Independence|Italy]] which resulted in the annexation of the [[Duchy of Savoy]] and the [[County of Nice]], then part of the [[Kingdom of Sardinia]]. Napoleon III was unseated following defeat in the [[Franco-Prussian War]] of 1870 and his regime was replaced by the [[French Third Republic|Third Republic]]. By 1875, the French conquest of Algeria was complete, and approximately 825,000 Algerians had been killed from famine, disease, and violence.<ref name="Kiernan2007">{{Cite book |last=Ben Kiernan |url=https://archive.org/details/bloodan_kie_2007_00_0326 |title=Blood and Soil: A World History of Genocide and Extermination from Sparta to Darfur |publisher=Yale University Press |year=2007 |isbn=978-0-300-10098-3 |page=[https://archive.org/details/bloodan_kie_2007_00_0326/page/374 374] |url-access=registration}}</ref>
+
+[[File:France colonial Empire10.png|thumb|upright=1.6|The first (light blue) and second (dark blue) [[French colonial empire]]]]
+
+France had [[French colonial empire|colonial possessions]], in various forms, since the beginning of the 17th century, but in the 19th and 20th centuries, its [[List of largest empires|global overseas colonial empire]] extended greatly and became the second-largest in the world behind the [[British Empire]].<ref name=":8"/> Including [[metropolitan France]], the total area of land under French [[sovereignty]] almost reached 13&nbsp;million square kilometres in the 1920s and 1930s, 8.6% of the world's land. Known as the ''[[Belle Époque]]'', the turn of the century was a period characterised by optimism, regional peace, economic prosperity and technological, scientific and cultural innovations. In 1905, [[state secularism]] was [[1905 French law on the Separation of the Churches and the State|officially established]].
+
+===Early to mid-20th century (1914–1946)===
+{{Main|History of France (1900 to present)}}
+France was [[French entry into World War I|invaded by Germany and defended by Great Britain]] to start World War I in August 1914. A rich industrial area in the northeast was occupied. France and the Allies emerged victorious against the [[Central Powers]] at a tremendous human and material cost. World War I left 1.4&nbsp;million French soldiers dead, 4% of its population.<ref>{{Cite news |date=20 January 2008 |title=France's oldest WWI veteran dies |work=BBC News |location=London |url=http://news.bbc.co.uk/2/hi/europe/7199127.stm}}</ref>
+[[File:El 114 de infantería, en París, el 14 de julio de 1917, León Gimpel.jpg|thumb|left|French [[Poilus]] posing with their war-torn flag in 1917, during World War I]]
+Between 27 and 30% of soldiers conscripted from 1912 to 1915 were killed.<ref>Spencer C. Tucker, Priscilla Mary Roberts (2005). ''[https://books.google.com/books?id=2YqjfHLyyj8C&pg=PR25 Encyclopedia Of World War I: A Political, Social, And Military History]''. ABC-CLIO. {{ISBN|978-1-85109-420-2}}</ref> The interbellum years were marked by [[Events preceding World War II in Europe|intense international tensions]] and a variety of social reforms introduced by the [[Popular Front (France)|Popular Front government]] ([[annual leave]], [[Eight-hour day|eight-hour workdays]], [[women in government]]).
+
+In 1940, France was [[Battle of France|invaded and quickly defeated]] by [[Nazi Germany]]. France was divided into a [[German military administration in occupied France during World War II|German occupation zone]] in the north, an [[Italian occupation of France|Italian occupation zone]] in the southeast and an unoccupied territory, the rest of France, which consisted of the southern French metropolitan territory (two-fifths of pre-war metropolitan France) and the French empire, which included the two protectorates of French Tunisia and French Morocco, and French Algeria; the Vichy government, a newly established authoritarian regime collaborating with Germany, ruled the unoccupied territory. Free France, the government-in-exile led by&nbsp;Charles de Gaulle, was set up in London.{{Full citation needed|date=August 2021}}
+
+From 1942 to 1944, about 160,000 French citizens, including around [[The Holocaust in France|75,000 Jews]],<ref>{{Cite web |title=The Danish Center for Holocaust and Genocide Studies |url=http://www.holocaust-education.dk/holocaust/deportationer.asp |url-status=dead |archive-url=https://web.archive.org/web/20140416061232/http://www.holocaust-education.dk/holocaust/deportationer.asp |archive-date=16 April 2014}}; {{Cite web|url=https://www.bbc.co.uk/history/worldwars/genocide/jewish_deportation_01.shtml|title=BBC – History – World Wars: The Vichy Policy on Jewish Deportation|website=bbc.co.uk}}; France, United States Holocaust Memorial Museum, {{Cite web|url=http://www.ushmm.org/wlc/en/article.php?ModuleId=10005429|title=France|access-date=16 October 2014|url-status=dead|archive-url=https://web.archive.org/web/20141206075910/http://www.ushmm.org/wlc/en/article.php?ModuleId=10005429|archive-date=6 December 2014}}</ref> were deported to [[extermination camps|death camps]] and [[concentration camps]] in Germany and occupied Poland.<ref>Noir sur Blanc: Les premières photos du camp de concentration
+de Buchenwald après la libération,{{Cite web |title=Archived copy |url=http://www.ain.fr/upload/docs/application/pdf/2011-05/dp_expo_schwartz_auf_weiss_nantua_2011bd.pdf |url-status=dead |archive-url=https://web.archive.org/web/20141109055804/http://www.ain.fr/upload/docs/application/pdf/2011-05/dp_expo_schwartz_auf_weiss_nantua_2011bd.pdf |archive-date=9 November 2014 |access-date=14 October 2014}} (French)</ref> In September 1943, [[Corsica]] was the first French metropolitan territory to liberate itself from the Axis. On 6 June 1944, the [[Allies of World War II|Allies]] [[Invasion of Normandy|invaded Normandy]] and in August they [[Operation Dragoon|invaded Provence]]. Over the following year, the Allies and the [[French Resistance]] emerged victorious over the [[Axis powers]] and French sovereignty was restored with the establishment of the [[Provisional Government of the French Republic]] (GPRF). This interim government, established by de Gaulle, aimed to continue to [[Western Allied invasion of Germany|wage war against Germany]] and to [[Épuration légale|purge collaborators from office]]. It also made several important reforms (suffrage extended to women, the creation of a [[Social security in France|social security]] system).
+
+===Contemporary period (1946–present)===
+[[File:De Gaulle-OWI.jpg|thumb|upright|alt=Charles de Gaulle seated in uniform looking left with folded arms|[[Charles de Gaulle]], a hero of World War I, leader of the [[Free French Forces|Free French]] during [[World War II]], and [[President of France]]]]
+The GPRF laid the groundwork for a new constitutional order that resulted in the [[French Fourth Republic|Fourth Republic]] (1946–1958), which saw spectacular economic growth (''les [[Trente Glorieuses]]''). France was one of the founding members of [[NATO]] (1949). France attempted to [[First Indochina War|regain control of French Indochina]] but was defeated by the [[Viet Minh]] in 1954 at the climactic [[Battle of Dien Bien Phu]]. Only months later, France faced another [[anti-colonialist]] [[Algerian War|conflict in Algeria]], then treated as an integral part of France and home to over one million [[Pied-Noir|European settlers]]. During the conflict, the French systematically used torture and repression, including extrajudicial killings to keep control of [[French Algeria|Algeria]].<ref name="Macqueen2014">{{Cite book |last=Norrie Macqueen |url=https://books.google.com/books?id=g1YSBAAAQBAJ&pg=PA131 |title=Colonialism |date=22 July 2014 |publisher=Routledge |isbn=978-1-317-86480-6 |page=131}}; {{Cite news|title=In France, a War of Memories Over Memories of War|first=Michael|last=Kimmelman|url=https://www.nytimes.com/2009/03/05/arts/design/05abroad.html|newspaper=The New York Times|date=4 March 2009}}</ref>
+This conflict wracked the country and nearly led to a coup and civil war in France.<ref>{{Cite journal |last1=Crozier |first1=Brian |last2=Mansell, Gerard |date=July 1960 |title=France and Algeria |journal=[[International Affairs (journal)|International Affairs]] |volume=36 |issue=3 |pages=310–321 |doi=10.2307/2610008 |jstor=2610008}}</ref>
+
+During the [[May 1958 crisis in France|May 1958 crisis]], the weak and unstable Fourth Republic gave way to the [[French Fifth Republic|Fifth Republic]], which included a strengthened Presidency.<ref>{{Cite web |title=From Fourth to Fifth Republic |url=http://seacoast.sunderland.ac.uk/~os0tmc/contem/fifth.htm |url-status=dead |archive-url=https://web.archive.org/web/20080523234726/http://seacoast.sunderland.ac.uk/~os0tmc/contem/fifth.htm |archive-date=23 May 2008 |publisher=[[University of Sunderland]]}}</ref> In the latter role, Charles de Gaulle managed to keep the country together while taking steps to end the [[Algerian War]]. The war was concluded with the [[Évian Accords]] in 1962 which led to Algerian independence. Algerian independence came at a high price: it resulted in between half a million and one million deaths and over 2&nbsp;million internally displaced Algerians.<ref name="Springer">{{Cite book |title=A New Paradigm of the African State: Fundi wa Afrika |date=2009 |publisher=Springer |page=75}}; {{Cite book|author=David P Forsythe|title=Encyclopedia of Human Rights|date=27 August 2009|publisher=OUP USA|isbn=978-0-19-533402-9|page=[https://books.google.com/books?id=1QbX90fmCVUC&pg=PA37 37]}}; {{Cite book|author=Elizabeth Schmidt|title=Foreign Intervention in Africa: From the Cold War to the War on Terror|url=https://books.google.com/books?id=VCMgAwAAQBAJ&pg=PA46|date=25 March 2013|publisher=Cambridge University Press|isbn=978-1-107-31065-0|page=46}}</ref> Around one million [[Pied-Noir]]s and [[Harki]]s fled from Algeria to France upon independence.<ref name="google4">{{Cite book |last1=Cutts, M. |url=https://books.google.com/books?id=54Oe1WTfBfAC&pg=PA38 |title=The State of the World's Refugees, 2000: Fifty Years of Humanitarian Action |last2=Office of the United Nations High Commissioner for Refugees |date=2000 |publisher=Oxford University Press |isbn=9780199241040 |page=38 |access-date=2017-01-13}} Referring to Evans, Martin. 2012. ''Algeria: France's Undeclared War''. New York: Oxford University Press.</ref> A vestige of the colonial empire are the [[Overseas France|French overseas departments and territories]].
+
+In the context of the [[Cold War]], De Gaulle pursued a policy of "national independence" towards the [[Western Bloc|Western]] and [[Eastern bloc]]s. To this end, he withdrew from [[NATO]]'s military-integrated command (while remaining in the NATO alliance itself), launched a [[Force de dissuasion|nuclear development programme]] and made France the [[France and weapons of mass destruction|fourth nuclear power]]. He [[Élysée Treaty|restored]] cordial [[France–Germany relations|Franco-German relations]] to create a European counterweight between the American and Soviet spheres of influence. However, he opposed any development of a [[Supranational union|supranational Europe]], favouring a Europe of [[Sovereign state|sovereign nations]]. In the wake of the series of worldwide [[protests of 1968]], the [[May 1968 in France|revolt of May 1968]] had an enormous social impact. In France, it was the watershed moment when a conservative moral ideal (religion, patriotism, respect for authority) shifted towards a more liberal moral ideal ([[secularism]], [[individualism]], [[sexual revolution]]). Although the revolt was a political failure (as the [[Gaullism|Gaullist]] party emerged even stronger than before) it announced a split between the French people and de Gaulle who resigned shortly after.<ref>Julian Bourg, ''From revolution to ethics: May 1968 and contemporary French thought'' (McGill-Queen's Press-MQUP, 2017).</ref>
+
+In the post-Gaullist era, France remained one of the most developed [[List of countries by GDP (nominal)|economies in the world]] but faced several economic crises that resulted in high unemployment rates and increasing public debt. In the late 20th and early 21st centuries, France has been at the forefront of the development of a supranational [[European Union]], notably by signing the [[Maastricht Treaty]] (which created the European Union) in 1992, establishing the [[Eurozone]] in 1999 and signing the [[Treaty of Lisbon|Lisbon Treaty]] in 2007.<ref>{{Cite web |title=Declaration by the Franco-German Defense and Security Council |url=http://www.elysee.fr/elysee/anglais/speeches_and_documents/2004/declaration_by_the_franco-german_defence_and_security_council.1096.html |archive-url=https://web.archive.org/web/20051025215249/http://www.elysee.fr/elysee/anglais/speeches_and_documents/2004/declaration_by_the_franco-german_defence_and_security_council.1096.html |archive-date=25 October 2005 |access-date=21 July 2011 |publisher=Elysee.fr}}</ref> France has also gradually but fully reintegrated into NATO and has since participated in most NATO-sponsored wars.<ref>{{Cite web |title=France and NATO |url=http://www.rpfrance-otan.org/France-and-NATO |url-status=dead |archive-url=https://web.archive.org/web/20140509044211/http://www.rpfrance-otan.org/France-and-NATO |archive-date=9 May 2014 |website=La France à l'Otan}}</ref>
+
+[[File:Marche républicaine, Paris, 11 janvier 2015 (15).jpg|thumb|left|alt=Place de la République statue column with large French flag|[[Republican marches]] were organised across France after the [[January 2015 Île-de-France attacks|January 2015 attacks]] perpetrated by [[Islamism|Islamist]] [[Terrorism|terrorists]]; they became the largest public rallies in French history.]]
+Since the 19th century, France has received many [[Immigration to France|immigrants]]. These have been mostly male [[foreign worker]]s from European Catholic countries who generally returned home when not employed.<ref name="Marie-Christine Weidmann-Koop">Marie-Christine Weidmann-Koop, Rosalie Vermette, "France at the dawn of the twenty-first century, trends and transformations", [https://books.google.com/books?id=cVa46Q7oMlcC&pg=PA160 p. 160]</ref> During the 1970s France faced an economic crisis and allowed new immigrants (mostly from the [[Maghreb]])<ref name="Marie-Christine Weidmann-Koop" /> to permanently [[Family reunification|settle in France with their families]] and acquire French citizenship. It resulted in hundreds of thousands of Muslims (especially in the larger cities) living in subsidised public housing and suffering from very high unemployment rates.<ref>Yvonne Yazbeck Haddad and Michael J. Balz, "The October Riots in France: A Failed Immigration Policy or the Empire Strikes Back?" ''International Migration'' (2006) 44#2 pp. 23–34.</ref> Simultaneously France renounced the [[Assimilation (sociology)|assimilation]] of immigrants, where they were expected to adhere to French traditional values and cultural norms. They were encouraged to retain their distinctive cultures and traditions and required merely to [[Social integration|integrate]].<ref>Sylvia Zappi, "French Government Revives Assimilation Policy", in Migration Policy Institute {{Cite web |title=French Government Revives Assimilation Policy &#124; migrationpolicy.org |url=http://www.migrationpolicy.org/article/french-government-revives-assimilation-policy |url-status=dead |archive-url=https://web.archive.org/web/20150130222428/http://www.migrationpolicy.org/article/french-government-revives-assimilation-policy |archive-date=30 January 2015 |access-date=30 January 2015}}</ref>
+
+Since the [[1995 Paris Métro and RER bombings]], France has been sporadically targeted by Islamist organisations, notably the [[January 2015 Île-de-France attacks|''Charlie Hebdo'' attack]] in January 2015 which provoked the [[Republican marches|largest public rallies]] in French history, gathering 4.4&nbsp;million people,<ref>{{Cite news |last1=Hinnant |first1=Lori |last2=Adamson |first2=Thomas |date=11 January 2015 |title=Officials: Paris Unity Rally Largest in French History |agency=Associated Press |url=http://hosted.ap.org/dynamic/stories/E/EU_FRANCE_ATTACKS_RALLY?SITE=AP&SECTION=HOME&TEMPLATE=DEFAULT&CTIME=2015-01-11-12-51-46 |url-status=dead |access-date=11 January 2015 |archive-url=https://web.archive.org/web/20150111213526/http://hosted.ap.org/dynamic/stories/E/EU_FRANCE_ATTACKS_RALLY?SITE=AP&SECTION=HOME&TEMPLATE=DEFAULT&CTIME=2015-01-11-12-51-46 |archive-date=11 January 2015}}; {{Cite news|title=Paris attacks: Millions rally for unity in France|url=https://www.bbc.com/news/world-europe-30765824|access-date=12 January 2015|work=BBC News|date=12 January 2015}}</ref> the [[November 2015 Paris attacks]] which resulted in 130 deaths, the deadliest attack on French soil since [[World War II]]<ref>{{Cite news |date=14 November 2015 |title=Parisians throw open doors in wake of attacks, but Muslims fear repercussions |work=The Guardian |url=https://www.theguardian.com/world/2015/nov/14/paris-attacks-people-throw-open-doors-to-help |access-date=19 November 2015}}; {{Cite news|url=http://www.independent.ie/world-news/europe/paris-terror-attacks/paris-terror-attacks-yes-parisians-are-traumatised-but-the-spirit-of-resistance-still-lingers-34201891.html|title=Yes, Parisians are traumatised, but the spirit of resistance still lingers|first=Nafeesa|last=Syeed|newspaper=The Irish Independent|date=15 November 2015|access-date=19 November 2015}}</ref> and the deadliest in the European Union since the [[2004 Madrid train bombings|Madrid train bombings in 2004]],<ref>{{Cite news |date=19 November 2015 |title=Europe's open-border policy may become latest victim of terrorism |newspaper=The Irish Times |url=https://www.irishtimes.com/news/world/europe/europe-s-open-border-policy-may-become-latest-victim-of-terrorism-1.2435486 |access-date=19 November 2015}}</ref> as well as the [[2016 Nice truck attack]], which caused 87 deaths during [[Bastille Day]] celebrations. [[Opération Chammal]], France's military efforts to contain [[Islamic State of Iraq and the Levant|ISIS]], killed over 1,000 ISIS troops between 2014 and 2015.<ref>{{Cite web |date=14 December 2015 |title=French policies provoke terrorist attacks |url=http://thematadorsghs.us/index.php/2015/12/14/french-policies-provoke-terrorist-attacks |website=The Matador}}; {{Cite book |editor-first=Gabriel |editor-last=Goodliffe |editor-first2=Riccardo |editor-last2=Brizzi |title=France After 2012 |publisher=Berghahn Books |date=2015}}</ref>
+
+==Geography==
+{{Main|Geography of France}}
+
+===Location and borders===
+[[File:Satellite_image_of_France_in_August_2002.jpg|thumb|[[Satellite image]] of the [[Metropolitan France]]]]
+[[File:Chamonix valley from la Flégère,2010 07.JPG|thumb|[[Chamonix]] valley with the [[Mont Blanc]] at background, the highest mountain in the [[Alps]] and [[Western Europe]] on the border with [[Italy]]]]
+[[File:Bora_Bora.jpg|thumb|[[Bora Bora]] in [[French Polynesia]]]]
+The vast majority of France's territory and population is situated in Western Europe and is called [[Metropolitan France]], to distinguish it from the country's various overseas polities. It is bordered by the [[North Sea]] in the north, the [[English Channel]] in the northwest, the Atlantic Ocean in the west and the Mediterranean sea in the southeast. Its land borders consist of [[Belgium]] and [[Luxembourg]] in the northeast, [[Germany]] and [[Switzerland]] in the east, [[Italy]] and [[Monaco]] in the southeast, and [[Andorra]] and [[Spain]] in the south and southwest. Except for the northeast, most of France's land borders are roughly delineated by natural boundaries and geographic features: to the south and southeast, the Pyrenees and the Alps and the Jura, respectively, and to the east, the Rhine river. Due to its shape, France is often referred to as ''{{Lang|fr|l'Hexagone}}'' ("The [[Hexagon]]"). Metropolitan France includes various coastal islands, of which the largest is [[Corsica]]. Metropolitan France is situated mostly between latitudes [[41st parallel north|41°]] and [[51st parallel north|51° N]], and longitudes [[6th meridian west|6° W]] and [[10th meridian east|10° E]], on the western edge of Europe, and thus lies within the northern [[temperateness|temperate]] zone. Its continental part covers about 1000&nbsp;km from north to south and from east to west.
+
+France has several [[Overseas departments and territories of France|overseas regions]] across the world, which are organised as follows:
+* five have the same status as mainland France's regions and departments:
+** [[French Guiana]] in [[South America]];
+** [[Guadeloupe]] in the [[Caribbean]];
+** [[Martinique]] in the [[Caribbean]];
+** [[Mayotte]] in the [[Indian Ocean]], off the coast of East Africa;
+** [[Réunion]] in the [[Indian Ocean]], off the coast of East Africa.
+* nine have special legal status distinct from mainland France's regions and departments:
+** In the Atlantic Ocean: [[Saint Pierre and Miquelon]] and, in the Antilles: [[Collectivity of Saint Martin|Saint Martin]] and [[Saint Barthélemy]].
+** In the Pacific Ocean: [[French Polynesia]], the special collectivity of [[New Caledonia]], [[Wallis and Futuna]] and [[Clipperton Island]].
+** In the Indian Ocean: [[Kerguelen Islands|the Kerguelen Islands]], [[Crozet Islands]], [[Île Saint-Paul|St. Paul]] and [[Île Amsterdam|Amsterdam]] islands, and the [[Scattered Islands in the Indian Ocean]]
+** In the Antarctic: [[Adélie Land]].
+
+France has land borders with Brazil and Suriname via [[French Guiana]] and with the Kingdom of the Netherlands through the French portion of [[Saint Martin (island)|Saint Martin]].
+
+Metropolitan France covers {{Convert|551500|km2|sqmi|0}},<ref name=France/> the largest among [[European Union]] members.<ref name="superficy">{{Cite web |title=Europa Official Site&nbsp;– France |url=http://europa.eu/about-eu/countries/member-countries/france/index_en.htm |access-date=28 October 2014 |publisher=EU}}</ref> France's total land area, with its overseas departments and territories (excluding [[Adélie Land]]), is {{Convert|643801|km2|sqmi|0|abbr=on}}, 0.45% of the total land area on Earth. France possesses a wide variety of landscapes, from coastal plains in the north and west to mountain ranges of the [[Alps]] in the southeast, the [[Massif Central]] in the south-central and [[Pyrenees]] in the southwest.
+
+Due to its numerous [[Overseas departments and territories of France|overseas departments and territories]] scattered across the planet, France possesses the second-largest [[Exclusive economic zone]] (EEZ) in the world, covering {{Convert|11035000|km2|sqmi|-3|abbr=on}}, just behind the EEZ of the [[United States]], which covers {{Convert|11351000|km2|sqmi|-3|abbr=on}}, but ahead of the EEZ of Australia, which covers {{Convert|8148250|km2|sqmi|-3|abbr=on}}. Its EEZ covers approximately 8% of the total surface of all the EEZs of the world.
+
+===Geology, topography and hydrography===
+[[File:2013.07.05 roussillon - roque anthéron 172.JPG|thumb|Geological formations near [[Roussillon, Vaucluse|Roussillon]], [[Vaucluse]]]]
+Metropolitan France has a wide variety of topographical sets and natural landscapes. Large parts of the current territory of France were raised during several tectonic episodes like the Hercynian uplift in the Paleozoic Era, during which the [[Armorican Massif]], the [[Massif Central]], the [[Morvan]], the [[Vosges]] and [[Ardennes]] ranges and the island of [[Corsica]] were formed. These massifs delineate several sedimentary basins such as the Aquitaine basin in the southwest and the Paris basin in the north, the latter including several areas of particularly fertile ground such as the silt beds of Beauce and Brie. Various routes of natural passage, such as the Rhône Valley, allow easy communication. The Alpine, Pyrenean and Jura mountains are much younger and have less eroded forms. At {{Convert|4810.45|m|ft|0}}<ref>{{Cite news |date=6 November 2009 |title=Mont Blanc shrinks by {{Convert|45|cm|2|abbr=on}} in two years |work=The Sydney Morning Herald |url=https://www.smh.com.au/environment/mont-blanc-shrinks-by-45cm-in-two-years-20091106-i0kk.html |access-date=9 August 2010}}</ref> above sea level, [[Mont Blanc]], located in the Alps on the French and Italian border, is the highest point in Western Europe. Although 60% of municipalities are classified as having seismic risks, these risks remain moderate.
+
+[[File:Roselière de Pauillac et carrelets sur l'estuaire de la Gironde, France.jpg|thumb|Reed bed on the [[Gironde estuary]], the largest estuary in Western Europe]]
+
+The coastlines offer contrasting landscapes: mountain ranges along the [[French Riviera]], coastal cliffs such as the [[Côte d'Albâtre]], and wide sandy plains in the [[Languedoc]]. Corsica lies off the Mediterranean coast. France has an extensive river system consisting of the four major rivers [[Seine]], the [[Loire]], the [[Garonne]], the [[Rhône]] and their tributaries, whose combined catchment includes over 62% of the metropolitan territory. The Rhône divides the Massif Central from the Alps and flows into the Mediterranean Sea at the [[Camargue]]. The Garonne meets the [[Dordogne (river)|Dordogne]] just after Bordeaux, forming the [[Gironde estuary]], the largest estuary in Western Europe which after approximately {{Convert|100|km|mi|0}} empties into the Atlantic Ocean.<ref>{{Cite web |title=Close to ESTUARY |url=http://medoc-tourisme.com/en/mondes/close-to-estuary/}}</ref> Other water courses drain towards the Meuse and Rhine along the northeastern borders. France has {{Convert|11|e6km2}} of marine waters within three oceans under its jurisdiction, of which 97% are overseas.
+
+===Environment===
+{{See also|List of national parks of France|Regional natural parks of France|Climate change in France}}
+[[File:Saül 01 (cropped).jpg|thumb|The [[Guiana Amazonian Park]] is the largest [[List of national parks of France|national park of France]], aiming at protecting part of the [[Amazonian forest]] located in [[French Guiana]]]]
+France was one of the first countries to create an environment ministry, in 1971.<ref>{{Cite web |title=Protection of the Environment |url=http://www.ambafrance-ca.org/kid/pages_en/eco6.htm |url-status=dead |archive-url=https://web.archive.org/web/20110425005903/http://www.ambafrance-ca.org/kid/pages_en/eco6.htm |archive-date=25 April 2011}}</ref> Although it is one of the most industrialised countries in the world, France is ranked [[List of countries by carbon dioxide emissions|only 19th by carbon dioxide emissions]], behind less populous nations such as Canada or Australia. This is due to the country's heavy investment in [[nuclear power]] following the [[1973 oil crisis]],<ref>{{Cite web |date=July 2011 |title=Nuclear Power in France |url=http://www.world-nuclear.org/info/inf40.html |url-status=dead |archive-url=https://web.archive.org/web/20110719055222/http://www.world-nuclear.org/info/inf40.html |archive-date=19 July 2011 |access-date=17 July 2011 |website=World Nuclear Association}}</ref> which now accounts for 75 percent of its electricity production<ref>{{Cite encyclopedia |title=Energy profile of France |encyclopedia=Encyclopedia of Earth |publisher=Environmental Information Coalition, National Council for Science and the Environment |location=Washington, D.C. |url=http://www.eoearth.org/article/Energy_profile_of_France |access-date=17 July 2011 |date=10 September 2010 |others=Topic editor: Langdon D. Clough |orig-date=First published: 23 April 2010 |editor-last=Cutler J. Cleveland |archive-url=https://web.archive.org/web/20110429235144/http://www.eoearth.org/article/Energy_profile_of_France |archive-date=29 April 2011 |author=Eia}}</ref> and results in less pollution.<ref>{{Cite journal |last=Morgane Remy |date=18 June 2010 |title=CO2 : la France moins pollueuse grâce au nucléaire |trans-title=CO2: France less polluting thanks to nuclear |url=http://www.usinenouvelle.com/article/co2-la-france-moins-pollueuse-grace-au-nucleaire.N133933 |url-status=live |journal=L'Usine Nouvelle |language=fr |archive-url=https://web.archive.org/web/20100621042424/http://www.usinenouvelle.com/article/co2-la-france-moins-pollueuse-grace-au-nucleaire.N133933 |archive-date=21 June 2010}}</ref><ref>{{Cite web |date=7 January 2008 |title=L'énergie nucléaire en France |trans-title=Nuclear energy in France |url=http://www.ambafrance-cn.org/L-energie-nucleaire-en-France.html |archive-url=https://web.archive.org/web/20100701211529/http://www.ambafrance-cn.org/L-energie-nucleaire-en-France.html |archive-date=1 July 2010 |website=La France en Chine |language=fr}}</ref> According to the 2020 [[Environmental Performance Index]] conducted by [[Yale]] and [[Columbia University|Columbia]], France was the fifth most environmentally conscious country in the world (behind the United Kingdom).<ref>{{Cite web |title=2018 EPI Results {{!}} Environmental Performance Index |url=https://epi.envirocenter.yale.edu/epi-topline |url-status=dead |archive-url=https://web.archive.org/web/20190723205354/https://epi.envirocenter.yale.edu/epi-topline |archive-date=23 July 2019 |access-date=20 August 2019 |website=epi.envirocenter.yale.edu}}</ref><ref>{{Cite web |last=Hsu |first=A. |display-authors=etal |year=2016 |title=2016 Environmental Performance Index |url=http://epi.yale.edu/sites/default/files/2016EPI_Full_Report_opt.pdf |url-status=dead |archive-url=https://web.archive.org/web/20171004102150/http://epi.yale.edu/sites/default/files/2016EPI_Full_Report_opt.pdf |archive-date=4 October 2017 |access-date=14 December 2017 |publisher=Yale University |location=New Haven, CT}}</ref>
+
+Like all European Union state members, France agreed to cut [[carbon emissions]] by at least 20% of 1990 levels by 2020,<ref>{{Cite news |last=Ian Traynor and David Gow |date=21 February 2007 |title=EU promises 20% reduction in carbon emissions by 2020 |work=The Guardian |location=London |url=https://www.theguardian.com/environment/2007/feb/21/climatechange.climatechangeenvironment |access-date=21 July 2011}}</ref> compared to the United States' plan to reduce emissions by 4% of 1990 levels.<ref>{{Cite news |last=Marie Verdier |date=6 December 2009 |title=Les quatre enjeux de Copenhague |work=[[La Croix (newspaper)|La Croix]] |url=http://www.la-croix.com/Actualite/S-informer/Sciences/Les-quatre-enjeux-de-Copenhague-_NG_-2009-12-06-569870 |url-status=live |archive-url=https://web.archive.org/web/20120111125721/http://www.la-croix.com/Actualite/S-informer/Sciences/Les-quatre-enjeux-de-Copenhague-_NG_-2009-12-06-569870 |archive-date=11 January 2012}}</ref> {{As of|2009}}, French carbon dioxide emissions per capita were lower than that of China.<ref>{{Cite news |last=Kanter |first=James |date=1 July 2010 |title=Per-Capita Emissions Rising in China |work=The New York Times |url=https://green.blogs.nytimes.com/2010/07/01/emissions-soar-in-china-and-india/ |access-date=21 July 2011}}</ref> The country was set to impose a [[carbon tax]] in 2009 at 17 euros per tonne of carbon emitted,<ref>{{Cite news |date=10 September 2009 |title=France Sets Carbon Tax at 17 Euros a Ton |work=The New York Times |agency=Reuters |location=France |url=https://www.nytimes.com/2009/09/11/business/global/11carbon.html |access-date=21 July 2011}}</ref> which would have raised 4&nbsp;billion euros of revenue annually.<ref>{{Cite news |date=10 September 2009 |title=France set to impose carbon tax |work=BBC News |url=http://news.bbc.co.uk/2/hi/europe/8248392.stm |access-date=21 July 2011}}</ref> However, the plan was abandoned due to fears of burdening French businesses.<ref>{{Cite news |last=Saltmarsh |first=Matthew |date=23 March 2010 |title=France Abandons Plan for Carbon Tax |work=The New York Times |url=https://www.nytimes.com/2010/03/24/business/global/24iht-carbon.html |access-date=21 July 2011}}</ref>
+
+Forests account for 31 percent of France's land area—the fourth-highest proportion in Europe—representing an increase of 7 percent since 1990.<ref>{{Cite news |date=18 July 2019 |title=Why France's forests are getting bigger |newspaper=The Economist |url=https://www.economist.com/europe/2019/07/18/why-frances-forests-are-getting-bigger |access-date=20 August 2019 |issn=0013-0613}}</ref><ref>{{Cite web |title=Countries Compared by Environment > Forest area > % of land area |url=http://www.nationmaster.com/country-info/stats/Environment/Forest-area/%25-of-land-area#2005 |url-status=dead |archive-url=https://web.archive.org/web/20180108120450/http://www.nationmaster.com/country-info/stats/Environment/Forest-area/%25-of-land-area#2005 |archive-date=8 January 2018 |access-date=7 January 2018 |website=Nationmaster.com |publisher=International Statistics}}</ref><ref>{{Cite web |title=Evolution of the French forest from 1984 to 1996 |url=http://www.ifn.fr/spip/?rubrique83&lang=en |archive-url=https://web.archive.org/web/20110513083104/http://www.ifn.fr/spip/?rubrique83&lang=en |archive-date=13 May 2011 |publisher=Inventaire Forestier National [National Forest Inventory]}}</ref> French forests are some of the most diverse in Europe, comprising more than 140 species of trees.<ref>{{Cite web |title=La forêt en France et dans le monde |trans-title=The forest in France and in the world |url=http://www.lepapier.fr/foret_france.htm |url-status=live |archive-url=https://web.archive.org/web/20100727011505/http://www.lepapier.fr/foret_france.htm |archive-date=27 July 2010 |website=lepapier.fr |language=fr}}</ref> France had a 2018 [[Forest Landscape Integrity Index]] mean score of 4.52/10, ranking it 123rd globally out of 172 countries.<ref name="FLII-Supplementary">{{Cite journal |last1=Grantham |first1=H. S. |last2=Duncan |first2=A. |last3=Evans |first3=T. D. |last4=Jones |first4=K. R. |last5=Beyer |first5=H. L. |last6=Schuster |first6=R. |last7=Walston |first7=J. |last8=Ray |first8=J. C. |last9=Robinson |first9=J. G. |last10=Callow |first10=M. |last11=Clements |first11=T. |last12=Costa |first12=H. M. |last13=DeGemmis |first13=A. |last14=Elsen |first14=P. R. |last15=Ervin |first15=J. |year=2020 |title=Anthropogenic modification of forests means only 40% of remaining forests have high ecosystem integrity – Supplementary Material |journal=Nature Communications |volume=11 |issue=1 |page=5978 |doi=10.1038/s41467-020-19493-3 |issn=2041-1723 |pmc=7723057 |pmid=33293507 |last16=Franco |first16=P. |last17=Goldman |first17=E. |last18=Goetz |first18=S. |last19=Hansen |first19=A. |last20=Hofsvang |first20=E. |last21=Jantz |first21=P. |last22=Jupiter |first22=S. |last23=Kang |first23=A. |last24=Langhammer |first24=P. |last25=Laurance |first25=W. F. |last26=Lieberman |first26=S. |last27=Linkie |first27=M. |last28=Malhi |first28=Y. |last29=Maxwell |first29=S. |last30=Mendez |first30=M. |last31=Mittermeier |first31=R. |last32=Murray |first32=N. J. |last33=Possingham |first33=H. |last34=Radachowsky |first34=J. |last35=Saatchi |first35=S. |last36=Samper |first36=C. |last37=Silverman |first37=J. |last38=Shapiro |first38=A. |last39=Strassburg |first39=B. |last40=Stevens |first40=T. |last41=Stokes |first41=E. |last42=Taylor |first42=R. |last43=Tear |first43=T. |last44=Tizard |first44=R. |last45=Venter |first45=O. |last46=Visconti |first46=P. |last47=Wang |first47=S. |last48=Watson |first48=J. E. M.|bibcode=2020NatCo..11.5978G }}</ref> There are nine [[national park]]s<ref>{{Cite web |title=Parks and other protected areas in France |url=http://www.parks.it/world/FR/Eindex.html |website=Parks.it}}</ref> and 46 [[Protected area|natural parks]] in France,<ref>{{Cite web |title=Fédération des parcs naturels régionaux de France |trans-title=Federation of Regional Natural Parks of France |url=http://www.parcs-naturels-regionaux.tm.fr/fr/accueil/ |archive-url=https://web.archive.org/web/20100712003310/http://www.parcs-naturels-regionaux.tm.fr/fr/accueil/ |archive-date=12 July 2010 |language=fr}}</ref> with the government planning to convert 20% of its [[Exclusive economic zone]] into a [[Marine protected area]] by 2020.<ref>{{Cite web |date=25 August 2009 |title=La France veut créer une Zone Économique Exclusive en Méditerranée |trans-title=France wants to create an Exclusive Economic Zone in the Mediterranean |url=http://www.actu-environnement.com/ae/news/mer_grenelle_zee_meditarrane_borloo_aire_marine_8120.php4 |archive-url=https://web.archive.org/web/20110513060529/http://www.actu-environnement.com/ae/news/mer_grenelle_zee_meditarrane_borloo_aire_marine_8120.php4 |archive-date=13 May 2011 |website=Actu-Environnement.com |language=fr}}</ref> A regional nature park<ref>{{Cite web |date=22 July 2013 |title=The regional nature Parks of France |url=http://www.parcs-naturels-regionaux.tm.fr/en/parc.UK2.pdf |url-status=dead |archive-url=https://web.archive.org/web/20130722030433/http://www.parcs-naturels-regionaux.tm.fr/en/parc.UK2.pdf |archive-date=22 July 2013 |access-date=22 June 2014 |publisher=Fédération des Parcs naturels régionaux de France [Federation of the regional nature Parks of France]}}</ref> ({{Lang-fr|parc naturel régional|links=no}} or PNR) is a public establishment in France between local authorities and the [[Government of France|national government]] covering an inhabited rural area of outstanding beauty, to protect the scenery and heritage as well as setting up sustainable economic development in the area.<ref>{{Cite book |last=William M. Lafferty |title=Sustainable communities in Europe |publisher=Earthscan |year=2001 |isbn=978-1-85383-791-3 |page=[https://books.google.com/books?id=VHP96jPKl-0C&pg=PA181 181]}}</ref> A PNR sets goals and guidelines for managed human habitation, sustainable economic development and protection of the natural environment based on each park's unique landscape and heritage. The parks foster ecological research programmes and public education in the natural sciences.<ref name="FGTO">{{Cite web |year=2008 |title=Regional Natural Parks |url=http://uk.franceguide.com/Regional-natural-parks.html?NodeID=1&EditoID=205227 |url-status=dead |archive-url=https://web.archive.org/web/20120405192042/http://uk.franceguide.com/Regional-natural-parks.html?NodeID=1&EditoID=205227 |archive-date=5 April 2012 |access-date=27 October 2011 |website=France Guide |publisher=Maison de la France}}</ref> {{As of|2019}} there are 54 PNRs in France.<ref>{{Cite web |title=Découvrir les 54 Parcs |url=https://www.parcs-naturels-regionaux.fr/les-parcs-naturels-regionaux-de-france/decouvrir-les-54-parcs |url-status=dead |archive-url=https://web.archive.org/web/20190819171349/https://www.parcs-naturels-regionaux.fr/les-parcs-naturels-regionaux-de-france/decouvrir-les-54-parcs |archive-date=19 August 2019 |access-date=16 October 2019 |website=Fédération des Parcs naturels régionaux de France}}</ref>
+
+===Administrative divisions===
+{{Main|Administrative divisions of France}}
+The French Republic is divided into 18 [[Regions of France|regions]] (located in Europe and overseas), five [[Overseas collectivities of France|overseas collectivities]], one [[Overseas territory (France)|overseas territory]], one special collectivity – [[New Caledonia]] and one uninhabited island directly under the authority of the Minister of Overseas France – [[Clipperton Island|Clipperton]].
+
+====Regions====
+{{France Regions Labelled Map}}
+{{Further|Departments of France}}
+Since 2016, France is divided into 18 administrative regions: 13 regions in [[metropolitan France]] (including [[Corsica]]),<ref>{{Cite web |date=18 December 2015 |title=La réforme territoriale |url=http://www.gouvernement.fr/action/la-reforme-territoriale |url-status=dead |archive-url=https://web.archive.org/web/20151230075909/http://www.gouvernement.fr/action/la-reforme-territoriale |archive-date=30 December 2015 |access-date=1 January 2016 |publisher=Government of France |language=fr}}</ref> and five [[overseas region|overseas]].<ref name=France/> The regions are further subdivided into 101 [[Departments of France|departments]],<ref>{{Cite web |title=Departments of France |url=http://www.myfrenchproperty.com/departments/departments.php |url-status=dead |archive-url=https://web.archive.org/web/20110714142645/http://www.myfrenchproperty.com/departments/departments.php |archive-date=14 July 2011 |access-date=21 July 2011 |publisher=Myfrenchproperty.com |language=fr}}</ref> which are numbered mainly alphabetically. The department number is used in postal codes and was formerly used on [[Vehicle registration plates of France|vehicle registration plates]]. Among the 101 French departments, five ([[French Guiana]], Guadeloupe, [[Martinique]], [[Mayotte]], and [[Réunion]]) are in overseas regions (ROMs) that are simultaneously overseas departments (DOMs), enjoying the same status as metropolitan departments and are thereby included in the European Union.
+
+The 101 departments are subdivided into 335 [[Arrondissements of France|arrondissements]], which are, in turn, subdivided into 2,054 [[Cantons of France|cantons]].<ref name="constituencies">{{Cite web |title=Circonscriptions administratives au 1er janvier 2015 : comparaisons régionales |trans-title=Administrative constituencies of 1 January 2015: regional comparisons |url=http://www.insee.fr/fr/themes/tableau.asp?reg_id=99&ref_id=t_0203R |url-status=dead |archive-url=https://web.archive.org/web/20140430033500/http://www.insee.fr/fr/themes/tableau.asp?reg_id=99&ref_id=t_0203R |archive-date=30 April 2014 |access-date=5 July 2015 |publisher=[[Institut national de la statistique et des études économiques|INSEE]] |language=fr}}</ref> These cantons are then divided into 36,658 [[Communes of France|communes]], which are municipalities with an elected municipal council.<ref name=constituencies/> Three communes—Paris, Lyon and Marseille—are subdivided into 45 [[Municipal arrondissements of France|municipal arrondissements]].
+
+The regions, departments and communes are all known as [[territorial collectivity|territorial collectivities]], meaning they possess local assemblies as well as an executive. Today, arrondissements and cantons are merely administrative divisions. However, this was not always the case. Until 1940, the arrondissements were territorial collectivities with an elected assembly, but these were suspended by the [[Vichy France|Vichy regime]] and abolished by the [[French Fourth Republic|Fourth Republic]] in 1946.
+
+====Overseas territories and collectivities====
+[[File:France-Constituent-Lands.png|thumb|upright=1.8|alt=diagram of the overseas territories of France showing map shapes|The lands making up the French Republic, shown at the same [[scale (map)|geographic scale]]]]
+
+In addition to the 18 regions and 101 departments, the French Republic has five [[overseas collectivity|overseas collectivities]] ([[French Polynesia]], [[Saint Barthélemy]], [[Collectivity of Saint Martin|Saint Martin]], [[Saint Pierre and Miquelon]], and [[Wallis and Futuna]]), one ''[[sui generis]]'' collectivity ([[New Caledonia]]), one [[overseas territory (France)|overseas territory]] ([[French Southern and Antarctic Lands]]), and one island possession in the Pacific Ocean ([[Clipperton Island]]).
+
+Overseas collectivities and territories form part of the French Republic, but do not form part of the European Union or its fiscal area (except for St. Bartelemy, which seceded from Guadeloupe in 2007). The Pacific Collectivities (COMs) of French Polynesia, Wallis and Futuna, and New Caledonia continue to use the [[CFP franc]]<ref>{{Cite web |title=Currency and Exchange Rate |url=http://www.thetahititraveler.com/touristinfo/moneycurr.asp |url-status=dead |archive-url=https://web.archive.org/web/20110717034857/http://www.thetahititraveler.com/touristinfo/moneycurr.asp |archive-date=17 July 2011 |access-date=21 July 2011 |publisher=Thetahititraveler.com}}</ref> whose value is strictly linked to that of the euro. In contrast, the five overseas regions used the French franc and now use the euro.<ref>{{Cite web |title=2085rank |url=https://www.cia.gov/library/publications/the-world-factbook/rankorder/2085rank.html?countryName=France&countryCode=fr&regionCode=eu&rank=7#fr |url-status=dead |archive-url=https://web.archive.org/web/20120513121037/https://www.cia.gov/library/publications/the-world-factbook/rankorder/2085rank.html?countryName=France&countryCode=fr&regionCode=eu&rank=7#fr |archive-date=13 May 2012 |access-date=29 July 2010 |website=The World Factbook |publisher=CIA}}</ref>
+
+{| class="wikitable" style="font-size:90%"
+|-
+! Name
+! Constitutional status
+! Capital
+|-
+| {{Flag|Clipperton Island}}
+| State private property under the direct authority of the [[Minister of Overseas France|French government]]
+! ''[[Uninhabited]]''
+|-
+| {{Flag|French Polynesia}}
+| Designated as an overseas land (''pays d'outre-mer'' or POM), the status is the same as an overseas collectivity.
+! [[Papeete]]
+|-
+| {{Flag|French Southern and Antarctic Lands}}
+| Overseas territory (''territoire d'outre-mer'' or TOM)
+! [[Port-aux-Français]]
+|-
+| {{Flag|New Caledonia}}
+| ''[[Sui generis]]'' collectivity
+! [[Nouméa]]
+|-
+| {{Flag|Saint Barthélemy|local}}
+| Overseas collectivity (''collectivité d'outre-mer'' or COM)
+! [[Gustavia, Saint Barthélemy|Gustavia]]
+|-
+| {{Flag|Saint Martin}}
+| Overseas collectivity (''collectivité d'outre-mer'' or COM)
+! [[Marigot, Saint Martin|Marigot]]
+|-
+| {{Flag|Saint Pierre and Miquelon|local}}
+| Overseas collectivity (''collectivité d'outre-mer'' or COM). Still referred to as a ''collectivité territoriale''.
+! [[Saint-Pierre, Saint Pierre and Miquelon|Saint-Pierre]]
+|-
+| {{Flag|Wallis and Futuna|local}}
+| Overseas collectivity (''collectivité d'outre-mer'' or COM). Still referred to as a ''territoire''.
+! [[Mata-Utu]]
+|}
+
+==Government and politics==
+{{Main|Politics of France}}
+
+===Government===
+{| class="wikitable" style="text-align:left; float:left; margin-right:9px; margin-left:2px"
+|-
+| style="text-align:left" | [[File:Emmanuel Macron (2019-10-09) 03 (cropped).jpg|120px]]
+| style="text-align:left" | [[File:Elisabeth Borne November 2022 close-up.jpg|120px]]
+|-
+| style="text-align:center" | [[Emmanuel Macron]]<br/>{{Small|[[President of France|President]]}}
+| style="text-align:center" | [[Élisabeth Borne]]<br/>{{Small|[[Prime Minister of France|Prime Minister]]}}
+|}
+France is a [[representative democracy]] organised as a [[Unitary state|unitary]], [[Semi-presidential system|semi-presidential]] [[republic]].<ref>{{Cite web |title=Constitutional Limits on Government: Country Studies – France |url=http://www.democracyweb.org/limits/france.php |url-status=dead |archive-url=https://web.archive.org/web/20130828081904/http://democracyweb.org/limits/france.php |archive-date=28 August 2013 |access-date=30 September 2013 |website=Democracy Web: Comparative studies in Freedom}}</ref> As one of the earliest republics of the modern world, democratic traditions and values are deeply rooted in French culture, identity and politics.<ref name=":1">{{Cite web |title=France {{!}} History, Map, Flag, Capital, & Facts |url=https://www.britannica.com/place/France |access-date=27 August 2021 |website=Encyclopedia Britannica |language=en}}</ref> The Constitution of the Fifth Republic was approved by [[1958 French constitutional referendum|referendum]] on 28 September 1958, establishing a framework consisting of executive, legislative and judicial branches.<ref>{{Cite book |last=Helen Drake |title=Contemporary France |date=2011 |publisher=Palgrave Macmillan |isbn=978-0-333-79243-8 |page=[https://books.google.com/books?id=7L8cBQAAQBAJ&pg=PA95#v=onepage 95] |doi=10.1007/978-0-230-36688-6}}</ref> It sought to address the instability of the Third and Fourth Republics by combining elements of both parliamentary and presidential systems, while greatly strengthening the authority of the executive relative to the legislature.<ref name=":1" />
+
+The executive branch has two leaders. The [[President of France|President of the Republic]], currently [[Emmanuel Macron]], is the [[head of state]], elected directly by universal adult suffrage for a five-year term.<ref>{{Cite web |title=Le quinquennat : le référendum du 24 Septembre 2000 |trans-title=The 5-year term: referendum of 24 September 2000 |url=http://www.ladocumentationfrancaise.fr/dossiers/quinquennat/index.shtml |url-status=live |archive-url=https://web.archive.org/web/20100812105736/http://www.ladocumentationfrancaise.fr/dossiers/quinquennat/index.shtml |archive-date=12 August 2010 |language=fr}}</ref> The [[Prime Minister of France|Prime Minister]], currently [[Élisabeth Borne]], is the [[head of government]], appointed by the President to lead the [[Government of France|government]]. The President has the power to dissolve Parliament or circumvent it by submitting referendums directly to the people; the President also appoints judges and civil servants, negotiates and ratifies international agreements, as well as serves as commander-in-chief of the Armed Forces. The Prime Minister determines public policy and oversees the civil service, with an emphasis on domestic matters.<ref>{{Cite web |date=13 March 2013 |title=The French National Assembly - Constitution of October 4, 1958 |url=http://www.assemblee-nationale.fr/english/8ab.asp |archive-url=https://web.archive.org/web/20130313212736/http://www.assemblee-nationale.fr/english/8ab.asp |archive-date=13 March 2013 |access-date=27 August 2021}}</ref> In the [[2022 French presidential election|2022 presidential election]] president Macron was re-elected.<ref>{{Cite news |date=24 April 2022 |title=What's in Emmanuel Macron's intray after his re-election as French president? |language=en |work=the Guardian |url=https://www.theguardian.com/world/2022/apr/24/whats-in-emmanuel-macrons-intray-after-his-re-election-as-french-president}}</ref>
+
+[[File:Palais Bourbon, Paris 7e, NW View 140402 1.jpg|thumb|[[Palais Bourbon]], the meeting place of the [[National Assembly (France)|National Assembly]], the lower legislative chamber of the [[French Parliament]].]]
+The legislature consists of the [[French Parliament]], a [[Bicameralism|bicameral]] body made up of a [[lower house]], the [[National Assembly (France)|National Assembly]] (''Assemblée nationale'') and an [[upper house]], the [[Senate (France)|Senate]].<ref>{{Cite web |title=The National Assembly and the Senate&nbsp;– General Characteristics of the Parliament |url=http://www.assemblee-nationale.fr/english/synthetic_files/file_4.asp |url-status=dead |archive-url=https://web.archive.org/web/20081205055025/http://www.assemblee-nationale.fr/english/synthetic_files/file_4.asp |archive-date=5 December 2008 |website=Assemblée Nationale}}</ref> Legislators in the National Assembly, known as ''[[députés]],'' represent local constituencies and are directly elected for five-year terms.<ref>{{Cite web |title=Election of deputies |url=http://www.assemblee-nationale.fr/english/election.asp |url-status=dead |archive-url=https://web.archive.org/web/20110704054719/http://www.assemblee-nationale.fr/english/election.asp |archive-date=4 July 2011 |website=Assemblée Nationale}}</ref> The Assembly has the power to dismiss the government by majority vote. Senators are chosen by an electoral college for six-year terms, with half the seats submitted to election every three years.<ref>{{Cite web |title=The senatorial elections |url=http://www.senat.fr/lng/en/election_senateurs.html |website=Sénate}}</ref> The Senate's legislative powers are limited; in the event of disagreement between the two chambers, the National Assembly has the final say.<ref>{{Cite web |date=18 August 2007 |title=Le role du Sénat |trans-title=What is the purpose of the Senate? |url=http://www.politique.net/2007081801-le-role-du-senat.htm |url-status=live |archive-url=https://web.archive.org/web/20100618060857/http://www.politique.net/2007081801-le-role-du-senat.htm |archive-date=18 June 2010 |language=fr}}</ref> The parliament is responsible for determining the rules and principles concerning most areas of law, political amnesty, and fiscal policy; however, the government may draft specific details concerning most laws.
+
+Until World War II, [[Radicalism (historical)|Radicals]] were a strong political force in France, embodied by the [[Republican, Radical and Radical-Socialist Party]] which was the most important party of the Third Republic. From World War II until 2017, French politics was dominated by two politically opposed groupings: one left-wing, the [[French Section of the Workers' International]], which was succeeded by the [[Socialist Party (France)|Socialist Party]] (in 1969); and the other right-wing, the [[Gaullist Party]], whose name changed over time to the [[Rally of the French People]] (1947), the [[Union of Democrats for the Republic]] (1958), the [[Rally for the Republic]] (1976), the [[Union for a Popular Movement]] (2007) and [[The Republicans (France)|The Republicans]] (since 2015). In the 2017 presidential and legislative elections, the [[Radical centrism|radical centrist]] party [[La République En Marche!]] (LREM) became the dominant force, overtaking both Socialists and Republicans. LREM's opponent in the second round of the 2017 and 2022 presidential elections was the growing far-right party [[National Rally]]. Since 2020, [[Europe Ecology – The Greens]] have performed well in mayoral elections in major cities<ref>{{cite web | author = Romain Brunet | website = France24 | title = After green wave in local elections, is France's left back on track? | date = 29 June 2020 | url = https://www.france24.com/en/20200629-after-green-wave-in-local-elections-is-france-s-left-back-on-track | language = en}}</ref> while on a national level, an alliance of Left parties (the [[NUPES]]) was the second-largest voting block elected to the lower house in 2022.<ref>{{cite web | website = France 24 | title = Takeaways from the final round of France's parliamentary elections | url = https://www.france24.com/en/france/20220620-takeaways-from-the-second-round-of-france-s-parliamentary-elections | date = 20 June 2022 | language = en }}</ref>
+
+The electorate is constitutionally empowered to vote on amendments passed by the Parliament and bills submitted by the president. Referendums have played a key role in shaping French politics and even foreign policy; voters have decided on such matters as Algeria's independence, the election of the president by popular vote, the formation of the EU, and the reduction of presidential term limits.<ref>{{Cite web |title=France - Parliamentary composition and functions |url=https://www.britannica.com/place/France |access-date=27 August 2021 |website=Encyclopedia Britannica |language=en}}</ref> Waning civic participation has been a matter of vigorous public debate, with a majority of the public reportedly supporting mandatory voting as a solution in 2019.{{citation needed|date=January 2023}}
+
+===Law===
+{{Main|Law of France}}
+France uses a [[Civil law (legal system)|civil legal]] system, wherein law arises primarily from written statutes;<ref name=France/> judges are not to make law, but merely to interpret it (though the amount of judicial interpretation in certain areas makes it equivalent to [[case law]] in a [[common law]] system). Basic principles of the [[rule of law]] were laid in the [[Napoleonic Code]] (which was, in turn, largely based on the royal law codified under [[Louis XIV]]). In agreement with the principles of the Declaration of the Rights of Man and of the Citizen, the law should only prohibit actions detrimental to society. As [[Guy Canivet]], first president of the [[Court of Cassation (France)|Court of Cassation]] wrote about the management of prisons: "Freedom is the rule, and its restriction is the exception; any restriction of Freedom must be provided for by Law and must follow the principles of necessity and proportionality." That is, Law should lay out prohibitions only if they are needed, and if the inconveniences caused by this restriction do not exceed the inconveniences that the prohibition is supposed to remedy.
+[[File:Declaration of Human Rights.jpg|thumb|left|upright|alt=color drawing of the Declaration of the Rights of Man and of the Citizen from 1789|The basic principles that the French Republic must respect are found in the 1789 [[Declaration of the Rights of Man and of the Citizen]].]]
+
+French law is divided into two principal areas: [[private law]] and [[public law]]. Private law includes, in particular, [[civil law (common law)|civil law]] and [[criminal law]]. Public law includes, in particular, [[administrative law]] and [[constitutional law]]. However, in practical terms, French law comprises three principal areas of law: civil law, criminal law, and administrative law. Criminal laws can only address the future and not the past (criminal ''[[Ex post facto law|ex post facto]]'' laws are prohibited).<ref>In European countries, legal doctrine has long faced the question of succession of criminal laws in time: {{Cite journal |last=Buonomo |first=Giampiero |year=2015 |title=La rivendicazione di Gallo |journal=Mondoperaio Edizione Online}}</ref> While administrative law is often a subcategory of civil law in many countries, it is completely separated in France and each body of law is headed by a specific supreme court: [[French judiciary courts|ordinary courts]] (which handle criminal and civil litigation) are headed by the [[Court of Cassation (France)|Court of Cassation]] and administrative courts are headed by the [[Conseil d'Etat (France)|Council of State]]. To be applicable, every law must be officially published in the ''[[Journal officiel de la République française]]''.
+
+France does not recognise [[religious law]] as a motivation for the enactment of prohibitions; it has long abolished [[blasphemy]] laws and [[sodomy law]]s (the latter in 1791). However, "offences against [[Decency|public decency]]" (''contraires aux bonnes mœurs'') or [[breach of the peace|disturbing public order]] (''trouble à l'ordre public'') have been used to repress public expressions of homosexuality or street prostitution. Since 1999, [[Pacte civil de solidarité|civil unions]] for homosexual couples are permitted, and since 2013, [[same-sex marriage]] and [[LGBT adoption]] are legal.<ref>{{Cite news |date=18 May 2013 |title=François Hollande signs same-sex marriage into law |publisher=France 24 |url=http://www.france24.com/en/20130518-france-gay-marriage-law-adoption |access-date=27 June 2013}}</ref> Laws prohibiting discriminatory speech in the press are [[Law on the Freedom of the Press of 29 July 1881|as old as 1881]]. Some consider [[hate speech laws in France]] to be too broad or severe, undermining [[freedom of speech]].<ref>"France: Strict Defamation and Privacy Laws Limit Free Expression&nbsp;– Index on Censorship| Index on Censorship." France: Strict Defamation and Privacy Laws Limit Free Expression&nbsp;– Index on Censorship| Index on Censorship. N.p., n.d. Web. 26 February 2014. {{Cite web |title=France: Strict defamation and privacy laws limit free expression - Index on Censorship &#124; Index on Censorship |url=http://www.indexoncensorship.org/2013/08/france-faces-restrictions-on-free-expression/ |url-status=dead |archive-url=https://web.archive.org/web/20130922214544/http://www.indexoncensorship.org/2013/08/france-faces-restrictions-on-free-expression/ |archive-date=22 September 2013 |access-date=18 February 2014}}.</ref>
+France has laws against racism and [[antisemitism]],<ref>{{In lang|fr}} [https://web.archive.org/web/20101205103557/http://www.ambafrance-dz.org/ambassade/IMG/Lutte_racisme_et_antisemitisme.pdf La lutte contre le racisme et l'antisémintisme en France]. AmbaFrance</ref> while the 1990 [[Gayssot Act]] prohibits [[Holocaust denial]].
+
+[[Freedom of religion in France|Freedom of religion]] is constitutionally guaranteed by the 1789 [[Declaration of the Rights of Man and of the Citizen]]. The [[1905 French law on the Separation of the Churches and the State]] is the basis for ''[[laïcité]]'' (state secularism): the state does not formally recognise any religion, [[Concordat in Alsace-Moselle|except in Alsace-Moselle]]. Nonetheless, it does recognise religious associations. The Parliament has [[Groups referred to as cults in government reports#France|listed many religious movements as dangerous cults]] since 1995 and has [[French law on secularity and conspicuous religious symbols in schools|banned wearing conspicuous religious symbols in schools]] since 2004. In 2010, it banned the [[French ban on face covering|wearing of face-covering Islamic veils in public]]; human rights groups such as [[Amnesty International]] and [[Human Rights Watch]] described the law as discriminatory towards Muslims.<ref>{{Cite web |last=Kenneth Roth Executive Director |date=26 February 2004 |title=Human Rights Watch |url=http://hrw.org/english/docs/2004/02/26/france7666.htm |access-date=31 January 2009 |publisher=Human Rights Watch}}</ref><ref>{{Cite news |date=13 July 2010 |title=France votes to ban full-face veils |publisher=[[Amnesty International]] |url=https://www.amnesty.org/en/news-and-updates/france-votes-ban-full-face-veils-2010-07-13 |url-status=dead |archive-url=https://web.archive.org/web/20141207163309/http://www.amnesty.org/en/news-and-updates/france-votes-ban-full-face-veils-2010-07-13 |archive-date=7 December 2014}}</ref> However, it is supported by most of the population.<ref>{{Cite web |title=L'image de l'islam en France |url=http://www.ifop.com/media/poll/2028-1-study_file.pdf |url-status=dead |archive-url=https://web.archive.org/web/20140312131944/http://www.ifop.com/media/poll/2028-1-study_file.pdf |archive-date=12 March 2014 |access-date=16 January 2017 |website=ifop.fr |publisher=IFOP |page=22 |language=fr}}</ref>
+<!-- to remove if it does not break future refs<ref name="Pew">{{Cite news |last=Dumoulin |first=Frederic |date=14 September 2010 |title=French parliament adopts ban on full-face veil |publisher=Google News |url=https://www.google.com/hostednews/afp/article/ALeqM5gNCFdNZ4r-9aDEBG0G_OUSMKoASw |url-status=dead |access-date=14 September 2010 |archive-url=https://web.archive.org/web/20130518083647/https://www.google.com/hostednews/afp/article/ALeqM5gNCFdNZ4r-9aDEBG0G_OUSMKoASw |archive-date=18 May 2013}}</ref>-->
+
+===Foreign relations===
+{{Main|Foreign relations of France}}
+France is a founding member of the United Nations and serves as one of the [[Permanent members of the United Nations Security Council|permanent members of the UN Security Council]] with veto rights.<ref>{{Cite web |date=6 July 2010 |title=Membership of the Security Councils of the UN |url=https://www.un.org/sc/members.asp |url-status=dead |archive-url=https://web.archive.org/web/20100706231352/http://www.un.org/sc/members.asp |archive-date=6 July 2010}}</ref> In 2015, it was described as "the best networked state in the world" due to its membership in more international institutions than any other country;<ref>{{Cite web |title=The Soft Power 30 |url=http://www.comres.co.uk/wp-content/uploads/2015/07/Report_Final-published.pdf |url-status=dead |archive-url=https://web.archive.org/web/20151120204008/http://www.comres.co.uk/wp-content/uploads/2015/07/Report_Final-published.pdf |archive-date=20 November 2015 |website=[[Monocle (media company)|Monocle]]}}</ref> these include the G7, [[World Trade Organization]] (WTO),<ref>{{Cite web |title=Members and Observers |url=http://www.wto.org/english/thewto_e/whatis_e/tif_e/org6_e.htm |access-date=30 October 2010 |website=World Trade Organization}}</ref> the [[Pacific Community]] (SPC)<ref>{{Cite web |date=12 February 2010 |title=History |url=http://www.spc.int/en/about-spc/history.html |url-status=dead |archive-url=https://web.archive.org/web/20100828105101/http://www.spc.int/en/about-spc/history.html |archive-date=28 August 2010 |website=Secretariate of the Pacific Community}}</ref> and the [[Indian Ocean Commission]] (COI).<ref>{{Cite web |title=Les pays membres de la COI |trans-title=IOC member countries |url=http://www.coi-ioc.org/index.php?id=36 |url-status=dead |archive-url=https://web.archive.org/web/20120402173028/http://www.coi-ioc.org/index.php?id=36 |archive-date=2 April 2012 |website=Commission de l'Océan Indien {{!}} Indian Ocean Commission |language=fr}}</ref> It is an associate member of the [[Association of Caribbean States]] (ACS)<ref>{{Cite web |date=24 July 1994 |title=About the Association of Caribbean States |url=http://www.acs-aec.org/index.php?q=about-the-acs |url-status=live |archive-url=https://web.archive.org/web/20120822100530/http://www.acs-aec.org/index.php?q=about-the-acs |archive-date=22 August 2012 |access-date=22 June 2012 |publisher=Association of Caribbean States}}</ref> and a leading member of the [[Organisation internationale de la Francophonie]] (OIF) of 84 French-speaking countries.<ref>{{Cite web |title=84 États et gouvernements |trans-title=84 states and governments |url=http://www.francophonie.org/-Etats-et-gouvernements-.html |url-status=dead |archive-url=https://web.archive.org/web/20091003114546/http://www.francophonie.org/-Etats-et-gouvernements-.html |archive-date=3 October 2009 |access-date=22 July 2010 |publisher=Organisation internationale de la Francophonie}}</ref>[[File:Map-Francophonie organisation fr.svg|thumb|alt=La Francophonie map (dozens of countries in Africa, Europe, Asia and Latin America are members of this international organisation.|88 states and governments are part of ''[[La Francophonie]]'',<ref>[https://www.francophonie.org/la-francophonie-en-bref-754 La Francophonie en bref], ''[[La Francophonie]]'', retrieved on 26 January 2020</ref> which promotes values of [[democracy]], [[multilingualism]] and [[cultural diversity]].<ref>Anne Gazeau-Secret, [https://www.cairn.info/revue-geoeconomie-2010-4-page-39.htm Francophonie et diplomatie d'influence], [[Cairn.info]], dans ''Géoéconomie'' 2010/4 (n° 55), pages 39 à 56</ref> France has been a key member of this global organisation since its inception in 1970.]]
+[[File:Inauguration EYE2014 Parlement européen Strasbourg 9 mai 2014.jpg|thumb|alt=European Parliament opening in Strasbourg with crowd and many countries' flags on flagpoles|The [[European Parliament]] in [[Strasbourg]], near the border with (Germany). France is a founding member of all EU institutions.]]
+
+As a significant hub for international relations, France has the [[List of diplomatic missions of France|third-largest assembly]] of [[diplomatic mission]]s, second only to China and the United States, which are far more populous. It also hosts the headquarters of several [[international organization|international organisations]], including the [[Organisation for Economic Co-operation and Development|OECD]], [[UNESCO]], [[Interpol]], the [[International Bureau of Weights and Measures]], and the OIF.<ref>{{Cite web |title=Embassies and consulates |url=http://www.diplomatie.gouv.fr/en/ministry_158/embassies-and-consulates_2052/bilateral-embassies_1580.html |url-status=dead |archive-url=https://web.archive.org/web/20100908014607/http://www.diplomatie.gouv.fr/en/ministry_158/embassies-and-consulates_2052/bilateral-embassies_1580.html |archive-date=8 September 2010 |website=France Diplomatie |publisher=The French Ministry of Foreign affairs}}</ref>
+
+Postwar French foreign policy has been largely shaped by membership in the European Union, of which it was a [[Inner Six|founding member]]. Since the [[Élysée Treaty|1960s]], France has developed close ties with reunified Germany to become the [[France–Germany relations|most influential driving force of the EU]].<ref>{{Cite web |last=Pierre-Louis Germain |date=12 November 2009 |title=L'alliance Franco-allemande au coeur de la puissance européenne |trans-title=The Franco-German alliance at the heart of European power |url=http://www.oftt.eu/perspectives/article/l-alliance-franco-allemande-au-coeur-de-la-puissance-europeenne |archive-url=https://web.archive.org/web/20100123092331/http://www.oftt.eu/perspectives/article/l-alliance-franco-allemande-au-coeur-de-la-puissance-europeenne |archive-date=23 January 2010 |publisher=Institut Montaigne |language=fr}}</ref> In the 1960s, France sought to exclude the British from the European unification process,<ref>{{Cite news |date=27 November 1967 |title=De Gaulle says 'non' to Britain&nbsp;– again |work=BBC News |url=http://news.bbc.co.uk/onthisday/hi/dates/stories/november/27/newsid_4187000/4187714.stm |access-date=21 July 2011}}</ref> seeking to build its standing in continental Europe. However, since 1904, France has maintained an "[[Entente cordiale]]" with the United Kingdom, and there has been a strengthening of links between the countries, especially [[Defence and Security Co-operation Treaty|militarily]].
+
+France is a member of the [[North Atlantic Treaty Organization]] (NATO), but under President de Gaulle excluded itself from the joint military command, in protest of the [[Special Relationship]] between the United States and Britain, and to preserve the independence of French foreign and security policies. Under Nicolas Sarkozy, France rejoined the NATO joint military command on 4 April 2009.<ref>{{Cite web |last=Isabelle Lasserre |date=11 March 2009 |title=Quand Mitterrand, déjà, négociait le retour de la France dans l'Otan |trans-title=Mitterrand already negotiated the return of France to NATO |url=http://www.lefigaro.fr/international/2009/03/11/01003-20090311ARTFIG00073-quand-mitterrand-deja-negociait-le-retour-dans-l-otan-.php |website=Le Figaro |language=fr}}</ref><ref>{{Cite news |date=12 March 2009 |title=France ends four-decade Nato rift |work=BBC News |url=http://news.bbc.co.uk/2/hi/europe/7937666.stm |access-date=21 July 2011}}</ref><ref>{{Cite news |last=Roger |first=Patrick |date=11 March 2009 |title=Le retour de la France dans l'OTAN suscite un malaise dans les rangs de la Droite |language=fr |trans-title=The return of France to NATO causes discomfort in the ranks of the right |work=Le Monde |location=Paris |url=http://www.lemonde.fr/politique/article/2009/03/11/le-retour-de-la-france-dans-l-otan-suscite-un-malaise-dans-les-rangs-de-la-droite_1166352_823448.html}}</ref>
+
+France retains strong political and economic influence in its [[Second French colonial empire|former African colonies]] (''[[Françafrique]]'')<ref>{{Cite web |title=L'empire colonial français |url=http://www.memo.fr/article.asp?ID=CON_COL_009 |url-status=dead |archive-url=https://web.archive.org/web/20110425142925/http://www.memo.fr/article.asp?ID=CON_COL_009 |archive-date=25 April 2011}}</ref> and has supplied economic aid and troops for peacekeeping missions in Ivory Coast and Chad.<ref>{{Cite web |title=France involvement in peace-keeping operations |url=http://www.delegfrance-onu-geneve.org/spip.php?article417 |url-status=dead |archive-url=https://web.archive.org/web/20110425024055/http://www.delegfrance-onu-geneve.org/spip.php?article417 |archive-date=25 April 2011 |access-date=9 August 2010 |publisher=Delegfrance-onu-geneve.org}}</ref> From 2012 to 2021, France and other African states intervened in support of the [[Mali]]an government in the [[Northern Mali conflict]].
+
+In 2017, France was the world's fourth-largest donor of [[development aid]] in absolute terms, behind the United States, Germany, and the United Kingdom.<ref>{{Cite web |title=Official development assistance (ODA) – Net ODA – OECD Data |url=http://data.oecd.org/oda/net-oda.htm |access-date=20 August 2019 |website=theOECD}}</ref> This represents 0.43% of its [[GNP]], the 12th highest among the OECD.<ref>{{Cite web |title=Aid to developing countries rebounds in 2013 to reach an all-time high |url=http://www.oecd.org/newsroom/aid-to-developing-countries-rebounds-in-2013-to-reach-an-all-time-high.htm |access-date=3 March 2016 |publisher=OECD}}</ref> Aid is provided by the governmental [[French Development Agency]], which finances primarily humanitarian projects in [[sub-Saharan Africa]],<ref name="aid" /> with an emphasis on "developing infrastructure, access to health care and education, the implementation of appropriate economic policies and the consolidation of the rule of law and democracy".<ref name="aid">[http://www.diplomatie.gouv.fr/en/france-priorities_1/index.html France priorities] {{Webarchive|url=https://web.archive.org/web/20100722114125/http://www.diplomatie.gouv.fr/en/france-priorities_1/index.html|date=22 July 2010}}&nbsp;– France Diplomatie</ref>
+
+===Military===
+{{Main|French Armed Forces}}The French Armed Forces (''Forces armées françaises'') are the military and paramilitary forces of France, under the [[President of France|President of the Republic]] as supreme commander. They consist of the [[French Army]] (''Armée de Terre''), the [[French Navy]] (''Marine Nationale'', formerly called ''Armée de Mer''), the [[French Air and Space Force]] (''Armée de l'Air et de l’Espace''), and the Military Police called [[National Gendarmerie]] (''Gendarmerie nationale''), which also fulfils civil police duties in the rural areas of France. Together they are among the [[List of countries by number of troops|largest armed forces]] in the world and the largest in the EU. According to a 2018 study by [[Crédit Suisse]], the French Armed Forces are ranked as the [[List of countries by Military Strength Index|world's sixth-most powerful military]], and the second most powerful in Europe after [[Russia]].<ref name="CreditSuisse2015">{{Cite report |url=http://publications.credit-suisse.com/tasks/render/file/index.cfm?fileid=EE7A6A5D-D9D5-6204-E9E6BB426B47D054 |title=The End of Globalization or a more Multipolar World? |last1=O’Sullivan |first1=Michael |last2=Subramanian |first2=Krithika |date=17 October 2015 |publisher=[[Credit Suisse]] AG |access-date=14 July 2017 |archive-url=https://web.archive.org/web/20180215235711/http://publications.credit-suisse.com/tasks/render/file/index.cfm?fileid=EE7A6A5D-D9D5-6204-E9E6BB426B47D054 |archive-date=15 February 2018 |url-status=dead}}</ref> France's annual military expenditure in 2018 was US$63.8&nbsp;billion, or 2.3% [[List of countries by military expenditure share of GDP|of its GDP]], making it the [[List of countries by military expenditures|fifth biggest military spender in the world]] after the United States, China, Saudi Arabia, and India.<ref>[https://www.sipri.org/publications/2019/sipri-fact-sheets/trends-world-military-expenditure-2018 Trends in World Military Expenditure] SIPRI. Retrieved 18 December 2019.</ref> There has been no national [[conscription]] since 1997.<ref>{{In lang|fr}} [http://www.ladocumentationfrancaise.fr/dossiers/service-civil/fin-service-militaire-obligatoire.shtml La fin du service militaire obligatoire] {{Webarchive|url=https://web.archive.org/web/20100808230428/http://www.ladocumentationfrancaise.fr/dossiers/service-civil/fin-service-militaire-obligatoire.shtml|date=8 August 2010}}&nbsp;– La documentation française</ref>{{Multiple image
+| direction = vertical
+| caption_align = center
+| image1 = Rafale_-_RIAT_2009_(3751416421).jpg
+| caption1 = [[Dassault Rafale]] of the [[Armée de l'Air et de l'Espace]]
+| image2 = French aircraft carrier Charles de Gaulle (R91) underway on 24 April 2019 (190424-M-BP588-1005).jpg
+| caption2 = ''[[French aircraft carrier Charles de Gaulle|Charles de Gaulle]]'' aircraft carrier of the [[French Navy|Marine nationale]]
+| image3 = Bastille_Day_2014_Paris_-_Motorised_troops_063.jpg
+| caption3 = [[Leclerc tank|AMX Leclerc]] tank of the [[French Army|Armée de terre]]
+}}
+France has been a [[List of states with nuclear weapons#Five nuclear-weapon states under the NPT|recognised nuclear state]] since 1960. France has signed and ratified the [[Comprehensive Nuclear-Test-Ban Treaty]] (CTBT)<ref name="status">{{Cite web |date=26 May 2010 |title=Status of signature and ratification |url=http://www.ctbto.org/the-treaty/status-of-signature-and-ratification/ |access-date=27 May 2010 |publisher=CTBTO Preparatory Commission}}</ref> and acceded to the [[Nuclear Non-Proliferation Treaty]]. The French nuclear force (formerly known as "''[[Force de Frappe]]''") consists of four [[Triomphant class submarine|''Triomphant'']] class submarines equipped with [[submarine-launched ballistic missile]]s. In addition to the submarine fleet, it is estimated that France has about 60 [[Air-Sol Moyenne Portée|''ASMP'']] medium-range [[Air-to-surface missile|air-to-ground missiles]] with [[Nuclear weapon|nuclear warheads]],<ref>{{In lang|fr}} Centre de Documentation et de Recherche sur la Paix et les Conflits, [http://obsarm.org/obsnuc/puissances-mondiales/france-forces.html ''Etat des forces nucléaires françaises au 15 août 2004''] {{Webarchive|url=https://web.archive.org/web/20110725004911/http://obsarm.org/obsnuc/puissances-mondiales/france-forces.html|date=25 July 2011}}</ref> of which around 50 are deployed by the Air and Space Force using the [[Dassault Mirage 2000N/2000D|Mirage 2000N]] long-range nuclear strike aircraft, while around 10 are deployed by the French Navy's [[Dassault-Breguet Super Étendard|Super Étendard Modernisé (SEM)]] attack aircraft, which operate from the nuclear-powered [[aircraft carrier]] [[French aircraft carrier Charles de Gaulle (R91)|''Charles de Gaulle'']]. The new [[Dassault Rafale|Rafale F3]] aircraft will gradually replace all Mirage 2000N and SEM in the nuclear strike role with the improved ''ASMP-A'' missile with a nuclear warhead.{{Citation needed|date=September 2022}}
+
+France has major military industries with one of the largest [[Aerospace manufacturer|aerospace industries]] in the world.<ref>{{Cite web |title=90.07.06: The Aerospace Industry: Its History and How it Affects the U.S. Economy |url=http://www.yale.edu/ynhti/curriculum/units/1990/7/90.07.06.x.html |url-status=dead |archive-url=https://web.archive.org/web/20110920085434/http://www.yale.edu/ynhti/curriculum/units/1990/7/90.07.06.x.html |archive-date=20 September 2011 |access-date=21 July 2011 |publisher=Yale}}</ref> Its industries have produced such equipment as the Rafale fighter, the ''Charles de Gaulle'' aircraft carrier, the [[Exocet]] missile and the [[AMX-56 Leclerc|Leclerc]] tank among others. France is actively investing in European joint projects such as the [[Eurocopter Tiger]], [[FREMM multipurpose frigate|multipurpose frigates]], the [[Unmanned combat air vehicle|UCAV]] demonstrator [[Dassault nEUROn|nEUROn]] and the [[Airbus A400M]].{{Citation needed|date=September 2022}} France is a major arms seller,<ref>{{Cite web |last=Thierry Gadault |date=13 June 2002 |title=La France demeure un fournisseur d'armes de premier plan |trans-title=France stays one of the biggest arms supplier] |url=http://lexpansion.lexpress.fr/entreprise/la-france-demeure-un-fournisseur-d-armes-de-premier-plan_95084.html |archive-url=https://web.archive.org/web/20120311161443/http://lexpansion.lexpress.fr/entreprise/la-france-demeure-un-fournisseur-d-armes-de-premier-plan_95084.html |archive-date=11 March 2012 |website=L'express |language=fr |quote=En 2001, la France a vendu pour 1,288&nbsp;milliard de dollars d'équipements militaires, ce qui la met au troisième rang mondial des exportateurs derrière les États-Unis et la Russie. [In 2001, France sold $1,288&nbsp;billion of military equipment, ranking 3rd in the world for arms exportations behind the USA and Russia}}</ref><ref>{{Cite web |date=8 February 2010 |title=Les ventes d'armes explosent en 2009 |trans-title=Sales of weapons explode in 2009 |url=https://www.20minutes.fr/economie/551139-20100208-economie-les-ventes-d-armes-explosent-en-2009 |access-date=6 January 2017 |website=20 minutes |language=fr |quote=La France est au 4ème rang mondial des exportateurs d'armes, derrière les Etats-Unis, le Royaume-Uni et la Russie, et devant Israël, selon un rapport du ministère de la Défense publié l'an dernier. [France is 4th biggest arms exporter, behind the United States, the United Kingdom and Russia, and ahead of Israel, according to a report of the Ministry of Defense published a year ago.]}}</ref> with most of its arsenal's designs available for the export market, except for the nuclear-powered devices.
+
+One French intelligence unit, the [[Directorate-General for External Security]] (''Direction générale de la sécurité extérieure''), is considered to be a component of the Armed Forces under the authority of the Ministry of Defense. The other, the Central Directorate for Interior Intelligence (''Direction centrale du renseignement intérieur'') is a division of the National Police Force (''Direction générale de la Police Nationale'').{{Citation needed|date=September 2022}} France's [[Cybersecurity|cybersecurity capabilities]] are regularly ranked as some of the most robust of any nation in the world.<ref>Bruce Sussman, [https://www.secureworldexpo.com/industry-news/countries-dedicated-to-cybersecurity The List: Best and Worst Countries for Cybersecurity], 13 November 2019, Securworld</ref><ref>[https://www.itu.int/dms_pub/itu-d/opb/str/D-STR-GCI.01-2018-PDF-E.pdf Global Cybersecurity Index (GCI) 2018], [[International Telecommunication Union]]</ref>
+
+===Government finance===
+{{See also|Taxation in France}}
+The Government of France has run a [[budget deficit]] each year since the early 1970s. {{As of|2016}}, French government debt levels reached 2.2&nbsp;trillion euros, the equivalent of 96.4% of French GDP.<ref>{{Cite web |title=Country Comparison :: Public Debt |url=https://www.cia.gov/library/publications/the-world-factbook/rankorder/2186rank.html |url-status=dead |archive-url=https://web.archive.org/web/20070613005546/https://www.cia.gov/library/publications/the-world-factbook/rankorder/2186rank.html |archive-date=13 June 2007 |access-date=10 January 2018 |website=The World Factbook |publisher=CIA}}</ref> In late 2012, [[credit rating agencies]] warned that growing French Government debt levels risked [[List of countries by credit rating|France's AAA credit rating]], raising the possibility of a future downgrade and subsequent higher borrowing costs for the French authorities.<ref>{{Cite news |last=John |first=Mark |date=26 October 2012 |title=Analysis: Low French borrowing costs risk negative reappraisal |work=Reuters |url=https://www.reuters.com/article/us-france-debt-idUSBRE89P0SO20121026 |access-date=27 November 2012}}</ref>
+However, in July 2020, during the [[COVID-19 pandemic]], the French government issued negative-interest rate 10-year bonds for the first time in its history.<ref>[https://www.france24.com/en/20190704-france-issues-first-10-year-bond-negative-interest-rate France issues first 10-year bond at negative interest rate], [[France 24]], 4 July 2020</ref> In 2020, France possessed the [[Gold reserve#Officially reported holdings|fourth-largest gold reserves]] in the world.{{citation needed|date=January 2023}}
+
+==Economy==
+{{Main|Economy of France}}
+
+=== Overview ===
+[[File:La Défense @ Ballon de Paris @ Parc André Citroën @ Paris (28204532024) (cropped).jpg|alt=La Défense, seen from the Eiffel Tower|thumb|[[La Défense]] was in 2017 ranked by [[Ernst & Young]] as the leading [[central business district]] in continental Europe, and the fourth in the world.<ref>[https://www.ey.com/Publication/vwLUAssets/ey-the-attractiveness-of-world-class-business-districts/$FILE/ey-the-attractiveness-of-world-class-business-districts.pdf The attractiveness of world-class business districts: Paris La Défense vs. its global competitors], [[Ernst & Young|EY]], November 2017</ref>]]
+[[File:French economy 2016 - expenditures.png|thumb|Composition of the French economy (GDP) in 2016 by expenditure type]]
+
+France has a developed, high-income [[mixed economy]], characterised by [[Dirigisme|sizeable government involvement]], [[economic diversity]], a skilled labour force, and high innovation. For roughly two centuries, the French economy has [[Angus Maddison statistics of the ten largest economies by GDP (PPP)|consistently ranked]] among the ten largest globally; it is currently the world's [[List of countries by GDP (PPP)|ninth-largest]] by [[purchasing power parity]], the [[List of countries by GDP (nominal)|seventh-largest]] by [[nominal GDP]], and the second-largest in the European Union by both metrics.<ref name="data.worldbank.org">{{Cite web |title=GDP, PPP (current international $) |url=http://data.worldbank.org/indicator/NY.GDP.MKTP.PP.CD?order=wbapi_data_value_2014+wbapi_data_value+wbapi_data_value-last&sort=desc |access-date=1 November 2015 |publisher=The World Bank Group}}</ref> France is considered an [[economic power]], with membership in the [[Group of Seven]] leading [[Developed country|industrialised countries]], the [[OECD|Organisation for Economic Co-operation and Development]] (OECD), and the [[G20|Group of Twenty]] largest economies.
+
+France's economy is highly diversified; [[Service sector|services]] represent two-thirds of both the workforce and GDP,<ref>[https://www.eulerhermes.com/en_global/economic-research/country-reports/France.html Country profile: France], [[Euler Hermes]]</ref> while the [[industrial sector]] accounts for a fifth of GDP and a similar proportion of employment. France is the third-biggest manufacturing country in Europe, behind Germany and Italy, and ranks eighth in the world by share of global manufacturing output, at 1.9 percent.<ref>{{Cite web |title=These are the top 10 manufacturing countries in the world |url=https://www.weforum.org/agenda/2020/02/countries-manufacturing-trade-exports-economics/ |access-date=10 February 2022 |website=World Economic Forum |language=en}}</ref> Less than 2 percent of GDP is generated by the [[primary sector]], namely agriculture;<ref>[https://www.cia.gov/the-world-factbook/countries/france Country profil: France], [[CIA World factbook]]</ref> however, France's agricultural sector is among the largest in value and leads the EU in terms of overall production.<ref>[https://import-export.societegenerale.fr/en/country/france/market-sectors France: the market] {{Webarchive|url=https://web.archive.org/web/20210219011017/https://import-export.societegenerale.fr/en/country/france/market-sectors |date=19 February 2021 }}, [[Société Générale]] (latest Update: September 2020)</ref>
+
+In 2018, France was the fifth-largest trading nation in the world and the second-largest in Europe, with the value of exports representing over a fifth of GDP.<ref name="wto">[https://www.wto.org/english/res_e/statis_e/wts2019_e/wts2019_e.pdf World Trade Statistical Review 2019], [[World Trade Organization]], p. 11</ref> Its membership in the [[Eurozone]] and the broader [[European Single Market]] facilitates access to capital, goods, services, and skilled labour.<ref name="euroc">{{Cite news |last=Andrews |first=Edmund L. |date=1 January 2002 |title=Germans Say Goodbye to the Mark, a Symbol of Strength and Unity |work=The New York Times |url=https://www.nytimes.com/2002/01/01/world/germans-say-goodbye-to-the-mark-a-symbol-of-strength-and-unity.html |access-date=18 March 2011}}</ref> Despite [[Protectionism|protectionist]] policies over certain industries, particularly in agriculture, France has generally played a leading role in fostering free trade and commercial integration in Europe to enhance its economy.<ref>{{Cite web |title=France - Finance |url=https://www.britannica.com/place/France |access-date=28 August 2021 |website=Encyclopedia Britannica |language=en}}</ref><ref>{{Cite news |last=Taylor Martin |first=Susan |date=28 December 1998 |title=On Jan.&nbsp;1, out of many arises one Euro |page=National, 1.A |work=[[St. Petersburg Times]]}}</ref> In 2019, it ranked first in Europe and 13th in the world in [[Foreign Direct Investment|foreign direct investment]], with European countries and the United States being leading sources.<ref name="FDI">[https://www.ey.com/en_gl/attractiveness/20/how-can-europe-reset-the-investment-agenda-now-to-rebuild-its-future How can Europe reset the investment agenda now to rebuild its future?], [[Ernst&Young|EY]], 28 May 2020</ref> According to the [[Bank of France]], the leading recipients of FDI were manufacturing, real estate, finance and insurance.<ref name="lloydsbanktrade.com">{{Cite web |title=Foreign direct investment (FDI) in France - Investing - International Trade Portal International Trade Portal |url=https://www.lloydsbanktrade.com/en/market-potential/france/investment |access-date=28 August 2021 |website=lloydsbanktrade.com}}</ref> The [[Île-de-France|Paris region]] has the highest concentration of multinational firms in Europe.<ref name="lloydsbanktrade.com" />
+
+Under the doctrine of [[Dirigiste|''Dirigisme'']], the government historically played a major role in the economy; policies such as [[indicative planning]] and [[Nationalization|nationalisation]] are credited for contributing to three decades of unprecedented postwar economic growth known as ''[[Trente Glorieuses]]''. At its peak in 1982, the public sector accounted for one-fifth of industrial employment and over four-fifths of the credit market. Beginning in the late 20th century, France loosened regulations and state involvement in the economy, with most leading companies now being privately owned; state ownership now dominates only transportation, defence and broadcasting.<ref>{{Cite web |title=France - Economy |url=https://www.britannica.com/place/France |access-date=28 August 2021 |website=Encyclopedia Britannica |language=en}}</ref> Policies aimed at promoting economic dynamism and privatisation have improved France's economic standing globally: it is among the world's 10 most [[Innovation|innovative]] countries in the 2020 [[Bloomberg Innovation Index]],<ref>[https://www.businessinsider.com/these-are-the-10-most-innovative-countries-bloomberg-says-2020-1?IR=T These are the world's most innovative countries], [[Business Insider]]</ref> and the 15th most competitive, according to the 2019 [[Global Competitiveness Report#2019 rankings|Global Competitiveness Report]] (up two places from 2018).<ref>{{Cite web |title=The Global Competitiveness Report 2019 |url=http://www3.weforum.org/docs/WEF_TheGlobalCompetitivenessReport2019.pdf}}</ref>
+
+According to the IMF, France ranked [[List of countries by GDP (nominal) per capita|30th in GDP per capita]], with roughly $45,000 per inhabitant. It placed 23rd on the [[Human Development Index]], indicating very high human development. [[Public corruption]] is among the lowest in the world, with France consistently ranking among the 30 least corrupt countries since the [[Corruption Perceptions Index]] began in 2012; it placed 22nd in 2021, up one place from the previous year.<ref name="HDIFR">{{Cite web |date=January 2018 |title=Human Development Index 2018 Statistical Update |url=http://hdr.undp.org/en/2018-update |url-status=dead |archive-url=https://wayback.archive-it.org/all/20180918035109/http://www.hdr.undp.org/en/2018-update |archive-date=18 September 2018 |access-date=10 July 2019 |website=hdr.undp.org |publisher=[[United Nations Development Programme]]}}</ref><ref>{{Cite web |title=Corruption Perceptions Index 2018 Executive summary p. 2 |url=https://www.transparency.org/files/content/pages/CPI_2018_Executive_Summary_EN.pdf |access-date=10 July 2019 |website=transparency.org |publisher=[[Transparency International]]}}</ref> France is Europe's second-largest spender in [[research and development]], at over 2 percent of GDP; globally, it ranks 12th.<ref>[http://uis.unesco.org/apps/visualisations/research-and-development-spending How does your country invest in R&D ?], [[UNESCO Institute for Statistics]] (retrieved on 27 September 2020)</ref>
+
+Financial services, banking, and insurance are important part of the economy. [[AXA]] is the world's second-largest insurance company by total nonbanking assets in 2020.<ref>{{Cite web |title=World's Largest Insurers — 2022 Edition: China Insurers, US Health Writers Show Gains in AM Best's Ranking |url=https://news.ambest.com/articlecontent.aspx?refnum=316701 |access-date=10 February 2022 |website=news.ambest.com}}</ref><ref>[http://www.ambest.com/review/displaychart.aspx?Record_Code=274407 World's largest insurers – Total non banking assets, 2019], [[AM Best]], 2019</ref> As of 2011, the three largest [[cooperative banking|financial institutions cooperatively owned by their customers]] were French: [[Crédit Agricole]], [[Groupe Caisse d'Épargne|Groupe Caisse D'Epargne]], and [[Groupe Caisse d'Épargne|Groupe Caisse D'Epargne]].<ref>{{Cite web |last=Gould |first=Charles |title=Global300 Report 2010, International Co-operative Alliance. The world's major co-operatives and mutual businesses |url=https://www.ica.coop/sites/default/files/basic-page-attachments/global300-report-2011-1757377405.pdf |url-status=dead |archive-url=https://web.archive.org/web/20210813153010/https://www.ica.coop/sites/default/files/basic-page-attachments/global300-report-2011-1757377405.pdf |archive-date=13 August 2021 |access-date=29 November 2018 |website=ica.coop}}</ref> According to a 2020 report by [[S&P Global Market Intelligence|S&P Global Market Intelligenc]], France's leading banks, [[BNP Paribas]] and [[Crédit Agricole]], are among the world's 10 largest bank by assets, with [[Société Générale]] and [[Groupe BPCE]] ranking 17th and 19th globally, respectively.<ref name="SP">{{Cite web |last=Ali |first=Zarmina |date=7 April 2020 |title=The world's 100 largest banks |url=https://www.spglobal.com/marketintelligence/en/news-insights/latest-news-headlines/the-world-s-100-largest-banks-2020-57854079 |access-date=23 June 2020 |publisher=Standard & Poor}}</ref>
+
+The Paris stock exchange ({{Lang-fr|links=no|La Bourse de Paris}}) is one of the oldest in the world, created by [[Louis XV]] in 1724.<ref>{{Cite news |last=Audrey Vautherot |date=19 November 2007 |title=La Bourse de Paris : une institution depuis 1724 |trans-title=The Paris Stock Exchange: an institution since 1724 |url=http://www.gralon.net/articles/economie-et-finance/bourse/article-la-bourse-de-paris---une-institution-depuis-1724-981.htm |website=Gralon |language=fr}}</ref> In 2000, it merged with counterparts in Amsterdam and Brussels to form [[Euronext]],<ref name="banque">{{Cite web |last=Embassy of France |title=Embassy of France in Washington: Economy of France |url=http://www.ambafrance-us.org/spip.php?article511 |url-status=dead |archive-url=https://web.archive.org/web/20111009235442/http://ambafrance-us.org/spip.php?article511 |archive-date=9 October 2011 |access-date=16 July 2011 |publisher=Ambafrance-us.org}}</ref> which in 2007 merged with the [[New York stock exchange]] to form [[NYSE Euronext]], the world's largest stock exchange.<ref name="banque" /> [[Euronext Paris]], the French branch of NYSE Euronext, is Europe's second-largest stock exchange market, behind the [[London Stock Exchange]].
+
+=== Agriculture ===
+[[File:Verzenay moulin.jpg|thumb|left|[[Champagne wine region|Champagne vineyards]] in [[Verzenay]] in the Montagne de Reims subregion]]France has historically been one of the world's major agricultural centres and remains a "global agricultural powerhouse".<ref name="agriculture">{{Cite web |title=France&nbsp;– Agriculture |url=http://www.nationsencyclopedia.com/economies/Europe/France-AGRICULTURE.html |url-status=dead |archive-url=https://web.archive.org/web/20110104104316/http://www.nationsencyclopedia.com/economies/Europe/France-AGRICULTURE.html |archive-date=4 January 2011 |website=Nations Encyclopedia}}</ref><ref>{{Cite web |title=Country Memo - France |url=https://globaledge.msu.edu/countries/france/memo/ |website=globalEDGE}}</ref> Nicknamed "the granary of the old continent",<ref>{{Cite web |title=Topic: Agriculture in France |url=https://www.statista.com/topics/6215/agriculture-in-france/ |access-date=13 January 2022 |website=Statista |language=en}}</ref> over half its total land area is [[Agricultural land|farmland]], of which 45 percent is devoted to permanent field crops such as cereals. The country's diverse climate, extensive arable land, modern farming technology, and [[Common agricultural policy|EU subsidies]] have made it Europe's leading agricultural producer and exporter;<ref>{{Cite web |title=Key figures of the French economy |url=http://www.diplomatie.gouv.fr/en/france_159/economy_6815/overview-of-the-french-economy_6831/key-figures-of-the-french-economy_1402.html#sommaire_1 |url-status=live |archive-url=https://web.archive.org/web/20100114024542/http://www.diplomatie.gouv.fr/en/france_159/economy_6815/overview-of-the-french-economy_6831/key-figures-of-the-french-economy_1402.html |archive-date=14 January 2010 |website=France Diplomatie |publisher=[[Minister of Foreign Affairs (France)|French Ministry of Foreign and European Affairs]] |quote=France is the world's fifth largest exporter of goods (mainly durables). The country ranks fourth in services and third in agriculture (especially in cereals and the agri-food sector). It is the leading producer and exporter of farm products in Europe.}}</ref> it accounts for one-fifth of the EU's agricultural production, including over one-third of its [[Vegetable oil|oilseeds]], cereals, and wine.<ref name="ministère">{{Cite web |title=A Panorama of the agriculture and agri-food industries |url=http://agriculture.gouv.fr/IMG/pdf/panorama_agriculture_ed2008EN.pdf |url-status=dead |archive-url=https://web.archive.org/web/20100921021111/http://agriculture.gouv.fr/IMG/pdf/panorama_agriculture_ed2008EN.pdf |archive-date=21 September 2010 |access-date=8 August 2010 |publisher=Ministère de l'Alimentation, de l'Agriculture et de la Pêche}}</ref> As of 2017, France ranked first in Europe in beef and cereals; second in dairy and aquaculture; and third in poultry, fruits, vegetables, and manufactured chocolate products.<ref name=":6">{{Cite web |title=Infographics - France's rankings for agricultural and agrifood production |url=https://agriculture.gouv.fr/infographics-frances-rankings-agricultural-and-agrifood-production |access-date=5 February 2022 |website=agriculture.gouv.fr |language=fr}}</ref> France has the EU's largest [[Cattle|cattle herd]], at 18-19 million.<ref name=":7">{{Cite web |title=Infographics - Farming France |url=https://agriculture.gouv.fr/infographics-farming-france |access-date=5 February 2022 |website=agriculture.gouv.fr |language=fr}}</ref>
+
+France is the world's sixth-biggest exporter of agricultural products, generating a trade surplus of over €7.4 billion.<ref name=":6" /> Its primary agricultural exports are wheat, poultry, dairy, beef, pork, and internationally recognised brands, particularly beverages.<ref name=":7" /><ref>{{Cite web |title=Farming France{{!}}Food and Agriculture Organization of the United Nations |url=https://www.fao.org/country-showcase/item-detail/en/c/1278517/ |access-date=5 February 2022 |website=fao.org}}</ref> France is the fifth largest grower of wheat, after China, India, Russia, and the United States, all of which are significantly larger.<ref name=":7" /> It is the world's top exporter of natural spring water, flax, malt, and potatoes.<ref name=":6" /> In 2020, France exported over €61 billion in agricultural products, compared to €37 billion in 2000.<ref>{{Cite web |title=Agri-food industry: total export value France 2020 |url=https://www.statista.com/statistics/1142909/exports-value-france-by-destination-marker/ |access-date=5 February 2022 |website=Statista |language=en}}</ref><ref>{{Cite web |title=Les enjeux des industries agroalimentaires françaises |trans-title=The stakes of the French agri-food industries |url=http://panorama-iaa.alimentation.gouv.fr/ |url-status=dead |archive-url=https://web.archive.org/web/20111229143438/http://panorama-iaa.alimentation.gouv.fr/ |archive-date=29 December 2011 |publisher=Panorama des Industries Agroalimentaires |language=fr}}</ref>
+
+France was an [[French wine|early centre of viviculture]], dating back to at least the sixth century BCE. It is the world's second-largest producer of wine, with many varieties enjoying global renown, such as [[Champagne]] and [[Bordeaux wine|Bordeaux]];<ref name=":6" /> domestic consumption is also high, particularly of [[Rosé]]. [[List of French rums|France produces rum]] primarily from overseas territories such as [[Martinique]], Guadeloupe and [[La Réunion]].
+
+Relative to other developed countries, agriculture is an important sector of France's economy: 3.8% of the active population is employed in agriculture, whereas the total agri-food industry made up 4.2% of the French GDP in 2005.<ref name="ministère" /> France remains the largest recipient of EU agricultural subsidies, receiving an annual average of €8 billion from 2007 to 2019.<ref>{{Cite web |date=22 April 2009 |title=Annex 1: Indicative Figures on the Distribution of Aid, by Size-Class of Aid, Received in the Context of Direct Aid Paid to the Producers According to Council Regulation (EC) No 1782/2003 (Financial Year 2007) |url=http://ec.europa.eu/agriculture/fin/directaid/2007/annex1_en.pdf |url-status=dead |archive-url=https://web.archive.org/web/20110430163204/http://ec.europa.eu/agriculture/fin/directaid/2007/annex1_en.pdf |archive-date=30 April 2011 |access-date=7 October 2010 |publisher=European Commission}}</ref><ref>{{Cite web |date=24 November 2021 |title=EU agriculture statistics: subsidies, jobs, production (infographic) {{!}} News {{!}} European Parliament |url=https://www.europarl.europa.eu/news/en/headlines/society/20211118STO17609/eu-agriculture-statistics-subsidies-jobs-production-infographic |access-date=5 February 2022 |website=europarl.europa.eu |language=en}}</ref>
+
+===Tourism===
+{{Main|Tourism in France}}
+{{Multiple image
+| direction = vertical
+| caption_align = center
+| image1 = Paris_vue_d'ensemble_tour_Eiffel.jpg
+| caption1 = The [[Eiffel Tower]] is the world's most-visited paid monument, an icon of both Paris and France
+| image2 = Hafen_von_Nizza.jpg
+| caption2 = [[Nice]] on the [[French Riviera]]
+| image3 = Mont-Saint-Michel vu du ciel.jpg
+| caption3 = [[Mont-Saint-Michel]] and [[Mont-Saint-Michel Bay|its bay]] were listed as a [[UNESCO]] [[World Heritage Sites]] in 1979
+}}
+
+With 89&nbsp;million international tourist arrivals in 2018,<ref name="tourism.stat">{{Cite book |url=https://www.e-unwto.org/doi/pdf/10.18111/9789284421152 |title=UNWTO Tourism Highlights |publisher=United Nations World Tourism Organization |year=2019 |isbn=978-92-844-2114-5 |edition=2019 |page=9 |doi=10.18111/9789284421152 |s2cid=240665765}}</ref> France is the world's [[World Tourism rankings|top tourist destination]], ahead of Spain (83&nbsp;million) and the United States (80&nbsp;million). However, it ranks third in tourism-derived income due to the shorter duration of visits.<ref>{{Cite news |last=Dilorenzo |first=Sarah |date=18 July 2013 |title=France learns to speak 'touriste' |agency=Associated Press |url=http://bigstory.ap.org/article/france-learns-speak-touriste-0 |url-status=dead |access-date=20 July 2013 |archive-url=https://web.archive.org/web/20130822043825/http://bigstory.ap.org/article/france-learns-speak-touriste-0 |archive-date=22 August 2013}}</ref> The most popular tourist sites include (annual visitors): [[Eiffel Tower]] (6.2&nbsp;million), [[Palace of Versailles|Château de Versailles]] (2.8&nbsp;million), [[National Museum of Natural History (France)|Muséum national d'Histoire naturelle]] (2&nbsp;million), [[Pont du Gard]] (1.5&nbsp;million), [[Arc de Triomphe]] (1.2&nbsp;million), [[Mont Saint-Michel]] (1&nbsp;million), [[Sainte-Chapelle]] (683,000), [[Château du Haut-Kœnigsbourg]] (549,000), [[Puy de Dôme]] (500,000), [[Musée Picasso]] (441,000), and [[Carcassonne]] (362,000).<ref>{{Cite web |year=2003 |title=Fréquentation des musées et des bâtiments historiques |trans-title=Frequentation of museums and historic buildings |url=http://www2.culture.gouv.fr/deps/mini_chiff_03/fr/musee.htm |url-status=dead |archive-url=https://web.archive.org/web/20071224180811/http://www2.culture.gouv.fr/deps/mini_chiff_03/fr/musee.htm |archive-date=24 December 2007 |language=fr}}</ref>
+
+France, especially Paris, has some of the world's largest and most renowned museums, including the [[Louvre]], which is the [[List of most visited art museums in the world|most visited art museum in the world]] (5.7&nbsp;million), the [[Musée d'Orsay]] (2.1&nbsp;million), mostly devoted to [[Impressionism]], the [[Musée de l'Orangerie]] (1.02&nbsp;million), which is home to eight large [[Water Lilies (Monet series)|Water Lily]] murals by [[Claude Monet]], as well as the [[Centre Georges Pompidou]] (1.2&nbsp;million), dedicated to [[contemporary art]]. [[Disneyland Paris]] is Europe's most popular theme park, with 15&nbsp;million combined visitors to the resort's [[Disneyland Park (Paris)|Disneyland Park]] and [[Walt Disney Studios Park]] in 2009.<ref>{{Cite web |year=2009 |editor-last=Judith Rubin |title=TEA/AECOM Attraction Attendance Report for 2009 |url=http://www.themeit.com/etea/2009report.pdf |url-status=dead |archive-url=https://web.archive.org/web/20100602032710/http://www.themeit.com/etea/2009report.pdf |archive-date=2 June 2010 |access-date=7 October 2010 |publisher=Themed Entertainment Association}}</ref>
+
+With more than 10 million tourists a year, the [[French Riviera]] (French: ''Côte d'Azur''), in Southeast France, is the second leading tourist destination in the country, after the [[Île-de-France|Paris region]].<ref>{{Cite web |title=The French Riviera Tourist Board |url=http://www.frenchriviera-tourism.com/regional-tourism-organization/the-french-riviera-tourist-board-06_191.html |url-status=dead |archive-url=https://web.archive.org/web/20110425152011/http://www.frenchriviera-tourism.com/regional-tourism-organization/the-french-riviera-tourist-board-06_191.html |archive-date=25 April 2011 |access-date=23 January 2011 |website=CÔTE D'AZUR}}</ref> It benefits from 300 days of sunshine per year, {{Convert|115|km}} of coastline and beaches, 18 golf courses, 14 ski resorts and 3,000 restaurants.<ref name="CAEDA" />{{Rp|31}} Each year the ''Côte d'Azur'' hosts 50% of the world's [[Luxury yacht|superyacht]] fleet.<ref name="CAEDA">{{Cite web |title=Présentation de la Côte d'Azur |trans-title=Presentation of the French Riviera |url=http://www.crdp-nice.net/dp/IMG/pdf/Kit_Info_Cote_d_Azur_FR_Version_sept_07.pdf |url-status=dead |archive-url=https://web.archive.org/web/20100704173303/http://www.crdp-nice.net/dp/IMG/pdf/Kit_Info_Cote_d_Azur_FR_Version_sept_07.pdf |archive-date=4 July 2010 |publisher=Côte d'Azur Economic Development Agency |language=fr}}</ref>{{Rp|66}}
+
+With 6 million tourists a year, the [[Châteaux of the Loire Valley|castles of the Loire Valley]] (French: ''châteaux'') and the [[Loire Valley]] itself are the third leading tourist destination in France;<ref>{{Cite news |last=Foucher |title=Tourism: The Loire Valley, an intoxicating destination for visitors |language=fr |work=TourMaG.com, 1er journal des professionnels du tourisme francophone |url=https://www.tourmag.com/Tourism-The-Loire-Valley-an-intoxicating-destination-for-visitors_a67875.html |access-date=10 October 2018}}</ref><ref>{{Cite news |date=12 July 2017 |title=Chateaux deluxe: 5 best Loire Valley castles |publisher=CNN |url=https://edition.cnn.com/travel/article/loire-valley-castles/index.html |access-date=10 October 2018}}</ref> this [[World Heritage Site]] is noteworthy for its architectural heritage, in its historic towns but in particular its castles, such as the [[Château]]x d'[[Château d'Amboise|Amboise]], de [[Château de Chambord|Chambord]], d'[[Château d'Ussé|Ussé]], de [[Château de Villandry|Villandry]], [[Château de Chenonceau|Chenonceau]] and [[Château de Montsoreau|Montsoreau]]. The [[Château de Chantilly]], [[Palace of Versailles|Versailles]] and [[Vaux-le-Vicomte]], all three located near Paris, are also visitor attractions.
+
+France has 37 sites inscribed in [[List of World Heritage Sites in France|UNESCO's World Heritage List]] and features cities of high cultural interest, beaches and seaside resorts, ski resorts, as well as rural regions that many enjoy for their beauty and tranquillity ([[Ecotourism|green tourism]]). Small and picturesque French villages are promoted through the association ''[[Les Plus Beaux Villages de France]]'' (literally "The Most Beautiful Villages of France"). The "[[Remarkable Gardens of France|Remarkable Gardens]]" label is a list of the over 200 gardens classified by the [[Ministry of Culture (France)|Ministry of Culture]]. This label is intended to protect and promote remarkable gardens and parks. France attracts many religious [[Christian pilgrimage|pilgrims]] on their [[Way of St. James|way to St. James]], or to [[Lourdes]], a town in the [[Hautes-Pyrénées]] that hosts several million visitors a year.
+
+===Energy===
+{{Further|Energy in France}}
+[[File:Centrale EDF de Belleville-FR-18-a05.jpg|thumb|left|alt=Nuclear power plant in Cattenom, France four large cooling towers expelling white water vapour against a blue sky|[[Belleville Nuclear Power Plant]]. France derives most of its electricity from [[Nuclear power in France|nuclear power]], the highest percentage in the world. ]]
+France is the world's tenth-largest producer of electricity.<ref>{{Cite web |title=BP Statistical Review of World Energy July 2021". |url=https://www.bp.com/content/dam/bp/business-sites/en/global/corporate/xlsx/energy-economics/statistical-review/bp-stats-review-2021-all-data.xlsx}}</ref> [[Électricité de France]] (EDF), which is majority-owned by the French government, is the country's main producer and distributor of electricity, and one of the world's largest [[Electric utility|electric utility companies]], ranking third in revenue globally.<ref>{{Cite web |date=19 March 2019 |title=The ten biggest power companies in 2018 |url=https://www.power-technology.com/features/top-10-power-companies-in-the-world/ |access-date=5 February 2022 |website=Power Technology |language=en-US}}</ref> In 2018, EDF produced around one-fifth of the [[European Union]]'s electricity, primarily from [[nuclear power]].<ref>[https://ec.europa.eu/eurostat/statistics-explained/index.php/Electricity_production,_consumption_and_market_overview#:~:text=Germany%20had%20the%20highest%20level,with%20a%20double%2Ddigit%20share. Electricity production, consumption and market overview], [[Eurostat]]</ref> As of 2021, France was the biggest energy exporter in Europe, mostly to the U.K. and Italy,<ref name=":3">{{Cite web |title=Nuclear Power in France {{!}} French Nuclear Energy - World Nuclear Association |url=https://www.world-nuclear.org/information-library/country-profiles/countries-a-f/france.aspx |access-date=5 February 2022 |website=world-nuclear.org}}</ref> and the largest net exporter of electricity in the world.<ref name=":3" />
+
+Since the [[1973 oil crisis]], France has pursued a strong policy of [[energy security]],<ref name=":3" /> namely through [[Nuclear power in France|heavy investment in nuclear energy]]. It is one of 32 countries with [[nuclear power plant]]s, ranking second in the world by the [[Nuclear power by country|number of operational nuclear reactors]], at 56.<ref>{{Cite web |title=PRIS - Miscellaneous reports - Nuclear Share |url=https://pris.iaea.org/PRIS/WorldStatistics/NuclearShareofElectricityGeneration.aspx |access-date=5 February 2022 |website=pris.iaea.org}}</ref> Consequently, 70% of France's electricity is generated by nuclear power, the highest proportion in the world by a wide margin;<ref>{{Cite web |date=April 2017 |title=Nuclear share figures, 2006–2016 |url=http://www.world-nuclear.org/info/Facts-and-Figures/Nuclear-generation-by-country/ |access-date=8 January 2018 |publisher=World Nuclear Association |archive-date=1 October 2013 |archive-url=https://web.archive.org/web/20131001103413/http://world-nuclear.org/info/Facts-and-Figures/Nuclear-generation-by-country/ |url-status=dead }}</ref> only Slovakia and Ukraine derive a majority of electricity from nuclear power, at roughly 53% and 51%, respectively.<ref>{{Cite web |title=France |url=https://www.iaea.org/pris/CountryStatistics/CountryDetails.aspx?current=FR |access-date=8 January 2018 |website=IAEA {{!}} PRIS Power Reactor Information System |publisher=International Atomic Energy Agency}}</ref> France is considered a world leader in nuclear technology, with reactors and fuel products being major exports.<ref name=":3" />
+
+Due to its overwhelming reliance on nuclear power, [[Renewable energy|renewable energies]] have seen relatively little growth compared to other Western countries. Nevertheless, between 2008 and 2019, France's production capacity from renewable energies rose consistently and nearly doubled.<ref name=":5" /> [[Hydropower]] is by far the leading source, accounting for over half the country's renewable energy sources<ref name=":4">{{Cite web |title=France |url=https://www.hydropower.org/country-profiles/france |access-date=5 February 2022 |website=hydropower.org |language=en}}</ref> and contributing 13% of its electricity,<ref name=":5">{{Cite web |title=Topic: Hydropower in France |url=https://www.statista.com/topics/6308/hydropower-in-france/ |access-date=5 February 2022 |website=Statista |language=en}}</ref> the highest proportion in Europe after Norway and Turkey.<ref name=":4" /> As with nuclear power, most hydroelectric plants, such as [[Eguzon dam|Eguzon]], [[Étang de Soulcem]], and [[Lac de Vouglans]], are managed by EDF.<ref name=":4" /> France aims to further expand hydropower into 2040.<ref name=":5" />
+
+France made minimal but measurable investments in other renewable energy sources. Due to its geography and extensive agricultural land, it has the second-largest wind energy potential in Europe, and by 2017 had ranked eighth globally in installed wind capacity.<ref>{{Cite web |title=France |url=http://www.wind-energy-the-facts.org/france.html |access-date=5 February 2022 |website=wind-energy-the-facts.org}}</ref> In terms of solar power, France ranked seventh in the world in 2015 for solar photovoltaic installation capacity.<ref>[http://www.iea-pvps.org/fileadmin/dam/public/report/statistics/IEA-PVPS_-__A_Snapshot_of_Global_PV_-_1992-2015_-_Final.pdf Snapshot of Global Photovoltaic Markets, IEA PVPS, '''p. 14''']"</ref> As of 2019, solar power sources generated over 10,570 megawatts of electricity, compared to a little over 1,000 megawatts in 2010.<ref>{{Cite web |title=France Distributed Solar Power Generation Market {{!}} 2022 - 27 {{!}} Industry Share, Size, Growth - Mordor Intelligence |url=https://www.mordorintelligence.com/industry-reports/france-distributed-solar-power-generation-market-industry |access-date=5 February 2022 |website=mordorintelligence.com |language=en}}</ref>
+
+Because France derives the vast majority of its power from nuclear and renewable sources, close to half its primary energy (48.5%) is derived from low-carbon sources, compared to 26.4% in Europe and 15.7% in the world as a whole.<ref>{{Cite web |title=Share of primary energy from low-carbon sources |url=https://ourworldindata.org/grapher/low-carbon-share-energy |access-date=5 February 2022 |website=Our World in Data}}</ref> France is also the smallest emitter of [[Greenhouse gas|carbon dioxide]] among the G7.<ref>{{Cite web |date=July 2010 |title=Greenhouse Gas Emissions |url=http://unstats.un.org/unsd/environment/air_co2_emissions.htm |url-status=dead |archive-url=https://web.archive.org/web/20100310190132/http://unstats.un.org/unsd/environment/air_co2_emissions.htm |archive-date=10 March 2010 |access-date=8 January 2017 |website=Environmental Indicators |publisher=United Nations}}
+♦ Archived: 10 March 2010
+♦ Archived: 11 July 2017</ref>
+
+===Transport===
+{{Main|Transport in France}}
+[[File:Creissels_et_Viaduct_de_Millau.jpg|thumb|[[Millau Viaduct]] is the [[List of tallest bridges|tallest bridge in the world]].<ref name=structurae>{{Structurae|access-date=12 September 2018}}</ref>]]
+[[File:SNCF TGV Duplex Viaduc de Cize - Bolozon.jpg|thumb|A [[TGV Duplex]] crossing the [[Cize–Bolozon viaduct]]. The train can reach a maximum speed of {{Convert|360|km/h}}.]]
+France's [[Rail transport in France|railway network]], which stretches {{Convert|29473|km|mi|0}} as of 2008,<ref>{{Cite web |title=Chiffres clés du transport Édition 2010 |url=http://www.developpement-durable.gouv.fr/IMG/pdf/Chiffres_transport-pdf.pdf |url-status=dead |archive-url=https://web.archive.org/web/20100601124351/http://www.developpement-durable.gouv.fr/IMG/pdf/Chiffres_transport-pdf.pdf |archive-date=1 June 2010 |access-date=7 October 2010 |publisher=[[Ministry of Ecology|Ministère de l'Écologie, de l'Énergie, du Développement Durable et de la Mer]] |language=fr}}</ref> is the second most extensive in Western Europe after [[Rail transport in Germany|Germany]].<ref>{{Cite web |title=Country comparison :: railways |url=https://www.cia.gov/library/publications/the-world-factbook/rankorder/2121rank.html?countryName=France&countryCode=fr&regionCode=eu&rank=9#fr |url-status=dead |archive-url=https://web.archive.org/web/20131004215524/https://www.cia.gov/library/publications/the-world-factbook/rankorder/2121rank.html?countryName=France&countryCode=fr&regionCode=eu&rank=9#fr |archive-date=4 October 2013 |access-date=30 July 2010 |website=The World Factbook |publisher=CIA}}</ref> It is operated by the [[SNCF]], and high-speed trains include the [[Thalys]], the [[Eurostar]] and [[TGV]], which travels at {{Convert|320|km/h|mph|0|abbr=on}}.<ref>{{Cite web |title=TGV&nbsp;– The French High-speed Train Service |url=http://h2g2.com/dna/h2g2/A711785 |url-status=live |archive-url=https://archive.today/20120716194231/http://h2g2.com/dna/h2g2/A711785 |archive-date=16 July 2012 |access-date=21 July 2011 |website=h2g2 The Hitchhiker's Guide to the Galaxy: Earth Edition}}</ref> The Eurostar, along with the [[Eurotunnel Shuttle]], connects with the United Kingdom through the [[Channel Tunnel]]. Rail connections exist to all other neighbouring countries in Europe except Andorra. Intra-urban connections are also well developed, with most major cities having [[Rapid transit|underground]] or tramway services complementing bus services.
+
+There are approximately {{Convert|1027183|km|mi|0}} of serviceable roadway in France, ranking it the most extensive network of the European continent.<ref>{{Cite web |title=Country comparison :: roadways |url=https://www.cia.gov/library/publications/the-world-factbook/rankorder/2085rank.html?countryName=France&countryCode=fr&regionCode=eu&rank=7#fr |url-status=dead |archive-url=https://web.archive.org/web/20120513121037/https://www.cia.gov/library/publications/the-world-factbook/rankorder/2085rank.html?countryName=France&countryCode=fr&regionCode=eu&rank=7#fr |archive-date=13 May 2012 |access-date=29 July 2010 |website=The World Factbook |publisher=CIA}}</ref> The Paris region is enveloped with the densest network of roads and highways, which connect it with virtually all parts of the country. French roads also handle substantial international traffic, connecting with cities in neighbouring Belgium, Luxembourg, Germany, Switzerland, Italy, Spain, Andorra and Monaco. There is no annual registration fee or [[road tax]]; however, usage of the mostly privately owned motorways is through tolls except in the vicinity of large communes. The new car market is dominated by domestic brands such as [[Renault]], [[Peugeot]] and [[Citroën]].<ref>{{In lang|fr}} L'automobile magazine, hors-série 2003/2004 page 294</ref> France possesses the [[Millau Viaduct]], the world's tallest bridge,<ref>{{Cite news |last=Bockman |first=Chris |date=4 November 2003 |title=France builds world's tallest bridge |work=BBC News |url=http://news.bbc.co.uk/2/hi/europe/3237329.stm |access-date=21 July 2011}}</ref> and has built many important bridges such as the [[Pont de Normandie]]. [[Diesel fuel|Diesel]] and [[gasoline]]-fuelled cars and lorries cause a large part of the country's [[air pollution]] and [[greenhouse gas emissions]].<ref>{{Cite web |last=Damiani |first=Anne |date=15 April 2021 |title=First lockdown in France improved air quality, avoided thousands of deaths |url=https://www.euractiv.com/section/air-pollution/news/first-lockdown-in-france-improved-air-quality-avoided-thousands-of-deaths/ |access-date=2 June 2021 |website=euractiv.com |language=en-GB}}</ref><ref>{{Cite web |last=Yeung |first=Peter |title=How France is testing free public transport |url=https://www.bbc.com/worklife/article/20210519-how-france-is-testing-free-public-transport |access-date=2 June 2021 |website=bbc.com |language=en}}</ref>
+
+There are 464 [[List of airports in France|airports]] in France.<ref name=France/> [[Charles de Gaulle Airport]], located in the vicinity of Paris, is the largest and busiest airport in the country, handling the vast majority of popular and commercial traffic and connecting Paris with virtually all major cities across the world. [[Air France]] is the national carrier airline, although numerous private airline companies provide domestic and international travel services. There are ten major ports in France, the largest of which is in [[Marseille]],<ref>{{Cite web |date=23 April 2008 |title=Strikes block French ports |url=http://www.bdpinternational.com/news/StrikesblockFrenchports.asp |url-status=dead |archive-url=https://web.archive.org/web/20080517035156/http://www.bdpinternational.com/news/StrikesblockFrenchports.asp |archive-date=17 May 2008 |publisher=The Journal of Commerce Online |via=BDP International}}</ref> which also is the largest bordering the Mediterranean Sea.<ref>{{Cite web |date=27 June 2009 |title=Marseille : un grand port maritime qui ne demande qu'à se montrer |trans-title=Marseille: a grand seaport just waiting to show |url=http://www.laprovence.com/article/region/marseille-un-grand-port-maritime-qui-ne-demande-qua-se-montrer |website=La Provence |language=fr |access-date=30 July 2010 |archive-date=14 November 2012 |archive-url=https://web.archive.org/web/20121114060851/http://www.laprovence.com/article/region/marseille-un-grand-port-maritime-qui-ne-demande-qua-se-montrer |url-status=dead }}</ref>{{Convert|12261|km|mi|0}} of waterways traverse France including the [[Canal du Midi]], which connects the Mediterranean Sea to the Atlantic Ocean through the [[Garonne]] river.<ref name=France/>
+
+===Science and technology===
+{{Main|Science and technology in France|List of French inventions and discoveries}}
+[[File:Ariane_5_with_James_Webb_Space_Telescope_Prelaunch_(51773093465).jpg|thumb|upright|left|alt=Ariane 5 rocket|France is in 2020 the biggest national financial contributor to the [[European Space Agency]],<ref>{{Cite web |title=Funding |url=https://www.esa.int/About_Us/Corporate_news/Funding |website=esa.int}}</ref> which conceived the [[Ariane (rocket family)|Ariane rocket family]], launched from [[Guiana Space Centre|French Guiana]] ([[Ariane 5]] pictured).]]
+Since the [[Middle Ages]], France has been a major contributor to scientific and technological achievement. In the early 11th century, the French-born [[Pope Sylvester II]] reintroduced the [[abacus]] and [[armillary sphere]] and introduced [[Arabic numerals]] and [[clock]]s to much of Europe.<ref>{{Cite web |last=William Godwin |year=1876 |title=Lives of the Necromancers |url=https://archive.org/details/livesnecromance04godwgoog |page=232}}</ref> The [[University of Paris]], founded in the mid-12th century, is still one of the most important academic institutions in the Western world.<ref>André Thuilier, Histoire de l'université de Paris et de la Sorbonne, Paris, Nouvelle librairie de France, 1994</ref> In the 17th century, mathematician [[René Descartes]] pioneered [[Rationalism|rationalism as a method for acquiring scientific knowledge]], while [[Blaise Pascal]] became famous for his work on [[probability]] and [[fluid mechanics]]; both were key figures of the [[Scientific Revolution]], which blossomed in Europe during this period. The [[French Academy of Sciences]], founded in the mid-17th century by [[Louis XIV]] to encourage and protect French [[Scientific method|scientific research]], was one of the earliest [[Academy of sciences|national scientific institutions]] in history; it was at the forefront of scientific developments in Europe for the next two centuries.
+
+The [[Age of Enlightenment]] was marked by the work of biologist [[Georges-Louis Leclerc, Comte de Buffon|Buffon]], one of the first naturalists to recognise [[ecological succession]], and chemist [[Antoine Lavoisier|Lavoisier]], who discovered the role of [[oxygen]] in [[combustion]]. [[Denis Diderot|Diderot]] and [[Jean le Rond d'Alembert|D'Alembert]] published the ''[[Encyclopédie]]'', which aimed to give the public access to "useful knowledge" that could be applied to everyday life.<ref>Burke, Peter, A social history of knowledge: from Gutenberg to Diderot, Malden: Blackwell Publishers Inc., 2000, p. 17</ref> The [[Industrial Revolution]] of the 19th century saw spectacular scientific developments in France, with [[Augustin Fresnel]] founding modern [[optics]], [[Nicolas Léonard Sadi Carnot|Sadi Carnot]] laying the foundations of [[thermodynamics]], and [[Louis Pasteur]] pioneering [[microbiology]]. Other eminent French scientists of the period have their [[List of the 72 names on the Eiffel Tower|names inscribed on the Eiffel Tower]].
+
+Famous French scientists of the 20th century include the mathematician and physicist [[Henri Poincaré]]; physicists [[Henri Becquerel]], [[Pierre Curie|Pierre]] and [[Marie Curie]], who remain famous for their work on [[radioactivity]]; physicist [[Paul Langevin]]; and virologist [[Luc Montagnier]], co-discoverer of [[HIV AIDS]]. [[Hand transplantation]] was developed in [[Lyon, France|Lyon]] in 1998 by an international team that included [[Jean-Michel Dubernard]], who afterward performed the first successful double hand transplant.<ref name="dubernard1">{{Cite journal |last1=Lanzetta M |last2=Petruzzo P |last3=Dubernard JM |last4=Margreiter |first4=Raimund |last5=Schuind |first5=Frederic |last6=Breidenbach |first6=Warren |last7=Nolli |first7=Roberta |last8=Schneeberger |first8=Stephan |last9=Van Holder |first9=Carlo |display-authors=3 |date=July 2007 |title=Second report (1998–2006) of the International Registry of Hand and Composite Tissue Transplantation |journal=Transpl Immunol. |volume=18 |issue=1 |pages=1–6 |doi=10.1016/j.trim.2007.03.002 |pmid=17584595}}</ref> [[Remote surgery|Telesurgery]] was [[Lindbergh operation|first performed]] by French surgeons led by [[Jacques Marescaux]] on 7 September 2001 across the Atlantic Ocean.<ref name="istmarescaux">{{Cite web |last=Ghodoussi |first=Dr. |title=Media Collection |url=http://www.intersurgtech.com/media.html |access-date=14 November 2011 |publisher=Interface Surgical Technologies, LLC}}</ref> A [[face transplant]] was first done on 27 November 2005 by Dr [[Bernard Devauchelle]].<ref>{{Cite news |last=Austin |first=Naomi |date=17 October 2006 |title=My face transplant saved me |work=BBC News |url=http://news.bbc.co.uk/1/hi/health/6058696.stm |access-date=25 November 2007}}</ref><ref>{{Cite news |date=30 November 2005 |title=Woman has first face transplant |work=BBC News |url=http://news.bbc.co.uk/1/hi/health/4484728.stm}}</ref>
+
+France was the [[Force de dissuasion|fourth country to achieve nuclear capability]]<ref>{{Cite book |last1=Pascal Boniface |url=https://books.google.com/books?id=JWF7eftCUQwC&pg=PT120 |title=Le monde nucléaire: Arme nucléaire et relations internationales depuis 1945 |last2=Barthélémy Courmont |date=22 November 2006 |publisher=Armand Colin |isbn=978-2-200-35687-3 |pages=120–}}</ref> and has the [[List of states with nuclear weapons|third largest nuclear weapons arsenal]] in the world;<ref>{{Cite web |title=Status of World Nuclear Forces |url=https://fas.org/issues/nuclear-weapons/status-world-nuclear-forces/ |url-status=dead |archive-url=https://web.archive.org/web/20150618103342/http://fas.org/issues/nuclear-weapons/status-world-nuclear-forces/ |archive-date=18 June 2015 |website=Federation Of American Scientists}}</ref> it is also a leader in [[Nuclear power in France|civilian nuclear technology]].<ref>{{Cite web |title=Study France's Nuclear-Power Success |url=http://www.theledger.com/article/20080814/COLUMNISTS/808140356 |url-status=dead |archive-url=https://web.archive.org/web/20150522133650/http://www.theledger.com/article/20080814/COLUMNISTS/808140356 |archive-date=22 May 2015 |website=TheLedger.com}}</ref><ref>{{Cite web |title=Stanford Journal of International Relations, "The French Connection: Comparing French and American Civilian Nuclear Energy Programs" |url=https://web.stanford.edu/group/sjir/pdf/Nuclear_11.2.pdf |url-status=dead |archive-url=https://web.archive.org/web/20150522131703/https://web.stanford.edu/group/sjir/pdf/Nuclear_11.2.pdf |archive-date=22 May 2015}}</ref><ref>{{Cite web |date=6 March 2014 |title=Countries Generating The Most Nuclear Energy&nbsp;– Business Insider |url=http://www.businessinsider.com/countries-generating-the-most-nuclear-energy-2014-3?op=1&IR=T |website=Business Insider}}</ref> France was the third nation, after the Soviet Union and the United States, to launch its [[Diamant|space satellite]] and the first to establish a commercial [[launch service provider]], [[Arianespace]]. The French [[List of government space agencies|national space programme]], [[CNES]], is the third oldest in the world, and the oldest, largest, and most active in Europe. France is a founding member of the [[European Space Agency]] (ESA), contributing over a quarter of its budget, the most of any member state.<ref>{{Cite web |title=Funding |url=https://www.esa.int/About_Us/Corporate_news/Funding |access-date=5 February 2022 |website=esa.int |language=en}}</ref> ESA is headquartered in Paris, has its principal spaceport in French Guiana, and utilises the French-made [[Ariane 5]] as its primary launch vehicle.<ref>{{Cite book |last1=Muriel Gargaud |url=https://books.google.com/books?id=oEq1y9GIcr0C&pg=PA322 |title=Encyclopedia of Astrobiology |last2=Ricardo Amils |last3=Henderson James Cleaves |publisher=Springer Science & Business Media |year=2011 |isbn=978-3-642-11271-3 |pages=322–}}</ref><ref>{{Cite web |title=France |url=http://www.oecd-ilibrary.org/economics/the-space-economy-at-a-glance-2011/france_9789264113565-22-en;jsessionid=pgi7a3cfp7p2.x-oecd-live-03 |url-status=dead |archive-url=https://web.archive.org/web/20151004165922/http://www.oecd-ilibrary.org/economics/the-space-economy-at-a-glance-2011/france_9789264113565-22-en%3Bjsessionid%3Dpgi7a3cfp7p2.x-oecd-live-03 |archive-date=4 October 2015 |website=oecd-ilibrary.org}}</ref><ref>{{Cite web |last=French Ministry of Foreign Affairs and International Development |title=France at the heart of the Rosetta space mission: a unique technological challenge |url=http://www.diplomatie.gouv.fr/en/french-foreign-policy-1/scientific-diplomacy/events-7867/article/france-at-the-heart-of-the-rosetta |url-status=dead |archive-url=https://web.archive.org/web/20150522152217/http://www.diplomatie.gouv.fr/en/french-foreign-policy-1/scientific-diplomacy/events-7867/article/france-at-the-heart-of-the-rosetta |archive-date=22 May 2015 |publisher=France Diplomatie}}</ref> [[Airbus]], a leading aerospace company and the world's largest airline manufacturer, was formed partly from the French company, [[Aérospatiale]]; its main commercial airline business is conducted through its French division, Airbus S.A.S.
+
+[[File:ESRF img 0852.jpg|thumb|right|alt=Top view of the ring of European Synchrotron Radiation Facility|The [[European Synchrotron Radiation Facility]] in [[Grenoble]]]]France also hosts major international research facilities, including the [[European Synchrotron Radiation Facility]], the [[Institut Laue–Langevin]], and [[Minatec]], Europe's leading [[nanotechnology]] research centre. It is also a major member of [[CERN]], which operates the largest [[particle physics]] laboratory in the world and is its third largest contributor. France pioneered and hosts [[ITER]], an international effort to develop nuclear fusion energy, which is the world's biggest megaproject.
+
+The [[TGV]], developed by France's national railway company, the [[SNCF]], is a high-speed train that holds a series of [[Land speed record for railed vehicles|world speed records]]; in 2007, it became the fastest commercial wheeled train, achieving a speed of {{Convert|574.8|km/h|abbr=on}}.<ref>{{Cite news |title=French set new rail speed record |work=BBC News |url=http://news.bbc.co.uk/2/hi/6521295.stm}}</ref> As of 2021, it is the third-fastest train in the world, surpassed only by [[maglev]] models that utilise magnetic levitation.<ref>{{Cite web |last=Wallach |first=Omri |date=8 October 2021 |title=Visualizing the Fastest Trains in the World |url=https://www.visualcapitalist.com/visualizing-the-fastest-trains-in-the-world/ |access-date=5 February 2022 |website=Visual Capitalist |language=en-US}}</ref> Western Europe is now serviced by a network of TGV lines.
+
+The ''[[French National Centre for Scientific Research|Centre National de la Recherche Scientifique]]'' (CNRS), the state research agency, is the largest research institute in Europe and among the most prominent internationally; according to the [[Nature Index|2020 Nature Index]], it ranks fourth in the share of articles published in scientific journals worldwide,<ref>{{Cite web |title=2020 tables: Institutions {{!}} 2020 tables {{!}} Institutions {{!}} Nature Index |url=https://www.natureindex.com/annual-tables/2020/institution/all/all |access-date=11 January 2021 |website=natureindex.com |archive-date=5 March 2021 |archive-url=https://web.archive.org/web/20210305183253/https://www.natureindex.com/annual-tables/2020/institution/all/all |url-status=dead }}</ref> with France as a whole having the sixth-highest share.<ref>{{Cite web |title=2020 tables: Countries/territories {{!}} 2020 tables {{!}} Countries/territories {{!}} Nature Index |url=https://www.natureindex.com/annual-tables/2020/country/all |access-date=11 January 2021 |website=natureindex.com |archive-date=25 January 2021 |archive-url=https://web.archive.org/web/20210125185920/https://www.natureindex.com/annual-tables/2020/country/all |url-status=dead }}</ref>
+
+As of 2022, France ranks fourth in the number of Nobel laureates, with [[List of Nobel laureates by country|70 French]] people having been awarded a Nobel Prize.<ref>{{Cite web |title=All Nobel Prizes |url=https://www.nobelprize.org/nobel_prizes/lists/all/ |url-status=dead |archive-url=https://web.archive.org/web/20131103203731/http://www.nobelprize.org/nobel_prizes/lists/all/ |archive-date=3 November 2013 |access-date=10 October 2012}}</ref> Twelve French mathematicians have received a [[Fields Medal]], considered the most prestigious award in the field, making up one-fifth of total recipients,<ref>{{Cite web |title=List of Fields Medallists |url=http://www.mathunion.org/general/prizes/fields/prizewinners/ |access-date=10 October 2012 |publisher=International Mathematical Union}}</ref> and second only to the United States.
+
+France ranked 12th in the 2022 [[Global Innovation Index]], compared to 12th in 2020 and 16th in 2019.<ref>{{Cite book |last=WIPO |title=Global Innovation Index 2022, 15th Edition |url=https://www.wipo.int/global_innovation_index/en/2022/index.html |access-date=2022-11-16 |website=www.wipo.int |series=Global Innovation Index |year=2022 |publisher=World Intellectual Property Organization |doi=10.34667/tind.46596 |isbn=9789280534320 |language=en}}</ref><ref>{{Cite web |title=Global Innovation Index 2019 |url=https://www.wipo.int/global_innovation_index/en/2019/index.html |access-date=2 September 2021 |website=wipo.int |language=en}}</ref><ref>{{Cite web |title=RTD - Item |url=https://ec.europa.eu/newsroom/rtd/items/691898 |access-date=2 September 2021 |website=ec.europa.eu}}</ref><ref>{{Cite web |date=28 October 2013 |title=Global Innovation Index |url=https://knowledge.insead.edu/entrepreneurship-innovation/global-innovation-index-2930 |access-date=2 September 2021 |website=INSEAD Knowledge |language=en |archive-date=2 September 2021 |archive-url=https://web.archive.org/web/20210902101622/https://knowledge.insead.edu/entrepreneurship-innovation/global-innovation-index-2930 |url-status=dead }}</ref>
+
+==Demographics==
+{{Main|Demographics of France}}
+
+[[File:Population density in France.png|upright=1.2|thumb|Population density in France by [[Arrondissements of France|arrondissement]]]]
+
+With an estimated January 2023 population of 68,042,591 people,<ref name=pop_est/> France is the [[List of countries by population#Sovereign states and dependencies by population|20th most populous country in the world]], the third-most populous in Europe (after [[Russia]] and [[Germany]]), and the second most populous in the [[European Union]] (after Germany).
+
+France is an outlier among developed countries, particularly in Europe, for its relatively high rate of [[natural population growth]]: By birth rates alone, it was responsible for almost all natural population growth in the European Union in 2006.<ref>{{Cite web |title=Bilan démographique 2006: un excédent naturel record |url=https://www.insee.fr/fr/statistiques/1280882#titre-bloc-4 |url-status=dead |archive-url=https://web.archive.org/web/20170708232900/https://www.insee.fr/fr/statistiques/1280882#titre-bloc-4 |archive-date=8 July 2017 |access-date=22 January 2017 |publisher=Insee |language=fr}}</ref> Between 2006 and 2016, France saw the second-highest overall increase in population in the EU and was one of only four EU countries where natural births accounted for the most population growth.<ref>{{Cite web |title=People in the EU – statistics on demographic changes – Statistics Explained |url=https://ec.europa.eu/eurostat/statistics-explained/index.php/People_in_the_EU_-_statistics_on_demographic_changes |access-date=21 August 2019 |publisher=European Commission}}</ref> This was the highest rate since the end of the [[baby boom]] in 1973 and coincides with the rise of the [[total fertility rate]] from a nadir of 1.7 in 1994 to 2.0 in 2010.
+
+{{As of|January 2021}}, the fertility rate declined slightly to 1.84 children per woman, below the [[replacement rate]] of 2.1, and considerably below the high of 4.41 in 1800.<ref>{{Citation |last=Max Roser |title=Total Fertility Rate around the world over the last centuries |url=https://ourworldindata.org/grapher/children-born-per-woman?year=1800&country=FRA |work=[[Our World in Data]], [[Gapminder Foundation]] |year=2014 |archive-url=https://web.archive.org/web/20190708151649/https://ourworldindata.org/grapher/children-born-per-woman?year=1800&country=FRA |access-date=7 May 2019 |archive-date=8 July 2019 |url-status=dead}}</ref><ref>{{Cite web |title=Bilan démographique 2016 |url=https://www.insee.fr/fr/statistiques/2554860 |access-date=19 January 2017 |publisher=Insee |language=fr}}</ref><ref name="population">{{Cite web |title=Bilan démographique 2020 |url=https://www.insee.fr/fr/statistiques/5012724 |access-date=19 January 2021 |publisher=Insee |language=fr}}</ref><ref>{{Cite web |title=Tableau 44&nbsp;– Taux de fécondité générale par âge de la mère |url=http://www.insee.fr/fr/ppp/bases-de-donnees/irweb/sd2008/dd/excel/sd2008_t44_fe.xls |url-status=dead |archive-url=https://web.archive.org/web/20110427013815/http://www.insee.fr/fr/ppp/bases-de-donnees/irweb/sd2008/dd/excel/sd2008_t44_fe.xls |archive-date=27 April 2011 |access-date=20 January 2011 |publisher=Insee |language=fr}}</ref> France's fertility rate and crude birth rate nonetheless remain among the highest in the EU. However, like many developed nations, the French [[Population ageing|population is aging]]; the average age is 41.7 years, while about a fifth of French people is 65 or over.<ref>{{Citation |title=World Factbook EUROPE : FRANCE |date=4 February 2021 |url=https://www.cia.gov/the-world-factbook/countries/france/ |work=[[The World Factbook]]}}</ref> The [[List of countries by life expectancy|average life expectancy]] at birth is 82.7 years, the 12th highest in the world.
+
+From 2006 to 2011, population growth averaged 0.6 percent per year;<ref name="evol">{{Cite web |title=Évolution générale de la situation démographique, France |url=http://www.insee.fr/fr/themes/detail.asp?reg_id=0&ref_id=bilan-demo&page=donnees-detaillees/bilan-demo/pop_age3.htm#evol-gen-sit-demo-fe |access-date=20 January 2011 |publisher=Insee |language=fr}}</ref> since 2011, annual growth has been between 0.4 and 0.5 percent annually.<ref>{{Cite web |title=WDI – Home |url=http://datatopics.worldbank.org/world-development-indicators/ |access-date=27 August 2019 |publisher=World Bank}}</ref> Immigrants are major contributors to this trend; in 2010, 27 percent of newborns in metropolitan France had at least one [[Immigration to France#Immigration per region|foreign-born]] parent and another 24 percent had at least one parent born outside Europe (excluding French overseas territories).<ref>{{Cite web |title=Naissances selon le pays de naissance des parents 2010 |url=http://www.insee.fr/fr/themes/detail.asp?ref_id=ir-sd20101 |url-status=dead |archive-url=https://web.archive.org/web/20130927161644/http://www.insee.fr/fr/themes/detail.asp?ref_id=ir-sd20101 |archive-date=27 September 2013 |publisher=Insee}}</ref>
+
+===Ethnic groups===
+{{Main|French people}}
+[[File:Map_of_the_French_Diaspora_in_the_World.svg|thumb|upright=1.2|Map of the [[French diaspora]] around the world]]
+Most [[French people]] are of [[Celtic peoples|Celtic]]-[[Gauls|Gallic]] origin, with a significant admixture of [[Italic peoples|Italic]] ([[Roman Empire|Romans]]) and [[Germanic peoples|Germanic]] ([[Franks]]) groups reflecting centuries of respective migration and settlement.<ref>{{Cite book |last=Jean-Louis Brunaux |title=Nos ancêtres les Gaulois |date=2008 |editor-last=Seuil |page=261 |trans-title=Our ancestors the Gauls}}</ref> Through the course of the [[Middle Ages]], France incorporated various neighbouring ethnic and linguistic groups, as evidenced by [[Bretons|Breton]] elements in the west, [[Aquitani]]an in the southwest, [[Scandinavian people|Scandinavian]] in the northwest, [[Alemanni]]c in the northeast, and [[Ligures|Ligurian]] in the southeast.
+
+Large-scale immigration over the last century and a half have led to a more multicultural society; beginning with the French Revolution, and further codified in the [[French Constitution|French Constitution of 1958]], the government is prohibited from collecting data on ethnicity and ancestry; most demographic information is drawn from private sector organisations or academic institutions. In 2004, the ''Institut Montaign''e estimated that within Metropolitan France, 51&nbsp;million people were White (85% of the population), 6&nbsp;million were Northwest African (10%), 2&nbsp;million were Black (3.3%), and 1&nbsp;million were Asian (1.7%).<ref>{{Cite book |last1=Yazid Sabeg |url=http://www.conventioncitoyenne.com/documents/oubliesdelegalite.pdf |title=Les oubliés de l'égalité des chances |last2=Laurence Méhaignerie |date=January 2004 |publisher=[[Institut Montaigne]] |language=fr |trans-title=The forgotten of equal opportunities |author-link=Yazid Sabeg}}</ref><ref>{{Cite news |date=26 March 2009 |title=France's ethnic minorities: To count or not to count |newspaper=[[The Economist]] |url=https://www.economist.com/node/13377324 |access-date=25 April 2013}}</ref>
+
+A 2008 poll conducted jointly by [[INED]] and [[INSEE|the French National Institute of Statistics]]<ref>{{Cite web |year=2008 |title='Trajectories and Origins' Survey |url=http://teo_english.site.ined.fr/ |url-status=dead |archive-url=https://web.archive.org/web/20111202054910/http://teo_english.site.ined.fr/ |archive-date=2 December 2011 |publisher=Ined}}</ref><ref name="Oppenheimer">{{Cite journal |last=Oppenheimer |first=David B. |year=2008 |title=Why France needs to collect data on racial identity...in a French way |journal=Hastings International and Comparative Law Review |volume=31 |issue=2 |pages=735–752 |ssrn=1236362}}</ref> estimated that the largest ancestry groups were [[Italians in France|Italian]] (5 million), followed by [[Northwest African]] (3-6 million),<ref name="Cohen1995">{{Cite book |last=Robin Cohen |url=https://archive.org/details/cambridgesurveyo00robi |title=The Cambridge Survey of World Migration |publisher=Cambridge University Press |year=1995 |isbn=978-0-521-44405-7 |url-access=registration}}</ref><ref>{{Cite news |date=25 November 2009 |title=France's crisis of national identity |work=The Independent |location=London |url=https://www.independent.co.uk/news/world/europe/frances-crisis-of-national-identity-1826942.html}}</ref><ref>"Les personnes d'origine maghrébine y sont également au nombre de 5 à 6 millions; 3,5 millions ont la nationalité française (don't 500 000 harkis)", Évelyne Perrin, ''Identité Nationale, Amer Ministère'', L'Harmattan, 2010, p. 112 {{ISBN|978-2-296-10839-4}}</ref> [[Afro-French|Sub-Saharan African]] (2.5&nbsp;million), Armenian (500,000), and Turkish (200,000).<ref>{{Cite web |last=Falila Gbadamassi |title=Les personnes originaires d'Afrique, des Dom-Tom et de la Turquie sont 5,5 millions dans l'Hexagone |url=http://www.afrik.com/article16248.html |url-status=dead |archive-url=https://web.archive.org/web/20131002085632/http://www.afrik.com/article16248.html |archive-date=2 October 2013 |publisher=Afrik.com}}</ref> There are also sizeable minorities of other [[European ethnic groups]], namely [[Spaniards|Spanish]], [[Portuguese people|Portuguese]], [[Polish people|Polish]], and [[Greeks|Greek]].<ref name="Cohen1995" /><ref>{{Cite news |last=Richburg |first=Keith B. |date=24 April 2005 |title=Europe's Minority Politicians in Short Supply |newspaper=The Washington Post |url=https://www.washingtonpost.com/wp-dyn/articles/A12396-2005Apr23.html}}</ref><ref>{{Cite news |last=Sachs |first=Susan |date=12 January 2007 |title=In officially colorblind France, blacks have a dream&nbsp;– and now a lobby |work=The Christian Science Monitor |location=Boston |url=http://www.csmonitor.com/2007/0112/p01s04-woeu.html}}</ref> France has a significant [[Romani people in France|Gitan (Romani)]] population, numbering between 20,000 and 400,000;<ref>{{Cite web |title=National strategy for Roma integration – European Commission – DG Justiceunknown label |url=http://ec.europa.eu/justice/discrimination/roma-integration/france/national-strategy/national_en.htm |url-status=dead |archive-url=https://web.archive.org/web/20160306140020/http://ec.europa.eu/justice/discrimination/roma-integration/france/national-strategy/national_en.htm |archive-date=6 March 2016}}</ref> many foreign [[Romani people|Roma]] are [[Deportation of Roma migrants from France|expelled back to Bulgaria and Romania frequently.]]<ref>{{Cite web |last=Astier |first=Henri |date=13 February 2014 |title=France's unwanted Roma |url=https://www.bbc.co.uk/news/magazine-25419423 |publisher=BBC}}</ref>
+
+=== Immigration ===
+It is currently estimated that 40% of the French population is descended at least partially from the different waves of immigration since the early 20th century;<ref>{{Cite news |date=4 November 2005 |title=Paris Riots in Perspective |work=ABC News |location=New York |url=https://abcnews.go.com/International/story?id=1280843}}</ref> between 1921 and 1935 alone, about 1.1&nbsp;million net immigrants came to France.<ref>{{Cite book |last=Hassell |first=James E. |title=Russian Refugees in France and the United States Between the World Wars |date=1991 |publisher=American Philosophical Society |isbn=978-0-87169-817-9 |series=Transactions of the American Philosophical Society |volume=81/7 |page=[https://books.google.com/books?id=uUsLAAAAIAAJ&pg=PA22 22] |chapter=III. French Government and the Refugees}}</ref> The next largest wave came in the 1960s when around 1.6&nbsp;million ''[[pieds noirs]]'' returned to France following the independence of its Northwest African possessions, Algeria and Morocco.<ref>{{Cite news |last=Markham |first=James M. |date=6 April 1988 |title=For Pieds-Noirs, the Anger Endures |work=The New York Times |url=https://query.nytimes.com/gst/fullpage.html?res=940DEFDE1539F935A35757C0A96E948260}}</ref><ref>{{Cite book |title=Migration and development co-operation |date=1994 |isbn=978-92-871-2611-5 |editor-last=Raimondo Cagiano De Azevedo |page=[https://books.google.com/books?id=N8VHizsqaH0C&pg=PA25 25]}}</ref> They were joined by numerous former colonial subjects from North and West Africa, as well as numerous European immigrants from Spain and Portugal.
+[[File:Calais2015a.jpg|thumb|The [[Calais Jungle]] was a [[refugee]] and [[Economic migrant|illegal migrant]] encampment in the vicinity of [[Calais]], France, that existed from January 2015 to October 2016.]]
+
+France remains a major destination for immigrants, accepting about 200,000 legal immigrants annually.<ref>{{Cite web |date=3 November 2010 |title=Flux d'immigration par continent d'origine |trans-title=Immigration flow by continent of origin |url=https://www.ined.fr/fr/tout-savoir-population/chiffres/france/flux-immigration/annee-continent/ |url-status=dead |archive-url=https://web.archive.org/web/20120523053018/http://www.ined.fr/fr/pop_chiffres/france/flux_immigration/depuis_1994/ |archive-date=23 May 2012 |website=Ined |language=fr}}</ref> In 2005, it was Western Europe's leading recipient of [[refugee|asylum]] seekers, with an estimated 50,000 applications (albeit a 15% decrease from 2004).<ref name="UNHCR">{{Cite book |title=UNHCR Global Report 2005 |publisher=[[UNHCR]] |chapter=Western Europe |access-date=14 December 2006 |chapter-url=http://www.unhcr.org/publ/PUBL/4492677f0.pdf |archive-url=https://web.archive.org/web/20070614025835/http://www.unhcr.org/publ/PUBL/4492677f0.pdf |archive-date=14 June 2007 |url-status=live}}</ref> In 2010, France received about 48,100 asylum applications—placing it among the top five asylum recipients in the world<ref>{{Cite journal |last1=Kalt |first1=Anne |last2=Hossain |first2=Mazeda |last3=Kiss |first3=Ligia |last4=Zimmerman |first4=Cathy |date=March 2013 |title=Asylum Seekers, Violence and Health: A Systematic Review of Research in High-Income Host Countries |journal=American Journal of Public Health |volume=103 |issue=3 |pages=e30–e42 |doi=10.2105/AJPH.2012.301136 |issn=0090-0036 |pmc=3673512 |pmid=23327250}}</ref> and in subsequent years it saw the number of applications increase, ultimately doubling to 100,412 in 2017.<ref>{{Cite web |year=2017 |title=aida – Asylum Information Database – Country Report: France |url=https://www.asylumineurope.org/sites/default/files/report-download/aida_fr_2017update.pdf}}</ref> The European Union allows free movement between the member states, although France established controls to curb [[Eastern European]] migration,{{Citation needed|date=October 2019}} and immigration remains a contentious political issue.
+
+In 2008, the [[INSEE]] (National Institute of Statistics and Economic Studies) estimated that the total number of foreign-born immigrants was around 5&nbsp;million (8% of the population), while their French-born descendants numbered 6.5&nbsp;million, or 11% of the population. Thus, nearly a fifth of the country's population were either first or second-generation immigrants, of which more than 5&nbsp;million were of European origin and 4&nbsp;million of [[Maghrebis|Maghrebi]] ancestry.<ref>{{Cite web |last1=Catherine Borrel |last2=Bertrand Lhommeau |date=30 March 2010 |title=Être né en France d'un parent immigré |trans-title=To be born in France of an immigrant parent |url=http://www.insee.fr/fr/themes/document.asp?reg_id=0&ref_id=ip1287 |url-status=live |archive-url=https://web.archive.org/web/20120203052501/http://www.insee.fr/fr/themes/document.asp?reg_id=0&ref_id=ip1287 |archive-date=3 February 2012 |publisher=Insee |language=fr}}</ref><ref name="Insee_1">{{Cite web |year=2008 |title=Répartition des immigrés par pays de naissance |trans-title=Distribution of immigrants by country of birth |url=http://www.insee.fr/fr/themes/tableau.asp?reg_id=0&ref_id=immigrespaysnais |url-status=dead |archive-url=https://web.archive.org/web/20111026174732/http://www.insee.fr/fr/themes/tableau.asp?reg_id=0&ref_id=immigrespaysnais |archive-date=26 October 2011 |publisher=Insee |language=fr}}</ref><ref name="INSEE1">{{Cite web |last=Catherine Borrel |date=August 2006 |title=Enquêtes annuelles de recensement 2004 et 2005 |trans-title=Annual census surveys 2004 and 2005 |url=http://www.insee.fr/fr/ffc/ipweb/ip1098/ip1098.html#encadre1 |url-status=dead |archive-url=https://web.archive.org/web/20061212212050/http://www.insee.fr/fr/ffc/ipweb/ip1098/ip1098.html |archive-date=12 December 2006 |access-date=14 December 2006 |publisher=Insee |language=fr}}</ref> In 2008, France granted [[citizenship]] to 137,000 persons, mostly from Morocco, Algeria and Turkey.<ref>{{Cite news |last=Swalec |first=Andrea |date=6 July 2010 |title=Turks and Moroccans top list of new EU citizens |work=Reuters |url=http://in.reuters.com/article/idINIndia-49921620100706 |url-status=live |archive-url=https://web.archive.org/web/20120112223503/http://in.reuters.com/article/2010/07/06/idINIndia-49921620100706 |archive-date=12 January 2012}}</ref>
+
+In 2014, the INSEE reported a significant increase in the number of immigrants coming from Spain, Portugal and Italy between 2009 and 2012. According to the French Institute, this increase resulted from the financial crisis that hit several European countries in that period.<ref name="sudouest.fr">{{Cite news |date=2 December 2014 |title=Qui sont les nouveaux immigrés qui vivent en France? |language=fr |trans-title=Who are the new immigrants living in France? |work=SudOuest |url=http://www.sudouest.fr/2014/11/28/qui-sont-les-nouveaux-immigres-qui-vivent-en-france-1751452-705.php}}</ref> Statistics on Spanish immigrants in France show a growth of 107 percent between 2009 and 2012, with the population growing from 5,300 to 11,000.<ref name="sudouest.fr" /> Of the total of 229,000 foreigners who were in France in 2012, nearly 8% were Portuguese, 5% British, 5% Spanish, 4% Italian, 4% German, 3% Romanian, and 3% Belgian.<ref name="sudouest.fr" />
+{| class="wikitable sortable" style="text-align: center; width: 540px"
+|+ Number of immigrants{{Efn-ur|INSEE definition: an immigrant is a person born in a foreign country not having French citizenship at birth. Note that an immigrant may have acquired French citizenship since moving to France, but is still considered an immigrant in French statistics. On the other hand, persons born in France with foreign citizenship (the children of immigrants) are not listed as immigrants. Changes in immigrant numbers result from: arrivals of new immigrants - (departures + deaths in France).}} living in France by region of birth
+! UN SDG region
+! 2019 census
+! 2009 census
+! Growth
+|-
+| Northern Africa and Western Asia
+| 2,425,200
+| 1,983,600
+| +22.3%
+|-
+| Europe
+| 2,297,400
+| 2,076,200
+| +10.7%
+|-
+| Sub-Saharan Africa
+| 1,123,800
+| 667,500
+| +68.4%
+|-
+| Eastern and South-Eastern Asia
+| 311,400
+| 293,100
+| +6.2%
+|-
+| Latin America and the Caribbean
+| 307,650
+| 233,900
+| +31.5%
+|-
+| Central and Southern Asia
+| 205,600
+| 120,100
+| +71.2%
+|-
+| Northern America
+| 54,600
+| 51,600
+| +5.8%
+|-
+| Australia, NZ, and Oceania
+| 7,950
+| 6,700
+| +18.7%
+|-
+|-
+! Total
+! 6,733,600
+! 5,432,700
+! +23.9%
+|-
+| Colspan=4 style="text-align: left" | {{Small|Sources: INSEE census figures,<ref>{{Cite web |last=[[INSEE]] |title=Immigrés par pays de naissance détaillé - Recensement de la population 2019 |url=https://www.insee.fr/fr/statistiques/6478089?sommaire=6478362 |access-date=2022-08-14}}</ref> UN SDG regions.<ref>{{Cite web |last=[[United Nations Department of Economic and Social Affairs]] |title=The Sustainable Development Goals Report 2019 - Regional groupings |url=https://unstats.un.org/sdgs/report/2019/regional-groups |access-date=2022-08-14}}</ref>}}
+{{Small|Note: Figures for 2019 refer to [[Metropolitan France]] and the 5 [[Overseas departments and regions of France|overseas regions]] ([[Mayotte]] included). Figures for 2009 do not include Mayotte. The [[overseas collectivity|overseas collectivities]] in the Pacific Ocean are included neither in 2009 nor in 2019.}}
+|}
+
+===Major cities===
+{{See also|Functional area (France)|Urban unit}}
+France is a highly urbanised country, with its [[List of cities in France over 20,000 population (1999 census)|largest cities]] (in terms of [[Functional area (France)|metropolitan area]] population in 2019<ref>{{Cite web |title=Population municipale 2019 - France par aire d'attraction des villes - Tableau |url=https://statistiques-locales.insee.fr/#c=indicator&i=pop_legales.popmun&s=2019&t=A01&view=map13 |access-date=2022-08-11 |website=Insee}}</ref>) being Paris (13,114,718 inh.), [[Lyon]] (2,280,845), [[Marseille]] (1,873,270), [[Lille]] (1,510,079), [[Toulouse]] (1,454,158), [[Bordeaux]] (1,363,711), [[Nantes]] (1,011,020), [[Strasbourg]] (853,110), [[Montpellier]] (801,595), and [[Rennes]] (755,668). (Note: since its 2020 revision of metropolitan area borders, [[INSEE]] considers that [[Nice]] is a metropolitan area separate from the [[Cannes]]-[[Antibes]] metropolitan area; these two combined would have a population of 1,008,296, as of the 2019 census). [[Rural flight]] was a perennial political issue throughout most of the 20th century.
+{{Largest metropolitan areas of France}}
+
+===Language===
+{{Main|French language|Languages of France|Organisation internationale de la Francophonie}}
+[[File:New-Map-Francophone World.svg|thumb|upright=1.5|alt=world map of French speaking countries|Map of the [[List of territorial entities where French is an official language|Francophone]] world:
+{{Legend|#0c5eb1|Native language}}
+{{Legend|#0080ff|Administrative language}}
+{{Legend|#9fceff|Secondary or non-official language}}
+{{Legend|#00ff00|Francophone minorities}}]]
+The official language of France is French,<ref>{{In lang|fr}} [https://web.archive.org/web/20110604145028/http://www.legifrance.gouv.fr/html/constitution/constitution2.htm La Constitution- La Constitution du 4 Octobre 1958]&nbsp;– Légifrance.</ref> a [[Romance language]] derived from [[Latin]]. Since 1635, the [[Académie française]] has been France's official authority on the French language, although its recommendations carry no legal weight. There are also regional languages spoken in France, such as [[Occitan language|Occitan]], [[Breton language|Breton]], [[Catalan language|Catalan]], [[French Flemish|Flemish]] ([[Dutch language|Dutch]] dialect), [[Alsatian dialect|Alsatian]] (German dialect), [[Basque language|Basque]], and [[Corsican language|Corsican]] (Italian dialect). Italian was the official language of Corsica until 9 May 1859.<ref>Abalain, Hervé, (2007) ''Le français et les langues historiques de la France'', Éditions Jean-Paul Gisserot, p. 113.</ref>
+
+The Government of France does not regulate the choice of language in publications by individuals, but the use of French is required by law in commercial and workplace communications. In addition to mandating the use of French in the territory of the Republic, the French government tries to promote French in the European Union and globally through institutions such as the [[Organisation internationale de la Francophonie]]. The perceived threat from [[anglicisation]] has prompted efforts to safeguard the position of the French language in France. Besides French, there exist 77 vernacular minority languages of France, eight spoken in French metropolitan territory and 69 in the French [[Overseas departments and territories of France|overseas territories]].
+
+From the 17th to the mid-20th century, French served as the pre-eminent international language of diplomacy and international affairs as well as a [[lingua franca]] among the educated classes of Europe.<ref name="exception">Joffre Agnes [http://www.franceinlondon.com/en-Article-335-Is-the-French-obsession-with-cultural-exception-declining-Culture--london-language.html ls the French obsession with "cultural exception" declining?] {{Webarchive|url=https://web.archive.org/web/20111017023619/http://franceinlondon.com/en-Article-335-Is-the-French-obsession-with-cultural-exception-declining-Culture--london-language.html|date=17 October 2011}}. France in London. 5 October 2008</ref> The dominant position of the French language in international affairs was overtaken by English since the emergence of the United States as a major power.<ref name="Language and Diplomacy"/><ref>{{Cite web |title=Language and Diplomacy&nbsp;– Translation and Interpretation |url=http://www.diplomacy.edu/language/Translation/default.htm |archive-url=https://web.archive.org/web/20110719183516/http://www.diplomacy.edu/language/Translation/default.htm |archive-date=19 July 2011 |access-date=10 September 2010 |publisher=Diplomacy.edu}}</ref><ref>{{Cite web |title=Why Is French Considered the Language of Diplomacy? |url=http://www.legallanguage.com/legal-articles/language-of-diplomacy/ |url-status=dead |archive-url=https://web.archive.org/web/20101230232848/http://www.legallanguage.com/legal-articles/language-of-diplomacy/ |archive-date=30 December 2010 |access-date=23 January 2011 |publisher=Legallanguage.com}}</ref>
+
+For most of the time in which French served as an international lingua franca, it was not the native language of most Frenchmen: a report in 1794 conducted by [[Henri Grégoire]] found that of the country's 25&nbsp;million people, only three million spoke French natively; the rest spoke one of the country's many regional languages, such as [[Alsatian language|Alsatian]], [[Breton language|Breton]] or [[Occitan language|Occitan]].<ref>{{Cite web |title=Rapport Grégoire an II |url=http://www.languefrancaise.net/dossiers/dossiers.php?id_dossier=66 |url-status=dead |archive-url=https://web.archive.org/web/20080405022802/http://www.languefrancaise.net/dossiers/dossiers.php?id_dossier=66 |archive-date=5 April 2008}}</ref> Through the expansion of public education, in which French was the sole language of instruction, as well as other factors such as increased urbanisation and the rise of mass communication, French gradually came to be adopted by virtually the entire population, a process not completed until the 20th century.
+
+As a result of France's extensive [[French colonial empire|colonial ambitions]] between the 17th and 20th centuries, French was introduced to the Americas, Africa, Polynesia, South-East Asia, as well as the [[Caribbean]]. French is the second most studied foreign language in the world after English,<ref>{{Cite web |title=The International Education Site |url=http://www.intstudy.com/articles/practicalfrench.htm |url-status=dead |archive-url=https://web.archive.org/web/20110227075911/http://www.intstudy.com/articles/practicalfrench.htm |archive-date=27 February 2011 |access-date=23 January 2011 |publisher=Intstudy.com}}</ref> and is a lingua franca in some regions, notably in Africa. The legacy of French as a living language outside Europe is mixed: it is nearly extinct in some former French colonies (The Levant, South and Southeast Asia), while creoles and pidgins based on French have emerged in the French departments in the [[West Indies]] and the South Pacific ([[French Polynesia]]). On the other hand, many former French colonies have adopted French as an official language, and the total number of French speakers is increasing, especially in Africa.
+
+It is estimated that between 300&nbsp;million<ref>{{Cite web |title=French: one of the world's main languages |url=http://about-france.com/french/french-language.htm |url-status=dead |archive-url=http://arquivo.pt/wayback/20160516223437/http://about-france.com/french/french-language.htm |archive-date=16 May 2016 |access-date=21 July 2011 |publisher=About-france.com}}</ref> and 500&nbsp;million<ref>{{In lang|fr}} [http://www.tlfq.ulaval.ca/axl/francophonie/francophonie.htm Qu'est-ce que la Francophonie ?] {{Webarchive|url=https://web.archive.org/web/20110623113030/http://www.tlfq.ulaval.ca/axl/francophonie/francophonie.htm|date=23 June 2011}}&nbsp;– [[Organisation internationale de la Francophonie]]</ref> people worldwide can speak French, either as a mother tongue or as a second language.
+
+According to the 2007 Adult Education survey, part of a project by the [[European Union]] and carried out in France by the [[INSEE]] and based on a sample of 15,350 persons, French was the native language of 87.2% of the total population, or roughly 55.81&nbsp;million people, followed by Arabic (3.6%, 2.3&nbsp;million), Portuguese (1.5%, 960,000), Spanish (1.2%, 770,000) and Italian (1.0%, 640,000). Native speakers of other languages made up the remaining 5.2% of the population.<ref>{{Cite web |title=GESIS – Leibniz Institute for the Social Sciences |url=https://www.gesis.org/en/missy/metadata/AES/2007/Cross-sectional/original#2007-Cross-sectional-MOTHTONG1 |access-date=24 April 2018 |website=gesis.org}}</ref>
+
+===Religion===
+{{Main|Religion in France}}
+[[File:Reims Cathédrale Notre-Dame 5002 (fixed angles).jpg|thumb|left|180px|alt=Notre-Dame de Reims façade, gothic stone cathedral against blue sky|[[Reims Cathedral|Notre-Dame de Reims]] is the Roman Catholic cathedral where the [[Coronation of the French monarch|Kings of France were crowned]] until 1825.{{Efn-ur|The last ''sacre'' was that of [[Charles X of France|Charles X]], 29 May 1825.}}]]
+France is a secular country in which [[freedom of religion]] is a constitutional right. French religious policy is based on the concept of ''[[laïcité]]'', a strict [[separation of church and state]] under which public life is kept completely secular. The exception to this is the region of [[Alsace]] and [[Moselle]] where Lutheranism, Catholicism and Judaism enjoy official status and state funding.
+
+According to a survey held in 2016 by [[Institut Montaigne]] and [[Institut français d'opinion publique]] (IFOP), 51.1% of the total population of France was Christian, 39.6% had no religion ([[atheism]] or agnosticism), 5.6% were [[Muslim]]s, 2.5% were followers of other faiths, and the remaining 0.4% were undecided about their faith.<ref name="2016Montaigne-IFOP">{{Cite web |year=2016 |title=A French Islam is possible |url=http://www.institutmontaigne.org/res/files/publications/a-french-islam-is-possible-report.pdf |archive-url=https://web.archive.org/web/20170915201551/http://www.institutmontaigne.org/res/files/publications/a-french-islam-is-possible-report.pdf |archive-date=15 September 2017 |publisher=Institut Montaigne |page=13}}</ref> Estimates of the number of [[Islam in France|Muslims in France]] vary widely. In 2003, the French Ministry of the Interior estimated the total number of people of Muslim background to be between 5 and 6&nbsp;million (8–10%).<ref>{{Cite news |last=Jon Henley |date=22 April 2004 |title=France to train imams in 'French Islam' |work=The Guardian |url=https://www.theguardian.com/world/2004/apr/23/france.islam}}</ref><ref>{{Cite web |title=France&nbsp;– International Religious Freedom Report 2005 |url=https://2001-2009.state.gov/g/drl/rls/irf/2005/51552.htm |access-date=30 October 2010 |publisher=U.S. State Department}}</ref> The current [[Jews in France|Jewish community in France]] is the largest in Europe and the third largest in the world after Israel and the United States, ranging between 480,000 and 600,000, about 0.8% of the population as of 2016.<ref name="2016Montaigne-IFOP" />
+
+[[Catholicism]] has been the predominant religion in France for more than a millennium, though it is not as actively practised today as it was. Among the 47,000 religious buildings in France, 94% are [[Catholic Church|Roman Catholic]].<ref>{{Cite web |date=1 February 2012 |title=Observatoire du patrimoine religieux |url=http://www.patrimoine-religieux.fr/rubriques/gauche/actualites/actualites-de-la-base-de-donnees |url-status=dead |archive-url=https://web.archive.org/web/20131126171213/http://www.patrimoine-religieux.fr/rubriques/gauche/actualites/actualites-de-la-base-de-donnees |archive-date=26 November 2013 |quote=94% des édifices sont catholiques (dont 50% églises paroissiales, 25% chapelles, 25% édifices appartenant au clergé régulier)}}</ref> During the [[French Revolution]], activists conducted a brutal [[dechristianisation of France during the French Revolution|campaign of de-Christianisation]], ending the Catholic Church as the state religion. In some cases, clergy and churches were attacked, with iconoclasm stripping the churches of statues and ornaments. After alternating between royal and secular republican governments during the 19th century, in 1905 France passed the [[1905 French law on the Separation of the Churches and the State|1905 law on the Separation of the Churches and the State]], which established the principle of ''[[laïcité]]''.<ref name="georgetown2">{{Cite web |title=France |url=http://berkleycenter.georgetown.edu/resources/countries/france |url-status=dead |archive-url=https://web.archive.org/web/20110206213909/http://berkleycenter.georgetown.edu/resources/countries/france |archive-date=6 February 2011 |access-date=14 December 2011 |publisher=[[Berkley Center for Religion, Peace, and World Affairs]]}}</ref>
+
+To this day, the government is prohibited from recognising any specific right to a religious community (except for legacy statutes like those of military chaplains and the [[local law in Alsace-Moselle]]). It recognises religious organisations according to formal legal criteria that do not address religious doctrine. Conversely, religious organisations are expected to refrain from intervening in policymaking.<ref>''Joy of Sects'', Sam Jordison, 2006, p. 166</ref>
+
+Certain groups, such as [[Scientology]], [[Children of God (New Religious Movement)|Children of God]], the [[Unification Church]], or the [[Order of the Solar Temple]] are considered [[cult]]s ("''[[sect]]es''" in French); therefore they do not have the same status as recognised religions in France.<ref>{{Cite web |title=Commission d'enquête sur les sectes |url=http://www.assemblee-nationale.fr/rap-enq/r2468.asp |access-date=30 October 2010 |publisher=Assemblee-nationale.fr}}</ref> ''Secte'' is considered a pejorative term in France.<ref>{{Cite web |title=Society2; religion in France; beliefs; secularism (laicité) |url=http://www.understandfrance.org/France/Society2.html |url-status=dead |archive-url=https://web.archive.org/web/20090916220047/http://www.understandfrance.org/France/Society2.html |archive-date=16 September 2009 |access-date=20 September 2009 |publisher=Understandfrance.org}}{{Self-published source|date=June 2016}}</ref>
+
+===Health===
+{{Main|Health in France}}
+[[File:P1000513_Paris_XIII_Salpetrière_reductwk.JPG|thumb|alt=Pitié-Salpêtrière Hospital in Paris, stone building with slate dome|The [[Pitié-Salpêtrière Hospital]], a teaching hospital in Paris, is one of Europe's largest hospitals.<ref>[https://web.archive.org/web/20070117112822/http://www.paris-region.com/ard_uk/upload/document/D176.pdf How to conduct European clinical trials from the Paris Region ?] Clinical Trials. Paris. February 2003</ref>]]
+The [[Health in France|French health care system]] is one of [[universal health care]] largely financed by government [[national health insurance]]. In its 2000 assessment of world healthcare systems, the [[World Health Organization]] found that France provided the "close to best overall health care" in the world.<ref name="who.int">{{Cite web |date=8 December 2010 |title=World Health Organization Assesses the World's Health Systems |url=https://www.who.int/whr/2000/media_centre/press_release/en/ |access-date=6 January 2012 |publisher=Who.int}}</ref> The French healthcare system was ranked first worldwide by the World Health Organization in 1997.<ref>[http://www.photius.com/rankings/healthranks.html The ranking, see spreadsheet details for a whole analysis] photius.com</ref><ref>{{Cite web |title=Measuring Overall Health System Performance for 191 Countries |url=https://www.who.int/healthinfo/paper30.pdf |url-status=dead |archive-url=https://web.archive.org/web/20110805022057/http://www.who.int/healthinfo/paper30.pdf |archive-date=5 August 2011 |access-date=21 July 2011}}</ref> In 2011, France spent 11.6% of its GDP on health care, or US$4,086 per capita,<ref name="WHO country facts: France">{{Cite web |title=WHO country facts: France |url=https://www.who.int/countries/fra/en/ |url-status=dead |archive-url=https://web.archive.org/web/20131111212445/http://www.who.int/countries/fra/en/ |archive-date=11 November 2013 |access-date=11 November 2013 |publisher=Who.int}}</ref> a figure much higher than the average spent by countries in Europe but [[Health care compared|less than in the United States]]. Approximately 77% of health expenditures are covered by government-funded agencies.<ref>The World Health Report 2000: WHO</ref>
+
+Care is generally free for people affected by [[chronic disease]]s (''affections de longues durées'') such as cancer, AIDS or [[cystic fibrosis]]. Average life expectancy at birth is 78 years for men and 85 years for women, one of the highest in the European Union and the World.<ref>{{Cite web |title=Espérance de vie, taux de mortalité et taux de mortalité infantile dans le monde |url=http://www.insee.fr/fr/themes/tableau.asp?reg_id=98&ref_id=CMPTEF02216 |publisher=Insee |language=fr}}</ref><ref>{{Cite web |title=Evolution de l'espérance de vie à divers âges |url=http://www.insee.fr/fr/themes/tableau.asp?reg_id=0&ref_id=NATnon02229 |publisher=Insee |language=fr}}</ref> There are 3.22 physicians for every 1000 inhabitants in France,<ref>{{Cite web |title=Nombre de médecins pour 1000 habitants |url=http://www.statistiques-mondiales.com/medecins.htm |archive-url=https://web.archive.org/web/20100305131215/http://www.statistiques-mondiales.com/medecins.htm |archive-date=5 March 2010 |publisher=Statistiques mondiales |language=fr}}</ref> and average healthcare spending per capita was US$4,719 in 2008.<ref>{{Cite web |title=Dépenses de santé par habitants |url=http://www.statistiques-mondiales.com/sante.htm |archive-url=https://web.archive.org/web/20091212061623/http://www.statistiques-mondiales.com/sante.htm |archive-date=12 December 2009 |publisher=Statistiques mondiales |language=fr}}</ref>
+{{As of|2007}}, approximately 140,000 inhabitants (0.4%) of France are living with HIV/AIDS.<ref name =France/>
+
+Even if the [[Frenchmen|French]] have the reputation of being one of the thinnest people in developed countries,<ref name="obesity">[https://www.nytimes.com/2005/05/03/world/europe/03iht-obese.html Even the French are fighting obesity]&nbsp;– ''The New York Times''</ref><ref name="daily">{{Cite web |last=Wahlgren |first=Eric |date=14 November 2009 |title=France's obesity crisis: All those croissants really do add up, after all |url=http://www.dailyfinance.com/2009/11/14/frances-obesity-crisis-all-those-croissants-really-do-add-up/ |url-status=dead |archive-url=https://web.archive.org/web/20110708221117/http://www.dailyfinance.com/2009/11/14/frances-obesity-crisis-all-those-croissants-really-do-add-up/ |archive-date=8 July 2011 |access-date=21 July 2011 |publisher=Dailyfinance.com}}</ref><ref name="Telegraph">{{Cite news |last=Lambert |first=Victoria |date=8 March 2008 |title=The French children learning to fight obesity |work=The Daily Telegraph |location=London |url=https://www.telegraph.co.uk/health/dietandfitness/3353715/The-French-children-learning-to-fight-obesity.html |url-status=dead |access-date=9 August 2010 |archive-url=https://web.archive.org/web/20090730205839/http://www.telegraph.co.uk/health/dietandfitness/3353715/The-French-children-learning-to-fight-obesity.html |archive-date=30 July 2009}}</ref><ref name="bloomberg">[http://www.businessweek.com/bwdaily/dnflash/jul2001/nf2001073_981.htm Why So Few French Are Fat] {{Webarchive|url=https://web.archive.org/web/20100125084124/http://www.businessweek.com/bwdaily/dnflash/jul2001/nf2001073_981.htm|date=25 January 2010}}&nbsp;– Bloomberg Businessweek</ref><ref>{{Cite web |title=The French Diet – Eat, Drink, and be Thin |url=http://www.streetdirectory.com/travel_guide/24041/e_diet/the_french_diet___eat_drink_and_be_thin.html |access-date=9 August 2010 |publisher=Streetdirectory.com}}</ref>{{Excessive citations inline|date=September 2021}} France—like other rich countries—faces an increasing and recent epidemic of [[obesity]], due mostly to the replacement in French eating habits of traditional healthy French cuisine by [[junk food]].<ref>{{Cite news |last=Mimi Spencer |date=7 November 2004 |title=Let them eat cake |work=The Guardian |location=London |url=https://www.theguardian.com/lifeandstyle/2004/nov/07/foodanddrink.features11 |access-date=21 July 2011}}</ref><ref name=obesity/><ref name=daily/><ref name="obesity2">[http://www.foodnavigator.com/Science-Nutrition/France-heading-for-US-obesity-levels-says-study France heading for US obesity levels says study]&nbsp;– Food Navigator</ref>{{Excessive citations inline|date=September 2021}} The French obesity rate is still far below that of the United States—currently equal to the American rate in the 1970s—and is still the lowest in Europe.<ref name = daily/><ref name = bloomberg/><ref name = obesity2/> Authorities now regard obesity as one of the main public health issues and fight it fiercely.<ref>{{Cite web |date=14 September 2006 |title=New French food guidelines aimed at tackling obesity |url=http://www.nutraingredients.com/Regulation/New-French-food-guidelines-aimed-at-tackling-obesity |access-date=9 August 2010 |publisher=Nutraingredients.com}}</ref> Rates of [[childhood obesity]] are slowing in France while continuing to grow in other countries.<ref>{{Cite web |last=Petah Marian |date=23 May 2008 |title=France urged to get tough on child obesity |url=http://www.just-food.com/analysis/france-urged-to-get-tough-on-child-obesity_id102509.aspx |url-status=dead |archive-url=https://web.archive.org/web/20101226205551/http://www.just-food.com/analysis/france-urged-to-get-tough-on-child-obesity_id102509.aspx |archive-date=26 December 2010 |access-date=9 August 2010 |publisher=Just-food.com}}</ref>
+
+===Education===
+{{Main|Education in France}}
+[[File:École normale supérieure de Paris, 26 January 2013.jpg|thumb|upright|left|The [[École normale supérieure (Paris)|École normale supérieure]] (ENS) in Paris, established in the end of the 18th century, produces more [[Nobel Prize]] laureates [[per capita]] than any other institution in the world.<ref>Tom Clynes, [https://www.nature.com/news/where-nobel-winners-get-their-start-1.20757 Where Nobel winners get their start], [[Nature (journal)|Nature]], 7 October 2016</ref>]]
+In 1802, [[Napoleon]] created the [[lycée]], the second and final stage of secondary education that prepares students for higher education studies or a profession.<ref>{{Cite encyclopedia |title=Lycée |encyclopedia=Encyclopædia Britannica |url=https://www.britannica.com/EBchecked/topic/352505/lycee |access-date=22 July 2011}}</ref> Nevertheless, [[Jules Ferry]] is considered the father of the French modern school, leading reforms in the late 19th century that established free, secular and compulsory education (currently mandatory until the age of 16).<ref>{{In lang|fr}} [http://www.senat.fr/rap/l97-504/l97-5041.html II. L'évolution du contenu de l'obligation scolaire]. Sénat.fr</ref><ref>{{In lang|fr}} [https://web.archive.org/web/20110605080546/http://www.assemblee-nationale.fr/site-jeunes/laicite/fiche-dates/fiche-1881-1882/fiche.pdf 1881–1882 : Lois Ferry École publique gratuite, laïque et obligatoire]. Assemblé Nationale</ref>
+
+French education is centralised and divided into three stages: Primary, secondary, and higher education. The [[Programme for International Student Assessment]], coordinated by the [[OECD]], ranked France's education as near the OECD average in 2018.<ref>{{Cite web |title=Compare your country - PISA 2018 |url=https://www2.compareyourcountry.org/pisa/country/FRA?lg=en |access-date=4 October 2021 |website=www2.compareyourcountry.org |language=en}}</ref><ref name=":2">{{Cite web |title=Programme for International Student Assessment (PISA) France report |url=https://www.oecd.org/pisa/publications/PISA2018_CN_FRA.pdf |website=oecd}}</ref> France was one of the PISA-participating countries where school children perceived some of the lowest levels of support and feedback from their teachers.<ref name=":2" /> Schoolchildren in France reported greater concern about the disciplinary climate and behaviour in classrooms compared to other [[OECD]] countries.<ref name=":2" />
+
+Primary and secondary education are predominantly public, and run by the [[Ministry of National Education (France)|Ministry of National Education]]. While training and remuneration of teachers and the curriculum are the responsibility of the state centrally, the management of primary and secondary schools is overseen by local authorities. Primary education comprises two phases, nursery school (''école maternelle'') and elementary school (''école élémentaire''). Nursery school aims to stimulate the minds of very young children and promote their socialisation and development of a basic grasp of language and numbers. Around the age of six, children transfer to elementary school, whose primary objectives are learning about writing, arithmetic and citizenship. Secondary education also consists of two phases. The first is delivered through colleges (''collège'') and leads to the national certificate ([[Diplôme national du brevet]]). The second is offered in high schools (''lycée'') and finishes in national exams leading to a baccalaureate (''baccalauréat'', available in professional, technical or general flavours) or certificate of professional competence (''certificat d'aptitude professionelle'').
+
+Higher education is divided between [[Universities in France|public universities]] and the prestigious and selective ''[[Grande école|Grandes écoles]]'', such as [[Sciences Po|Sciences Po Paris]] for Political studies, [[HEC Paris]] for Economics, [[École Polytechnique|Polytechnique]], the [[École des hautes études en sciences sociales]] for Social studies and the [[École nationale supérieure des mines de Paris]] that produce high-profile engineers, or the [[École nationale d'administration]] for careers in the [[Grands corps de l'État|Grands Corps]] of the state. The ''Grandes écoles'' have been criticised for alleged [[elitism]], producing many if not most of France's high-ranking civil servants, CEOs and politicians.<ref name="gécoles">{{In lang|fr}} [http://www.lefigaro.fr/formation/2010/01/08/01015-20100108ARTFIG00525-les-grandes-ecoles-dans-la-tourmente-.php Les grandes écoles dans la tourmente]&nbsp;– [[Le Figaro]]</ref>
+
+==Culture==
+{{Main|Culture of France}}
+[[File:Eugène Delacroix - La liberté guidant le peuple.jpg|thumb|[[Eugène Delacroix]]'s ''[[Liberty Leading the People]]'' (1830) portrays the [[July Revolution]] using the stylistic views of [[Romanticism]]. Since Liberty is part of the motto "[[Liberté, égalité, fraternité]]", as the French put it, this painting has become the primary symbol of the French Republic.]]
+
+The creation of the [[Ministry of Culture (France)|Ministry of Culture]] in 1959 helped preserve the cultural heritage of the country and make it available to the public by granting subsidies to artists, promoting French culture in the world, supporting festivals and cultural events, and protecting [[Monument historique|historical monuments]]. The French government also succeeded in maintaining a [[cultural exception]] to defend audiovisual products made in the country.<ref>Geneviève Poujol, and Michael Kelly, "The creation of a Ministry of Culture in France." ''French Cultural Studies'' 2.6 (1991): 251-260.</ref>
+
+France has 1,200 [[List of museums in France|museums]], visited by more than 50&nbsp;million people annually.<ref>Ministère de la Culture et de la Communication, "Cultura statistics", [http://www2.culture.gouv.fr/culture/deps/2008/pdf/minichiffrescles2010-en.pdf Key figures]</ref> The most important cultural sites are run by the government, for instance through the public agency [[Centre des monuments nationaux]], which is responsible for approximately 85 historical monuments. The 43,180 buildings protected as historical monuments include mainly residences (many [[List of castles in France|castles]]) and religious buildings ([[List of cathedrals in France|cathedrals]], [[List of basilicas in France|basilicas]], [[Church (building)|churches]]), but also statues, memorials and [[Gardens of France|gardens]]. [[UNESCO]] inscribed 45 sites in [[Table of World Heritage Sites by country|France on the World Heritage List]].<ref>{{Cite web |title=Official properties inscribed on the UNESCO World Heritage List in France |url=https://whc.unesco.org/en/statesparties/fr |access-date=9 July 2015 |publisher=UNESCO}}</ref>
+
+===Art===
+{{Main|French art}}
+[[File:Louvre Museum Wikimedia Commons.jpg|thumb|left|upright=1.2|The [[Louvre|Louvre Museum]], widely recognised as one of the finest [[art museum]]s in the world, was in 2019 both [[List of largest art museums|the largest]] and [[List of most-visited museums|the most-visited museum]].<ref name="ArtNewspaper2019">{{Cite web |date=31 March 2020 |title=Art's Most Popular: here are 2019's most visited shows and museums |url=https://www.theartnewspaper.com/analysis/art-s-most-popular-here-are-2019-s-most-visited-shows-and-museums |access-date=25 June 2020 |publisher=The Art Newspaper}}</ref> ]]
+The origins of French art were very much influenced by [[Flemish art]] and by [[Italian art]] at the time of the [[Renaissance]]. [[Jean Fouquet]], the most famous medieval French painter, is said to have been the first to travel to Italy and experience the Early Renaissance firsthand. The Renaissance painting [[School of Fontainebleau]] was directly inspired by Italian painters such as [[Primaticcio]] and [[Rosso Fiorentino]], who both worked in France. Two of the most famous French artists of the time of the [[Baroque era]], [[Nicolas Poussin]] and [[Claude Lorrain]], lived in Italy. The 17th century was the period when French painting became prominent and individualised itself through classicism. Prime Minister [[Jean-Baptiste Colbert]] founded the [[Royal Academy of Painting and Sculpture]] in 1648 under Louis XIV to protect these artists; in 1666 he also created the still-active [[French Academy in Rome]] to have direct relations with Italian artists.
+
+French artists developed the [[rococo]] style in the 18th century, as a more intimate imitation of the old baroque style, the works of the court-endorsed artists [[Antoine Watteau]], [[François Boucher]] and [[Jean-Honoré Fragonard]] being the most representative in the country. The French Revolution brought great changes, as [[Napoleon]] favoured artists of [[Neoclassicism|neoclassic style]] such as [[Jacques-Louis David]] and the highly influential [[Académie des Beaux-Arts]] defined the style known as [[Academism]]. At this time France had become a centre of artistic creation, the first half of the 19th century being dominated by two successive movements, at first [[Romanticism]] with [[Théodore Géricault]] and [[Eugène Delacroix]], then [[Realism (arts)|Realism]] with [[Camille Corot]], [[Gustave Courbet]] and [[Jean-François Millet]], a style that eventually evolved into [[Naturalism (arts)|Naturalism]].
+
+In the second part of the 19th century, France's influence over painting grew, with the development of new styles of painting such as [[Impressionism]] and [[Symbolism (arts)|Symbolism]]. The most famous impressionist painters of the period were [[Camille Pissarro]], [[Édouard Manet]], [[Edgar Degas]], [[Claude Monet]] and [[Auguste Renoir]].<ref>{{Cite web |title=Guide to Impressionism |url=http://www.nationalgallery.org.uk/paintings/learn-about-art/guide-to-impressionism/guide-to-impressionism |access-date=22 July 2011 |publisher=National Gallery}}</ref> The second generation of impressionist-style painters, [[Paul Cézanne]], [[Paul Gauguin]], [[Toulouse-Lautrec]] and [[Georges Seurat]], were also at the avant-garde of artistic evolutions,<ref>{{In lang|fr}} RFI, [http://www.rfi.fr/actufr/articles/063/article_34792.asp Le néo-impressionnisme de Seurat à Paul Klee] 15 March 2005</ref> as well as the [[Fauvism|fauvist]] artists [[Henri Matisse]], [[André Derain]] and [[Maurice de Vlaminck]].<ref>National Gallery of Art (United States), [http://www.nga.gov/feature/artnation/fauve/index.shtm The Fauves (dossier)] {{Webarchive|url=https://web.archive.org/web/20101105195501/http://www.nga.gov/feature/artnation/fauve/index.shtm|date=5 November 2010}}</ref><ref>{{In lang|fr}} RFI, [http://www.rfi.fr/culturefr/articles/098/article_63189.asp Vlaminck, version fauve] {{Webarchive|url=https://web.archive.org/web/20171010120345/http://www.rfi.fr/culturefr/articles/098/article_63189.asp|date=10 October 2017}}, 25 February 2008</ref>
+[[File:Claude Monet 1899 Nadar crop.jpg|thumb|upright|[[Claude Monet]], founder of the [[Impressionism|Impressionist]] movement]]
+
+At the beginning of the 20th century, Cubism was developed by [[Georges Braque]] and the Spanish painter [[Pablo Picasso]], living in Paris. Other foreign artists also settled and worked in or near Paris, such as [[Vincent van Gogh]], [[Marc Chagall]], [[Amedeo Modigliani]] and [[Wassily Kandinsky]].
+
+There are many art museums in France, the most famous of which being the state-owned [[Louvre|Musée du Louvre]], which collects artwork from the 18th century and earlier. The [[Musée d'Orsay]] was inaugurated in 1986 in the old railway station [[Gare d'Orsay]], in a major reorganisation of national art collections, to gather French paintings from the second part of the 19th century (mainly Impressionism and Fauvism movements).<ref>Musée d'Orsay (official website), History of the museum&nbsp;– [http://www.musee-orsay.fr/en/collections/history-of-the-museum/home.html From station to museum]</ref><ref>{{Cite web |date=31 July 2007 |title=History of the painting collection |url=http://www.musee-orsay.fr/en/collections/history-of-the-collections/painting.html |access-date=22 July 2011 |publisher=Musee-orsay.fr}}</ref> It was voted the best museum in the world in 2018.<ref>[https://www.independent.co.uk/travel/news-and-advice/best-museums-world-2018-musee-dorsay-paris-911-new-york-tripadvisor-a8525151.html The top 10 museums in the world], [[The Independent]], 6 September 2018</ref> Modern works are presented in the [[Musée National d'Art Moderne]], which moved in 1976 to the [[Centre Georges Pompidou]]. These three state-owned museums are visited by close to 17&nbsp;million people a year.<ref name="sites">{{In lang|fr}} Ministry of Tourism, [http://www.tourisme.gouv.fr/stat_etudes/memento/2009/sites.pdf Sites touristiques en France] {{Webarchive|url=https://web.archive.org/web/20110511093631/http://www.tourisme.gouv.fr/stat_etudes/memento/2009/sites.pdf|date=11 May 2011}} page 2 "Palmarès des 30 premiers sites culturels (entrées comptabilisées)" [Ranking of 30 most visited cultural sites in France]</ref>
+
+Other national museums hosting paintings include the [[Grand Palais]] (1.3&nbsp;million visitors in 2008), but there are also many museums owned by cities, the most visited being the [[Musée d'Art Moderne de la Ville de Paris]] (0.8&nbsp;million entries in 2008), which hosts contemporary works.<ref name=sites/> Outside Paris, all the large cities have a Museum of Fine Arts with a section dedicated to European and French painting. Some of the finest collections are in [[Musée des Beaux-Arts de Lyon|Lyon]], [[Palais des Beaux-Arts de Lille|Lille]], [[Musée des Beaux-Arts de Rouen|Rouen]], [[Musée des Beaux-Arts de Dijon|Dijon]], [[Musée des Beaux-Arts de Rennes|Rennes]] and [[Museum of Grenoble|Grenoble]].
+
+===Architecture===
+{{Main|French architecture}}
+[[File:Sainte Chapelle - Upper level 1.jpg|thumb|left|upright|alt=Sainte Chapelle interior showing painted stonework vaulting and stained glass|[[Louis IX of France|Saint Louis]]'s [[Sainte-Chapelle]] represents the French impact on religious architecture.]]
+During the Middle Ages, many fortified castles were built by feudal nobles to mark their powers. Some French castles that survived are [[Chinon (castle)|Chinon]], [[Château d'Angers]], the massive [[Château de Vincennes]] and the so-called [[Cathar castles]]. During this era, France had been using [[Romanesque architecture]] like most of Western Europe. Some of the greatest examples of Romanesque churches in France are the [[Basilique de Saint-Sernin, Toulouse|Saint Sernin Basilica]] in [[Toulouse, France|Toulouse]], the largest Romanesque church in Europe,<ref>{{Cite web |date=22 February 1999 |title=Toulouse's Saint Sernin, Largest Romanesque Church in Europe |url=http://www.europeupclose.com/article/toulouses-saint-sernin-largest-romanesque-church-in-europe/ |url-status=dead |archive-url=https://web.archive.org/web/20110710204930/http://www.europeupclose.com/article/toulouses-saint-sernin-largest-romanesque-church-in-europe/ |archive-date=10 July 2011 |access-date=22 July 2011 |publisher=Europeupclose.com}}</ref> and the remains of the [[Cluny Abbey]].
+
+[[Gothic architecture]], originally named ''Opus Francigenum'' meaning "French work",<ref>{{Cite book |last=Brodie |first=Allan M. |title=Oxford Art Online |publisher=Oxford University Press |year=2003 |isbn=978-1-884446-05-4 |chapter=Opus francigenum |doi=10.1093/gao/9781884446054.article.t063666 |access-date=13 January 2019 |chapter-url=http://www.oxfordartonline.com/view/10.1093/gao/9781884446054.001.0001/oao-9781884446054-e-7000063666}}</ref> was born in [[Île-de-France]] and was the first French style of architecture to be copied in all of Europe.<ref>{{Cite web |title=The Gothic Period |url=http://www.justfrance.org/france/architecture/001.asp |url-status=dead |archive-url=https://web.archive.org/web/20110718181401/http://www.justfrance.org/france/architecture/001.asp |archive-date=18 July 2011 |access-date=22 July 2011 |publisher=Justfrance.org}}</ref> Northern France is the home of some of the most important Gothic cathedrals and basilicas, the first of these being the [[Saint Denis Basilica]] (used as the royal necropolis); other important French Gothic cathedrals are [[Cathedral of Chartres|Notre-Dame de Chartres]] and [[Amiens Cathedral|Notre-Dame d'Amiens]]. The kings were crowned in another important Gothic church: [[Notre-Dame de Reims]].<ref>{{In lang|fr}} [http://www.cathedrale-reims.culture.fr/histoire.html Histoire et Architecture]&nbsp;– [http://www.cathedrale-reims.culture.fr Site officiel de la Cathedrale de Notre-Dame de Reims] {{Webarchive|url=https://web.archive.org/web/20160717234437/http://www.cathedrale-reims.culture.fr/|date=17 July 2016}}</ref> Aside from churches, Gothic Architecture had been used for many religious palaces, the most important one being the [[Palais des Papes]] in [[Avignon]].
+
+The final victory in the Hundred Years' War marked an important stage in the evolution of French architecture. It was the time of the [[French Renaissance]] and several artists from Italy were invited to the French court; many residential palaces were built in the [[Loire Valley]], from 1450 as a first reference the [[Château de Montsoreau]].<ref>{{Cite web |last=Loire |first=Mission Val de |title=Charles VII et Louis XI -Know -Val de Loire patrimoine mondial |url=https://www.valdeloire.org/Connaitre/Au-fil-de-l-histoire/Le-Val-de-Loire-siege-du-pouvoir-royal/Charles-VII-et-Louis-XI |access-date=10 October 2018 |website=loirevalley-worldheritage.org}}</ref> Such residential castles were the [[Château de Chambord]], the [[Château de Chenonceau]], or the [[Château d'Amboise]].
+
+Following the renaissance and the end of the Middle Ages, [[French Baroque architecture|Baroque architecture]] replaced the traditional Gothic style. However, in France, baroque architecture found greater success in the secular domain than in the religious one.<ref>{{In lang|fr}} Claude Lébedel&nbsp;– Les Splendeurs du Baroque en France: ''Histoire et splendeurs du baroque en France'' page 9: "Si en allant plus loin, on prononce les mots 'art baroque en France', on provoque alors le plus souvent une moue interrogative, parfois seulement étonnée, parfois franchement réprobatrice: Mais voyons, l'art baroque n'existe pas en France!"</ref> In the secular domain, the [[Palace of Versailles]] has many baroque features. [[Jules Hardouin Mansart]], who designed the extensions to Versailles, was one of the most influential French architects of the baroque era; he is famous for his dome at [[Les Invalides]].<ref>{{Cite book |last=Hills |first=Helen |url=https://books.google.com/books?id=jLmFbEdqBDUC&pg=PA86 |title=Architecture and the Politics of Gender in Early Modern Europe |publisher=Ashgate Publishing |year=2003 |isbn=978-0-7546-0309-2 |page=86}}</ref> Some of the most impressive provincial baroque architecture is found in places that were not yet French such as [[Place Stanislas]] in [[Nancy, France|Nancy]]. On the military architectural side, [[Sébastien Le Prestre de Vauban|Vauban]] designed some of the most efficient fortresses in Europe and became an influential military architect; as a result, imitations of his works can be found all over Europe, the Americas, Russia and Turkey.<ref>{{Cite web |date=8 July 2008 |title=Fortifications of Vauban |url=https://whc.unesco.org/en/list/1283 |access-date=9 August 2010 |publisher=UNESCO}}</ref><ref>{{Cite web |title=Official site of the UNESCO |url=https://en.unesco.org/ |access-date=9 August 2010 |publisher=UNESCO}}</ref>
+
+After the Revolution, the [[Republicanism|Republicans]] favoured [[Neoclassicism]] although it was introduced in France before the revolution with such buildings as the [[Panthéon|Parisian Pantheon]] or the [[Capitole de Toulouse]]. Built during the first French Empire, the [[Arc de Triomphe]] and [[Église de la Madeleine|Sainte Marie-Madeleine]] represent the best example of [[Empire style|Empire-style]] architecture.<ref>{{Cite book |url=https://books.google.com/books?id=OtabdzMdbboC&pg=PA48 |title=Paris: City Guide |publisher=Lonely Planet |year=2008 |isbn=978-1-74059-850-7 |page=48}}</ref>
+[[File:Bordeaux place de la bourse with tram.JPG|thumb|[[Place de la Bourse]] in [[Bordeaux]], an example of [[French baroque architecture]]]]
+
+Under [[Napoleon III]], a new wave of urbanism and architecture was given birth; extravagant buildings such as the neo-baroque [[Palais Garnier]] were built. The urban planning of the time was very organised and rigorous; most notably, [[Haussmann's renovation of Paris]]. The architecture associated with this era is named [[Second Empire (architecture)|Second Empire]] in English, the term being taken from the [[Second French Empire]]. At this time there was a strong Gothic resurgence across Europe and in France; the associated architect was [[Eugène Viollet-le-Duc]]. In the late 19th century, [[Gustave Eiffel]] designed many bridges, such as the [[Garabit viaduct]], and remains one of the most influential bridge designers of his time, although he is best remembered for the iconic [[Eiffel Tower]].
+
+In the 20th century, French-Swiss architect [[Le Corbusier]] designed several buildings in France. More recently, French architects have combined both modern and old architectural styles. The [[Louvre Pyramid]] is an example of modern architecture added to an older building. The most difficult buildings to integrate within French cities are skyscrapers, as they are visible from afar. For instance, in Paris, since 1977, new buildings had to be under {{Convert| 37| m}}.<ref>{{Cite web |last=Henri SECKEL |date=8 July 2008 |title=Urbanisme : Des gratte-ciel à Paris : qu'en pensez-vous &nbsp;– Posez vos questions |url=http://lci.tf1.fr/posez-vos-questions/2008-07/gratte-ciel-paris-pensez-vous-4872555.html |url-status=dead |archive-url=https://web.archive.org/web/20101029152433/http://lci.tf1.fr/posez-vos-questions/2008-07/gratte-ciel-paris-pensez-vous-4872555.html |archive-date=29 October 2010 |publisher=MYTF1News}}</ref> France's largest financial district is [[La Défense]], where a significant number of skyscrapers are located.<ref>[http://www.groupenci.com/uk/ile-de-france/defense.com-square.html In the heart of the main European Business area] {{Webarchive|url=https://web.archive.org/web/20100729154317/http://www.groupenci.com/uk/ile-de-france/defense.com-square.html|date=29 July 2010}}&nbsp;– NCI Business Center</ref> Other massive buildings that are a challenge to integrate into their environment are large bridges; an example of the way this has been done is the [[Millau Viaduct]]. Some famous modern French architects include [[Jean Nouvel]], [[Dominique Perrault]], [[Christian de Portzamparc]] and [[Paul Andreu]].
+
+===Literature===
+{{Main|French literature}}
+The earliest French literature dates from the [[Middle Age]]s when what is now known as modern France did not have a single, uniform language. There were several languages and dialects, and writers used their own spelling and grammar. Some authors of French medieval texts, such as ''[[Tristan and Iseult]]'' and ''[[Lancelot-Grail]]'' are unknown. Three famous medieval authors are [[Chrétien de Troyes]], [[Christine de Pizan]] ([[Langues d'oïl|langue d'oïl]]), and [[William IX of Aquitaine|Duke William IX of Aquitaine]] ([[Occitan language|langue d'oc]]). Much medieval French poetry and literature was inspired by the legends of the [[Matter of France|Carolingian cycle]], such as ''[[The Song of Roland]]'' and the various [[chansons de geste]]. The ''Roman de Renart'', written in 1175 by Perrout de Saint Cloude, tells the story of the medieval character [[Reynard]] ('the Fox') and is another example of early French writing.
+
+An important 16th-century writer was [[François Rabelais]], who wrote five popular early [[picaresque]] novels. Rabelais was also in regular communication with [[Marguerite de Navarre]], author of the ''[[Heptameron]]''.<ref>{{cite journal|title=Rabelais and Marguerite de Navarre on Sixteenth-Century Views of Clandestine Marriage | first= Cathleen M. |last= Bauschatz | journal = Sixteenth Century Journal | volume = 34 | issue = 2 | pages = 395–408 | date = 2003| doi = 10.2307/20061415 | jstor = 20061415 }}</ref> Another 16th-century author was [[Michel de Montaigne]], whose most famous work, ''[[Essays (Montaigne)|Essais]]'', started a literary genre.<ref>{{Cite web |title=Montaigne |url=http://www.humanistictexts.org/montaigne.htm |url-status=dead |archive-url=https://web.archive.org/web/20110525201508/http://www.humanistictexts.org/montaigne.htm |archive-date=25 May 2011 |access-date=22 July 2011 |publisher=Humanistictexts.org}}</ref> [[Pierre de Ronsard]] and [[Joachim du Bellay]], were the founders of the [[La Pléiade]] poetic movement.
+
+In 1678, [[Madame de La Fayette]] anonymously published ''[[La Princesse de Clèves]]'', a widely praised [[psychological novel]].<ref>{{Cite web |date=28 February 2010 |title=La Princesse de Cleves by Madame de Lafayette, adapted by Jo Clifford |url=http://www.radiodramareviews.com/id438.html |url-status=dead |archive-url=https://web.archive.org/web/20110810091607/http://www.radiodramareviews.com/id438.html |archive-date=10 August 2011 |access-date=22 July 2011 |publisher=Radiodramareviews.com}}</ref> [[Jean de La Fontaine]] is a famous 17th century [[fabulist]], who borrowed from [[Aesop]]. Generations of French schoolchildren had to learn his fables by heart, as they were thought to teach [[wisdom]] and [[common sense]]. Some of his verses have entered the popular language to become proverbs.<ref>[[Jean de La Fontaine]], ''Fables'' (1668–1679), I., 21, ''Les Frelons et les Mouches à miel''; reported in Thomas Benfield Harbottle and Philip Hugh Dalbiac, ''Dictionary of Quotations (French and Italian)'' (1904), p. 1.</ref>
+
+[[File:French literary figures.jpg|thumb|alt=see description|left|French literary figures. Clockwise from top left: [[Molière]] is the most played author in the [[Comédie-Française]];<ref>{{In lang|fr}} [http://www.comedie-francaise.fr/histoire-et-patrimoine?id=525 Auteurs et répertoires] {{Webarchive|url=https://web.archive.org/web/20100919234251/http://comedie-francaise.fr/histoire-et-patrimoine?id=525|date=19 September 2010}}&nbsp;– Official site of the Comédie Française</ref> [[Victor Hugo]] is one of the most important French novelist and poet; 19th-century poet, writer and translator [[Charles Baudelaire]]; 20th-century philosopher and novelist [[Jean-Paul Sartre]]]]
+
+[[Jean Racine]], who wrote plays such as ''[[Phèdre]]'' or ''[[Britannicus]]'' using [[French Alexandrine|alexandrine]]s, is considered one of the three great dramatists of France's golden age along with [[Pierre Corneille]] (''[[Le Cid]]'') and [[Molière]], who wrote dozens of plays, including ''[[Le Misanthrope]]'', ''[[L'Avare]]'', ''[[Le Malade imaginaire]]'', and ''[[Le Bourgeois gentilhomme]]''. French is sometimes referred to as "the language of Molière".<ref>{{Cite news |last=Randall |first=Colin |date=25 October 2004 |title=France looks to the law to save the language of Molière |work=The Daily Telegraph |location=London |url=https://www.telegraph.co.uk/news/worldnews/europe/france/1475046/France-looks-to-the-law-to-save-the-language-of-Moliere.html |url-status=live |url-access=subscription |access-date=22 July 2011 |archive-url=https://ghostarchive.org/archive/20220110/https://www.telegraph.co.uk/news/worldnews/europe/france/1475046/France-looks-to-the-law-to-save-the-language-of-Moliere.html |archive-date=10 January 2022}}{{Cbignore}}</ref>
+
+French literature and poetry flourished during the 18th and 19th centuries. [[Denis Diderot]]'s best-known works are ''[[Jacques the Fatalist]]'' and ''[[Rameau's Nephew]]''. He is best known, however, as the main editor of the ''[[Encyclopédie]]'', whose aim was, to sum up all the knowledge of his century (in fields such as arts, sciences, languages, and philosophy) and to fight ignorance and [[obscurantism]]. During that same century, [[Charles Perrault]] was a prolific writer of children's fairy tales including ''[[Puss in Boots]]'', ''[[Cinderella]]'', ''[[Sleeping Beauty]]'' and ''[[Bluebeard]]''. At the start of the 19th century, [[symbolist poetry]] was an important movement in French literature, with poets such as Charles Baudelaire, [[Paul Verlaine]] and [[Stéphane Mallarmé]].<ref>{{Cite web |title=Le Symbolisme français |url=http://users.skynet.be/litterature/symbolisme/symbolismefrancais.htm |url-status=dead |archive-url=https://web.archive.org/web/20180307192737/http://users.skynet.be/litterature/symbolisme/symbolismefrancais.htm |archive-date=7 March 2018 |access-date=29 July 2010 |website=users.skynet.be}}</ref>
+
+The 19th century saw the writings of many renowned French authors. Victor Hugo is sometimes seen as "the greatest French writer of all time"<ref name="victor">{{Cite web |title=Victor Hugo est le plus grand écrivain français |url=http://www.lecavalierbleu.com/images/30/extrait_75.pdf |url-status=dead |archive-url=https://web.archive.org/web/20130723121408/http://www.lecavalierbleu.com/images/30/extrait_75.pdf |archive-date=23 July 2013}}</ref> for excelling in all [[literary genre]]s. The preface of his play ''[[Cromwell (play)|Cromwell]]'' is considered to be the manifesto of the [[Romanticism|Romantic movement]]. ''[[Les Contemplations]]'' and ''[[La Légende des siècles]]'' are considered "poetic masterpieces",<ref name="hugo">{{Cite web |title=Victor Hugo 1802–1885 |url=http://www.enotes.com/victor-hugo-criticism/hugo-victor |access-date=16 July 2011 |publisher=Enotes.com}}</ref> Hugo's verse has been compared to that of Shakespeare, [[Dante]] and [[Homer]].<ref name = hugo/> His novel ''[[Les Misérables]]'' is widely seen as one of the greatest novels ever written<ref>{{Cite web |title=All-Time 100 Best Novels List |url=http://www.adherents.com/people/100_novel.html |url-status=usurped |archive-url=https://web.archive.org/web/20051128235020/http://adherents.com/people/100_novel.html |archive-date=28 November 2005 |access-date=22 July 2011 |publisher=Adherents.com}}</ref> and ''[[The Hunchback of Notre-Dame|The Hunchback of Notre Dame]]'' has remained immensely popular. Other major authors of that century include [[Alexandre Dumas]] (''[[The Three Musketeers]]'' and ''[[The Count of Monte-Cristo]]''), [[Jules Verne]] (''[[Twenty Thousand Leagues Under the Sea]]''), [[Émile Zola]] (''[[Les Rougon-Macquart]]''), [[Honoré de Balzac]] (''[[La Comédie humaine]]''), [[Guy de Maupassant]], [[Théophile Gautier]] and [[Stendhal]] (''[[The Red and the Black]]'', ''[[The Charterhouse of Parma]]''), whose works are among the most well known in France and the world.
+
+The [[Prix Goncourt]] is a French literary prize first awarded in 1903.<ref>{{In lang|fr}} [http://www.academie-goncourt.fr/?article=1229174089 La première Académie Goncourt] {{Webarchive|url=https://web.archive.org/web/20110425100025/http://www.academie-goncourt.fr/?article=1229174089|date=25 April 2011}}&nbsp;– [http://www.academie-goncourt.fr Site officiel de l'Académie Goncourt] {{Webarchive|url=https://web.archive.org/web/20081119231954/http://www.academie-goncourt.fr/|date=19 November 2008}}</ref>
+
+In the early 20th century France was a haven for literary freedom.<ref name="Beat censors" /> Works banned for obscenity in the US, the UK and other Anglophone nations were published in France decades before they were available in the respective authors' home countries.<ref name="Beat censors">{{Cite news |title=Dirty books and literary freedom: The Lady Chatterley publisher who beat the censors |agency=BBC |url=https://www.bbc.co.uk/programmes/articles/25GtYStZ3wsmZHBt6BCP51p/dirty-books-and-literary-freedom-the-lady-chatterley-publisher-who-beat-the-censors |url-status=live |access-date=28 August 2022 |archive-url=https://web.archive.org/web/20211117185434/https://www.bbc.co.uk/programmes/articles/25GtYStZ3wsmZHBt6BCP51p/dirty-books-and-literary-freedom-the-lady-chatterley-publisher-who-beat-the-censors |archive-date=17 November 2021}}</ref> The innate French regard for the mind meant that France was disinclined to punish literary figures for their writing, and prosecutions were rare.<ref name="Beat censors" /> Important writers of the 20th century include [[Marcel Proust]], [[Louis-Ferdinand Céline]], [[Albert Camus]], and [[Jean-Paul Sartre]]. [[Antoine de Saint Exupéry]] wrote ''[[The Little Prince|Little Prince]]'', which has remained popular for decades.<ref>{{Cite web |title=The Little Prince |url=http://www.completelynovel.com/books/50599 |access-date=22 July 2011 |publisher=Completelynovel.com |archive-date=30 September 2018 |archive-url=https://web.archive.org/web/20180930232031/http://www.completelynovel.com/books/50599 |url-status=dead }}</ref> {{As of|2014}}, French authors had more [[Nobel Prize in Literature|Literature Nobel Prizes]] than [[List of Nobel laureates in Literature|those of any other nation]].<ref name="Patrick Modiano">[http://www.globalpost.com/dispatch/news/afp/141009/modiano-strengthens-frances-literature-nobel-dominance Modiano strengthens France's literature Nobel dominance] {{Webarchive|url=https://web.archive.org/web/20141018105721/http://www.globalpost.com/dispatch/news/afp/141009/modiano-strengthens-frances-literature-nobel-dominance|date=18 October 2014}}, [[Global Post]], 9 October 2014</ref> The first Nobel Prize in Literature was for a French author, while France's latest Nobel prize in literature was for [[Patrick Modiano]], who was awarded the prize in 2014.<ref name="Patrick Modiano" /> Jean-Paul Sartre was also the first nominee in the committee's history to refuse the prize in 1964.<ref name="Patrick Modiano" />
+
+===Philosophy===
+{{Main|French philosophy}}
+Medieval philosophy was dominated by [[Scholasticism]] until the emergence of [[Humanism in France|Humanism]] in the Renaissance. [[Modern philosophy]] began in France in the 17th century with the philosophy of [[René Descartes]], [[Blaise Pascal]] and [[Nicolas Malebranche]]. Descartes was the first [[Western philosophy|Western philosopher]] since ancient times to attempt to build a philosophical system from the ground up rather than building on the work of predecessors.<ref>Russell, Bertrand (2004) [1945]. ''A History of Western Philosophy''. Routledge. p. 511</ref><ref>Kenny, Anthony (2006). ''The Rise of Modern Philosophy: A New History of Western Philosophy, vol. 3''. Oxford University Press. pp. 40</ref> His ''[[Meditations on First Philosophy]]'' changed the primary object of philosophical thought and raised some of the most fundamental problems for foreigners such as [[Spinoza]], [[Gottfried Wilhelm Leibniz|Leibniz]], [[David Hume|Hume]], [[George Berkeley|Berkeley]], and [[Immanuel Kant|Kant]].
+[[File:Frans Hals - Portret van René Descartes.jpg|thumb|upright|alt=Frans Hals painting of René Descartes facing right in black coat and white collar|[[René Descartes]], founder of modern [[Western philosophy]]<ref>[https://www.britannica.com/biography/Rene-Descartes René Descartes], [[Encyclopædia Britannica]]</ref>]]
+
+French philosophers produced some of the most important political works of the [[Age of Enlightenment]]. In ''[[The Spirit of the Laws]]'', [[Baron de Montesquieu]] theorised the principle of [[separation of powers]], which has been implemented in all [[liberal democracy|liberal democracies]] since [[Separation of powers under the United States Constitution|it was first applied in the United States]]. [[Voltaire]] came to embody the Enlightenment with his defence of civil liberties, such as the right to a free trial and freedom of religion.
+
+19th-century French thought was targeted at responding to the social malaise following the French Revolution. Rationalist philosophers such as [[Victor Cousin]] and [[Auguste Comte]], who called for a new social doctrine, were opposed by reactionary thinkers such as [[Joseph de Maistre]], [[Louis de Bonald]] and [[Hugues Felicité Robert de Lamennais|Félicité Robert de Lamennais]], who blamed the rationalist rejection of traditional order. De Maistre, together with the Englishman [[Edmund Burke]], was one of the founders of European conservatism. Comte was the founder of [[positivism]], which [[Émile Durkheim]] reformulated as a basis for social research.
+
+In the 20th century, partly as a reaction to the perceived excesses of positivism, French [[Spiritualism (philosophy)|spiritualism]] thrived with thinkers such as [[Henri Bergson]] and it influenced American [[pragmatism]] and [[Alfred North Whitehead|Whitehead]]'s version of [[process philosophy]]. Meanwhile, French epistemology became a prominent school of thought with [[Jules Henri Poincaré]], [[Gaston Bachelard]], [[Jean Cavaillès]] and [[Jules Vuillemin]]. Influenced by German [[Phenomenology (philosophy)|phenomenology]] and [[existentialism]], the philosophy of [[Jean-Paul Sartre]] gained a strong influence after World War II, and late-20th-century-France became the cradle of [[postmodern philosophy]] with [[Jean-François Lyotard]], [[Jean Baudrillard]], [[Jacques Derrida]] and [[Michel Foucault]].
+
+===Music===
+{{Main|Music of France}}
+[[File:Claude Debussy atelier Nadar.jpg|thumb|upright|left|[[Claude Debussy]]]]
+France has a long and varied musical history. It experienced a golden age in the 17th century thanks to Louis XIV, who employed many talented musicians and composers in the royal court. The most renowned composers of this period include [[Marc-Antoine Charpentier]], [[François Couperin]], [[Michel-Richard Delalande]], [[Jean-Baptiste Lully]] and [[Marin Marais]], all of them composers at the court. After the death of the "Roi Soleil", French musical creation lost dynamism, but in the next century the music of [[Jean-Philippe Rameau]] reached some prestige, and today he is still one of the most renowned French composers. Rameau became the dominant composer of [[French opera]] and the leading French composer of the harpsichord.<ref>Girdlestone p. 14: "It is customary to couple him with Couperin as one couples Haydn with Mozart or Ravel with Debussy."</ref>{{Full citation needed|date=January 2018}}
+
+French composers played an important role in the music of the 19th and early 20th centuries, which is considered to be the [[Romantic music]] era. Romantic music emphasised a surrender to nature, a fascination with the past and the supernatural, the exploration of unusual, strange and surprising sounds, and a focus on national identity. This period was also a golden age for operas. French composers from the Romantic era included: [[Hector Berlioz]] (best known for his ''[[Symphonie fantastique]]''), [[Georges Bizet]] (best known for ''[[Carmen]]'', which has become one of the most popular and frequently performed operas), [[Gabriel Fauré]] (best known for his ''[[Pavane (Fauré)|Pavane]]'', [[Requiem (Fauré)|''Requiem'']], and ''[[Fauré Nocturnes|nocturnes]]''), [[Charles Gounod]] (best known for his ''[[Ave Maria (Bach/Gounod)|Ave Maria]]'' and his opera ''[[Faust (opera)|Faust]]''), [[Jacques Offenbach]] (best known for his 100 [[operetta]]s of the 1850s–1870s and his uncompleted opera ''[[The Tales of Hoffmann]]''), [[Édouard Lalo]] (best known for his ''[[Symphonie espagnole]]'' for violin and orchestra and his [[Cello Concerto (Lalo)|Cello Concerto in D minor]]), [[Jules Massenet]] (best known for his operas, of which he wrote more than thirty, the most frequently staged are ''[[Manon]]'' (1884) and ''[[Werther]]'' (1892)) and [[Camille Saint-Saëns]] (he has many frequently-performed works, including ''[[The Carnival of the Animals]]'', ''[[Danse macabre (Saint-Saëns)|Danse macabre]]'', ''[[Samson and Delilah (opera)|Samson and Delilah]]'' (Opera), ''[[Introduction and Rondo Capriccioso]]'' and his [[Symphony No. 3 (Saint-Saëns)|Symphony No. 3]]).
+[[File:Serge Gainsbourg par Claude Truong-Ngoc 1981.jpg|thumb|alt=head shot of Serge Gainsbourg|[[Serge Gainsbourg]], one of the world's most influential popular musicians]]
+[[File:Daftpunklapremiere2010.jpg|thumb|[[Daft Punk]], pioneers of the [[French house]] movement]]
+
+Later came precursors of modern classical music. [[Érik Satie]] was a key member of the early-20th-century Parisian [[avant-garde]], best known for his ''[[Gymnopédies]]''. [[Francis Poulenc]]'s best-known works are his piano suite ''[[Trois mouvements perpétuels]]'' (1919), the ballet ''[[Les biches]]'' (1923), the ''[[Concert champêtre]]'' (1928) for [[harpsichord]] and orchestra, the opera ''[[Dialogues des Carmélites]]'' (1957) and the ''[[Gloria (Poulenc)|Gloria]]'' (1959) for [[soprano]], choir and orchestra. [[Maurice Ravel]] and [[Claude Debussy]] are the most prominent figures associated with [[Impressionist music]]. Debussy was among the most influential composers of the late 19th and early 20th centuries, and his use of non-traditional scales and [[chromaticism]] influenced many composers who followed.<ref>{{Cite web |last=Allen Schrott |title=Claude Debussy&nbsp;– Biography&nbsp;– AllMusic |url=https://www.allmusic.com/artist/claude-debussy-mn0000768781/biography |website=AllMusic}}</ref> Debussy's music is noted for its sensory content and frequent usage of [[atonality]]. The two composers invented new musical forms<ref>{{Cite web |last=Huizenga |first=Tom |date=14 October 2005 |title=Debussy's 'La Mer' Marks 100th Birthday |url=https://www.npr.org/templates/story/story.php?storyId=4957580 |access-date=22 July 2011 |publisher=NPR}}</ref><ref>{{Cite web |date=12 July 2008 |title=Debussy's Musical Game of Deception |url=https://www.npr.org/templates/story/story.php?storyId=92338564 |access-date=22 July 2011 |publisher=NPR}}</ref><ref>{{Cite web |title=Biography of Claude Debussy |url=http://www.classicfm.co.uk/music/composers/c-g/claude-debussy/ |access-date=22 July 2011 |publisher=Classicfm.co.uk}}</ref><ref>{{Cite web |title=Biography of Maurice Ravel |url=http://www.classicfm.co.uk/music/composers/n-r/maurice-ravel/ |access-date=22 July 2011 |publisher=Classicfm.co.uk}}</ref> and new sounds. Ravel's piano compositions, such as ''[[Jeux d'eau (Ravel)|Jeux d'eau]]'', ''[[Miroirs]]'', ''[[Le tombeau de Couperin]]'' and ''[[Gaspard de la nuit]]'', demand considerable virtuosity. His mastery of orchestration is evident in the ''[[Rapsodie espagnole]]'', ''[[Daphnis et Chloé]]'', his arrangement of [[Modest Mussorgsky]]'s ''[[Pictures at an Exhibition]]'' and his orchestral work ''[[Boléro]]'' (1928). More recently, in the middle of the 20th century, [[Maurice Ohana]], [[Pierre Schaeffer]] and [[Pierre Boulez]] contributed to the evolution of [[contemporary classical music]].<ref>{{Cite web |last=Schwartz |first=Lloyd |date=24 May 2010 |title=Composer-Conductor Pierre Boulez at 85 |url=https://www.npr.org/templates/story/story.php?storyId=126668117 |access-date=22 July 2011 |publisher=NPR}}</ref>
+
+French music then followed the rapid emergence of pop and rock music in the middle of the 20th century. Although English-speaking creations achieved popularity in the country, [[French popular music|French pop music]], known as ''[[chanson française]]'', has also remained very popular. Among the most important French artists of the century are [[Édith Piaf]], [[Georges Brassens]], [[Léo Ferré]], [[Charles Aznavour]] and [[Serge Gainsbourg]].<ref>{{Cite web |date=21 April 2003 |title=100人の偉大なアーティスト&nbsp;- No. 62 |trans-title=The 100 Greatest Artists&nbsp;– No. 62 |url=http://www.hmv.co.jp/news/newsDetail.asp?newsnum=304080038 |website=ローチケHMV [Roachke HMV] |language=ja}}</ref> Although there are very few rock bands in France compared to English-speaking countries,<ref>{{Cite web |date=December 2010 |title=Biography of Noir Désir |url=http://www.rfimusic.com/artist/rock/noir-desir/biography |url-status=dead |archive-url=https://web.archive.org/web/20160430102257/http://www.rfimusic.com/artist/rock/noir-desir/biography |archive-date=30 April 2016 |access-date=11 January 2018 |website=rfi Music |publisher=[[Radio France Internationale|RFI]] Musique |quote=Rock music doesn't come naturally to the French. A Latin country, with more affinity to poetry and melody, France has very rarely produced talented rock musicians. Rock music has other, more Anglo-Saxon ingredients: fury, excess, electricity.}}</ref> bands such as [[Noir Désir]], [[Mano Negra (band)|Mano Negra]], [[Niagara (band)|Niagara]], [[Les Rita Mitsouko]] and more recently [[Superbus (band)|Superbus]], [[Phoenix (band)|Phoenix]] and [[Gojira (band)|Gojira]],<ref name="frmusic">{{Cite web |date=22 June 2009 |title=French music has the whole planet singing |url=http://www.diplomatie.gouv.fr/en/france_159/culture-and-media_6819/culture_6874/music_5335/french-music-has-the-whole-planet-singing_13031.html |url-status=dead |archive-url=https://web.archive.org/web/20101222105333/http://www.diplomatie.gouv.fr/en/france_159/culture-and-media_6819/culture_6874/music_5335/french-music-has-the-whole-planet-singing_13031.html |archive-date=22 December 2010 |website=France Diplomatie}}</ref> or [[Shaka Ponk]], have reached worldwide popularity.
+
+Other French artists with international careers have been popular in several countries, most notably female singers [[Dalida]], [[Mireille Mathieu]], [[Mylène Farmer]],<ref name=frmusic/> [[Alizée]] and [[Nolwenn Leroy]],<ref>{{Cite web |title=Bureau Export&nbsp;– Les certifications export 2012 |url=http://www.irma.asso.fr/IMG/pdf/bureauexport_dossierdepresse_2013_fr.pdf |access-date=7 March 2015 |publisher=IRMA |page=26 |language=fr}}</ref> electronic music pioneers [[Jean-Michel Jarre]], [[Laurent Garnier]] and [[Bob Sinclar]], later [[Martin Solveig]] and [[David Guetta]]. In the 1990s and 2000s (decade), electronic duos [[Daft Punk]], [[Justice (French band)|Justice]] and [[Air (French band)|Air]] also reached worldwide popularity and contributed to the reputation of modern electronic music in the world.<ref name=frmusic/><ref>{{Cite news |last=Bernadette McNulty |date=17 November 2007 |title=Daft Punk: Behind the robot masks |work=The Telegraph |url=https://www.telegraph.co.uk/culture/music/3669339/Daft-Punk-Behind-the-robot-masks.html |url-status=live |url-access=subscription |archive-url=https://ghostarchive.org/archive/20220110/https://www.telegraph.co.uk/culture/music/3669339/Daft-Punk-Behind-the-robot-masks.html |archive-date=10 January 2022 |quote=Daft Punk were in many ways responsible for turning the spotlight on a new, cool underground of French music in the late 1990s, including bestselling acts such as Air, and have been a huge influence on the current generation of international star DJs.}}{{Cbignore}}</ref><ref>{{Cite news |last=Alex Webb |date=20 December 2001 |title=The return of French pop music |work=BBC News |url=http://news.bbc.co.uk/2/hi/entertainment/1721450.stm |access-date=22 July 2011}}</ref>
+
+Among current musical events and institutions in France, many are dedicated to classical music and operas. The most prestigious institutions are the state-owned [[Paris National Opera]] (with its two sites [[Palais Garnier]] and [[Opéra Bastille]]), the [[Opéra National de Lyon]], the [[Théâtre du Châtelet]] in Paris, the [[Théâtre du Capitole]] in [[Toulouse]] and the [[Grand Théâtre de Bordeaux]]. As for music festivals, there are several events organised, the most popular being [[Eurockéennes]] (a [[word play]] which sounds in French as "European"), [[Solidays]] and [[Rock en Seine]]. The [[Fête de la Musique]], imitated by many foreign cities, was first launched by the French Government in 1982.<ref>{{Cite web |title=About "Fête de la Musique" |url=http://www.fetedelamusique.culture.fr/site-2010/?page_id=550 |url-status=dead |archive-url=https://web.archive.org/web/20100515071351/http://www.fetedelamusique.culture.fr/site-2010/?page_id=550 |archive-date=15 May 2010 |publisher=French Ministry for Culture}}</ref><ref>{{Cite web |date=21 June 2007 |title=Fête de la Musique |url=http://www.diplomatie.gouv.fr/en/france_159/culture-and-media_6819/culture_6874/music_5335/fete-musique-21 |url-status=dead |archive-url=https://web.archive.org/web/20120118060250/http://www.diplomatie.gouv.fr/en/france_159/culture-and-media_6819/culture_6874/music_5335/fete-musique-21 |archive-date=18 January 2012 |website=France Diplomatie}}</ref> Major music halls and venues in France include [[Le Zénith]] sites present in many cities and other places in Paris ([[Paris Olympia]], [[Théâtre Mogador]], [[Élysée Montmartre]]).
+
+===Cinema===
+{{Main|Cinema of France}}
+[[File:Palmed'or.jpg|thumb|left|alt=Palme d'Or award in presentation case|A ''[[Palme d'Or]]'' from the [[Cannes Film Festival]], one of the "[[Film festival|Big Three]]" film festivals alongside the [[Venice Film Festival]] and [[Berlin International Film Festival]]<ref>{{Cite news |last=Dargis |first=Manohla |title=Cannes International Film Festival |work=The New York Times |url=http://topics.nytimes.com/top/reference/timestopics/subjects/c/cannes_international_film_festival/index.html}}</ref><ref>{{Cite news |last=Lim |first=Dennis |date=15 May 2012 |title=They'll Always Have Cannes |work=The New York Times |url=https://www.nytimes.com/2012/05/16/arts/16iht-lim16.html}}</ref><ref>{{Cite news |last=Woolsey |first=Matt |title=In Pictures: Chic Cannes Hideaways |work=Forbes |url=https://www.forbes.com/2008/05/14/cannes-properties-luxury-forbeslife-cx_mw_0514realestate_slide.html}}</ref>]]
+
+France has historical and strong links with [[Filmmaking|cinema]], with two Frenchmen, Auguste and Louis Lumière (known as the [[Auguste and Louis Lumière|Lumière Brothers]]) credited with creating cinema in 1895.<ref>{{Cite web |last=Larousse |first=Éditions |title=Encyclopédie Larousse en ligne – les frères Lumière |url=http://www.larousse.fr/encyclopedie/personnage/les_frères_Lumière/130661 |website=larousse.fr}}</ref> The world's first female filmmaker, [[Alice Guy-Blaché]], was also from France.<ref>{{Cite web |last1=Dargis, Manohla |author-link=Manohla Dargis |last2=Scott, A.O. |author-link2=A. O. Scott |date=20 September 2018 |title=You Know These 20 Movies. Now Meet the Women Behind Them |url=https://www.nytimes.com/interactive/2018/09/14/movies/women-film-history.html |access-date=4 December 2018 |website=The New York Times}}</ref> Several important cinematic movements, including the late 1950s and 1960s [[Nouvelle Vague]], began in the country. It is noted for having a strong film industry, due in part to protections afforded by the [[Government of France]]. France remains a leader in filmmaking, {{As of|2015|lc=y}} producing more films than any other European country.<ref>{{Cite web |last=UIS |title=UIS Statistics |url=http://data.uis.unesco.org/?ReportId=5538 |publisher=UNESCO}}</ref><ref name="NYT 1995-02-28">{{Cite news |last=Alan Riding |date=28 February 1995 |title=The Birthplace Celebrates Film's Big 1–0–0 |work=The New York Times |url=https://www.nytimes.com/1995/02/28/movies/the-birthplace-celebrates-film-s-big-1-0-0.html}}</ref> The nation also hosts the [[Cannes Festival]], one of the most important and famous film festivals in the world.<ref>{{Cite web |date=15 February 2007 |title=Cannes&nbsp;– a festival virgin's guide |url=http://www.cannesguide.com/basics/ |access-date=22 July 2011 |publisher=Cannesguide.com |archive-date=12 September 2016 |archive-url=https://web.archive.org/web/20160912231419/http://www.cannesguide.com/basics/ |url-status=dead }}</ref><ref>{{Cite web |title=Cannes Film Festival &#124; Palais des Festivals, Cannes, France |url=http://www.whatsonwhen.com/sisp/index.htm?fx=event&event_id=21731 |url-status=dead |archive-url=https://web.archive.org/web/20120610125315/http://www.whatsonwhen.com/sisp/index.htm?fx=event&event_id=21731 |archive-date=10 June 2012 |publisher=Whatsonwhen.com}}</ref>
+
+Apart from its strong and innovative film tradition, France has also been a gathering spot for artists from across Europe and the world. For this reason, French cinema is sometimes intertwined with the cinema of foreign nations. Directors from nations such as Poland ([[Roman Polanski]], [[Krzysztof Kieślowski]], [[Andrzej Żuławski]]), Argentina ([[Gaspar Noé]], [[Edgardo Cozarinsky]]), Russia ([[Alexandre Alexeieff]], [[Anatole Litvak]]), Austria ([[Michael Haneke]]) and Georgia ([[Géla Babluani]], [[Otar Iosseliani]]) are prominent in the ranks of French cinema. Conversely, French directors have had prolific and influential careers in other countries, such as [[Luc Besson]], [[Jacques Tourneur]] or [[Francis Veber]] in the [[Cinema of the United States|United States]]. Although the French film market is dominated by Hollywood, France is the only nation in the world where American films make up the smallest share of total film revenues, at 50%, compared with 77% in Germany and 69% in Japan.<ref name="erudit">{{In lang|fr}} Damien Rousselière [http://www.erudit.org/revue/hphi/2005/v15/n2/801295ar.pdf Cinéma et diversité culturelle: le cinéma indépendant face à la mondialisation des industries culturelles]. ''Horizons philosophiques'' Vol. 15 No. 2 2005</ref> French films account for 35% of the total film revenues of France, which is the highest percentage of national film revenues in the developed world outside the United States, compared to 14% in Spain and 8% in the UK.<ref name = erudit/> France is 2013 the 2nd exporter of films in the world after the United States.<ref name="unifrance.org">{{Cite web |title=Enquête sur l'image du cinéma français dans le monde |url=http://www.unifrance.org/actualites/11596/enquete-sur-l-image-du-cinema-francais-dans-le-monde |url-status=dead |archive-url=https://web.archive.org/web/20141213021911/http://www.unifrance.org/actualites/11596/enquete-sur-l-image-du-cinema-francais-dans-le-monde |archive-date=13 December 2014 |website=unifrance.org}}</ref>
+
+France historically was the cultural centre of the world,<ref name=exception/> although its dominant position has been surpassed by the [[American culture|United States]]. Today, France takes steps in protecting and promoting its culture, becoming a leading advocate of [[cultural exception]].<ref>Joëlle Farchy (1999) [http://www.scienceshumaines.com/la-fin-de-l-exception-culturelle_fr_10912.html La Fin de l'exception culturelle ?] [[CNRS]] {{ISBN|978-2-271-05633-7}}</ref> The nation succeeded in convincing all EU members to refuse to include culture and audiovisuals in the list of liberalised sectors of the WTO in 1993.<ref>[http://www.culture.gouv.fr/culture/actualites/politique/diversite/wto-en2.htm The cultural exception is not negotiable by Catherine Trautmann]&nbsp;– Ministry of Culture</ref> Moreover, this decision was confirmed in a vote by [[UNESCO]] in 2005: the principle of "cultural exception" won an overwhelming victory with 198 countries voting for it and only 2 countries, the United States and Israel, voting against it.<ref>{{Cite web |title=La Convention UNESCO pour la diversité culturelle : vers un droit international culturel contraignant ? |url=http://www.fnsac-cgt.com/administration/upload/ARTICLE%20UNESCO%20CONF%201602_06%20(3).pdf |url-status=dead |archive-url=https://web.archive.org/web/20110427020210/http://www.fnsac-cgt.com/administration/upload/ARTICLE%20UNESCO%20CONF%201602_06%20%283%29.pdf |archive-date=27 April 2011 |publisher=Fédération Nationale des Syndicats du spectacle du cinéma, de l'audiovisuel et de l'action culturelle |language=fr}}</ref>
+
+===Fashion===
+{{Main|French fashion}}
+[[File:Channel headquarters bordercropped.jpg|thumb|upright|alt=Chanel's headquarters storefront window at the Place Vendôme Paris with awning|[[Chanel]]'s headquarters on [[Place Vendôme]], Paris]]
+
+Fashion has been an important industry and cultural export of France since the 17th century, and modern "haute couture" originated in Paris in the 1860s. Today, Paris, along with London, Milan, and New York City, is considered one of the world's [[fashion capital]]s, and the city is home or headquarters to many of the premier fashion houses. The expression [[Haute couture]] is, in France, a legally protected name, guaranteeing certain quality standards.
+
+The association of France with fashion and style ({{Lang-fr|link=no|la mode}}) dates largely to the reign of [[Louis XIV of France|Louis XIV]]<ref>Kelly, 181. DeJean, chapters 2–4.</ref> when the luxury goods industries in France came increasingly under royal control and the French royal court became, arguably, the arbiter of taste and style in Europe. But France renewed its dominance of the high fashion ({{Lang-fr|link=no|couture {{Noitalic|or}} haute couture}}) industry in the years 1860–1960 through the establishment of the great [[couturier]] houses such as [[Chanel]], [[Christian Dior S.A.|Dior]], and [[Givenchy]]. The French perfume industry is the world leader in its sector and is centred on the town of [[Grasse]].<ref>{{Cite web |title=French perfume |url=http://about-france.com/tourism/french-perfume.htm |publisher=About-France.com}}</ref>
+
+In the 1960s, the elitist "Haute couture" came under criticism from France's [[May 1968 in France|youth culture]]. In 1966, the designer [[Yves Saint Laurent (designer)|Yves Saint Laurent]] broke with established Haute Couture norms by launching a [[prêt-à-porter]] ("ready to wear") line and expanding French fashion into mass manufacturing. With a greater focus on marketing and manufacturing, new trends were established by [[Sonia Rykiel]], [[Thierry Mugler]], [[Claude Montana]], [[Jean-Paul Gaultier]] and [[Christian Lacroix]] in the 1970s and 1980s. The 1990s saw a conglomeration of many French couture houses under luxury giants and multinationals such as [[LVMH]].
+
+According to 2017 data compiled by [[Deloitte]], [[Louis Vuitton Moet Hennessey]] (LVMH), a French brand, is the largest luxury company in the world by sales, selling more than twice the amount of its nearest competitor.<ref name="mode">[https://www2.deloitte.com/content/dam/Deloitte/ar/Documents/Consumer_and_Industrial_Products/Global-Powers-of-Luxury-Goods-abril-2019.pdf Global Powers of Luxury Goods 2019: Bridging the gap between the old and the new], [[Deloitte]]</ref> Moreover, France also possesses 3 of the top 10 luxury goods companies by sales ([[LVMH]], [[Kering SA]], [[L'Oréal]]), more than any other country in the world.<ref name="mode" />
+
+===Media===
+{{Main|Telecommunications in France}}
+[[File:Siège_Figaro,_14_boulevard_Haussmann,_Paris_9e.jpg|thumb|left|upright|''[[Le Figaro]]'' was founded in 1826 and it is still considered a [[newspaper of record]].<ref>{{Cite encyclopedia |title=Le Figaro |encyclopedia=Encyclopædia Britannica |url=https://www.britannica.com/EBchecked/topic/206556/Le-Figaro}}</ref>]]
+
+In 2021, regional daily newspapers (like ''[[Ouest-France]]'', ''[[Sud Ouest (newspaper)|Sud Ouest]]'', ''[[La Voix du Nord (daily)|La Voix du Nord]]'', ''[[Dauphiné Libéré]]'', ''[[Le Télégramme]]'', and ''[[Le Progrès]]'') more than doubled the sales of national newspapers (like ''[[Le Monde]]'', ''[[Le Figaro]]'', ''[[L'Équipe]]'' (sports), ''[[Le Parisien]]'', and ''[[Les Echos (France)|Les Echos]]'' (finance)). Free dailies, distributed in metropolitan centers, continue to increase their market share.<ref>{{cite web | website = acpm.fr | date = 2022 | title = L'observatoire de la presse et des médias de L'APCM 2022 | url = https://www.acpm.fr/Media/Files/Plaquette-Observatoire-2022}}</ref>
+
+The sector of weekly magazines includes more than 400 specialised weekly magazines published in the country.<ref>{{In lang|fr}} Observatoire de la Presse, [http://observatoire.ojd.com/report/visu/obs/20/do/GP_PMAG Presse Magazine&nbsp;– Synthèse] {{Webarchive|url=https://web.archive.org/web/20100929204536/http://observatoire.ojd.com/report/visu/obs/20/do/GP_PMAG|date=29 September 2010}}</ref>
+
+The most influential news magazines are the left-wing ''[[L'Obs|Le Nouvel Observateur]]'', centrist ''[[L'Express (France)|L'Express]]'' and right-wing ''[[Le Point]]'' (in 2009 more than 400,000 copies),<ref>{{In lang|fr}} Observatoire de la Presse, [http://observatoire.ojd.com/report/visu/obs/20/do/GP_NEWS Presse News] {{Webarchive|url=https://web.archive.org/web/20100929204512/http://observatoire.ojd.com/report/visu/obs/20/do/GP_NEWS|date=29 September 2010}}</ref> but the highest circulation numbers for weeklies are attained by TV magazines and by women's magazines, among them ''[[Marie Claire]]'' and ''[[ELLE]]'', which have foreign versions. Influential weeklies also include investigative and satirical papers ''[[Le Canard Enchaîné]]'' and ''[[Charlie Hebdo]]'', as well as ''[[Paris Match]]''. As in most industrialised nations, the print media have been affected by a [[Newspaper crisis|severe crisis]] with the rise of the internet. In 2008, the government launched a major initiative to help the sector reform and become financially independent,<ref>''[[The Daily Telegraph|The Telegraph]]'', [https://www.telegraph.co.uk/news/worldnews/europe/france/3125110/Nicolas-Sarkozy-French-media-faces-death-without-reform.html Nicolas Sarkozy: French media faces 'death' without reform] 2 October 2008</ref><ref>French government portal, [http://www.gouvernement.fr/gouvernement/lancement-des-etats-generaux-de-la-presse Lancement des états généraux de la presse] {{Webarchive|url=https://web.archive.org/web/20100625023755/http://www.gouvernement.fr/gouvernement/lancement-des-etats-generaux-de-la-presse|date=25 June 2010}} 2 October 2008 [Launching of General State of written media]</ref> but in 2009 it had to give 600,000 euros to help the print media cope with the [[Global financial crisis of 2008–2009|economic crisis]], in addition to existing subsidies.<ref>{{Cite news |last=Angelique Chrisafis in Paris |date=23 January 2009 |title=Sarkozy pledges €600m to newspapers |work=The Guardian |location=London |url=https://www.theguardian.com/media/2009/jan/23/sarkozy-pledges-state-aid-to-newspapers |access-date=21 June 2012}}</ref>
+[[File:Siège de l'AFP 13 place de la Bourse Paris.jpg|thumb|The Parisian headquarters of [[Agence France-Presse]], one of the world's oldest and leading [[News agency|news agencies]]<ref>[https://www.britannica.com/topic/Agence-France-Presse Agence France-Presse], ''[[Encyclopædia Britannica]]''. Retrieved 11 November 2018.</ref>]]
+
+In 1974, after years of centralised monopoly on radio and television, the governmental agency [[ORTF]] was split into several national institutions, but the three already-existing TV channels and four national radio stations<ref>Radio France, "L'entreprise", [https://web.archive.org/web/20110722004341/http://www.radiofrance.fr/lentreprise/reperes/statuts Repères]. Landmarks of Radio France company</ref><ref name="mediapol">{{In lang|fr}} Vie Publique, [http://www.vie-publique.fr/politiques-publiques/politique-audiovisuel/chronologie Chronologie de la politique de l'audiovisuel] {{Webarchive|url=https://web.archive.org/web/20110513064756/http://www.vie-publique.fr/politiques-publiques/politique-audiovisuel/chronologie/|date=13 May 2011}} 20 August 2004 [Chronology of policy for audiovisual]</ref> remained under state control. It was only in 1981 that the government allowed free broadcasting in the territory, ending the state monopoly on radio.<ref name=mediapol/> French television was partly liberalised in the next two-decade with the creation of several commercial channels, mainly thanks to cable and satellite television. In 2005 the national service [[Télévision Numérique Terrestre]] introduced digital television all over the territory, allowing the creation of other channels.
+
+The four existing national channels are owned by the state-owned consortium [[France Télévisions]], funded by advertising revenue and TV licence fees. Public broadcasting group [[Radio France]] runs five national radio stations. Among these public media are [[Radio France Internationale]], which broadcasts programmes in French all over the world, as well as Franco-German TV channel [[TV5 Monde]]. In 2006, the government created the global news channel [[France 24]].
+
+===Society===
+{{See also|Human rights in France|LGBT rights in France}}
+[[File:Germaine Tillion, Geneviève de Gaulle-Anthonioz, Pierre Brossolette et Jean Zay rentrent au Panthéon 15.jpg|thumb|left|Admittance of [[Germaine Tillion]], [[Geneviève de Gaulle-Anthonioz]], [[Pierre Brossolette]] and [[Jean Zay]] at the [[Panthéon|Pantheon]], a [[mausoleum]] for distinguished French people, in 2015]]
+According to a [[BBC]] poll in 2010, based on 29,977 responses in 28 countries, France is globally seen as a positive influence in the world's affairs: 49% have a positive view of the country's influence, whereas 19% have a negative view.<ref>{{Cite news |date=19 April 2010 |title=World warming to US under Obama, BBC poll suggests |work=BBC News |url=http://news.bbc.co.uk/2/hi/8626041.stm |access-date=21 July 2011}}</ref><ref>{{Cite news |date=18 April 2010 |title=Global Views of United States Improve While Other Countries Decline |work=BBC News |url=http://news.bbc.co.uk/2/shared/bsp/hi/pdfs/160410bbcwspoll.pdf |access-date=26 December 2011}}</ref> The [[Nation Brands Index|Nation Brand Index]] of 2008 suggested that France has the second best international reputation, only behind [[Germany]].<ref>{{Cite web |date=24 September 2008 |title=Germany on Top, U.S. Seventh in Nation Brands IndexSM |url=http://www.gfk.com/group/press_information/press_releases/003055/index.en.html |url-status=dead |archive-url=https://web.archive.org/web/20100825075750/http://www.gfk.com/group/press_information/press_releases/003055/index.en.html |archive-date=25 August 2010 |access-date=9 August 2010 |website=GfK Group}}</ref> A global opinion poll for the BBC saw France ranked the fourth most positively viewed nation in the world (behind Germany, Canada and the United Kingdom) in 2014.<ref>{{Cite news |date=4 June 2014 |title=World Service Global Poll: Negative views of Russia on the rise |publisher=BBC |url=https://www.bbc.co.uk/mediacentre/latestnews/2014/world-service-country-poll |access-date=17 February 2018}}</ref>
+
+According to a poll in 2011, the French were found to have the highest level of [[religious tolerance]] and to be the country where the highest proportion of the population defines its identity primarily in term of nationality and not religion.<ref name="pewmwtp">{{Cite web |date=21 July 2011 |title=Muslim-Western Tensions Persist |url=http://www.pewglobal.org/files/2011/07/Pew-Global-Attitudes-Muslim-Western-Relations-FINAL-FOR-PRINT-July-21-2011.pdf |url-status=dead |archive-url=https://web.archive.org/web/20111203105340/http://www.pewglobal.org/files/2011/07/Pew-Global-Attitudes-Muslim-Western-Relations-FINAL-FOR-PRINT-July-21-2011.pdf |archive-date=3 December 2011 |access-date=17 November 2011 |publisher=Pew Research Center}}</ref> {{As of|2011}}, 75% of French had a favourable view of the United States, making France one of the most pro-American countries in the world.<ref>{{Cite web |title=Opinion of the United States (2011) |url=http://www.pewglobal.org/database/indicator/1/survey/13/ |access-date=9 January 2018 |publisher=Pew Research Center}}</ref> {{As of|2017}}, the favourable view of the United States had dropped to 46%.<ref>{{Cite web |title=Opinion of the United States (2017) |url=http://www.pewglobal.org/database/indicator/1/ |access-date=9 January 2018 |publisher=Pew Research Center}}</ref> In January 2010, the magazine ''International Living'' ranked France as "best country to live in", ahead of 193 other countries, for the fifth year running.<ref name="quality">{{Cite news |last=Daniela Deane |date=11 February 2010 |title=Why France is best place to live in world |publisher=CNN |url=http://edition.cnn.com/2010/WORLD/europe/02/11/france.quality.life/index.html |access-date=1 October 2013}}</ref>
+
+The [[OECD Better Life Index]] states that "France performs well in many measures of well-being relative to most other countries in the Better Life Index".<ref>[http://www.oecdbetterlifeindex.org/countries/france France], [[OECD Better Life Index]]</ref>
+
+The French Revolution continues to permeate the country's [[collective memory]]. The tricolour [[flag of France]],<ref>{{Cite web |date=12 December 2013 |title=France |url=https://flagspot.net/flags/fr.html |access-date=9 January 2018 |website=Flags of the World}}</ref> the anthem "[[La Marseillaise]]", and the motto ''[[Liberté, égalité, fraternité]]'', defined in Title 1 of the [[Constitution of France|Constitution]] as national symbols, all emerged during the cultural ferment of the early revolution, along with [[Marianne]], a common [[national personification]]. In addition, [[Bastille Day]], the national holiday, commemorates the [[storming of the Bastille]] on 14 July 1789.<ref>{{Cite web |title=The Symbols of the French Republic |url=http://www.france.fr/en/institutions-and-values/symbols-french-republic |url-status=dead |archive-url=https://web.archive.org/web/20140107050658/http://www.france.fr/en/institutions-and-values/symbols-french-republic |archive-date=7 January 2014 |access-date=16 January 2014 |publisher=[[Cabinet of France|Government of France]]}}</ref>
+[[File:MariannedeTheodoreDoriot.JPG|thumb|right|upright|Sculpture of [[Marianne]], a common national personification of the French Republic]]
+
+A common and traditional symbol of the French people is the [[Gallic rooster]]. Its origins date back to Antiquity since the Latin word Gallus meant both "[[rooster]]" and "inhabitant of Gaul". Then this figure gradually became the most widely shared representation of the French, used by French monarchs, then by the Revolution and under the successive republican regimes as representation of the national identity, used for some stamps and coins.<ref>{{Cite web |title=Le coq |trans-title=The rooster |url=http://www.elysee.fr/president/la-presidence/les-symboles-de-la-republique-francaise/le-coq/le-coq.6052.html |url-status=dead |archive-url=https://web.archive.org/web/20100401063525/http://www.elysee.fr/president/la-presidence/les-symboles-de-la-republique-francaise/le-coq/le-coq.6052.html |archive-date=1 April 2010 |website=Élysée – Présidence de la République |language=fr}}</ref>
+
+France is one of the world leaders of [[gender equality]] in the workplace: as of 2017, it has 36.8% of its corporate board seats held by women, which makes it the leader of the [[G20]] for that metric.<ref>[https://www.globalgovernmentforum.com/women-leaders-index-gender-equality-france-case-study Women Leaders Index Gender Equality Case Study: France], Global Government Forum, 5 September 2017</ref> It was ranked in 2019 by the [[World Bank]] as one of the only six countries in the world where women have the same work rights as men.<ref>[https://www.washingtonpost.com/dc-md-va/2019/03/02/only-countries-give-women-same-work-rights-men-us-isnt-one-them/?noredirect=on Only 6 countries give women the same work rights as men. The U.S. isn't one of them.], ''[[The Washington Post]]''</ref>
+
+France is one of the most liberal countries in the world when it comes to [[LGBT rights]]: a 2020 [[Pew Research Center]] poll found that 86% of the French think that [[same-sex relationship]]s should be accepted by society, one of the highest acceptance rates in the world (comparable to that of other [[Western European]] nations).<ref>[https://www.pewresearch.org/global/2020/06/25/global-divide-on-homosexuality-persists The Global Divide on Homosexuality Persists], [[Pew Research Center]], 25 June 2020</ref> France legalised [[same-sex marriage]] and adoption in 2013.<ref>[https://www.france24.com/en/20180423-france-five-year-anniversary-law-same-sex-marriage-adoption France marks five-year anniversary of same-sex marriage], [[France 24]], 23 April 2018</ref> The government has used its diplomatic clout to support [[LGBT rights by country or territory|LGBT rights throughout the world]], notably in [[LGBT rights at the United Nations|the United Nations]].<ref>[https://www.diplomatie.gouv.fr/en/french-foreign-policy/human-rights/sexual-orientation-and-gender-identity Sexual Orientation and Gender Identity], [[Ministry of Foreign Affairs (France)|France Diplomatie]]. Retrieved 3 September 2019</ref>
+
+In 2020, France was ranked fifth in the [[Environmental Performance Index]] (behind the United Kingdom), out of 180 countries ranked by [[Yale University]] in that study.<ref>[https://epi.envirocenter.yale.edu/downloads/epi2018policymakerssummaryv01.pdf 2018 Environmental Performance Index]. Retrieved 3 September 2019</ref> Being the host country of the [[2015 United Nations Climate Change Conference|2015 Paris Climate Change Conference]], the French Government was instrumental in securing the 2015 [[Paris Agreement]], a success that has been credited to its "openness and experience in diplomacy".<ref>[https://www.theguardian.com/environment/2015/dec/13/paris-climate-deal-cop-diplomacy-developing-united-nations Paris climate change agreement: the world's greatest diplomatic success], ''[[The Guardian]]'', 14 December 2019</ref>
+
+===Cuisine===
+{{Main|French cuisine}}
+[[File:French taste of wines.JPG|thumb|left|[[French wines]] are usually made to accompany French cuisine.]]
+
+French cuisine is renowned for being one of the finest in the world.<ref>{{Cite book |last=Amy B. Trubek |url=https://books.google.com/books?id=bSuAyMNantQC |title=Haute Cuisine: How the French Invented the Culinary Profession |publisher=University of Pennsylvania Press |year=2000 |isbn=978-0-8122-1776-6}}</ref><ref>{{Cite book |last=Priscilla Parkhurst Ferguson |url=https://books.google.com/books?id=gbttJD4bW6UC |title=Accounting for Taste: The Triumph of French Cuisine |publisher=University of Chicago Press |year=2006 |isbn=978-0-226-24327-6}}</ref> Different regions have different styles. In the North, butter and cream are common ingredients, whereas [[olive oil]] is more commonly used in the South.<ref>{{Cite news |last=Véronique MARTINACHE |date=30 November 2009 |title=La France du beurre et celle de l'huile d'olive maintiennent leurs positions |trans-title=France butter and olive oil maintain their positions |agency=[[Agence France-Presse]] |url=https://www.google.com/hostednews/afp/article/ALeqM5jvmxWfyZ2tFVA3qcmC7DkX6SMi5g |url-status=dead |archive-url=https://web.archive.org/web/20110425112349/https://www.google.com/hostednews/afp/article/ALeqM5jvmxWfyZ2tFVA3qcmC7DkX6SMi5g |archive-date=25 April 2011}}</ref> Each region of France has iconic traditional specialties: [[cassoulet]] in the Southwest, [[choucroute]] in Alsace, [[quiche]] in the [[Lorraine (region)|Lorraine region]], [[beef bourguignon]] in [[Burgundy]], [[Provence|provençal]] [[tapenade]], etc. France is most famous for its [[French wine|wines]],<ref>{{Cite web |date=17 May 2008 |title=Wines of France |url=http://www.cs.utexas.edu/users/walter/wine/france.html |url-status=dead |archive-url=https://web.archive.org/web/20100211145428/http://www.cs.utexas.edu/users/walter/wine/france.html |archive-date=11 February 2010 |access-date=9 August 2010 |website=Walter's Web}}</ref> and [[List of French cheeses|cheeses]], which are often named for the territory where they are produced ([[Appellation d'origine contrôlée|AOC]]).<ref>{{Cite web |title=French Cheese |url=http://www.goodcooking.com/frcheese.htm |access-date=22 July 2011 |publisher=Goodcooking}}</ref><ref>{{Cite web |title=French Cheese |url=http://www.franceway.com/cheese/ |url-status=dead |archive-url=https://web.archive.org/web/20100827131743/http://www.franceway.com/cheese/ |archive-date=27 August 2010}}</ref> A meal typically consists of three courses, ''entrée'' (starter), ''plat principal'' (main course), and ''fromage'' (cheese) or ''dessert'', sometimes with a salad served before the cheese or dessert.
+
+French cuisine is also regarded as a key element of the [[quality of life]] and the attractiveness of France.<ref name =quality/> A French publication, the [[Michelin guide]], awards ''Michelin stars'' for excellence to a select few establishments.<ref>{{Cite news |last=Fairburn, Carolyn |date=29 February 1992 |title=Fading stars&nbsp;– Michelin Red Guide |work=[[The Times]] |url=http://docs.newsbank.com/openurl?ctx_ver=z39.88-2004&rft_id=info:sid/iw.newsbank.com:UKNB:LTIB&rft_val_format=info:ofi/fmt:kev:mtx:ctx&rft_dat=0F91F33FE0903F10&svc_dat=InfoWeb:aggregated5&req_dat=102CDD40F14C6BDA}}</ref><ref>{{Cite news |last1=Beale, Victoria |last2=Boxell, James |date=16 July 2011 |title=Falling stars |work=[[Financial Times]] |url=http://docs.newsbank.com/openurl?ctx_ver=z39.88-2004&rft_id=info:sid/iw.newsbank.com:UKNB:FINB&rft_val_format=info:ofi/fmt:kev:mtx:ctx&rft_dat=13885C564656C1C8&svc_dat=InfoWeb:aggregated5&req_dat=102CDD40F14C6BDA}}</ref> The acquisition or loss of a star can have dramatic effects on the success of a restaurant. By 2006, the Michelin Guide had awarded 620 stars to French restaurants.<ref>{{Cite web |title=Michelin 3 Star Restaurants around the world |url=http://www.3starrestaurants.com/michelin-restaurants-star-guide.asp |url-status=dead |archive-url=https://web.archive.org/web/20100724032127/http://www.3starrestaurants.com/michelin-restaurants-star-guide.asp |archive-date=24 July 2010 |access-date=30 October 2010 |website=Andy Hayler's 3 Star Restaurant Guide}}</ref>
+
+In addition to its wine tradition, France is also a major producer of beer and rum. The three main French brewing regions are Alsace (60% of national production), Nord-Pas-de-Calais and Lorraine. [[List of French rums|French rum]] is made in distilleries located on islands in the Atlantic and Indian oceans.{{citation needed|date=January 2023}}
+
+===Sports===
+{{Main|Sport in France}}
+[[File:2020 Tour de France, 2nd stage, before km zero.jpg|thumb|left|alt=The peloton in the streets of Nice during the 2nd stage of the Tour de France on 30 August 2020|Starting in 1903, the [[Tour de France]] is the oldest and most prestigious of [[Grand Tour (cycling)|Grands Tours]], and the world's most famous cycling race.<ref>{{Cite web |title=Union Cycliste Internationale |url=http://www.uciprotour.com/Modules/BUILTIN/getObject.asp?MenuId=MTcxNw&ObjTypeCode=FILE&type=FILE&id=34028&LangId=1 |url-status=dead |archive-url=https://web.archive.org/web/20121114060844/http://www.uciprotour.com/Modules/BUILTIN/getObject.asp?MenuId=MTcxNw&ObjTypeCode=FILE&type=FILE&id=34028&LangId=1 |archive-date=14 November 2012 |access-date=19 May 2012}}</ref>]]
+
+France hosts "the world's biggest annual sporting event", the [[Tour de France]].<ref>{{Cite web |date=6 July 2019 |title=Tour De France 2019: Everything you need to know |url=https://www.bbc.co.uk/newsround/18769169 |access-date=15 July 2019 |publisher=[[BBC]]}}</ref> Other popular sports played in France include: [[Association football|football]], [[judo]], [[tennis]],<ref>{{In lang|fr}} [http://www.insee.fr/fr/themes/tableau.asp?ref_id=NATTEF05401&reg_id=0 Les licences sportives en France]&nbsp;– Insee</ref> [[rugby union]]<ref>{{Cite web |title=All you need to know about sport in France |url=http://www.france-pub.com/esport.htm |access-date=11 February 2012}}</ref> and [[pétanque]]. France has hosted events such as the [[1938 FIFA World Cup|1938]] and [[1998 FIFA World Cup]]s,<ref>{{Cite web |title=History of the World Cup Final Draw |url=https://www.fifa.com/mm/document/fifafacts/mcwc/ip-201_10e_fwcdraw-history_8842.pdf |url-status=dead |archive-url=https://web.archive.org/web/20080226235749/http://www.fifa.com/mm/document/fifafacts/mcwc/ip-201_10e_fwcdraw-history_8842.pdf |archive-date=26 February 2008 |access-date=22 July 2011}}</ref> the [[2007 Rugby World Cup]],<ref>[https://web.archive.org/web/20110606170717/http://www.rugby.com.au/news/2003_april/france_wins_right_to_host_the_2007_rugby_wor_15381%2C3851.html France wins right to host the 2007 rugby world cup]. Associated Press. 11 April 2003</ref> and will host the [[2023 Rugby World Cup]]. The country also hosted the [[1960 European Nations' Cup]], [[UEFA Euro 1984]], [[UEFA Euro 2016]] and [[2019 FIFA Women's World Cup]]. The [[Stade de France]] in [[Saint-Denis, Seine-Saint-Denis|Saint-Denis]] is France's largest stadium and was the venue for the 1998 FIFA World Cup and 2007 Rugby World Cup finals. Since 1923, France is famous for its [[24 Hours of Le Mans]] [[sports car racing|sports car]] [[endurance racing (motorsport)|endurance race]].<ref>{{Cite web |title=Une course légendaire |url=http://www.lemans.org/fr/courses/24h/histoire.html |archive-url=https://web.archive.org/web/20130116131353/http://www.lemans.org/fr/courses/24h/histoire.html |archive-date=16 January 2013 |language=fr}}&nbsp;– [http://www.lemans.org Site officiel du 24 heures du Mans]</ref> Several major tennis tournaments take place in France, including the [[Paris Masters]] and the [[French Open]], one of the four [[Grand Slam (tennis)|Grand Slam]] tournaments. French [[martial arts]] include [[Savate]] and [[Fencing]].
+
+France has a close association with the Modern Olympic Games; it was a French aristocrat, Baron [[Pierre de Coubertin]], who suggested the Games' revival, at the end of the 19th century.<ref>{{Cite book |last=Hill |first=Christopher R. |url=https://books.google.com/books?id=0o-9AAAAIAAJ |title=Olympic Politics |publisher=Manchester University Press ND |year=1996 |isbn=978-0-7190-4451-9 |page=5 |access-date=5 July 2011}}</ref><ref name="Olympic">[http://www.worldatlas.com/aatlas/infopage/olympic.htm Olympic History]&nbsp;– World Atlas of Travel</ref> After [[Athens]] was awarded the first Games, in reference to the Olympics' Greek origins, Paris hosted the second Games [[1900 Summer Olympics|in 1900]].<ref>{{Cite web |date=27 August 2018 |title=Paris 1900 Summer Olympics. Official Site of the Olympic Movement |url=http://www.olympic.org/paris-1900-summer-olympics |publisher=International Olympic Committee}}</ref> Paris was the first home of the [[International Olympic Committee]], before it moved to [[Lausanne]].<ref>[http://www.lausanne-tourisme.ch/view.asp?DomID=63416&Language=E Lausanne, olympic capital]&nbsp;– Tourism in Lausanne {{Webarchive|url=https://web.archive.org/web/20071006220349/http://www.lausanne-tourisme.ch/view.asp?DomID=63416&Language=E|date=6 October 2007}}</ref> Since 1900, France has hosted the Olympics on 4 further occasions: the [[1924 Summer Olympics]], again in Paris<ref name=Olympic/> and three [[Winter Olympic Games|Winter Games]] ([[1924 Winter Olympics|1924]] in [[Chamonix]], [[1968 Winter Olympics|1968]] in [[Grenoble]] and [[1992 Winter Olympics|1992]] in [[Albertville]]).<ref name="Olympic" /> Similar to the Olympics, France introduced Olympics for the deaf people (Deaflympics) in [[1924 Summer Deaflympics|1924]] with the idea of a French deaf car mechanic, [[Eugène Rubens-Alcais]] who paved the way to organise the inaugural edition of the [[Summer Deaflympics]] in Paris.<ref>{{Cite news |date=29 December 2004 |title=Deaflympics lowdown |url=http://news.bbc.co.uk/sport2/hi/other_sports/disability_sport/4113957.stm |access-date=8 July 2018}}</ref>
+[[File:Zinedine Zidane 2015 (cropped).jpg|thumb|upright|[[Zinedine Zidane|Zidane]] was named the best European footballer of the past 50 years in a 2004 [[UEFA]] poll.<ref>[https://www.theguardian.com/football/2004/apr/23/newsstory.sport5 "Zidane voted Europe's best ever"] ''The Guardian''. Retrieved 17 November 2013</ref>]]
+
+Both the [[France national football team|national football team]] and the [[France national rugby union team|national rugby union team]] are nicknamed "''Les Bleus''" in reference to the team's shirt colour as well as the national [[Flag of France|French tricolour flag]]. Football is the most popular sport in France, with over 1,800,000 registered players and over 18,000 registered clubs.<ref>{{Cite web |title=Fédération Française de Football |url=https://www.fff.fr/ |website=fff.fr}}</ref> The football team is among the most successful in the world, with two [[FIFA World Cup]] victories in 1998 and 2018,<ref>{{Cite news |last=McNulty |first=Phil |date=15 July 2018 |title=World Cup 2018: France beat Croatia 4–2 in World Cup final |work=BBC Sport |url=https://www.bbc.com/sport/football/44754965 |access-date=15 July 2018}}</ref> two FIFA World Cup second places in 2006 and 2022,<ref>{{Cite news |last=Stevenson |first=Jonathan |date=9 July 2006 |title=Zidane off as Italy win World Cup |work=BBC News |url=http://news.bbc.co.uk/sport2/hi/football/world_cup_2006/4991652.stm |access-date=21 July 2011}}</ref> and two [[UEFA European Championship]]s in [[UEFA Euro 1984|1984]]<ref>[http://www.uefa.com/uefaeuro/history/season=1984/index.html 1984: Platini shines for flamboyant France]. UEFA {{Webarchive|url=https://web.archive.org/web/20120507185106/http://www.uefa.com/uefaeuro/history/season%3D1984/index.html|date= 7 May 2012}}</ref> and [[UEFA Euro 2000|2000]].<ref>[http://www.uefa.com/uefaeuro/history/season=2000/index.html 2000: Trezeguet strikes gold for France]. UEFA {{Webarchive|url=https://web.archive.org/web/20111028011653/http://www.uefa.com/uefaeuro/history/season%3D2000/index.html|date=28 October 2011}}</ref>
+
+The top national football club competition is [[Ligue 1]]. France has produced some of the greatest players in the world, including three-time FIFA World Player of the Year [[Zinedine Zidane]], three-time [[Ballon d'Or]] recipient [[Michel Platini]], record holder for most goals scored at a World Cup [[Just Fontaine]], first football player to receive the [[Legion of Honour|Légion d'honneur]] [[Raymond Kopa]], and the record goalscorer for the French national team [[Thierry Henry]].<ref>[http://news.bbc.co.uk/sport1/hi/football/8826244.stm "Thierry Henry calls end to France career"]. BBC Sport. Retrieved 29 October 2014.</ref>
+
+The French Open, also called Roland-Garros, is a major [[tennis]] tournament held over two weeks between late May and early June at the [[Stade Roland Garros|Stade Roland-Garros]] in Paris. It is the premier clay court tennis championship event in the world and the second of four annual [[Grand Slam (tennis)|Grand Slam]] tournaments.<ref>{{Cite web |last=Clarey |first=Christopher |date=30 June 2001 |title=Change Seems Essential to Escape Extinction: Wimbledon: World's Most Loved Dinosaur |url=http://www.iht.com/articles/2001/06/30/a20_16.php |archive-url=https://web.archive.org/web/20071016123550/http://iht.com/articles/2001/06/30/a20_16.php <!-- Bot retrieved archive --> |archive-date=16 October 2007 |access-date=26 February 2018 |website=[[International Herald Tribune]]}}</ref>
+
+[[Rugby union]] is popular, particularly in Paris and the southwest of France.<ref>[https://web.archive.org/web/20090615002946/http://www.123voyage.com/realsw/tosee/rugby.htm Rugby]. 123 Voyage</ref> The national rugby union team has competed at every [[Rugby World Cup]]; it takes part in the annual [[Six Nations Championship]].
+
+==See also==
+{{Portal|Europe|France}}
+* [[Outline of France]]{{-}}
+
+==Footnotes==
+{{Notelist-ur}}
+
+==References==
+{{Reflist|refs=
+<ref name=France>{{Cite web|url=https://www.cia.gov/the-world-factbook/countries/france/|website=The World Factbook|title=Europe :: France|publisher=CIA|date=3 January 2018}}</ref>
+}}
+
+==Further reading==
+* "France." in ''Europe,'' edited by Ferdie McDonald and Claire Marsden, Dorling Kindersley (Gale, 2010), pp.&nbsp;144–217. [https://link.gale.com/apps/doc/CX1644200020/GPS?u=wikipedia&sid=GPS&xid=3062efe1 Online].
+
+===Topics===
+* Carls, Alice-Catherine. "France." in ''World Press Encyclopedia,'' edited by Amanda C. Quick, (2nd ed., vol. 1, Gale, 2003), pp.&nbsp;314–337. [https://link.gale.com/apps/doc/CX3409900079/GPS?u=wikipedia&sid=GPS&xid=59dd8c94 Online coverage of press and media].
+* Chabal, Emile, ed. ''France since the 1970s: History, Politics and Memory in an Age of Uncertainty'' (2015) [https://www.amazon.com/dp/1472509773 Excerpt].
+* Gildea, Robert. ''France Since 1945'' (2nd ed. Oxford University Press, 2002).
+* Goodliffe, Gabriel, and Riccardo Brizzi, eds. ''France After 2012'' (Bergham, 2015).
+* Haine, W. S. ''Culture and Customs of France'' (Greenwood Press, 2006).
+* Kelly, Michael, ed. ''French Culture and Society: The Essentials'' (Oxford University Press, 2001).
+* Raymond, Gino. ''Historical Dictionary of France'' (2nd ed. Scarecrow, 2008).
+*Jones, Colin. Cambridge Illustrated History of France (Cambridge University Press, 1999).
+*[https://merhav.nli.org.il/primo-explore/search?query=any,contains,france%20%20maps&tab=default_tab&search_scope=Local&sortby=lso01&vid=NLI&mfacet=tlevel,include,online_resources,1&mfacet=rtype,include,Maps,1&mfacet=topic,include,France,1&lang=en_US&offset=0&came_from=sort Ancient maps] of France from the Eran Laor Cartographic Collection. [[National Library of Israel]].
+
+==External links==
+{{Wikibooks|Wikijunior:Countries A-Z|France}}
+{{Sister project links|voy=France|France}}
+* [http://www.oecd.org/france France] at ''Organisation for Economic Co-operation and Development''
+* [https://web.archive.org/web/20090207004853/http://ucblibraries.colorado.edu/govpubs/for/france.htm France] at ''UCB Libraries GovPubs''
+* {{Curlie|Regional/Europe/France}}
+* [http://europa.eu/about-eu/countries/member-countries/france/index_en.htm France] at the EU
+* {{Wikiatlas|France}}
+* {{Osmrelation-inline|1403916}}
+* [http://www.ifs.du.edu/ifs/frm_CountryProfile.aspx?Country=FR Key Development Forecasts for France] from [[International Futures]]
+
+===Economy===
+* {{INSEE|National Institute of Statistics and Economic Studies}}
+* [http://stats.oecd.org/Index.aspx?QueryId=14594 OECD France statistics]
+
+===Government===
+* [http://www.france.fr/en France.fr] – official French tourism site {{In lang|en}}
+* [http://www.gouvernement.fr Gouvernement.fr] – official site of the government {{In lang|fr}}
+* [https://web.archive.org/web/20120103101721/http://service-public.fr/langue/english Official site of the French public service]&nbsp;– links to various administrations and institutions
+* [http://www.assemblee-nationale.fr/english/index.asp Official site of the National Assembly]
+
+===Culture===
+* [http://www.french.uiuc.edu/cfc ''Contemporary French Civilization''] – journal, University of Illinois
+* [http://us.franceguide.com FranceGuide]&nbsp;– official site of the French Government Tourist Office
+
+{{France topics}}
+
+{{Navboxes
+| title=Related articles
+| list={{Coord|47|N|2|E|type:country_region:FR|display=inline}}
+{{Geographic location
+| Centre = {{Flagu|France}}
+| North = {{Flagu|United Kingdom}}
+| Northeast = {{Flagu| Belgium}}{{Flagu|Luxembourg}}
+| East = {{Flagu|Germany}}{{Flagu| Switzerland}}{{Flagu|Italy}}
+| Southeast = [[Mediterranean Sea]]
+| South = {{Flagu|Algeria}}
+| Southwest = {{Flagu|Spain}}{{Flagu|Andorra}}
+| West = Atlantic Ocean
+| Northwest = {{Flagu|United Kingdom}}
+}}
+{{Sovereign states of Europe}}
+{{Countries of North America}}
+{{Countries of South America}}
+{{Countries of Africa}}
+{{Countries and territories of Oceania}}
+{{Countries and territories bordering the Mediterranean Sea}}
+{{EU members}}
+{{European Economic Area (EEA)}}
+{{G8 nations}}
+{{G20}}
+{{UN Security Council}}
+{{Council of Europe members}}
+{{Member states of the OECD}}
+{{La Francophonie}}
+}}
+
+{{Authority control}}
+
+[[Category:France| ]]
+[[Category:Countries in Europe]]
+[[Category:French-speaking countries and territories]]
+[[Category:G20 nations]]
+[[Category:Member states of NATO]]
+[[Category:Member states of the European Union]]
+[[Category:Member states of the Organisation internationale de la Francophonie]]
+[[Category:Member states of the Union for the Mediterranean]]
+[[Category:Member states of the United Nations]]
+[[Category:Republics]]
+[[Category:Member states of the Council of Europe]]
+[[Category:Southwestern European countries]]
+[[Category:Western European countries]]
+[[Category:States and territories established in 1792]]
+[[Category:1792 establishments in France]]
+[[Category:1792 establishments in Europe]]
+[[Category:Transcontinental countries]]
+[[Category:OECD members]]
diff --git a/tests/examplefiles/wikitext/article_france.wikitext.output b/tests/examplefiles/wikitext/article_france.wikitext.output
new file mode 100644
index 00000000..08f6c299
--- /dev/null
+++ b/tests/examplefiles/wikitext/article_france.wikitext.output
@@ -0,0 +1,108576 @@
+'{{' Punctuation
+'Short' Name.Tag
+' ' Name.Tag
+'description' Name.Tag
+'|' Punctuation
+'Country' Text
+' ' Text
+'located' Text
+' ' Text
+'primarily' Text
+' ' Text
+'in' Text
+' ' Text
+'Western' Text
+' ' Text
+'Europe' Text
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'Other' Name.Tag
+' ' Name.Tag
+'uses' Name.Tag
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'Redirect' Name.Tag
+'|' Punctuation
+'La' Text
+' ' Text
+'France' Text
+'|' Punctuation
+'other' Text
+' ' Text
+'uses' Text
+'|' Punctuation
+'Lafrance' Text
+' ' Text
+'(' Text
+'disambiguation' Text
+')' Text
+'{{' Punctuation
+'!' Name.Function
+'}}' Punctuation
+'Lafrance' Text
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'Redirect' Name.Tag
+'|' Punctuation
+'French' Text
+' ' Text
+'Republic' Text
+'|' Punctuation
+'previous' Text
+' ' Text
+'republics' Text
+'|' Punctuation
+'French' Text
+' ' Text
+'Republics' Text
+' ' Text
+'(' Text
+'disambiguation' Text
+')' Text
+'{{' Punctuation
+'!' Name.Function
+'}}' Punctuation
+'French' Text
+' ' Text
+'Republics' Text
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'Pp' Name.Tag
+'-' Name.Tag
+'vandalism' Name.Tag
+'|' Punctuation
+'small' Name.Label
+'=' Operator
+'yes' Text
+'}}' Punctuation
+'\n' Text
+
+'\n' Text
+
+'{{' Punctuation
+'Coord' Name.Tag
+'|' Punctuation
+'47' Text
+'|' Punctuation
+'N' Text
+'|' Punctuation
+'2' Text
+'|' Punctuation
+'E' Text
+'|' Punctuation
+'type' Text
+':' Text
+'country_region' Text
+':' Text
+'FR' Text
+'|' Punctuation
+'display' Name.Label
+'=' Operator
+'title' Text
+'}}' Punctuation
+'\n' Text
+
+'\n' Text
+
+'{{' Punctuation
+'Use' Name.Tag
+' ' Name.Tag
+'British' Name.Tag
+' ' Name.Tag
+'English' Name.Tag
+'|' Punctuation
+'date' Name.Label
+'=' Operator
+'July' Text
+' ' Text
+'2022' Text
+'}}' Punctuation
+'\n' Text
+
+'\n' Text
+
+'{{' Punctuation
+'Use' Name.Tag
+' ' Name.Tag
+'dmy' Name.Tag
+' ' Name.Tag
+'dates' Name.Tag
+'|' Punctuation
+'date' Name.Label
+'=' Operator
+'March' Text
+' ' Text
+'2022' Text
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'Infobox' Name.Tag
+' ' Name.Tag
+'country' Name.Tag
+'\n' Text
+
+'|' Punctuation
+' conventional_long_name ' Name.Label
+'=' Operator
+' ' Text
+'French' Text
+' ' Text
+'Republic' Text
+'\n' Text
+
+'|' Punctuation
+' common_name ' Name.Label
+'=' Operator
+' ' Text
+'France' Text
+'\n' Text
+
+'|' Punctuation
+' native_name ' Name.Label
+'=' Operator
+' ' Text
+'{{' Punctuation
+'Native' Name.Tag
+' ' Name.Tag
+'name' Name.Tag
+'|' Punctuation
+'fr' Text
+'|' Punctuation
+'République' Text
+' ' Text
+'française' Text
+'}}' Punctuation
+'\n' Text
+
+'|' Punctuation
+' image_flag ' Name.Label
+'=' Operator
+' ' Text
+'Flag' Text
+' ' Text
+'of' Text
+' ' Text
+'France' Text
+'.' Text
+'svg' Text
+'\n' Text
+
+'|' Punctuation
+' image_coat ' Name.Label
+'=' Operator
+' ' Text
+'Armoiries' Text
+' ' Text
+'république' Text
+' ' Text
+'française' Text
+'.' Text
+'svg' Text
+'\n' Text
+
+'|' Punctuation
+' symbol_width ' Name.Label
+'=' Operator
+' ' Text
+'75px' Text
+'\n' Text
+
+'|' Punctuation
+' symbol_type ' Name.Label
+'=' Operator
+' ' Text
+'[[' Punctuation
+'Diplomatic emblem of France' Name.Tag
+'|' Punctuation
+'Emblem' Text
+']]' Punctuation
+'{{' Punctuation
+'Efn' Name.Tag
+'-' Name.Tag
+'ur' Name.Tag
+'|' Punctuation
+'The' Text
+' ' Text
+'current' Text
+' ' Text
+'[[' Punctuation
+'Constitution of France' Name.Tag
+']]' Punctuation
+' ' Text
+'does' Text
+' ' Text
+'not' Text
+' ' Text
+'specify' Text
+' ' Text
+'a' Text
+' ' Text
+'national' Text
+' ' Text
+'emblem' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'constitution' Name.Tag
+'|' Punctuation
+'article' Name.Label
+'=' Operator
+'II' Text
+'|' Punctuation
+'polity' Name.Label
+'=' Operator
+'France' Text
+'|' Punctuation
+'date' Name.Label
+'=' Operator
+'1958' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'This' Text
+' ' Text
+'[[' Punctuation
+'Diplomatic emblem of France' Name.Tag
+'|' Punctuation
+'emblem' Text
+']]' Punctuation
+' ' Text
+'is' Text
+' ' Text
+'used' Text
+' ' Text
+'by' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'President of France' Name.Tag
+'|' Punctuation
+'President' Text
+']]' Punctuation
+',' Text
+' ' Text
+'[[' Punctuation
+'Ministry for Europe and Foreign Affairs' Name.Tag
+']]' Punctuation
+',' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'date' Name.Label
+'=' Operator
+'20' Text
+' ' Text
+'November' Text
+' ' Text
+'2012' Text
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'The' Text
+' ' Text
+'lictor' Text
+"'" Text
+'s' Text
+' ' Text
+'fasces' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'elysee' Text
+'.' Text
+'fr' Text
+'/' Text
+'en' Text
+'/' Text
+'french' Text
+'-' Text
+'presidency' Text
+'/' Text
+'the' Text
+'-' Text
+'lictor' Text
+'-' Text
+'s' Text
+'-' Text
+'fasces' Text
+' ' Text
+'|' Punctuation
+'website' Name.Label
+'=' Operator
+'elysee' Text
+'.' Text
+'fr' Text
+' ' Text
+'|' Punctuation
+'language' Name.Label
+'=' Operator
+'en' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'and' Text
+' ' Text
+'is' Text
+' ' Text
+'on' Text
+' ' Text
+'the' Text
+' ' Text
+'cover' Text
+' ' Text
+'of' Text
+' ' Text
+'[[' Punctuation
+'French passport' Name.Tag
+']]' Punctuation
+'s' Text
+'.' Text
+' ' Text
+'For' Text
+' ' Text
+'other' Text
+' ' Text
+'symbols' Text
+',' Text
+' ' Text
+'see' Text
+' ' Text
+'[[' Punctuation
+'National symbols of France' Name.Tag
+']]' Punctuation
+'.' Text
+'}}' Punctuation
+'\n' Text
+
+'|' Punctuation
+' other_symbol ' Name.Label
+'=' Operator
+' ' Text
+'<' Punctuation
+'div' Name.Tag
+' ' Text.Whitespace
+'style' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+'padding' Literal.String.Double
+':' Literal.String.Double
+'0' Literal.String.Double
+'.' Literal.String.Double
+'3em' Literal.String.Double
+'"' Literal.String.Double
+'>' Punctuation
+'[[' Punctuation
+'File' Name.Namespace
+':' Punctuation
+'Great Seal of France.svg' Name.Tag
+'|' Punctuation
+'100px' Text
+'|' Punctuation
+'Obverse' Text
+']]' Punctuation
+' ' Text
+'[[' Punctuation
+'File' Name.Namespace
+':' Punctuation
+'Great Seal of France (reverse).svg' Name.Tag
+'|' Punctuation
+'100px' Text
+'|' Punctuation
+'Reverse' Text
+']]' Punctuation
+'</' Punctuation
+'div' Name.Tag
+'>' Punctuation
+'\n' Text
+
+'|' Punctuation
+' other_symbol_type ' Name.Label
+'=' Operator
+' ' Text
+'[[' Punctuation
+'Great Seal of France' Name.Tag
+'|' Punctuation
+'Great' Text
+' ' Text
+'Seal' Text
+']]' Punctuation
+'\n' Text
+
+'|' Punctuation
+' national_motto ' Name.Label
+'=' Operator
+' ' Text
+'"' Text
+'{{' Punctuation
+'Lang' Name.Tag
+'|' Punctuation
+'fr' Text
+'|' Punctuation
+'[[' Punctuation
+'Liberté, égalité, fraternité' Name.Tag
+']]' Punctuation
+'|' Punctuation
+'italics' Name.Label
+'=' Operator
+'no' Text
+'}}' Punctuation
+'"' Text
+'\n' Text
+
+'|' Punctuation
+' englishmotto ' Name.Label
+'=' Operator
+' ' Text
+'(' Text
+'"' Text
+'Liberty' Text
+',' Text
+' ' Text
+'Equality' Text
+',' Text
+' ' Text
+'Fraternity' Text
+'"' Text
+')' Text
+'\n' Text
+
+'|' Punctuation
+' national_anthem ' Name.Label
+'=' Operator
+' ' Text
+'"' Text
+'[[' Punctuation
+'La Marseillaise' Name.Tag
+']]' Punctuation
+'"' Text
+'<' Punctuation
+'br' Name.Tag
+'/>' Punctuation
+'<' Punctuation
+'div' Name.Tag
+' ' Text.Whitespace
+'style' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+'display' Literal.String.Double
+':' Literal.String.Double
+'inline' Literal.String.Double
+'-' Literal.String.Double
+'block' Literal.String.Double
+';' Literal.String.Double
+'margin' Literal.String.Double
+'-' Literal.String.Double
+'top' Literal.String.Double
+':' Literal.String.Double
+'0' Literal.String.Double
+'.' Literal.String.Double
+'4em' Literal.String.Double
+'"' Literal.String.Double
+'>' Punctuation
+'[[' Punctuation
+'File' Name.Namespace
+':' Punctuation
+'La Marseillaise.ogg' Name.Tag
+'|' Punctuation
+'alt' Name.Attribute
+'=' Operator
+'sound' Text
+' ' Text
+'clip' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'Marseillaise' Text
+' ' Text
+'French' Text
+' ' Text
+'national' Text
+' ' Text
+'anthem' Text
+']]' Punctuation
+'</' Punctuation
+'div' Name.Tag
+'>' Punctuation
+'\n' Text
+
+'|' Punctuation
+' image_map ' Name.Label
+'=' Operator
+' ' Text
+'{{' Punctuation
+'Switcher' Name.Tag
+'|' Punctuation
+'[[' Punctuation
+'File' Name.Namespace
+':' Punctuation
+'EU-France (orthographic projection).svg' Name.Tag
+'|' Punctuation
+'upright' Name.Attribute
+'=' Operator
+'1' Text
+'.' Text
+'15' Text
+'|' Punctuation
+'frameless' Text
+']]' Punctuation
+'|' Punctuation
+'France' Text
+' ' Text
+'on' Text
+' ' Text
+'the' Text
+' ' Text
+'globe' Text
+' ' Text
+'centred' Text
+' ' Text
+'on' Text
+' ' Text
+'Europe' Text
+'|' Punctuation
+'[[' Punctuation
+'File' Name.Namespace
+':' Punctuation
+'EU-France.svg' Name.Tag
+'|' Punctuation
+'upright' Name.Attribute
+'=' Operator
+'1' Text
+'.' Text
+'15' Text
+'|' Punctuation
+'frameless' Text
+']]' Punctuation
+'|' Punctuation
+'[[' Punctuation
+'Metropolitan France' Name.Tag
+']]' Punctuation
+' ' Text
+'(' Text
+'European' Text
+' ' Text
+'part' Text
+' ' Text
+'of' Text
+' ' Text
+'France' Text
+')' Text
+' ' Text
+'in' Text
+' ' Text
+'Europe' Text
+'|' Punctuation
+'[[' Punctuation
+'File' Name.Namespace
+':' Punctuation
+'France in the World (+Antarctica claims).svg' Name.Tag
+'|' Punctuation
+'upright' Name.Attribute
+'=' Operator
+'1' Text
+'.' Text
+'15' Text
+'|' Punctuation
+'frameless' Text
+']]' Punctuation
+'|' Punctuation
+'France' Text
+' ' Text
+'and' Text
+' ' Text
+'its' Text
+' ' Text
+'overseas' Text
+' ' Text
+'territories' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'world' Text
+'|' Punctuation
+'default' Name.Label
+'=' Operator
+'1' Text
+'}}' Punctuation
+'\n' Text
+
+'|' Punctuation
+' map_caption ' Name.Label
+'=' Operator
+' ' Text
+'{{' Punctuation
+'Map' Name.Tag
+' ' Name.Tag
+'caption' Name.Tag
+'|' Punctuation
+'location_color' Name.Label
+'=' Operator
+'red' Text
+' ' Text
+'or' Text
+' ' Text
+'dark' Text
+' ' Text
+'green' Text
+'|' Punctuation
+'country' Name.Label
+'=' Operator
+'France' Text
+'|' Punctuation
+'region' Name.Label
+'=' Operator
+'Europe' Text
+'|' Punctuation
+'region_color' Name.Label
+'=' Operator
+'dark' Text
+' ' Text
+'grey' Text
+'|' Punctuation
+'subregion' Name.Label
+'=' Operator
+'the' Text
+' ' Text
+'European' Text
+' ' Text
+'Union' Text
+'|' Punctuation
+'subregion_color' Name.Label
+'=' Operator
+'green' Text
+'|' Punctuation
+'unbulleted' Text
+' ' Text
+'list' Text
+'|' Punctuation
+'Location' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'territory' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'(' Text
+'red' Text
+')' Text
+'|' Punctuation
+'[[' Punctuation
+'Adélie Land' Name.Tag
+']]' Punctuation
+' ' Text
+'(' Text
+'Antarctic' Text
+' ' Text
+'claim' Text
+';' Text
+' ' Text
+'hatched' Text
+')' Text
+'}}' Punctuation
+'\n' Text
+
+'|' Punctuation
+' capital ' Name.Label
+'=' Operator
+' ' Text
+'[[' Punctuation
+'Paris' Name.Tag
+']]' Punctuation
+'\n' Text
+
+'|' Punctuation
+' coordinates ' Name.Label
+'=' Operator
+' ' Text
+'{{' Punctuation
+'Coord' Name.Tag
+'|' Punctuation
+'48' Text
+'|' Punctuation
+'51' Text
+'|' Punctuation
+'N' Text
+'|' Punctuation
+'2' Text
+'|' Punctuation
+'21' Text
+'|' Punctuation
+'E' Text
+'|' Punctuation
+'type' Text
+':' Text
+'city' Text
+'}}' Punctuation
+'\n' Text
+
+'|' Punctuation
+' largest_city ' Name.Label
+'=' Operator
+' ' Text
+'capital' Text
+'\n' Text
+
+'|' Punctuation
+' languages_type ' Name.Label
+'=' Operator
+' ' Text
+'Official' Text
+' ' Text
+'language' Text
+'<' Punctuation
+'br' Name.Tag
+'/>' Punctuation
+'{{' Punctuation
+'Nobold' Name.Tag
+'|' Punctuation
+'and' Text
+' ' Text
+'national' Text
+' ' Text
+'language' Text
+'}}' Punctuation
+'\n' Text
+
+'|' Punctuation
+' languages ' Name.Label
+'=' Operator
+' ' Text
+'[[' Punctuation
+'French language' Name.Tag
+'|' Punctuation
+'French' Text
+']]' Punctuation
+'{{' Punctuation
+'Efn' Name.Tag
+'-' Name.Tag
+'ur' Name.Tag
+'|' Punctuation
+'name' Name.Label
+'=' Operator
+'one' Text
+'|' Punctuation
+'For' Text
+' ' Text
+'information' Text
+' ' Text
+'about' Text
+' ' Text
+'regional' Text
+' ' Text
+'languages' Text
+' ' Text
+'see' Text
+' ' Text
+'[[' Punctuation
+'Languages of France' Name.Tag
+']]' Punctuation
+'.' Text
+'}}' Punctuation
+'{{' Punctuation
+'Infobox' Name.Tag
+'|' Punctuation
+'child' Name.Label
+'=' Operator
+'yes' Text
+'\n' Text
+
+'|' Punctuation
+' regional_languages ' Name.Label
+'=' Operator
+' ' Text
+'See' Text
+' ' Text
+'[[' Punctuation
+'Languages of France' Name.Tag
+']]' Punctuation
+'\n' Text
+
+'|' Punctuation
+' label1 ' Name.Label
+'=' Operator
+' ' Text
+'Nationality' Text
+' ' Text
+'{{' Punctuation
+'Nobold' Name.Tag
+'|' Punctuation
+'(' Text
+'2021' Text
+')' Text
+'}}' Punctuation
+'\n' Text
+
+'|' Punctuation
+' data1 ' Name.Label
+'=' Operator
+' ' Text
+'{{' Punctuation
+'Unbulleted' Name.Tag
+' ' Name.Tag
+'list' Name.Tag
+'|' Punctuation
+'92' Text
+'.' Text
+'3' Text
+'%' Text
+' ' Text
+'[[' Punctuation
+'French people' Name.Tag
+'|' Punctuation
+'French' Text
+']]' Punctuation
+'|' Punctuation
+'7' Text
+'.' Text
+'7' Text
+'%' Text
+' ' Text
+'Others' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'date' Name.Label
+'=' Operator
+'August' Text
+' ' Text
+'5' Text
+',' Text
+' ' Text
+'2022' Text
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Share' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'population' Text
+' ' Text
+'in' Text
+' ' Text
+'France' Text
+' ' Text
+'2021' Text
+',' Text
+' ' Text
+'by' Text
+' ' Text
+'nationality' Text
+' ' Text
+'status' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'statista' Text
+'.' Text
+'com' Text
+'/' Text
+'statistics' Text
+'/' Text
+'466028' Text
+'/' Text
+'distribution' Text
+'-' Text
+'population' Text
+'-' Text
+'nationality' Text
+'-' Text
+'france' Text
+'/' Text
+' ' Text
+'|' Punctuation
+'website' Name.Label
+'=' Operator
+'statista' Text
+'.' Text
+'com' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'}}' Punctuation
+'}}' Punctuation
+'\n' Text
+
+'|' Punctuation
+' religion_ref ' Name.Label
+'=' Operator
+' ' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'last' Name.Label
+'=' Operator
+'El' Text
+' ' Text
+'Karoui' Text
+' ' Text
+'|' Punctuation
+'first' Name.Label
+'=' Operator
+'Hakim' Text
+' ' Text
+'|' Punctuation
+'date' Name.Label
+'=' Operator
+'2016' Text
+'-' Text
+'09' Text
+'-' Text
+'19' Text
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'A' Text
+' ' Text
+'French' Text
+' ' Text
+'Islam' Text
+' ' Text
+'is' Text
+' ' Text
+'possible' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'institutmontaigne' Text
+'.' Text
+'org' Text
+'/' Text
+'ressources' Text
+'/' Text
+'publications' Text
+'-' Text
+'pdfs' Text
+'/' Text
+'a' Text
+'-' Text
+'french' Text
+'-' Text
+'islam' Text
+'-' Text
+'is' Text
+'-' Text
+'possible' Text
+'-' Text
+'report' Text
+'.' Text
+'pdf' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'5' Text
+' ' Text
+'September' Text
+' ' Text
+'2022' Text
+' ' Text
+'|' Punctuation
+'website' Name.Label
+'=' Operator
+'Institut' Text
+' ' Text
+'Montaigne' Text
+' ' Text
+'|' Punctuation
+'language' Name.Label
+'=' Operator
+'en' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'\n' Text
+
+'|' Punctuation
+' religion_year ' Name.Label
+'=' Operator
+' ' Text
+'2016' Text
+'\n' Text
+
+'|' Punctuation
+' religion ' Name.Label
+'=' Operator
+' ' Text
+'{{' Punctuation
+'Ublist' Name.Tag
+'|' Punctuation
+'item_style' Name.Label
+'=' Operator
+'white' Text
+'-' Text
+'space' Text
+':' Text
+'nowrap' Text
+';' Text
+'\n' Text
+
+'|' Punctuation
+'51' Text
+'.' Text
+'1' Text
+'%' Text
+' ' Text
+'[[' Punctuation
+'Christianity in France' Name.Tag
+'|' Punctuation
+'Christianity' Text
+']]' Punctuation
+'\n' Text
+
+'|' Punctuation
+'39' Text
+'.' Text
+'6' Text
+'%' Text
+' ' Text
+'[[' Punctuation
+'Irreligion in France' Name.Tag
+'|' Punctuation
+'No' Text
+' ' Text
+'religion' Text
+']]' Punctuation
+'\n' Text
+
+'|' Punctuation
+'5' Text
+'.' Text
+'6' Text
+'%' Text
+' ' Text
+'[[' Punctuation
+'Islam in France' Name.Tag
+'|' Punctuation
+'Islam' Text
+']]' Punctuation
+'\n' Text
+
+'|' Punctuation
+'0' Text
+'.' Text
+'8' Text
+'%' Text
+' ' Text
+'[[' Punctuation
+'History of the Jews in France' Name.Tag
+'|' Punctuation
+'Judaism' Text
+']]' Punctuation
+'\n' Text
+
+'|' Punctuation
+'2' Text
+'.' Text
+'5' Text
+'%' Text
+' ' Text
+'Others' Text
+'\n' Text
+
+'}}' Punctuation
+'\n' Text
+
+'|' Punctuation
+' demonym ' Name.Label
+'=' Operator
+' ' Text
+'French' Text
+'\n' Text
+
+'|' Punctuation
+' government_type ' Name.Label
+'=' Operator
+' ' Text
+'[[' Punctuation
+'Unitary state' Name.Tag
+'|' Punctuation
+'Unitary' Text
+']]' Punctuation
+' ' Text
+'[[' Punctuation
+'Semi-presidential system' Name.Tag
+'|' Punctuation
+'semi' Text
+'-' Text
+'presidential' Text
+']]' Punctuation
+' ' Text
+'[[' Punctuation
+'republic' Name.Tag
+']]' Punctuation
+'\n' Text
+
+'|' Punctuation
+' leader_title1 ' Name.Label
+'=' Operator
+' ' Text
+'[[' Punctuation
+'President of France' Name.Tag
+'|' Punctuation
+'President' Text
+']]' Punctuation
+'\n' Text
+
+'|' Punctuation
+' leader_name1 ' Name.Label
+'=' Operator
+' ' Text
+'[[' Punctuation
+'Emmanuel Macron' Name.Tag
+']]' Punctuation
+'\n' Text
+
+'|' Punctuation
+' leader_title2 ' Name.Label
+'=' Operator
+' ' Text
+'[[' Punctuation
+'Prime Minister of France' Name.Tag
+'|' Punctuation
+'Prime' Text
+' ' Text
+'Minister' Text
+']]' Punctuation
+'\n' Text
+
+'|' Punctuation
+' leader_name2 ' Name.Label
+'=' Operator
+' ' Text
+'[[' Punctuation
+'Élisabeth Borne' Name.Tag
+']]' Punctuation
+'\n' Text
+
+'|' Punctuation
+' legislature ' Name.Label
+'=' Operator
+' ' Text
+'[[' Punctuation
+'French Parliament' Name.Tag
+'|' Punctuation
+'Parliament' Text
+']]' Punctuation
+'\n' Text
+
+'|' Punctuation
+' upper_house ' Name.Label
+'=' Operator
+' ' Text
+'[[' Punctuation
+'Senate (France)' Name.Tag
+'|' Punctuation
+'Senate' Text
+']]' Punctuation
+'\n' Text
+
+'|' Punctuation
+' lower_house ' Name.Label
+'=' Operator
+' ' Text
+'[[' Punctuation
+'National Assembly (France)' Name.Tag
+'|' Punctuation
+'National' Text
+' ' Text
+'Assembly' Text
+']]' Punctuation
+'\n' Text
+
+'|' Punctuation
+' sovereignty_type ' Name.Label
+'=' Operator
+' ' Text
+'[[' Punctuation
+'History of France' Name.Tag
+'|' Punctuation
+'Establishment' Text
+']]' Punctuation
+'\n' Text
+
+'|' Punctuation
+' established_event1 ' Name.Label
+'=' Operator
+' ' Text
+'[[' Punctuation
+'West Francia' Name.Tag
+'|' Punctuation
+'Kingdom' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'West' Text
+' ' Text
+'Franks' Text
+']]' Punctuation
+' ' Text
+'-' Text
+' ' Text
+'[[' Punctuation
+'Treaty of Verdun' Name.Tag
+']]' Punctuation
+'\n' Text
+
+'|' Punctuation
+' established_date1 ' Name.Label
+'=' Operator
+' ' Text
+'10' Text
+' ' Text
+'August' Text
+' ' Text
+'843' Text
+'\n' Text
+
+'|' Punctuation
+' established_event2 ' Name.Label
+'=' Operator
+' ' Text
+'[[' Punctuation
+'Kingdom of France' Name.Tag
+']]' Punctuation
+' ' Text
+'-' Text
+' ' Text
+'[[' Punctuation
+'List of French monarchs' Name.Tag
+'#' Punctuation
+'House of Capet (987–1792)' Name.Label
+'|' Punctuation
+'Capetian' Text
+' ' Text
+'rulers' Text
+' ' Text
+'of' Text
+' ' Text
+'France' Text
+']]' Punctuation
+'\n' Text
+
+'|' Punctuation
+' established_date2 ' Name.Label
+'=' Operator
+' ' Text
+'3' Text
+' ' Text
+'July' Text
+' ' Text
+'987' Text
+'\n' Text
+
+'|' Punctuation
+' established_event3 ' Name.Label
+'=' Operator
+' ' Text
+'[[' Punctuation
+'Proclamation of the abolition of the monarchy' Name.Tag
+'|' Punctuation
+'French' Text
+' ' Text
+'Republic' Text
+']]' Punctuation
+' ' Text
+'-' Text
+' ' Text
+'[[' Punctuation
+'French First Republic' Name.Tag
+']]' Punctuation
+'\n' Text
+
+'|' Punctuation
+' established_date3 ' Name.Label
+'=' Operator
+' ' Text
+'22' Text
+' ' Text
+'September' Text
+' ' Text
+'1792' Text
+'\n' Text
+
+'|' Punctuation
+' established_event4 ' Name.Label
+'=' Operator
+' ' Text
+'[[' Punctuation
+'Enlargement of the European Union' Name.Tag
+'#' Punctuation
+'Founding members' Name.Label
+'|' Punctuation
+'Founded' Text
+']]' Punctuation
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'European Economic Community' Name.Tag
+'|' Punctuation
+'EEC' Text
+']]' Punctuation
+'{{' Punctuation
+'Efn' Name.Tag
+'-' Name.Tag
+'ur' Name.Tag
+'|' Punctuation
+'[[' Punctuation
+'European Union' Name.Tag
+']]' Punctuation
+' ' Text
+'since' Text
+' ' Text
+'1993' Text
+'}}' Punctuation
+'\n' Text
+
+'|' Punctuation
+' established_date4 ' Name.Label
+'=' Operator
+' ' Text
+'1' Text
+' ' Text
+'January' Text
+' ' Text
+'1958' Text
+'\n' Text
+
+'|' Punctuation
+' established_event5 ' Name.Label
+'=' Operator
+' ' Text
+'[[' Punctuation
+'Constitution of France' Name.Tag
+'|' Punctuation
+'Current' Text
+'&nbsp;' Name.Entity
+'constitution' Text
+']]' Punctuation
+' ' Text
+'-' Text
+' ' Text
+'[[' Punctuation
+'French Fifth Republic' Name.Tag
+']]' Punctuation
+'\n' Text
+
+'|' Punctuation
+' established_date5 ' Name.Label
+'=' Operator
+' ' Text
+'4' Text
+' ' Text
+'October' Text
+' ' Text
+'1958' Text
+'\n' Text
+
+'|' Punctuation
+' area_km2 ' Name.Label
+'=' Operator
+' ' Text
+'643' Text
+',' Text
+'801' Text
+'\n' Text
+
+'|' Punctuation
+' area_footnote ' Name.Label
+'=' Operator
+' ' Text
+'<' Punctuation
+'ref' Name.Tag
+' ' Text.Whitespace
+'name' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+'Field' Literal.String.Double
+' ' Literal.String.Double
+'Listing' Literal.String.Double
+' ' Literal.String.Double
+':' Literal.String.Double
+':' Literal.String.Double
+' ' Literal.String.Double
+'Area' Literal.String.Double
+'"' Literal.String.Double
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Field' Text
+' ' Text
+'Listing' Text
+' ' Text
+':' Text
+':' Text
+' ' Text
+'Area' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'cia' Text
+'.' Text
+'gov' Text
+'/' Text
+'library' Text
+'/' Text
+'publications' Text
+'/' Text
+'the' Text
+'-' Text
+'world' Text
+'-' Text
+'factbook' Text
+'/' Text
+'fields' Text
+'/' Text
+'2147' Text
+'.' Text
+'html' Text
+' ' Text
+'|' Punctuation
+'url-status' Name.Label
+'=' Operator
+'dead' Text
+' ' Text
+'|' Punctuation
+'archive-url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'web' Text
+'.' Text
+'archive' Text
+'.' Text
+'org' Text
+'/' Text
+'web' Text
+'/' Text
+'20140131115000' Text
+'/' Text
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'cia' Text
+'.' Text
+'gov' Text
+'/' Text
+'library' Text
+'/' Text
+'publications' Text
+'/' Text
+'the' Text
+'-' Text
+'world' Text
+'-' Text
+'factbook' Text
+'/' Text
+'fields' Text
+'/' Text
+'2147' Text
+'.' Text
+'html' Text
+' ' Text
+'|' Punctuation
+'archive-date' Name.Label
+'=' Operator
+'31' Text
+' ' Text
+'January' Text
+' ' Text
+'2014' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'1' Text
+' ' Text
+'November' Text
+' ' Text
+'2015' Text
+' ' Text
+'|' Punctuation
+'website' Name.Label
+'=' Operator
+'The' Text
+' ' Text
+'World' Text
+' ' Text
+'Factbook' Text
+' ' Text
+'|' Punctuation
+'publisher' Name.Label
+'=' Operator
+'CIA' Text
+'}}' Punctuation
+' ' Text
+'{{' Punctuation
+'PD' Name.Tag
+'-' Name.Tag
+'notice' Name.Tag
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'\n' Text
+
+'|' Punctuation
+' area_rank ' Name.Label
+'=' Operator
+' ' Text
+'42nd' Text
+' ' Text
+'<!-- Area rank should match [[List of countries and dependencies by area]] -->' Comment.Multiline
+'\n' Text
+
+'|' Punctuation
+' area_sq_mi ' Name.Label
+'=' Operator
+' ' Text
+'248' Text
+',' Text
+'600' Text
+' ' Text
+'<!--Do not remove per [[Wikipedia:Manual of Style/Dates and numbers|WP:MOSNUM]] -->' Comment.Multiline
+'\n' Text
+
+'|' Punctuation
+' area_label2 ' Name.Label
+'=' Operator
+' ' Text
+'[[' Punctuation
+'Metropolitan France' Name.Tag
+']]' Punctuation
+' ' Text
+'(' Text
+'[[' Punctuation
+'Institut géographique national' Name.Tag
+'|' Punctuation
+'IGN' Text
+']]' Punctuation
+')' Text
+'\n' Text
+
+'|' Punctuation
+' area_data2 ' Name.Label
+'=' Operator
+' ' Text
+'{{' Punctuation
+'Cvt' Name.Tag
+'|' Punctuation
+'551695' Text
+'|' Punctuation
+'km2' Text
+'}}' Punctuation
+'{{' Punctuation
+'Efn' Name.Tag
+'-' Name.Tag
+'ur' Name.Tag
+'|' Punctuation
+'name' Name.Label
+'=' Operator
+'three' Text
+'|' Punctuation
+'French' Text
+' ' Text
+'[[' Punctuation
+'Institut géographique national' Name.Tag
+'|' Punctuation
+'National' Text
+' ' Text
+'Geographic' Text
+' ' Text
+'Institute' Text
+']]' Punctuation
+' ' Text
+'data' Text
+',' Text
+' ' Text
+'which' Text
+' ' Text
+'includes' Text
+' ' Text
+'bodies' Text
+' ' Text
+'of' Text
+' ' Text
+'water' Text
+'}}' Punctuation
+' ' Text
+'(' Text
+'[[' Punctuation
+'List of countries and dependencies by area' Name.Tag
+'|' Punctuation
+'50th' Text
+']]' Punctuation
+')' Text
+'\n' Text
+
+'|' Punctuation
+' area_label3 ' Name.Label
+'=' Operator
+' ' Text
+'Metropolitan' Text
+' ' Text
+'France' Text
+' ' Text
+'(' Text
+'[[' Punctuation
+'Cadastre' Name.Tag
+']]' Punctuation
+')' Text
+'\n' Text
+
+'|' Punctuation
+' area_data3 ' Name.Label
+'=' Operator
+' ' Text
+'{{' Punctuation
+'Cvt' Name.Tag
+'|' Punctuation
+'543940' Text
+'.' Text
+'9' Text
+'|' Punctuation
+'km2' Text
+'}}' Punctuation
+'{{' Punctuation
+'Efn' Name.Tag
+'-' Name.Tag
+'ur' Name.Tag
+'|' Punctuation
+'name' Name.Label
+'=' Operator
+'four' Text
+'|' Punctuation
+'French' Text
+' ' Text
+'[[' Punctuation
+'Land registration' Name.Tag
+'|' Punctuation
+'Land' Text
+' ' Text
+'Register' Text
+']]' Punctuation
+' ' Text
+'data' Text
+',' Text
+' ' Text
+'which' Text
+' ' Text
+'exclude' Text
+' ' Text
+'lakes' Text
+',' Text
+' ' Text
+'ponds' Text
+' ' Text
+'and' Text
+' ' Text
+'[[' Punctuation
+'glacier' Name.Tag
+']]' Punctuation
+'s' Text
+' ' Text
+'larger' Text
+' ' Text
+'than' Text
+' ' Text
+'1' Text
+' ' Text
+'km' Text
+'<' Punctuation
+'sup' Name.Tag
+'>' Punctuation
+'2' Text
+'</' Punctuation
+'sup' Name.Tag
+'>' Punctuation
+' ' Text
+'(' Text
+'0' Text
+'.' Text
+'386' Text
+' ' Text
+'sq' Text
+' ' Text
+'mi' Text
+' ' Text
+'or' Text
+' ' Text
+'247' Text
+' ' Text
+'acres' Text
+')' Text
+' ' Text
+'as' Text
+' ' Text
+'well' Text
+' ' Text
+'as' Text
+' ' Text
+'the' Text
+' ' Text
+'estuaries' Text
+' ' Text
+'of' Text
+' ' Text
+'rivers' Text
+'}}' Punctuation
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'journal' Name.Tag
+' ' Text
+'|' Punctuation
+'year' Name.Label
+'=' Operator
+'2011' Text
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'France' Text
+' ' Text
+'Métropolitaine' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'insee' Text
+'.' Text
+'fr' Text
+'/' Text
+'fr' Text
+'/' Text
+'themes' Text
+'/' Text
+'comparateur' Text
+'.' Text
+'asp' Text
+'?' Text
+'codgeo' Text
+'=' Text
+'METRODOM' Text
+'-' Text
+'1' Text
+' ' Text
+'|' Punctuation
+'url-status' Name.Label
+'=' Operator
+'dead' Text
+' ' Text
+'|' Punctuation
+'journal' Name.Label
+'=' Operator
+'INSEE' Text
+' ' Text
+'|' Punctuation
+'archive-url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'web' Text
+'.' Text
+'archive' Text
+'.' Text
+'org' Text
+'/' Text
+'web' Text
+'/' Text
+'20150828051307' Text
+'/' Text
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'insee' Text
+'.' Text
+'fr' Text
+'/' Text
+'fr' Text
+'/' Text
+'themes' Text
+'/' Text
+'comparateur' Text
+'.' Text
+'asp' Text
+'?' Text
+'codgeo' Text
+'=' Text
+'METRODOM' Text
+'-' Text
+'1' Text
+' ' Text
+'|' Punctuation
+'archive-date' Name.Label
+'=' Operator
+'28' Text
+' ' Text
+'August' Text
+' ' Text
+'2015' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'(' Text
+'[[' Punctuation
+'List of countries and dependencies by area' Name.Tag
+'|' Punctuation
+'50th' Text
+']]' Punctuation
+')' Text
+'\n' Text
+
+'|' Punctuation
+' population_estimate ' Name.Label
+'=' Operator
+' ' Text
+'{{' Punctuation
+'IncreaseNeutral' Name.Tag
+'}}' Punctuation
+' ' Text
+'68' Text
+',' Text
+'042' Text
+',' Text
+'591' Text
+'<' Punctuation
+'ref' Name.Tag
+' ' Text.Whitespace
+'name' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+'pop_est' Literal.String.Double
+'"' Literal.String.Double
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'date' Name.Label
+'=' Operator
+'17' Text
+' ' Text
+'January' Text
+' ' Text
+'2023' Text
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Bilan' Text
+' ' Text
+'démographique' Text
+' ' Text
+'2022' Text
+' ' Text
+'-' Text
+' ' Text
+'Composantes' Text
+' ' Text
+'de' Text
+' ' Text
+'la' Text
+' ' Text
+'croissance' Text
+' ' Text
+'démographique' Text
+',' Text
+' ' Text
+'France' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'insee' Text
+'.' Text
+'fr' Text
+'/' Text
+'fr' Text
+'/' Text
+'statistiques' Text
+'/' Text
+'6686993' Text
+'?' Text
+'sommaire' Text
+'=' Text
+'6686521' Text
+'#' Text
+'titre' Text
+'-' Text
+'bloc' Text
+'-' Text
+'1' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'2022' Text
+'-' Text
+'01' Text
+'-' Text
+'27' Text
+' ' Text
+'|' Punctuation
+'website' Name.Label
+'=' Operator
+'Insee' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'\n' Text
+
+'|' Punctuation
+' percent_water ' Name.Label
+'=' Operator
+' ' Text
+'0' Text
+'.' Text
+'86' Text
+' ' Text
+'(' Text
+'2015' Text
+')' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Surface' Text
+' ' Text
+'water' Text
+' ' Text
+'and' Text
+' ' Text
+'surface' Text
+' ' Text
+'water' Text
+' ' Text
+'change' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'stats' Text
+'.' Text
+'oecd' Text
+'.' Text
+'org' Text
+'/' Text
+'Index' Text
+'.' Text
+'aspx' Text
+'?' Text
+'DataSetCode' Text
+'=' Text
+'SURFACE_WATER' Text
+'#' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'11' Text
+' ' Text
+'October' Text
+' ' Text
+'2020' Text
+' ' Text
+'|' Punctuation
+'publisher' Name.Label
+'=' Operator
+'Organisation' Text
+' ' Text
+'for' Text
+' ' Text
+'Economic' Text
+' ' Text
+'Co' Text
+'-' Text
+'operation' Text
+' ' Text
+'and' Text
+' ' Text
+'Development' Text
+' ' Text
+'(' Text
+'OECD' Text
+')' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'\n' Text
+
+'|' Punctuation
+' population_estimate_year ' Name.Label
+'=' Operator
+' ' Text
+'January' Text
+' ' Text
+'2023' Text
+'\n' Text
+
+'|' Punctuation
+' population_estimate_rank ' Name.Label
+'=' Operator
+' ' Text
+'20th' Text
+'\n' Text
+
+'|' Punctuation
+' population_label2 ' Name.Label
+'=' Operator
+' ' Text
+'Density' Text
+'\n' Text
+
+'|' Punctuation
+' population_data2 ' Name.Label
+'=' Operator
+' ' Text
+'{{' Punctuation
+'Pop' Name.Tag
+' ' Name.Tag
+'density' Name.Tag
+'|' Punctuation
+'67897000' Text
+'|' Punctuation
+'643801' Text
+'|' Punctuation
+'km2' Text
+'}}' Punctuation
+' ' Text
+'(' Text
+'[[' Punctuation
+'List of countries and territories by population density' Name.Tag
+'|' Punctuation
+'106th' Text
+']]' Punctuation
+')' Text
+'\n' Text
+
+'|' Punctuation
+' population_label3 ' Name.Label
+'=' Operator
+' ' Text
+'Metropolitan' Text
+' ' Text
+'France' Text
+',' Text
+' ' Text
+'estimate' Text
+' ' Text
+'{{' Punctuation
+'As' Name.Tag
+' ' Name.Tag
+'of' Name.Tag
+'|' Punctuation
+'lc' Name.Label
+'=' Operator
+'y' Text
+'|' Punctuation
+'January' Text
+' ' Text
+'2023' Text
+'}}' Punctuation
+'\n' Text
+
+'|' Punctuation
+' population_data3 ' Name.Label
+'=' Operator
+' ' Text
+'{{' Punctuation
+'IncreaseNeutral' Name.Tag
+'}}' Punctuation
+' ' Text
+'65' Text
+',' Text
+'834' Text
+',' Text
+'837' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'date' Name.Label
+'=' Operator
+'17' Text
+' ' Text
+'January' Text
+' ' Text
+'2023' Text
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Bilan' Text
+' ' Text
+'démographique' Text
+' ' Text
+'2022' Text
+' ' Text
+'-' Text
+' ' Text
+'Composantes' Text
+' ' Text
+'de' Text
+' ' Text
+'la' Text
+' ' Text
+'croissance' Text
+' ' Text
+'démographique' Text
+',' Text
+' ' Text
+'France' Text
+' ' Text
+'métropolitaine' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'insee' Text
+'.' Text
+'fr' Text
+'/' Text
+'fr' Text
+'/' Text
+'statistiques' Text
+'/' Text
+'6686993' Text
+'?' Text
+'sommaire' Text
+'=' Text
+'6686521' Text
+'#' Text
+'titre' Text
+'-' Text
+'bloc' Text
+'-' Text
+'3' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'2022' Text
+'-' Text
+'01' Text
+'-' Text
+'27' Text
+' ' Text
+'|' Punctuation
+'website' Name.Label
+'=' Operator
+'Insee' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'(' Text
+'[[' Punctuation
+'List of countries and dependencies by population' Name.Tag
+'|' Punctuation
+'23rd' Text
+']]' Punctuation
+')' Text
+'\n' Text
+
+'|' Punctuation
+' population_density_km2 ' Name.Label
+'=' Operator
+' ' Text
+'121' Text
+'\n' Text
+
+'|' Punctuation
+' population_density_sq_mi ' Name.Label
+'=' Operator
+' ' Text
+'313' Text
+' ' Text
+'<!-- Do not remove per [[Wikipedia:Manual of Style/Dates and numbers|WP:MOSNUM]] -->' Comment.Multiline
+'\n' Text
+
+'|' Punctuation
+' pop_den_footnote ' Name.Label
+'=' Operator
+'\n' Text
+
+'|' Punctuation
+' population_density_rank ' Name.Label
+'=' Operator
+' ' Text
+'89th' Text
+'\n' Text
+
+'|' Punctuation
+' GDP_PPP ' Name.Label
+'=' Operator
+' ' Text
+'{{' Punctuation
+'Increase' Name.Tag
+'}}' Punctuation
+' ' Text
+'$' Text
+'3' Text
+'.' Text
+'667' Text
+' ' Text
+'trillion' Text
+'<' Punctuation
+'ref' Name.Tag
+' ' Text.Whitespace
+'name' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+'IMFWEOFR' Literal.String.Double
+'"' Literal.String.Double
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'World' Text
+' ' Text
+'Economic' Text
+' ' Text
+'Outlook' Text
+' ' Text
+'Database' Text
+',' Text
+' ' Text
+'October' Text
+' ' Text
+'2021' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'imf' Text
+'.' Text
+'org' Text
+'/' Text
+'en' Text
+'/' Text
+'Publications' Text
+'/' Text
+'WEO' Text
+'/' Text
+'weo' Text
+'-' Text
+'database' Text
+'/' Text
+'2021' Text
+'/' Text
+'October' Text
+'/' Text
+'weo' Text
+'-' Text
+'report' Text
+'?' Text
+'c' Text
+'=' Text
+'132' Text
+',' Text
+'&' Text
+'s' Text
+'=' Text
+'NGDP_RPCH' Text
+',' Text
+'NGDPD' Text
+',' Text
+'PPPGDP' Text
+',' Text
+'NGDPDPC' Text
+',' Text
+'PPPPC' Text
+',' Text
+'&' Text
+'sy' Text
+'=' Text
+'2016' Text
+'&' Text
+'ey' Text
+'=' Text
+'2026' Text
+'&' Text
+'ssm' Text
+'=' Text
+'0' Text
+'&' Text
+'scsm' Text
+'=' Text
+'1' Text
+'&' Text
+'scc' Text
+'=' Text
+'0' Text
+'&' Text
+'ssd' Text
+'=' Text
+'1' Text
+'&' Text
+'ssc' Text
+'=' Text
+'0' Text
+'&' Text
+'sic' Text
+'=' Text
+'0' Text
+'&' Text
+'sort' Text
+'=' Text
+'country' Text
+'&' Text
+'ds' Text
+'=' Text
+'.' Text
+'&' Text
+'br' Text
+'=' Text
+'1' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'25' Text
+' ' Text
+'February' Text
+' ' Text
+'2022' Text
+' ' Text
+'|' Punctuation
+'website' Name.Label
+'=' Operator
+'imf' Text
+'.' Text
+'org' Text
+' ' Text
+'|' Punctuation
+'publisher' Name.Label
+'=' Operator
+'International' Text
+' ' Text
+'Monetary' Text
+' ' Text
+'Fund' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'\n' Text
+
+'|' Punctuation
+' GDP_PPP_year ' Name.Label
+'=' Operator
+' ' Text
+'2022' Text
+'\n' Text
+
+'|' Punctuation
+' GDP_PPP_rank ' Name.Label
+'=' Operator
+' ' Text
+'10th' Text
+'\n' Text
+
+'|' Punctuation
+' GDP_PPP_per_capita ' Name.Label
+'=' Operator
+' ' Text
+'{{' Punctuation
+'Increase' Name.Tag
+'}}' Punctuation
+' ' Text
+'$' Text
+'56' Text
+',' Text
+'036' Text
+'<' Punctuation
+'ref' Name.Tag
+' ' Text.Whitespace
+'name' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+'IMFWEOFR' Literal.String.Double
+'"' Literal.String.Double
+' ' Text.Whitespace
+'/>' Punctuation
+'\n' Text
+
+'|' Punctuation
+' GDP_PPP_per_capita_rank ' Name.Label
+'=' Operator
+' ' Text
+'24th' Text
+'\n' Text
+
+'|' Punctuation
+' GDP_nominal ' Name.Label
+'=' Operator
+' ' Text
+'{{' Punctuation
+'Increase' Name.Tag
+'}}' Punctuation
+' ' Text
+'$' Text
+'2' Text
+'.' Text
+'936' Text
+' ' Text
+'trillion' Text
+'<' Punctuation
+'ref' Name.Tag
+' ' Text.Whitespace
+'name' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+'IMFWEOFR' Literal.String.Double
+'"' Literal.String.Double
+' ' Text.Whitespace
+'/>' Punctuation
+'\n' Text
+
+'|' Punctuation
+' GDP_nominal_year ' Name.Label
+'=' Operator
+' ' Text
+'2022' Text
+'\n' Text
+
+'|' Punctuation
+' GDP_nominal_rank ' Name.Label
+'=' Operator
+' ' Text
+'7th' Text
+'\n' Text
+
+'|' Punctuation
+' GDP_nominal_per_capita ' Name.Label
+'=' Operator
+' ' Text
+'{{' Punctuation
+'Increase' Name.Tag
+'}}' Punctuation
+' ' Text
+'$' Text
+'44' Text
+',' Text
+'747' Text
+'<' Punctuation
+'ref' Name.Tag
+' ' Text.Whitespace
+'name' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+'IMFWEOFR' Literal.String.Double
+'"' Literal.String.Double
+' ' Text.Whitespace
+'/>' Punctuation
+'\n' Text
+
+'|' Punctuation
+' GDP_nominal_per_capita_rank ' Name.Label
+'=' Operator
+' ' Text
+'28th' Text
+'\n' Text
+
+'|' Punctuation
+' Gini ' Name.Label
+'=' Operator
+' ' Text
+'29' Text
+'.' Text
+'3' Text
+' ' Text
+'<!-- number only -->' Comment.Multiline
+'\n' Text
+
+'|' Punctuation
+' Gini_year ' Name.Label
+'=' Operator
+' ' Text
+'2020' Text
+'\n' Text
+
+'|' Punctuation
+' Gini_change ' Name.Label
+'=' Operator
+' ' Text
+'increase' Text
+' ' Text
+'<!-- increase/decrease/steady -->' Comment.Multiline
+'\n' Text
+
+'|' Punctuation
+' Gini_ref ' Name.Label
+'=' Operator
+' ' Text
+'<' Punctuation
+'ref' Name.Tag
+' ' Text.Whitespace
+'name' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+'eurogini' Literal.String.Double
+'"' Literal.String.Double
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Gini' Text
+' ' Text
+'coefficient' Text
+' ' Text
+'of' Text
+' ' Text
+'equivalised' Text
+' ' Text
+'disposable' Text
+' ' Text
+'income' Text
+' ' Text
+'–' Text
+' ' Text
+'EU' Text
+'-' Text
+'SILC' Text
+' ' Text
+'survey' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'ec' Text
+'.' Text
+'europa' Text
+'.' Text
+'eu' Text
+'/' Text
+'eurostat' Text
+'/' Text
+'databrowser' Text
+'/' Text
+'view' Text
+'/' Text
+'tessi190' Text
+'/' Text
+'default' Text
+'/' Text
+'table' Text
+'?' Text
+'lang' Text
+'=' Text
+'en' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'21' Text
+' ' Text
+'June' Text
+' ' Text
+'2022' Text
+' ' Text
+'|' Punctuation
+'website' Name.Label
+'=' Operator
+'ec' Text
+'.' Text
+'europa' Text
+'.' Text
+'eu' Text
+' ' Text
+'|' Punctuation
+'publisher' Name.Label
+'=' Operator
+'[[' Punctuation
+'Eurostat' Name.Tag
+']]' Punctuation
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'\n' Text
+
+'|' Punctuation
+' Gini_rank ' Name.Label
+'=' Operator
+'\n' Text
+
+'|' Punctuation
+' HDI ' Name.Label
+'=' Operator
+' ' Text
+'0' Text
+'.' Text
+'903' Text
+' ' Text
+'<!-- number only -->' Comment.Multiline
+'\n' Text
+
+'|' Punctuation
+' HDI_year ' Name.Label
+'=' Operator
+' ' Text
+'2021' Text
+' ' Text
+'<!-- Please use the year to which the data refers, not the publication year -->' Comment.Multiline
+'\n' Text
+
+'|' Punctuation
+' HDI_change ' Name.Label
+'=' Operator
+' ' Text
+'increase' Text
+' ' Text
+'<!-- increase/decrease/steady -->' Comment.Multiline
+'\n' Text
+
+'|' Punctuation
+' HDI_ref ' Name.Label
+'=' Operator
+' ' Text
+'<' Punctuation
+'ref' Name.Tag
+' ' Text.Whitespace
+'name' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+'UNHDR' Literal.String.Double
+'"' Literal.String.Double
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'date' Name.Label
+'=' Operator
+'8' Text
+' ' Text
+'September' Text
+' ' Text
+'2022' Text
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Human' Text
+' ' Text
+'Development' Text
+' ' Text
+'Report' Text
+' ' Text
+'2021' Text
+'/' Text
+'2022' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'hdr' Text
+'.' Text
+'undp' Text
+'.' Text
+'org' Text
+'/' Text
+'system' Text
+'/' Text
+'files' Text
+'/' Text
+'documents' Text
+'/' Text
+'global' Text
+'-' Text
+'report' Text
+'-' Text
+'document' Text
+'/' Text
+'hdr2021' Text
+'-' Text
+'22pdf_1' Text
+'.' Text
+'pdf' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'8' Text
+' ' Text
+'September' Text
+' ' Text
+'2022' Text
+' ' Text
+'|' Punctuation
+'publisher' Name.Label
+'=' Operator
+'[[' Punctuation
+'United Nations Development Programme' Name.Tag
+']]' Punctuation
+' ' Text
+'|' Punctuation
+'language' Name.Label
+'=' Operator
+'en' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'\n' Text
+
+'|' Punctuation
+' HDI_rank ' Name.Label
+'=' Operator
+' ' Text
+'28th' Text
+'\n' Text
+
+'|' Punctuation
+' currency ' Name.Label
+'=' Operator
+' ' Text
+'{{' Punctuation
+'Unbulleted' Name.Tag
+' ' Name.Tag
+'list' Name.Tag
+'\n' Text
+
+'|' Punctuation
+' ' Text
+'[[' Punctuation
+'Euro' Name.Tag
+']]' Punctuation
+' ' Text
+'(' Text
+'[[' Punctuation
+'Euro sign' Name.Tag
+'|' Punctuation
+'€' Text
+']]' Punctuation
+')' Text
+' ' Text
+'(' Text
+'[[' Punctuation
+'ISO 4217' Name.Tag
+'|' Punctuation
+'EUR' Text
+']]' Punctuation
+')' Text
+'{{' Punctuation
+'Efn' Name.Tag
+'-' Name.Tag
+'ur' Name.Tag
+'|' Punctuation
+'name' Name.Label
+'=' Operator
+'six' Text
+'|' Punctuation
+'Whole' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'except' Text
+' ' Text
+'the' Text
+' ' Text
+'overseas' Text
+' ' Text
+'territories' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'Pacific' Text
+' ' Text
+'Ocean' Text
+'}}' Punctuation
+'\n' Text
+
+'|' Punctuation
+' ' Text
+'[[' Punctuation
+'CFP franc' Name.Tag
+']]' Punctuation
+' ' Text
+'(' Text
+'XPF' Text
+')' Text
+'{{' Punctuation
+'Efn' Name.Tag
+'-' Name.Tag
+'ur' Name.Tag
+'|' Punctuation
+'name' Name.Label
+'=' Operator
+'seven' Text
+'|' Punctuation
+'French' Text
+' ' Text
+'overseas' Text
+' ' Text
+'territories' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'Pacific' Text
+' ' Text
+'Ocean' Text
+' ' Text
+'only' Text
+'}}' Punctuation
+'\n' Text
+
+'}}' Punctuation
+'\n' Text
+
+'|' Punctuation
+' time_zone ' Name.Label
+'=' Operator
+' ' Text
+'[[' Punctuation
+'Central European Time' Name.Tag
+']]' Punctuation
+'\n' Text
+
+'|' Punctuation
+' utc_offset ' Name.Label
+'=' Operator
+' ' Text
+'+' Text
+'1' Text
+'\n' Text
+
+'|' Punctuation
+' utc_offset_DST ' Name.Label
+'=' Operator
+' ' Text
+'+' Text
+'2' Text
+'\n' Text
+
+'|' Punctuation
+' time_zone_DST ' Name.Label
+'=' Operator
+' ' Text
+'[[' Punctuation
+'Central European Summer Time' Name.Tag
+']]' Punctuation
+'{{' Punctuation
+'Efn' Name.Tag
+'-' Name.Tag
+'ur' Name.Tag
+'|' Punctuation
+'name' Name.Label
+'=' Operator
+'eight' Text
+'|' Punctuation
+'Daylight' Text
+' ' Text
+'saving' Text
+' ' Text
+'time' Text
+' ' Text
+'is' Text
+' ' Text
+'observed' Text
+' ' Text
+'in' Text
+' ' Text
+'metropolitan' Text
+' ' Text
+'France' Text
+' ' Text
+'and' Text
+' ' Text
+'[[' Punctuation
+'Saint Pierre and Miquelon' Name.Tag
+']]' Punctuation
+' ' Text
+'only' Text
+'.' Text
+'}}' Punctuation
+'\n' Text
+
+'|' Punctuation
+' DST_note ' Name.Label
+'=' Operator
+' ' Text
+'Note' Text
+':' Text
+' ' Text
+'Various' Text
+' ' Text
+'other' Text
+' ' Text
+'time' Text
+' ' Text
+'zones' Text
+' ' Text
+'are' Text
+' ' Text
+'observed' Text
+' ' Text
+'in' Text
+' ' Text
+'overseas' Text
+' ' Text
+'France' Text
+'.' Text
+'{{' Punctuation
+'Efn' Name.Tag
+'-' Name.Tag
+'ur' Name.Tag
+'|' Punctuation
+'name' Name.Label
+'=' Operator
+'nine' Text
+'|' Punctuation
+'Time' Text
+' ' Text
+'zones' Text
+' ' Text
+'across' Text
+' ' Text
+'the' Text
+' ' Text
+'span' Text
+' ' Text
+'from' Text
+' ' Text
+'UTC' Text
+'−' Text
+'10' Text
+' ' Text
+'(' Text
+'[[' Punctuation
+'French Polynesia' Name.Tag
+']]' Punctuation
+')' Text
+' ' Text
+'to' Text
+' ' Text
+'UTC' Text
+'+' Text
+'12' Text
+' ' Text
+'(' Text
+'[[' Punctuation
+'Wallis and Futuna' Name.Tag
+']]' Punctuation
+')' Text
+'}}' Punctuation
+'<' Punctuation
+'br' Name.Tag
+'/>' Punctuation
+' ' Text
+'Although' Text
+' ' Text
+'France' Text
+' ' Text
+'is' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Coordinated Universal Time' Name.Tag
+'|' Punctuation
+'UTC' Text
+']]' Punctuation
+' ' Text
+'(' Text
+'Z' Text
+')' Text
+' ' Text
+'(' Text
+'[[' Punctuation
+'Western European Time' Name.Tag
+']]' Punctuation
+')' Text
+' ' Text
+'zone' Text
+',' Text
+' ' Text
+'[[' Punctuation
+'UTC+01' Name.Namespace
+':' Punctuation
+'00' Name.Tag
+']]' Punctuation
+' ' Text
+'(' Text
+'[[' Punctuation
+'Central European Time' Name.Tag
+']]' Punctuation
+')' Text
+' ' Text
+'was' Text
+' ' Text
+'enforced' Text
+' ' Text
+'as' Text
+' ' Text
+'the' Text
+' ' Text
+'standard' Text
+' ' Text
+'time' Text
+' ' Text
+'since' Text
+' ' Text
+'25' Text
+' ' Text
+'February' Text
+' ' Text
+'1940' Text
+',' Text
+' ' Text
+'upon' Text
+' ' Text
+'[[' Punctuation
+'German military administration in occupied France during World War II' Name.Tag
+'|' Punctuation
+'German' Text
+' ' Text
+'occupation' Text
+' ' Text
+'in' Text
+' ' Text
+'WW2' Text
+']]' Punctuation
+',' Text
+' ' Text
+'with' Text
+' ' Text
+'a' Text
+' ' Text
+'+' Text
+'0' Text
+':' Text
+'50' Text
+':' Text
+'39' Text
+' ' Text
+'offset' Text
+' ' Text
+'(' Text
+'and' Text
+' ' Text
+'+' Text
+'1' Text
+':' Text
+'50' Text
+':' Text
+'39' Text
+' ' Text
+'during' Text
+' ' Text
+'[[' Punctuation
+'Daylight saving time' Name.Tag
+'|' Punctuation
+'DST' Text
+']]' Punctuation
+')' Text
+' ' Text
+'from' Text
+' ' Text
+'Paris' Text
+' ' Text
+'[[' Punctuation
+'Local mean time' Name.Tag
+'|' Punctuation
+'LMT' Text
+']]' Punctuation
+' ' Text
+'(' Text
+'UTC' Text
+'+' Text
+'0' Text
+':' Text
+'09' Text
+':' Text
+'21' Text
+')' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Time' Text
+' ' Text
+'Zone' Text
+' ' Text
+'&' Text
+' ' Text
+'Clock' Text
+' ' Text
+'Changes' Text
+' ' Text
+'in' Text
+' ' Text
+'Paris' Text
+',' Text
+' ' Text
+'Île' Text
+'-' Text
+'de' Text
+'-' Text
+'France' Text
+',' Text
+' ' Text
+'France' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'timeanddate' Text
+'.' Text
+'com' Text
+'/' Text
+'time' Text
+'/' Text
+'zone' Text
+'/' Text
+'france' Text
+'/' Text
+'paris' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'9' Text
+' ' Text
+'October' Text
+' ' Text
+'2021' Text
+' ' Text
+'|' Punctuation
+'website' Name.Label
+'=' Operator
+'timeanddate' Text
+'.' Text
+'com' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'\n' Text
+
+'|' Punctuation
+' date_format ' Name.Label
+'=' Operator
+' ' Text
+'dd' Text
+'/' Text
+'mm' Text
+'/' Text
+'yyyy' Text
+' ' Text
+'(' Text
+'[[' Punctuation
+'Anno Domini' Name.Tag
+'|' Punctuation
+'AD' Text
+']]' Punctuation
+')' Text
+'\n' Text
+
+'|' Punctuation
+' drives_on ' Name.Label
+'=' Operator
+' ' Text
+'right' Text
+'\n' Text
+
+'|' Punctuation
+' calling_code ' Name.Label
+'=' Operator
+' ' Text
+'[[' Punctuation
+'Telephone numbers in France' Name.Tag
+'|' Punctuation
+'+' Text
+'33' Text
+']]' Punctuation
+'{{' Punctuation
+'Efn' Name.Tag
+'-' Name.Tag
+'ur' Name.Tag
+'|' Punctuation
+'name' Name.Label
+'=' Operator
+'eleven' Text
+'|' Punctuation
+'The' Text
+' ' Text
+'overseas' Text
+' ' Text
+'regions' Text
+' ' Text
+'and' Text
+' ' Text
+'collectivities' Text
+' ' Text
+'form' Text
+' ' Text
+'part' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Telephone numbers in France' Name.Tag
+'|' Punctuation
+'French' Text
+' ' Text
+'telephone' Text
+' ' Text
+'numbering' Text
+' ' Text
+'plan' Text
+']]' Punctuation
+',' Text
+' ' Text
+'but' Text
+' ' Text
+'have' Text
+' ' Text
+'their' Text
+' ' Text
+'own' Text
+' ' Text
+'country' Text
+' ' Text
+'calling' Text
+' ' Text
+'codes' Text
+':' Text
+' ' Text
+'[[' Punctuation
+'Guadeloupe' Name.Tag
+']]' Punctuation
+' ' Text
+'+' Text
+'590' Text
+';' Text
+' ' Text
+'[[' Punctuation
+'Martinique' Name.Tag
+']]' Punctuation
+' ' Text
+'+' Text
+'596' Text
+';' Text
+' ' Text
+'[[' Punctuation
+'French Guiana' Name.Tag
+']]' Punctuation
+' ' Text
+'+' Text
+'594' Text
+';' Text
+' ' Text
+'[[' Punctuation
+'Réunion' Name.Tag
+']]' Punctuation
+' ' Text
+'and' Text
+' ' Text
+'[[' Punctuation
+'Mayotte' Name.Tag
+']]' Punctuation
+' ' Text
+'+' Text
+'262' Text
+';' Text
+' ' Text
+'[[' Punctuation
+'Saint Pierre and Miquelon' Name.Tag
+']]' Punctuation
+' ' Text
+'+' Text
+'508' Text
+'.' Text
+' ' Text
+'The' Text
+' ' Text
+'overseas' Text
+' ' Text
+'territories' Text
+' ' Text
+'are' Text
+' ' Text
+'not' Text
+' ' Text
+'part' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'French' Text
+' ' Text
+'telephone' Text
+' ' Text
+'numbering' Text
+' ' Text
+'plan' Text
+';' Text
+' ' Text
+'their' Text
+' ' Text
+'country' Text
+' ' Text
+'calling' Text
+' ' Text
+'codes' Text
+' ' Text
+'are' Text
+':' Text
+' ' Text
+'[[' Punctuation
+'New Caledonia' Name.Tag
+']]' Punctuation
+' ' Text
+'+' Text
+'687' Text
+';' Text
+' ' Text
+'[[' Punctuation
+'French Polynesia' Name.Tag
+']]' Punctuation
+' ' Text
+'+' Text
+'689' Text
+';' Text
+' ' Text
+'[[' Punctuation
+'Wallis and Futuna' Name.Tag
+']]' Punctuation
+' ' Text
+'+' Text
+'681' Text
+'.' Text
+'}}' Punctuation
+'\n' Text
+
+'|' Punctuation
+' cctld ' Name.Label
+'=' Operator
+' ' Text
+'[[' Punctuation
+'.fr' Name.Tag
+']]' Punctuation
+'{{' Punctuation
+'Efn' Name.Tag
+'-' Name.Tag
+'ur' Name.Tag
+'|' Punctuation
+'name' Name.Label
+'=' Operator
+'ten' Text
+'|' Punctuation
+'In' Text
+' ' Text
+'addition' Text
+' ' Text
+'to' Text
+' ' Text
+'[[' Punctuation
+'.fr' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'several' Text
+' ' Text
+'other' Text
+' ' Text
+'Internet' Text
+' ' Text
+'TLDs' Text
+' ' Text
+'are' Text
+' ' Text
+'used' Text
+' ' Text
+'in' Text
+' ' Text
+'French' Text
+' ' Text
+'overseas' Text
+' ' Text
+"''" Generic.Emph
+'départements' Generic.Emph
+"''" Generic.Emph
+' ' Text
+'and' Text
+' ' Text
+'territories' Text
+':' Text
+' ' Text
+'[[' Punctuation
+'.re' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'[[' Punctuation
+'.mq' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'[[' Punctuation
+'.gp' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'[[' Punctuation
+'.tf' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'[[' Punctuation
+'.nc' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'[[' Punctuation
+'.pf' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'[[' Punctuation
+'.wf' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'[[' Punctuation
+'.pm' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'[[' Punctuation
+'.gf' Name.Tag
+']]' Punctuation
+' ' Text
+'and' Text
+' ' Text
+'[[' Punctuation
+'.yt' Name.Tag
+']]' Punctuation
+'.' Text
+' ' Text
+'France' Text
+' ' Text
+'also' Text
+' ' Text
+'uses' Text
+' ' Text
+'[[' Punctuation
+'.eu' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'shared' Text
+' ' Text
+'with' Text
+' ' Text
+'other' Text
+' ' Text
+'members' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'European' Text
+' ' Text
+'Union' Text
+'.' Text
+' ' Text
+'The' Text
+' ' Text
+'[[' Punctuation
+'.cat' Name.Tag
+']]' Punctuation
+' ' Text
+'domain' Text
+' ' Text
+'is' Text
+' ' Text
+'used' Text
+' ' Text
+'in' Text
+' ' Text
+'[[' Punctuation
+'Catalan Countries' Name.Tag
+'|' Punctuation
+'Catalan' Text
+'-' Text
+'speaking' Text
+' ' Text
+'territories' Text
+']]' Punctuation
+'.' Text
+'}}' Punctuation
+'\n' Text
+
+'|' Punctuation
+' footnotes ' Name.Label
+'=' Operator
+' ' Text
+'Source' Text
+' ' Text
+'gives' Text
+' ' Text
+'area' Text
+' ' Text
+'of' Text
+' ' Text
+'metropolitan' Text
+' ' Text
+'France' Text
+' ' Text
+'as' Text
+' ' Text
+'551' Text
+',' Text
+'500' Text
+' ' Text
+'km' Text
+'<' Punctuation
+'sup' Name.Tag
+'>' Punctuation
+'2' Text
+'</' Punctuation
+'sup' Name.Tag
+'>' Punctuation
+' ' Text
+'(' Text
+'212' Text
+',' Text
+'900' Text
+' ' Text
+'sq' Text
+' ' Text
+'mi' Text
+')' Text
+' ' Text
+'and' Text
+' ' Text
+'lists' Text
+' ' Text
+'overseas' Text
+' ' Text
+'regions' Text
+' ' Text
+'separately' Text
+',' Text
+' ' Text
+'whose' Text
+' ' Text
+'areas' Text
+' ' Text
+'sum' Text
+' ' Text
+'to' Text
+' ' Text
+'89' Text
+',' Text
+'179' Text
+' ' Text
+'km' Text
+'<' Punctuation
+'sup' Name.Tag
+'>' Punctuation
+'2' Text
+'</' Punctuation
+'sup' Name.Tag
+'>' Punctuation
+' ' Text
+'(' Text
+'34' Text
+',' Text
+'432' Text
+' ' Text
+'sq' Text
+' ' Text
+'mi' Text
+')' Text
+'.' Text
+' ' Text
+'Adding' Text
+' ' Text
+'these' Text
+' ' Text
+'give' Text
+' ' Text
+'the' Text
+' ' Text
+'total' Text
+' ' Text
+'shown' Text
+' ' Text
+'here' Text
+' ' Text
+'for' Text
+' ' Text
+'the' Text
+' ' Text
+'entire' Text
+' ' Text
+'French' Text
+' ' Text
+'Republic' Text
+'.' Text
+' ' Text
+'The' Text
+' ' Text
+'CIA' Text
+' ' Text
+'reports' Text
+' ' Text
+'the' Text
+' ' Text
+'total' Text
+' ' Text
+'as' Text
+' ' Text
+'643' Text
+',' Text
+'801' Text
+' ' Text
+'km' Text
+'<' Punctuation
+'sup' Name.Tag
+'>' Punctuation
+'2' Text
+'</' Punctuation
+'sup' Name.Tag
+'>' Punctuation
+' ' Text
+'(' Text
+'248' Text
+',' Text
+'573' Text
+' ' Text
+'sq' Text
+' ' Text
+'mi' Text
+')' Text
+'.' Text
+'\n' Text
+
+'|' Punctuation
+' flag_p1 ' Name.Label
+'=' Operator
+' ' Text
+'Flag' Text
+' ' Text
+'of' Text
+' ' Text
+'France' Text
+' ' Text
+'(' Text
+'1794' Text
+'–' Text
+'1815' Text
+',' Text
+' ' Text
+'1830' Text
+'–' Text
+'1974' Text
+',' Text
+' ' Text
+'2020' Text
+'–' Text
+'present' Text
+')' Text
+'.' Text
+'svg' Text
+'\n' Text
+
+'}}' Punctuation
+'\n' Text
+
+'\n' Text
+
+"'''" Generic.Strong
+'France' Generic.Strong
+"'''" Generic.Strong
+' ' Text
+'(' Text
+'{{' Punctuation
+'IPA' Name.Tag
+'-' Name.Tag
+'fr' Name.Tag
+'|' Punctuation
+'fʁɑ' Text
+'̃' Text
+'s' Text
+'|' Punctuation
+'lang' Text
+'|' Punctuation
+'LL' Text
+'-' Text
+'Q150' Text
+' ' Text
+'(' Text
+'fra' Text
+')' Text
+'-' Text
+'Fhala' Text
+'.' Text
+'K' Text
+'-' Text
+'France' Text
+'.' Text
+'wav' Text
+'|' Punctuation
+'attribution' Name.Label
+'=' Operator
+'no' Text
+'}}' Punctuation
+')' Text
+'<!-- Do not add English pronunciation per [[Wikipedia:Manual of Style/Lead Section]] -->' Comment.Multiline
+',' Text
+' ' Text
+'officially' Text
+' ' Text
+'the' Text
+' ' Text
+"'''" Generic.Strong
+'French' Generic.Strong
+' ' Generic.Strong
+'Republic' Generic.Strong
+"'''" Generic.Strong
+' ' Text
+'(' Text
+'{{' Punctuation
+'Lang' Name.Tag
+'-' Name.Tag
+'fr' Name.Tag
+'|' Punctuation
+'link' Name.Label
+'=' Operator
+'no' Text
+'|' Punctuation
+'République' Text
+' ' Text
+'française' Text
+'}}' Punctuation
+' ' Text
+'{{' Punctuation
+'IPA' Name.Tag
+'-' Name.Tag
+'fr' Name.Tag
+'|' Punctuation
+'ʁepyblik' Text
+' ' Text
+'frɑ' Text
+'̃' Text
+'sɛz' Text
+'|' Punctuation
+'}}' Punctuation
+')' Text
+',' Text
+'<' Punctuation
+'ref' Name.Tag
+' ' Text.Whitespace
+'name' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+'formal' Literal.String.Double
+' ' Literal.String.Double
+'country' Literal.String.Double
+' ' Literal.String.Double
+'name' Literal.String.Double
+'"' Literal.String.Double
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'France' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'unstats' Text
+'.' Text
+'un' Text
+'.' Text
+'org' Text
+'/' Text
+'unsd' Text
+'/' Text
+'geoinfo' Text
+'/' Text
+'geonames' Text
+'/' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'27' Text
+' ' Text
+'November' Text
+' ' Text
+'2020' Text
+' ' Text
+'|' Punctuation
+'website' Name.Label
+'=' Operator
+'UNGEGN' Text
+' ' Text
+'World' Text
+' ' Text
+'Geographical' Text
+' ' Text
+'Names' Text
+' ' Text
+'|' Punctuation
+'publisher' Name.Label
+'=' Operator
+'United' Text
+' ' Text
+'Nations' Text
+' ' Text
+'Group' Text
+' ' Text
+'of' Text
+' ' Text
+'Experts' Text
+' ' Text
+'on' Text
+' ' Text
+'Geographical' Text
+' ' Text
+'Names' Text
+' ' Text
+'|' Punctuation
+'location' Name.Label
+'=' Operator
+'New' Text
+' ' Text
+'York' Text
+',' Text
+' ' Text
+'NY' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'is' Text
+' ' Text
+'a' Text
+' ' Text
+'country' Text
+' ' Text
+'located' Text
+' ' Text
+'primarily' Text
+' ' Text
+'in' Text
+' ' Text
+'[[' Punctuation
+'Western Europe' Name.Tag
+']]' Punctuation
+'.' Text
+' ' Text
+'It' Text
+' ' Text
+'also' Text
+' ' Text
+'includes' Text
+' ' Text
+'[[' Punctuation
+'Overseas France' Name.Tag
+'|' Punctuation
+'overseas' Text
+' ' Text
+'regions' Text
+' ' Text
+'and' Text
+' ' Text
+'territories' Text
+']]' Punctuation
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Americas' Name.Tag
+']]' Punctuation
+' ' Text
+'and' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Atlantic Ocean' Name.Tag
+'|' Punctuation
+'Atlantic' Text
+']]' Punctuation
+',' Text
+' ' Text
+'[[' Punctuation
+'Pacific Ocean' Name.Tag
+'|' Punctuation
+'Pacific' Text
+']]' Punctuation
+' ' Text
+'and' Text
+' ' Text
+'[[' Punctuation
+'Indian Ocean' Name.Tag
+']]' Punctuation
+'s' Text
+',' Text
+'{{' Punctuation
+'Efn' Name.Tag
+'-' Name.Tag
+'ur' Name.Tag
+'|' Punctuation
+'name' Name.Label
+'=' Operator
+'twelve' Text
+'|' Punctuation
+'[[' Punctuation
+'French Guiana' Name.Tag
+']]' Punctuation
+' ' Text
+'is' Text
+' ' Text
+'in' Text
+' ' Text
+'South' Text
+' ' Text
+'America' Text
+';' Text
+' ' Text
+'[[' Punctuation
+'Guadeloupe' Name.Tag
+']]' Punctuation
+' ' Text
+'and' Text
+' ' Text
+'[[' Punctuation
+'Martinique' Name.Tag
+']]' Punctuation
+' ' Text
+'are' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'Caribbean' Text
+' ' Text
+'Sea' Text
+';' Text
+' ' Text
+'and' Text
+' ' Text
+'[[' Punctuation
+'Réunion' Name.Tag
+']]' Punctuation
+' ' Text
+'and' Text
+' ' Text
+'[[' Punctuation
+'Mayotte' Name.Tag
+']]' Punctuation
+' ' Text
+'are' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'Indian' Text
+' ' Text
+'Ocean' Text
+',' Text
+' ' Text
+'off' Text
+' ' Text
+'the' Text
+' ' Text
+'coast' Text
+' ' Text
+'of' Text
+' ' Text
+'Africa' Text
+'.' Text
+' ' Text
+'All' Text
+' ' Text
+'five' Text
+' ' Text
+'[[' Punctuation
+'Administrative divisions of France' Name.Tag
+'|' Punctuation
+'are' Text
+' ' Text
+'considered' Text
+' ' Text
+'integral' Text
+' ' Text
+'parts' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'French' Text
+' ' Text
+'Republic' Text
+']]' Punctuation
+'.' Text
+' ' Text
+'France' Text
+' ' Text
+'also' Text
+' ' Text
+'comprises' Text
+' ' Text
+'[[' Punctuation
+'Saint Pierre and Miquelon' Name.Tag
+']]' Punctuation
+' ' Text
+'in' Text
+' ' Text
+'North' Text
+' ' Text
+'America' Text
+';' Text
+' ' Text
+'[[' Punctuation
+'Saint Barthélemy' Name.Tag
+']]' Punctuation
+' ' Text
+'and' Text
+' ' Text
+'[[' Punctuation
+'Saint Martin (island)' Name.Tag
+'|' Punctuation
+'Saint' Text
+' ' Text
+'Martin' Text
+']]' Punctuation
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'Caribbean' Text
+';' Text
+' ' Text
+'[[' Punctuation
+'French Polynesia' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'[[' Punctuation
+'New Caledonia' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'[[' Punctuation
+'Wallis and Futuna' Name.Tag
+']]' Punctuation
+' ' Text
+'and' Text
+' ' Text
+'[[' Punctuation
+'Clipperton Island' Name.Tag
+']]' Punctuation
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'Pacific' Text
+' ' Text
+'Ocean' Text
+';' Text
+' ' Text
+'and' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'French Southern and Antarctic Lands' Name.Tag
+']]' Punctuation
+'.' Text
+'}}' Punctuation
+' ' Text
+'giving' Text
+' ' Text
+'it' Text
+' ' Text
+'one' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'largest' Text
+' ' Text
+'discontiguous' Text
+' ' Text
+'[[' Punctuation
+'exclusive economic zone' Name.Tag
+']]' Punctuation
+'s' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'world' Text
+'.' Text
+' ' Text
+'Its' Text
+' ' Text
+'[[' Punctuation
+'Metropolitan France' Name.Tag
+'|' Punctuation
+'metropolitan' Text
+' ' Text
+'area' Text
+']]' Punctuation
+' ' Text
+'extends' Text
+' ' Text
+'from' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Rhine' Name.Tag
+']]' Punctuation
+' ' Text
+'to' Text
+' ' Text
+'the' Text
+' ' Text
+'Atlantic' Text
+' ' Text
+'Ocean' Text
+' ' Text
+'and' Text
+' ' Text
+'from' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Mediterranean Sea' Name.Tag
+']]' Punctuation
+' ' Text
+'to' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'English Channel' Name.Tag
+']]' Punctuation
+' ' Text
+'and' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'North Sea' Name.Tag
+']]' Punctuation
+';' Text
+' ' Text
+'overseas' Text
+' ' Text
+'territories' Text
+' ' Text
+'include' Text
+' ' Text
+'[[' Punctuation
+'French Guiana' Name.Tag
+']]' Punctuation
+' ' Text
+'in' Text
+' ' Text
+'[[' Punctuation
+'South America' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'[[' Punctuation
+'Saint Pierre and Miquelon' Name.Tag
+']]' Punctuation
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'North' Text
+' ' Text
+'Atlantic' Text
+',' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'French West Indies' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'and' Text
+' ' Text
+'many' Text
+' ' Text
+'islands' Text
+' ' Text
+'in' Text
+' ' Text
+'[[' Punctuation
+'Oceania' Name.Tag
+']]' Punctuation
+' ' Text
+'and' Text
+' ' Text
+'the' Text
+' ' Text
+'Indian' Text
+' ' Text
+'Ocean' Text
+'.' Text
+' ' Text
+'Its' Text
+' ' Text
+'[[' Punctuation
+'Regions of France' Name.Tag
+'|' Punctuation
+'eighteen' Text
+' ' Text
+'integral' Text
+' ' Text
+'regions' Text
+']]' Punctuation
+' ' Text
+'(' Text
+'five' Text
+' ' Text
+'of' Text
+' ' Text
+'which' Text
+' ' Text
+'are' Text
+' ' Text
+'overseas' Text
+')' Text
+' ' Text
+'span' Text
+' ' Text
+'a' Text
+' ' Text
+'combined' Text
+' ' Text
+'area' Text
+' ' Text
+'of' Text
+' ' Text
+'{{' Punctuation
+'Cvt' Name.Tag
+'|' Punctuation
+'643801' Text
+'|' Punctuation
+'km2' Text
+'}}' Punctuation
+' ' Text
+'and' Text
+' ' Text
+'had' Text
+' ' Text
+'a' Text
+' ' Text
+'total' Text
+' ' Text
+'population' Text
+' ' Text
+'of' Text
+' ' Text
+'over' Text
+' ' Text
+'68' Text
+' ' Text
+'million' Text
+' ' Text
+'{{' Punctuation
+'As' Name.Tag
+' ' Name.Tag
+'of' Name.Tag
+'|' Punctuation
+'2023' Text
+'|' Punctuation
+'January' Text
+'|' Punctuation
+'lc' Name.Label
+'=' Operator
+'y' Text
+'}}' Punctuation
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+' ' Text.Whitespace
+'name' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+'Field' Literal.String.Double
+' ' Literal.String.Double
+'Listing' Literal.String.Double
+' ' Literal.String.Double
+':' Literal.String.Double
+':' Literal.String.Double
+' ' Literal.String.Double
+'Area' Literal.String.Double
+'"' Literal.String.Double
+' ' Text.Whitespace
+'/>' Punctuation
+'<' Punctuation
+'ref' Name.Tag
+' ' Text.Whitespace
+'name' Name.Attribute
+'=' Operator
+'pop_est' Literal.String
+'/>' Punctuation
+' ' Text
+'France' Text
+' ' Text
+'is' Text
+' ' Text
+'a' Text
+' ' Text
+'[[' Punctuation
+'Unitary state' Name.Tag
+'|' Punctuation
+'unitary' Text
+']]' Punctuation
+' ' Text
+'[[' Punctuation
+'Semi-presidential system' Name.Tag
+'|' Punctuation
+'semi' Text
+'-' Text
+'presidential' Text
+']]' Punctuation
+' ' Text
+'[[' Punctuation
+'republic' Name.Tag
+']]' Punctuation
+' ' Text
+'with' Text
+' ' Text
+'its' Text
+' ' Text
+'capital' Text
+' ' Text
+'in' Text
+' ' Text
+'[[' Punctuation
+'Paris' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'the' Text
+' ' Text
+'country' Text
+"'" Text
+'s' Text
+' ' Text
+'[[' Punctuation
+'List of communes in France with over 20,000 inhabitants' Name.Tag
+'|' Punctuation
+'largest' Text
+' ' Text
+'city' Text
+']]' Punctuation
+' ' Text
+'and' Text
+' ' Text
+'main' Text
+' ' Text
+'cultural' Text
+' ' Text
+'and' Text
+' ' Text
+'commercial' Text
+' ' Text
+'centre' Text
+';' Text
+' ' Text
+'other' Text
+' ' Text
+'major' Text
+' ' Text
+'[[' Punctuation
+'Urban area (France)' Name.Tag
+'|' Punctuation
+'urban' Text
+' ' Text
+'areas' Text
+']]' Punctuation
+' ' Text
+'include' Text
+' ' Text
+'[[' Punctuation
+'Marseille' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'[[' Punctuation
+'Lyon' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'[[' Punctuation
+'Toulouse' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'[[' Punctuation
+'Lille' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'[[' Punctuation
+'Bordeaux' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'and' Text
+' ' Text
+'[[' Punctuation
+'Nice' Name.Tag
+']]' Punctuation
+'.' Text
+'\n' Text
+
+'\n' Text
+
+'Inhabited' Text
+' ' Text
+'since' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Upper Paleolithic' Name.Tag
+'|' Punctuation
+'Palaeolithic' Text
+']]' Punctuation
+' ' Text
+'era' Text
+',' Text
+' ' Text
+'the' Text
+' ' Text
+'territory' Text
+' ' Text
+'of' Text
+' ' Text
+'Metropolitan' Text
+' ' Text
+'France' Text
+' ' Text
+'was' Text
+' ' Text
+'settled' Text
+' ' Text
+'by' Text
+' ' Text
+'[[' Punctuation
+'List of ancient Celtic peoples and tribes' Name.Tag
+'|' Punctuation
+'Celtic' Text
+' ' Text
+'tribes' Text
+']]' Punctuation
+' ' Text
+'known' Text
+' ' Text
+'as' Text
+' ' Text
+'[[' Punctuation
+'Gauls' Name.Tag
+']]' Punctuation
+' ' Text
+'during' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Iron Age' Name.Tag
+']]' Punctuation
+'.' Text
+' ' Text
+'[[' Punctuation
+'Roman Gaul' Name.Tag
+'|' Punctuation
+'Rome' Text
+' ' Text
+'annexed' Text
+' ' Text
+'the' Text
+' ' Text
+'area' Text
+']]' Punctuation
+' ' Text
+'in' Text
+' ' Text
+'51' Text
+' ' Text
+'BC' Text
+',' Text
+' ' Text
+'leading' Text
+' ' Text
+'to' Text
+' ' Text
+'a' Text
+' ' Text
+'distinct' Text
+' ' Text
+'[[' Punctuation
+'Gallo-Roman culture' Name.Tag
+']]' Punctuation
+' ' Text
+'that' Text
+' ' Text
+'laid' Text
+' ' Text
+'the' Text
+' ' Text
+'foundation' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'French language' Name.Tag
+']]' Punctuation
+'.' Text
+' ' Text
+'The' Text
+' ' Text
+'[[' Punctuation
+'Germanic peoples' Name.Tag
+'|' Punctuation
+'Germanic' Text
+']]' Punctuation
+' ' Text
+'[[' Punctuation
+'Franks' Name.Tag
+']]' Punctuation
+' ' Text
+'formed' Text
+' ' Text
+'the' Text
+' ' Text
+'Kingdom' Text
+' ' Text
+'of' Text
+' ' Text
+'[[' Punctuation
+'Francia' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'which' Text
+' ' Text
+'became' Text
+' ' Text
+'the' Text
+' ' Text
+'heartland' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Carolingian Empire' Name.Tag
+']]' Punctuation
+'.' Text
+' ' Text
+'The' Text
+' ' Text
+'[[' Punctuation
+'Treaty of Verdun' Name.Tag
+']]' Punctuation
+' ' Text
+'of' Text
+' ' Text
+'843' Text
+' ' Text
+'partitioned' Text
+' ' Text
+'the' Text
+' ' Text
+'empire' Text
+',' Text
+' ' Text
+'with' Text
+' ' Text
+'[[' Punctuation
+'West Francia' Name.Tag
+']]' Punctuation
+' ' Text
+'becoming' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Kingdom of France' Name.Tag
+']]' Punctuation
+' ' Text
+'in' Text
+' ' Text
+'987' Text
+'.' Text
+' ' Text
+'In' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'High Middle Ages' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'France' Text
+' ' Text
+'was' Text
+' ' Text
+'a' Text
+' ' Text
+'powerful' Text
+' ' Text
+'but' Text
+' ' Text
+'highly' Text
+' ' Text
+'decentralised' Text
+' ' Text
+'[[' Punctuation
+'Feudalism' Name.Tag
+'|' Punctuation
+'feudal' Text
+']]' Punctuation
+' ' Text
+'kingdom' Text
+'.' Text
+' ' Text
+'[[' Punctuation
+'Philip II of France' Name.Tag
+'|' Punctuation
+'Philip' Text
+' ' Text
+'II' Text
+']]' Punctuation
+' ' Text
+'successfully' Text
+' ' Text
+'strengthened' Text
+' ' Text
+'royal' Text
+' ' Text
+'power' Text
+' ' Text
+'and' Text
+' ' Text
+'[[' Punctuation
+'Battle of Bouvines' Name.Tag
+'|' Punctuation
+'defeated' Text
+' ' Text
+'his' Text
+' ' Text
+'rivals' Text
+']]' Punctuation
+' ' Text
+'to' Text
+' ' Text
+'double' Text
+' ' Text
+'the' Text
+' ' Text
+'size' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Crown lands of France' Name.Tag
+'|' Punctuation
+'crown' Text
+' ' Text
+'lands' Text
+']]' Punctuation
+';' Text
+' ' Text
+'by' Text
+' ' Text
+'the' Text
+' ' Text
+'end' Text
+' ' Text
+'of' Text
+' ' Text
+'his' Text
+' ' Text
+'reign' Text
+',' Text
+' ' Text
+'France' Text
+' ' Text
+'had' Text
+' ' Text
+'emerged' Text
+' ' Text
+'as' Text
+' ' Text
+'the' Text
+' ' Text
+'most' Text
+' ' Text
+'powerful' Text
+' ' Text
+'state' Text
+' ' Text
+'in' Text
+' ' Text
+'Europe' Text
+'.' Text
+' ' Text
+'From' Text
+' ' Text
+'the' Text
+' ' Text
+'mid' Text
+'-' Text
+'14th' Text
+' ' Text
+'to' Text
+' ' Text
+'the' Text
+' ' Text
+'mid' Text
+'-' Text
+'15th' Text
+' ' Text
+'century' Text
+',' Text
+' ' Text
+'France' Text
+' ' Text
+'was' Text
+' ' Text
+'plunged' Text
+' ' Text
+'into' Text
+' ' Text
+'a' Text
+' ' Text
+'series' Text
+' ' Text
+'of' Text
+' ' Text
+'dynastic' Text
+' ' Text
+'conflicts' Text
+' ' Text
+'involving' Text
+' ' Text
+'[[' Punctuation
+'Kingdom of England' Name.Tag
+'|' Punctuation
+'England' Text
+']]' Punctuation
+',' Text
+' ' Text
+'collectively' Text
+' ' Text
+'known' Text
+' ' Text
+'as' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+"Hundred Years' War" Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'and' Text
+' ' Text
+'a' Text
+' ' Text
+'distinct' Text
+' ' Text
+'French' Text
+' ' Text
+'identity' Text
+' ' Text
+'emerged' Text
+' ' Text
+'as' Text
+' ' Text
+'a' Text
+' ' Text
+'result' Text
+'.' Text
+' ' Text
+'The' Text
+' ' Text
+'[[' Punctuation
+'French Renaissance' Name.Tag
+']]' Punctuation
+' ' Text
+'saw' Text
+' ' Text
+'art' Text
+' ' Text
+'and' Text
+' ' Text
+'culture' Text
+' ' Text
+'flourish' Text
+',' Text
+' ' Text
+'conflict' Text
+' ' Text
+'with' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'House of Habsburg' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'and' Text
+' ' Text
+'the' Text
+' ' Text
+'establishment' Text
+' ' Text
+'of' Text
+' ' Text
+'a' Text
+' ' Text
+'[[' Punctuation
+'French colonial empire' Name.Tag
+'|' Punctuation
+'global' Text
+' ' Text
+'colonial' Text
+' ' Text
+'empire' Text
+']]' Punctuation
+',' Text
+' ' Text
+'which' Text
+' ' Text
+'by' Text
+' ' Text
+'the' Text
+' ' Text
+'20th' Text
+' ' Text
+'century' Text
+' ' Text
+'would' Text
+' ' Text
+'become' Text
+' ' Text
+'the' Text
+' ' Text
+'second' Text
+'-' Text
+'largest' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'world' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+' ' Text.Whitespace
+'name' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+':' Literal.String.Double
+'8' Literal.String.Double
+'"' Literal.String.Double
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'book' Name.Tag
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'books' Text
+'.' Text
+'google' Text
+'.' Text
+'com' Text
+'/' Text
+'books' Text
+'?' Text
+'id' Text
+'=' Text
+'UX8aeX_Lbi4C' Text
+'&' Text
+'pg' Text
+'=' Text
+'PA1' Text
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Memory' Text
+',' Text
+' ' Text
+'Empire' Text
+',' Text
+' ' Text
+'and' Text
+' ' Text
+'Postcolonialism' Text
+':' Text
+' ' Text
+'Legacies' Text
+' ' Text
+'of' Text
+' ' Text
+'French' Text
+' ' Text
+'Colonialism' Text
+' ' Text
+'|' Punctuation
+'publisher' Name.Label
+'=' Operator
+'Lexington' Text
+' ' Text
+'Books' Text
+' ' Text
+'|' Punctuation
+'year' Name.Label
+'=' Operator
+'2005' Text
+' ' Text
+'|' Punctuation
+'isbn' Name.Label
+'=' Operator
+'978' Text
+'-' Text
+'0' Text
+'-' Text
+'7391' Text
+'-' Text
+'0821' Text
+'-' Text
+'5' Text
+' ' Text
+'|' Punctuation
+'editor-last' Name.Label
+'=' Operator
+'Hargreaves' Text
+',' Text
+' ' Text
+'Alan' Text
+' ' Text
+'G' Text
+'.' Text
+' ' Text
+'|' Punctuation
+'page' Name.Label
+'=' Operator
+'1' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'The' Text
+' ' Text
+'second' Text
+' ' Text
+'half' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'16th' Text
+' ' Text
+'century' Text
+' ' Text
+'was' Text
+' ' Text
+'dominated' Text
+' ' Text
+'by' Text
+' ' Text
+'[[' Punctuation
+'French Wars of Religion' Name.Tag
+'|' Punctuation
+'religious' Text
+' ' Text
+'civil' Text
+' ' Text
+'wars' Text
+']]' Punctuation
+' ' Text
+'between' Text
+' ' Text
+'[[' Punctuation
+'Catholic Church' Name.Tag
+'|' Punctuation
+'Catholics' Text
+']]' Punctuation
+' ' Text
+'and' Text
+' ' Text
+'[[' Punctuation
+'Huguenots' Name.Tag
+']]' Punctuation
+' ' Text
+'that' Text
+' ' Text
+'severely' Text
+' ' Text
+'weakened' Text
+' ' Text
+'the' Text
+' ' Text
+'country' Text
+'.' Text
+' ' Text
+'France' Text
+' ' Text
+'again' Text
+' ' Text
+'emerged' Text
+' ' Text
+'as' Text
+' ' Text
+'Europe' Text
+"'" Text
+'s' Text
+' ' Text
+'dominant' Text
+' ' Text
+'power' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'17th' Text
+' ' Text
+'century' Text
+' ' Text
+'under' Text
+' ' Text
+'[[' Punctuation
+'Louis XIV' Name.Tag
+']]' Punctuation
+' ' Text
+'following' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+"Thirty Years' War" Name.Tag
+']]' Punctuation
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'book' Name.Tag
+' ' Text
+'|' Punctuation
+'last1' Name.Label
+'=' Operator
+'R' Text
+'.' Text
+'R' Text
+'.' Text
+' ' Text
+'Palmer' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'archive' Text
+'.' Text
+'org' Text
+'/' Text
+'details' Text
+'/' Text
+'historyofmodernw00palm' Text
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'A' Text
+' ' Text
+'History' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'Modern' Text
+' ' Text
+'World' Text
+' ' Text
+'|' Punctuation
+'last2' Name.Label
+'=' Operator
+'Joel' Text
+' ' Text
+'Colton' Text
+' ' Text
+'|' Punctuation
+'year' Name.Label
+'=' Operator
+'1978' Text
+' ' Text
+'|' Punctuation
+'edition' Name.Label
+'=' Operator
+'5th' Text
+' ' Text
+'|' Punctuation
+'page' Name.Label
+'=' Operator
+'[' Punctuation
+'https://archive.org/details/historyofmodernw00palm/page/161' Name.Label
+' ' Text.Whitespace
+'161' Text
+']' Punctuation
+' ' Text
+'|' Punctuation
+'url-access' Name.Label
+'=' Operator
+'registration' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'Inadequate' Text
+' ' Text
+'economic' Text
+' ' Text
+'policies' Text
+',' Text
+' ' Text
+'inequitable' Text
+' ' Text
+'taxes' Text
+' ' Text
+'and' Text
+' ' Text
+'frequent' Text
+' ' Text
+'wars' Text
+' ' Text
+'(' Text
+'notably' Text
+' ' Text
+'a' Text
+' ' Text
+'defeat' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+"Seven Years' War" Name.Tag
+']]' Punctuation
+' ' Text
+'and' Text
+' ' Text
+'costly' Text
+' ' Text
+'[[' Punctuation
+'France in the American Revolutionary War' Name.Tag
+'|' Punctuation
+'involvement' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'American' Text
+' ' Text
+'War' Text
+' ' Text
+'of' Text
+' ' Text
+'Independence' Text
+']]' Punctuation
+')' Text
+' ' Text
+'left' Text
+' ' Text
+'the' Text
+' ' Text
+'kingdom' Text
+' ' Text
+'in' Text
+' ' Text
+'a' Text
+' ' Text
+'precarious' Text
+' ' Text
+'economic' Text
+' ' Text
+'situation' Text
+' ' Text
+'by' Text
+' ' Text
+'the' Text
+' ' Text
+'end' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'18th' Text
+' ' Text
+'century' Text
+'.' Text
+' ' Text
+'This' Text
+' ' Text
+'precipitated' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'French Revolution' Name.Tag
+']]' Punctuation
+' ' Text
+'of' Text
+' ' Text
+'1789' Text
+',' Text
+' ' Text
+'which' Text
+' ' Text
+'overthrew' Text
+' ' Text
+'the' Text
+' ' Text
+'{{' Punctuation
+'Lang' Name.Tag
+'|' Punctuation
+'fr' Text
+'|' Punctuation
+'[[' Punctuation
+'Ancien Régime' Name.Tag
+']]' Punctuation
+'|' Punctuation
+'italic' Name.Label
+'=' Operator
+'no' Text
+'}}' Punctuation
+' ' Text
+'and' Text
+' ' Text
+'produced' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Declaration of the Rights of Man and of the Citizen' Name.Tag
+'|' Punctuation
+'Declaration' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'Rights' Text
+' ' Text
+'of' Text
+' ' Text
+'Man' Text
+']]' Punctuation
+',' Text
+' ' Text
+'which' Text
+' ' Text
+'expresses' Text
+' ' Text
+'the' Text
+' ' Text
+'nation' Text
+"'" Text
+'s' Text
+' ' Text
+'ideals' Text
+' ' Text
+'to' Text
+' ' Text
+'this' Text
+' ' Text
+'day' Text
+'.' Text
+'\n' Text
+
+'\n' Text
+
+'France' Text
+' ' Text
+'reached' Text
+' ' Text
+'its' Text
+' ' Text
+'political' Text
+' ' Text
+'and' Text
+' ' Text
+'military' Text
+' ' Text
+'zenith' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'early' Text
+' ' Text
+'19th' Text
+' ' Text
+'century' Text
+' ' Text
+'under' Text
+' ' Text
+'[[' Punctuation
+'Napoleon' Name.Tag
+'|' Punctuation
+'Napoleon' Text
+' ' Text
+'Bonaparte' Text
+']]' Punctuation
+',' Text
+' ' Text
+'subjugating' Text
+' ' Text
+'much' Text
+' ' Text
+'of' Text
+' ' Text
+'continental' Text
+' ' Text
+'Europe' Text
+' ' Text
+'and' Text
+' ' Text
+'establishing' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'First French Empire' Name.Tag
+']]' Punctuation
+'.' Text
+' ' Text
+'The' Text
+' ' Text
+'[[' Punctuation
+'French Revolutionary Wars' Name.Tag
+'|' Punctuation
+'French' Text
+' ' Text
+'Revolutionary' Text
+']]' Punctuation
+' ' Text
+'and' Text
+' ' Text
+'[[' Punctuation
+'Napoleonic Wars' Name.Tag
+']]' Punctuation
+' ' Text
+'shaped' Text
+' ' Text
+'the' Text
+' ' Text
+'course' Text
+' ' Text
+'of' Text
+' ' Text
+'European' Text
+' ' Text
+'and' Text
+' ' Text
+'world' Text
+' ' Text
+'history' Text
+'.' Text
+' ' Text
+'The' Text
+' ' Text
+'collapse' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'empire' Text
+' ' Text
+'initiated' Text
+' ' Text
+'a' Text
+' ' Text
+'period' Text
+' ' Text
+'of' Text
+' ' Text
+'relative' Text
+' ' Text
+'decline' Text
+',' Text
+' ' Text
+'in' Text
+' ' Text
+'which' Text
+' ' Text
+'France' Text
+' ' Text
+'endured' Text
+' ' Text
+'a' Text
+' ' Text
+'tumultuous' Text
+' ' Text
+'succession' Text
+' ' Text
+'of' Text
+' ' Text
+'governments' Text
+' ' Text
+'until' Text
+' ' Text
+'the' Text
+' ' Text
+'founding' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'French Third Republic' Name.Tag
+']]' Punctuation
+' ' Text
+'during' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Franco-Prussian War' Name.Tag
+']]' Punctuation
+' ' Text
+'in' Text
+' ' Text
+'1870' Text
+'.' Text
+' ' Text
+'Subsequent' Text
+' ' Text
+'decades' Text
+' ' Text
+'saw' Text
+' ' Text
+'a' Text
+' ' Text
+'period' Text
+' ' Text
+'of' Text
+' ' Text
+'optimism' Text
+',' Text
+' ' Text
+'cultural' Text
+' ' Text
+'and' Text
+' ' Text
+'scientific' Text
+' ' Text
+'flourishing' Text
+',' Text
+' ' Text
+'as' Text
+' ' Text
+'well' Text
+' ' Text
+'as' Text
+' ' Text
+'economic' Text
+' ' Text
+'prosperity' Text
+',' Text
+' ' Text
+'known' Text
+' ' Text
+'as' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Belle Époque' Name.Tag
+']]' Punctuation
+'.' Text
+' ' Text
+'France' Text
+' ' Text
+'was' Text
+' ' Text
+'one' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Triple Entente' Name.Tag
+'|' Punctuation
+'major' Text
+' ' Text
+'participants' Text
+']]' Punctuation
+' ' Text
+'of' Text
+' ' Text
+'[[' Punctuation
+'World War I' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'from' Text
+' ' Text
+'which' Text
+' ' Text
+'it' Text
+' ' Text
+'[[' Punctuation
+'Treaty of Versailles' Name.Tag
+'|' Punctuation
+'emerged' Text
+' ' Text
+'victorious' Text
+']]' Punctuation
+' ' Text
+'at' Text
+' ' Text
+'a' Text
+' ' Text
+'great' Text
+' ' Text
+'human' Text
+' ' Text
+'and' Text
+' ' Text
+'economic' Text
+' ' Text
+'cost' Text
+'.' Text
+' ' Text
+'It' Text
+' ' Text
+'was' Text
+' ' Text
+'among' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Allies of World War II' Name.Tag
+'|' Punctuation
+'Allied' Text
+' ' Text
+'powers' Text
+']]' Punctuation
+' ' Text
+'of' Text
+' ' Text
+'[[' Punctuation
+'World War II' Name.Tag
+']]' Punctuation
+' ' Text
+'but' Text
+' ' Text
+'was' Text
+' ' Text
+'soon' Text
+' ' Text
+'[[' Punctuation
+'German military administration in occupied France during World War II' Name.Tag
+'|' Punctuation
+'occupied' Text
+']]' Punctuation
+' ' Text
+'by' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Axis powers' Name.Tag
+'|' Punctuation
+'Axis' Text
+']]' Punctuation
+' ' Text
+'in' Text
+' ' Text
+'1940' Text
+'.' Text
+' ' Text
+'Following' Text
+' ' Text
+'[[' Punctuation
+'Liberation of France' Name.Tag
+'|' Punctuation
+'liberation' Text
+']]' Punctuation
+' ' Text
+'in' Text
+' ' Text
+'1944' Text
+',' Text
+' ' Text
+'the' Text
+' ' Text
+'short' Text
+'-' Text
+'lived' Text
+' ' Text
+'[[' Punctuation
+'French Fourth Republic' Name.Tag
+'|' Punctuation
+'Fourth' Text
+' ' Text
+'Republic' Text
+']]' Punctuation
+' ' Text
+'was' Text
+' ' Text
+'established' Text
+' ' Text
+'and' Text
+' ' Text
+'later' Text
+' ' Text
+'dissolved' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'course' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Algerian War' Name.Tag
+']]' Punctuation
+'.' Text
+' ' Text
+'The' Text
+' ' Text
+'current' Text
+' ' Text
+'[[' Punctuation
+'French Fifth Republic' Name.Tag
+'|' Punctuation
+'Fifth' Text
+' ' Text
+'Republic' Text
+']]' Punctuation
+' ' Text
+'was' Text
+' ' Text
+'formed' Text
+' ' Text
+'in' Text
+' ' Text
+'1958' Text
+' ' Text
+'by' Text
+' ' Text
+'[[' Punctuation
+'Charles de Gaulle' Name.Tag
+']]' Punctuation
+'.' Text
+' ' Text
+'Algeria' Text
+' ' Text
+'and' Text
+' ' Text
+'most' Text
+' ' Text
+'French' Text
+' ' Text
+'colonies' Text
+' ' Text
+'became' Text
+' ' Text
+'independent' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'1960s' Text
+',' Text
+' ' Text
+'with' Text
+' ' Text
+'the' Text
+' ' Text
+'majority' Text
+' ' Text
+'retaining' Text
+' ' Text
+'[[' Punctuation
+'Françafrique' Name.Tag
+'|' Punctuation
+'close' Text
+' ' Text
+'economic' Text
+' ' Text
+'and' Text
+' ' Text
+'military' Text
+' ' Text
+'ties' Text
+' ' Text
+'with' Text
+' ' Text
+'France' Text
+']]' Punctuation
+'.' Text
+'\n' Text
+
+'\n' Text
+
+'France' Text
+' ' Text
+'retains' Text
+' ' Text
+'its' Text
+' ' Text
+'centuries' Text
+'-' Text
+'long' Text
+' ' Text
+'status' Text
+' ' Text
+'as' Text
+' ' Text
+'a' Text
+' ' Text
+'global' Text
+' ' Text
+'centre' Text
+' ' Text
+'of' Text
+' ' Text
+'[[' Punctuation
+'French art' Name.Tag
+'|' Punctuation
+'art' Text
+']]' Punctuation
+',' Text
+' ' Text
+'[[' Punctuation
+'List of French scientists' Name.Tag
+'|' Punctuation
+'science' Text
+']]' Punctuation
+' ' Text
+'and' Text
+' ' Text
+'[[' Punctuation
+'List of French philosophers' Name.Tag
+'|' Punctuation
+'philosophy' Text
+']]' Punctuation
+'.' Text
+' ' Text
+'It' Text
+' ' Text
+'[[' Punctuation
+'List of World Heritage Sites in France' Name.Tag
+'|' Punctuation
+'hosts' Text
+']]' Punctuation
+' ' Text
+'the' Text
+' ' Text
+'fifth' Text
+'-' Text
+'largest' Text
+' ' Text
+'number' Text
+' ' Text
+'of' Text
+' ' Text
+'UNESCO' Text
+' ' Text
+'[[' Punctuation
+'World Heritage Site' Name.Tag
+']]' Punctuation
+'s' Text
+' ' Text
+'and' Text
+' ' Text
+'is' Text
+' ' Text
+'the' Text
+' ' Text
+'world' Text
+"'" Text
+'s' Text
+' ' Text
+'leading' Text
+' ' Text
+'tourist' Text
+' ' Text
+'destination' Text
+',' Text
+' ' Text
+'receiving' Text
+' ' Text
+'over' Text
+' ' Text
+'89' Text
+'&nbsp;' Name.Entity
+'million' Text
+' ' Text
+'foreign' Text
+' ' Text
+'[[' Punctuation
+'Tourism in France' Name.Tag
+'|' Punctuation
+'visitors' Text
+']]' Punctuation
+' ' Text
+'in' Text
+' ' Text
+'2018' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'date' Name.Label
+'=' Operator
+'17' Text
+' ' Text
+'May' Text
+' ' Text
+'2019' Text
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'France' Text
+' ' Text
+'posts' Text
+' ' Text
+'new' Text
+' ' Text
+'tourist' Text
+' ' Text
+'record' Text
+' ' Text
+'despite' Text
+' ' Text
+'Yellow' Text
+' ' Text
+'Vest' Text
+' ' Text
+'unrest' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'france24' Text
+'.' Text
+'com' Text
+'/' Text
+'en' Text
+'/' Text
+'20190517' Text
+'-' Text
+'france' Text
+'-' Text
+'tourism' Text
+'-' Text
+'record' Text
+'-' Text
+'number' Text
+'-' Text
+'visitors' Text
+'-' Text
+'tourists' Text
+'-' Text
+'despite' Text
+'-' Text
+'yellow' Text
+'-' Text
+'vests' Text
+'-' Text
+'paris' Text
+' ' Text
+'|' Punctuation
+'website' Name.Label
+'=' Operator
+'France' Text
+' ' Text
+'24' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'France' Text
+' ' Text
+'is' Text
+' ' Text
+'a' Text
+' ' Text
+'[[' Punctuation
+'developed country' Name.Tag
+']]' Punctuation
+' ' Text
+'ranked' Text
+' ' Text
+'28th' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Human Development Index' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'with' Text
+' ' Text
+'the' Text
+' ' Text
+'world' Text
+"'" Text
+'s' Text
+' ' Text
+'[[' Punctuation
+'List of countries by GDP (nominal)' Name.Tag
+'|' Punctuation
+'seventh' Text
+'-' Text
+'largest' Text
+' ' Text
+'economy' Text
+' ' Text
+'by' Text
+' ' Text
+'nominal' Text
+' ' Text
+'GDP' Text
+']]' Punctuation
+' ' Text
+'and' Text
+' ' Text
+'[[' Punctuation
+'List of countries by GDP (PPP)' Name.Tag
+'|' Punctuation
+'tenth' Text
+'-' Text
+'largest' Text
+' ' Text
+'by' Text
+' ' Text
+'PPP' Text
+']]' Punctuation
+';' Text
+' ' Text
+'in' Text
+' ' Text
+'terms' Text
+' ' Text
+'of' Text
+' ' Text
+'aggregate' Text
+' ' Text
+'household' Text
+' ' Text
+'wealth' Text
+',' Text
+' ' Text
+'it' Text
+' ' Text
+'ranks' Text
+' ' Text
+'fourth' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'world' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'date' Name.Label
+'=' Operator
+'October' Text
+' ' Text
+'2010' Text
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Global' Text
+' ' Text
+'Wealth' Text
+' ' Text
+'Report' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'piketty' Text
+'.' Text
+'pse' Text
+'.' Text
+'ens' Text
+'.' Text
+'fr' Text
+'/' Text
+'fichiers' Text
+'/' Text
+'enseig' Text
+'/' Text
+'ecoineg' Text
+'/' Text
+'EcoIneg_fichiers' Text
+'/' Text
+'DaviesShorrocks2010' Text
+'(' Text
+'CSGlobalWealthReport' Text
+')' Text
+'.' Text
+'pdf' Text
+' ' Text
+'|' Punctuation
+'url-status' Name.Label
+'=' Operator
+'live' Text
+' ' Text
+'|' Punctuation
+'archive-url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'web' Text
+'.' Text
+'archive' Text
+'.' Text
+'org' Text
+'/' Text
+'web' Text
+'/' Text
+'20141109055804' Text
+'/' Text
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'piketty' Text
+'.' Text
+'pse' Text
+'.' Text
+'ens' Text
+'.' Text
+'fr' Text
+'/' Text
+'fichiers' Text
+'/' Text
+'enseig' Text
+'/' Text
+'ecoineg' Text
+'/' Text
+'EcoIneg_fichiers' Text
+'/' Text
+'DaviesShorrocks2010' Text
+'%' Text
+'28CSGlobalWealthReport' Text
+'%' Text
+'29' Text
+'.' Text
+'pdf' Text
+' ' Text
+'|' Punctuation
+'archive-date' Name.Label
+'=' Operator
+'9' Text
+' ' Text
+'November' Text
+' ' Text
+'2014' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'27' Text
+' ' Text
+'October' Text
+' ' Text
+'2014' Text
+' ' Text
+'|' Punctuation
+'publisher' Name.Label
+'=' Operator
+'Credit' Text
+' ' Text
+'Suisse' Text
+' ' Text
+'|' Punctuation
+'quote' Name.Label
+'=' Operator
+'"' Text
+'In' Text
+' ' Text
+'euro' Text
+' ' Text
+'and' Text
+' ' Text
+'USD' Text
+' ' Text
+'terms' Text
+',' Text
+' ' Text
+'the' Text
+' ' Text
+'total' Text
+' ' Text
+'wealth' Text
+' ' Text
+'of' Text
+' ' Text
+'French' Text
+' ' Text
+'households' Text
+' ' Text
+'is' Text
+' ' Text
+'very' Text
+' ' Text
+'sizeable' Text
+'.' Text
+' ' Text
+'Although' Text
+' ' Text
+'it' Text
+' ' Text
+'has' Text
+' ' Text
+'just' Text
+' ' Text
+'1' Text
+'%' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'world' Text
+"'" Text
+'s' Text
+' ' Text
+'adults' Text
+',' Text
+' ' Text
+'France' Text
+' ' Text
+'ranks' Text
+' ' Text
+'fourth' Text
+' ' Text
+'among' Text
+' ' Text
+'nations' Text
+' ' Text
+'in' Text
+' ' Text
+'aggregate' Text
+' ' Text
+'household' Text
+' ' Text
+'wealth' Text
+'&nbsp;' Name.Entity
+'–' Text
+' ' Text
+'behind' Text
+' ' Text
+'China' Text
+' ' Text
+'and' Text
+' ' Text
+'just' Text
+' ' Text
+'ahead' Text
+' ' Text
+'of' Text
+' ' Text
+'Germany' Text
+'.' Text
+' ' Text
+'Europe' Text
+' ' Text
+'as' Text
+' ' Text
+'a' Text
+' ' Text
+'whole' Text
+' ' Text
+'accounts' Text
+' ' Text
+'for' Text
+' ' Text
+'35' Text
+'%' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'individuals' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'global' Text
+' ' Text
+'top' Text
+' ' Text
+'1' Text
+'%' Text
+',' Text
+' ' Text
+'but' Text
+' ' Text
+'France' Text
+' ' Text
+'itself' Text
+' ' Text
+'contributes' Text
+' ' Text
+'a' Text
+' ' Text
+'quarter' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'European' Text
+' ' Text
+'contingent' Text
+'.' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'France' Text
+' ' Text
+'performs' Text
+' ' Text
+'well' Text
+' ' Text
+'in' Text
+' ' Text
+'[[' Punctuation
+'International rankings of France' Name.Tag
+'|' Punctuation
+'international' Text
+' ' Text
+'rankings' Text
+']]' Punctuation
+' ' Text
+'of' Text
+' ' Text
+'[[' Punctuation
+'Education in France' Name.Tag
+'|' Punctuation
+'education' Text
+']]' Punctuation
+',' Text
+' ' Text
+'[[' Punctuation
+'Health care in France' Name.Tag
+'|' Punctuation
+'health' Text
+' ' Text
+'care' Text
+']]' Punctuation
+',' Text
+' ' Text
+'and' Text
+' ' Text
+'[[' Punctuation
+'List of countries by life expectancy' Name.Tag
+'|' Punctuation
+'life' Text
+' ' Text
+'expectancy' Text
+']]' Punctuation
+'.' Text
+' ' Text
+'It' Text
+' ' Text
+'remains' Text
+' ' Text
+'a' Text
+' ' Text
+'[[' Punctuation
+'great power' Name.Tag
+']]' Punctuation
+' ' Text
+'in' Text
+' ' Text
+'global' Text
+' ' Text
+'affairs' Text
+',' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'Jack' Text
+' ' Text
+'S' Text
+'.' Text
+' ' Text
+'Levy' Text
+',' Text
+' ' Text
+"''" Generic.Emph
+'War' Generic.Emph
+' ' Generic.Emph
+'in' Generic.Emph
+' ' Generic.Emph
+'the' Generic.Emph
+' ' Generic.Emph
+'Modern' Generic.Emph
+' ' Generic.Emph
+'Great' Generic.Emph
+' ' Generic.Emph
+'Power' Generic.Emph
+' ' Generic.Emph
+'System' Generic.Emph
+',' Generic.Emph
+' ' Generic.Emph
+'1495' Generic.Emph
+'–' Generic.Emph
+'1975' Generic.Emph
+"''" Generic.Emph
+',' Text
+' ' Text
+'(' Text
+'2014' Text
+')' Text
+' ' Text
+'p' Text
+'.' Text
+' ' Text
+'29' Text
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'being' Text
+' ' Text
+'one' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'five' Text
+' ' Text
+'[[' Punctuation
+'permanent members of the United Nations Security Council' Name.Tag
+']]' Punctuation
+' ' Text
+'and' Text
+' ' Text
+'an' Text
+' ' Text
+'official' Text
+' ' Text
+'[[' Punctuation
+'List of states with nuclear weapons' Name.Tag
+'|' Punctuation
+'nuclear' Text
+'-' Text
+'weapon' Text
+' ' Text
+'state' Text
+']]' Punctuation
+'.' Text
+' ' Text
+'France' Text
+' ' Text
+'is' Text
+' ' Text
+'a' Text
+' ' Text
+'founding' Text
+' ' Text
+'and' Text
+' ' Text
+'[[' Punctuation
+'Big Four (Western Europe)' Name.Tag
+'|' Punctuation
+'leading' Text
+']]' Punctuation
+' ' Text
+'[[' Punctuation
+'Member state of the European Union' Name.Tag
+'|' Punctuation
+'member' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'European' Text
+' ' Text
+'Union' Text
+']]' Punctuation
+' ' Text
+'and' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Eurozone' Name.Tag
+']]' Punctuation
+',' Text
+'<' Punctuation
+'ref' Name.Tag
+' ' Text.Whitespace
+'name' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+'superficy' Literal.String.Double
+'"' Literal.String.Double
+' ' Text.Whitespace
+'/>' Punctuation
+' ' Text
+'as' Text
+' ' Text
+'well' Text
+' ' Text
+'as' Text
+' ' Text
+'a' Text
+' ' Text
+'key' Text
+' ' Text
+'member' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Group of Seven' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'[[' Punctuation
+'NATO' Name.Tag
+'|' Punctuation
+'North' Text
+' ' Text
+'Atlantic' Text
+' ' Text
+'Treaty' Text
+' ' Text
+'Organization' Text
+']]' Punctuation
+' ' Text
+'(' Text
+'NATO' Text
+')' Text
+',' Text
+' ' Text
+'[[' Punctuation
+'OECD' Name.Tag
+'|' Punctuation
+'Organisation' Text
+' ' Text
+'for' Text
+' ' Text
+'Economic' Text
+' ' Text
+'Co' Text
+'-' Text
+'operation' Text
+' ' Text
+'and' Text
+' ' Text
+'Development' Text
+']]' Punctuation
+' ' Text
+'(' Text
+'OECD' Text
+')' Text
+' ' Text
+'and' Text
+' ' Text
+'[[' Punctuation
+'Organisation internationale de la Francophonie' Name.Tag
+'|' Punctuation
+'Francophonie' Text
+']]' Punctuation
+'.' Text
+'\n' Text
+
+'\n' Text
+
+'==' Generic.Subheading
+'Etymology and pronunciation' Generic.Subheading
+'==' Generic.Subheading
+'\n' Text.Whitespace
+
+'{{' Punctuation
+'Main' Name.Tag
+'|' Punctuation
+'Name' Text
+' ' Text
+'of' Text
+' ' Text
+'France' Text
+'}}' Punctuation
+'\n' Text
+
+'Originally' Text
+' ' Text
+'applied' Text
+' ' Text
+'to' Text
+' ' Text
+'the' Text
+' ' Text
+'whole' Text
+' ' Text
+'[[' Punctuation
+'Francia' Name.Tag
+'|' Punctuation
+'Frankish' Text
+' ' Text
+'Empire' Text
+']]' Punctuation
+',' Text
+' ' Text
+'the' Text
+' ' Text
+'name' Text
+' ' Text
+"''" Generic.Emph
+'France' Generic.Emph
+"''" Generic.Emph
+' ' Text
+'comes' Text
+' ' Text
+'from' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Latin' Name.Tag
+']]' Punctuation
+' ' Text
+'{{' Punctuation
+'Lang' Name.Tag
+'|' Punctuation
+'la' Text
+'|' Punctuation
+'[[' Punctuation
+'Francia' Name.Tag
+']]' Punctuation
+'}}' Punctuation
+',' Text
+' ' Text
+'or' Text
+' ' Text
+'"' Text
+'realm' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Franks' Name.Tag
+']]' Punctuation
+'"' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'History' Text
+' ' Text
+'of' Text
+' ' Text
+'France' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'discoverfrance' Text
+'.' Text
+'net' Text
+'/' Text
+'France' Text
+'/' Text
+'History' Text
+'/' Text
+'DF_history' Text
+'.' Text
+'shtml' Text
+' ' Text
+'|' Punctuation
+'url-status' Name.Label
+'=' Operator
+'dead' Text
+' ' Text
+'|' Punctuation
+'archive-url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'web' Text
+'.' Text
+'archive' Text
+'.' Text
+'org' Text
+'/' Text
+'web' Text
+'/' Text
+'20110824051936' Text
+'/' Text
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'discoverfrance' Text
+'.' Text
+'net' Text
+'/' Text
+'France' Text
+'/' Text
+'History' Text
+'/' Text
+'DF_history' Text
+'.' Text
+'shtml' Text
+' ' Text
+'|' Punctuation
+'archive-date' Name.Label
+'=' Operator
+'24' Text
+' ' Text
+'August' Text
+' ' Text
+'2011' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'17' Text
+' ' Text
+'July' Text
+' ' Text
+'2011' Text
+' ' Text
+'|' Punctuation
+'publisher' Name.Label
+'=' Operator
+'Discoverfrance' Text
+'.' Text
+'net' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'Modern' Text
+' ' Text
+'France' Text
+' ' Text
+'is' Text
+' ' Text
+'still' Text
+' ' Text
+'named' Text
+' ' Text
+'today' Text
+' ' Text
+'{{' Punctuation
+'Lang' Name.Tag
+'|' Punctuation
+'it' Text
+'|' Punctuation
+'Francia' Text
+'}}' Punctuation
+' ' Text
+'in' Text
+' ' Text
+'Italian' Text
+' ' Text
+'and' Text
+' ' Text
+'Spanish' Text
+',' Text
+' ' Text
+'while' Text
+' ' Text
+'{{' Punctuation
+'Lang' Name.Tag
+'|' Punctuation
+'de' Text
+'|' Punctuation
+'Frankreich' Text
+'}}' Punctuation
+' ' Text
+'in' Text
+' ' Text
+'German' Text
+',' Text
+' ' Text
+'{{' Punctuation
+'Lang' Name.Tag
+'|' Punctuation
+'nl' Text
+'|' Punctuation
+'Frankrijk' Text
+'}}' Punctuation
+' ' Text
+'in' Text
+' ' Text
+'Dutch' Text
+' ' Text
+'and' Text
+' ' Text
+'{{' Punctuation
+'Lang' Name.Tag
+'|' Punctuation
+'sv' Text
+'|' Punctuation
+'Frankrike' Text
+'}}' Punctuation
+' ' Text
+'in' Text
+' ' Text
+'Swedish' Text
+' ' Text
+'all' Text
+' ' Text
+'mean' Text
+' ' Text
+'"' Text
+'Land' Text
+'/' Text
+'realm' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'Franks' Text
+'"' Text
+'.' Text
+'\n' Text
+
+'\n' Text
+
+'The' Text
+' ' Text
+'[[' Punctuation
+'name of the Franks' Name.Tag
+']]' Punctuation
+' ' Text
+'is' Text
+' ' Text
+'related' Text
+' ' Text
+'to' Text
+' ' Text
+'the' Text
+' ' Text
+'English' Text
+' ' Text
+'word' Text
+' ' Text
+"''" Generic.Emph
+'frank' Generic.Emph
+"''" Generic.Emph
+' ' Text
+'(' Text
+'"' Text
+'free' Text
+'"' Text
+')' Text
+':' Text
+' ' Text
+'the' Text
+' ' Text
+'latter' Text
+' ' Text
+'stems' Text
+' ' Text
+'from' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Old French' Name.Tag
+']]' Punctuation
+' ' Text
+'{{' Punctuation
+'Lang' Name.Tag
+'|' Punctuation
+'ang' Text
+'|' Punctuation
+'franc' Text
+'}}' Punctuation
+' ' Text
+'(' Text
+'"' Text
+'free' Text
+',' Text
+' ' Text
+'noble' Text
+',' Text
+' ' Text
+'sincere' Text
+'"' Text
+')' Text
+',' Text
+' ' Text
+'ultimately' Text
+' ' Text
+'from' Text
+' ' Text
+'[[' Punctuation
+'Medieval Latin' Name.Tag
+']]' Punctuation
+' ' Text
+"''" Generic.Emph
+'francus' Generic.Emph
+"''" Generic.Emph
+' ' Text
+'(' Text
+'"' Text
+'free' Text
+',' Text
+' ' Text
+'exempt' Text
+' ' Text
+'from' Text
+' ' Text
+'service' Text
+';' Text
+' ' Text
+'freeman' Text
+',' Text
+' ' Text
+'Frank' Text
+'"' Text
+')' Text
+',' Text
+' ' Text
+'a' Text
+' ' Text
+'generalisation' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'tribal' Text
+' ' Text
+'name' Text
+' ' Text
+'that' Text
+' ' Text
+'emerged' Text
+' ' Text
+'as' Text
+' ' Text
+'a' Text
+' ' Text
+'[[' Punctuation
+'Late Latin' Name.Tag
+']]' Punctuation
+' ' Text
+'borrowing' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'reconstructed' Text
+' ' Text
+'[[' Punctuation
+'Frankish language' Name.Tag
+'|' Punctuation
+'Frankish' Text
+']]' Punctuation
+' ' Text
+'[[' Punctuation
+'Endonym and exonym' Name.Tag
+'|' Punctuation
+'endonym' Text
+']]' Punctuation
+' ' Text
+'{{' Punctuation
+'Lang' Name.Tag
+'|' Punctuation
+'frk' Text
+'|' Punctuation
+'*' Text
+'Frank' Text
+'}}' Punctuation
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'Examples' Text
+':' Text
+' ' Text
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'encyclopedia' Name.Tag
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'frank' Text
+' ' Text
+'|' Punctuation
+'encyclopedia' Name.Label
+'=' Operator
+'American' Text
+' ' Text
+'Heritage' Text
+' ' Text
+'Dictionary' Text
+'}}' Punctuation
+' ' Text
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'encyclopedia' Name.Tag
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'frank' Text
+'|' Punctuation
+'encyclopedia' Name.Label
+'=' Operator
+'Webster' Text
+"'" Text
+'s' Text
+' ' Text
+'Third' Text
+' ' Text
+'New' Text
+' ' Text
+'International' Text
+' ' Text
+'Dictionary' Text
+'}}' Punctuation
+' ' Text
+'And' Text
+' ' Text
+'so' Text
+' ' Text
+'on' Text
+'.' Text
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'<' Punctuation
+'ref' Name.Tag
+' ' Text.Whitespace
+'name' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+':' Literal.String.Double
+'0' Literal.String.Double
+'"' Literal.String.Double
+' ' Text.Whitespace
+'/>' Punctuation
+' ' Text
+'It' Text
+' ' Text
+'has' Text
+' ' Text
+'been' Text
+' ' Text
+'suggested' Text
+' ' Text
+'that' Text
+' ' Text
+'the' Text
+' ' Text
+'meaning' Text
+' ' Text
+'"' Text
+'free' Text
+'"' Text
+' ' Text
+'was' Text
+' ' Text
+'adopted' Text
+' ' Text
+'because' Text
+',' Text
+' ' Text
+'after' Text
+' ' Text
+'the' Text
+' ' Text
+'conquest' Text
+' ' Text
+'of' Text
+' ' Text
+'Gaul' Text
+',' Text
+' ' Text
+'only' Text
+' ' Text
+'Franks' Text
+' ' Text
+'were' Text
+' ' Text
+'free' Text
+' ' Text
+'of' Text
+' ' Text
+'taxation' Text
+',' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'book' Name.Tag
+' ' Text
+'|' Punctuation
+'last' Name.Label
+'=' Operator
+'Michel' Text
+' ' Text
+'Rouche' Text
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'A' Text
+' ' Text
+'History' Text
+' ' Text
+'of' Text
+' ' Text
+'Private' Text
+' ' Text
+'Life' Text
+':' Text
+' ' Text
+'From' Text
+' ' Text
+'Pagan' Text
+' ' Text
+'Rome' Text
+' ' Text
+'to' Text
+' ' Text
+'Byzantium' Text
+' ' Text
+'|' Punctuation
+'publisher' Name.Label
+'=' Operator
+'Belknap' Text
+' ' Text
+'Press' Text
+' ' Text
+'|' Punctuation
+'year' Name.Label
+'=' Operator
+'1987' Text
+' ' Text
+'|' Punctuation
+'isbn' Name.Label
+'=' Operator
+'978' Text
+'-' Text
+'0' Text
+'-' Text
+'674' Text
+'-' Text
+'39974' Text
+'-' Text
+'7' Text
+' ' Text
+'|' Punctuation
+'editor-last' Name.Label
+'=' Operator
+'Paul' Text
+' ' Text
+'Veyne' Text
+' ' Text
+'|' Punctuation
+'page' Name.Label
+'=' Operator
+'425' Text
+' ' Text
+'|' Punctuation
+'chapter' Name.Label
+'=' Operator
+'The' Text
+' ' Text
+'Early' Text
+' ' Text
+'Middle' Text
+' ' Text
+'Ages' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'West' Text
+' ' Text
+'|' Punctuation
+'oclc' Name.Label
+'=' Operator
+'59830199' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'or' Text
+' ' Text
+'more' Text
+' ' Text
+'generally' Text
+' ' Text
+'because' Text
+' ' Text
+'they' Text
+' ' Text
+'had' Text
+' ' Text
+'the' Text
+' ' Text
+'status' Text
+' ' Text
+'of' Text
+' ' Text
+'freemen' Text
+' ' Text
+'in' Text
+' ' Text
+'contrast' Text
+' ' Text
+'to' Text
+' ' Text
+'servants' Text
+' ' Text
+'or' Text
+' ' Text
+'slaves' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+' ' Text.Whitespace
+'name' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+':' Literal.String.Double
+'0' Literal.String.Double
+'"' Literal.String.Double
+' ' Text.Whitespace
+'/>' Punctuation
+'\n' Text
+
+'\n' Text
+
+'The' Text
+' ' Text
+'etymology' Text
+' ' Text
+'of' Text
+' ' Text
+"''" Generic.Emph
+'*' Generic.Emph
+'Frank' Generic.Emph
+"''" Generic.Emph
+' ' Text
+'is' Text
+' ' Text
+'uncertain' Text
+'.' Text
+' ' Text
+'It' Text
+' ' Text
+'is' Text
+' ' Text
+'traditionally' Text
+' ' Text
+'derived' Text
+' ' Text
+'from' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Proto-Germanic language' Name.Tag
+'|' Punctuation
+'Proto' Text
+'-' Text
+'Germanic' Text
+']]' Punctuation
+' ' Text
+'word' Text
+' ' Text
+'{{' Punctuation
+'Lang' Name.Tag
+'|' Punctuation
+'gem' Text
+'-' Text
+'x' Text
+'-' Text
+'proto' Text
+'|' Punctuation
+'frankōn' Text
+'}}' Punctuation
+',' Text
+' ' Text
+'which' Text
+' ' Text
+'translates' Text
+' ' Text
+'as' Text
+' ' Text
+'"' Text
+'javelin' Text
+'"' Text
+' ' Text
+'or' Text
+' ' Text
+'"' Text
+'lance' Text
+'"' Text
+' ' Text
+'(' Text
+'the' Text
+' ' Text
+'throwing' Text
+' ' Text
+'axe' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'Franks' Text
+' ' Text
+'was' Text
+' ' Text
+'known' Text
+' ' Text
+'as' Text
+' ' Text
+'the' Text
+' ' Text
+"''" Generic.Emph
+'[[' Punctuation
+'francisca' Name.Tag
+']]' Punctuation
+"''" Generic.Emph
+')' Text
+',' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'book' Name.Tag
+' ' Text
+'|' Punctuation
+'last1' Name.Label
+'=' Operator
+'Tarassuk' Text
+' ' Text
+'|' Punctuation
+'first1' Name.Label
+'=' Operator
+'Leonid' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'books' Text
+'.' Text
+'google' Text
+'.' Text
+'com' Text
+'/' Text
+'books' Text
+'?' Text
+'id' Text
+'=' Text
+'UJbyPwAACAAJ' Text
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'The' Text
+' ' Text
+'Complete' Text
+' ' Text
+'Encyclopedia' Text
+' ' Text
+'of' Text
+' ' Text
+'Arms' Text
+' ' Text
+'and' Text
+' ' Text
+'Weapons' Text
+':' Text
+' ' Text
+'the' Text
+' ' Text
+'most' Text
+' ' Text
+'comprehensive' Text
+' ' Text
+'reference' Text
+' ' Text
+'work' Text
+' ' Text
+'ever' Text
+' ' Text
+'published' Text
+' ' Text
+'on' Text
+' ' Text
+'arms' Text
+' ' Text
+'and' Text
+' ' Text
+'armor' Text
+' ' Text
+'from' Text
+' ' Text
+'prehistoric' Text
+' ' Text
+'times' Text
+' ' Text
+'to' Text
+' ' Text
+'the' Text
+' ' Text
+'present' Text
+' ' Text
+'with' Text
+' ' Text
+'over' Text
+' ' Text
+'1' Text
+',' Text
+'250' Text
+' ' Text
+'illustrations' Text
+' ' Text
+'|' Punctuation
+'last2' Name.Label
+'=' Operator
+'Blair' Text
+' ' Text
+'|' Punctuation
+'first2' Name.Label
+'=' Operator
+'Claude' Text
+' ' Text
+'|' Punctuation
+'publisher' Name.Label
+'=' Operator
+'Simon' Text
+' ' Text
+'&' Text
+' ' Text
+'Schuster' Text
+' ' Text
+'|' Punctuation
+'year' Name.Label
+'=' Operator
+'1982' Text
+' ' Text
+'|' Punctuation
+'isbn' Name.Label
+'=' Operator
+'978' Text
+'-' Text
+'0' Text
+'-' Text
+'671' Text
+'-' Text
+'42257' Text
+'-' Text
+'8' Text
+' ' Text
+'|' Punctuation
+'page' Name.Label
+'=' Operator
+'186' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'5' Text
+' ' Text
+'July' Text
+' ' Text
+'2011' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'although' Text
+' ' Text
+'these' Text
+' ' Text
+'weapons' Text
+' ' Text
+'may' Text
+' ' Text
+'have' Text
+' ' Text
+'been' Text
+' ' Text
+'named' Text
+' ' Text
+'because' Text
+' ' Text
+'of' Text
+' ' Text
+'their' Text
+' ' Text
+'use' Text
+' ' Text
+'by' Text
+' ' Text
+'the' Text
+' ' Text
+'Franks' Text
+',' Text
+' ' Text
+'not' Text
+' ' Text
+'the' Text
+' ' Text
+'other' Text
+' ' Text
+'way' Text
+' ' Text
+'around' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+' ' Text.Whitespace
+'name' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+':' Literal.String.Double
+'0' Literal.String.Double
+'"' Literal.String.Double
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Origin' Text
+' ' Text
+'and' Text
+' ' Text
+'meaning' Text
+' ' Text
+'of' Text
+' ' Text
+'Frank' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'etymonline' Text
+'.' Text
+'com' Text
+'/' Text
+'word' Text
+'/' Text
+'frank' Text
+' ' Text
+'|' Punctuation
+'website' Name.Label
+'=' Operator
+'Online' Text
+' ' Text
+'Etymology' Text
+' ' Text
+'Dictionary' Text
+' ' Text
+'|' Punctuation
+'language' Name.Label
+'=' Operator
+'en' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'\n' Text
+
+'\n' Text
+
+'In' Text
+' ' Text
+'English' Text
+',' Text
+' ' Text
+"'" Text
+'France' Text
+"'" Text
+' ' Text
+'is' Text
+' ' Text
+'pronounced' Text
+' ' Text
+'{{' Punctuation
+'IPAc' Name.Tag
+'-' Name.Tag
+'en' Name.Tag
+'|' Punctuation
+'f' Text
+'|' Punctuation
+'r' Text
+'|' Punctuation
+'æ' Text
+'|' Punctuation
+'n' Text
+'|' Punctuation
+'s' Text
+'}}' Punctuation
+' ' Text
+'{{' Punctuation
+'Respell' Name.Tag
+'|' Punctuation
+'FRANSS' Text
+'}}' Punctuation
+' ' Text
+'in' Text
+' ' Text
+'American' Text
+' ' Text
+'English' Text
+' ' Text
+'and' Text
+' ' Text
+'{{' Punctuation
+'IPAc' Name.Tag
+'-' Name.Tag
+'en' Name.Tag
+'|' Punctuation
+'f' Text
+'|' Punctuation
+'r' Text
+'|' Punctuation
+'ɑː' Text
+'|' Punctuation
+'n' Text
+'|' Punctuation
+'s' Text
+'}}' Punctuation
+' ' Text
+'{{' Punctuation
+'Respell' Name.Tag
+'|' Punctuation
+'FRAHNSS' Text
+'}}' Punctuation
+' ' Text
+'or' Text
+' ' Text
+'{{' Punctuation
+'IPAc' Name.Tag
+'-' Name.Tag
+'en' Name.Tag
+'|' Punctuation
+'f' Text
+'|' Punctuation
+'r' Text
+'|' Punctuation
+'æ' Text
+'|' Punctuation
+'n' Text
+'|' Punctuation
+'s' Text
+'}}' Punctuation
+' ' Text
+'{{' Punctuation
+'Respell' Name.Tag
+'|' Punctuation
+'FRANSS' Text
+'}}' Punctuation
+' ' Text
+'in' Text
+' ' Text
+'British' Text
+' ' Text
+'English' Text
+'.' Text
+' ' Text
+'The' Text
+' ' Text
+'pronunciation' Text
+' ' Text
+'with' Text
+' ' Text
+'{{' Punctuation
+'IPAc' Name.Tag
+'-' Name.Tag
+'en' Name.Tag
+'|' Punctuation
+'ɑː' Text
+'}}' Punctuation
+' ' Text
+'is' Text
+' ' Text
+'mostly' Text
+' ' Text
+'confined' Text
+' ' Text
+'to' Text
+' ' Text
+'accents' Text
+' ' Text
+'with' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Trap–bath split' Name.Tag
+'|' Punctuation
+'trap' Text
+'-' Text
+'bath' Text
+' ' Text
+'split' Text
+']]' Punctuation
+' ' Text
+'such' Text
+' ' Text
+'as' Text
+' ' Text
+'[[' Punctuation
+'Received Pronunciation' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'though' Text
+' ' Text
+'it' Text
+' ' Text
+'can' Text
+' ' Text
+'be' Text
+' ' Text
+'also' Text
+' ' Text
+'heard' Text
+' ' Text
+'in' Text
+' ' Text
+'some' Text
+' ' Text
+'other' Text
+' ' Text
+'dialects' Text
+' ' Text
+'such' Text
+' ' Text
+'as' Text
+' ' Text
+'[[' Punctuation
+'Cardiff English' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'in' Text
+' ' Text
+'which' Text
+' ' Text
+'{{' Punctuation
+'IPAc' Name.Tag
+'-' Name.Tag
+'en' Name.Tag
+'|' Punctuation
+'f' Text
+'|' Punctuation
+'r' Text
+'|' Punctuation
+'ɑː' Text
+'|' Punctuation
+'n' Text
+'|' Punctuation
+'s' Text
+'}}' Punctuation
+' ' Text
+'is' Text
+' ' Text
+'in' Text
+' ' Text
+'free' Text
+' ' Text
+'variation' Text
+' ' Text
+'with' Text
+' ' Text
+'{{' Punctuation
+'IPAc' Name.Tag
+'-' Name.Tag
+'en' Name.Tag
+'|' Punctuation
+'f' Text
+'|' Punctuation
+'r' Text
+'|' Punctuation
+'æ' Text
+'|' Punctuation
+'n' Text
+'|' Punctuation
+'s' Text
+'}}' Punctuation
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'book' Name.Tag
+' ' Text
+'|' Punctuation
+'last' Name.Label
+'=' Operator
+'Wells' Text
+' ' Text
+'|' Punctuation
+'first' Name.Label
+'=' Operator
+'John' Text
+' ' Text
+'C' Text
+'.' Text
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Longman' Text
+' ' Text
+'Pronunciation' Text
+' ' Text
+'Dictionary' Text
+' ' Text
+'|' Punctuation
+'publisher' Name.Label
+'=' Operator
+'Longman' Text
+' ' Text
+'|' Punctuation
+'year' Name.Label
+'=' Operator
+'2008' Text
+' ' Text
+'|' Punctuation
+'isbn' Name.Label
+'=' Operator
+'978' Text
+'-' Text
+'1' Text
+'-' Text
+'4058' Text
+'-' Text
+'8118' Text
+'-' Text
+'0' Text
+' ' Text
+'|' Punctuation
+'edition' Name.Label
+'=' Operator
+'3rd' Text
+'}}' Punctuation
+';' Text
+' ' Text
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'book' Name.Tag
+'|' Punctuation
+'last1' Name.Label
+'=' Operator
+'Collins' Text
+'|' Punctuation
+'first1' Name.Label
+'=' Operator
+'Beverley' Text
+'|' Punctuation
+'last2' Name.Label
+'=' Operator
+'Mees' Text
+'|' Punctuation
+'first2' Name.Label
+'=' Operator
+'Inger' Text
+' ' Text
+'M' Text
+'.' Text
+'|' Punctuation
+'editor-last1' Name.Label
+'=' Operator
+'Coupland' Text
+'|' Punctuation
+'editor-first1' Name.Label
+'=' Operator
+'Nikolas' Text
+'|' Punctuation
+'editor-last2' Name.Label
+'=' Operator
+'Thomas' Text
+'|' Punctuation
+'editor-first2' Name.Label
+'=' Operator
+'Alan' Text
+' ' Text
+'Richard' Text
+'|' Punctuation
+'year' Name.Label
+'=' Operator
+'1990' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'English' Text
+' ' Text
+'in' Text
+' ' Text
+'Wales' Text
+':' Text
+' ' Text
+'Diversity' Text
+',' Text
+' ' Text
+'Conflict' Text
+',' Text
+' ' Text
+'and' Text
+' ' Text
+'Change' Text
+'|' Punctuation
+'chapter' Name.Label
+'=' Operator
+'The' Text
+' ' Text
+'Phonetics' Text
+' ' Text
+'of' Text
+' ' Text
+'Cardiff' Text
+' ' Text
+'English' Text
+'|' Punctuation
+'publisher' Name.Label
+'=' Operator
+'Multilingual' Text
+' ' Text
+'Matters' Text
+' ' Text
+'Ltd' Text
+'.' Text
+'|' Punctuation
+'page' Name.Label
+'=' Operator
+'96' Text
+'|' Punctuation
+'isbn' Name.Label
+'=' Operator
+'978' Text
+'-' Text
+'1' Text
+'-' Text
+'85359' Text
+'-' Text
+'032' Text
+'-' Text
+'0' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'books' Text
+'.' Text
+'google' Text
+'.' Text
+'com' Text
+'/' Text
+'books' Text
+'?' Text
+'id' Text
+'=' Text
+'tPwYt3gVbu4C' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'\n' Text
+
+'\n' Text
+
+'==' Generic.Subheading
+'History' Generic.Subheading
+'==' Generic.Subheading
+'\n' Text.Whitespace
+
+'{{' Punctuation
+'Main' Name.Tag
+'|' Punctuation
+'History' Text
+' ' Text
+'of' Text
+' ' Text
+'France' Text
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'For' Name.Tag
+' ' Name.Tag
+'timeline' Name.Tag
+'|' Punctuation
+'Timeline' Text
+' ' Text
+'of' Text
+' ' Text
+'French' Text
+' ' Text
+'history' Text
+'}}' Punctuation
+'\n' Text
+
+'\n' Text
+
+'===' Generic.Subheading
+'Prehistory (before the 6th century BC)' Generic.Subheading
+'===' Generic.Subheading
+'\n' Text.Whitespace
+
+'{{' Punctuation
+'Main' Name.Tag
+'|' Punctuation
+'Prehistory' Text
+' ' Text
+'of' Text
+' ' Text
+'France' Text
+'}}' Punctuation
+'\n' Text
+
+'[[' Punctuation
+'File' Name.Namespace
+':' Punctuation
+'Lascaux2.jpg' Name.Tag
+'|' Punctuation
+'thumb' Text
+'|' Punctuation
+'left' Text
+'|' Punctuation
+'alt' Name.Attribute
+'=' Operator
+'Lascaux' Text
+' ' Text
+'cave' Text
+' ' Text
+'paintings' Text
+':' Text
+' ' Text
+'a' Text
+' ' Text
+'horse' Text
+' ' Text
+'from' Text
+' ' Text
+'Dordogne' Text
+' ' Text
+'facing' Text
+' ' Text
+'right' Text
+' ' Text
+'brown' Text
+' ' Text
+'on' Text
+' ' Text
+'white' Text
+' ' Text
+'background' Text
+'|' Punctuation
+'One' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Lascaux' Name.Tag
+']]' Punctuation
+' ' Text
+'paintings' Text
+':' Text
+' ' Text
+'a' Text
+' ' Text
+'horse' Text
+'&nbsp;' Name.Entity
+'–' Text
+' ' Text
+'approximately' Text
+' ' Text
+'17' Text
+',' Text
+'000' Text
+' ' Text
+'BC' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'[' Punctuation
+'https://www.scientificamerican.com/article/the-worlds-oldest-animal-paintings-are-on-this-cave-wall' Name.Label
+' ' Text.Whitespace
+'The' Text
+' ' Text
+'World' Text
+'’' Text
+'s' Text
+' ' Text
+'Oldest' Text
+' ' Text
+'Animal' Text
+' ' Text
+'Paintings' Text
+' ' Text
+'Are' Text
+' ' Text
+'on' Text
+' ' Text
+'This' Text
+' ' Text
+'Cave' Text
+' ' Text
+'Wall' Text
+']' Punctuation
+',' Text
+' ' Text
+'[[' Punctuation
+'Scientific American' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'14' Text
+' ' Text
+'January' Text
+' ' Text
+'2021' Text
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+']]' Punctuation
+'\n' Text
+
+'The' Text
+' ' Text
+'oldest' Text
+' ' Text
+'traces' Text
+' ' Text
+'of' Text
+' ' Text
+'human' Text
+' ' Text
+'life' Text
+' ' Text
+'in' Text
+' ' Text
+'what' Text
+' ' Text
+'is' Text
+' ' Text
+'now' Text
+' ' Text
+'France' Text
+' ' Text
+'date' Text
+' ' Text
+'from' Text
+' ' Text
+'approximately' Text
+' ' Text
+'1' Text
+'.' Text
+'8' Text
+'&nbsp;' Name.Entity
+'million' Text
+' ' Text
+'years' Text
+' ' Text
+'ago' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+' ' Text.Whitespace
+'name' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+'Jean' Literal.String.Double
+' ' Literal.String.Double
+'Carpentier' Literal.String.Double
+' ' Literal.String.Double
+'1987' Literal.String.Double
+' ' Literal.String.Double
+'p' Literal.String.Double
+'.' Literal.String.Double
+'17' Literal.String.Double
+'"' Literal.String.Double
+'>' Punctuation
+'Jean' Text
+' ' Text
+'Carpentier' Text
+' ' Text
+'(' Text
+'dir' Text
+'.' Text
+')' Text
+',' Text
+' ' Text
+'François' Text
+' ' Text
+'Lebrun' Text
+' ' Text
+'(' Text
+'dir' Text
+'.' Text
+')' Text
+',' Text
+' ' Text
+'Alain' Text
+' ' Text
+'Tranoy' Text
+',' Text
+' ' Text
+'Élisabeth' Text
+' ' Text
+'Carpentier' Text
+' ' Text
+'et' Text
+' ' Text
+'Jean' Text
+'-' Text
+'Marie' Text
+' ' Text
+'Mayeur' Text
+' ' Text
+'(' Text
+'préface' Text
+' ' Text
+'de' Text
+' ' Text
+'Jacques' Text
+' ' Text
+'Le' Text
+' ' Text
+'Goff' Text
+')' Text
+',' Text
+' ' Text
+'Histoire' Text
+' ' Text
+'de' Text
+' ' Text
+'France' Text
+',' Text
+' ' Text
+'Points' Text
+' ' Text
+'Seuil' Text
+',' Text
+' ' Text
+'coll' Text
+'.' Text
+' ' Text
+'"' Text
+' ' Text
+'Histoire' Text
+' ' Text
+'"' Text
+',' Text
+' ' Text
+'Paris' Text
+',' Text
+' ' Text
+'2000' Text
+' ' Text
+'(' Text
+'1re' Text
+' ' Text
+'éd' Text
+'.' Text
+' ' Text
+'1987' Text
+')' Text
+',' Text
+' ' Text
+'p' Text
+'.' Text
+' ' Text
+'17' Text
+' ' Text
+'{{' Punctuation
+'ISBN' Name.Tag
+'|' Punctuation
+'978' Text
+'-' Text
+'2' Text
+'-' Text
+'02' Text
+'-' Text
+'010879' Text
+'-' Text
+'9' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'Over' Text
+' ' Text
+'the' Text
+' ' Text
+'ensuing' Text
+' ' Text
+'millennia' Text
+',' Text
+' ' Text
+'[[' Punctuation
+'human' Name.Tag
+']]' Punctuation
+'s' Text
+' ' Text
+'were' Text
+' ' Text
+'confronted' Text
+' ' Text
+'by' Text
+' ' Text
+'a' Text
+' ' Text
+'harsh' Text
+' ' Text
+'and' Text
+' ' Text
+'variable' Text
+' ' Text
+'climate' Text
+',' Text
+' ' Text
+'marked' Text
+' ' Text
+'by' Text
+' ' Text
+'several' Text
+' ' Text
+'[[' Punctuation
+'glacial period' Name.Tag
+']]' Punctuation
+'s' Text
+'.' Text
+' ' Text
+'Early' Text
+' ' Text
+'hominids' Text
+' ' Text
+'led' Text
+' ' Text
+'a' Text
+' ' Text
+'[[' Punctuation
+'nomad' Name.Tag
+']]' Punctuation
+'ic' Text
+' ' Text
+'[[' Punctuation
+'hunter-gatherer' Name.Tag
+']]' Punctuation
+' ' Text
+'life' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+' ' Text.Whitespace
+'name' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+'Jean' Literal.String.Double
+' ' Literal.String.Double
+'Carpentier' Literal.String.Double
+' ' Literal.String.Double
+'1987' Literal.String.Double
+' ' Literal.String.Double
+'p' Literal.String.Double
+'.' Literal.String.Double
+'17' Literal.String.Double
+'"' Literal.String.Double
+' ' Text.Whitespace
+'/>' Punctuation
+' ' Text
+'France' Text
+' ' Text
+'has' Text
+' ' Text
+'a' Text
+' ' Text
+'large' Text
+' ' Text
+'number' Text
+' ' Text
+'of' Text
+' ' Text
+'decorated' Text
+' ' Text
+'caves' Text
+' ' Text
+'from' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Upper Paleolithic' Name.Tag
+']]' Punctuation
+' ' Text
+'era' Text
+',' Text
+' ' Text
+'including' Text
+' ' Text
+'one' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'most' Text
+' ' Text
+'famous' Text
+' ' Text
+'and' Text
+' ' Text
+'best' Text
+'-' Text
+'preserved' Text
+',' Text
+' ' Text
+'[[' Punctuation
+'Lascaux' Name.Tag
+']]' Punctuation
+'<' Punctuation
+'ref' Name.Tag
+' ' Text.Whitespace
+'name' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+'Jean' Literal.String.Double
+' ' Literal.String.Double
+'Carpentier' Literal.String.Double
+' ' Literal.String.Double
+'1987' Literal.String.Double
+' ' Literal.String.Double
+'p' Literal.String.Double
+'.' Literal.String.Double
+'17' Literal.String.Double
+'"' Literal.String.Double
+' ' Text.Whitespace
+'/>' Punctuation
+' ' Text
+'(' Text
+'approximately' Text
+' ' Text
+'18' Text
+',' Text
+'000' Text
+' ' Text
+'BC' Text
+')' Text
+'.' Text
+' ' Text
+'At' Text
+' ' Text
+'the' Text
+' ' Text
+'end' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Last Glacial Period' Name.Tag
+'|' Punctuation
+'last' Text
+' ' Text
+'glacial' Text
+' ' Text
+'period' Text
+']]' Punctuation
+' ' Text
+'(' Text
+'10' Text
+',' Text
+'000' Text
+' ' Text
+'BC' Text
+')' Text
+',' Text
+' ' Text
+'the' Text
+' ' Text
+'climate' Text
+' ' Text
+'became' Text
+' ' Text
+'milder' Text
+';' Text
+'<' Punctuation
+'ref' Name.Tag
+' ' Text.Whitespace
+'name' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+'Jean' Literal.String.Double
+' ' Literal.String.Double
+'Carpentier' Literal.String.Double
+' ' Literal.String.Double
+'1987' Literal.String.Double
+' ' Literal.String.Double
+'p' Literal.String.Double
+'.' Literal.String.Double
+'17' Literal.String.Double
+'"' Literal.String.Double
+' ' Text.Whitespace
+'/>' Punctuation
+' ' Text
+'from' Text
+' ' Text
+'approximately' Text
+' ' Text
+'7' Text
+',' Text
+'000' Text
+' ' Text
+'BC' Text
+',' Text
+' ' Text
+'this' Text
+' ' Text
+'part' Text
+' ' Text
+'of' Text
+' ' Text
+'Western' Text
+' ' Text
+'Europe' Text
+' ' Text
+'entered' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Neolithic' Name.Tag
+']]' Punctuation
+' ' Text
+'era' Text
+' ' Text
+'and' Text
+' ' Text
+'its' Text
+' ' Text
+'inhabitants' Text
+' ' Text
+'became' Text
+' ' Text
+'[[' Punctuation
+'Sedentism' Name.Tag
+'|' Punctuation
+'sedentary' Text
+']]' Punctuation
+'.' Text
+'\n' Text
+
+'\n' Text
+
+'After' Text
+' ' Text
+'strong' Text
+' ' Text
+'demographic' Text
+' ' Text
+'and' Text
+' ' Text
+'agricultural' Text
+' ' Text
+'development' Text
+' ' Text
+'between' Text
+' ' Text
+'the' Text
+' ' Text
+'4th' Text
+' ' Text
+'and' Text
+' ' Text
+'3rd' Text
+' ' Text
+'millennia' Text
+',' Text
+' ' Text
+'metallurgy' Text
+' ' Text
+'appeared' Text
+' ' Text
+'at' Text
+' ' Text
+'the' Text
+' ' Text
+'end' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'3rd' Text
+' ' Text
+'millennium' Text
+',' Text
+' ' Text
+'initially' Text
+' ' Text
+'working' Text
+' ' Text
+'gold' Text
+',' Text
+' ' Text
+'copper' Text
+' ' Text
+'and' Text
+' ' Text
+'bronze' Text
+',' Text
+' ' Text
+'as' Text
+' ' Text
+'well' Text
+' ' Text
+'as' Text
+' ' Text
+'later' Text
+' ' Text
+'iron' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'Carpentier' Text
+' ' Text
+"''" Generic.Emph
+'et' Generic.Emph
+' ' Generic.Emph
+'al' Generic.Emph
+'.' Generic.Emph
+"''" Generic.Emph
+' ' Text
+'2000' Text
+',' Text
+' ' Text
+'pp' Text
+'.' Text
+' ' Text
+'20' Text
+'–' Text
+'24' Text
+'.' Text
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'France' Text
+' ' Text
+'has' Text
+' ' Text
+'numerous' Text
+' ' Text
+'[[' Punctuation
+'megalith' Name.Tag
+']]' Punctuation
+'ic' Text
+' ' Text
+'sites' Text
+' ' Text
+'from' Text
+' ' Text
+'the' Text
+' ' Text
+'Neolithic' Text
+' ' Text
+'period' Text
+',' Text
+' ' Text
+'including' Text
+' ' Text
+'the' Text
+' ' Text
+'exceptionally' Text
+' ' Text
+'dense' Text
+' ' Text
+'[[' Punctuation
+'Carnac stones' Name.Tag
+']]' Punctuation
+' ' Text
+'site' Text
+' ' Text
+'(' Text
+'approximately' Text
+' ' Text
+'3' Text
+',' Text
+'300' Text
+' ' Text
+'BC' Text
+')' Text
+'.' Text
+'\n' Text
+
+'\n' Text
+
+'===' Generic.Subheading
+'Antiquity (6th century BC–5th century AD)' Generic.Subheading
+'===' Generic.Subheading
+'\n' Text.Whitespace
+
+'{{' Punctuation
+'Main' Name.Tag
+'|' Punctuation
+'Gaul' Text
+'|' Punctuation
+'Celts' Text
+'|' Punctuation
+'Roman' Text
+' ' Text
+'Gaul' Text
+'}}' Punctuation
+'\n' Text
+
+'[[' Punctuation
+'File' Name.Namespace
+':' Punctuation
+'Siege-alesia-vercingetorix-jules-cesar.jpg' Name.Tag
+'|' Punctuation
+'left' Text
+'|' Punctuation
+'thumb' Text
+'|' Punctuation
+'[[' Punctuation
+'Vercingetorix' Name.Tag
+']]' Punctuation
+' ' Text
+'surrenders' Text
+' ' Text
+'to' Text
+' ' Text
+'[[' Punctuation
+'Julius Caesar' Name.Tag
+'|' Punctuation
+'Caesar' Text
+']]' Punctuation
+' ' Text
+'during' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Battle of Alesia' Name.Tag
+']]' Punctuation
+'.' Text
+' ' Text
+'The' Text
+' ' Text
+'Gallic' Text
+' ' Text
+'defeat' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Gallic Wars' Name.Tag
+']]' Punctuation
+' ' Text
+'secured' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Roman Republic' Name.Tag
+'|' Punctuation
+'Roman' Text
+']]' Punctuation
+' ' Text
+'conquest' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'country' Text
+'.' Text
+']]' Punctuation
+'\n' Text
+
+'In' Text
+' ' Text
+'600' Text
+' ' Text
+'BC' Text
+',' Text
+' ' Text
+'[[' Punctuation
+'Ionia' Name.Tag
+']]' Punctuation
+'n' Text
+' ' Text
+'[[' Punctuation
+'Greeks in pre-Roman Gaul' Name.Tag
+'|' Punctuation
+'Greeks' Text
+']]' Punctuation
+' ' Text
+'from' Text
+' ' Text
+'[[' Punctuation
+'Phocaea' Name.Tag
+']]' Punctuation
+' ' Text
+'founded' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Greek colonisation' Name.Tag
+'|' Punctuation
+'colony' Text
+']]' Punctuation
+' ' Text
+'of' Text
+' ' Text
+'[[' Punctuation
+'Massalia' Name.Tag
+']]' Punctuation
+' ' Text
+'(' Text
+'present' Text
+'-' Text
+'day' Text
+' ' Text
+'[[' Punctuation
+'Marseille' Name.Tag
+']]' Punctuation
+')' Text
+',' Text
+' ' Text
+'on' Text
+' ' Text
+'the' Text
+' ' Text
+'shores' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Mediterranean Sea' Name.Tag
+']]' Punctuation
+'.' Text
+' ' Text
+'This' Text
+' ' Text
+'makes' Text
+' ' Text
+'it' Text
+' ' Text
+'France' Text
+"'" Text
+'s' Text
+' ' Text
+'oldest' Text
+' ' Text
+'city' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'book' Name.Tag
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'books' Text
+'.' Text
+'google' Text
+'.' Text
+'com' Text
+'/' Text
+'books' Text
+'?' Text
+'id' Text
+'=' Text
+'n1TmVvMwmo4C' Text
+'&' Text
+'pg' Text
+'=' Text
+'RA1' Text
+'-' Text
+'PA754' Text
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'The' Text
+' ' Text
+'Cambridge' Text
+' ' Text
+'ancient' Text
+' ' Text
+'history' Text
+' ' Text
+'|' Punctuation
+'publisher' Name.Label
+'=' Operator
+'Cambridge' Text
+' ' Text
+'University' Text
+' ' Text
+'Press' Text
+' ' Text
+'|' Punctuation
+'year' Name.Label
+'=' Operator
+'2000' Text
+' ' Text
+'|' Punctuation
+'isbn' Name.Label
+'=' Operator
+'978' Text
+'-' Text
+'0' Text
+'-' Text
+'521' Text
+'-' Text
+'08691' Text
+'-' Text
+'2' Text
+' ' Text
+'|' Punctuation
+'page' Name.Label
+'=' Operator
+'754' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'23' Text
+' ' Text
+'January' Text
+' ' Text
+'2011' Text
+'}}' Punctuation
+';' Text
+' ' Text
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'book' Name.Tag
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'books' Text
+'.' Text
+'google' Text
+'.' Text
+'com' Text
+'/' Text
+'books' Text
+'?' Text
+'id' Text
+'=' Text
+'b8cA8hymTw8C' Text
+'&' Text
+'pg' Text
+'=' Text
+'PA62' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'A' Text
+' ' Text
+'history' Text
+' ' Text
+'of' Text
+' ' Text
+'ancient' Text
+' ' Text
+'Greece' Text
+'|' Punctuation
+'author' Name.Label
+'=' Operator
+'Claude' Text
+' ' Text
+'Orrieux' Text
+'|' Punctuation
+'page' Name.Label
+'=' Operator
+'62' Text
+'|' Punctuation
+'publisher' Name.Label
+'=' Operator
+'John' Text
+' ' Text
+'Wiley' Text
+' ' Text
+'&' Text
+' ' Text
+'Sons' Text
+'|' Punctuation
+'year' Name.Label
+'=' Operator
+'1999' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'23' Text
+' ' Text
+'January' Text
+' ' Text
+'2011' Text
+'|' Punctuation
+'isbn' Name.Label
+'=' Operator
+'978' Text
+'-' Text
+'0' Text
+'-' Text
+'631' Text
+'-' Text
+'20309' Text
+'-' Text
+'4' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'At' Text
+' ' Text
+'the' Text
+' ' Text
+'same' Text
+' ' Text
+'time' Text
+',' Text
+' ' Text
+'some' Text
+' ' Text
+'Gallic' Text
+' ' Text
+'Celtic' Text
+' ' Text
+'tribes' Text
+' ' Text
+'penetrated' Text
+' ' Text
+'parts' Text
+' ' Text
+'of' Text
+' ' Text
+'Eastern' Text
+' ' Text
+'and' Text
+' ' Text
+'Northern' Text
+' ' Text
+'France' Text
+',' Text
+' ' Text
+'gradually' Text
+' ' Text
+'spreading' Text
+' ' Text
+'through' Text
+' ' Text
+'the' Text
+' ' Text
+'rest' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'country' Text
+' ' Text
+'between' Text
+' ' Text
+'the' Text
+' ' Text
+'5th' Text
+' ' Text
+'and' Text
+' ' Text
+'3rd' Text
+' ' Text
+'century' Text
+' ' Text
+'BC' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'Carpentier' Text
+' ' Text
+"''" Generic.Emph
+'et' Generic.Emph
+' ' Generic.Emph
+'al' Generic.Emph
+'.' Generic.Emph
+"''" Generic.Emph
+' ' Text
+'2000' Text
+',' Text
+' ' Text
+'p' Text
+'.' Text
+' ' Text
+'29' Text
+'.' Text
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'The' Text
+' ' Text
+'concept' Text
+' ' Text
+'of' Text
+' ' Text
+'[[' Punctuation
+'Gaul' Name.Tag
+']]' Punctuation
+' ' Text
+'emerged' Text
+' ' Text
+'during' Text
+' ' Text
+'this' Text
+' ' Text
+'period' Text
+',' Text
+' ' Text
+'corresponding' Text
+' ' Text
+'to' Text
+' ' Text
+'the' Text
+' ' Text
+'territories' Text
+' ' Text
+'of' Text
+' ' Text
+'Celtic' Text
+' ' Text
+'settlement' Text
+' ' Text
+'ranging' Text
+' ' Text
+'between' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Rhine' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Atlantic Ocean' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Pyrenees' Name.Tag
+']]' Punctuation
+' ' Text
+'and' Text
+' ' Text
+'the' Text
+' ' Text
+'Mediterranean' Text
+'.' Text
+' ' Text
+'The' Text
+' ' Text
+'borders' Text
+' ' Text
+'of' Text
+' ' Text
+'modern' Text
+' ' Text
+'France' Text
+' ' Text
+'roughly' Text
+' ' Text
+'correspond' Text
+' ' Text
+'to' Text
+' ' Text
+'ancient' Text
+' ' Text
+'Gaul' Text
+',' Text
+' ' Text
+'which' Text
+' ' Text
+'was' Text
+' ' Text
+'inhabited' Text
+' ' Text
+'by' Text
+' ' Text
+'Celtic' Text
+' ' Text
+"''" Generic.Emph
+'Gauls' Generic.Emph
+"''" Generic.Emph
+'.' Text
+' ' Text
+'Gaul' Text
+' ' Text
+'was' Text
+' ' Text
+'then' Text
+' ' Text
+'a' Text
+' ' Text
+'prosperous' Text
+' ' Text
+'country' Text
+',' Text
+' ' Text
+'of' Text
+' ' Text
+'which' Text
+' ' Text
+'the' Text
+' ' Text
+'southernmost' Text
+' ' Text
+'part' Text
+' ' Text
+'was' Text
+' ' Text
+'heavily' Text
+' ' Text
+'subject' Text
+' ' Text
+'to' Text
+' ' Text
+'Greek' Text
+' ' Text
+'and' Text
+' ' Text
+'Roman' Text
+' ' Text
+'cultural' Text
+' ' Text
+'and' Text
+' ' Text
+'economic' Text
+' ' Text
+'influences' Text
+'.' Text
+'\n' Text
+
+'\n' Text
+
+'[[' Punctuation
+'File' Name.Namespace
+':' Punctuation
+'Maison_Carree_in_Nimes_(16).jpg' Name.Tag
+'|' Punctuation
+'thumb' Text
+'|' Punctuation
+'left' Text
+'|' Punctuation
+'alt' Name.Attribute
+'=' Operator
+'Maison' Text
+' ' Text
+'Carrée' Text
+' ' Text
+'temple' Text
+' ' Text
+'in' Text
+' ' Text
+'Nemausus' Text
+' ' Text
+'Corinthian' Text
+' ' Text
+'columns' Text
+' ' Text
+'and' Text
+' ' Text
+'portico' Text
+'|' Punctuation
+'The' Text
+' ' Text
+'[[' Punctuation
+'Maison Carrée' Name.Tag
+']]' Punctuation
+' ' Text
+'was' Text
+' ' Text
+'a' Text
+' ' Text
+'temple' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Gallo-Roman culture' Name.Tag
+'|' Punctuation
+'Gallo' Text
+'-' Text
+'Roman' Text
+']]' Punctuation
+' ' Text
+'city' Text
+' ' Text
+'of' Text
+' ' Text
+'Nemausus' Text
+' ' Text
+'(' Text
+'present' Text
+'-' Text
+'day' Text
+' ' Text
+'[[' Punctuation
+'Nîmes' Name.Tag
+']]' Punctuation
+')' Text
+' ' Text
+'and' Text
+' ' Text
+'is' Text
+' ' Text
+'one' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'best' Text
+'-' Text
+'preserved' Text
+' ' Text
+'vestiges' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Roman Empire' Name.Tag
+']]' Punctuation
+'.' Text
+']]' Punctuation
+'\n' Text
+
+'Around' Text
+' ' Text
+'390' Text
+' ' Text
+'BC' Text
+',' Text
+' ' Text
+'the' Text
+' ' Text
+'Gallic' Text
+' ' Text
+'[[' Punctuation
+'Tribal chief' Name.Tag
+'|' Punctuation
+'chieftain' Text
+']]' Punctuation
+' ' Text
+'[[' Punctuation
+'Brennus (4th century BC)' Name.Tag
+'|' Punctuation
+'Brennus' Text
+']]' Punctuation
+' ' Text
+'and' Text
+' ' Text
+'his' Text
+' ' Text
+'troops' Text
+' ' Text
+'made' Text
+' ' Text
+'their' Text
+' ' Text
+'way' Text
+' ' Text
+'to' Text
+' ' Text
+'Italy' Text
+' ' Text
+'through' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Alps' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'defeated' Text
+' ' Text
+'the' Text
+' ' Text
+'Romans' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Battle of the Allia' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'and' Text
+' ' Text
+'besieged' Text
+' ' Text
+'and' Text
+' ' Text
+'[[' Punctuation
+'ransom' Name.Tag
+']]' Punctuation
+'ed' Text
+' ' Text
+'Rome' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Cornelius' Text
+' ' Text
+'Tacitus' Text
+',' Text
+' ' Text
+'The' Text
+' ' Text
+'History' Text
+',' Text
+' ' Text
+'BOOK' Text
+' ' Text
+'II' Text
+',' Text
+' ' Text
+'chapter' Text
+' ' Text
+'91' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'perseus' Text
+'.' Text
+'tufts' Text
+'.' Text
+'edu' Text
+'/' Text
+'hopper' Text
+'/' Text
+'text' Text
+'?' Text
+'doc' Text
+'=' Text
+'Perseus' Text
+':' Text
+'text' Text
+':' Text
+'1999' Text
+'.' Text
+'02' Text
+'.' Text
+'0080' Text
+':' Text
+'book' Text
+'=' Text
+'2' Text
+':' Text
+'chapter' Text
+'=' Text
+'91' Text
+' ' Text
+'|' Punctuation
+'website' Name.Label
+'=' Operator
+'perseus' Text
+'.' Text
+'tufts' Text
+'.' Text
+'edu' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'The' Text
+' ' Text
+'Gallic' Text
+' ' Text
+'invasion' Text
+' ' Text
+'left' Text
+' ' Text
+'Rome' Text
+' ' Text
+'weakened' Text
+',' Text
+' ' Text
+'and' Text
+' ' Text
+'the' Text
+' ' Text
+'Gauls' Text
+' ' Text
+'continued' Text
+' ' Text
+'to' Text
+' ' Text
+'harass' Text
+' ' Text
+'the' Text
+' ' Text
+'region' Text
+' ' Text
+'until' Text
+' ' Text
+'345' Text
+' ' Text
+'BC' Text
+' ' Text
+'when' Text
+' ' Text
+'they' Text
+' ' Text
+'entered' Text
+' ' Text
+'into' Text
+' ' Text
+'a' Text
+' ' Text
+'formal' Text
+' ' Text
+'peace' Text
+' ' Text
+'treaty' Text
+' ' Text
+'with' Text
+' ' Text
+'Rome' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'Polybius' Text
+',' Text
+' ' Text
+'The' Text
+' ' Text
+'Histories' Text
+',' Text
+' ' Text
+'2' Text
+'.' Text
+'18' Text
+'.' Text
+'19' Text
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'But' Text
+' ' Text
+'the' Text
+' ' Text
+'Romans' Text
+' ' Text
+'and' Text
+' ' Text
+'the' Text
+' ' Text
+'Gauls' Text
+' ' Text
+'would' Text
+' ' Text
+'remain' Text
+' ' Text
+'adversaries' Text
+' ' Text
+'for' Text
+' ' Text
+'the' Text
+' ' Text
+'next' Text
+' ' Text
+'centuries' Text
+',' Text
+' ' Text
+'and' Text
+' ' Text
+'the' Text
+' ' Text
+'Gauls' Text
+' ' Text
+'would' Text
+' ' Text
+'continue' Text
+' ' Text
+'to' Text
+' ' Text
+'be' Text
+' ' Text
+'a' Text
+' ' Text
+'threat' Text
+' ' Text
+'in' Text
+' ' Text
+'[[' Punctuation
+'Roman Italy' Name.Tag
+'|' Punctuation
+'Italy' Text
+']]' Punctuation
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'Cornell' Text
+',' Text
+' ' Text
+'The' Text
+' ' Text
+'Beginnings' Text
+' ' Text
+'of' Text
+' ' Text
+'Rome' Text
+',' Text
+' ' Text
+'p' Text
+'.' Text
+' ' Text
+'325' Text
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'\n' Text
+
+'\n' Text
+
+'Around' Text
+' ' Text
+'125' Text
+' ' Text
+'BC' Text
+',' Text
+' ' Text
+'the' Text
+' ' Text
+'south' Text
+' ' Text
+'of' Text
+' ' Text
+'Gaul' Text
+' ' Text
+'was' Text
+' ' Text
+'conquered' Text
+' ' Text
+'by' Text
+' ' Text
+'the' Text
+' ' Text
+'Romans' Text
+',' Text
+' ' Text
+'who' Text
+' ' Text
+'called' Text
+' ' Text
+'this' Text
+' ' Text
+'region' Text
+' ' Text
+'{{' Punctuation
+'Lang' Name.Tag
+'|' Punctuation
+'la' Text
+'|' Punctuation
+'[[' Punctuation
+'Gallia Narbonensis' Name.Tag
+'|' Punctuation
+'Provincia' Text
+' ' Text
+'Nostra' Text
+']]' Punctuation
+'}}' Punctuation
+' ' Text
+'(' Text
+'"' Text
+'Our' Text
+' ' Text
+'Province' Text
+'"' Text
+')' Text
+',' Text
+' ' Text
+'which' Text
+' ' Text
+'over' Text
+' ' Text
+'time' Text
+' ' Text
+'evolved' Text
+' ' Text
+'into' Text
+' ' Text
+'the' Text
+' ' Text
+'name' Text
+' ' Text
+'[[' Punctuation
+'Provence' Name.Tag
+']]' Punctuation
+' ' Text
+'in' Text
+' ' Text
+'French' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'magazine' Name.Tag
+' ' Text
+'|' Punctuation
+'date' Name.Label
+'=' Operator
+'13' Text
+' ' Text
+'July' Text
+' ' Text
+'1953' Text
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Provence' Text
+' ' Text
+'in' Text
+' ' Text
+'Stone' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'books' Text
+'.' Text
+'google' Text
+'.' Text
+'com' Text
+'/' Text
+'books' Text
+'?' Text
+'id' Text
+'=' Text
+'ZEIEAAAAMBAJ' Text
+'&' Text
+'pg' Text
+'=' Text
+'PA77' Text
+' ' Text
+'|' Punctuation
+'magazine' Name.Label
+'=' Operator
+'Life' Text
+' ' Text
+'|' Punctuation
+'page' Name.Label
+'=' Operator
+'77' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'23' Text
+' ' Text
+'January' Text
+' ' Text
+'2011' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'[[' Punctuation
+'Julius Caesar' Name.Tag
+']]' Punctuation
+' ' Text
+'conquered' Text
+' ' Text
+'the' Text
+' ' Text
+'remainder' Text
+' ' Text
+'of' Text
+' ' Text
+'Gaul' Text
+' ' Text
+'and' Text
+' ' Text
+'overcame' Text
+' ' Text
+'a' Text
+' ' Text
+'revolt' Text
+' ' Text
+'carried' Text
+' ' Text
+'out' Text
+' ' Text
+'by' Text
+' ' Text
+'the' Text
+' ' Text
+'Gallic' Text
+' ' Text
+'chieftain' Text
+' ' Text
+'[[' Punctuation
+'Vercingetorix' Name.Tag
+']]' Punctuation
+' ' Text
+'in' Text
+' ' Text
+'52' Text
+' ' Text
+'BC' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'Carpentier' Text
+' ' Text
+"''" Generic.Emph
+'et' Generic.Emph
+' ' Generic.Emph
+'al' Generic.Emph
+'.' Generic.Emph
+"''" Generic.Emph
+' ' Text
+'2000' Text
+',' Text
+' ' Text
+'pp' Text
+'.' Text
+' ' Text
+'44' Text
+'–' Text
+'45' Text
+'.' Text
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'\n' Text
+
+'\n' Text
+
+'Gaul' Text
+' ' Text
+'was' Text
+' ' Text
+'divided' Text
+' ' Text
+'by' Text
+' ' Text
+'[[' Punctuation
+'Augustus' Name.Tag
+']]' Punctuation
+' ' Text
+'into' Text
+' ' Text
+'Roman' Text
+' ' Text
+'provinces' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+' ' Text.Whitespace
+'name' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+'c53' Literal.String.Double
+'"' Literal.String.Double
+'>' Punctuation
+'Carpentier' Text
+' ' Text
+"''" Generic.Emph
+'et' Generic.Emph
+' ' Generic.Emph
+'al' Generic.Emph
+'.' Generic.Emph
+"''" Generic.Emph
+' ' Text
+'2000' Text
+',' Text
+' ' Text
+'pp' Text
+'.' Text
+' ' Text
+'53' Text
+'–' Text
+'55' Text
+'.' Text
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'Many' Text
+' ' Text
+'cities' Text
+' ' Text
+'were' Text
+' ' Text
+'founded' Text
+' ' Text
+'during' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Roman Gaul' Name.Tag
+'|' Punctuation
+'Gallo' Text
+'-' Text
+'Roman' Text
+' ' Text
+'period' Text
+']]' Punctuation
+',' Text
+' ' Text
+'including' Text
+' ' Text
+'[[' Punctuation
+'Lugdunum' Name.Tag
+']]' Punctuation
+' ' Text
+'(' Text
+'present' Text
+'-' Text
+'day' Text
+' ' Text
+'[[' Punctuation
+'Lyon' Name.Tag
+']]' Punctuation
+')' Text
+',' Text
+' ' Text
+'which' Text
+' ' Text
+'is' Text
+' ' Text
+'considered' Text
+' ' Text
+'the' Text
+' ' Text
+'capital' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'Gauls' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+' ' Text.Whitespace
+'name' Name.Attribute
+'=' Operator
+'c53' Literal.String
+'/>' Punctuation
+' ' Text
+'These' Text
+' ' Text
+'cities' Text
+' ' Text
+'were' Text
+' ' Text
+'built' Text
+' ' Text
+'in' Text
+' ' Text
+'traditional' Text
+' ' Text
+'Roman' Text
+' ' Text
+'style' Text
+',' Text
+' ' Text
+'with' Text
+' ' Text
+'a' Text
+' ' Text
+'[[' Punctuation
+'Roman Forum' Name.Tag
+'|' Punctuation
+'forum' Text
+']]' Punctuation
+',' Text
+' ' Text
+'a' Text
+' ' Text
+'[[' Punctuation
+'Roman theatre (structure)' Name.Tag
+'|' Punctuation
+'theatre' Text
+']]' Punctuation
+',' Text
+' ' Text
+'a' Text
+' ' Text
+'[[' Punctuation
+'Roman circus' Name.Tag
+'|' Punctuation
+'circus' Text
+']]' Punctuation
+',' Text
+' ' Text
+'an' Text
+' ' Text
+'[[' Punctuation
+'amphitheatre' Name.Tag
+']]' Punctuation
+' ' Text
+'and' Text
+' ' Text
+'[[' Punctuation
+'Spa' Name.Tag
+'|' Punctuation
+'thermal' Text
+' ' Text
+'baths' Text
+']]' Punctuation
+'.' Text
+' ' Text
+'The' Text
+' ' Text
+'Gauls' Text
+' ' Text
+'mixed' Text
+' ' Text
+'with' Text
+' ' Text
+'Roman' Text
+' ' Text
+'settlers' Text
+' ' Text
+'and' Text
+' ' Text
+'eventually' Text
+' ' Text
+'adopted' Text
+' ' Text
+'Roman' Text
+' ' Text
+'culture' Text
+' ' Text
+'and' Text
+' ' Text
+'[[' Punctuation
+'Romance languages' Name.Tag
+'|' Punctuation
+'Roman' Text
+']]' Punctuation
+' ' Text
+'speech' Text
+' ' Text
+'(' Text
+'[[' Punctuation
+'Latin' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'from' Text
+' ' Text
+'which' Text
+' ' Text
+'the' Text
+' ' Text
+'French' Text
+' ' Text
+'language' Text
+' ' Text
+'evolved' Text
+')' Text
+'.' Text
+' ' Text
+'[[' Punctuation
+'Religion in ancient Rome' Name.Tag
+'|' Punctuation
+'Roman' Text
+' ' Text
+'polytheism' Text
+']]' Punctuation
+' ' Text
+'merged' Text
+' ' Text
+'with' Text
+' ' Text
+'[[' Punctuation
+'Ancient Celtic religion' Name.Tag
+'|' Punctuation
+'Gallic' Text
+' ' Text
+'paganism' Text
+']]' Punctuation
+' ' Text
+'into' Text
+' ' Text
+'the' Text
+' ' Text
+'same' Text
+' ' Text
+'[[' Punctuation
+'syncretism' Name.Tag
+']]' Punctuation
+'.' Text
+'\n' Text
+
+'\n' Text
+
+'From' Text
+' ' Text
+'the' Text
+' ' Text
+'250s' Text
+' ' Text
+'to' Text
+' ' Text
+'the' Text
+' ' Text
+'280s' Text
+' ' Text
+'AD' Text
+',' Text
+' ' Text
+'Roman' Text
+' ' Text
+'Gaul' Text
+' ' Text
+'suffered' Text
+' ' Text
+'a' Text
+' ' Text
+'serious' Text
+' ' Text
+'crisis' Text
+' ' Text
+'with' Text
+' ' Text
+'its' Text
+' ' Text
+'[[' Punctuation
+'Limes (Roman Empire)' Name.Tag
+'|' Punctuation
+'fortified' Text
+' ' Text
+'borders' Text
+']]' Punctuation
+' ' Text
+'being' Text
+' ' Text
+'attacked' Text
+' ' Text
+'on' Text
+' ' Text
+'several' Text
+' ' Text
+'occasions' Text
+' ' Text
+'by' Text
+' ' Text
+'[[' Punctuation
+'barbarian' Name.Tag
+']]' Punctuation
+'s' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+' ' Text.Whitespace
+'name' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+'c77' Literal.String.Double
+'"' Literal.String.Double
+'>' Punctuation
+'Carpentier' Text
+' ' Text
+'et' Text
+' ' Text
+'al' Text
+'.' Text
+' ' Text
+'2000' Text
+',' Text
+' ' Text
+'pp' Text
+'.' Text
+' ' Text
+'76' Text
+'–' Text
+'77' Text
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'Nevertheless' Text
+',' Text
+' ' Text
+'the' Text
+' ' Text
+'situation' Text
+' ' Text
+'improved' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'first' Text
+' ' Text
+'half' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'4th' Text
+' ' Text
+'century' Text
+',' Text
+' ' Text
+'which' Text
+' ' Text
+'was' Text
+' ' Text
+'a' Text
+' ' Text
+'period' Text
+' ' Text
+'of' Text
+' ' Text
+'revival' Text
+' ' Text
+'and' Text
+' ' Text
+'prosperity' Text
+' ' Text
+'for' Text
+' ' Text
+'Roman' Text
+' ' Text
+'Gaul' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'Carpentier' Text
+' ' Text
+"''" Generic.Emph
+'et' Generic.Emph
+' ' Generic.Emph
+'al' Generic.Emph
+'.' Generic.Emph
+"''" Generic.Emph
+' ' Text
+'2000' Text
+',' Text
+' ' Text
+'pp' Text
+'.' Text
+' ' Text
+'79' Text
+'–' Text
+'82' Text
+'.' Text
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'In' Text
+' ' Text
+'312' Text
+',' Text
+' ' Text
+'Emperor' Text
+' ' Text
+'[[' Punctuation
+'Constantine the Great' Name.Tag
+'|' Punctuation
+'Constantine' Text
+' ' Text
+'I' Text
+']]' Punctuation
+' ' Text
+'converted' Text
+' ' Text
+'to' Text
+' ' Text
+'Christianity' Text
+'.' Text
+' ' Text
+'Subsequently' Text
+',' Text
+' ' Text
+'Christians' Text
+',' Text
+' ' Text
+'who' Text
+' ' Text
+'had' Text
+' ' Text
+'been' Text
+' ' Text
+'persecuted' Text
+' ' Text
+'until' Text
+' ' Text
+'then' Text
+',' Text
+' ' Text
+'increased' Text
+' ' Text
+'rapidly' Text
+' ' Text
+'across' Text
+' ' Text
+'the' Text
+' ' Text
+'entire' Text
+' ' Text
+'Roman' Text
+' ' Text
+'Empire' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'Carpentier' Text
+' ' Text
+"''" Generic.Emph
+'et' Generic.Emph
+' ' Generic.Emph
+'al' Generic.Emph
+'.' Generic.Emph
+"''" Generic.Emph
+' ' Text
+'2000' Text
+',' Text
+' ' Text
+'p' Text
+'.' Text
+' ' Text
+'81' Text
+'.' Text
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'But' Text
+',' Text
+' ' Text
+'from' Text
+' ' Text
+'the' Text
+' ' Text
+'beginning' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'5th' Text
+' ' Text
+'century' Text
+',' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Migration Period' Name.Tag
+'|' Punctuation
+'Barbarian' Text
+' ' Text
+'Invasions' Text
+']]' Punctuation
+' ' Text
+'resumed' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'Carpentier' Text
+' ' Text
+"''" Generic.Emph
+'et' Generic.Emph
+' ' Generic.Emph
+'al' Generic.Emph
+'.' Generic.Emph
+"''" Generic.Emph
+' ' Text
+'2000' Text
+',' Text
+' ' Text
+'p' Text
+'.' Text
+' ' Text
+'84' Text
+'.' Text
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'Teutonic' Text
+' ' Text
+'tribes' Text
+' ' Text
+'invaded' Text
+' ' Text
+'the' Text
+' ' Text
+'region' Text
+' ' Text
+'from' Text
+' ' Text
+'present' Text
+'-' Text
+'day' Text
+' ' Text
+'Germany' Text
+',' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Visigoths' Name.Tag
+']]' Punctuation
+' ' Text
+'settling' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'southwest' Text
+',' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Burgundians' Name.Tag
+']]' Punctuation
+' ' Text
+'along' Text
+' ' Text
+'the' Text
+' ' Text
+'Rhine' Text
+' ' Text
+'River' Text
+' ' Text
+'Valley' Text
+',' Text
+' ' Text
+'and' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Franks' Name.Tag
+']]' Punctuation
+' ' Text
+'(' Text
+'from' Text
+' ' Text
+'whom' Text
+' ' Text
+'the' Text
+' ' Text
+'French' Text
+' ' Text
+'take' Text
+' ' Text
+'their' Text
+' ' Text
+'name' Text
+')' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'north' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'Carpentier' Text
+' ' Text
+"''" Generic.Emph
+'et' Generic.Emph
+' ' Generic.Emph
+'al' Generic.Emph
+'.' Generic.Emph
+"''" Generic.Emph
+' ' Text
+'2000' Text
+',' Text
+' ' Text
+'pp' Text
+'.' Text
+' ' Text
+'84' Text
+'–' Text
+'88' Text
+'.' Text
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'\n' Text
+
+'\n' Text
+
+'===' Generic.Subheading
+'Early Middle Ages (5th–10th century)' Generic.Subheading
+'===' Generic.Subheading
+'\n' Text.Whitespace
+
+'{{' Punctuation
+'Main' Name.Tag
+'|' Punctuation
+'Francia' Text
+'|' Punctuation
+'Merovingian' Text
+' ' Text
+'dynasty' Text
+'|' Punctuation
+'Carolingian' Text
+' ' Text
+'dynasty' Text
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'See' Name.Tag
+' ' Name.Tag
+'also' Name.Tag
+'|' Punctuation
+'List' Text
+' ' Text
+'of' Text
+' ' Text
+'French' Text
+' ' Text
+'monarchs' Text
+'|' Punctuation
+'France' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'Middle' Text
+' ' Text
+'Ages' Text
+'}}' Punctuation
+'\n' Text
+
+'[[' Punctuation
+'File' Name.Namespace
+':' Punctuation
+'Franks expansion.gif' Name.Tag
+'|' Punctuation
+'thumb' Text
+'|' Punctuation
+'alt' Name.Attribute
+'=' Operator
+'animated' Text
+' ' Text
+'gif' Text
+' ' Text
+'showing' Text
+' ' Text
+'expansion' Text
+' ' Text
+'of' Text
+' ' Text
+'Franks' Text
+' ' Text
+'across' Text
+' ' Text
+'Europe' Text
+'|' Punctuation
+'Frankish' Text
+' ' Text
+'expansion' Text
+' ' Text
+'from' Text
+' ' Text
+'481' Text
+' ' Text
+'to' Text
+' ' Text
+'870' Text
+']]' Punctuation
+'\n' Text
+
+'At' Text
+' ' Text
+'the' Text
+' ' Text
+'end' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Late antiquity' Name.Tag
+'|' Punctuation
+'Antiquity' Text
+']]' Punctuation
+' ' Text
+'period' Text
+',' Text
+' ' Text
+'ancient' Text
+' ' Text
+'Gaul' Text
+' ' Text
+'was' Text
+' ' Text
+'divided' Text
+' ' Text
+'into' Text
+' ' Text
+'several' Text
+' ' Text
+'Germanic' Text
+' ' Text
+'kingdoms' Text
+' ' Text
+'and' Text
+' ' Text
+'a' Text
+' ' Text
+'remaining' Text
+' ' Text
+'Gallo' Text
+'-' Text
+'Roman' Text
+' ' Text
+'territory' Text
+',' Text
+' ' Text
+'known' Text
+' ' Text
+'as' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Kingdom of Soissons' Name.Tag
+'|' Punctuation
+'Kingdom' Text
+' ' Text
+'of' Text
+' ' Text
+'Syagrius' Text
+']]' Punctuation
+'.' Text
+' ' Text
+'Simultaneously' Text
+',' Text
+' ' Text
+'[[' Punctuation
+'Celtic Britons' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'fleeing' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Anglo-Saxon settlement of Britain' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'settled' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'western' Text
+' ' Text
+'part' Text
+' ' Text
+'of' Text
+' ' Text
+'[[' Punctuation
+'Armorica' Name.Tag
+']]' Punctuation
+'.' Text
+' ' Text
+'As' Text
+' ' Text
+'a' Text
+' ' Text
+'result' Text
+',' Text
+' ' Text
+'the' Text
+' ' Text
+'Armorican' Text
+' ' Text
+'[[' Punctuation
+'peninsula' Name.Tag
+']]' Punctuation
+' ' Text
+'was' Text
+' ' Text
+'renamed' Text
+' ' Text
+'[[' Punctuation
+'Brittany' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'[[' Punctuation
+'Celts' Name.Tag
+'|' Punctuation
+'Celtic' Text
+' ' Text
+'culture' Text
+']]' Punctuation
+' ' Text
+'was' Text
+' ' Text
+'revived' Text
+' ' Text
+'and' Text
+' ' Text
+'independent' Text
+' ' Text
+'[[' Punctuation
+'petty kingdom' Name.Tag
+']]' Punctuation
+'s' Text
+' ' Text
+'arose' Text
+' ' Text
+'in' Text
+' ' Text
+'this' Text
+' ' Text
+'region' Text
+'.' Text
+'\n' Text
+
+'\n' Text
+
+'The' Text
+' ' Text
+'first' Text
+' ' Text
+'leader' Text
+' ' Text
+'to' Text
+' ' Text
+'make' Text
+' ' Text
+'himself' Text
+' ' Text
+'king' Text
+' ' Text
+'of' Text
+' ' Text
+'all' Text
+' ' Text
+'the' Text
+' ' Text
+'Franks' Text
+' ' Text
+'was' Text
+' ' Text
+'[[' Punctuation
+'Clovis I' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'who' Text
+' ' Text
+'began' Text
+' ' Text
+'his' Text
+' ' Text
+'reign' Text
+' ' Text
+'in' Text
+' ' Text
+'481' Text
+',' Text
+' ' Text
+'routing' Text
+' ' Text
+'the' Text
+' ' Text
+'last' Text
+' ' Text
+'forces' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'Roman' Text
+' ' Text
+'governors' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'province' Text
+' ' Text
+'in' Text
+' ' Text
+'486' Text
+'.' Text
+' ' Text
+'Clovis' Text
+' ' Text
+'claimed' Text
+' ' Text
+'that' Text
+' ' Text
+'he' Text
+' ' Text
+'would' Text
+' ' Text
+'be' Text
+' ' Text
+'baptised' Text
+' ' Text
+'a' Text
+' ' Text
+'Christian' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'event' Text
+' ' Text
+'of' Text
+' ' Text
+'his' Text
+' ' Text
+'victory' Text
+' ' Text
+'against' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Visigothic Kingdom' Name.Tag
+'|' Punctuation
+'Visigoths' Text
+']]' Punctuation
+',' Text
+' ' Text
+'which' Text
+' ' Text
+'was' Text
+' ' Text
+'said' Text
+' ' Text
+'to' Text
+' ' Text
+'have' Text
+' ' Text
+'guaranteed' Text
+' ' Text
+'the' Text
+' ' Text
+'battle' Text
+'.' Text
+' ' Text
+'Clovis' Text
+' ' Text
+'[[' Punctuation
+'Franco-Visigothic Wars' Name.Tag
+'|' Punctuation
+'regained' Text
+' ' Text
+'the' Text
+' ' Text
+'southwest' Text
+' ' Text
+'from' Text
+' ' Text
+'the' Text
+' ' Text
+'Visigoths' Text
+']]' Punctuation
+',' Text
+' ' Text
+'was' Text
+' ' Text
+'baptised' Text
+' ' Text
+'in' Text
+' ' Text
+'508' Text
+' ' Text
+'and' Text
+' ' Text
+'made' Text
+' ' Text
+'himself' Text
+' ' Text
+'master' Text
+' ' Text
+'of' Text
+' ' Text
+'what' Text
+' ' Text
+'is' Text
+' ' Text
+'now' Text
+' ' Text
+'western' Text
+' ' Text
+'Germany' Text
+'.' Text
+'\n' Text
+
+'\n' Text
+
+'Clovis' Text
+' ' Text
+'I' Text
+' ' Text
+'was' Text
+' ' Text
+'the' Text
+' ' Text
+'first' Text
+' ' Text
+'[[' Punctuation
+'Germanic peoples' Name.Tag
+'|' Punctuation
+'Germanic' Text
+']]' Punctuation
+' ' Text
+'conqueror' Text
+' ' Text
+'after' Text
+' ' Text
+'the' Text
+' ' Text
+'fall' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'Roman' Text
+' ' Text
+'Empire' Text
+' ' Text
+'to' Text
+' ' Text
+'convert' Text
+' ' Text
+'to' Text
+' ' Text
+'Catholic' Text
+' ' Text
+'Christianity' Text
+',' Text
+' ' Text
+'rather' Text
+' ' Text
+'than' Text
+' ' Text
+'[[' Punctuation
+'Arianism' Name.Tag
+']]' Punctuation
+';' Text
+' ' Text
+'thus' Text
+' ' Text
+'France' Text
+' ' Text
+'was' Text
+' ' Text
+'given' Text
+' ' Text
+'the' Text
+' ' Text
+'title' Text
+' ' Text
+'"' Text
+'Eldest' Text
+' ' Text
+'daughter' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'Church' Text
+'"' Text
+' ' Text
+'(' Text
+"''" Generic.Emph
+'' Punctuation
+'{{' Punctuation
+'Lang' Name.Tag
+'-' Name.Tag
+'fr' Name.Tag
+'|' Punctuation
+'La' Text
+' ' Text
+'fille' Text
+' ' Text
+'aînée' Text
+' ' Text
+'de' Text
+' ' Text
+'l' Text
+"'" Text
+'Église' Text
+'|' Punctuation
+'links' Name.Label
+'=' Operator
+'no' Text
+'}}' Punctuation
+"''" Generic.Emph
+')' Generic.Emph
+' ' Generic.Emph
+'by' Generic.Emph
+' ' Generic.Emph
+'the' Generic.Emph
+' ' Generic.Emph
+'papacy' Generic.Emph
+',' Generic.Emph
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Faith' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'Eldest' Text
+' ' Text
+'Daughter' Text
+'&nbsp;' Name.Entity
+'–' Text
+' ' Text
+'Can' Text
+' ' Text
+'France' Text
+' ' Text
+'retain' Text
+' ' Text
+'her' Text
+' ' Text
+'Catholic' Text
+' ' Text
+'heritage' Text
+'?' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'wf' Text
+'-' Text
+'f' Text
+'.' Text
+'org' Text
+'/' Text
+'03' Text
+'-' Text
+'1' Text
+'-' Text
+'France' Text
+'.' Text
+'html' Text
+' ' Text
+'|' Punctuation
+'url-status' Name.Label
+'=' Operator
+'dead' Text
+' ' Text
+'|' Punctuation
+'archive-url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'web' Text
+'.' Text
+'archive' Text
+'.' Text
+'org' Text
+'/' Text
+'web' Text
+'/' Text
+'20110722112834' Text
+'/' Text
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'wf' Text
+'-' Text
+'f' Text
+'.' Text
+'org' Text
+'/' Text
+'03' Text
+'-' Text
+'1' Text
+'-' Text
+'France' Text
+'.' Text
+'html' Text
+' ' Text
+'|' Punctuation
+'archive-date' Name.Label
+'=' Operator
+'22' Text
+' ' Text
+'July' Text
+' ' Text
+'2011' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'17' Text
+' ' Text
+'July' Text
+' ' Text
+'2011' Text
+' ' Text
+'|' Punctuation
+'publisher' Name.Label
+'=' Operator
+'Wf' Text
+'-' Text
+'f' Text
+'.' Text
+'org' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'and' Text
+' ' Text
+'French' Text
+' ' Text
+'kings' Text
+' ' Text
+'would' Text
+' ' Text
+'be' Text
+' ' Text
+'called' Text
+' ' Text
+'"' Text
+'the' Text
+' ' Text
+'Most' Text
+' ' Text
+'Christian' Text
+' ' Text
+'Kings' Text
+' ' Text
+'of' Text
+' ' Text
+'France' Text
+'"' Text
+' ' Text
+'(' Text
+"''" Generic.Emph
+'' Punctuation
+'{{' Punctuation
+'Lang' Name.Tag
+'|' Punctuation
+'und' Text
+'|' Punctuation
+'Rex' Text
+' ' Text
+'Christianissimus' Text
+'}}' Punctuation
+"''" Generic.Emph
+')' Generic.Emph
+'.' Generic.Emph
+'\n' Text
+
+'\n' Text
+
+'[[' Punctuation
+'File' Name.Namespace
+':' Punctuation
+'Chlodwigs taufe.jpg' Name.Tag
+'|' Punctuation
+'thumb' Text
+'|' Punctuation
+'left' Text
+'|' Punctuation
+'upright' Text
+'|' Punctuation
+'alt' Name.Attribute
+'=' Operator
+'painting' Text
+' ' Text
+'of' Text
+' ' Text
+'Clovis' Text
+' ' Text
+'I' Text
+' ' Text
+'conversion' Text
+' ' Text
+'to' Text
+' ' Text
+'Catholicism' Text
+' ' Text
+'in' Text
+' ' Text
+'498' Text
+',' Text
+' ' Text
+'a' Text
+' ' Text
+'king' Text
+' ' Text
+'being' Text
+' ' Text
+'baptised' Text
+' ' Text
+'in' Text
+' ' Text
+'a' Text
+' ' Text
+'tub' Text
+' ' Text
+'in' Text
+' ' Text
+'a' Text
+' ' Text
+'cathedral' Text
+' ' Text
+'surrounded' Text
+' ' Text
+'by' Text
+' ' Text
+'bishop' Text
+' ' Text
+'and' Text
+' ' Text
+'monks' Text
+'|' Punctuation
+'With' Text
+' ' Text
+'[[' Punctuation
+'Clovis I' Name.Tag
+'|' Punctuation
+'Clovis' Text
+']]' Punctuation
+"'" Text
+'s' Text
+' ' Text
+'conversion' Text
+' ' Text
+'to' Text
+' ' Text
+'Catholicism' Text
+' ' Text
+'in' Text
+' ' Text
+'498' Text
+',' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'List of Frankish kings' Name.Tag
+'|' Punctuation
+'Frankish' Text
+' ' Text
+'monarchy' Text
+']]' Punctuation
+',' Text
+' ' Text
+'[[' Punctuation
+'Elective monarchy' Name.Tag
+'|' Punctuation
+'elective' Text
+']]' Punctuation
+' ' Text
+'and' Text
+' ' Text
+'[[' Punctuation
+'Secular state' Name.Tag
+'|' Punctuation
+'secular' Text
+']]' Punctuation
+' ' Text
+'until' Text
+' ' Text
+'then' Text
+',' Text
+' ' Text
+'became' Text
+' ' Text
+'[[' Punctuation
+'Hereditary monarchy' Name.Tag
+'|' Punctuation
+'hereditary' Text
+']]' Punctuation
+' ' Text
+'and' Text
+' ' Text
+'of' Text
+' ' Text
+'[[' Punctuation
+'Divine right of kings' Name.Tag
+'|' Punctuation
+'divine' Text
+' ' Text
+'right' Text
+']]' Punctuation
+'.' Text
+']]' Punctuation
+'\n' Text
+
+'The' Text
+' ' Text
+'Franks' Text
+' ' Text
+'embraced' Text
+' ' Text
+'the' Text
+' ' Text
+'Christian' Text
+' ' Text
+'[[' Punctuation
+'Gallo-Roman culture' Name.Tag
+']]' Punctuation
+' ' Text
+'and' Text
+' ' Text
+'ancient' Text
+' ' Text
+'Gaul' Text
+' ' Text
+'was' Text
+' ' Text
+'eventually' Text
+' ' Text
+'renamed' Text
+' ' Text
+"''" Generic.Emph
+'[[' Punctuation
+'Francia' Name.Tag
+']]' Punctuation
+"''" Generic.Emph
+' ' Text
+'(' Text
+'"' Text
+'Land' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'Franks' Text
+'"' Text
+')' Text
+'.' Text
+' ' Text
+'The' Text
+' ' Text
+'Germanic' Text
+' ' Text
+'Franks' Text
+' ' Text
+'adopted' Text
+' ' Text
+'[[' Punctuation
+'Romance languages' Name.Tag
+'|' Punctuation
+'Romanic' Text
+' ' Text
+'languages' Text
+']]' Punctuation
+',' Text
+' ' Text
+'except' Text
+' ' Text
+'in' Text
+' ' Text
+'northern' Text
+' ' Text
+'Gaul' Text
+' ' Text
+'where' Text
+' ' Text
+'Roman' Text
+' ' Text
+'settlements' Text
+' ' Text
+'were' Text
+' ' Text
+'less' Text
+' ' Text
+'dense' Text
+' ' Text
+'and' Text
+' ' Text
+'where' Text
+' ' Text
+'[[' Punctuation
+'Germanic languages' Name.Tag
+']]' Punctuation
+' ' Text
+'emerged' Text
+'.' Text
+' ' Text
+'Clovis' Text
+' ' Text
+'made' Text
+' ' Text
+'Paris' Text
+' ' Text
+'his' Text
+' ' Text
+'capital' Text
+' ' Text
+'and' Text
+' ' Text
+'established' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Merovingian dynasty' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'but' Text
+' ' Text
+'his' Text
+' ' Text
+'kingdom' Text
+' ' Text
+'would' Text
+' ' Text
+'not' Text
+' ' Text
+'survive' Text
+' ' Text
+'his' Text
+' ' Text
+'death' Text
+'.' Text
+' ' Text
+'The' Text
+' ' Text
+'Franks' Text
+' ' Text
+'treated' Text
+' ' Text
+'land' Text
+' ' Text
+'purely' Text
+' ' Text
+'as' Text
+' ' Text
+'a' Text
+' ' Text
+'private' Text
+' ' Text
+'possession' Text
+' ' Text
+'and' Text
+' ' Text
+'divided' Text
+' ' Text
+'it' Text
+' ' Text
+'among' Text
+' ' Text
+'their' Text
+' ' Text
+'heirs' Text
+',' Text
+' ' Text
+'so' Text
+' ' Text
+'four' Text
+' ' Text
+'kingdoms' Text
+' ' Text
+'emerged' Text
+' ' Text
+'from' Text
+' ' Text
+'that' Text
+' ' Text
+'of' Text
+' ' Text
+'Clovis' Text
+':' Text
+' ' Text
+'Paris' Text
+',' Text
+' ' Text
+'[[' Punctuation
+'Orléans' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'[[' Punctuation
+'Soissons' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'and' Text
+' ' Text
+'[[' Punctuation
+'Reims' Name.Tag
+'|' Punctuation
+'Rheims' Text
+']]' Punctuation
+'.' Text
+' ' Text
+'The' Text
+' ' Text
+'[[' Punctuation
+'Roi fainéant' Name.Tag
+'|' Punctuation
+'last' Text
+' ' Text
+'Merovingian' Text
+' ' Text
+'kings' Text
+']]' Punctuation
+' ' Text
+'[[' Punctuation
+'Power behind the throne' Name.Tag
+'|' Punctuation
+'lost' Text
+' ' Text
+'power' Text
+']]' Punctuation
+' ' Text
+'to' Text
+' ' Text
+'their' Text
+' ' Text
+'[[' Punctuation
+'Mayor of the palace' Name.Tag
+'|' Punctuation
+'mayors' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'palace' Text
+']]' Punctuation
+' ' Text
+'(' Text
+'head' Text
+' ' Text
+'of' Text
+' ' Text
+'household' Text
+')' Text
+'.' Text
+' ' Text
+'One' Text
+' ' Text
+'mayor' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'palace' Text
+',' Text
+' ' Text
+'[[' Punctuation
+'Charles Martel' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'defeated' Text
+' ' Text
+'an' Text
+' ' Text
+'[[' Punctuation
+'Umayyad invasion of Gaul' Name.Tag
+']]' Punctuation
+' ' Text
+'at' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Battle of Tours' Name.Tag
+']]' Punctuation
+' ' Text
+'(' Text
+'732' Text
+')' Text
+' ' Text
+'and' Text
+' ' Text
+'earned' Text
+' ' Text
+'respect' Text
+' ' Text
+'and' Text
+' ' Text
+'power' Text
+' ' Text
+'within' Text
+' ' Text
+'the' Text
+' ' Text
+'Frankish' Text
+' ' Text
+'kingdoms' Text
+'.' Text
+' ' Text
+'His' Text
+' ' Text
+'son' Text
+',' Text
+' ' Text
+'[[' Punctuation
+'Pepin the Short' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'seized' Text
+' ' Text
+'the' Text
+' ' Text
+'crown' Text
+' ' Text
+'of' Text
+' ' Text
+'Francia' Text
+' ' Text
+'from' Text
+' ' Text
+'the' Text
+' ' Text
+'weakened' Text
+' ' Text
+'Merovingians' Text
+' ' Text
+'and' Text
+' ' Text
+'founded' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Carolingian dynasty' Name.Tag
+']]' Punctuation
+'.' Text
+' ' Text
+'Pepin' Text
+"'" Text
+'s' Text
+' ' Text
+'son' Text
+',' Text
+' ' Text
+'[[' Punctuation
+'Charlemagne' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'reunited' Text
+' ' Text
+'the' Text
+' ' Text
+'Frankish' Text
+' ' Text
+'kingdoms' Text
+' ' Text
+'and' Text
+' ' Text
+'built' Text
+' ' Text
+'a' Text
+' ' Text
+'vast' Text
+' ' Text
+'empire' Text
+' ' Text
+'across' Text
+' ' Text
+'[[' Punctuation
+'Western Europe' Name.Tag
+'|' Punctuation
+'Western' Text
+']]' Punctuation
+' ' Text
+'and' Text
+' ' Text
+'Central' Text
+' ' Text
+'Europe' Text
+'.' Text
+'\n' Text
+
+'\n' Text
+
+'Proclaimed' Text
+' ' Text
+'[[' Punctuation
+'Holy Roman Emperor' Name.Tag
+']]' Punctuation
+' ' Text
+'by' Text
+' ' Text
+'[[' Punctuation
+'Pope Leo III' Name.Tag
+']]' Punctuation
+' ' Text
+'and' Text
+' ' Text
+'thus' Text
+' ' Text
+'establishing' Text
+' ' Text
+'in' Text
+' ' Text
+'earnest' Text
+' ' Text
+'the' Text
+' ' Text
+'French' Text
+' ' Text
+'Government' Text
+"'" Text
+'s' Text
+' ' Text
+'longtime' Text
+' ' Text
+'[[' Punctuation
+'History of the Catholic Church in France' Name.Tag
+'|' Punctuation
+'historical' Text
+' ' Text
+'association' Text
+']]' Punctuation
+' ' Text
+'with' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Catholic Church' Name.Tag
+']]' Punctuation
+',' Text
+'<' Punctuation
+'ref' Name.Tag
+' ' Text.Whitespace
+'name' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+'georgetown1' Literal.String.Double
+'"' Literal.String.Double
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'France' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'berkleycenter' Text
+'.' Text
+'georgetown' Text
+'.' Text
+'edu' Text
+'/' Text
+'resources' Text
+'/' Text
+'countries' Text
+'/' Text
+'france' Text
+' ' Text
+'|' Punctuation
+'url-status' Name.Label
+'=' Operator
+'dead' Text
+' ' Text
+'|' Punctuation
+'archive-url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'web' Text
+'.' Text
+'archive' Text
+'.' Text
+'org' Text
+'/' Text
+'web' Text
+'/' Text
+'20110206213909' Text
+'/' Text
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'berkleycenter' Text
+'.' Text
+'georgetown' Text
+'.' Text
+'edu' Text
+'/' Text
+'resources' Text
+'/' Text
+'countries' Text
+'/' Text
+'france' Text
+' ' Text
+'|' Punctuation
+'archive-date' Name.Label
+'=' Operator
+'6' Text
+' ' Text
+'February' Text
+' ' Text
+'2011' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'14' Text
+' ' Text
+'December' Text
+' ' Text
+'2011' Text
+' ' Text
+'|' Punctuation
+'publisher' Name.Label
+'=' Operator
+'[[' Punctuation
+'Berkley Center for Religion, Peace, and World Affairs' Name.Tag
+']]' Punctuation
+'}}' Punctuation
+' ' Text
+'See' Text
+' ' Text
+'drop' Text
+'-' Text
+'down' Text
+' ' Text
+'essay' Text
+' ' Text
+'on' Text
+' ' Text
+'"' Text
+'Religion' Text
+' ' Text
+'and' Text
+' ' Text
+'Politics' Text
+' ' Text
+'until' Text
+' ' Text
+'the' Text
+' ' Text
+'French' Text
+' ' Text
+'Revolution' Text
+'"' Text
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'Charlemagne' Text
+' ' Text
+'tried' Text
+' ' Text
+'to' Text
+' ' Text
+'revive' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Western Roman Empire' Name.Tag
+']]' Punctuation
+' ' Text
+'and' Text
+' ' Text
+'its' Text
+' ' Text
+'cultural' Text
+' ' Text
+'grandeur' Text
+'.' Text
+' ' Text
+'Charlemagne' Text
+"'" Text
+'s' Text
+' ' Text
+'son' Text
+',' Text
+' ' Text
+'[[' Punctuation
+'Louis the Pious' Name.Tag
+'|' Punctuation
+'Louis' Text
+' ' Text
+'I' Text
+']]' Punctuation
+' ' Text
+'(' Text
+'Emperor' Text
+' ' Text
+'814' Text
+'–' Text
+'840' Text
+')' Text
+',' Text
+' ' Text
+'kept' Text
+' ' Text
+'the' Text
+' ' Text
+'empire' Text
+' ' Text
+'united' Text
+';' Text
+' ' Text
+'however' Text
+',' Text
+' ' Text
+'this' Text
+' ' Text
+'Carolingian' Text
+' ' Text
+'Empire' Text
+' ' Text
+'would' Text
+' ' Text
+'not' Text
+' ' Text
+'survive' Text
+' ' Text
+'his' Text
+' ' Text
+'death' Text
+'.' Text
+' ' Text
+'In' Text
+' ' Text
+'843' Text
+',' Text
+' ' Text
+'under' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Treaty of Verdun' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'the' Text
+' ' Text
+'empire' Text
+' ' Text
+'was' Text
+' ' Text
+'divided' Text
+' ' Text
+'between' Text
+' ' Text
+'Louis' Text
+"'" Text
+' ' Text
+'three' Text
+' ' Text
+'sons' Text
+',' Text
+' ' Text
+'with' Text
+' ' Text
+'[[' Punctuation
+'East Francia' Name.Tag
+']]' Punctuation
+' ' Text
+'going' Text
+' ' Text
+'to' Text
+' ' Text
+'[[' Punctuation
+'Louis the German' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'[[' Punctuation
+'Middle Francia' Name.Tag
+']]' Punctuation
+' ' Text
+'to' Text
+' ' Text
+'[[' Punctuation
+'Lothair I' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'and' Text
+' ' Text
+'[[' Punctuation
+'West Francia' Name.Tag
+']]' Punctuation
+' ' Text
+'to' Text
+' ' Text
+'[[' Punctuation
+'Charles the Bald' Name.Tag
+']]' Punctuation
+'.' Text
+' ' Text
+'West' Text
+' ' Text
+'Francia' Text
+' ' Text
+'approximated' Text
+' ' Text
+'the' Text
+' ' Text
+'area' Text
+' ' Text
+'occupied' Text
+' ' Text
+'by' Text
+' ' Text
+'and' Text
+' ' Text
+'was' Text
+' ' Text
+'the' Text
+' ' Text
+'precursor' Text
+' ' Text
+'to' Text
+',' Text
+' ' Text
+'modern' Text
+' ' Text
+'France' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'date' Name.Label
+'=' Operator
+'27' Text
+' ' Text
+'February' Text
+' ' Text
+'2008' Text
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Treaty' Text
+' ' Text
+'of' Text
+' ' Text
+'Verdun' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'history' Text
+'.' Text
+'howstuffworks' Text
+'.' Text
+'com' Text
+'/' Text
+'european' Text
+'-' Text
+'history' Text
+'/' Text
+'treaty' Text
+'-' Text
+'of' Text
+'-' Text
+'verdun' Text
+'.' Text
+'htm' Text
+' ' Text
+'|' Punctuation
+'url-status' Name.Label
+'=' Operator
+'dead' Text
+' ' Text
+'|' Punctuation
+'archive-url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'web' Text
+'.' Text
+'archive' Text
+'.' Text
+'org' Text
+'/' Text
+'web' Text
+'/' Text
+'20110716063456' Text
+'/' Text
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'history' Text
+'.' Text
+'howstuffworks' Text
+'.' Text
+'com' Text
+'/' Text
+'european' Text
+'-' Text
+'history' Text
+'/' Text
+'treaty' Text
+'-' Text
+'of' Text
+'-' Text
+'verdun' Text
+'.' Text
+'htm' Text
+' ' Text
+'|' Punctuation
+'archive-date' Name.Label
+'=' Operator
+'16' Text
+' ' Text
+'July' Text
+' ' Text
+'2011' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'17' Text
+' ' Text
+'July' Text
+' ' Text
+'2011' Text
+' ' Text
+'|' Punctuation
+'publisher' Name.Label
+'=' Operator
+'History' Text
+'.' Text
+'howstuffworks' Text
+'.' Text
+'com' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'\n' Text
+
+'\n' Text
+
+'During' Text
+' ' Text
+'the' Text
+' ' Text
+'9th' Text
+' ' Text
+'and' Text
+' ' Text
+'10th' Text
+' ' Text
+'centuries' Text
+',' Text
+' ' Text
+'continually' Text
+' ' Text
+'threatened' Text
+' ' Text
+'by' Text
+' ' Text
+'[[' Punctuation
+'Viking expansion' Name.Tag
+'|' Punctuation
+'Viking' Text
+' ' Text
+'invasions' Text
+']]' Punctuation
+',' Text
+' ' Text
+'France' Text
+' ' Text
+'became' Text
+' ' Text
+'a' Text
+' ' Text
+'very' Text
+' ' Text
+'decentralised' Text
+' ' Text
+'state' Text
+':' Text
+' ' Text
+'the' Text
+' ' Text
+'nobility' Text
+"'" Text
+'s' Text
+' ' Text
+'titles' Text
+' ' Text
+'and' Text
+' ' Text
+'lands' Text
+' ' Text
+'became' Text
+' ' Text
+'hereditary' Text
+',' Text
+' ' Text
+'and' Text
+' ' Text
+'the' Text
+' ' Text
+'authority' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'king' Text
+' ' Text
+'became' Text
+' ' Text
+'more' Text
+' ' Text
+'religious' Text
+' ' Text
+'than' Text
+' ' Text
+'secular' Text
+' ' Text
+'and' Text
+' ' Text
+'thus' Text
+' ' Text
+'was' Text
+' ' Text
+'less' Text
+' ' Text
+'effective' Text
+' ' Text
+'and' Text
+' ' Text
+'constantly' Text
+' ' Text
+'challenged' Text
+' ' Text
+'by' Text
+' ' Text
+'powerful' Text
+' ' Text
+'noblemen' Text
+'.' Text
+' ' Text
+'Thus' Text
+' ' Text
+'was' Text
+' ' Text
+'established' Text
+' ' Text
+'[[' Punctuation
+'feudalism' Name.Tag
+']]' Punctuation
+' ' Text
+'in' Text
+' ' Text
+'France' Text
+'.' Text
+' ' Text
+'Over' Text
+' ' Text
+'time' Text
+',' Text
+' ' Text
+'some' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'king' Text
+"'" Text
+'s' Text
+' ' Text
+'vassals' Text
+' ' Text
+'would' Text
+' ' Text
+'grow' Text
+' ' Text
+'so' Text
+' ' Text
+'powerful' Text
+' ' Text
+'that' Text
+' ' Text
+'they' Text
+' ' Text
+'often' Text
+' ' Text
+'posed' Text
+' ' Text
+'a' Text
+' ' Text
+'threat' Text
+' ' Text
+'to' Text
+' ' Text
+'the' Text
+' ' Text
+'king' Text
+'.' Text
+' ' Text
+'For' Text
+' ' Text
+'example' Text
+',' Text
+' ' Text
+'after' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Battle of Hastings' Name.Tag
+']]' Punctuation
+' ' Text
+'in' Text
+' ' Text
+'1066' Text
+',' Text
+' ' Text
+'[[' Punctuation
+'William the Conqueror' Name.Tag
+']]' Punctuation
+' ' Text
+'added' Text
+' ' Text
+'"' Text
+'King' Text
+' ' Text
+'of' Text
+' ' Text
+'England' Text
+'"' Text
+' ' Text
+'to' Text
+' ' Text
+'his' Text
+' ' Text
+'titles' Text
+',' Text
+' ' Text
+'becoming' Text
+' ' Text
+'both' Text
+' ' Text
+'the' Text
+' ' Text
+'vassal' Text
+' ' Text
+'to' Text
+' ' Text
+'(' Text
+'as' Text
+' ' Text
+'Duke' Text
+' ' Text
+'of' Text
+' ' Text
+'[[' Punctuation
+'Normandy' Name.Tag
+']]' Punctuation
+')' Text
+' ' Text
+'and' Text
+' ' Text
+'the' Text
+' ' Text
+'equal' Text
+' ' Text
+'of' Text
+' ' Text
+'(' Text
+'as' Text
+' ' Text
+'king' Text
+' ' Text
+'of' Text
+' ' Text
+'England' Text
+')' Text
+' ' Text
+'the' Text
+' ' Text
+'king' Text
+' ' Text
+'of' Text
+' ' Text
+'France' Text
+',' Text
+' ' Text
+'creating' Text
+' ' Text
+'recurring' Text
+' ' Text
+'tensions' Text
+'.' Text
+'\n' Text
+
+'\n' Text
+
+'===' Generic.Subheading
+'High and Late Middle Ages (10th–15th century)' Generic.Subheading
+'===' Generic.Subheading
+'\n' Text.Whitespace
+
+'{{' Punctuation
+'Main' Name.Tag
+'|' Punctuation
+'Kingdom' Text
+' ' Text
+'of' Text
+' ' Text
+'France' Text
+'|' Punctuation
+'Capetian' Text
+' ' Text
+'dynasty' Text
+'|' Punctuation
+'House' Text
+' ' Text
+'of' Text
+' ' Text
+'Valois' Text
+'|' Punctuation
+'House' Text
+' ' Text
+'of' Text
+' ' Text
+'Bourbon' Text
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'See' Name.Tag
+' ' Name.Tag
+'also' Name.Tag
+'|' Punctuation
+'List' Text
+' ' Text
+'of' Text
+' ' Text
+'French' Text
+' ' Text
+'monarchs' Text
+'|' Punctuation
+'France' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'Middle' Text
+' ' Text
+'Ages' Text
+'}}' Punctuation
+'\n' Text
+
+'[[' Punctuation
+'File' Name.Namespace
+':' Punctuation
+'Joan of Arc miniature graded.jpg' Name.Tag
+'|' Punctuation
+'thumb' Text
+'|' Punctuation
+'left' Text
+'|' Punctuation
+'upright' Text
+'|' Punctuation
+'[[' Punctuation
+'Joan of Arc' Name.Tag
+']]' Punctuation
+' ' Text
+'led' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'French Army' Name.Tag
+']]' Punctuation
+' ' Text
+'to' Text
+' ' Text
+'several' Text
+' ' Text
+'important' Text
+' ' Text
+'victories' Text
+' ' Text
+'during' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+"Hundred Years' War" Name.Tag
+']]' Punctuation
+' ' Text
+'(' Text
+'1337' Text
+'–' Text
+'1453' Text
+')' Text
+',' Text
+' ' Text
+'which' Text
+' ' Text
+'paved' Text
+' ' Text
+'the' Text
+' ' Text
+'way' Text
+' ' Text
+'for' Text
+' ' Text
+'the' Text
+' ' Text
+'final' Text
+' ' Text
+'victory' Text
+'.' Text
+']]' Punctuation
+'\n' Text
+
+'\n' Text
+
+'The' Text
+' ' Text
+'Carolingian' Text
+' ' Text
+'dynasty' Text
+' ' Text
+'ruled' Text
+' ' Text
+'France' Text
+' ' Text
+'until' Text
+' ' Text
+'987' Text
+',' Text
+' ' Text
+'when' Text
+' ' Text
+'[[' Punctuation
+'Hugh Capet' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'Duke' Text
+' ' Text
+'of' Text
+' ' Text
+'France' Text
+' ' Text
+'and' Text
+' ' Text
+'Count' Text
+' ' Text
+'of' Text
+' ' Text
+'Paris' Text
+',' Text
+' ' Text
+'was' Text
+' ' Text
+'crowned' Text
+' ' Text
+'[[' Punctuation
+'List of French monarchs' Name.Tag
+'|' Punctuation
+'King' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'Franks' Text
+']]' Punctuation
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'History' Text
+' ' Text
+'of' Text
+' ' Text
+'France' Text
+'&nbsp;' Name.Entity
+'–' Text
+' ' Text
+'The' Text
+' ' Text
+'Capetian' Text
+' ' Text
+'kings' Text
+' ' Text
+'of' Text
+' ' Text
+'France' Text
+':' Text
+' ' Text
+'AD' Text
+' ' Text
+'987' Text
+'–' Text
+'1328' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'historyworld' Text
+'.' Text
+'net' Text
+'/' Text
+'wrldhis' Text
+'/' Text
+'PlainTextHistories' Text
+'.' Text
+'asp' Text
+'?' Text
+'groupid' Text
+'=' Text
+'1008' Text
+'&' Text
+'HistoryID' Text
+'=' Text
+'ab03' Text
+'&' Text
+'gtrack' Text
+'=' Text
+'pthc' Text
+' ' Text
+'|' Punctuation
+'url-status' Name.Label
+'=' Operator
+'dead' Text
+' ' Text
+'|' Punctuation
+'archive-url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'web' Text
+'.' Text
+'archive' Text
+'.' Text
+'org' Text
+'/' Text
+'web' Text
+'/' Text
+'20110806020426' Text
+'/' Text
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'historyworld' Text
+'.' Text
+'net' Text
+'/' Text
+'wrldhis' Text
+'/' Text
+'PlainTextHistories' Text
+'.' Text
+'asp' Text
+'?' Text
+'groupid' Text
+'=' Text
+'1008' Text
+'&' Text
+'HistoryID' Text
+'=' Text
+'ab03' Text
+'&' Text
+'gtrack' Text
+'=' Text
+'pthc' Text
+' ' Text
+'|' Punctuation
+'archive-date' Name.Label
+'=' Operator
+'6' Text
+' ' Text
+'August' Text
+' ' Text
+'2011' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'21' Text
+' ' Text
+'July' Text
+' ' Text
+'2011' Text
+' ' Text
+'|' Punctuation
+'publisher' Name.Label
+'=' Operator
+'Historyworld' Text
+'.' Text
+'net' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'His' Text
+' ' Text
+'descendants' Text
+'{{' Punctuation
+'Mdash' Name.Tag
+'}}' Punctuation
+'the' Text
+' ' Text
+'[[' Punctuation
+'House of Capet' Name.Tag
+'|' Punctuation
+'Capetians' Text
+']]' Punctuation
+',' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'House of Valois' Name.Tag
+']]' Punctuation
+' ' Text
+'and' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'House of Bourbon' Name.Tag
+']]' Punctuation
+'{{' Punctuation
+'Mdash' Name.Tag
+'}}' Punctuation
+'progressively' Text
+' ' Text
+'unified' Text
+' ' Text
+'the' Text
+' ' Text
+'country' Text
+' ' Text
+'through' Text
+' ' Text
+'wars' Text
+' ' Text
+'and' Text
+' ' Text
+'dynastic' Text
+' ' Text
+'inheritance' Text
+' ' Text
+'into' Text
+' ' Text
+'the' Text
+' ' Text
+'Kingdom' Text
+' ' Text
+'of' Text
+' ' Text
+'France' Text
+',' Text
+' ' Text
+'which' Text
+' ' Text
+'was' Text
+' ' Text
+'fully' Text
+' ' Text
+'declared' Text
+' ' Text
+'in' Text
+' ' Text
+'1190' Text
+' ' Text
+'by' Text
+' ' Text
+'[[' Punctuation
+'Philip II of France' Name.Tag
+']]' Punctuation
+' ' Text
+'(' Text
+"''" Generic.Emph
+'Philippe' Generic.Emph
+' ' Generic.Emph
+'Auguste' Generic.Emph
+"''" Generic.Emph
+')' Text
+'.' Text
+' ' Text
+'Later' Text
+' ' Text
+'kings' Text
+' ' Text
+'would' Text
+' ' Text
+'expand' Text
+' ' Text
+'their' Text
+' ' Text
+'directly' Text
+' ' Text
+'possessed' Text
+' ' Text
+'[[' Punctuation
+'Crown lands of France' Name.Tag
+'|' Punctuation
+"''" Generic.Emph
+'domaine' Generic.Emph
+' ' Generic.Emph
+'royal' Generic.Emph
+"''" Generic.Emph
+']]' Punctuation
+' ' Text
+'to' Text
+' ' Text
+'cover' Text
+' ' Text
+'over' Text
+' ' Text
+'half' Text
+' ' Text
+'of' Text
+' ' Text
+'modern' Text
+' ' Text
+'continental' Text
+' ' Text
+'France' Text
+' ' Text
+'by' Text
+' ' Text
+'the' Text
+' ' Text
+'15th' Text
+' ' Text
+'century' Text
+',' Text
+' ' Text
+'including' Text
+' ' Text
+'most' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'north' Text
+',' Text
+' ' Text
+'centre' Text
+' ' Text
+'and' Text
+' ' Text
+'west' Text
+' ' Text
+'of' Text
+' ' Text
+'France' Text
+'.' Text
+' ' Text
+'During' Text
+' ' Text
+'this' Text
+' ' Text
+'process' Text
+',' Text
+' ' Text
+'the' Text
+' ' Text
+'royal' Text
+' ' Text
+'authority' Text
+' ' Text
+'became' Text
+' ' Text
+'more' Text
+' ' Text
+'and' Text
+' ' Text
+'more' Text
+' ' Text
+'assertive' Text
+',' Text
+' ' Text
+'centred' Text
+' ' Text
+'on' Text
+' ' Text
+'a' Text
+' ' Text
+'[[' Punctuation
+'Estates of the realm' Name.Tag
+'|' Punctuation
+'hierarchically' Text
+' ' Text
+'conceived' Text
+' ' Text
+'society' Text
+']]' Punctuation
+' ' Text
+'distinguishing' Text
+' ' Text
+'[[' Punctuation
+'French nobility' Name.Tag
+'|' Punctuation
+'nobility' Text
+']]' Punctuation
+',' Text
+' ' Text
+'clergy' Text
+',' Text
+' ' Text
+'and' Text
+' ' Text
+'[[' Punctuation
+'Estates General (France)' Name.Tag
+'|' Punctuation
+'commoners' Text
+']]' Punctuation
+'.' Text
+'\n' Text
+
+'\n' Text
+
+'The' Text
+' ' Text
+'French' Text
+' ' Text
+'nobility' Text
+' ' Text
+'played' Text
+' ' Text
+'a' Text
+' ' Text
+'prominent' Text
+' ' Text
+'role' Text
+' ' Text
+'in' Text
+' ' Text
+'most' Text
+' ' Text
+'[[' Punctuation
+'Crusades' Name.Tag
+']]' Punctuation
+' ' Text
+'to' Text
+' ' Text
+'restore' Text
+' ' Text
+'Christian' Text
+' ' Text
+'access' Text
+' ' Text
+'to' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Holy Land' Name.Tag
+']]' Punctuation
+'.' Text
+' ' Text
+'French' Text
+' ' Text
+'knights' Text
+' ' Text
+'made' Text
+' ' Text
+'up' Text
+' ' Text
+'the' Text
+' ' Text
+'bulk' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'steady' Text
+' ' Text
+'flow' Text
+' ' Text
+'of' Text
+' ' Text
+'reinforcements' Text
+' ' Text
+'throughout' Text
+' ' Text
+'the' Text
+' ' Text
+'two' Text
+'-' Text
+'hundred' Text
+'-' Text
+'year' Text
+' ' Text
+'span' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'Crusades' Text
+',' Text
+' ' Text
+'in' Text
+' ' Text
+'such' Text
+' ' Text
+'a' Text
+' ' Text
+'fashion' Text
+' ' Text
+'that' Text
+' ' Text
+'the' Text
+' ' Text
+'Arabs' Text
+' ' Text
+'uniformly' Text
+' ' Text
+'referred' Text
+' ' Text
+'to' Text
+' ' Text
+'the' Text
+' ' Text
+'crusaders' Text
+' ' Text
+'as' Text
+' ' Text
+"''" Generic.Emph
+'Franj' Generic.Emph
+"''" Generic.Emph
+' ' Text
+'caring' Text
+' ' Text
+'little' Text
+' ' Text
+'whether' Text
+' ' Text
+'they' Text
+' ' Text
+'came' Text
+' ' Text
+'from' Text
+' ' Text
+'France' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+' ' Text.Whitespace
+'name' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+'google' Literal.String.Double
+'.' Literal.String.Double
+'fr' Literal.String.Double
+'"' Literal.String.Double
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'book' Name.Tag
+' ' Text
+'|' Punctuation
+'last1' Name.Label
+'=' Operator
+'Nadeau' Text
+' ' Text
+'|' Punctuation
+'first1' Name.Label
+'=' Operator
+'Jean' Text
+'-' Text
+'Benoit' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'books' Text
+'.' Text
+'google' Text
+'.' Text
+'com' Text
+'/' Text
+'books' Text
+'?' Text
+'id' Text
+'=' Text
+'JYDOrzMpgGcC' Text
+'&' Text
+'pg' Text
+'=' Text
+'PT34' Text
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'The' Text
+' ' Text
+'Story' Text
+' ' Text
+'of' Text
+' ' Text
+'French' Text
+' ' Text
+'|' Punctuation
+'last2' Name.Label
+'=' Operator
+'Barlow' Text
+' ' Text
+'|' Punctuation
+'first2' Name.Label
+'=' Operator
+'Julie' Text
+' ' Text
+'|' Punctuation
+'date' Name.Label
+'=' Operator
+'8' Text
+' ' Text
+'January' Text
+' ' Text
+'2008' Text
+' ' Text
+'|' Punctuation
+'publisher' Name.Label
+'=' Operator
+'St' Text
+'.' Text
+' ' Text
+'Martin' Text
+"'" Text
+'s' Text
+' ' Text
+'Press' Text
+' ' Text
+'|' Punctuation
+'isbn' Name.Label
+'=' Operator
+'978' Text
+'-' Text
+'1' Text
+'-' Text
+'4299' Text
+'-' Text
+'3240' Text
+'-' Text
+'0' Text
+' ' Text
+'|' Punctuation
+'pages' Name.Label
+'=' Operator
+'34ff' Text
+' ' Text
+'|' Punctuation
+'author-link' Name.Label
+'=' Operator
+'Jean' Text
+'-' Text
+'Benoît' Text
+' ' Text
+'Nadeau' Text
+' ' Text
+'|' Punctuation
+'author-link2' Name.Label
+'=' Operator
+'Julie' Text
+' ' Text
+'Barlow' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'The' Text
+' ' Text
+'French' Text
+' ' Text
+'Crusaders' Text
+' ' Text
+'also' Text
+' ' Text
+'imported' Text
+' ' Text
+'the' Text
+' ' Text
+'French' Text
+' ' Text
+'language' Text
+' ' Text
+'into' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Levant' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'making' Text
+' ' Text
+'[[' Punctuation
+'Old French' Name.Tag
+'|' Punctuation
+'French' Text
+']]' Punctuation
+' ' Text
+'the' Text
+' ' Text
+'base' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+"''" Generic.Emph
+'[[' Punctuation
+'lingua franca' Name.Tag
+']]' Punctuation
+"''" Generic.Emph
+' ' Text
+'(' Text
+'lit' Text
+'.' Text
+' ' Text
+'"' Text
+'Frankish' Text
+' ' Text
+'language' Text
+'"' Text
+')' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Crusader states' Name.Tag
+']]' Punctuation
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+' ' Text.Whitespace
+'name' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+'google' Literal.String.Double
+'.' Literal.String.Double
+'fr' Literal.String.Double
+'"' Literal.String.Double
+' ' Text.Whitespace
+'/>' Punctuation
+' ' Text
+'French' Text
+' ' Text
+'knights' Text
+' ' Text
+'also' Text
+' ' Text
+'made' Text
+' ' Text
+'up' Text
+' ' Text
+'the' Text
+' ' Text
+'majority' Text
+' ' Text
+'in' Text
+' ' Text
+'both' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Knights Hospitaller' Name.Tag
+'|' Punctuation
+'Hospital' Text
+']]' Punctuation
+' ' Text
+'and' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Knights Templar' Name.Tag
+'|' Punctuation
+'Temple' Text
+' ' Text
+'orders' Text
+']]' Punctuation
+'.' Text
+' ' Text
+'The' Text
+' ' Text
+'latter' Text
+',' Text
+' ' Text
+'in' Text
+' ' Text
+'particular' Text
+',' Text
+' ' Text
+'held' Text
+' ' Text
+'numerous' Text
+' ' Text
+'properties' Text
+' ' Text
+'throughout' Text
+' ' Text
+'France' Text
+' ' Text
+'and' Text
+' ' Text
+'by' Text
+' ' Text
+'the' Text
+' ' Text
+'13th' Text
+' ' Text
+'century' Text
+' ' Text
+'were' Text
+' ' Text
+'the' Text
+' ' Text
+'principal' Text
+' ' Text
+'bankers' Text
+' ' Text
+'for' Text
+' ' Text
+'the' Text
+' ' Text
+'French' Text
+' ' Text
+'crown' Text
+',' Text
+' ' Text
+'until' Text
+' ' Text
+'[[' Punctuation
+'Philip IV of France' Name.Tag
+'|' Punctuation
+'Philip' Text
+' ' Text
+'IV' Text
+']]' Punctuation
+' ' Text
+'annihilated' Text
+' ' Text
+'the' Text
+' ' Text
+'order' Text
+' ' Text
+'in' Text
+' ' Text
+'1307' Text
+'.' Text
+' ' Text
+'The' Text
+' ' Text
+'[[' Punctuation
+'Albigensian Crusade' Name.Tag
+']]' Punctuation
+' ' Text
+'was' Text
+' ' Text
+'launched' Text
+' ' Text
+'in' Text
+' ' Text
+'1209' Text
+' ' Text
+'to' Text
+' ' Text
+'eliminate' Text
+' ' Text
+'the' Text
+' ' Text
+'heretical' Text
+' ' Text
+'[[' Punctuation
+'Catharism' Name.Tag
+'|' Punctuation
+'Cathars' Text
+']]' Punctuation
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'southwestern' Text
+' ' Text
+'area' Text
+' ' Text
+'of' Text
+' ' Text
+'modern' Text
+'-' Text
+'day' Text
+' ' Text
+'France' Text
+'.' Text
+' ' Text
+'In' Text
+' ' Text
+'the' Text
+' ' Text
+'end' Text
+',' Text
+' ' Text
+'the' Text
+' ' Text
+'Cathars' Text
+' ' Text
+'were' Text
+' ' Text
+'exterminated' Text
+' ' Text
+'and' Text
+' ' Text
+'the' Text
+' ' Text
+'autonomous' Text
+' ' Text
+'[[' Punctuation
+'Counts of Toulouse' Name.Tag
+'|' Punctuation
+'County' Text
+' ' Text
+'of' Text
+' ' Text
+'Toulouse' Text
+']]' Punctuation
+' ' Text
+'was' Text
+' ' Text
+'annexed' Text
+' ' Text
+'into' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'crown lands of France' Name.Tag
+']]' Punctuation
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'magazine' Name.Tag
+' ' Text
+'|' Punctuation
+'date' Name.Label
+'=' Operator
+'28' Text
+' ' Text
+'April' Text
+' ' Text
+'1961' Text
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Massacre' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'Pure' Text
+' ' Text
+'|' Punctuation
+'magazine' Name.Label
+'=' Operator
+'Time' Text
+' ' Text
+'|' Punctuation
+'location' Name.Label
+'=' Operator
+'New' Text
+' ' Text
+'York' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'time' Text
+'.' Text
+'com' Text
+'/' Text
+'time' Text
+'/' Text
+'magazine' Text
+'/' Text
+'article' Text
+'/' Text
+'0' Text
+',' Text
+'9171' Text
+',' Text
+'897752' Text
+'-' Text
+'2' Text
+',' Text
+'00' Text
+'.' Text
+'html' Text
+' ' Text
+'|' Punctuation
+'url-status' Name.Label
+'=' Operator
+'dead' Text
+' ' Text
+'|' Punctuation
+'archive-url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'web' Text
+'.' Text
+'archive' Text
+'.' Text
+'org' Text
+'/' Text
+'web' Text
+'/' Text
+'20080120172908' Text
+'/' Text
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'time' Text
+'.' Text
+'com' Text
+'/' Text
+'time' Text
+'/' Text
+'magazine' Text
+'/' Text
+'article' Text
+'/' Text
+'0' Text
+',' Text
+'9171' Text
+',' Text
+'897752' Text
+'-' Text
+'2' Text
+',' Text
+'00' Text
+'.' Text
+'html' Text
+' ' Text
+'|' Punctuation
+'archive-date' Name.Label
+'=' Operator
+'20' Text
+' ' Text
+'January' Text
+' ' Text
+'2008' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'\n' Text
+
+'[[' Punctuation
+'File' Name.Namespace
+':' Punctuation
+'French borders from 985 to 1947.gif' Name.Tag
+'|' Punctuation
+'thumb' Text
+'|' Punctuation
+'alt' Name.Attribute
+'=' Operator
+'animated' Text
+' ' Text
+'gif' Text
+' ' Text
+'showing' Text
+' ' Text
+'changes' Text
+' ' Text
+'in' Text
+' ' Text
+'French' Text
+' ' Text
+'borders' Text
+'|' Punctuation
+'[[' Punctuation
+'Territorial evolution of France' Name.Tag
+'|' Punctuation
+'Metropolitan' Text
+' ' Text
+'France' Text
+' ' Text
+'territorial' Text
+' ' Text
+'evolution' Text
+']]' Punctuation
+' ' Text
+'from' Text
+' ' Text
+'985' Text
+' ' Text
+'to' Text
+' ' Text
+'1947' Text
+']]' Punctuation
+'\n' Text
+
+'\n' Text
+
+'From' Text
+' ' Text
+'the' Text
+' ' Text
+'11th' Text
+' ' Text
+'century' Text
+',' Text
+' ' Text
+'the' Text
+' ' Text
+'House' Text
+' ' Text
+'of' Text
+' ' Text
+'Plantagenet' Text
+',' Text
+' ' Text
+'the' Text
+' ' Text
+'rulers' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'County of Anjou' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'succeeded' Text
+' ' Text
+'in' Text
+' ' Text
+'establishing' Text
+' ' Text
+'its' Text
+' ' Text
+'dominion' Text
+' ' Text
+'over' Text
+' ' Text
+'the' Text
+' ' Text
+'surrounding' Text
+' ' Text
+'provinces' Text
+' ' Text
+'of' Text
+' ' Text
+'[[' Punctuation
+'Maine (province)' Name.Tag
+'|' Punctuation
+'Maine' Text
+']]' Punctuation
+' ' Text
+'and' Text
+' ' Text
+'[[' Punctuation
+'Touraine' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'then' Text
+' ' Text
+'progressively' Text
+' ' Text
+'built' Text
+' ' Text
+'an' Text
+' ' Text
+'"' Text
+'empire' Text
+'"' Text
+' ' Text
+'that' Text
+' ' Text
+'spanned' Text
+' ' Text
+'from' Text
+' ' Text
+'England' Text
+' ' Text
+'to' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Pyrenees' Name.Tag
+']]' Punctuation
+' ' Text
+'and' Text
+' ' Text
+'covering' Text
+' ' Text
+'half' Text
+' ' Text
+'of' Text
+' ' Text
+'modern' Text
+' ' Text
+'France' Text
+'.' Text
+' ' Text
+'Tensions' Text
+' ' Text
+'between' Text
+' ' Text
+'the' Text
+' ' Text
+'kingdom' Text
+' ' Text
+'of' Text
+' ' Text
+'France' Text
+' ' Text
+'and' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Angevin Empire' Name.Tag
+'|' Punctuation
+'Plantagenet' Text
+' ' Text
+'empire' Text
+']]' Punctuation
+' ' Text
+'would' Text
+' ' Text
+'last' Text
+' ' Text
+'a' Text
+' ' Text
+'hundred' Text
+' ' Text
+'years' Text
+',' Text
+' ' Text
+'until' Text
+' ' Text
+'Philip' Text
+' ' Text
+'II' Text
+' ' Text
+'of' Text
+' ' Text
+'France' Text
+' ' Text
+'conquered' Text
+',' Text
+' ' Text
+'between' Text
+' ' Text
+'1202' Text
+' ' Text
+'and' Text
+' ' Text
+'1214' Text
+',' Text
+' ' Text
+'most' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'continental' Text
+' ' Text
+'possessions' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'empire' Text
+',' Text
+' ' Text
+'leaving' Text
+' ' Text
+'England' Text
+' ' Text
+'and' Text
+' ' Text
+'[[' Punctuation
+'Aquitaine' Name.Tag
+']]' Punctuation
+' ' Text
+'to' Text
+' ' Text
+'the' Text
+' ' Text
+'Plantagenets' Text
+'.' Text
+'\n' Text
+
+'\n' Text
+
+'[[' Punctuation
+'Charles IV of France' Name.Tag
+'|' Punctuation
+'Charles' Text
+' ' Text
+'IV' Text
+' ' Text
+'the' Text
+' ' Text
+'Fair' Text
+']]' Punctuation
+' ' Text
+'died' Text
+' ' Text
+'without' Text
+' ' Text
+'an' Text
+' ' Text
+'heir' Text
+' ' Text
+'in' Text
+' ' Text
+'1328' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+' ' Text.Whitespace
+'name' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+'guerard' Literal.String.Double
+'"' Literal.String.Double
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'book' Name.Tag
+' ' Text
+'|' Punctuation
+'last' Name.Label
+'=' Operator
+'Guerard' Text
+' ' Text
+'|' Punctuation
+'first' Name.Label
+'=' Operator
+'Albert' Text
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'France' Text
+':' Text
+' ' Text
+'A' Text
+' ' Text
+'Modern' Text
+' ' Text
+'History' Text
+' ' Text
+'|' Punctuation
+'date' Name.Label
+'=' Operator
+'1959' Text
+' ' Text
+'|' Punctuation
+'publisher' Name.Label
+'=' Operator
+'University' Text
+' ' Text
+'of' Text
+' ' Text
+'Michigan' Text
+' ' Text
+'Press' Text
+' ' Text
+'|' Punctuation
+'location' Name.Label
+'=' Operator
+'Ann' Text
+' ' Text
+'Arbor' Text
+' ' Text
+'|' Punctuation
+'pages' Name.Label
+'=' Operator
+'100' Text
+',' Text
+' ' Text
+'101' Text
+' ' Text
+'|' Punctuation
+'author-link' Name.Label
+'=' Operator
+'Albert' Text
+' ' Text
+'Léon' Text
+' ' Text
+'Guérard' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'Under' Text
+' ' Text
+'[[' Punctuation
+'Salic law' Name.Tag
+']]' Punctuation
+' ' Text
+'the' Text
+' ' Text
+'crown' Text
+' ' Text
+'of' Text
+' ' Text
+'France' Text
+' ' Text
+'could' Text
+' ' Text
+'not' Text
+' ' Text
+'pass' Text
+' ' Text
+'to' Text
+' ' Text
+'a' Text
+' ' Text
+'woman' Text
+' ' Text
+'nor' Text
+' ' Text
+'could' Text
+' ' Text
+'the' Text
+' ' Text
+'line' Text
+' ' Text
+'of' Text
+' ' Text
+'kingship' Text
+' ' Text
+'pass' Text
+' ' Text
+'through' Text
+' ' Text
+'the' Text
+' ' Text
+'female' Text
+' ' Text
+'line' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+' ' Text.Whitespace
+'name' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+'guerard' Literal.String.Double
+'"' Literal.String.Double
+' ' Text.Whitespace
+'/>' Punctuation
+' ' Text
+'Accordingly' Text
+',' Text
+' ' Text
+'the' Text
+' ' Text
+'crown' Text
+' ' Text
+'passed' Text
+' ' Text
+'to' Text
+' ' Text
+'Philip' Text
+' ' Text
+'of' Text
+' ' Text
+'Valois' Text
+',' Text
+' ' Text
+'rather' Text
+' ' Text
+'than' Text
+' ' Text
+'through' Text
+' ' Text
+'the' Text
+' ' Text
+'female' Text
+' ' Text
+'line' Text
+' ' Text
+'to' Text
+' ' Text
+'Edward' Text
+' ' Text
+'of' Text
+' ' Text
+'Plantagenet' Text
+',' Text
+' ' Text
+'who' Text
+' ' Text
+'would' Text
+' ' Text
+'soon' Text
+' ' Text
+'become' Text
+' ' Text
+'[[' Punctuation
+'Edward III of England' Name.Tag
+']]' Punctuation
+'.' Text
+' ' Text
+'During' Text
+' ' Text
+'the' Text
+' ' Text
+'reign' Text
+' ' Text
+'of' Text
+' ' Text
+'[[' Punctuation
+'Philip IV of France' Name.Tag
+'|' Punctuation
+'Philip' Text
+' ' Text
+'of' Text
+' ' Text
+'Valois' Text
+']]' Punctuation
+',' Text
+' ' Text
+'the' Text
+' ' Text
+'French' Text
+' ' Text
+'monarchy' Text
+' ' Text
+'reached' Text
+' ' Text
+'the' Text
+' ' Text
+'height' Text
+' ' Text
+'of' Text
+' ' Text
+'its' Text
+' ' Text
+'medieval' Text
+' ' Text
+'power' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+' ' Text.Whitespace
+'name' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+'guerard' Literal.String.Double
+'"' Literal.String.Double
+' ' Text.Whitespace
+'/>' Punctuation
+' ' Text
+'However' Text
+' ' Text
+'Philip' Text
+"'" Text
+'s' Text
+' ' Text
+'seat' Text
+' ' Text
+'on' Text
+' ' Text
+'the' Text
+' ' Text
+'throne' Text
+' ' Text
+'was' Text
+' ' Text
+'contested' Text
+' ' Text
+'by' Text
+' ' Text
+'Edward' Text
+' ' Text
+'III' Text
+' ' Text
+'of' Text
+' ' Text
+'England' Text
+' ' Text
+'in' Text
+' ' Text
+'1337' Text
+',' Text
+' ' Text
+'and' Text
+' ' Text
+'England' Text
+' ' Text
+'and' Text
+' ' Text
+'France' Text
+' ' Text
+'entered' Text
+' ' Text
+'the' Text
+' ' Text
+'off' Text
+'-' Text
+'and' Text
+'-' Text
+'on' Text
+' ' Text
+'[[' Punctuation
+"Hundred Years' War" Name.Tag
+']]' Punctuation
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'journal' Name.Tag
+' ' Text
+'|' Punctuation
+'last' Name.Label
+'=' Operator
+'Templeman' Text
+' ' Text
+'|' Punctuation
+'first' Name.Label
+'=' Operator
+'Geoffrey' Text
+' ' Text
+'|' Punctuation
+'author-link' Name.Label
+'=' Operator
+'Geoffrey' Text
+' ' Text
+'Templeman' Text
+' ' Text
+'|' Punctuation
+'date' Name.Label
+'=' Operator
+'1952' Text
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Edward' Text
+' ' Text
+'III' Text
+' ' Text
+'and' Text
+' ' Text
+'the' Text
+' ' Text
+'beginnings' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'Hundred' Text
+' ' Text
+'Years' Text
+' ' Text
+'War' Text
+' ' Text
+'|' Punctuation
+'journal' Name.Label
+'=' Operator
+'Transactions' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'Royal' Text
+' ' Text
+'Historical' Text
+' ' Text
+'Society' Text
+' ' Text
+'|' Punctuation
+'volume' Name.Label
+'=' Operator
+'2' Text
+' ' Text
+'|' Punctuation
+'pages' Name.Label
+'=' Operator
+'69' Text
+'–' Text
+'88' Text
+' ' Text
+'|' Punctuation
+'doi' Name.Label
+'=' Operator
+'10' Text
+'.' Text
+'2307' Text
+'/' Text
+'3678784' Text
+'|' Punctuation
+'jstor' Name.Label
+'=' Operator
+'3678784' Text
+' ' Text
+'|' Punctuation
+'s2cid' Name.Label
+'=' Operator
+'161389883' Text
+' ' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'The' Text
+' ' Text
+'exact' Text
+' ' Text
+'boundaries' Text
+' ' Text
+'changed' Text
+' ' Text
+'greatly' Text
+' ' Text
+'with' Text
+' ' Text
+'time' Text
+',' Text
+' ' Text
+'but' Text
+' ' Text
+'landholdings' Text
+' ' Text
+'inside' Text
+' ' Text
+'France' Text
+' ' Text
+'by' Text
+' ' Text
+'the' Text
+' ' Text
+'English' Text
+' ' Text
+'Kings' Text
+' ' Text
+'remained' Text
+' ' Text
+'extensive' Text
+' ' Text
+'for' Text
+' ' Text
+'decades' Text
+'.' Text
+' ' Text
+'With' Text
+' ' Text
+'charismatic' Text
+' ' Text
+'leaders' Text
+',' Text
+' ' Text
+'such' Text
+' ' Text
+'as' Text
+' ' Text
+'[[' Punctuation
+'Joan of Arc' Name.Tag
+']]' Punctuation
+' ' Text
+'and' Text
+' ' Text
+'[[' Punctuation
+'La Hire' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'strong' Text
+' ' Text
+'French' Text
+' ' Text
+'counterattacks' Text
+' ' Text
+'won' Text
+' ' Text
+'back' Text
+' ' Text
+'most' Text
+' ' Text
+'English' Text
+' ' Text
+'continental' Text
+' ' Text
+'territories' Text
+'.' Text
+' ' Text
+'Like' Text
+' ' Text
+'the' Text
+' ' Text
+'rest' Text
+' ' Text
+'of' Text
+' ' Text
+'Europe' Text
+',' Text
+' ' Text
+'France' Text
+' ' Text
+'was' Text
+' ' Text
+'struck' Text
+' ' Text
+'by' Text
+' ' Text
+'the' Text
+' ' Text
+'Black' Text
+' ' Text
+'Death' Text
+' ' Text
+'due' Text
+' ' Text
+'to' Text
+' ' Text
+'which' Text
+' ' Text
+'half' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'17' Text
+'&nbsp;' Name.Entity
+'million' Text
+' ' Text
+'population' Text
+' ' Text
+'of' Text
+' ' Text
+'France' Text
+' ' Text
+'died' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'book' Name.Tag
+' ' Text
+'|' Punctuation
+'last' Name.Label
+'=' Operator
+'Le' Text
+' ' Text
+'Roy' Text
+' ' Text
+'Ladurie' Text
+' ' Text
+'|' Punctuation
+'first' Name.Label
+'=' Operator
+'Emmanuel' Text
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'The' Text
+' ' Text
+'French' Text
+' ' Text
+'peasantry' Text
+',' Text
+' ' Text
+'1450' Text
+'–' Text
+'1660' Text
+' ' Text
+'|' Punctuation
+'date' Name.Label
+'=' Operator
+'1987' Text
+' ' Text
+'|' Punctuation
+'publisher' Name.Label
+'=' Operator
+'University' Text
+' ' Text
+'of' Text
+' ' Text
+'California' Text
+' ' Text
+'Press' Text
+' ' Text
+'|' Punctuation
+'isbn' Name.Label
+'=' Operator
+'978' Text
+'-' Text
+'0' Text
+'-' Text
+'520' Text
+'-' Text
+'05523' Text
+'-' Text
+'0' Text
+' ' Text
+'|' Punctuation
+'page' Name.Label
+'=' Operator
+'[' Punctuation
+'https://archive.org/details/frenchpeasantry10000lero/page/32' Name.Label
+' ' Text.Whitespace
+'32' Text
+']' Punctuation
+' ' Text
+'|' Punctuation
+'author-link' Name.Label
+'=' Operator
+'Emmanuel' Text
+'}}' Punctuation
+';' Text
+' ' Text
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'book' Name.Tag
+' ' Text
+'|' Punctuation
+'first' Name.Label
+'=' Operator
+'Peter' Text
+' ' Text
+'|' Punctuation
+'last' Name.Label
+'=' Operator
+'Turchin' Text
+' ' Text
+'|' Punctuation
+'author-link' Name.Label
+'=' Operator
+'Peter' Text
+' ' Text
+'Turchin' Text
+' ' Text
+'|' Punctuation
+'date' Name.Label
+'=' Operator
+'2003' Text
+' ' Text
+'|' Punctuation
+'page' Name.Label
+'=' Operator
+'[' Punctuation
+'https://books.google.com/books?id=mUoCrTUo-eEC&pg=PA179' Name.Label
+' ' Text.Whitespace
+'179' Text
+']' Punctuation
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Historical' Text
+' ' Text
+'dynamics' Text
+':' Text
+' ' Text
+'why' Text
+' ' Text
+'states' Text
+' ' Text
+'rise' Text
+' ' Text
+'and' Text
+' ' Text
+'fall' Text
+' ' Text
+'|' Punctuation
+'publisher' Name.Label
+'=' Operator
+'Princeton' Text
+' ' Text
+'University' Text
+' ' Text
+'Press' Text
+' ' Text
+'|' Punctuation
+'isbn' Name.Label
+'=' Operator
+'978' Text
+'-' Text
+'0' Text
+'-' Text
+'691' Text
+'-' Text
+'11669' Text
+'-' Text
+'3' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'\n' Text
+
+'\n' Text
+
+'===' Generic.Subheading
+'Early modern period (15th century–1789)' Generic.Subheading
+'===' Generic.Subheading
+'\n' Text.Whitespace
+
+'{{' Punctuation
+'Main' Name.Tag
+' ' Name.Tag
+'article' Name.Tag
+'|' Punctuation
+'French' Text
+' ' Text
+'Renaissance' Text
+'|' Punctuation
+'Early' Text
+' ' Text
+'modern' Text
+' ' Text
+'France' Text
+'|' Punctuation
+'French' Text
+' ' Text
+'colonial' Text
+' ' Text
+'empire' Text
+'|' Punctuation
+'Ancien' Text
+' ' Text
+'Régime' Text
+'}}' Punctuation
+'\n' Text
+
+'[[' Punctuation
+'File' Name.Namespace
+':' Punctuation
+'Chateau de Chenonceau 2008E.jpg' Name.Tag
+'|' Punctuation
+'thumb' Text
+'|' Punctuation
+'left' Text
+'|' Punctuation
+'The' Text
+' ' Text
+'[[' Punctuation
+'Château de Chenonceau' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'nowadays' Text
+' ' Text
+'part' Text
+' ' Text
+'of' Text
+' ' Text
+'a' Text
+' ' Text
+'[[' Punctuation
+'UNESCO' Name.Tag
+']]' Punctuation
+' ' Text
+'[[' Punctuation
+'World Heritage Site' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'was' Text
+' ' Text
+'built' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'early' Text
+' ' Text
+'16th' Text
+' ' Text
+'century' Text
+'.' Text
+']]' Punctuation
+'\n' Text
+
+'The' Text
+' ' Text
+'French' Text
+' ' Text
+'Renaissance' Text
+' ' Text
+'saw' Text
+' ' Text
+'spectacular' Text
+' ' Text
+'cultural' Text
+' ' Text
+'development' Text
+' ' Text
+'and' Text
+' ' Text
+'the' Text
+' ' Text
+'first' Text
+' ' Text
+'standardisation' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'French' Text
+' ' Text
+'language' Text
+',' Text
+' ' Text
+'which' Text
+' ' Text
+'would' Text
+' ' Text
+'become' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Ordinance of Villers-Cotterêts' Name.Tag
+'|' Punctuation
+'official' Text
+' ' Text
+'language' Text
+' ' Text
+'of' Text
+' ' Text
+'France' Text
+']]' Punctuation
+' ' Text
+'and' Text
+' ' Text
+'the' Text
+' ' Text
+'language' Text
+' ' Text
+'of' Text
+' ' Text
+'Europe' Text
+"'" Text
+'s' Text
+' ' Text
+'aristocracy' Text
+'.' Text
+' ' Text
+'It' Text
+' ' Text
+'also' Text
+' ' Text
+'saw' Text
+' ' Text
+'a' Text
+' ' Text
+'long' Text
+' ' Text
+'set' Text
+' ' Text
+'of' Text
+' ' Text
+'wars' Text
+',' Text
+' ' Text
+'known' Text
+' ' Text
+'as' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Italian Wars' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'between' Text
+' ' Text
+'France' Text
+' ' Text
+'and' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'House of Habsburg' Name.Tag
+']]' Punctuation
+'.' Text
+' ' Text
+'French' Text
+' ' Text
+'explorers' Text
+',' Text
+' ' Text
+'such' Text
+' ' Text
+'as' Text
+' ' Text
+'[[' Punctuation
+'Jacques Cartier' Name.Tag
+']]' Punctuation
+' ' Text
+'or' Text
+' ' Text
+'[[' Punctuation
+'Samuel de Champlain' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'claimed' Text
+' ' Text
+'lands' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'Americas' Text
+' ' Text
+'for' Text
+' ' Text
+'France' Text
+',' Text
+' ' Text
+'paving' Text
+' ' Text
+'the' Text
+' ' Text
+'way' Text
+' ' Text
+'for' Text
+' ' Text
+'the' Text
+' ' Text
+'expansion' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'French' Text
+' ' Text
+'colonial' Text
+' ' Text
+'empire' Text
+'.' Text
+' ' Text
+'The' Text
+' ' Text
+'rise' Text
+' ' Text
+'of' Text
+' ' Text
+'Protestantism' Text
+' ' Text
+'in' Text
+' ' Text
+'Europe' Text
+' ' Text
+'led' Text
+' ' Text
+'France' Text
+' ' Text
+'to' Text
+' ' Text
+'a' Text
+' ' Text
+'civil' Text
+' ' Text
+'war' Text
+' ' Text
+'known' Text
+' ' Text
+'as' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'French Wars of Religion' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'where' Text
+',' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'most' Text
+' ' Text
+'notorious' Text
+' ' Text
+'incident' Text
+',' Text
+' ' Text
+'thousands' Text
+' ' Text
+'of' Text
+' ' Text
+'[[' Punctuation
+'Huguenot' Name.Tag
+']]' Punctuation
+'s' Text
+' ' Text
+'were' Text
+' ' Text
+'murdered' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+"St. Bartholomew's Day massacre" Name.Tag
+']]' Punctuation
+' ' Text
+'of' Text
+' ' Text
+'1572' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'encyclopedia' Name.Tag
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Massacre' Text
+' ' Text
+'of' Text
+' ' Text
+'Saint' Text
+' ' Text
+'Bartholomew' Text
+"'" Text
+'s' Text
+' ' Text
+'Day' Text
+' ' Text
+'|' Punctuation
+'encyclopedia' Name.Label
+'=' Operator
+'Encyclopædia' Text
+' ' Text
+'Britannica' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'britannica' Text
+'.' Text
+'com' Text
+'/' Text
+'EBchecked' Text
+'/' Text
+'topic' Text
+'/' Text
+'516821' Text
+'/' Text
+'Massacre' Text
+'-' Text
+'of' Text
+'-' Text
+'Saint' Text
+'-' Text
+'Bartholomews' Text
+'-' Text
+'Day' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'21' Text
+' ' Text
+'July' Text
+' ' Text
+'2011' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'The' Text
+' ' Text
+'Wars' Text
+' ' Text
+'of' Text
+' ' Text
+'Religion' Text
+' ' Text
+'were' Text
+' ' Text
+'ended' Text
+' ' Text
+'by' Text
+' ' Text
+'[[' Punctuation
+'Henry IV of France' Name.Tag
+'|' Punctuation
+'Henry' Text
+' ' Text
+'IV' Text
+']]' Punctuation
+"'" Text
+'s' Text
+' ' Text
+'[[' Punctuation
+'Edict of Nantes' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'which' Text
+' ' Text
+'granted' Text
+' ' Text
+'some' Text
+' ' Text
+'freedom' Text
+' ' Text
+'of' Text
+' ' Text
+'religion' Text
+' ' Text
+'to' Text
+' ' Text
+'the' Text
+' ' Text
+'Huguenots' Text
+'.' Text
+' ' Text
+'[[' Punctuation
+'Habsburg Spain' Name.Tag
+'|' Punctuation
+'Spanish' Text
+']]' Punctuation
+' ' Text
+'troops' Text
+',' Text
+' ' Text
+'the' Text
+' ' Text
+'terror' Text
+' ' Text
+'of' Text
+' ' Text
+'Western' Text
+' ' Text
+'Europe' Text
+',' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'book' Name.Tag
+' ' Text
+'|' Punctuation
+'last' Name.Label
+'=' Operator
+'Rex' Text
+' ' Text
+'|' Punctuation
+'first' Name.Label
+'=' Operator
+'Richard' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'books' Text
+'.' Text
+'google' Text
+'.' Text
+'com' Text
+'/' Text
+'books' Text
+'?' Text
+'id' Text
+'=' Text
+'uSVVBQAAQBAJ' Text
+'&' Text
+'pg' Text
+'=' Text
+'PT302' Text
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Tudors' Text
+':' Text
+' ' Text
+'The' Text
+' ' Text
+'Illustrated' Text
+' ' Text
+'History' Text
+' ' Text
+'|' Punctuation
+'date' Name.Label
+'=' Operator
+'15' Text
+' ' Text
+'November' Text
+' ' Text
+'2014' Text
+' ' Text
+'|' Punctuation
+'publisher' Name.Label
+'=' Operator
+'Amberley' Text
+' ' Text
+'Publishing' Text
+' ' Text
+'Limited' Text
+' ' Text
+'|' Punctuation
+'isbn' Name.Label
+'=' Operator
+'978' Text
+'-' Text
+'1' Text
+'-' Text
+'4456' Text
+'-' Text
+'4403' Text
+'-' Text
+'5' Text
+' ' Text
+'|' Punctuation
+'via' Name.Label
+'=' Operator
+'Google' Text
+' ' Text
+'Books' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'assisted' Text
+' ' Text
+'the' Text
+' ' Text
+'Catholic' Text
+' ' Text
+'side' Text
+' ' Text
+'during' Text
+' ' Text
+'the' Text
+' ' Text
+'Wars' Text
+' ' Text
+'of' Text
+' ' Text
+'Religion' Text
+' ' Text
+'in' Text
+' ' Text
+'1589' Text
+'–' Text
+'1594' Text
+',' Text
+' ' Text
+'and' Text
+' ' Text
+'invaded' Text
+' ' Text
+'northern' Text
+' ' Text
+'France' Text
+' ' Text
+'in' Text
+' ' Text
+'1597' Text
+';' Text
+' ' Text
+'after' Text
+' ' Text
+'some' Text
+' ' Text
+'skirmishing' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'1620s' Text
+' ' Text
+'and' Text
+' ' Text
+'1630s' Text
+',' Text
+' ' Text
+'Spain' Text
+' ' Text
+'and' Text
+' ' Text
+'France' Text
+' ' Text
+'returned' Text
+' ' Text
+'to' Text
+' ' Text
+'all' Text
+'-' Text
+'out' Text
+' ' Text
+'war' Text
+' ' Text
+'between' Text
+' ' Text
+'1635' Text
+' ' Text
+'and' Text
+' ' Text
+'1659' Text
+'.' Text
+' ' Text
+'[[' Punctuation
+'Franco-Spanish War (1635–1659)' Name.Tag
+'|' Punctuation
+'The' Text
+' ' Text
+'war' Text
+']]' Punctuation
+' ' Text
+'cost' Text
+' ' Text
+'France' Text
+' ' Text
+'300' Text
+',' Text
+'000' Text
+' ' Text
+'casualties' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'Clodfelter' Text
+' ' Text
+'2017' Text
+':' Text
+' ' Text
+'40' Text
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'\n' Text
+
+'\n' Text
+
+'Under' Text
+' ' Text
+'[[' Punctuation
+'Louis XIII' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'[[' Punctuation
+'Cardinal Richelieu' Name.Tag
+']]' Punctuation
+' ' Text
+'promoted' Text
+' ' Text
+'the' Text
+' ' Text
+'centralisation' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'state' Text
+' ' Text
+'and' Text
+' ' Text
+'reinforced' Text
+' ' Text
+'royal' Text
+' ' Text
+'power' Text
+' ' Text
+'by' Text
+' ' Text
+'disarming' Text
+' ' Text
+'domestic' Text
+' ' Text
+'power' Text
+' ' Text
+'holders' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'1620s' Text
+'.' Text
+' ' Text
+'He' Text
+' ' Text
+'systematically' Text
+' ' Text
+'destroyed' Text
+' ' Text
+'castles' Text
+' ' Text
+'of' Text
+' ' Text
+'defiant' Text
+' ' Text
+'lords' Text
+' ' Text
+'and' Text
+' ' Text
+'denounced' Text
+' ' Text
+'the' Text
+' ' Text
+'use' Text
+' ' Text
+'of' Text
+' ' Text
+'private' Text
+' ' Text
+'violence' Text
+' ' Text
+'(' Text
+'dueling' Text
+',' Text
+' ' Text
+'carrying' Text
+' ' Text
+'weapons' Text
+' ' Text
+'and' Text
+' ' Text
+'maintaining' Text
+' ' Text
+'private' Text
+' ' Text
+'armies' Text
+')' Text
+'.' Text
+' ' Text
+'By' Text
+' ' Text
+'the' Text
+' ' Text
+'end' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'1620s' Text
+',' Text
+' ' Text
+'Richelieu' Text
+' ' Text
+'established' Text
+' ' Text
+'"' Text
+'the' Text
+' ' Text
+'royal' Text
+' ' Text
+'monopoly' Text
+' ' Text
+'of' Text
+' ' Text
+'force' Text
+'"' Text
+' ' Text
+'as' Text
+' ' Text
+'the' Text
+' ' Text
+'doctrine' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'Tilly' Text
+',' Text
+' ' Text
+'Charles' Text
+' ' Text
+'(' Text
+'1985' Text
+')' Text
+'.' Text
+' ' Text
+'"' Text
+'War' Text
+' ' Text
+'making' Text
+' ' Text
+'and' Text
+' ' Text
+'state' Text
+' ' Text
+'making' Text
+' ' Text
+'as' Text
+' ' Text
+'organized' Text
+' ' Text
+'crime' Text
+',' Text
+'"' Text
+' ' Text
+'in' Text
+' ' Text
+'Bringing' Text
+' ' Text
+'the' Text
+' ' Text
+'State' Text
+' ' Text
+'Back' Text
+' ' Text
+'In' Text
+',' Text
+' ' Text
+'eds' Text
+' ' Text
+'P' Text
+'.' Text
+'B' Text
+'.' Text
+' ' Text
+'Evans' Text
+',' Text
+' ' Text
+'D' Text
+'.' Text
+' ' Text
+'Rueschemeyer' Text
+',' Text
+' ' Text
+'&' Text
+' ' Text
+'T' Text
+'.' Text
+' ' Text
+'Skocpol' Text
+'.' Text
+' ' Text
+'Cambridge' Text
+':' Text
+' ' Text
+'Cambridge' Text
+' ' Text
+'University' Text
+' ' Text
+'Press' Text
+',' Text
+' ' Text
+'1985' Text
+'.' Text
+' ' Text
+'p' Text
+'.' Text
+' ' Text
+'174' Text
+'.' Text
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'\n' Text
+
+'\n' Text
+
+'From' Text
+' ' Text
+'the' Text
+' ' Text
+'16th' Text
+' ' Text
+'to' Text
+' ' Text
+'the' Text
+' ' Text
+'19th' Text
+' ' Text
+'century' Text
+',' Text
+' ' Text
+'France' Text
+' ' Text
+'was' Text
+' ' Text
+'responsible' Text
+' ' Text
+'for' Text
+' ' Text
+'11' Text
+'%' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'transatlantic slave trade' Name.Tag
+']]' Punctuation
+',' Text
+'<' Punctuation
+'ref' Name.Tag
+' ' Text.Whitespace
+'name' Name.Attribute
+' ' Text.Whitespace
+'=' Operator
+' ' Text.Whitespace
+'"' Literal.String.Double
+'BNF' Literal.String.Double
+'"' Literal.String.Double
+'>' Punctuation
+'{{' Punctuation
+'cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+' author ' Name.Label
+'=' Operator
+' ' Text
+'Cécil' Text
+' ' Text
+'Vidal' Text
+' ' Text
+'|' Punctuation
+' date ' Name.Label
+'=' Operator
+' ' Text
+'May' Text
+' ' Text
+'2021' Text
+' ' Text
+'|' Punctuation
+' url ' Name.Label
+'=' Operator
+' ' Text
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'heritage' Text
+'.' Text
+'bnf' Text
+'.' Text
+'fr' Text
+'/' Text
+'france' Text
+'-' Text
+'ameriques' Text
+'/' Text
+'en' Text
+'/' Text
+'slave' Text
+'-' Text
+'trade' Text
+'-' Text
+'article' Text
+' ' Text
+'|' Punctuation
+' website ' Name.Label
+'=' Operator
+' ' Text
+'bnf' Text
+'.' Text
+'fr' Text
+' ' Text
+'|' Punctuation
+' title ' Name.Label
+'=' Operator
+' ' Text
+'Slave' Text
+' ' Text
+'trade' Text
+' ' Text
+'|' Punctuation
+' language ' Name.Label
+'=' Operator
+' ' Text
+'en' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'second' Text
+' ' Text
+'only' Text
+' ' Text
+'to' Text
+' ' Text
+'Great' Text
+' ' Text
+'Britain' Text
+' ' Text
+'during' Text
+' ' Text
+'the' Text
+' ' Text
+'18th' Text
+' ' Text
+'century' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+' author ' Name.Label
+'=' Operator
+' ' Text
+'Claire' Text
+' ' Text
+'Sibelle' Text
+' ' Text
+'|' Punctuation
+' title ' Name.Label
+'=' Operator
+' ' Text
+'Guide' Text
+' ' Text
+'des' Text
+' ' Text
+'sources' Text
+' ' Text
+'de' Text
+' ' Text
+'la' Text
+' ' Text
+'traite' Text
+' ' Text
+'négrière' Text
+',' Text
+' ' Text
+'de' Text
+' ' Text
+'l' Text
+"'" Text
+'esclavage' Text
+' ' Text
+'et' Text
+' ' Text
+'de' Text
+' ' Text
+'leurs' Text
+' ' Text
+'abolitions' Text
+':' Text
+' ' Text
+'XVIe' Text
+' ' Text
+'-' Text
+' ' Text
+'XXe' Text
+' ' Text
+'siècles' Text
+'|' Punctuation
+' url ' Name.Label
+'=' Operator
+' ' Text
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'archivesportaleurope' Text
+'.' Text
+'net' Text
+'/' Text
+'advanced' Text
+'-' Text
+'search' Text
+'/' Text
+'search' Text
+'-' Text
+'in' Text
+'-' Text
+'archives' Text
+'/' Text
+'results' Text
+'-' Text
+'(' Text
+'archives' Text
+')' Text
+'/' Text
+'?' Text
+'&' Text
+'repositoryCode' Text
+'=' Text
+'FR' Text
+'-' Text
+'SIAF' Text
+'&' Text
+'levelName' Text
+'=' Text
+'archdesc' Text
+'&' Text
+'t' Text
+'=' Text
+'sg' Text
+'&' Text
+'recordId' Text
+'=' Text
+'FRDAF_esclavage001' Text
+' ' Text
+'|' Punctuation
+' website ' Name.Label
+'=' Operator
+' ' Text
+'Archives' Text
+' ' Text
+'Portal' Text
+' ' Text
+'Europe' Text
+' ' Text
+'|' Punctuation
+' language ' Name.Label
+'=' Operator
+' ' Text
+'fr' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'While' Text
+' ' Text
+'the' Text
+' ' Text
+'state' Text
+' ' Text
+'began' Text
+' ' Text
+'condoning' Text
+' ' Text
+'the' Text
+' ' Text
+'practice' Text
+' ' Text
+'with' Text
+' ' Text
+'[[' Punctuation
+'letters patent' Name.Tag
+']]' Punctuation
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'1630s' Text
+',' Text
+' ' Text
+'Louis' Text
+' ' Text
+'XIII' Text
+' ' Text
+'only' Text
+' ' Text
+'formalized' Text
+' ' Text
+'this' Text
+' ' Text
+'authorization' Text
+' ' Text
+'more' Text
+' ' Text
+'generally' Text
+' ' Text
+'in' Text
+' ' Text
+'1642' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'last' Text
+' ' Text
+'year' Text
+' ' Text
+'of' Text
+' ' Text
+'his' Text
+' ' Text
+'reign' Text
+'.' Text
+' ' Text
+'By' Text
+' ' Text
+'the' Text
+' ' Text
+'mid' Text
+'-' Text
+'18th' Text
+' ' Text
+'century' Text
+',' Text
+' ' Text
+'[[' Punctuation
+'Role of Nantes in the slave trade' Name.Tag
+'|' Punctuation
+'Nantes' Text
+']]' Punctuation
+' ' Text
+'had' Text
+' ' Text
+'become' Text
+' ' Text
+'the' Text
+' ' Text
+'primary' Text
+' ' Text
+'port' Text
+' ' Text
+'involved' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+' ' Text.Whitespace
+'name' Name.Attribute
+' ' Text.Whitespace
+'=' Operator
+' ' Text.Whitespace
+'"' Literal.String.Double
+'BNF' Literal.String.Double
+'"' Literal.String.Double
+' ' Text.Whitespace
+'/>' Punctuation
+'\n' Text
+
+'\n' Text
+
+'During' Text
+' ' Text
+'[[' Punctuation
+'Louis XIV' Name.Tag
+']]' Punctuation
+"'" Text
+'s' Text
+' ' Text
+'minority' Text
+' ' Text
+'and' Text
+' ' Text
+'the' Text
+' ' Text
+'regency' Text
+' ' Text
+'of' Text
+' ' Text
+'[[' Punctuation
+'Anne of Austria' Name.Tag
+'|' Punctuation
+'Queen' Text
+' ' Text
+'Anne' Text
+']]' Punctuation
+' ' Text
+'and' Text
+' ' Text
+'[[' Punctuation
+'Cardinal Mazarin' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'a' Text
+' ' Text
+'period' Text
+' ' Text
+'of' Text
+' ' Text
+'trouble' Text
+' ' Text
+'known' Text
+' ' Text
+'as' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Fronde' Name.Tag
+']]' Punctuation
+' ' Text
+'occurred' Text
+' ' Text
+'in' Text
+' ' Text
+'France' Text
+'.' Text
+' ' Text
+'This' Text
+' ' Text
+'rebellion' Text
+' ' Text
+'was' Text
+' ' Text
+'driven' Text
+' ' Text
+'by' Text
+' ' Text
+'the' Text
+' ' Text
+'great' Text
+' ' Text
+'feudal' Text
+' ' Text
+'lords' Text
+' ' Text
+'and' Text
+' ' Text
+'[[' Punctuation
+'sovereign court' Name.Tag
+']]' Punctuation
+'s' Text
+' ' Text
+'as' Text
+' ' Text
+'a' Text
+' ' Text
+'reaction' Text
+' ' Text
+'to' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Absolutism (European history)' Name.Tag
+'|' Punctuation
+'rise' Text
+' ' Text
+'of' Text
+' ' Text
+'royal' Text
+' ' Text
+'absolute' Text
+' ' Text
+'power' Text
+']]' Punctuation
+' ' Text
+'in' Text
+' ' Text
+'France' Text
+'.' Text
+'\n' Text
+
+'\n' Text
+
+'[[' Punctuation
+'File' Name.Namespace
+':' Punctuation
+'Louis XIV of France.jpg' Name.Tag
+'|' Punctuation
+'thumb' Text
+'|' Punctuation
+'upright' Text
+'|' Punctuation
+'alt' Name.Attribute
+'=' Operator
+'Louis' Text
+' ' Text
+'XIV' Text
+' ' Text
+'of' Text
+' ' Text
+'France' Text
+' ' Text
+'standing' Text
+' ' Text
+'in' Text
+' ' Text
+'plate' Text
+' ' Text
+'armour' Text
+' ' Text
+'and' Text
+' ' Text
+'blue' Text
+' ' Text
+'sash' Text
+' ' Text
+'facing' Text
+' ' Text
+'left' Text
+' ' Text
+'holding' Text
+' ' Text
+'baton' Text
+'|' Punctuation
+'[[' Punctuation
+'Louis XIV' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'the' Text
+' ' Text
+'"' Text
+'Sun' Text
+' ' Text
+'King' Text
+'"' Text
+',' Text
+' ' Text
+'was' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Absolute monarchy in France' Name.Tag
+'|' Punctuation
+'absolute' Text
+' ' Text
+'monarch' Text
+' ' Text
+'of' Text
+' ' Text
+'France' Text
+']]' Punctuation
+' ' Text
+'and' Text
+' ' Text
+'made' Text
+' ' Text
+'France' Text
+' ' Text
+'the' Text
+' ' Text
+'leading' Text
+' ' Text
+'European' Text
+' ' Text
+'power' Text
+'.' Text
+']]' Punctuation
+'\n' Text
+
+'The' Text
+' ' Text
+'monarchy' Text
+' ' Text
+'reached' Text
+' ' Text
+'its' Text
+' ' Text
+'peak' Text
+' ' Text
+'during' Text
+' ' Text
+'the' Text
+' ' Text
+'17th' Text
+' ' Text
+'century' Text
+' ' Text
+'and' Text
+' ' Text
+'the' Text
+' ' Text
+'reign' Text
+' ' Text
+'of' Text
+' ' Text
+'Louis' Text
+' ' Text
+'XIV' Text
+' ' Text
+'(' Text
+'1643' Text
+'–' Text
+'1715' Text
+')' Text
+'.' Text
+' ' Text
+'By' Text
+' ' Text
+'turning' Text
+' ' Text
+'powerful' Text
+' ' Text
+'feudal' Text
+' ' Text
+'lords' Text
+' ' Text
+'into' Text
+' ' Text
+'[[' Punctuation
+'courtier' Name.Tag
+']]' Punctuation
+'s' Text
+' ' Text
+'at' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Palace of Versailles' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'his' Text
+' ' Text
+'command' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'military' Text
+' ' Text
+'went' Text
+' ' Text
+'unchallenged' Text
+'.' Text
+' ' Text
+'Remembered' Text
+' ' Text
+'for' Text
+' ' Text
+'numerous' Text
+' ' Text
+'wars' Text
+',' Text
+' ' Text
+'the' Text
+' ' Text
+'so' Text
+'-' Text
+'called' Text
+' ' Text
+'Sun' Text
+' ' Text
+'King' Text
+' ' Text
+'made' Text
+' ' Text
+'France' Text
+' ' Text
+'the' Text
+' ' Text
+'leading' Text
+' ' Text
+'European' Text
+' ' Text
+'power' Text
+'.' Text
+' ' Text
+'France' Text
+' ' Text
+'became' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Demographics of France' Name.Tag
+'|' Punctuation
+'most' Text
+' ' Text
+'populous' Text
+' ' Text
+'country' Text
+' ' Text
+'in' Text
+' ' Text
+'Europe' Text
+']]' Punctuation
+' ' Text
+'and' Text
+' ' Text
+'had' Text
+' ' Text
+'tremendous' Text
+' ' Text
+'influence' Text
+' ' Text
+'over' Text
+' ' Text
+'European' Text
+' ' Text
+'politics' Text
+',' Text
+' ' Text
+'economy' Text
+',' Text
+' ' Text
+'and' Text
+' ' Text
+'culture' Text
+'.' Text
+' ' Text
+'French' Text
+' ' Text
+'became' Text
+' ' Text
+'the' Text
+' ' Text
+'most' Text
+'-' Text
+'used' Text
+' ' Text
+'language' Text
+' ' Text
+'in' Text
+' ' Text
+'diplomacy' Text
+',' Text
+' ' Text
+'science' Text
+',' Text
+' ' Text
+'literature' Text
+' ' Text
+'and' Text
+' ' Text
+'international' Text
+' ' Text
+'affairs' Text
+',' Text
+' ' Text
+'and' Text
+' ' Text
+'remained' Text
+' ' Text
+'so' Text
+' ' Text
+'until' Text
+' ' Text
+'the' Text
+' ' Text
+'20th' Text
+' ' Text
+'century' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+' ' Text.Whitespace
+'name' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+'Language' Literal.String.Double
+' ' Literal.String.Double
+'and' Literal.String.Double
+' ' Literal.String.Double
+'Diplomacy' Literal.String.Double
+'"' Literal.String.Double
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Language' Text
+' ' Text
+'and' Text
+' ' Text
+'Diplomacy' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'nakedtranslations' Text
+'.' Text
+'com' Text
+'/' Text
+'en' Text
+'/' Text
+'2004' Text
+'/' Text
+'language' Text
+'-' Text
+'and' Text
+'-' Text
+'diplomacy' Text
+'/' Text
+' ' Text
+'|' Punctuation
+'url-status' Name.Label
+'=' Operator
+'dead' Text
+' ' Text
+'|' Punctuation
+'archive-url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'web' Text
+'.' Text
+'archive' Text
+'.' Text
+'org' Text
+'/' Text
+'web' Text
+'/' Text
+'20110721070018' Text
+'/' Text
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'nakedtranslations' Text
+'.' Text
+'com' Text
+'/' Text
+'en' Text
+'/' Text
+'2004' Text
+'/' Text
+'language' Text
+'-' Text
+'and' Text
+'-' Text
+'diplomacy' Text
+'/' Text
+' ' Text
+'|' Punctuation
+'archive-date' Name.Label
+'=' Operator
+'21' Text
+' ' Text
+'July' Text
+' ' Text
+'2011' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'21' Text
+' ' Text
+'July' Text
+' ' Text
+'2011' Text
+' ' Text
+'|' Punctuation
+'publisher' Name.Label
+'=' Operator
+'Nakedtranslations' Text
+'.' Text
+'com' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'During' Text
+' ' Text
+'his' Text
+' ' Text
+'reign' Text
+',' Text
+' ' Text
+'France' Text
+' ' Text
+'took' Text
+' ' Text
+'colonial' Text
+' ' Text
+'control' Text
+' ' Text
+'of' Text
+' ' Text
+'many' Text
+' ' Text
+'overseas' Text
+' ' Text
+'territories' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'Americas' Text
+',' Text
+' ' Text
+'Africa' Text
+' ' Text
+'and' Text
+' ' Text
+'Asia' Text
+'.' Text
+' ' Text
+'In' Text
+' ' Text
+'1685' Text
+',' Text
+' ' Text
+'Louis' Text
+' ' Text
+'XIV' Text
+' ' Text
+'[[' Punctuation
+'Edict of Fontainebleau' Name.Tag
+'|' Punctuation
+'revoked' Text
+' ' Text
+'the' Text
+' ' Text
+'Edict' Text
+' ' Text
+'of' Text
+' ' Text
+'Nantes' Text
+']]' Punctuation
+',' Text
+' ' Text
+'forcing' Text
+' ' Text
+'thousands' Text
+' ' Text
+'of' Text
+' ' Text
+'Huguenots' Text
+' ' Text
+'into' Text
+' ' Text
+'exile' Text
+' ' Text
+'and' Text
+' ' Text
+'published' Text
+' ' Text
+'the' Text
+' ' Text
+"''" Generic.Emph
+'[[' Punctuation
+'Code Noir' Name.Tag
+']]' Punctuation
+"''" Generic.Emph
+' ' Text
+'providing' Text
+' ' Text
+'the' Text
+' ' Text
+'legal' Text
+' ' Text
+'framework' Text
+' ' Text
+'for' Text
+' ' Text
+'slavery' Text
+' ' Text
+'and' Text
+' ' Text
+'expelling' Text
+' ' Text
+'Jewish' Text
+' ' Text
+'people' Text
+' ' Text
+'from' Text
+' ' Text
+'the' Text
+' ' Text
+'French' Text
+' ' Text
+'colonies' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'journal' Name.Tag
+' ' Text
+'|' Punctuation
+' journal ' Name.Label
+'=' Operator
+' ' Text
+'Louisiana' Text
+' ' Text
+'Law' Text
+' ' Text
+'Review' Text
+' ' Text
+'|' Punctuation
+' title ' Name.Label
+'=' Operator
+' ' Text
+'The' Text
+' ' Text
+'Origins' Text
+' ' Text
+'and' Text
+' ' Text
+'Authors' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'Code' Text
+' ' Text
+'Noir' Text
+' ' Text
+'|' Punctuation
+' author ' Name.Label
+'=' Operator
+' ' Text
+'Vernon' Text
+' ' Text
+'Valentine' Text
+' ' Text
+'Palmer' Text
+' ' Text
+'|' Punctuation
+' url ' Name.Label
+'=' Operator
+' ' Text
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'digitalcommons' Text
+'.' Text
+'law' Text
+'.' Text
+'lsu' Text
+'.' Text
+'edu' Text
+'/' Text
+'lalrev' Text
+'/' Text
+'vol56' Text
+'/' Text
+'iss2' Text
+'/' Text
+'5' Text
+' ' Text
+'|' Punctuation
+' year ' Name.Label
+'=' Operator
+' ' Text
+'1996' Text
+' ' Text
+'|' Punctuation
+' volume ' Name.Label
+'=' Operator
+' ' Text
+'56' Text
+' ' Text
+'|' Punctuation
+' issue ' Name.Label
+'=' Operator
+' ' Text
+'2' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'\n' Text
+
+'\n' Text
+
+'Under' Text
+' ' Text
+'the' Text
+' ' Text
+'wars' Text
+' ' Text
+'of' Text
+' ' Text
+'[[' Punctuation
+'Louis XV' Name.Tag
+']]' Punctuation
+' ' Text
+'(' Text
+'r' Text
+'.' Text
+' ' Text
+'1715' Text
+'–' Text
+'1774' Text
+')' Text
+',' Text
+' ' Text
+'France' Text
+' ' Text
+'lost' Text
+' ' Text
+'[[' Punctuation
+'New France' Name.Tag
+']]' Punctuation
+' ' Text
+'and' Text
+' ' Text
+'most' Text
+' ' Text
+'of' Text
+' ' Text
+'its' Text
+' ' Text
+'[[' Punctuation
+'French India' Name.Tag
+'|' Punctuation
+'Indian' Text
+' ' Text
+'possessions' Text
+']]' Punctuation
+' ' Text
+'after' Text
+' ' Text
+'its' Text
+' ' Text
+'defeat' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+"Seven Years' War" Name.Tag
+']]' Punctuation
+' ' Text
+'(' Text
+'1756' Text
+'–' Text
+'1763' Text
+')' Text
+'.' Text
+' ' Text
+'Its' Text
+' ' Text
+'[[' Punctuation
+'Metropolitan France' Name.Tag
+'|' Punctuation
+'European' Text
+' ' Text
+'territory' Text
+']]' Punctuation
+' ' Text
+'kept' Text
+' ' Text
+'growing' Text
+',' Text
+' ' Text
+'however' Text
+',' Text
+' ' Text
+'with' Text
+' ' Text
+'notable' Text
+' ' Text
+'acquisitions' Text
+' ' Text
+'such' Text
+' ' Text
+'as' Text
+' ' Text
+'[[' Punctuation
+'Lorraine' Name.Tag
+']]' Punctuation
+' ' Text
+'(' Text
+'1766' Text
+')' Text
+' ' Text
+'and' Text
+' ' Text
+'[[' Punctuation
+'Corsica' Name.Tag
+']]' Punctuation
+' ' Text
+'(' Text
+'1770' Text
+')' Text
+'.' Text
+' ' Text
+'An' Text
+' ' Text
+'unpopular' Text
+' ' Text
+'king' Text
+',' Text
+' ' Text
+'Louis' Text
+' ' Text
+'XV' Text
+"'" Text
+'s' Text
+' ' Text
+'weak' Text
+' ' Text
+'rule' Text
+',' Text
+' ' Text
+'his' Text
+' ' Text
+'ill' Text
+'-' Text
+'advised' Text
+' ' Text
+'financial' Text
+',' Text
+' ' Text
+'political' Text
+' ' Text
+'and' Text
+' ' Text
+'military' Text
+' ' Text
+'decisions' Text
+' ' Text
+'–' Text
+' ' Text
+'as' Text
+' ' Text
+'well' Text
+' ' Text
+'as' Text
+' ' Text
+'the' Text
+' ' Text
+'debauchery' Text
+' ' Text
+'of' Text
+' ' Text
+'his' Text
+' ' Text
+'court' Text
+'–' Text
+' ' Text
+'discredited' Text
+' ' Text
+'the' Text
+' ' Text
+'monarchy' Text
+',' Text
+' ' Text
+'which' Text
+' ' Text
+'arguably' Text
+' ' Text
+'paved' Text
+' ' Text
+'the' Text
+' ' Text
+'way' Text
+' ' Text
+'for' Text
+' ' Text
+'the' Text
+' ' Text
+'French' Text
+' ' Text
+'Revolution' Text
+' ' Text
+'15' Text
+' ' Text
+'years' Text
+' ' Text
+'after' Text
+' ' Text
+'his' Text
+' ' Text
+'death' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'BBC' Text
+' ' Text
+'History' Text
+':' Text
+' ' Text
+'Louis' Text
+' ' Text
+'XV' Text
+' ' Text
+'(' Text
+'1710' Text
+'–' Text
+'1774' Text
+')' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'bbc' Text
+'.' Text
+'co' Text
+'.' Text
+'uk' Text
+'/' Text
+'history' Text
+'/' Text
+'historic_figures' Text
+'/' Text
+'louis_xv' Text
+'.' Text
+'shtml' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'21' Text
+' ' Text
+'July' Text
+' ' Text
+'2011' Text
+' ' Text
+'|' Punctuation
+'publisher' Name.Label
+'=' Operator
+'BBC' Text
+'}}' Punctuation
+';' Text
+' ' Text
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'webspace' Text
+'.' Text
+'qmul' Text
+'.' Text
+'ac' Text
+'.' Text
+'uk' Text
+'/' Text
+'cdhjones' Text
+'/' Text
+'documents' Text
+'/' Text
+'gn_pdf' Text
+'.' Text
+'pdf' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Scholarly' Text
+' ' Text
+'bibliography' Text
+' ' Text
+'by' Text
+' ' Text
+'Colin' Text
+' ' Text
+'Jones' Text
+' ' Text
+'(' Text
+'2002' Text
+')' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'21' Text
+' ' Text
+'July' Text
+' ' Text
+'2011' Text
+'|' Punctuation
+'url-status' Name.Label
+'=' Operator
+'dead' Text
+'|' Punctuation
+'archive-url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'web' Text
+'.' Text
+'archive' Text
+'.' Text
+'org' Text
+'/' Text
+'web' Text
+'/' Text
+'20110725101858' Text
+'/' Text
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'webspace' Text
+'.' Text
+'qmul' Text
+'.' Text
+'ac' Text
+'.' Text
+'uk' Text
+'/' Text
+'cdhjones' Text
+'/' Text
+'documents' Text
+'/' Text
+'gn_pdf' Text
+'.' Text
+'pdf' Text
+'|' Punctuation
+'archive-date' Name.Label
+'=' Operator
+'25' Text
+' ' Text
+'July' Text
+' ' Text
+'2011' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'\n' Text
+
+'\n' Text
+
+'[[' Punctuation
+'Louis XVI' Name.Tag
+']]' Punctuation
+' ' Text
+'(' Text
+'r' Text
+'.' Text
+' ' Text
+'1774' Text
+'–' Text
+'1793' Text
+')' Text
+',' Text
+' ' Text
+'[[' Punctuation
+'France in the American Revolutionary War' Name.Tag
+'|' Punctuation
+'actively' Text
+' ' Text
+'supported' Text
+' ' Text
+'the' Text
+' ' Text
+'Americans' Text
+' ' Text
+'with' Text
+' ' Text
+'money' Text
+',' Text
+' ' Text
+'fleets' Text
+' ' Text
+'and' Text
+' ' Text
+'armies' Text
+']]' Punctuation
+',' Text
+' ' Text
+'helping' Text
+' ' Text
+'them' Text
+' ' Text
+'win' Text
+' ' Text
+'[[' Punctuation
+'American Revolutionary War' Name.Tag
+'|' Punctuation
+'independence' Text
+' ' Text
+'from' Text
+' ' Text
+'Great' Text
+' ' Text
+'Britain' Text
+']]' Punctuation
+'.' Text
+' ' Text
+'France' Text
+' ' Text
+'gained' Text
+' ' Text
+'revenge' Text
+' ' Text
+'but' Text
+' ' Text
+'spent' Text
+' ' Text
+'so' Text
+' ' Text
+'heavily' Text
+' ' Text
+'that' Text
+' ' Text
+'the' Text
+' ' Text
+'government' Text
+' ' Text
+'verged' Text
+' ' Text
+'on' Text
+' ' Text
+'bankruptcy' Text
+'—' Text
+'a' Text
+' ' Text
+'factor' Text
+' ' Text
+'that' Text
+' ' Text
+'contributed' Text
+' ' Text
+'to' Text
+' ' Text
+'the' Text
+' ' Text
+'French' Text
+' ' Text
+'Revolution' Text
+'.' Text
+' ' Text
+'Some' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Age of Enlightenment' Name.Tag
+'|' Punctuation
+'Enlightenment' Text
+']]' Punctuation
+' ' Text
+'occurred' Text
+' ' Text
+'in' Text
+' ' Text
+'French' Text
+' ' Text
+'intellectual' Text
+' ' Text
+'circles' Text
+',' Text
+' ' Text
+'and' Text
+' ' Text
+'major' Text
+' ' Text
+'scientific' Text
+' ' Text
+'breakthroughs' Text
+' ' Text
+'and' Text
+' ' Text
+'inventions' Text
+',' Text
+' ' Text
+'such' Text
+' ' Text
+'as' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Antoine Lavoisier' Name.Tag
+'|' Punctuation
+'discovery' Text
+' ' Text
+'of' Text
+' ' Text
+'oxygen' Text
+']]' Punctuation
+' ' Text
+'(' Text
+'1778' Text
+')' Text
+' ' Text
+'and' Text
+' ' Text
+'the' Text
+' ' Text
+'first' Text
+' ' Text
+'[[' Punctuation
+'Montgolfier brothers' Name.Tag
+'|' Punctuation
+'hot' Text
+' ' Text
+'air' Text
+' ' Text
+'balloon' Text
+' ' Text
+'carrying' Text
+' ' Text
+'passengers' Text
+']]' Punctuation
+' ' Text
+'(' Text
+'1783' Text
+')' Text
+',' Text
+' ' Text
+'were' Text
+' ' Text
+'achieved' Text
+' ' Text
+'by' Text
+' ' Text
+'French' Text
+' ' Text
+'scientists' Text
+'.' Text
+' ' Text
+'French' Text
+' ' Text
+'explorers' Text
+',' Text
+' ' Text
+'such' Text
+' ' Text
+'as' Text
+' ' Text
+'[[' Punctuation
+'Louis Antoine de Bougainville' Name.Tag
+'|' Punctuation
+'Bougainville' Text
+']]' Punctuation
+' ' Text
+'and' Text
+' ' Text
+'[[' Punctuation
+'Jean-François de Galaup, comte de Lapérouse' Name.Tag
+'|' Punctuation
+'Lapérouse' Text
+']]' Punctuation
+',' Text
+' ' Text
+'took' Text
+' ' Text
+'part' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'European and American voyages of scientific exploration' Name.Tag
+'|' Punctuation
+'voyages' Text
+' ' Text
+'of' Text
+' ' Text
+'scientific' Text
+' ' Text
+'exploration' Text
+']]' Punctuation
+' ' Text
+'through' Text
+' ' Text
+'maritime' Text
+' ' Text
+'expeditions' Text
+' ' Text
+'around' Text
+' ' Text
+'the' Text
+' ' Text
+'globe' Text
+'.' Text
+' ' Text
+'The' Text
+' ' Text
+'Enlightenment' Text
+' ' Text
+'philosophy' Text
+',' Text
+' ' Text
+'in' Text
+' ' Text
+'which' Text
+' ' Text
+'[[' Punctuation
+'Rationalism' Name.Tag
+'|' Punctuation
+'reason' Text
+']]' Punctuation
+' ' Text
+'is' Text
+' ' Text
+'advocated' Text
+' ' Text
+'as' Text
+' ' Text
+'the' Text
+' ' Text
+'primary' Text
+' ' Text
+'source' Text
+' ' Text
+'of' Text
+' ' Text
+'[[' Punctuation
+'Legitimacy (political)' Name.Tag
+'|' Punctuation
+'legitimacy' Text
+']]' Punctuation
+',' Text
+' ' Text
+'undermined' Text
+' ' Text
+'the' Text
+' ' Text
+'power' Text
+' ' Text
+'of' Text
+' ' Text
+'and' Text
+' ' Text
+'support' Text
+' ' Text
+'for' Text
+' ' Text
+'the' Text
+' ' Text
+'monarchy' Text
+' ' Text
+'and' Text
+' ' Text
+'also' Text
+' ' Text
+'was' Text
+' ' Text
+'a' Text
+' ' Text
+'factor' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'French' Text
+' ' Text
+'Revolution' Text
+'.' Text
+'\n' Text
+
+'\n' Text
+
+'===' Generic.Subheading
+'Revolutionary France (1789–1799)' Generic.Subheading
+'===' Generic.Subheading
+'\n' Text.Whitespace
+
+'{{' Punctuation
+'Main' Name.Tag
+'|' Punctuation
+'History' Text
+' ' Text
+'of' Text
+' ' Text
+'France' Text
+'#' Text
+'Revolutionary' Text
+' ' Text
+'France' Text
+' ' Text
+'(' Text
+'1789' Text
+'–' Text
+'1799' Text
+')' Text
+'|' Punctuation
+'French' Text
+' ' Text
+'Revolution' Text
+'}}' Punctuation
+'\n' Text
+
+'[[' Punctuation
+'File' Name.Namespace
+':' Punctuation
+'Couder Stati generali.jpg' Name.Tag
+'|' Punctuation
+'left' Text
+'|' Punctuation
+'thumb' Text
+'|' Punctuation
+"''" Generic.Emph
+'Ouverture' Generic.Emph
+' ' Generic.Emph
+'des' Generic.Emph
+' ' Generic.Emph
+'États' Generic.Emph
+' ' Generic.Emph
+'généraux' Generic.Emph
+' ' Generic.Emph
+'à' Generic.Emph
+' ' Generic.Emph
+'Versailles' Generic.Emph
+',' Generic.Emph
+' ' Generic.Emph
+'5' Generic.Emph
+' ' Generic.Emph
+'mai' Generic.Emph
+' ' Generic.Emph
+'1789' Generic.Emph
+"''" Generic.Emph
+' ' Text
+'by' Text
+' ' Text
+'[[' Punctuation
+'Auguste Couder' Name.Tag
+']]' Punctuation
+']]' Punctuation
+'\n' Text
+
+'[[' Punctuation
+'File' Name.Namespace
+':' Punctuation
+'Prise de la Bastille.jpg' Name.Tag
+'|' Punctuation
+'thumb' Text
+'|' Punctuation
+'left' Text
+'|' Punctuation
+'alt' Name.Attribute
+'=' Operator
+'drawing' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'Storming' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'Bastille' Text
+' ' Text
+'on' Text
+' ' Text
+'14' Text
+' ' Text
+'July' Text
+' ' Text
+'1789' Text
+',' Text
+' ' Text
+'smoke' Text
+' ' Text
+'of' Text
+' ' Text
+'gunfire' Text
+' ' Text
+'enveloping' Text
+' ' Text
+'stone' Text
+' ' Text
+'castle' Text
+'|' Punctuation
+'The' Text
+' ' Text
+'[[' Punctuation
+'Storming of the Bastille' Name.Tag
+']]' Punctuation
+' ' Text
+'on' Text
+' ' Text
+'14' Text
+' ' Text
+'July' Text
+' ' Text
+'1789' Text
+' ' Text
+'was' Text
+' ' Text
+'the' Text
+' ' Text
+'most' Text
+' ' Text
+'emblematic' Text
+' ' Text
+'event' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'French Revolution' Name.Tag
+']]' Punctuation
+'.' Text
+']]' Punctuation
+'\n' Text
+
+'Facing' Text
+' ' Text
+'financial' Text
+' ' Text
+'troubles' Text
+',' Text
+' ' Text
+'King' Text
+' ' Text
+'[[' Punctuation
+'Louis XVI of France' Name.Tag
+'|' Punctuation
+'Louis' Text
+' ' Text
+'XVI' Text
+']]' Punctuation
+' ' Text
+'summoned' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Estates-General of 1789' Name.Tag
+'|' Punctuation
+'Estates' Text
+'-' Text
+'General' Text
+']]' Punctuation
+' ' Text
+'(' Text
+'gathering' Text
+' ' Text
+'the' Text
+' ' Text
+'three' Text
+' ' Text
+'[[' Punctuation
+'Estates of the realm' Name.Tag
+']]' Punctuation
+')' Text
+' ' Text
+'in' Text
+' ' Text
+'May' Text
+' ' Text
+'1789' Text
+' ' Text
+'to' Text
+' ' Text
+'propose' Text
+' ' Text
+'solutions' Text
+' ' Text
+'to' Text
+' ' Text
+'his' Text
+' ' Text
+'government' Text
+'.' Text
+' ' Text
+'As' Text
+' ' Text
+'it' Text
+' ' Text
+'came' Text
+' ' Text
+'to' Text
+' ' Text
+'an' Text
+' ' Text
+'impasse' Text
+',' Text
+' ' Text
+'the' Text
+' ' Text
+'representatives' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Commoner' Name.Tag
+'|' Punctuation
+'Third' Text
+' ' Text
+'Estate' Text
+']]' Punctuation
+' ' Text
+'formed' Text
+' ' Text
+'a' Text
+' ' Text
+'[[' Punctuation
+'National Assembly (French Revolution)' Name.Tag
+'|' Punctuation
+'National' Text
+' ' Text
+'Assembly' Text
+']]' Punctuation
+',' Text
+' ' Text
+'signaling' Text
+' ' Text
+'the' Text
+' ' Text
+'outbreak' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'French Revolution' Name.Tag
+']]' Punctuation
+'.' Text
+' ' Text
+'Fearing' Text
+' ' Text
+'that' Text
+' ' Text
+'the' Text
+' ' Text
+'king' Text
+' ' Text
+'would' Text
+' ' Text
+'suppress' Text
+' ' Text
+'the' Text
+' ' Text
+'newly' Text
+' ' Text
+'created' Text
+' ' Text
+'National' Text
+' ' Text
+'Assembly' Text
+',' Text
+' ' Text
+'insurgents' Text
+' ' Text
+'[[' Punctuation
+'Storming of the Bastille' Name.Tag
+'|' Punctuation
+'stormed' Text
+' ' Text
+'the' Text
+' ' Text
+'Bastille' Text
+']]' Punctuation
+' ' Text
+'on' Text
+' ' Text
+'14' Text
+' ' Text
+'July' Text
+' ' Text
+'1789' Text
+',' Text
+' ' Text
+'a' Text
+' ' Text
+'date' Text
+' ' Text
+'which' Text
+' ' Text
+'would' Text
+' ' Text
+'become' Text
+' ' Text
+'[[' Punctuation
+'Bastille Day' Name.Tag
+'|' Punctuation
+'France' Text
+"'" Text
+'s' Text
+' ' Text
+'National' Text
+' ' Text
+'Day' Text
+']]' Punctuation
+'.' Text
+'\n' Text
+
+'\n' Text
+
+'In' Text
+' ' Text
+'early' Text
+' ' Text
+'August' Text
+' ' Text
+'1789' Text
+',' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'National Constituent Assembly (France)' Name.Tag
+'|' Punctuation
+'National' Text
+' ' Text
+'Constituent' Text
+' ' Text
+'Assembly' Text
+']]' Punctuation
+' ' Text
+'[[' Punctuation
+'August Decrees' Name.Tag
+'|' Punctuation
+'abolished' Text
+' ' Text
+'the' Text
+' ' Text
+'privileges' Text
+']]' Punctuation
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'French nobility' Name.Tag
+'|' Punctuation
+'nobility' Text
+']]' Punctuation
+' ' Text
+'such' Text
+' ' Text
+'as' Text
+' ' Text
+'[[' Punctuation
+'Serfdom' Name.Tag
+'|' Punctuation
+'personal' Text
+' ' Text
+'serfdom' Text
+']]' Punctuation
+' ' Text
+'and' Text
+' ' Text
+'exclusive' Text
+' ' Text
+'hunting' Text
+' ' Text
+'rights' Text
+'.' Text
+' ' Text
+'Through' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Declaration of the Rights of the Man and of the Citizen of 1789' Name.Tag
+'|' Punctuation
+'Declaration' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'Rights' Text
+' ' Text
+'of' Text
+' ' Text
+'Man' Text
+' ' Text
+'and' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'Citizen' Text
+']]' Punctuation
+' ' Text
+'(' Text
+'27' Text
+' ' Text
+'August' Text
+' ' Text
+'1789' Text
+')' Text
+',' Text
+' ' Text
+'France' Text
+' ' Text
+'established' Text
+' ' Text
+'fundamental' Text
+' ' Text
+'rights' Text
+' ' Text
+'for' Text
+' ' Text
+'men' Text
+'.' Text
+' ' Text
+'The' Text
+' ' Text
+'Declaration' Text
+' ' Text
+'affirms' Text
+' ' Text
+'"' Text
+'the' Text
+' ' Text
+'natural' Text
+' ' Text
+'and' Text
+' ' Text
+'imprescriptible' Text
+' ' Text
+'rights' Text
+' ' Text
+'of' Text
+' ' Text
+'man' Text
+'"' Text
+' ' Text
+'to' Text
+' ' Text
+'"' Text
+'liberty' Text
+',' Text
+' ' Text
+'property' Text
+',' Text
+' ' Text
+'security' Text
+' ' Text
+'and' Text
+' ' Text
+'resistance' Text
+' ' Text
+'to' Text
+' ' Text
+'oppression' Text
+'"' Text
+'.' Text
+' ' Text
+'Freedom' Text
+' ' Text
+'of' Text
+' ' Text
+'speech' Text
+' ' Text
+'and' Text
+' ' Text
+'press' Text
+' ' Text
+'were' Text
+' ' Text
+'declared' Text
+',' Text
+' ' Text
+'and' Text
+' ' Text
+'arbitrary' Text
+' ' Text
+'arrests' Text
+' ' Text
+'were' Text
+' ' Text
+'outlawed' Text
+'.' Text
+' ' Text
+'It' Text
+' ' Text
+'called' Text
+' ' Text
+'for' Text
+' ' Text
+'the' Text
+' ' Text
+'destruction' Text
+' ' Text
+'of' Text
+' ' Text
+'aristocratic' Text
+' ' Text
+'privileges' Text
+' ' Text
+'and' Text
+' ' Text
+'proclaimed' Text
+' ' Text
+'freedom' Text
+' ' Text
+'and' Text
+' ' Text
+'equal' Text
+' ' Text
+'rights' Text
+' ' Text
+'for' Text
+' ' Text
+'all' Text
+' ' Text
+'men' Text
+',' Text
+' ' Text
+'as' Text
+' ' Text
+'well' Text
+' ' Text
+'as' Text
+' ' Text
+'access' Text
+' ' Text
+'to' Text
+' ' Text
+'public' Text
+' ' Text
+'office' Text
+' ' Text
+'based' Text
+' ' Text
+'on' Text
+' ' Text
+'talent' Text
+' ' Text
+'rather' Text
+' ' Text
+'than' Text
+' ' Text
+'birth' Text
+'.' Text
+' ' Text
+'In' Text
+' ' Text
+'November' Text
+' ' Text
+'1789' Text
+',' Text
+' ' Text
+'the' Text
+' ' Text
+'Assembly' Text
+' ' Text
+'decided' Text
+' ' Text
+'to' Text
+' ' Text
+'nationalise' Text
+' ' Text
+'and' Text
+' ' Text
+'sell' Text
+' ' Text
+'all' Text
+' ' Text
+'property' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'Catholic' Text
+' ' Text
+'Church' Text
+' ' Text
+'which' Text
+' ' Text
+'had' Text
+' ' Text
+'been' Text
+' ' Text
+'the' Text
+' ' Text
+'largest' Text
+' ' Text
+'landowner' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'country' Text
+'.' Text
+' ' Text
+'In' Text
+' ' Text
+'July' Text
+' ' Text
+'1790' Text
+',' Text
+' ' Text
+'a' Text
+' ' Text
+'[[' Punctuation
+'Civil Constitution of the Clergy' Name.Tag
+']]' Punctuation
+' ' Text
+'reorganised' Text
+' ' Text
+'the' Text
+' ' Text
+'French' Text
+' ' Text
+'Catholic' Text
+' ' Text
+'Church' Text
+',' Text
+' ' Text
+'cancelling' Text
+' ' Text
+'the' Text
+' ' Text
+'authority' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'Church' Text
+' ' Text
+'to' Text
+' ' Text
+'levy' Text
+' ' Text
+'taxes' Text
+',' Text
+' ' Text
+'et' Text
+' ' Text
+'cetera' Text
+'.' Text
+' ' Text
+'This' Text
+' ' Text
+'fueled' Text
+' ' Text
+'much' Text
+' ' Text
+'discontent' Text
+' ' Text
+'in' Text
+' ' Text
+'parts' Text
+' ' Text
+'of' Text
+' ' Text
+'France' Text
+',' Text
+' ' Text
+'which' Text
+' ' Text
+'would' Text
+' ' Text
+'contribute' Text
+' ' Text
+'to' Text
+' ' Text
+'the' Text
+' ' Text
+'civil' Text
+' ' Text
+'war' Text
+' ' Text
+'breaking' Text
+' ' Text
+'out' Text
+' ' Text
+'some' Text
+' ' Text
+'years' Text
+' ' Text
+'later' Text
+'.' Text
+' ' Text
+'While' Text
+' ' Text
+'King' Text
+' ' Text
+'Louis' Text
+' ' Text
+'XVI' Text
+' ' Text
+'still' Text
+' ' Text
+'enjoyed' Text
+' ' Text
+'popularity' Text
+' ' Text
+'among' Text
+' ' Text
+'the' Text
+' ' Text
+'population' Text
+',' Text
+' ' Text
+'his' Text
+' ' Text
+'disastrous' Text
+' ' Text
+'[[' Punctuation
+'flight to Varennes' Name.Tag
+']]' Punctuation
+' ' Text
+'(' Text
+'June' Text
+' ' Text
+'1791' Text
+')' Text
+' ' Text
+'seemed' Text
+' ' Text
+'to' Text
+' ' Text
+'justify' Text
+' ' Text
+'rumours' Text
+' ' Text
+'he' Text
+' ' Text
+'had' Text
+' ' Text
+'tied' Text
+' ' Text
+'his' Text
+' ' Text
+'hopes' Text
+' ' Text
+'of' Text
+' ' Text
+'political' Text
+' ' Text
+'salvation' Text
+' ' Text
+'to' Text
+' ' Text
+'the' Text
+' ' Text
+'prospects' Text
+' ' Text
+'of' Text
+' ' Text
+'foreign' Text
+' ' Text
+'invasion' Text
+'.' Text
+' ' Text
+'His' Text
+' ' Text
+'credibility' Text
+' ' Text
+'was' Text
+' ' Text
+'so' Text
+' ' Text
+'deeply' Text
+' ' Text
+'undermined' Text
+' ' Text
+'that' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Abolition of monarchy' Name.Tag
+'|' Punctuation
+'abolition' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'monarchy' Text
+']]' Punctuation
+' ' Text
+'and' Text
+' ' Text
+'the' Text
+' ' Text
+'establishment' Text
+' ' Text
+'of' Text
+' ' Text
+'a' Text
+' ' Text
+'republic' Text
+' ' Text
+'became' Text
+' ' Text
+'an' Text
+' ' Text
+'increasing' Text
+' ' Text
+'possibility' Text
+'.' Text
+'\n' Text
+
+'\n' Text
+
+'In' Text
+' ' Text
+'the' Text
+' ' Text
+'August' Text
+' ' Text
+'1791' Text
+' ' Text
+'[[' Punctuation
+'Declaration of Pillnitz' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'the' Text
+' ' Text
+'Emperor' Text
+' ' Text
+'of' Text
+' ' Text
+'[[' Punctuation
+'Habsburg monarchy' Name.Tag
+'|' Punctuation
+'Austria' Text
+']]' Punctuation
+' ' Text
+'and' Text
+' ' Text
+'the' Text
+' ' Text
+'King' Text
+' ' Text
+'of' Text
+' ' Text
+'[[' Punctuation
+'Kingdom of Prussia' Name.Tag
+'|' Punctuation
+'Prussia' Text
+']]' Punctuation
+' ' Text
+'threatened' Text
+' ' Text
+'to' Text
+' ' Text
+'restore' Text
+' ' Text
+'the' Text
+' ' Text
+'French' Text
+' ' Text
+'monarch' Text
+' ' Text
+'by' Text
+' ' Text
+'force' Text
+'.' Text
+' ' Text
+'In' Text
+' ' Text
+'September' Text
+' ' Text
+'1791' Text
+',' Text
+' ' Text
+'the' Text
+' ' Text
+'National' Text
+' ' Text
+'Constituent' Text
+' ' Text
+'Assembly' Text
+' ' Text
+'forced' Text
+' ' Text
+'King' Text
+' ' Text
+'Louis' Text
+' ' Text
+'XVI' Text
+' ' Text
+'to' Text
+' ' Text
+'accept' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'French Constitution of 1791' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'thus' Text
+' ' Text
+'turning' Text
+' ' Text
+'the' Text
+' ' Text
+'French' Text
+' ' Text
+'absolute' Text
+' ' Text
+'monarchy' Text
+' ' Text
+'into' Text
+' ' Text
+'a' Text
+' ' Text
+'[[' Punctuation
+'Kingdom of France (1791–92)' Name.Tag
+'|' Punctuation
+'constitutional' Text
+' ' Text
+'monarchy' Text
+']]' Punctuation
+'.' Text
+' ' Text
+'In' Text
+' ' Text
+'the' Text
+' ' Text
+'newly' Text
+' ' Text
+'established' Text
+' ' Text
+'[[' Punctuation
+'Legislative Assembly (France)' Name.Tag
+'|' Punctuation
+'Legislative' Text
+' ' Text
+'Assembly' Text
+']]' Punctuation
+' ' Text
+'(' Text
+'October' Text
+' ' Text
+'1791' Text
+')' Text
+',' Text
+' ' Text
+'enmity' Text
+' ' Text
+'developed' Text
+' ' Text
+'and' Text
+' ' Text
+'deepened' Text
+' ' Text
+'between' Text
+' ' Text
+'a' Text
+' ' Text
+'group' Text
+',' Text
+' ' Text
+'later' Text
+' ' Text
+'called' Text
+' ' Text
+'the' Text
+' ' Text
+"'" Text
+'[[' Punctuation
+'Girondins' Name.Tag
+']]' Punctuation
+"'" Text
+',' Text
+' ' Text
+'who' Text
+' ' Text
+'favoured' Text
+' ' Text
+'war' Text
+' ' Text
+'with' Text
+' ' Text
+'[[' Punctuation
+'Habsburg monarchy' Name.Tag
+'|' Punctuation
+'Austria' Text
+']]' Punctuation
+' ' Text
+'and' Text
+' ' Text
+'[[' Punctuation
+'Kingdom of Prussia' Name.Tag
+'|' Punctuation
+'Prussia' Text
+']]' Punctuation
+',' Text
+' ' Text
+'and' Text
+' ' Text
+'a' Text
+' ' Text
+'group' Text
+' ' Text
+'later' Text
+' ' Text
+'called' Text
+' ' Text
+"'" Text
+'[[' Punctuation
+'The Mountain' Name.Tag
+'|' Punctuation
+'Montagnards' Text
+']]' Punctuation
+"'" Text
+' ' Text
+'or' Text
+' ' Text
+"'" Text
+'[[' Punctuation
+'Jacobin' Name.Tag
+']]' Punctuation
+'s' Text
+"'" Text
+',' Text
+' ' Text
+'who' Text
+' ' Text
+'opposed' Text
+' ' Text
+'such' Text
+' ' Text
+'a' Text
+' ' Text
+'war' Text
+'.' Text
+' ' Text
+'A' Text
+' ' Text
+'majority' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Legislative Assembly (France)' Name.Tag
+'|' Punctuation
+'Assembly' Text
+']]' Punctuation
+' ' Text
+'in' Text
+' ' Text
+'1792' Text
+' ' Text
+'however' Text
+' ' Text
+'saw' Text
+' ' Text
+'a' Text
+' ' Text
+'war' Text
+' ' Text
+'with' Text
+' ' Text
+'Austria' Text
+' ' Text
+'and' Text
+' ' Text
+'Prussia' Text
+' ' Text
+'as' Text
+' ' Text
+'a' Text
+' ' Text
+'chance' Text
+' ' Text
+'to' Text
+' ' Text
+'boost' Text
+' ' Text
+'the' Text
+' ' Text
+'popularity' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'revolutionary' Text
+' ' Text
+'government' Text
+' ' Text
+'and' Text
+' ' Text
+'thought' Text
+' ' Text
+'that' Text
+' ' Text
+'such' Text
+' ' Text
+'a' Text
+' ' Text
+'war' Text
+' ' Text
+'could' Text
+' ' Text
+'be' Text
+' ' Text
+'won' Text
+' ' Text
+'and' Text
+' ' Text
+'so' Text
+' ' Text
+'[[' Punctuation
+'French Revolutionary Wars' Name.Tag
+'|' Punctuation
+'declared' Text
+' ' Text
+'war' Text
+' ' Text
+'on' Text
+' ' Text
+'Austria' Text
+']]' Punctuation
+' ' Text
+'on' Text
+' ' Text
+'20' Text
+' ' Text
+'April' Text
+' ' Text
+'1792' Text
+'.' Text
+'\n' Text
+
+'\n' Text
+
+'[[' Punctuation
+'File' Name.Namespace
+':' Punctuation
+'Serment du Jeu de Paume - Jacques-Louis David.jpg' Name.Tag
+'|' Punctuation
+'thumb' Text
+'|' Punctuation
+'[[' Punctuation
+'The Tennis Court Oath (David)' Name.Tag
+'|' Punctuation
+"''" Generic.Emph
+'Le' Generic.Emph
+' ' Generic.Emph
+'Serment' Generic.Emph
+' ' Generic.Emph
+'du' Generic.Emph
+' ' Generic.Emph
+'Jeu' Generic.Emph
+' ' Generic.Emph
+'de' Generic.Emph
+' ' Generic.Emph
+'paume' Generic.Emph
+"''" Generic.Emph
+']]' Punctuation
+' ' Text
+'by' Text
+' ' Text
+'[[' Punctuation
+'Jacques-Louis David' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'1791' Text
+']]' Punctuation
+'\n' Text
+
+'On' Text
+' ' Text
+'10' Text
+' ' Text
+'August' Text
+' ' Text
+'1792' Text
+',' Text
+' ' Text
+'an' Text
+' ' Text
+'angry' Text
+' ' Text
+'crowd' Text
+' ' Text
+'[[' Punctuation
+'Insurrection of 10 August 1792' Name.Tag
+'|' Punctuation
+'threatened' Text
+' ' Text
+'the' Text
+' ' Text
+'palace' Text
+' ' Text
+'of' Text
+' ' Text
+'King' Text
+' ' Text
+'Louis' Text
+' ' Text
+'XVI' Text
+']]' Punctuation
+',' Text
+' ' Text
+'who' Text
+' ' Text
+'took' Text
+' ' Text
+'refuge' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'Legislative' Text
+' ' Text
+'Assembly' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+' ' Text.Whitespace
+'name' Name.Attribute
+'=' Operator
+'Shus' Literal.String
+'-' Literal.String
+'5' Literal.String
+'/>' Punctuation
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'Jack' Text
+' ' Text
+'R' Text
+'.' Text
+' ' Text
+'Censer' Text
+',' Text
+' ' Text
+'and' Text
+' ' Text
+'Lynn' Text
+' ' Text
+'Hunt' Text
+',' Text
+' ' Text
+"''" Generic.Emph
+'Liberty' Generic.Emph
+',' Generic.Emph
+' ' Generic.Emph
+'Equality' Generic.Emph
+',' Generic.Emph
+' ' Generic.Emph
+'Fraternity' Generic.Emph
+':' Generic.Emph
+' ' Generic.Emph
+'Exploring' Generic.Emph
+' ' Generic.Emph
+'the' Generic.Emph
+' ' Generic.Emph
+'French' Generic.Emph
+' ' Generic.Emph
+'Revolution' Generic.Emph
+'.' Generic.Emph
+"''" Generic.Emph
+' ' Text
+'University' Text
+' ' Text
+'Park' Text
+',' Text
+' ' Text
+'Pennsylvania' Text
+':' Text
+' ' Text
+'Pennsylvania' Text
+' ' Text
+'State' Text
+' ' Text
+'University' Text
+' ' Text
+'Press' Text
+',' Text
+' ' Text
+'2004' Text
+'.' Text
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'A' Text
+' ' Text
+'Prussian' Text
+' ' Text
+'Army' Text
+' ' Text
+'invaded' Text
+' ' Text
+'France' Text
+' ' Text
+'later' Text
+' ' Text
+'in' Text
+' ' Text
+'August' Text
+' ' Text
+'1792' Text
+'.' Text
+' ' Text
+'In' Text
+' ' Text
+'early' Text
+' ' Text
+'September' Text
+',' Text
+' ' Text
+'Parisians' Text
+',' Text
+' ' Text
+'infuriated' Text
+' ' Text
+'by' Text
+' ' Text
+'[[' Punctuation
+'French Revolutionary Wars' Name.Tag
+'|' Punctuation
+'the' Text
+' ' Text
+'Prussian' Text
+' ' Text
+'Army' Text
+' ' Text
+'capturing' Text
+' ' Text
+'Verdun' Text
+']]' Punctuation
+' ' Text
+'and' Text
+' ' Text
+'counter' Text
+'-' Text
+'revolutionary' Text
+' ' Text
+'uprisings' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'west' Text
+' ' Text
+'of' Text
+' ' Text
+'France' Text
+',' Text
+' ' Text
+'[[' Punctuation
+'September Massacres' Name.Tag
+'|' Punctuation
+'murdered' Text
+' ' Text
+'between' Text
+' ' Text
+'1' Text
+',' Text
+'000' Text
+' ' Text
+'and' Text
+' ' Text
+'1' Text
+',' Text
+'500' Text
+' ' Text
+'prisoners' Text
+']]' Punctuation
+' ' Text
+'by' Text
+' ' Text
+'raiding' Text
+' ' Text
+'the' Text
+' ' Text
+'Parisian' Text
+' ' Text
+'prisons' Text
+'.' Text
+' ' Text
+'The' Text
+' ' Text
+'[[' Punctuation
+'Legislative Assembly (France)' Name.Tag
+'|' Punctuation
+'Assembly' Text
+']]' Punctuation
+' ' Text
+'and' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Paris Commune (French Revolution)' Name.Tag
+'|' Punctuation
+'Paris' Text
+' ' Text
+'City' Text
+' ' Text
+'Council' Text
+']]' Punctuation
+' ' Text
+'seemed' Text
+' ' Text
+'unable' Text
+' ' Text
+'to' Text
+' ' Text
+'stop' Text
+' ' Text
+'that' Text
+' ' Text
+'bloodshed' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+' ' Text.Whitespace
+'name' Name.Attribute
+'=' Operator
+'Shus' Literal.String
+'-' Literal.String
+'5' Literal.String
+'/>' Punctuation
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'Doyle' Text
+',' Text
+' ' Text
+'William' Text
+'.' Text
+' ' Text
+"''" Generic.Emph
+'The' Generic.Emph
+' ' Generic.Emph
+'Oxford' Generic.Emph
+' ' Generic.Emph
+'History' Generic.Emph
+' ' Generic.Emph
+'of' Generic.Emph
+' ' Generic.Emph
+'The' Generic.Emph
+' ' Generic.Emph
+'French' Generic.Emph
+' ' Generic.Emph
+'Revolution' Generic.Emph
+'.' Generic.Emph
+"''" Generic.Emph
+' ' Text
+'Oxford' Text
+':' Text
+' ' Text
+'Oxford' Text
+' ' Text
+'University' Text
+' ' Text
+'Press' Text
+',' Text
+' ' Text
+'1989' Text
+'.' Text
+' ' Text
+'pp' Text
+' ' Text
+'191' Text
+'–' Text
+'192' Text
+'.' Text
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'The' Text
+' ' Text
+'[[' Punctuation
+'National Convention' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'chosen' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'first' Text
+' ' Text
+'elections' Text
+' ' Text
+'under' Text
+' ' Text
+'male' Text
+' ' Text
+'[[' Punctuation
+'universal suffrage' Name.Tag
+']]' Punctuation
+',' Text
+'<' Punctuation
+'ref' Name.Tag
+' ' Text.Whitespace
+'name' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+'Shus' Literal.String.Double
+'-' Literal.String.Double
+'5' Literal.String.Double
+'"' Literal.String.Double
+'>' Punctuation
+'{{' Punctuation
+'In' Name.Tag
+' ' Name.Tag
+'lang' Name.Tag
+'|' Punctuation
+'nl' Text
+'}}' Punctuation
+' ' Text
+'Noah' Text
+' ' Text
+'Shusterman' Text
+' ' Text
+'–' Text
+' ' Text
+"''" Generic.Emph
+'De' Generic.Emph
+' ' Generic.Emph
+'Franse' Generic.Emph
+' ' Generic.Emph
+'Revolutie' Generic.Emph
+' ' Generic.Emph
+'(' Generic.Emph
+'The' Generic.Emph
+' ' Generic.Emph
+'French' Generic.Emph
+' ' Generic.Emph
+'Revolution' Generic.Emph
+')' Generic.Emph
+'.' Generic.Emph
+"''" Generic.Emph
+' ' Text
+'Veen' Text
+' ' Text
+'Media' Text
+',' Text
+' ' Text
+'Amsterdam' Text
+',' Text
+' ' Text
+'2015' Text
+'.' Text
+' ' Text
+'(' Text
+'Translation' Text
+' ' Text
+'of' Text
+':' Text
+' ' Text
+"''" Generic.Emph
+'The' Generic.Emph
+' ' Generic.Emph
+'French' Generic.Emph
+' ' Generic.Emph
+'Revolution' Generic.Emph
+'.' Generic.Emph
+' ' Generic.Emph
+'Faith' Generic.Emph
+',' Generic.Emph
+' ' Generic.Emph
+'Desire' Generic.Emph
+',' Generic.Emph
+' ' Generic.Emph
+'and' Generic.Emph
+' ' Generic.Emph
+'Politics' Generic.Emph
+'.' Generic.Emph
+"''" Generic.Emph
+' ' Text
+'Routledge' Text
+',' Text
+' ' Text
+'London' Text
+'/' Text
+'New' Text
+' ' Text
+'York' Text
+',' Text
+' ' Text
+'2014' Text
+'.' Text
+')' Text
+' ' Text
+'Chapter' Text
+' ' Text
+'5' Text
+' ' Text
+'(' Text
+'p' Text
+'.' Text
+' ' Text
+'187' Text
+'–' Text
+'221' Text
+')' Text
+' ' Text
+':' Text
+' ' Text
+'The' Text
+' ' Text
+'end' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'monarchy' Text
+' ' Text
+'and' Text
+' ' Text
+'the' Text
+' ' Text
+'September' Text
+' ' Text
+'Murders' Text
+' ' Text
+'(' Text
+'summer' Text
+'-' Text
+'fall' Text
+' ' Text
+'1792' Text
+')' Text
+'.' Text
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'on' Text
+' ' Text
+'20' Text
+' ' Text
+'September' Text
+' ' Text
+'1792' Text
+' ' Text
+'succeeded' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Legislative Assembly (France)' Name.Tag
+'|' Punctuation
+'Legislative' Text
+' ' Text
+'Assembly' Text
+']]' Punctuation
+' ' Text
+'and' Text
+' ' Text
+'on' Text
+' ' Text
+'21' Text
+' ' Text
+'September' Text
+' ' Text
+'abolished' Text
+' ' Text
+'the' Text
+' ' Text
+'monarchy' Text
+' ' Text
+'by' Text
+' ' Text
+'proclaiming' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'French First Republic' Name.Tag
+']]' Punctuation
+'.' Text
+'\n' Text
+
+'Ex' Text
+'-' Text
+'King' Text
+' ' Text
+'Louis' Text
+' ' Text
+'XVI' Text
+' ' Text
+'was' Text
+' ' Text
+'[[' Punctuation
+'Trial of Louis XVI' Name.Tag
+'|' Punctuation
+'convicted' Text
+']]' Punctuation
+' ' Text
+'of' Text
+' ' Text
+'treason' Text
+' ' Text
+'and' Text
+' ' Text
+'[[' Punctuation
+'Execution of Louis XVI' Name.Tag
+'|' Punctuation
+'guillotined' Text
+' ' Text
+'in' Text
+' ' Text
+'January' Text
+' ' Text
+'1793' Text
+']]' Punctuation
+'.' Text
+'\n' Text
+
+'France' Text
+' ' Text
+'had' Text
+' ' Text
+'declared' Text
+' ' Text
+'war' Text
+' ' Text
+'on' Text
+' ' Text
+'Great' Text
+' ' Text
+'Britain' Text
+' ' Text
+'and' Text
+' ' Text
+'the' Text
+' ' Text
+'Dutch' Text
+' ' Text
+'Republic' Text
+' ' Text
+'in' Text
+' ' Text
+'November' Text
+' ' Text
+'1792' Text
+' ' Text
+'and' Text
+' ' Text
+'did' Text
+' ' Text
+'the' Text
+' ' Text
+'same' Text
+' ' Text
+'on' Text
+' ' Text
+'Spain' Text
+' ' Text
+'in' Text
+' ' Text
+'March' Text
+' ' Text
+'1793' Text
+';' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'spring' Text
+' ' Text
+'of' Text
+' ' Text
+'1793' Text
+',' Text
+' ' Text
+'Austria' Text
+' ' Text
+'and' Text
+' ' Text
+'Prussia' Text
+' ' Text
+'invaded' Text
+' ' Text
+'France' Text
+';' Text
+' ' Text
+'in' Text
+' ' Text
+'March' Text
+',' Text
+' ' Text
+'France' Text
+' ' Text
+'created' Text
+' ' Text
+'a' Text
+' ' Text
+'"' Text
+'[[' Punctuation
+'sister republic' Name.Tag
+']]' Punctuation
+'"' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'"' Text
+'[[' Punctuation
+'Republic of Mainz' Name.Tag
+']]' Punctuation
+'"' Text
+',' Text
+' ' Text
+'and' Text
+' ' Text
+'kept' Text
+' ' Text
+'it' Text
+' ' Text
+'under' Text
+' ' Text
+'control' Text
+'.' Text
+'\n' Text
+
+'\n' Text
+
+'Also' Text
+' ' Text
+'in' Text
+' ' Text
+'March' Text
+' ' Text
+'1793' Text
+',' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'War in the Vendée' Name.Tag
+'|' Punctuation
+'civil' Text
+' ' Text
+'war' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'Vendée' Text
+' ' Text
+'against' Text
+' ' Text
+'Paris' Text
+']]' Punctuation
+' ' Text
+'started' Text
+',' Text
+' ' Text
+'evoked' Text
+' ' Text
+'by' Text
+' ' Text
+'both' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Civil Constitution of the Clergy' Name.Tag
+']]' Punctuation
+' ' Text
+'of' Text
+' ' Text
+'1790' Text
+' ' Text
+'and' Text
+' ' Text
+'the' Text
+' ' Text
+'nationwide' Text
+' ' Text
+'army' Text
+' ' Text
+'conscription' Text
+' ' Text
+'in' Text
+' ' Text
+'early' Text
+' ' Text
+'1793' Text
+';' Text
+' ' Text
+'elsewhere' Text
+' ' Text
+'in' Text
+' ' Text
+'France' Text
+' ' Text
+'rebellion' Text
+' ' Text
+'was' Text
+' ' Text
+'brewing' Text
+' ' Text
+'too' Text
+'.' Text
+' ' Text
+'A' Text
+' ' Text
+'factionalist' Text
+' ' Text
+'feud' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'National' Text
+' ' Text
+'Convention' Text
+',' Text
+' ' Text
+'smouldering' Text
+' ' Text
+'ever' Text
+' ' Text
+'since' Text
+' ' Text
+'October' Text
+' ' Text
+'1791' Text
+',' Text
+' ' Text
+'came' Text
+' ' Text
+'to' Text
+' ' Text
+'a' Text
+' ' Text
+'climax' Text
+' ' Text
+'with' Text
+' ' Text
+'the' Text
+' ' Text
+'group' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+"'" Text
+'[[' Punctuation
+'Girondins' Name.Tag
+']]' Punctuation
+"'" Text
+' ' Text
+'on' Text
+' ' Text
+'2' Text
+' ' Text
+'June' Text
+' ' Text
+'1793' Text
+' ' Text
+'being' Text
+' ' Text
+'forced' Text
+' ' Text
+'to' Text
+' ' Text
+'resign' Text
+' ' Text
+'and' Text
+' ' Text
+'leave' Text
+' ' Text
+'the' Text
+' ' Text
+'convention' Text
+'.' Text
+' ' Text
+'The' Text
+' ' Text
+'counter' Text
+'-' Text
+'revolution' Text
+',' Text
+' ' Text
+'begun' Text
+' ' Text
+'in' Text
+' ' Text
+'March' Text
+' ' Text
+'1793' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'Vendée' Text
+',' Text
+' ' Text
+'by' Text
+' ' Text
+'July' Text
+' ' Text
+'had' Text
+' ' Text
+'spread' Text
+' ' Text
+'to' Text
+' ' Text
+'[[' Punctuation
+'Brittany (administrative region)' Name.Tag
+'|' Punctuation
+'Brittany' Text
+']]' Punctuation
+',' Text
+' ' Text
+'Normandy' Text
+',' Text
+' ' Text
+'Bordeaux' Text
+',' Text
+' ' Text
+'Marseilles' Text
+',' Text
+' ' Text
+'Toulon' Text
+',' Text
+' ' Text
+'and' Text
+' ' Text
+'Lyon' Text
+'.' Text
+' ' Text
+'Paris' Text
+"'" Text
+' ' Text
+'Convention' Text
+' ' Text
+'government' Text
+' ' Text
+'between' Text
+' ' Text
+'October' Text
+' ' Text
+'and' Text
+' ' Text
+'December' Text
+' ' Text
+'1793' Text
+' ' Text
+'with' Text
+' ' Text
+'brutal' Text
+' ' Text
+'measures' Text
+' ' Text
+'managed' Text
+' ' Text
+'to' Text
+' ' Text
+'subdue' Text
+' ' Text
+'most' Text
+' ' Text
+'internal' Text
+' ' Text
+'uprisings' Text
+',' Text
+' ' Text
+'at' Text
+' ' Text
+'the' Text
+' ' Text
+'cost' Text
+' ' Text
+'of' Text
+' ' Text
+'tens' Text
+' ' Text
+'of' Text
+' ' Text
+'thousands' Text
+' ' Text
+'of' Text
+' ' Text
+'lives' Text
+'.' Text
+' ' Text
+'Some' Text
+' ' Text
+'historians' Text
+' ' Text
+'consider' Text
+' ' Text
+'the' Text
+' ' Text
+'civil' Text
+' ' Text
+'war' Text
+' ' Text
+'to' Text
+' ' Text
+'have' Text
+' ' Text
+'lasted' Text
+' ' Text
+'until' Text
+' ' Text
+'1796' Text
+' ' Text
+'with' Text
+' ' Text
+'a' Text
+' ' Text
+'toll' Text
+' ' Text
+'of' Text
+' ' Text
+'possibly' Text
+' ' Text
+'450' Text
+',' Text
+'000' Text
+' ' Text
+'lives' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'news' Name.Tag
+' ' Text
+'|' Punctuation
+'last' Name.Label
+'=' Operator
+'Dr' Text
+' ' Text
+'Linton' Text
+' ' Text
+'|' Punctuation
+'first' Name.Label
+'=' Operator
+'Marisa' Text
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'The' Text
+' ' Text
+'Terror' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'French' Text
+' ' Text
+'Revolution' Text
+' ' Text
+'|' Punctuation
+'publisher' Name.Label
+'=' Operator
+'Kingston' Text
+' ' Text
+'University' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'port' Text
+'.' Text
+'ac' Text
+'.' Text
+'uk' Text
+'/' Text
+'special' Text
+'/' Text
+'france1815to2003' Text
+'/' Text
+'chapter1' Text
+'/' Text
+'interviews' Text
+'/' Text
+'filetodownload' Text
+',' Text
+'20545' Text
+',' Text
+'en' Text
+'.' Text
+'pdf' Text
+' ' Text
+'|' Punctuation
+'url-status' Name.Label
+'=' Operator
+'dead' Text
+' ' Text
+'|' Punctuation
+'archive-url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'web' Text
+'.' Text
+'archive' Text
+'.' Text
+'org' Text
+'/' Text
+'web' Text
+'/' Text
+'20120117152123' Text
+'/' Text
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'port' Text
+'.' Text
+'ac' Text
+'.' Text
+'uk' Text
+'/' Text
+'special' Text
+'/' Text
+'france1815to2003' Text
+'/' Text
+'chapter1' Text
+'/' Text
+'interviews' Text
+'/' Text
+'filetodownload' Text
+'%' Text
+'2C20545' Text
+'%' Text
+'2Cen' Text
+'.' Text
+'pdf' Text
+' ' Text
+'|' Punctuation
+'archive-date' Name.Label
+'=' Operator
+'17' Text
+' ' Text
+'January' Text
+' ' Text
+'2012' Text
+'}}' Punctuation
+';' Text
+' ' Text
+'Jacques' Text
+' ' Text
+'Hussenet' Text
+' ' Text
+'(' Text
+'dir' Text
+'.' Text
+')' Text
+',' Text
+' ' Text
+"''" Generic.Emph
+'"' Generic.Emph
+' ' Generic.Emph
+'Détruisez' Generic.Emph
+' ' Generic.Emph
+'la' Generic.Emph
+' ' Generic.Emph
+'Vendée' Generic.Emph
+' ' Generic.Emph
+'!' Generic.Emph
+' ' Generic.Emph
+'"' Generic.Emph
+' ' Generic.Emph
+'Regards' Generic.Emph
+' ' Generic.Emph
+'croisés' Generic.Emph
+' ' Generic.Emph
+'sur' Generic.Emph
+' ' Generic.Emph
+'les' Generic.Emph
+' ' Generic.Emph
+'victimes' Generic.Emph
+' ' Generic.Emph
+'et' Generic.Emph
+' ' Generic.Emph
+'destructions' Generic.Emph
+' ' Generic.Emph
+'de' Generic.Emph
+' ' Generic.Emph
+'la' Generic.Emph
+' ' Generic.Emph
+'guerre' Generic.Emph
+' ' Generic.Emph
+'de' Generic.Emph
+' ' Generic.Emph
+'Vendée' Generic.Emph
+"''" Generic.Emph
+',' Text
+' ' Text
+'La' Text
+' ' Text
+'Roche' Text
+'-' Text
+'sur' Text
+'-' Text
+'Yon' Text
+',' Text
+' ' Text
+'Centre' Text
+' ' Text
+'vendéen' Text
+' ' Text
+'de' Text
+' ' Text
+'recherches' Text
+' ' Text
+'historiques' Text
+',' Text
+' ' Text
+'2007' Text
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'By' Text
+' ' Text
+'the' Text
+' ' Text
+'end' Text
+' ' Text
+'of' Text
+' ' Text
+'1793' Text
+',' Text
+' ' Text
+'the' Text
+' ' Text
+'allies' Text
+' ' Text
+'had' Text
+' ' Text
+'been' Text
+' ' Text
+'driven' Text
+' ' Text
+'from' Text
+' ' Text
+'France' Text
+'.' Text
+' ' Text
+'France' Text
+' ' Text
+'in' Text
+' ' Text
+'February' Text
+' ' Text
+'1794' Text
+' ' Text
+'[[' Punctuation
+'Abolitionism' Name.Tag
+'|' Punctuation
+'abolished' Text
+' ' Text
+'slavery' Text
+']]' Punctuation
+' ' Text
+'in' Text
+' ' Text
+'its' Text
+' ' Text
+'[[' Punctuation
+'French colonial empire' Name.Tag
+'|' Punctuation
+'American' Text
+' ' Text
+'colonies' Text
+']]' Punctuation
+' ' Text
+'but' Text
+' ' Text
+'would' Text
+' ' Text
+'reintroduce' Text
+' ' Text
+'it' Text
+' ' Text
+'later' Text
+'.' Text
+'\n' Text
+
+'\n' Text
+
+'Political' Text
+' ' Text
+'disagreements' Text
+' ' Text
+'and' Text
+' ' Text
+'enmity' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'National Convention' Name.Tag
+']]' Punctuation
+' ' Text
+'between' Text
+' ' Text
+'October' Text
+' ' Text
+'1793' Text
+' ' Text
+'and' Text
+' ' Text
+'July' Text
+' ' Text
+'1794' Text
+' ' Text
+'reached' Text
+' ' Text
+'unprecedented' Text
+' ' Text
+'levels' Text
+',' Text
+' ' Text
+'leading' Text
+' ' Text
+'to' Text
+' ' Text
+'dozens' Text
+' ' Text
+'of' Text
+' ' Text
+'Convention' Text
+' ' Text
+'members' Text
+' ' Text
+'being' Text
+' ' Text
+'sentenced' Text
+' ' Text
+'to' Text
+' ' Text
+'death' Text
+' ' Text
+'and' Text
+' ' Text
+'guillotined' Text
+'.' Text
+' ' Text
+'Meanwhile' Text
+',' Text
+' ' Text
+'[[' Punctuation
+'French Revolutionary Wars' Name.Tag
+'|' Punctuation
+'France' Text
+"'" Text
+'s' Text
+' ' Text
+'external' Text
+' ' Text
+'wars' Text
+']]' Punctuation
+' ' Text
+'in' Text
+' ' Text
+'1794' Text
+' ' Text
+'were' Text
+' ' Text
+'prospering' Text
+',' Text
+' ' Text
+'for' Text
+' ' Text
+'example' Text
+' ' Text
+'in' Text
+' ' Text
+'Belgium' Text
+'.' Text
+' ' Text
+'In' Text
+' ' Text
+'1795' Text
+',' Text
+' ' Text
+'the' Text
+' ' Text
+'government' Text
+' ' Text
+'seemed' Text
+' ' Text
+'to' Text
+' ' Text
+'return' Text
+' ' Text
+'to' Text
+' ' Text
+'indifference' Text
+' ' Text
+'towards' Text
+' ' Text
+'the' Text
+' ' Text
+'desires' Text
+' ' Text
+'and' Text
+' ' Text
+'needs' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'lower' Text
+' ' Text
+'classes' Text
+' ' Text
+'concerning' Text
+' ' Text
+'freedom' Text
+' ' Text
+'of' Text
+' ' Text
+'(' Text
+'[[' Punctuation
+'Catholic Church' Name.Tag
+'|' Punctuation
+'Catholic' Text
+']]' Punctuation
+')' Text
+' ' Text
+'religion' Text
+' ' Text
+'and' Text
+' ' Text
+'fair' Text
+' ' Text
+'distribution' Text
+' ' Text
+'of' Text
+' ' Text
+'food' Text
+'.' Text
+' ' Text
+'Until' Text
+' ' Text
+'1799' Text
+',' Text
+' ' Text
+'politicians' Text
+',' Text
+' ' Text
+'apart' Text
+' ' Text
+'from' Text
+' ' Text
+'inventing' Text
+' ' Text
+'a' Text
+' ' Text
+'new' Text
+' ' Text
+'parliamentary' Text
+' ' Text
+'system' Text
+' ' Text
+'(' Text
+'the' Text
+' ' Text
+"'" Text
+'[[' Punctuation
+'French Directory' Name.Tag
+'|' Punctuation
+'Directory' Text
+']]' Punctuation
+"'" Text
+')' Text
+',' Text
+' ' Text
+'busied' Text
+' ' Text
+'themselves' Text
+' ' Text
+'with' Text
+' ' Text
+'dissuading' Text
+' ' Text
+'the' Text
+' ' Text
+'people' Text
+' ' Text
+'from' Text
+' ' Text
+'[[' Punctuation
+'Catholic Church' Name.Tag
+'|' Punctuation
+'Catholicism' Text
+']]' Punctuation
+' ' Text
+'and' Text
+' ' Text
+'royalism' Text
+'.' Text
+'\n' Text
+
+'\n' Text
+
+'===' Generic.Subheading
+'Napoleon and 19th century (1799–1914)' Generic.Subheading
+'===' Generic.Subheading
+'\n' Text.Whitespace
+
+'{{' Punctuation
+'Main' Name.Tag
+'|' Punctuation
+'History' Text
+' ' Text
+'of' Text
+' ' Text
+'France' Text
+'#' Text
+'Napoleonic' Text
+' ' Text
+'France' Text
+' ' Text
+'(' Text
+'1799' Text
+'–' Text
+'1815' Text
+')' Text
+'|' Punctuation
+'History' Text
+' ' Text
+'of' Text
+' ' Text
+'France' Text
+'#' Text
+'Long' Text
+' ' Text
+'19th' Text
+' ' Text
+'century' Text
+',' Text
+' ' Text
+'1815' Text
+'–' Text
+'1914' Text
+'|' Punctuation
+'First' Text
+' ' Text
+'French' Text
+' ' Text
+'Empire' Text
+'|' Punctuation
+'Second' Text
+' ' Text
+'French' Text
+' ' Text
+'Empire' Text
+'|' Punctuation
+'French' Text
+' ' Text
+'colonial' Text
+' ' Text
+'empire' Text
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'See' Name.Tag
+' ' Name.Tag
+'also' Name.Tag
+'|' Punctuation
+'France' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'19th' Text
+' ' Text
+'century' Text
+'|' Punctuation
+'France' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'20th' Text
+' ' Text
+'century' Text
+'}}' Punctuation
+'\n' Text
+
+'[[' Punctuation
+'File' Name.Namespace
+':' Punctuation
+'Jacques-Louis David - The Emperor Napoleon in His Study at the Tuileries - Google Art Project.jpg' Name.Tag
+'|' Punctuation
+'thumb' Text
+'|' Punctuation
+'upright' Text
+'|' Punctuation
+'left' Text
+'|' Punctuation
+'alt' Name.Attribute
+'=' Operator
+'painting' Text
+' ' Text
+'of' Text
+' ' Text
+'Napoleon' Text
+' ' Text
+'in' Text
+' ' Text
+'1806' Text
+' ' Text
+'standing' Text
+' ' Text
+'with' Text
+' ' Text
+'hand' Text
+' ' Text
+'in' Text
+' ' Text
+'vest' Text
+' ' Text
+'attended' Text
+' ' Text
+'by' Text
+' ' Text
+'staff' Text
+' ' Text
+'and' Text
+' ' Text
+'Imperial' Text
+' ' Text
+'guard' Text
+' ' Text
+'regiment' Text
+'|' Punctuation
+'[[' Punctuation
+'Napoleon' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'[[' Punctuation
+'Emperor of the French' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'built' Text
+' ' Text
+'a' Text
+' ' Text
+'[[' Punctuation
+'First French Empire' Name.Tag
+'|' Punctuation
+'vast' Text
+' ' Text
+'empire' Text
+' ' Text
+'across' Text
+' ' Text
+'Europe' Text
+']]' Punctuation
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'book' Name.Tag
+' ' Text
+'|' Punctuation
+'last' Name.Label
+'=' Operator
+'Frank' Text
+' ' Text
+'W' Text
+'.' Text
+' ' Text
+'Thackeray' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'books' Text
+'.' Text
+'google' Text
+'.' Text
+'com' Text
+'/' Text
+'books' Text
+'?' Text
+'id' Text
+'=' Text
+'W0ktX_xI1fYC' Text
+'&' Text
+'pg' Text
+'=' Text
+'PA6' Text
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Events' Text
+' ' Text
+'that' Text
+' ' Text
+'Changed' Text
+' ' Text
+'the' Text
+' ' Text
+'World' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'Nineteenth' Text
+' ' Text
+'Century' Text
+' ' Text
+'|' Punctuation
+'year' Name.Label
+'=' Operator
+'1996' Text
+' ' Text
+'|' Punctuation
+'isbn' Name.Label
+'=' Operator
+'978' Text
+'-' Text
+'0' Text
+'-' Text
+'313' Text
+'-' Text
+'29076' Text
+'-' Text
+'3' Text
+' ' Text
+'|' Punctuation
+'page' Name.Label
+'=' Operator
+'6' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+']]' Punctuation
+'\n' Text
+
+'[[' Punctuation
+'Napoleon' Name.Tag
+'|' Punctuation
+'Napoleon' Text
+' ' Text
+'Bonaparte' Text
+']]' Punctuation
+' ' Text
+'[[' Punctuation
+'Coup of 18 Brumaire' Name.Tag
+'|' Punctuation
+'seized' Text
+' ' Text
+'control' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'Republic' Text
+']]' Punctuation
+' ' Text
+'in' Text
+' ' Text
+'1799' Text
+' ' Text
+'becoming' Text
+' ' Text
+'[[' Punctuation
+'French Consulate' Name.Tag
+'|' Punctuation
+'First' Text
+' ' Text
+'Consul' Text
+']]' Punctuation
+' ' Text
+'and' Text
+' ' Text
+'later' Text
+' ' Text
+'[[' Punctuation
+'Constitution of the Year XII' Name.Tag
+'|' Punctuation
+'Emperor' Text
+']]' Punctuation
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'First French Empire' Name.Tag
+'|' Punctuation
+'French' Text
+' ' Text
+'Empire' Text
+']]' Punctuation
+' ' Text
+'(' Text
+'1804' Text
+'–' Text
+'1814' Text
+';' Text
+' ' Text
+'1815' Text
+')' Text
+'.' Text
+' ' Text
+'As' Text
+' ' Text
+'a' Text
+' ' Text
+'continuation' Text
+' ' Text
+'of' Text
+' ' Text
+'[[' Punctuation
+'French Revolutionary Wars' Name.Tag
+'|' Punctuation
+'the' Text
+' ' Text
+'wars' Text
+']]' Punctuation
+' ' Text
+'sparked' Text
+' ' Text
+'by' Text
+' ' Text
+'the' Text
+' ' Text
+'European' Text
+' ' Text
+'monarchies' Text
+' ' Text
+'against' Text
+' ' Text
+'the' Text
+' ' Text
+'French' Text
+' ' Text
+'Republic' Text
+',' Text
+' ' Text
+'changing' Text
+' ' Text
+'sets' Text
+' ' Text
+'of' Text
+' ' Text
+'[[' Punctuation
+'Coalition Wars' Name.Tag
+'|' Punctuation
+'European' Text
+' ' Text
+'Coalitions' Text
+']]' Punctuation
+' ' Text
+'declared' Text
+' ' Text
+'[[' Punctuation
+'Napoleonic Wars' Name.Tag
+'|' Punctuation
+'wars' Text
+']]' Punctuation
+' ' Text
+'on' Text
+' ' Text
+'Napoleon' Text
+"'" Text
+'s' Text
+' ' Text
+'Empire' Text
+'.' Text
+' ' Text
+'His' Text
+' ' Text
+'armies' Text
+' ' Text
+'conquered' Text
+' ' Text
+'most' Text
+' ' Text
+'of' Text
+' ' Text
+'continental' Text
+' ' Text
+'Europe' Text
+' ' Text
+'with' Text
+' ' Text
+'swift' Text
+' ' Text
+'victories' Text
+' ' Text
+'such' Text
+' ' Text
+'as' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Battle of Jena-Auerstadt' Name.Tag
+'|' Punctuation
+'battles' Text
+' ' Text
+'of' Text
+' ' Text
+'Jena' Text
+'-' Text
+'Auerstadt' Text
+']]' Punctuation
+' ' Text
+'or' Text
+' ' Text
+'[[' Punctuation
+'Battle of Austerlitz' Name.Tag
+'|' Punctuation
+'Austerlitz' Text
+']]' Punctuation
+'.' Text
+' ' Text
+'Members' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'House of Bonaparte' Name.Tag
+'|' Punctuation
+'Bonaparte' Text
+']]' Punctuation
+' ' Text
+'family' Text
+' ' Text
+'were' Text
+' ' Text
+'appointed' Text
+' ' Text
+'as' Text
+' ' Text
+'monarchs' Text
+' ' Text
+'in' Text
+' ' Text
+'some' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'newly' Text
+' ' Text
+'established' Text
+' ' Text
+'kingdoms' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+' ' Text.Whitespace
+'name' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+'Blanning' Literal.String.Double
+'"' Literal.String.Double
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'news' Name.Tag
+' ' Text
+'|' Punctuation
+'last' Name.Label
+'=' Operator
+'Blanning' Text
+' ' Text
+'|' Punctuation
+'first' Name.Label
+'=' Operator
+'Tim' Text
+' ' Text
+'|' Punctuation
+'author-link' Name.Label
+'=' Operator
+'Tim' Text
+' ' Text
+'Blanning' Text
+' ' Text
+'|' Punctuation
+'date' Name.Label
+'=' Operator
+'April' Text
+' ' Text
+'1998' Text
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Napoleon' Text
+' ' Text
+'and' Text
+' ' Text
+'German' Text
+' ' Text
+'identity' Text
+' ' Text
+'|' Punctuation
+'volume' Name.Label
+'=' Operator
+'48' Text
+' ' Text
+'|' Punctuation
+'work' Name.Label
+'=' Operator
+'[[' Punctuation
+'History Today' Name.Tag
+']]' Punctuation
+' ' Text
+'|' Punctuation
+'location' Name.Label
+'=' Operator
+'London' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'\n' Text
+
+'\n' Text
+
+'These' Text
+' ' Text
+'victories' Text
+' ' Text
+'led' Text
+' ' Text
+'to' Text
+' ' Text
+'the' Text
+' ' Text
+'worldwide' Text
+' ' Text
+'expansion' Text
+' ' Text
+'of' Text
+' ' Text
+'French' Text
+' ' Text
+'revolutionary' Text
+' ' Text
+'ideals' Text
+' ' Text
+'and' Text
+' ' Text
+'reforms' Text
+',' Text
+' ' Text
+'such' Text
+' ' Text
+'as' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'metric system' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Napoleonic Code' Name.Tag
+']]' Punctuation
+' ' Text
+'and' Text
+' ' Text
+'the' Text
+' ' Text
+'Declaration' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'Rights' Text
+' ' Text
+'of' Text
+' ' Text
+'Man' Text
+'.' Text
+' ' Text
+'In' Text
+' ' Text
+'June' Text
+' ' Text
+'1812' Text
+',' Text
+' ' Text
+'Napoleon' Text
+' ' Text
+'attacked' Text
+' ' Text
+'Russia' Text
+',' Text
+' ' Text
+'reaching' Text
+' ' Text
+'Moscow' Text
+'.' Text
+' ' Text
+'Thereafter' Text
+' ' Text
+'his' Text
+' ' Text
+'army' Text
+' ' Text
+'disintegrated' Text
+' ' Text
+'through' Text
+' ' Text
+'supply' Text
+' ' Text
+'problems' Text
+',' Text
+' ' Text
+'disease' Text
+',' Text
+' ' Text
+'Russian' Text
+' ' Text
+'attacks' Text
+',' Text
+' ' Text
+'and' Text
+' ' Text
+'finally' Text
+' ' Text
+'winter' Text
+'.' Text
+' ' Text
+'After' Text
+' ' Text
+'the' Text
+' ' Text
+'catastrophic' Text
+' ' Text
+'[[' Punctuation
+'French invasion of Russia' Name.Tag
+'|' Punctuation
+'Russian' Text
+' ' Text
+'campaign' Text
+']]' Punctuation
+',' Text
+' ' Text
+'and' Text
+' ' Text
+'the' Text
+' ' Text
+'ensuing' Text
+' ' Text
+'[[' Punctuation
+'War of the Sixth Coalition' Name.Tag
+'|' Punctuation
+'uprising' Text
+' ' Text
+'of' Text
+' ' Text
+'European' Text
+' ' Text
+'monarchies' Text
+']]' Punctuation
+' ' Text
+'against' Text
+' ' Text
+'his' Text
+' ' Text
+'rule' Text
+',' Text
+' ' Text
+'Napoleon' Text
+' ' Text
+'was' Text
+' ' Text
+'defeated' Text
+' ' Text
+'and' Text
+' ' Text
+'the' Text
+' ' Text
+'Bourbon' Text
+' ' Text
+'monarchy' Text
+' ' Text
+'[[' Punctuation
+'Bourbon Restoration in France' Name.Tag
+'|' Punctuation
+'restored' Text
+']]' Punctuation
+'.' Text
+' ' Text
+'About' Text
+' ' Text
+'a' Text
+' ' Text
+'million' Text
+' ' Text
+'Frenchmen' Text
+' ' Text
+'[[' Punctuation
+'Napoleonic Wars casualties' Name.Tag
+'|' Punctuation
+'died' Text
+' ' Text
+'during' Text
+' ' Text
+'the' Text
+' ' Text
+'Napoleonic' Text
+' ' Text
+'Wars' Text
+']]' Punctuation
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+' ' Text.Whitespace
+'name' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+'Blanning' Literal.String.Double
+'"' Literal.String.Double
+' ' Text.Whitespace
+'/>' Punctuation
+' ' Text
+'After' Text
+' ' Text
+'his' Text
+' ' Text
+'[[' Punctuation
+'Hundred Days' Name.Tag
+'|' Punctuation
+'brief' Text
+' ' Text
+'return' Text
+']]' Punctuation
+' ' Text
+'from' Text
+' ' Text
+'exile' Text
+',' Text
+' ' Text
+'Napoleon' Text
+' ' Text
+'was' Text
+' ' Text
+'finally' Text
+' ' Text
+'defeated' Text
+' ' Text
+'in' Text
+' ' Text
+'1815' Text
+' ' Text
+'at' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Battle of Waterloo' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'the' Text
+' ' Text
+'monarchy' Text
+' ' Text
+'was' Text
+' ' Text
+'[[' Punctuation
+'Bourbon Restoration in France' Name.Tag
+'|' Punctuation
+'re' Text
+'-' Text
+'established' Text
+']]' Punctuation
+' ' Text
+'(' Text
+'1815' Text
+'–' Text
+'1830' Text
+')' Text
+',' Text
+' ' Text
+'with' Text
+' ' Text
+'new' Text
+' ' Text
+'constitutional' Text
+' ' Text
+'limitations' Text
+'.' Text
+'\n' Text
+
+'\n' Text
+
+'The' Text
+' ' Text
+'discredited' Text
+' ' Text
+'Bourbon' Text
+' ' Text
+'dynasty' Text
+' ' Text
+'was' Text
+' ' Text
+'overthrown' Text
+' ' Text
+'by' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'July Revolution' Name.Tag
+']]' Punctuation
+' ' Text
+'of' Text
+' ' Text
+'1830' Text
+',' Text
+' ' Text
+'which' Text
+' ' Text
+'established' Text
+' ' Text
+'the' Text
+' ' Text
+'constitutional' Text
+' ' Text
+'[[' Punctuation
+'July Monarchy' Name.Tag
+']]' Punctuation
+'.' Text
+' ' Text
+'In' Text
+' ' Text
+'that' Text
+' ' Text
+'year' Text
+',' Text
+' ' Text
+'French' Text
+' ' Text
+'troops' Text
+' ' Text
+'began' Text
+' ' Text
+'the' Text
+' ' Text
+'conquest' Text
+' ' Text
+'of' Text
+' ' Text
+'Algeria' Text
+',' Text
+' ' Text
+'establishing' Text
+' ' Text
+'the' Text
+' ' Text
+'first' Text
+' ' Text
+'colonial' Text
+' ' Text
+'presence' Text
+' ' Text
+'in' Text
+' ' Text
+'Africa' Text
+' ' Text
+'since' Text
+' ' Text
+'Napoleon' Text
+"'" Text
+'s' Text
+' ' Text
+'abortive' Text
+' ' Text
+'[[' Punctuation
+'French campaign in Egypt and Syria' Name.Tag
+'|' Punctuation
+'invasion' Text
+' ' Text
+'of' Text
+' ' Text
+'Egypt' Text
+']]' Punctuation
+' ' Text
+'in' Text
+' ' Text
+'1798' Text
+'.' Text
+' ' Text
+'In' Text
+' ' Text
+'1848' Text
+',' Text
+' ' Text
+'general' Text
+' ' Text
+'unrest' Text
+' ' Text
+'led' Text
+' ' Text
+'to' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'French Revolution of 1848' Name.Tag
+'|' Punctuation
+'February' Text
+' ' Text
+'Revolution' Text
+']]' Punctuation
+' ' Text
+'and' Text
+' ' Text
+'the' Text
+' ' Text
+'end' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'July' Text
+' ' Text
+'Monarchy' Text
+'.' Text
+' ' Text
+'The' Text
+' ' Text
+'abolition' Text
+' ' Text
+'of' Text
+' ' Text
+'slavery' Text
+' ' Text
+'and' Text
+' ' Text
+'the' Text
+' ' Text
+'introduction' Text
+' ' Text
+'of' Text
+' ' Text
+'male' Text
+' ' Text
+'[[' Punctuation
+'universal suffrage' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'which' Text
+' ' Text
+'were' Text
+' ' Text
+'briefly' Text
+' ' Text
+'enacted' Text
+' ' Text
+'during' Text
+' ' Text
+'the' Text
+' ' Text
+'French' Text
+' ' Text
+'Revolution' Text
+',' Text
+' ' Text
+'was' Text
+' ' Text
+'re' Text
+'-' Text
+'enacted' Text
+' ' Text
+'in' Text
+' ' Text
+'1848' Text
+'.' Text
+' ' Text
+'In' Text
+' ' Text
+'1852' Text
+',' Text
+' ' Text
+'the' Text
+' ' Text
+'president' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'French' Text
+' ' Text
+'Republic' Text
+',' Text
+' ' Text
+'[[' Punctuation
+'Napoleon III' Name.Tag
+'|' Punctuation
+'Louis' Text
+'-' Text
+'Napoléon' Text
+' ' Text
+'Bonaparte' Text
+']]' Punctuation
+',' Text
+' ' Text
+'Napoleon' Text
+' ' Text
+'I' Text
+"'" Text
+'s' Text
+' ' Text
+'nephew' Text
+',' Text
+' ' Text
+'was' Text
+' ' Text
+'proclaimed' Text
+' ' Text
+'emperor' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Second French Empire' Name.Tag
+'|' Punctuation
+'Second' Text
+' ' Text
+'Empire' Text
+']]' Punctuation
+',' Text
+' ' Text
+'as' Text
+' ' Text
+'Napoleon' Text
+' ' Text
+'III' Text
+'.' Text
+' ' Text
+'He' Text
+' ' Text
+'multiplied' Text
+' ' Text
+'French' Text
+' ' Text
+'interventions' Text
+' ' Text
+'abroad' Text
+',' Text
+' ' Text
+'especially' Text
+' ' Text
+'in' Text
+' ' Text
+'[[' Punctuation
+'Crimean War' Name.Tag
+'|' Punctuation
+'Crimea' Text
+']]' Punctuation
+',' Text
+' ' Text
+'[[' Punctuation
+'Second French intervention in Mexico' Name.Tag
+'|' Punctuation
+'Mexico' Text
+']]' Punctuation
+' ' Text
+'and' Text
+' ' Text
+'[[' Punctuation
+'Second Italian War of Independence' Name.Tag
+'|' Punctuation
+'Italy' Text
+']]' Punctuation
+' ' Text
+'which' Text
+' ' Text
+'resulted' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'annexation' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Duchy of Savoy' Name.Tag
+']]' Punctuation
+' ' Text
+'and' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'County of Nice' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'then' Text
+' ' Text
+'part' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Kingdom of Sardinia' Name.Tag
+']]' Punctuation
+'.' Text
+' ' Text
+'Napoleon' Text
+' ' Text
+'III' Text
+' ' Text
+'was' Text
+' ' Text
+'unseated' Text
+' ' Text
+'following' Text
+' ' Text
+'defeat' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Franco-Prussian War' Name.Tag
+']]' Punctuation
+' ' Text
+'of' Text
+' ' Text
+'1870' Text
+' ' Text
+'and' Text
+' ' Text
+'his' Text
+' ' Text
+'regime' Text
+' ' Text
+'was' Text
+' ' Text
+'replaced' Text
+' ' Text
+'by' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'French Third Republic' Name.Tag
+'|' Punctuation
+'Third' Text
+' ' Text
+'Republic' Text
+']]' Punctuation
+'.' Text
+' ' Text
+'By' Text
+' ' Text
+'1875' Text
+',' Text
+' ' Text
+'the' Text
+' ' Text
+'French' Text
+' ' Text
+'conquest' Text
+' ' Text
+'of' Text
+' ' Text
+'Algeria' Text
+' ' Text
+'was' Text
+' ' Text
+'complete' Text
+',' Text
+' ' Text
+'and' Text
+' ' Text
+'approximately' Text
+' ' Text
+'825' Text
+',' Text
+'000' Text
+' ' Text
+'Algerians' Text
+' ' Text
+'had' Text
+' ' Text
+'been' Text
+' ' Text
+'killed' Text
+' ' Text
+'from' Text
+' ' Text
+'famine' Text
+',' Text
+' ' Text
+'disease' Text
+',' Text
+' ' Text
+'and' Text
+' ' Text
+'violence' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+' ' Text.Whitespace
+'name' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+'Kiernan2007' Literal.String.Double
+'"' Literal.String.Double
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'book' Name.Tag
+' ' Text
+'|' Punctuation
+'last' Name.Label
+'=' Operator
+'Ben' Text
+' ' Text
+'Kiernan' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'archive' Text
+'.' Text
+'org' Text
+'/' Text
+'details' Text
+'/' Text
+'bloodan_kie_2007_00_0326' Text
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Blood' Text
+' ' Text
+'and' Text
+' ' Text
+'Soil' Text
+':' Text
+' ' Text
+'A' Text
+' ' Text
+'World' Text
+' ' Text
+'History' Text
+' ' Text
+'of' Text
+' ' Text
+'Genocide' Text
+' ' Text
+'and' Text
+' ' Text
+'Extermination' Text
+' ' Text
+'from' Text
+' ' Text
+'Sparta' Text
+' ' Text
+'to' Text
+' ' Text
+'Darfur' Text
+' ' Text
+'|' Punctuation
+'publisher' Name.Label
+'=' Operator
+'Yale' Text
+' ' Text
+'University' Text
+' ' Text
+'Press' Text
+' ' Text
+'|' Punctuation
+'year' Name.Label
+'=' Operator
+'2007' Text
+' ' Text
+'|' Punctuation
+'isbn' Name.Label
+'=' Operator
+'978' Text
+'-' Text
+'0' Text
+'-' Text
+'300' Text
+'-' Text
+'10098' Text
+'-' Text
+'3' Text
+' ' Text
+'|' Punctuation
+'page' Name.Label
+'=' Operator
+'[' Punctuation
+'https://archive.org/details/bloodan_kie_2007_00_0326/page/374' Name.Label
+' ' Text.Whitespace
+'374' Text
+']' Punctuation
+' ' Text
+'|' Punctuation
+'url-access' Name.Label
+'=' Operator
+'registration' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'\n' Text
+
+'\n' Text
+
+'[[' Punctuation
+'File' Name.Namespace
+':' Punctuation
+'France colonial Empire10.png' Name.Tag
+'|' Punctuation
+'thumb' Text
+'|' Punctuation
+'upright' Name.Attribute
+'=' Operator
+'1' Text
+'.' Text
+'6' Text
+'|' Punctuation
+'The' Text
+' ' Text
+'first' Text
+' ' Text
+'(' Text
+'light' Text
+' ' Text
+'blue' Text
+')' Text
+' ' Text
+'and' Text
+' ' Text
+'second' Text
+' ' Text
+'(' Text
+'dark' Text
+' ' Text
+'blue' Text
+')' Text
+' ' Text
+'[[' Punctuation
+'French colonial empire' Name.Tag
+']]' Punctuation
+']]' Punctuation
+'\n' Text
+
+'\n' Text
+
+'France' Text
+' ' Text
+'had' Text
+' ' Text
+'[[' Punctuation
+'French colonial empire' Name.Tag
+'|' Punctuation
+'colonial' Text
+' ' Text
+'possessions' Text
+']]' Punctuation
+',' Text
+' ' Text
+'in' Text
+' ' Text
+'various' Text
+' ' Text
+'forms' Text
+',' Text
+' ' Text
+'since' Text
+' ' Text
+'the' Text
+' ' Text
+'beginning' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'17th' Text
+' ' Text
+'century' Text
+',' Text
+' ' Text
+'but' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'19th' Text
+' ' Text
+'and' Text
+' ' Text
+'20th' Text
+' ' Text
+'centuries' Text
+',' Text
+' ' Text
+'its' Text
+' ' Text
+'[[' Punctuation
+'List of largest empires' Name.Tag
+'|' Punctuation
+'global' Text
+' ' Text
+'overseas' Text
+' ' Text
+'colonial' Text
+' ' Text
+'empire' Text
+']]' Punctuation
+' ' Text
+'extended' Text
+' ' Text
+'greatly' Text
+' ' Text
+'and' Text
+' ' Text
+'became' Text
+' ' Text
+'the' Text
+' ' Text
+'second' Text
+'-' Text
+'largest' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'world' Text
+' ' Text
+'behind' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'British Empire' Name.Tag
+']]' Punctuation
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+' ' Text.Whitespace
+'name' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+':' Literal.String.Double
+'8' Literal.String.Double
+'"' Literal.String.Double
+'/>' Punctuation
+' ' Text
+'Including' Text
+' ' Text
+'[[' Punctuation
+'metropolitan France' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'the' Text
+' ' Text
+'total' Text
+' ' Text
+'area' Text
+' ' Text
+'of' Text
+' ' Text
+'land' Text
+' ' Text
+'under' Text
+' ' Text
+'French' Text
+' ' Text
+'[[' Punctuation
+'sovereignty' Name.Tag
+']]' Punctuation
+' ' Text
+'almost' Text
+' ' Text
+'reached' Text
+' ' Text
+'13' Text
+'&nbsp;' Name.Entity
+'million' Text
+' ' Text
+'square' Text
+' ' Text
+'kilometres' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'1920s' Text
+' ' Text
+'and' Text
+' ' Text
+'1930s' Text
+',' Text
+' ' Text
+'8' Text
+'.' Text
+'6' Text
+'%' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'world' Text
+"'" Text
+'s' Text
+' ' Text
+'land' Text
+'.' Text
+' ' Text
+'Known' Text
+' ' Text
+'as' Text
+' ' Text
+'the' Text
+' ' Text
+"''" Generic.Emph
+'[[' Punctuation
+'Belle Époque' Name.Tag
+']]' Punctuation
+"''" Generic.Emph
+',' Text
+' ' Text
+'the' Text
+' ' Text
+'turn' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'century' Text
+' ' Text
+'was' Text
+' ' Text
+'a' Text
+' ' Text
+'period' Text
+' ' Text
+'characterised' Text
+' ' Text
+'by' Text
+' ' Text
+'optimism' Text
+',' Text
+' ' Text
+'regional' Text
+' ' Text
+'peace' Text
+',' Text
+' ' Text
+'economic' Text
+' ' Text
+'prosperity' Text
+' ' Text
+'and' Text
+' ' Text
+'technological' Text
+',' Text
+' ' Text
+'scientific' Text
+' ' Text
+'and' Text
+' ' Text
+'cultural' Text
+' ' Text
+'innovations' Text
+'.' Text
+' ' Text
+'In' Text
+' ' Text
+'1905' Text
+',' Text
+' ' Text
+'[[' Punctuation
+'state secularism' Name.Tag
+']]' Punctuation
+' ' Text
+'was' Text
+' ' Text
+'[[' Punctuation
+'1905 French law on the Separation of the Churches and the State' Name.Tag
+'|' Punctuation
+'officially' Text
+' ' Text
+'established' Text
+']]' Punctuation
+'.' Text
+'\n' Text
+
+'\n' Text
+
+'===' Generic.Subheading
+'Early to mid-20th century (1914–1946)' Generic.Subheading
+'===' Generic.Subheading
+'\n' Text.Whitespace
+
+'{{' Punctuation
+'Main' Name.Tag
+'|' Punctuation
+'History' Text
+' ' Text
+'of' Text
+' ' Text
+'France' Text
+' ' Text
+'(' Text
+'1900' Text
+' ' Text
+'to' Text
+' ' Text
+'present' Text
+')' Text
+'}}' Punctuation
+'\n' Text
+
+'France' Text
+' ' Text
+'was' Text
+' ' Text
+'[[' Punctuation
+'French entry into World War I' Name.Tag
+'|' Punctuation
+'invaded' Text
+' ' Text
+'by' Text
+' ' Text
+'Germany' Text
+' ' Text
+'and' Text
+' ' Text
+'defended' Text
+' ' Text
+'by' Text
+' ' Text
+'Great' Text
+' ' Text
+'Britain' Text
+']]' Punctuation
+' ' Text
+'to' Text
+' ' Text
+'start' Text
+' ' Text
+'World' Text
+' ' Text
+'War' Text
+' ' Text
+'I' Text
+' ' Text
+'in' Text
+' ' Text
+'August' Text
+' ' Text
+'1914' Text
+'.' Text
+' ' Text
+'A' Text
+' ' Text
+'rich' Text
+' ' Text
+'industrial' Text
+' ' Text
+'area' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'northeast' Text
+' ' Text
+'was' Text
+' ' Text
+'occupied' Text
+'.' Text
+' ' Text
+'France' Text
+' ' Text
+'and' Text
+' ' Text
+'the' Text
+' ' Text
+'Allies' Text
+' ' Text
+'emerged' Text
+' ' Text
+'victorious' Text
+' ' Text
+'against' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Central Powers' Name.Tag
+']]' Punctuation
+' ' Text
+'at' Text
+' ' Text
+'a' Text
+' ' Text
+'tremendous' Text
+' ' Text
+'human' Text
+' ' Text
+'and' Text
+' ' Text
+'material' Text
+' ' Text
+'cost' Text
+'.' Text
+' ' Text
+'World' Text
+' ' Text
+'War' Text
+' ' Text
+'I' Text
+' ' Text
+'left' Text
+' ' Text
+'1' Text
+'.' Text
+'4' Text
+'&nbsp;' Name.Entity
+'million' Text
+' ' Text
+'French' Text
+' ' Text
+'soldiers' Text
+' ' Text
+'dead' Text
+',' Text
+' ' Text
+'4' Text
+'%' Text
+' ' Text
+'of' Text
+' ' Text
+'its' Text
+' ' Text
+'population' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'news' Name.Tag
+' ' Text
+'|' Punctuation
+'date' Name.Label
+'=' Operator
+'20' Text
+' ' Text
+'January' Text
+' ' Text
+'2008' Text
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'France' Text
+"'" Text
+'s' Text
+' ' Text
+'oldest' Text
+' ' Text
+'WWI' Text
+' ' Text
+'veteran' Text
+' ' Text
+'dies' Text
+' ' Text
+'|' Punctuation
+'work' Name.Label
+'=' Operator
+'BBC' Text
+' ' Text
+'News' Text
+' ' Text
+'|' Punctuation
+'location' Name.Label
+'=' Operator
+'London' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'news' Text
+'.' Text
+'bbc' Text
+'.' Text
+'co' Text
+'.' Text
+'uk' Text
+'/' Text
+'2' Text
+'/' Text
+'hi' Text
+'/' Text
+'europe' Text
+'/' Text
+'7199127' Text
+'.' Text
+'stm' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'\n' Text
+
+'[[' Punctuation
+'File' Name.Namespace
+':' Punctuation
+'El 114 de infantería, en París, el 14 de julio de 1917, León Gimpel.jpg' Name.Tag
+'|' Punctuation
+'thumb' Text
+'|' Punctuation
+'left' Text
+'|' Punctuation
+'French' Text
+' ' Text
+'[[' Punctuation
+'Poilus' Name.Tag
+']]' Punctuation
+' ' Text
+'posing' Text
+' ' Text
+'with' Text
+' ' Text
+'their' Text
+' ' Text
+'war' Text
+'-' Text
+'torn' Text
+' ' Text
+'flag' Text
+' ' Text
+'in' Text
+' ' Text
+'1917' Text
+',' Text
+' ' Text
+'during' Text
+' ' Text
+'World' Text
+' ' Text
+'War' Text
+' ' Text
+'I' Text
+']]' Punctuation
+'\n' Text
+
+'Between' Text
+' ' Text
+'27' Text
+' ' Text
+'and' Text
+' ' Text
+'30' Text
+'%' Text
+' ' Text
+'of' Text
+' ' Text
+'soldiers' Text
+' ' Text
+'conscripted' Text
+' ' Text
+'from' Text
+' ' Text
+'1912' Text
+' ' Text
+'to' Text
+' ' Text
+'1915' Text
+' ' Text
+'were' Text
+' ' Text
+'killed' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'Spencer' Text
+' ' Text
+'C' Text
+'.' Text
+' ' Text
+'Tucker' Text
+',' Text
+' ' Text
+'Priscilla' Text
+' ' Text
+'Mary' Text
+' ' Text
+'Roberts' Text
+' ' Text
+'(' Text
+'2005' Text
+')' Text
+'.' Text
+' ' Text
+"''" Generic.Emph
+'[' Punctuation
+'https://books.google.com/books?id=2YqjfHLyyj8C&pg=PR25' Name.Label
+' ' Text.Whitespace
+'Encyclopedia' Text
+' ' Text
+'Of' Text
+' ' Text
+'World' Text
+' ' Text
+'War' Text
+' ' Text
+'I' Text
+':' Text
+' ' Text
+'A' Text
+' ' Text
+'Political' Text
+',' Text
+' ' Text
+'Social' Text
+',' Text
+' ' Text
+'And' Text
+' ' Text
+'Military' Text
+' ' Text
+'History' Text
+']' Punctuation
+"''" Generic.Emph
+'.' Text
+' ' Text
+'ABC' Text
+'-' Text
+'CLIO' Text
+'.' Text
+' ' Text
+'{{' Punctuation
+'ISBN' Name.Tag
+'|' Punctuation
+'978' Text
+'-' Text
+'1' Text
+'-' Text
+'85109' Text
+'-' Text
+'420' Text
+'-' Text
+'2' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'The' Text
+' ' Text
+'interbellum' Text
+' ' Text
+'years' Text
+' ' Text
+'were' Text
+' ' Text
+'marked' Text
+' ' Text
+'by' Text
+' ' Text
+'[[' Punctuation
+'Events preceding World War II in Europe' Name.Tag
+'|' Punctuation
+'intense' Text
+' ' Text
+'international' Text
+' ' Text
+'tensions' Text
+']]' Punctuation
+' ' Text
+'and' Text
+' ' Text
+'a' Text
+' ' Text
+'variety' Text
+' ' Text
+'of' Text
+' ' Text
+'social' Text
+' ' Text
+'reforms' Text
+' ' Text
+'introduced' Text
+' ' Text
+'by' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Popular Front (France)' Name.Tag
+'|' Punctuation
+'Popular' Text
+' ' Text
+'Front' Text
+' ' Text
+'government' Text
+']]' Punctuation
+' ' Text
+'(' Text
+'[[' Punctuation
+'annual leave' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'[[' Punctuation
+'Eight-hour day' Name.Tag
+'|' Punctuation
+'eight' Text
+'-' Text
+'hour' Text
+' ' Text
+'workdays' Text
+']]' Punctuation
+',' Text
+' ' Text
+'[[' Punctuation
+'women in government' Name.Tag
+']]' Punctuation
+')' Text
+'.' Text
+'\n' Text
+
+'\n' Text
+
+'In' Text
+' ' Text
+'1940' Text
+',' Text
+' ' Text
+'France' Text
+' ' Text
+'was' Text
+' ' Text
+'[[' Punctuation
+'Battle of France' Name.Tag
+'|' Punctuation
+'invaded' Text
+' ' Text
+'and' Text
+' ' Text
+'quickly' Text
+' ' Text
+'defeated' Text
+']]' Punctuation
+' ' Text
+'by' Text
+' ' Text
+'[[' Punctuation
+'Nazi Germany' Name.Tag
+']]' Punctuation
+'.' Text
+' ' Text
+'France' Text
+' ' Text
+'was' Text
+' ' Text
+'divided' Text
+' ' Text
+'into' Text
+' ' Text
+'a' Text
+' ' Text
+'[[' Punctuation
+'German military administration in occupied France during World War II' Name.Tag
+'|' Punctuation
+'German' Text
+' ' Text
+'occupation' Text
+' ' Text
+'zone' Text
+']]' Punctuation
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'north' Text
+',' Text
+' ' Text
+'an' Text
+' ' Text
+'[[' Punctuation
+'Italian occupation of France' Name.Tag
+'|' Punctuation
+'Italian' Text
+' ' Text
+'occupation' Text
+' ' Text
+'zone' Text
+']]' Punctuation
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'southeast' Text
+' ' Text
+'and' Text
+' ' Text
+'an' Text
+' ' Text
+'unoccupied' Text
+' ' Text
+'territory' Text
+',' Text
+' ' Text
+'the' Text
+' ' Text
+'rest' Text
+' ' Text
+'of' Text
+' ' Text
+'France' Text
+',' Text
+' ' Text
+'which' Text
+' ' Text
+'consisted' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'southern' Text
+' ' Text
+'French' Text
+' ' Text
+'metropolitan' Text
+' ' Text
+'territory' Text
+' ' Text
+'(' Text
+'two' Text
+'-' Text
+'fifths' Text
+' ' Text
+'of' Text
+' ' Text
+'pre' Text
+'-' Text
+'war' Text
+' ' Text
+'metropolitan' Text
+' ' Text
+'France' Text
+')' Text
+' ' Text
+'and' Text
+' ' Text
+'the' Text
+' ' Text
+'French' Text
+' ' Text
+'empire' Text
+',' Text
+' ' Text
+'which' Text
+' ' Text
+'included' Text
+' ' Text
+'the' Text
+' ' Text
+'two' Text
+' ' Text
+'protectorates' Text
+' ' Text
+'of' Text
+' ' Text
+'French' Text
+' ' Text
+'Tunisia' Text
+' ' Text
+'and' Text
+' ' Text
+'French' Text
+' ' Text
+'Morocco' Text
+',' Text
+' ' Text
+'and' Text
+' ' Text
+'French' Text
+' ' Text
+'Algeria' Text
+';' Text
+' ' Text
+'the' Text
+' ' Text
+'Vichy' Text
+' ' Text
+'government' Text
+',' Text
+' ' Text
+'a' Text
+' ' Text
+'newly' Text
+' ' Text
+'established' Text
+' ' Text
+'authoritarian' Text
+' ' Text
+'regime' Text
+' ' Text
+'collaborating' Text
+' ' Text
+'with' Text
+' ' Text
+'Germany' Text
+',' Text
+' ' Text
+'ruled' Text
+' ' Text
+'the' Text
+' ' Text
+'unoccupied' Text
+' ' Text
+'territory' Text
+'.' Text
+' ' Text
+'Free' Text
+' ' Text
+'France' Text
+',' Text
+' ' Text
+'the' Text
+' ' Text
+'government' Text
+'-' Text
+'in' Text
+'-' Text
+'exile' Text
+' ' Text
+'led' Text
+' ' Text
+'by' Text
+'&nbsp;' Name.Entity
+'Charles' Text
+' ' Text
+'de' Text
+' ' Text
+'Gaulle' Text
+',' Text
+' ' Text
+'was' Text
+' ' Text
+'set' Text
+' ' Text
+'up' Text
+' ' Text
+'in' Text
+' ' Text
+'London' Text
+'.' Text
+'{{' Punctuation
+'Full' Name.Tag
+' ' Name.Tag
+'citation' Name.Tag
+' ' Name.Tag
+'needed' Name.Tag
+'|' Punctuation
+'date' Name.Label
+'=' Operator
+'August' Text
+' ' Text
+'2021' Text
+'}}' Punctuation
+'\n' Text
+
+'\n' Text
+
+'From' Text
+' ' Text
+'1942' Text
+' ' Text
+'to' Text
+' ' Text
+'1944' Text
+',' Text
+' ' Text
+'about' Text
+' ' Text
+'160' Text
+',' Text
+'000' Text
+' ' Text
+'French' Text
+' ' Text
+'citizens' Text
+',' Text
+' ' Text
+'including' Text
+' ' Text
+'around' Text
+' ' Text
+'[[' Punctuation
+'The Holocaust in France' Name.Tag
+'|' Punctuation
+'75' Text
+',' Text
+'000' Text
+' ' Text
+'Jews' Text
+']]' Punctuation
+',' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'The' Text
+' ' Text
+'Danish' Text
+' ' Text
+'Center' Text
+' ' Text
+'for' Text
+' ' Text
+'Holocaust' Text
+' ' Text
+'and' Text
+' ' Text
+'Genocide' Text
+' ' Text
+'Studies' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'holocaust' Text
+'-' Text
+'education' Text
+'.' Text
+'dk' Text
+'/' Text
+'holocaust' Text
+'/' Text
+'deportationer' Text
+'.' Text
+'asp' Text
+' ' Text
+'|' Punctuation
+'url-status' Name.Label
+'=' Operator
+'dead' Text
+' ' Text
+'|' Punctuation
+'archive-url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'web' Text
+'.' Text
+'archive' Text
+'.' Text
+'org' Text
+'/' Text
+'web' Text
+'/' Text
+'20140416061232' Text
+'/' Text
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'holocaust' Text
+'-' Text
+'education' Text
+'.' Text
+'dk' Text
+'/' Text
+'holocaust' Text
+'/' Text
+'deportationer' Text
+'.' Text
+'asp' Text
+' ' Text
+'|' Punctuation
+'archive-date' Name.Label
+'=' Operator
+'16' Text
+' ' Text
+'April' Text
+' ' Text
+'2014' Text
+'}}' Punctuation
+';' Text
+' ' Text
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'bbc' Text
+'.' Text
+'co' Text
+'.' Text
+'uk' Text
+'/' Text
+'history' Text
+'/' Text
+'worldwars' Text
+'/' Text
+'genocide' Text
+'/' Text
+'jewish_deportation_01' Text
+'.' Text
+'shtml' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'BBC' Text
+' ' Text
+'–' Text
+' ' Text
+'History' Text
+' ' Text
+'–' Text
+' ' Text
+'World' Text
+' ' Text
+'Wars' Text
+':' Text
+' ' Text
+'The' Text
+' ' Text
+'Vichy' Text
+' ' Text
+'Policy' Text
+' ' Text
+'on' Text
+' ' Text
+'Jewish' Text
+' ' Text
+'Deportation' Text
+'|' Punctuation
+'website' Name.Label
+'=' Operator
+'bbc' Text
+'.' Text
+'co' Text
+'.' Text
+'uk' Text
+'}}' Punctuation
+';' Text
+' ' Text
+'France' Text
+',' Text
+' ' Text
+'United' Text
+' ' Text
+'States' Text
+' ' Text
+'Holocaust' Text
+' ' Text
+'Memorial' Text
+' ' Text
+'Museum' Text
+',' Text
+' ' Text
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'ushmm' Text
+'.' Text
+'org' Text
+'/' Text
+'wlc' Text
+'/' Text
+'en' Text
+'/' Text
+'article' Text
+'.' Text
+'php' Text
+'?' Text
+'ModuleId' Text
+'=' Text
+'10005429' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'France' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'16' Text
+' ' Text
+'October' Text
+' ' Text
+'2014' Text
+'|' Punctuation
+'url-status' Name.Label
+'=' Operator
+'dead' Text
+'|' Punctuation
+'archive-url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'web' Text
+'.' Text
+'archive' Text
+'.' Text
+'org' Text
+'/' Text
+'web' Text
+'/' Text
+'20141206075910' Text
+'/' Text
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'ushmm' Text
+'.' Text
+'org' Text
+'/' Text
+'wlc' Text
+'/' Text
+'en' Text
+'/' Text
+'article' Text
+'.' Text
+'php' Text
+'?' Text
+'ModuleId' Text
+'=' Text
+'10005429' Text
+'|' Punctuation
+'archive-date' Name.Label
+'=' Operator
+'6' Text
+' ' Text
+'December' Text
+' ' Text
+'2014' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'were' Text
+' ' Text
+'deported' Text
+' ' Text
+'to' Text
+' ' Text
+'[[' Punctuation
+'extermination camps' Name.Tag
+'|' Punctuation
+'death' Text
+' ' Text
+'camps' Text
+']]' Punctuation
+' ' Text
+'and' Text
+' ' Text
+'[[' Punctuation
+'concentration camps' Name.Tag
+']]' Punctuation
+' ' Text
+'in' Text
+' ' Text
+'Germany' Text
+' ' Text
+'and' Text
+' ' Text
+'occupied' Text
+' ' Text
+'Poland' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'Noir' Text
+' ' Text
+'sur' Text
+' ' Text
+'Blanc' Text
+':' Text
+' ' Text
+'Les' Text
+' ' Text
+'premières' Text
+' ' Text
+'photos' Text
+' ' Text
+'du' Text
+' ' Text
+'camp' Text
+' ' Text
+'de' Text
+' ' Text
+'concentration' Text
+'\n' Text
+
+'de' Text
+' ' Text
+'Buchenwald' Text
+' ' Text
+'après' Text
+' ' Text
+'la' Text
+' ' Text
+'libération' Text
+',' Text
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Archived' Text
+' ' Text
+'copy' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'ain' Text
+'.' Text
+'fr' Text
+'/' Text
+'upload' Text
+'/' Text
+'docs' Text
+'/' Text
+'application' Text
+'/' Text
+'pdf' Text
+'/' Text
+'2011' Text
+'-' Text
+'05' Text
+'/' Text
+'dp_expo_schwartz_auf_weiss_nantua_2011bd' Text
+'.' Text
+'pdf' Text
+' ' Text
+'|' Punctuation
+'url-status' Name.Label
+'=' Operator
+'dead' Text
+' ' Text
+'|' Punctuation
+'archive-url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'web' Text
+'.' Text
+'archive' Text
+'.' Text
+'org' Text
+'/' Text
+'web' Text
+'/' Text
+'20141109055804' Text
+'/' Text
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'ain' Text
+'.' Text
+'fr' Text
+'/' Text
+'upload' Text
+'/' Text
+'docs' Text
+'/' Text
+'application' Text
+'/' Text
+'pdf' Text
+'/' Text
+'2011' Text
+'-' Text
+'05' Text
+'/' Text
+'dp_expo_schwartz_auf_weiss_nantua_2011bd' Text
+'.' Text
+'pdf' Text
+' ' Text
+'|' Punctuation
+'archive-date' Name.Label
+'=' Operator
+'9' Text
+' ' Text
+'November' Text
+' ' Text
+'2014' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'14' Text
+' ' Text
+'October' Text
+' ' Text
+'2014' Text
+'}}' Punctuation
+' ' Text
+'(' Text
+'French' Text
+')' Text
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'In' Text
+' ' Text
+'September' Text
+' ' Text
+'1943' Text
+',' Text
+' ' Text
+'[[' Punctuation
+'Corsica' Name.Tag
+']]' Punctuation
+' ' Text
+'was' Text
+' ' Text
+'the' Text
+' ' Text
+'first' Text
+' ' Text
+'French' Text
+' ' Text
+'metropolitan' Text
+' ' Text
+'territory' Text
+' ' Text
+'to' Text
+' ' Text
+'liberate' Text
+' ' Text
+'itself' Text
+' ' Text
+'from' Text
+' ' Text
+'the' Text
+' ' Text
+'Axis' Text
+'.' Text
+' ' Text
+'On' Text
+' ' Text
+'6' Text
+' ' Text
+'June' Text
+' ' Text
+'1944' Text
+',' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Allies of World War II' Name.Tag
+'|' Punctuation
+'Allies' Text
+']]' Punctuation
+' ' Text
+'[[' Punctuation
+'Invasion of Normandy' Name.Tag
+'|' Punctuation
+'invaded' Text
+' ' Text
+'Normandy' Text
+']]' Punctuation
+' ' Text
+'and' Text
+' ' Text
+'in' Text
+' ' Text
+'August' Text
+' ' Text
+'they' Text
+' ' Text
+'[[' Punctuation
+'Operation Dragoon' Name.Tag
+'|' Punctuation
+'invaded' Text
+' ' Text
+'Provence' Text
+']]' Punctuation
+'.' Text
+' ' Text
+'Over' Text
+' ' Text
+'the' Text
+' ' Text
+'following' Text
+' ' Text
+'year' Text
+',' Text
+' ' Text
+'the' Text
+' ' Text
+'Allies' Text
+' ' Text
+'and' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'French Resistance' Name.Tag
+']]' Punctuation
+' ' Text
+'emerged' Text
+' ' Text
+'victorious' Text
+' ' Text
+'over' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Axis powers' Name.Tag
+']]' Punctuation
+' ' Text
+'and' Text
+' ' Text
+'French' Text
+' ' Text
+'sovereignty' Text
+' ' Text
+'was' Text
+' ' Text
+'restored' Text
+' ' Text
+'with' Text
+' ' Text
+'the' Text
+' ' Text
+'establishment' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Provisional Government of the French Republic' Name.Tag
+']]' Punctuation
+' ' Text
+'(' Text
+'GPRF' Text
+')' Text
+'.' Text
+' ' Text
+'This' Text
+' ' Text
+'interim' Text
+' ' Text
+'government' Text
+',' Text
+' ' Text
+'established' Text
+' ' Text
+'by' Text
+' ' Text
+'de' Text
+' ' Text
+'Gaulle' Text
+',' Text
+' ' Text
+'aimed' Text
+' ' Text
+'to' Text
+' ' Text
+'continue' Text
+' ' Text
+'to' Text
+' ' Text
+'[[' Punctuation
+'Western Allied invasion of Germany' Name.Tag
+'|' Punctuation
+'wage' Text
+' ' Text
+'war' Text
+' ' Text
+'against' Text
+' ' Text
+'Germany' Text
+']]' Punctuation
+' ' Text
+'and' Text
+' ' Text
+'to' Text
+' ' Text
+'[[' Punctuation
+'Épuration légale' Name.Tag
+'|' Punctuation
+'purge' Text
+' ' Text
+'collaborators' Text
+' ' Text
+'from' Text
+' ' Text
+'office' Text
+']]' Punctuation
+'.' Text
+' ' Text
+'It' Text
+' ' Text
+'also' Text
+' ' Text
+'made' Text
+' ' Text
+'several' Text
+' ' Text
+'important' Text
+' ' Text
+'reforms' Text
+' ' Text
+'(' Text
+'suffrage' Text
+' ' Text
+'extended' Text
+' ' Text
+'to' Text
+' ' Text
+'women' Text
+',' Text
+' ' Text
+'the' Text
+' ' Text
+'creation' Text
+' ' Text
+'of' Text
+' ' Text
+'a' Text
+' ' Text
+'[[' Punctuation
+'Social security in France' Name.Tag
+'|' Punctuation
+'social' Text
+' ' Text
+'security' Text
+']]' Punctuation
+' ' Text
+'system' Text
+')' Text
+'.' Text
+'\n' Text
+
+'\n' Text
+
+'===' Generic.Subheading
+'Contemporary period (1946–present)' Generic.Subheading
+'===' Generic.Subheading
+'\n' Text.Whitespace
+
+'[[' Punctuation
+'File' Name.Namespace
+':' Punctuation
+'De Gaulle-OWI.jpg' Name.Tag
+'|' Punctuation
+'thumb' Text
+'|' Punctuation
+'upright' Text
+'|' Punctuation
+'alt' Name.Attribute
+'=' Operator
+'Charles' Text
+' ' Text
+'de' Text
+' ' Text
+'Gaulle' Text
+' ' Text
+'seated' Text
+' ' Text
+'in' Text
+' ' Text
+'uniform' Text
+' ' Text
+'looking' Text
+' ' Text
+'left' Text
+' ' Text
+'with' Text
+' ' Text
+'folded' Text
+' ' Text
+'arms' Text
+'|' Punctuation
+'[[' Punctuation
+'Charles de Gaulle' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'a' Text
+' ' Text
+'hero' Text
+' ' Text
+'of' Text
+' ' Text
+'World' Text
+' ' Text
+'War' Text
+' ' Text
+'I' Text
+',' Text
+' ' Text
+'leader' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Free French Forces' Name.Tag
+'|' Punctuation
+'Free' Text
+' ' Text
+'French' Text
+']]' Punctuation
+' ' Text
+'during' Text
+' ' Text
+'[[' Punctuation
+'World War II' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'and' Text
+' ' Text
+'[[' Punctuation
+'President of France' Name.Tag
+']]' Punctuation
+']]' Punctuation
+'\n' Text
+
+'The' Text
+' ' Text
+'GPRF' Text
+' ' Text
+'laid' Text
+' ' Text
+'the' Text
+' ' Text
+'groundwork' Text
+' ' Text
+'for' Text
+' ' Text
+'a' Text
+' ' Text
+'new' Text
+' ' Text
+'constitutional' Text
+' ' Text
+'order' Text
+' ' Text
+'that' Text
+' ' Text
+'resulted' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'French Fourth Republic' Name.Tag
+'|' Punctuation
+'Fourth' Text
+' ' Text
+'Republic' Text
+']]' Punctuation
+' ' Text
+'(' Text
+'1946' Text
+'–' Text
+'1958' Text
+')' Text
+',' Text
+' ' Text
+'which' Text
+' ' Text
+'saw' Text
+' ' Text
+'spectacular' Text
+' ' Text
+'economic' Text
+' ' Text
+'growth' Text
+' ' Text
+'(' Text
+"''" Generic.Emph
+'les' Generic.Emph
+' ' Generic.Emph
+'[[' Punctuation
+'Trente Glorieuses' Name.Tag
+']]' Punctuation
+"''" Generic.Emph
+')' Text
+'.' Text
+' ' Text
+'France' Text
+' ' Text
+'was' Text
+' ' Text
+'one' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'founding' Text
+' ' Text
+'members' Text
+' ' Text
+'of' Text
+' ' Text
+'[[' Punctuation
+'NATO' Name.Tag
+']]' Punctuation
+' ' Text
+'(' Text
+'1949' Text
+')' Text
+'.' Text
+' ' Text
+'France' Text
+' ' Text
+'attempted' Text
+' ' Text
+'to' Text
+' ' Text
+'[[' Punctuation
+'First Indochina War' Name.Tag
+'|' Punctuation
+'regain' Text
+' ' Text
+'control' Text
+' ' Text
+'of' Text
+' ' Text
+'French' Text
+' ' Text
+'Indochina' Text
+']]' Punctuation
+' ' Text
+'but' Text
+' ' Text
+'was' Text
+' ' Text
+'defeated' Text
+' ' Text
+'by' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Viet Minh' Name.Tag
+']]' Punctuation
+' ' Text
+'in' Text
+' ' Text
+'1954' Text
+' ' Text
+'at' Text
+' ' Text
+'the' Text
+' ' Text
+'climactic' Text
+' ' Text
+'[[' Punctuation
+'Battle of Dien Bien Phu' Name.Tag
+']]' Punctuation
+'.' Text
+' ' Text
+'Only' Text
+' ' Text
+'months' Text
+' ' Text
+'later' Text
+',' Text
+' ' Text
+'France' Text
+' ' Text
+'faced' Text
+' ' Text
+'another' Text
+' ' Text
+'[[' Punctuation
+'anti-colonialist' Name.Tag
+']]' Punctuation
+' ' Text
+'[[' Punctuation
+'Algerian War' Name.Tag
+'|' Punctuation
+'conflict' Text
+' ' Text
+'in' Text
+' ' Text
+'Algeria' Text
+']]' Punctuation
+',' Text
+' ' Text
+'then' Text
+' ' Text
+'treated' Text
+' ' Text
+'as' Text
+' ' Text
+'an' Text
+' ' Text
+'integral' Text
+' ' Text
+'part' Text
+' ' Text
+'of' Text
+' ' Text
+'France' Text
+' ' Text
+'and' Text
+' ' Text
+'home' Text
+' ' Text
+'to' Text
+' ' Text
+'over' Text
+' ' Text
+'one' Text
+' ' Text
+'million' Text
+' ' Text
+'[[' Punctuation
+'Pied-Noir' Name.Tag
+'|' Punctuation
+'European' Text
+' ' Text
+'settlers' Text
+']]' Punctuation
+'.' Text
+' ' Text
+'During' Text
+' ' Text
+'the' Text
+' ' Text
+'conflict' Text
+',' Text
+' ' Text
+'the' Text
+' ' Text
+'French' Text
+' ' Text
+'systematically' Text
+' ' Text
+'used' Text
+' ' Text
+'torture' Text
+' ' Text
+'and' Text
+' ' Text
+'repression' Text
+',' Text
+' ' Text
+'including' Text
+' ' Text
+'extrajudicial' Text
+' ' Text
+'killings' Text
+' ' Text
+'to' Text
+' ' Text
+'keep' Text
+' ' Text
+'control' Text
+' ' Text
+'of' Text
+' ' Text
+'[[' Punctuation
+'French Algeria' Name.Tag
+'|' Punctuation
+'Algeria' Text
+']]' Punctuation
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+' ' Text.Whitespace
+'name' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+'Macqueen2014' Literal.String.Double
+'"' Literal.String.Double
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'book' Name.Tag
+' ' Text
+'|' Punctuation
+'last' Name.Label
+'=' Operator
+'Norrie' Text
+' ' Text
+'Macqueen' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'books' Text
+'.' Text
+'google' Text
+'.' Text
+'com' Text
+'/' Text
+'books' Text
+'?' Text
+'id' Text
+'=' Text
+'g1YSBAAAQBAJ' Text
+'&' Text
+'pg' Text
+'=' Text
+'PA131' Text
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Colonialism' Text
+' ' Text
+'|' Punctuation
+'date' Name.Label
+'=' Operator
+'22' Text
+' ' Text
+'July' Text
+' ' Text
+'2014' Text
+' ' Text
+'|' Punctuation
+'publisher' Name.Label
+'=' Operator
+'Routledge' Text
+' ' Text
+'|' Punctuation
+'isbn' Name.Label
+'=' Operator
+'978' Text
+'-' Text
+'1' Text
+'-' Text
+'317' Text
+'-' Text
+'86480' Text
+'-' Text
+'6' Text
+' ' Text
+'|' Punctuation
+'page' Name.Label
+'=' Operator
+'131' Text
+'}}' Punctuation
+';' Text
+' ' Text
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'news' Name.Tag
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'In' Text
+' ' Text
+'France' Text
+',' Text
+' ' Text
+'a' Text
+' ' Text
+'War' Text
+' ' Text
+'of' Text
+' ' Text
+'Memories' Text
+' ' Text
+'Over' Text
+' ' Text
+'Memories' Text
+' ' Text
+'of' Text
+' ' Text
+'War' Text
+'|' Punctuation
+'first' Name.Label
+'=' Operator
+'Michael' Text
+'|' Punctuation
+'last' Name.Label
+'=' Operator
+'Kimmelman' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'nytimes' Text
+'.' Text
+'com' Text
+'/' Text
+'2009' Text
+'/' Text
+'03' Text
+'/' Text
+'05' Text
+'/' Text
+'arts' Text
+'/' Text
+'design' Text
+'/' Text
+'05abroad' Text
+'.' Text
+'html' Text
+'|' Punctuation
+'newspaper' Name.Label
+'=' Operator
+'The' Text
+' ' Text
+'New' Text
+' ' Text
+'York' Text
+' ' Text
+'Times' Text
+'|' Punctuation
+'date' Name.Label
+'=' Operator
+'4' Text
+' ' Text
+'March' Text
+' ' Text
+'2009' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'\n' Text
+
+'This' Text
+' ' Text
+'conflict' Text
+' ' Text
+'wracked' Text
+' ' Text
+'the' Text
+' ' Text
+'country' Text
+' ' Text
+'and' Text
+' ' Text
+'nearly' Text
+' ' Text
+'led' Text
+' ' Text
+'to' Text
+' ' Text
+'a' Text
+' ' Text
+'coup' Text
+' ' Text
+'and' Text
+' ' Text
+'civil' Text
+' ' Text
+'war' Text
+' ' Text
+'in' Text
+' ' Text
+'France' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'journal' Name.Tag
+' ' Text
+'|' Punctuation
+'last1' Name.Label
+'=' Operator
+'Crozier' Text
+' ' Text
+'|' Punctuation
+'first1' Name.Label
+'=' Operator
+'Brian' Text
+' ' Text
+'|' Punctuation
+'last2' Name.Label
+'=' Operator
+'Mansell' Text
+',' Text
+' ' Text
+'Gerard' Text
+' ' Text
+'|' Punctuation
+'date' Name.Label
+'=' Operator
+'July' Text
+' ' Text
+'1960' Text
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'France' Text
+' ' Text
+'and' Text
+' ' Text
+'Algeria' Text
+' ' Text
+'|' Punctuation
+'journal' Name.Label
+'=' Operator
+'[[' Punctuation
+'International Affairs (journal)' Name.Tag
+'|' Punctuation
+'International' Text
+' ' Text
+'Affairs' Text
+']]' Punctuation
+' ' Text
+'|' Punctuation
+'volume' Name.Label
+'=' Operator
+'36' Text
+' ' Text
+'|' Punctuation
+'issue' Name.Label
+'=' Operator
+'3' Text
+' ' Text
+'|' Punctuation
+'pages' Name.Label
+'=' Operator
+'310' Text
+'–' Text
+'321' Text
+' ' Text
+'|' Punctuation
+'doi' Name.Label
+'=' Operator
+'10' Text
+'.' Text
+'2307' Text
+'/' Text
+'2610008' Text
+' ' Text
+'|' Punctuation
+'jstor' Name.Label
+'=' Operator
+'2610008' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'\n' Text
+
+'\n' Text
+
+'During' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'May 1958 crisis in France' Name.Tag
+'|' Punctuation
+'May' Text
+' ' Text
+'1958' Text
+' ' Text
+'crisis' Text
+']]' Punctuation
+',' Text
+' ' Text
+'the' Text
+' ' Text
+'weak' Text
+' ' Text
+'and' Text
+' ' Text
+'unstable' Text
+' ' Text
+'Fourth' Text
+' ' Text
+'Republic' Text
+' ' Text
+'gave' Text
+' ' Text
+'way' Text
+' ' Text
+'to' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'French Fifth Republic' Name.Tag
+'|' Punctuation
+'Fifth' Text
+' ' Text
+'Republic' Text
+']]' Punctuation
+',' Text
+' ' Text
+'which' Text
+' ' Text
+'included' Text
+' ' Text
+'a' Text
+' ' Text
+'strengthened' Text
+' ' Text
+'Presidency' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'From' Text
+' ' Text
+'Fourth' Text
+' ' Text
+'to' Text
+' ' Text
+'Fifth' Text
+' ' Text
+'Republic' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'seacoast' Text
+'.' Text
+'sunderland' Text
+'.' Text
+'ac' Text
+'.' Text
+'uk' Text
+'/' Text
+'~' Text
+'os0tmc' Text
+'/' Text
+'contem' Text
+'/' Text
+'fifth' Text
+'.' Text
+'htm' Text
+' ' Text
+'|' Punctuation
+'url-status' Name.Label
+'=' Operator
+'dead' Text
+' ' Text
+'|' Punctuation
+'archive-url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'web' Text
+'.' Text
+'archive' Text
+'.' Text
+'org' Text
+'/' Text
+'web' Text
+'/' Text
+'20080523234726' Text
+'/' Text
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'seacoast' Text
+'.' Text
+'sunderland' Text
+'.' Text
+'ac' Text
+'.' Text
+'uk' Text
+'/' Text
+'~' Text
+'os0tmc' Text
+'/' Text
+'contem' Text
+'/' Text
+'fifth' Text
+'.' Text
+'htm' Text
+' ' Text
+'|' Punctuation
+'archive-date' Name.Label
+'=' Operator
+'23' Text
+' ' Text
+'May' Text
+' ' Text
+'2008' Text
+' ' Text
+'|' Punctuation
+'publisher' Name.Label
+'=' Operator
+'[[' Punctuation
+'University of Sunderland' Name.Tag
+']]' Punctuation
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'In' Text
+' ' Text
+'the' Text
+' ' Text
+'latter' Text
+' ' Text
+'role' Text
+',' Text
+' ' Text
+'Charles' Text
+' ' Text
+'de' Text
+' ' Text
+'Gaulle' Text
+' ' Text
+'managed' Text
+' ' Text
+'to' Text
+' ' Text
+'keep' Text
+' ' Text
+'the' Text
+' ' Text
+'country' Text
+' ' Text
+'together' Text
+' ' Text
+'while' Text
+' ' Text
+'taking' Text
+' ' Text
+'steps' Text
+' ' Text
+'to' Text
+' ' Text
+'end' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Algerian War' Name.Tag
+']]' Punctuation
+'.' Text
+' ' Text
+'The' Text
+' ' Text
+'war' Text
+' ' Text
+'was' Text
+' ' Text
+'concluded' Text
+' ' Text
+'with' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Évian Accords' Name.Tag
+']]' Punctuation
+' ' Text
+'in' Text
+' ' Text
+'1962' Text
+' ' Text
+'which' Text
+' ' Text
+'led' Text
+' ' Text
+'to' Text
+' ' Text
+'Algerian' Text
+' ' Text
+'independence' Text
+'.' Text
+' ' Text
+'Algerian' Text
+' ' Text
+'independence' Text
+' ' Text
+'came' Text
+' ' Text
+'at' Text
+' ' Text
+'a' Text
+' ' Text
+'high' Text
+' ' Text
+'price' Text
+':' Text
+' ' Text
+'it' Text
+' ' Text
+'resulted' Text
+' ' Text
+'in' Text
+' ' Text
+'between' Text
+' ' Text
+'half' Text
+' ' Text
+'a' Text
+' ' Text
+'million' Text
+' ' Text
+'and' Text
+' ' Text
+'one' Text
+' ' Text
+'million' Text
+' ' Text
+'deaths' Text
+' ' Text
+'and' Text
+' ' Text
+'over' Text
+' ' Text
+'2' Text
+'&nbsp;' Name.Entity
+'million' Text
+' ' Text
+'internally' Text
+' ' Text
+'displaced' Text
+' ' Text
+'Algerians' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+' ' Text.Whitespace
+'name' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+'Springer' Literal.String.Double
+'"' Literal.String.Double
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'book' Name.Tag
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'A' Text
+' ' Text
+'New' Text
+' ' Text
+'Paradigm' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'African' Text
+' ' Text
+'State' Text
+':' Text
+' ' Text
+'Fundi' Text
+' ' Text
+'wa' Text
+' ' Text
+'Afrika' Text
+' ' Text
+'|' Punctuation
+'date' Name.Label
+'=' Operator
+'2009' Text
+' ' Text
+'|' Punctuation
+'publisher' Name.Label
+'=' Operator
+'Springer' Text
+' ' Text
+'|' Punctuation
+'page' Name.Label
+'=' Operator
+'75' Text
+'}}' Punctuation
+';' Text
+' ' Text
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'book' Name.Tag
+'|' Punctuation
+'author' Name.Label
+'=' Operator
+'David' Text
+' ' Text
+'P' Text
+' ' Text
+'Forsythe' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Encyclopedia' Text
+' ' Text
+'of' Text
+' ' Text
+'Human' Text
+' ' Text
+'Rights' Text
+'|' Punctuation
+'date' Name.Label
+'=' Operator
+'27' Text
+' ' Text
+'August' Text
+' ' Text
+'2009' Text
+'|' Punctuation
+'publisher' Name.Label
+'=' Operator
+'OUP' Text
+' ' Text
+'USA' Text
+'|' Punctuation
+'isbn' Name.Label
+'=' Operator
+'978' Text
+'-' Text
+'0' Text
+'-' Text
+'19' Text
+'-' Text
+'533402' Text
+'-' Text
+'9' Text
+'|' Punctuation
+'page' Name.Label
+'=' Operator
+'[' Punctuation
+'https://books.google.com/books?id=1QbX90fmCVUC&pg=PA37' Name.Label
+' ' Text.Whitespace
+'37' Text
+']' Punctuation
+'}}' Punctuation
+';' Text
+' ' Text
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'book' Name.Tag
+'|' Punctuation
+'author' Name.Label
+'=' Operator
+'Elizabeth' Text
+' ' Text
+'Schmidt' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Foreign' Text
+' ' Text
+'Intervention' Text
+' ' Text
+'in' Text
+' ' Text
+'Africa' Text
+':' Text
+' ' Text
+'From' Text
+' ' Text
+'the' Text
+' ' Text
+'Cold' Text
+' ' Text
+'War' Text
+' ' Text
+'to' Text
+' ' Text
+'the' Text
+' ' Text
+'War' Text
+' ' Text
+'on' Text
+' ' Text
+'Terror' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'books' Text
+'.' Text
+'google' Text
+'.' Text
+'com' Text
+'/' Text
+'books' Text
+'?' Text
+'id' Text
+'=' Text
+'VCMgAwAAQBAJ' Text
+'&' Text
+'pg' Text
+'=' Text
+'PA46' Text
+'|' Punctuation
+'date' Name.Label
+'=' Operator
+'25' Text
+' ' Text
+'March' Text
+' ' Text
+'2013' Text
+'|' Punctuation
+'publisher' Name.Label
+'=' Operator
+'Cambridge' Text
+' ' Text
+'University' Text
+' ' Text
+'Press' Text
+'|' Punctuation
+'isbn' Name.Label
+'=' Operator
+'978' Text
+'-' Text
+'1' Text
+'-' Text
+'107' Text
+'-' Text
+'31065' Text
+'-' Text
+'0' Text
+'|' Punctuation
+'page' Name.Label
+'=' Operator
+'46' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'Around' Text
+' ' Text
+'one' Text
+' ' Text
+'million' Text
+' ' Text
+'[[' Punctuation
+'Pied-Noir' Name.Tag
+']]' Punctuation
+'s' Text
+' ' Text
+'and' Text
+' ' Text
+'[[' Punctuation
+'Harki' Name.Tag
+']]' Punctuation
+'s' Text
+' ' Text
+'fled' Text
+' ' Text
+'from' Text
+' ' Text
+'Algeria' Text
+' ' Text
+'to' Text
+' ' Text
+'France' Text
+' ' Text
+'upon' Text
+' ' Text
+'independence' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+' ' Text.Whitespace
+'name' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+'google4' Literal.String.Double
+'"' Literal.String.Double
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'book' Name.Tag
+' ' Text
+'|' Punctuation
+'last1' Name.Label
+'=' Operator
+'Cutts' Text
+',' Text
+' ' Text
+'M' Text
+'.' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'books' Text
+'.' Text
+'google' Text
+'.' Text
+'com' Text
+'/' Text
+'books' Text
+'?' Text
+'id' Text
+'=' Text
+'54Oe1WTfBfAC' Text
+'&' Text
+'pg' Text
+'=' Text
+'PA38' Text
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'The' Text
+' ' Text
+'State' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'World' Text
+"'" Text
+'s' Text
+' ' Text
+'Refugees' Text
+',' Text
+' ' Text
+'2000' Text
+':' Text
+' ' Text
+'Fifty' Text
+' ' Text
+'Years' Text
+' ' Text
+'of' Text
+' ' Text
+'Humanitarian' Text
+' ' Text
+'Action' Text
+' ' Text
+'|' Punctuation
+'last2' Name.Label
+'=' Operator
+'Office' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'United' Text
+' ' Text
+'Nations' Text
+' ' Text
+'High' Text
+' ' Text
+'Commissioner' Text
+' ' Text
+'for' Text
+' ' Text
+'Refugees' Text
+' ' Text
+'|' Punctuation
+'date' Name.Label
+'=' Operator
+'2000' Text
+' ' Text
+'|' Punctuation
+'publisher' Name.Label
+'=' Operator
+'Oxford' Text
+' ' Text
+'University' Text
+' ' Text
+'Press' Text
+' ' Text
+'|' Punctuation
+'isbn' Name.Label
+'=' Operator
+'9780199241040' Text
+' ' Text
+'|' Punctuation
+'page' Name.Label
+'=' Operator
+'38' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'2017' Text
+'-' Text
+'01' Text
+'-' Text
+'13' Text
+'}}' Punctuation
+' ' Text
+'Referring' Text
+' ' Text
+'to' Text
+' ' Text
+'Evans' Text
+',' Text
+' ' Text
+'Martin' Text
+'.' Text
+' ' Text
+'2012' Text
+'.' Text
+' ' Text
+"''" Generic.Emph
+'Algeria' Generic.Emph
+':' Generic.Emph
+' ' Generic.Emph
+'France' Generic.Emph
+"'" Generic.Emph
+'s' Generic.Emph
+' ' Generic.Emph
+'Undeclared' Generic.Emph
+' ' Generic.Emph
+'War' Generic.Emph
+"''" Generic.Emph
+'.' Text
+' ' Text
+'New' Text
+' ' Text
+'York' Text
+':' Text
+' ' Text
+'Oxford' Text
+' ' Text
+'University' Text
+' ' Text
+'Press' Text
+'.' Text
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'A' Text
+' ' Text
+'vestige' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'colonial' Text
+' ' Text
+'empire' Text
+' ' Text
+'are' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Overseas France' Name.Tag
+'|' Punctuation
+'French' Text
+' ' Text
+'overseas' Text
+' ' Text
+'departments' Text
+' ' Text
+'and' Text
+' ' Text
+'territories' Text
+']]' Punctuation
+'.' Text
+'\n' Text
+
+'\n' Text
+
+'In' Text
+' ' Text
+'the' Text
+' ' Text
+'context' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Cold War' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'De' Text
+' ' Text
+'Gaulle' Text
+' ' Text
+'pursued' Text
+' ' Text
+'a' Text
+' ' Text
+'policy' Text
+' ' Text
+'of' Text
+' ' Text
+'"' Text
+'national' Text
+' ' Text
+'independence' Text
+'"' Text
+' ' Text
+'towards' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Western Bloc' Name.Tag
+'|' Punctuation
+'Western' Text
+']]' Punctuation
+' ' Text
+'and' Text
+' ' Text
+'[[' Punctuation
+'Eastern bloc' Name.Tag
+']]' Punctuation
+'s' Text
+'.' Text
+' ' Text
+'To' Text
+' ' Text
+'this' Text
+' ' Text
+'end' Text
+',' Text
+' ' Text
+'he' Text
+' ' Text
+'withdrew' Text
+' ' Text
+'from' Text
+' ' Text
+'[[' Punctuation
+'NATO' Name.Tag
+']]' Punctuation
+"'" Text
+'s' Text
+' ' Text
+'military' Text
+'-' Text
+'integrated' Text
+' ' Text
+'command' Text
+' ' Text
+'(' Text
+'while' Text
+' ' Text
+'remaining' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'NATO' Text
+' ' Text
+'alliance' Text
+' ' Text
+'itself' Text
+')' Text
+',' Text
+' ' Text
+'launched' Text
+' ' Text
+'a' Text
+' ' Text
+'[[' Punctuation
+'Force de dissuasion' Name.Tag
+'|' Punctuation
+'nuclear' Text
+' ' Text
+'development' Text
+' ' Text
+'programme' Text
+']]' Punctuation
+' ' Text
+'and' Text
+' ' Text
+'made' Text
+' ' Text
+'France' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'France and weapons of mass destruction' Name.Tag
+'|' Punctuation
+'fourth' Text
+' ' Text
+'nuclear' Text
+' ' Text
+'power' Text
+']]' Punctuation
+'.' Text
+' ' Text
+'He' Text
+' ' Text
+'[[' Punctuation
+'Élysée Treaty' Name.Tag
+'|' Punctuation
+'restored' Text
+']]' Punctuation
+' ' Text
+'cordial' Text
+' ' Text
+'[[' Punctuation
+'France–Germany relations' Name.Tag
+'|' Punctuation
+'Franco' Text
+'-' Text
+'German' Text
+' ' Text
+'relations' Text
+']]' Punctuation
+' ' Text
+'to' Text
+' ' Text
+'create' Text
+' ' Text
+'a' Text
+' ' Text
+'European' Text
+' ' Text
+'counterweight' Text
+' ' Text
+'between' Text
+' ' Text
+'the' Text
+' ' Text
+'American' Text
+' ' Text
+'and' Text
+' ' Text
+'Soviet' Text
+' ' Text
+'spheres' Text
+' ' Text
+'of' Text
+' ' Text
+'influence' Text
+'.' Text
+' ' Text
+'However' Text
+',' Text
+' ' Text
+'he' Text
+' ' Text
+'opposed' Text
+' ' Text
+'any' Text
+' ' Text
+'development' Text
+' ' Text
+'of' Text
+' ' Text
+'a' Text
+' ' Text
+'[[' Punctuation
+'Supranational union' Name.Tag
+'|' Punctuation
+'supranational' Text
+' ' Text
+'Europe' Text
+']]' Punctuation
+',' Text
+' ' Text
+'favouring' Text
+' ' Text
+'a' Text
+' ' Text
+'Europe' Text
+' ' Text
+'of' Text
+' ' Text
+'[[' Punctuation
+'Sovereign state' Name.Tag
+'|' Punctuation
+'sovereign' Text
+' ' Text
+'nations' Text
+']]' Punctuation
+'.' Text
+' ' Text
+'In' Text
+' ' Text
+'the' Text
+' ' Text
+'wake' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'series' Text
+' ' Text
+'of' Text
+' ' Text
+'worldwide' Text
+' ' Text
+'[[' Punctuation
+'protests of 1968' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'May 1968 in France' Name.Tag
+'|' Punctuation
+'revolt' Text
+' ' Text
+'of' Text
+' ' Text
+'May' Text
+' ' Text
+'1968' Text
+']]' Punctuation
+' ' Text
+'had' Text
+' ' Text
+'an' Text
+' ' Text
+'enormous' Text
+' ' Text
+'social' Text
+' ' Text
+'impact' Text
+'.' Text
+' ' Text
+'In' Text
+' ' Text
+'France' Text
+',' Text
+' ' Text
+'it' Text
+' ' Text
+'was' Text
+' ' Text
+'the' Text
+' ' Text
+'watershed' Text
+' ' Text
+'moment' Text
+' ' Text
+'when' Text
+' ' Text
+'a' Text
+' ' Text
+'conservative' Text
+' ' Text
+'moral' Text
+' ' Text
+'ideal' Text
+' ' Text
+'(' Text
+'religion' Text
+',' Text
+' ' Text
+'patriotism' Text
+',' Text
+' ' Text
+'respect' Text
+' ' Text
+'for' Text
+' ' Text
+'authority' Text
+')' Text
+' ' Text
+'shifted' Text
+' ' Text
+'towards' Text
+' ' Text
+'a' Text
+' ' Text
+'more' Text
+' ' Text
+'liberal' Text
+' ' Text
+'moral' Text
+' ' Text
+'ideal' Text
+' ' Text
+'(' Text
+'[[' Punctuation
+'secularism' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'[[' Punctuation
+'individualism' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'[[' Punctuation
+'sexual revolution' Name.Tag
+']]' Punctuation
+')' Text
+'.' Text
+' ' Text
+'Although' Text
+' ' Text
+'the' Text
+' ' Text
+'revolt' Text
+' ' Text
+'was' Text
+' ' Text
+'a' Text
+' ' Text
+'political' Text
+' ' Text
+'failure' Text
+' ' Text
+'(' Text
+'as' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Gaullism' Name.Tag
+'|' Punctuation
+'Gaullist' Text
+']]' Punctuation
+' ' Text
+'party' Text
+' ' Text
+'emerged' Text
+' ' Text
+'even' Text
+' ' Text
+'stronger' Text
+' ' Text
+'than' Text
+' ' Text
+'before' Text
+')' Text
+' ' Text
+'it' Text
+' ' Text
+'announced' Text
+' ' Text
+'a' Text
+' ' Text
+'split' Text
+' ' Text
+'between' Text
+' ' Text
+'the' Text
+' ' Text
+'French' Text
+' ' Text
+'people' Text
+' ' Text
+'and' Text
+' ' Text
+'de' Text
+' ' Text
+'Gaulle' Text
+' ' Text
+'who' Text
+' ' Text
+'resigned' Text
+' ' Text
+'shortly' Text
+' ' Text
+'after' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'Julian' Text
+' ' Text
+'Bourg' Text
+',' Text
+' ' Text
+"''" Generic.Emph
+'From' Generic.Emph
+' ' Generic.Emph
+'revolution' Generic.Emph
+' ' Generic.Emph
+'to' Generic.Emph
+' ' Generic.Emph
+'ethics' Generic.Emph
+':' Generic.Emph
+' ' Generic.Emph
+'May' Generic.Emph
+' ' Generic.Emph
+'1968' Generic.Emph
+' ' Generic.Emph
+'and' Generic.Emph
+' ' Generic.Emph
+'contemporary' Generic.Emph
+' ' Generic.Emph
+'French' Generic.Emph
+' ' Generic.Emph
+'thought' Generic.Emph
+"''" Generic.Emph
+' ' Text
+'(' Text
+'McGill' Text
+'-' Text
+'Queen' Text
+"'" Text
+'s' Text
+' ' Text
+'Press' Text
+'-' Text
+'MQUP' Text
+',' Text
+' ' Text
+'2017' Text
+')' Text
+'.' Text
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'\n' Text
+
+'\n' Text
+
+'In' Text
+' ' Text
+'the' Text
+' ' Text
+'post' Text
+'-' Text
+'Gaullist' Text
+' ' Text
+'era' Text
+',' Text
+' ' Text
+'France' Text
+' ' Text
+'remained' Text
+' ' Text
+'one' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'most' Text
+' ' Text
+'developed' Text
+' ' Text
+'[[' Punctuation
+'List of countries by GDP (nominal)' Name.Tag
+'|' Punctuation
+'economies' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'world' Text
+']]' Punctuation
+' ' Text
+'but' Text
+' ' Text
+'faced' Text
+' ' Text
+'several' Text
+' ' Text
+'economic' Text
+' ' Text
+'crises' Text
+' ' Text
+'that' Text
+' ' Text
+'resulted' Text
+' ' Text
+'in' Text
+' ' Text
+'high' Text
+' ' Text
+'unemployment' Text
+' ' Text
+'rates' Text
+' ' Text
+'and' Text
+' ' Text
+'increasing' Text
+' ' Text
+'public' Text
+' ' Text
+'debt' Text
+'.' Text
+' ' Text
+'In' Text
+' ' Text
+'the' Text
+' ' Text
+'late' Text
+' ' Text
+'20th' Text
+' ' Text
+'and' Text
+' ' Text
+'early' Text
+' ' Text
+'21st' Text
+' ' Text
+'centuries' Text
+',' Text
+' ' Text
+'France' Text
+' ' Text
+'has' Text
+' ' Text
+'been' Text
+' ' Text
+'at' Text
+' ' Text
+'the' Text
+' ' Text
+'forefront' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'development' Text
+' ' Text
+'of' Text
+' ' Text
+'a' Text
+' ' Text
+'supranational' Text
+' ' Text
+'[[' Punctuation
+'European Union' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'notably' Text
+' ' Text
+'by' Text
+' ' Text
+'signing' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Maastricht Treaty' Name.Tag
+']]' Punctuation
+' ' Text
+'(' Text
+'which' Text
+' ' Text
+'created' Text
+' ' Text
+'the' Text
+' ' Text
+'European' Text
+' ' Text
+'Union' Text
+')' Text
+' ' Text
+'in' Text
+' ' Text
+'1992' Text
+',' Text
+' ' Text
+'establishing' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Eurozone' Name.Tag
+']]' Punctuation
+' ' Text
+'in' Text
+' ' Text
+'1999' Text
+' ' Text
+'and' Text
+' ' Text
+'signing' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Treaty of Lisbon' Name.Tag
+'|' Punctuation
+'Lisbon' Text
+' ' Text
+'Treaty' Text
+']]' Punctuation
+' ' Text
+'in' Text
+' ' Text
+'2007' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Declaration' Text
+' ' Text
+'by' Text
+' ' Text
+'the' Text
+' ' Text
+'Franco' Text
+'-' Text
+'German' Text
+' ' Text
+'Defense' Text
+' ' Text
+'and' Text
+' ' Text
+'Security' Text
+' ' Text
+'Council' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'elysee' Text
+'.' Text
+'fr' Text
+'/' Text
+'elysee' Text
+'/' Text
+'anglais' Text
+'/' Text
+'speeches_and_documents' Text
+'/' Text
+'2004' Text
+'/' Text
+'declaration_by_the_franco' Text
+'-' Text
+'german_defence_and_security_council' Text
+'.' Text
+'1096' Text
+'.' Text
+'html' Text
+' ' Text
+'|' Punctuation
+'archive-url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'web' Text
+'.' Text
+'archive' Text
+'.' Text
+'org' Text
+'/' Text
+'web' Text
+'/' Text
+'20051025215249' Text
+'/' Text
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'elysee' Text
+'.' Text
+'fr' Text
+'/' Text
+'elysee' Text
+'/' Text
+'anglais' Text
+'/' Text
+'speeches_and_documents' Text
+'/' Text
+'2004' Text
+'/' Text
+'declaration_by_the_franco' Text
+'-' Text
+'german_defence_and_security_council' Text
+'.' Text
+'1096' Text
+'.' Text
+'html' Text
+' ' Text
+'|' Punctuation
+'archive-date' Name.Label
+'=' Operator
+'25' Text
+' ' Text
+'October' Text
+' ' Text
+'2005' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'21' Text
+' ' Text
+'July' Text
+' ' Text
+'2011' Text
+' ' Text
+'|' Punctuation
+'publisher' Name.Label
+'=' Operator
+'Elysee' Text
+'.' Text
+'fr' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'France' Text
+' ' Text
+'has' Text
+' ' Text
+'also' Text
+' ' Text
+'gradually' Text
+' ' Text
+'but' Text
+' ' Text
+'fully' Text
+' ' Text
+'reintegrated' Text
+' ' Text
+'into' Text
+' ' Text
+'NATO' Text
+' ' Text
+'and' Text
+' ' Text
+'has' Text
+' ' Text
+'since' Text
+' ' Text
+'participated' Text
+' ' Text
+'in' Text
+' ' Text
+'most' Text
+' ' Text
+'NATO' Text
+'-' Text
+'sponsored' Text
+' ' Text
+'wars' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'France' Text
+' ' Text
+'and' Text
+' ' Text
+'NATO' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'rpfrance' Text
+'-' Text
+'otan' Text
+'.' Text
+'org' Text
+'/' Text
+'France' Text
+'-' Text
+'and' Text
+'-' Text
+'NATO' Text
+' ' Text
+'|' Punctuation
+'url-status' Name.Label
+'=' Operator
+'dead' Text
+' ' Text
+'|' Punctuation
+'archive-url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'web' Text
+'.' Text
+'archive' Text
+'.' Text
+'org' Text
+'/' Text
+'web' Text
+'/' Text
+'20140509044211' Text
+'/' Text
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'rpfrance' Text
+'-' Text
+'otan' Text
+'.' Text
+'org' Text
+'/' Text
+'France' Text
+'-' Text
+'and' Text
+'-' Text
+'NATO' Text
+' ' Text
+'|' Punctuation
+'archive-date' Name.Label
+'=' Operator
+'9' Text
+' ' Text
+'May' Text
+' ' Text
+'2014' Text
+' ' Text
+'|' Punctuation
+'website' Name.Label
+'=' Operator
+'La' Text
+' ' Text
+'France' Text
+' ' Text
+'à' Text
+' ' Text
+'l' Text
+"'" Text
+'Otan' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'\n' Text
+
+'\n' Text
+
+'[[' Punctuation
+'File' Name.Namespace
+':' Punctuation
+'Marche républicaine, Paris, 11 janvier 2015 (15).jpg' Name.Tag
+'|' Punctuation
+'thumb' Text
+'|' Punctuation
+'left' Text
+'|' Punctuation
+'alt' Name.Attribute
+'=' Operator
+'Place' Text
+' ' Text
+'de' Text
+' ' Text
+'la' Text
+' ' Text
+'République' Text
+' ' Text
+'statue' Text
+' ' Text
+'column' Text
+' ' Text
+'with' Text
+' ' Text
+'large' Text
+' ' Text
+'French' Text
+' ' Text
+'flag' Text
+'|' Punctuation
+'[[' Punctuation
+'Republican marches' Name.Tag
+']]' Punctuation
+' ' Text
+'were' Text
+' ' Text
+'organised' Text
+' ' Text
+'across' Text
+' ' Text
+'France' Text
+' ' Text
+'after' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'January 2015 Île-de-France attacks' Name.Tag
+'|' Punctuation
+'January' Text
+' ' Text
+'2015' Text
+' ' Text
+'attacks' Text
+']]' Punctuation
+' ' Text
+'perpetrated' Text
+' ' Text
+'by' Text
+' ' Text
+'[[' Punctuation
+'Islamism' Name.Tag
+'|' Punctuation
+'Islamist' Text
+']]' Punctuation
+' ' Text
+'[[' Punctuation
+'Terrorism' Name.Tag
+'|' Punctuation
+'terrorists' Text
+']]' Punctuation
+';' Text
+' ' Text
+'they' Text
+' ' Text
+'became' Text
+' ' Text
+'the' Text
+' ' Text
+'largest' Text
+' ' Text
+'public' Text
+' ' Text
+'rallies' Text
+' ' Text
+'in' Text
+' ' Text
+'French' Text
+' ' Text
+'history' Text
+'.' Text
+']]' Punctuation
+'\n' Text
+
+'Since' Text
+' ' Text
+'the' Text
+' ' Text
+'19th' Text
+' ' Text
+'century' Text
+',' Text
+' ' Text
+'France' Text
+' ' Text
+'has' Text
+' ' Text
+'received' Text
+' ' Text
+'many' Text
+' ' Text
+'[[' Punctuation
+'Immigration to France' Name.Tag
+'|' Punctuation
+'immigrants' Text
+']]' Punctuation
+'.' Text
+' ' Text
+'These' Text
+' ' Text
+'have' Text
+' ' Text
+'been' Text
+' ' Text
+'mostly' Text
+' ' Text
+'male' Text
+' ' Text
+'[[' Punctuation
+'foreign worker' Name.Tag
+']]' Punctuation
+'s' Text
+' ' Text
+'from' Text
+' ' Text
+'European' Text
+' ' Text
+'Catholic' Text
+' ' Text
+'countries' Text
+' ' Text
+'who' Text
+' ' Text
+'generally' Text
+' ' Text
+'returned' Text
+' ' Text
+'home' Text
+' ' Text
+'when' Text
+' ' Text
+'not' Text
+' ' Text
+'employed' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+' ' Text.Whitespace
+'name' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+'Marie' Literal.String.Double
+'-' Literal.String.Double
+'Christine' Literal.String.Double
+' ' Literal.String.Double
+'Weidmann' Literal.String.Double
+'-' Literal.String.Double
+'Koop' Literal.String.Double
+'"' Literal.String.Double
+'>' Punctuation
+'Marie' Text
+'-' Text
+'Christine' Text
+' ' Text
+'Weidmann' Text
+'-' Text
+'Koop' Text
+',' Text
+' ' Text
+'Rosalie' Text
+' ' Text
+'Vermette' Text
+',' Text
+' ' Text
+'"' Text
+'France' Text
+' ' Text
+'at' Text
+' ' Text
+'the' Text
+' ' Text
+'dawn' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'twenty' Text
+'-' Text
+'first' Text
+' ' Text
+'century' Text
+',' Text
+' ' Text
+'trends' Text
+' ' Text
+'and' Text
+' ' Text
+'transformations' Text
+'"' Text
+',' Text
+' ' Text
+'[' Punctuation
+'https://books.google.com/books?id=cVa46Q7oMlcC&pg=PA160' Name.Label
+' ' Text.Whitespace
+'p' Text
+'.' Text
+' ' Text
+'160' Text
+']' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'During' Text
+' ' Text
+'the' Text
+' ' Text
+'1970s' Text
+' ' Text
+'France' Text
+' ' Text
+'faced' Text
+' ' Text
+'an' Text
+' ' Text
+'economic' Text
+' ' Text
+'crisis' Text
+' ' Text
+'and' Text
+' ' Text
+'allowed' Text
+' ' Text
+'new' Text
+' ' Text
+'immigrants' Text
+' ' Text
+'(' Text
+'mostly' Text
+' ' Text
+'from' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Maghreb' Name.Tag
+']]' Punctuation
+')' Text
+'<' Punctuation
+'ref' Name.Tag
+' ' Text.Whitespace
+'name' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+'Marie' Literal.String.Double
+'-' Literal.String.Double
+'Christine' Literal.String.Double
+' ' Literal.String.Double
+'Weidmann' Literal.String.Double
+'-' Literal.String.Double
+'Koop' Literal.String.Double
+'"' Literal.String.Double
+' ' Text.Whitespace
+'/>' Punctuation
+' ' Text
+'to' Text
+' ' Text
+'permanently' Text
+' ' Text
+'[[' Punctuation
+'Family reunification' Name.Tag
+'|' Punctuation
+'settle' Text
+' ' Text
+'in' Text
+' ' Text
+'France' Text
+' ' Text
+'with' Text
+' ' Text
+'their' Text
+' ' Text
+'families' Text
+']]' Punctuation
+' ' Text
+'and' Text
+' ' Text
+'acquire' Text
+' ' Text
+'French' Text
+' ' Text
+'citizenship' Text
+'.' Text
+' ' Text
+'It' Text
+' ' Text
+'resulted' Text
+' ' Text
+'in' Text
+' ' Text
+'hundreds' Text
+' ' Text
+'of' Text
+' ' Text
+'thousands' Text
+' ' Text
+'of' Text
+' ' Text
+'Muslims' Text
+' ' Text
+'(' Text
+'especially' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'larger' Text
+' ' Text
+'cities' Text
+')' Text
+' ' Text
+'living' Text
+' ' Text
+'in' Text
+' ' Text
+'subsidised' Text
+' ' Text
+'public' Text
+' ' Text
+'housing' Text
+' ' Text
+'and' Text
+' ' Text
+'suffering' Text
+' ' Text
+'from' Text
+' ' Text
+'very' Text
+' ' Text
+'high' Text
+' ' Text
+'unemployment' Text
+' ' Text
+'rates' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'Yvonne' Text
+' ' Text
+'Yazbeck' Text
+' ' Text
+'Haddad' Text
+' ' Text
+'and' Text
+' ' Text
+'Michael' Text
+' ' Text
+'J' Text
+'.' Text
+' ' Text
+'Balz' Text
+',' Text
+' ' Text
+'"' Text
+'The' Text
+' ' Text
+'October' Text
+' ' Text
+'Riots' Text
+' ' Text
+'in' Text
+' ' Text
+'France' Text
+':' Text
+' ' Text
+'A' Text
+' ' Text
+'Failed' Text
+' ' Text
+'Immigration' Text
+' ' Text
+'Policy' Text
+' ' Text
+'or' Text
+' ' Text
+'the' Text
+' ' Text
+'Empire' Text
+' ' Text
+'Strikes' Text
+' ' Text
+'Back' Text
+'?' Text
+'"' Text
+' ' Text
+"''" Generic.Emph
+'International' Generic.Emph
+' ' Generic.Emph
+'Migration' Generic.Emph
+"''" Generic.Emph
+' ' Text
+'(' Text
+'2006' Text
+')' Text
+' ' Text
+'44' Text
+'#' Text
+'2' Text
+' ' Text
+'pp' Text
+'.' Text
+' ' Text
+'23' Text
+'–' Text
+'34' Text
+'.' Text
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'Simultaneously' Text
+' ' Text
+'France' Text
+' ' Text
+'renounced' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Assimilation (sociology)' Name.Tag
+'|' Punctuation
+'assimilation' Text
+']]' Punctuation
+' ' Text
+'of' Text
+' ' Text
+'immigrants' Text
+',' Text
+' ' Text
+'where' Text
+' ' Text
+'they' Text
+' ' Text
+'were' Text
+' ' Text
+'expected' Text
+' ' Text
+'to' Text
+' ' Text
+'adhere' Text
+' ' Text
+'to' Text
+' ' Text
+'French' Text
+' ' Text
+'traditional' Text
+' ' Text
+'values' Text
+' ' Text
+'and' Text
+' ' Text
+'cultural' Text
+' ' Text
+'norms' Text
+'.' Text
+' ' Text
+'They' Text
+' ' Text
+'were' Text
+' ' Text
+'encouraged' Text
+' ' Text
+'to' Text
+' ' Text
+'retain' Text
+' ' Text
+'their' Text
+' ' Text
+'distinctive' Text
+' ' Text
+'cultures' Text
+' ' Text
+'and' Text
+' ' Text
+'traditions' Text
+' ' Text
+'and' Text
+' ' Text
+'required' Text
+' ' Text
+'merely' Text
+' ' Text
+'to' Text
+' ' Text
+'[[' Punctuation
+'Social integration' Name.Tag
+'|' Punctuation
+'integrate' Text
+']]' Punctuation
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'Sylvia' Text
+' ' Text
+'Zappi' Text
+',' Text
+' ' Text
+'"' Text
+'French' Text
+' ' Text
+'Government' Text
+' ' Text
+'Revives' Text
+' ' Text
+'Assimilation' Text
+' ' Text
+'Policy' Text
+'"' Text
+',' Text
+' ' Text
+'in' Text
+' ' Text
+'Migration' Text
+' ' Text
+'Policy' Text
+' ' Text
+'Institute' Text
+' ' Text
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'French' Text
+' ' Text
+'Government' Text
+' ' Text
+'Revives' Text
+' ' Text
+'Assimilation' Text
+' ' Text
+'Policy' Text
+' ' Text
+'&#124;' Name.Entity
+' ' Text
+'migrationpolicy' Text
+'.' Text
+'org' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'migrationpolicy' Text
+'.' Text
+'org' Text
+'/' Text
+'article' Text
+'/' Text
+'french' Text
+'-' Text
+'government' Text
+'-' Text
+'revives' Text
+'-' Text
+'assimilation' Text
+'-' Text
+'policy' Text
+' ' Text
+'|' Punctuation
+'url-status' Name.Label
+'=' Operator
+'dead' Text
+' ' Text
+'|' Punctuation
+'archive-url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'web' Text
+'.' Text
+'archive' Text
+'.' Text
+'org' Text
+'/' Text
+'web' Text
+'/' Text
+'20150130222428' Text
+'/' Text
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'migrationpolicy' Text
+'.' Text
+'org' Text
+'/' Text
+'article' Text
+'/' Text
+'french' Text
+'-' Text
+'government' Text
+'-' Text
+'revives' Text
+'-' Text
+'assimilation' Text
+'-' Text
+'policy' Text
+' ' Text
+'|' Punctuation
+'archive-date' Name.Label
+'=' Operator
+'30' Text
+' ' Text
+'January' Text
+' ' Text
+'2015' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'30' Text
+' ' Text
+'January' Text
+' ' Text
+'2015' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'\n' Text
+
+'\n' Text
+
+'Since' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'1995 Paris Métro and RER bombings' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'France' Text
+' ' Text
+'has' Text
+' ' Text
+'been' Text
+' ' Text
+'sporadically' Text
+' ' Text
+'targeted' Text
+' ' Text
+'by' Text
+' ' Text
+'Islamist' Text
+' ' Text
+'organisations' Text
+',' Text
+' ' Text
+'notably' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'January 2015 Île-de-France attacks' Name.Tag
+'|' Punctuation
+"''" Generic.Emph
+'Charlie' Generic.Emph
+' ' Generic.Emph
+'Hebdo' Generic.Emph
+"''" Generic.Emph
+' ' Text
+'attack' Text
+']]' Punctuation
+' ' Text
+'in' Text
+' ' Text
+'January' Text
+' ' Text
+'2015' Text
+' ' Text
+'which' Text
+' ' Text
+'provoked' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Republican marches' Name.Tag
+'|' Punctuation
+'largest' Text
+' ' Text
+'public' Text
+' ' Text
+'rallies' Text
+']]' Punctuation
+' ' Text
+'in' Text
+' ' Text
+'French' Text
+' ' Text
+'history' Text
+',' Text
+' ' Text
+'gathering' Text
+' ' Text
+'4' Text
+'.' Text
+'4' Text
+'&nbsp;' Name.Entity
+'million' Text
+' ' Text
+'people' Text
+',' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'news' Name.Tag
+' ' Text
+'|' Punctuation
+'last1' Name.Label
+'=' Operator
+'Hinnant' Text
+' ' Text
+'|' Punctuation
+'first1' Name.Label
+'=' Operator
+'Lori' Text
+' ' Text
+'|' Punctuation
+'last2' Name.Label
+'=' Operator
+'Adamson' Text
+' ' Text
+'|' Punctuation
+'first2' Name.Label
+'=' Operator
+'Thomas' Text
+' ' Text
+'|' Punctuation
+'date' Name.Label
+'=' Operator
+'11' Text
+' ' Text
+'January' Text
+' ' Text
+'2015' Text
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Officials' Text
+':' Text
+' ' Text
+'Paris' Text
+' ' Text
+'Unity' Text
+' ' Text
+'Rally' Text
+' ' Text
+'Largest' Text
+' ' Text
+'in' Text
+' ' Text
+'French' Text
+' ' Text
+'History' Text
+' ' Text
+'|' Punctuation
+'agency' Name.Label
+'=' Operator
+'Associated' Text
+' ' Text
+'Press' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'hosted' Text
+'.' Text
+'ap' Text
+'.' Text
+'org' Text
+'/' Text
+'dynamic' Text
+'/' Text
+'stories' Text
+'/' Text
+'E' Text
+'/' Text
+'EU_FRANCE_ATTACKS_RALLY' Text
+'?' Text
+'SITE' Text
+'=' Text
+'AP' Text
+'&' Text
+'SECTION' Text
+'=' Text
+'HOME' Text
+'&' Text
+'TEMPLATE' Text
+'=' Text
+'DEFAULT' Text
+'&' Text
+'CTIME' Text
+'=' Text
+'2015' Text
+'-' Text
+'01' Text
+'-' Text
+'11' Text
+'-' Text
+'12' Text
+'-' Text
+'51' Text
+'-' Text
+'46' Text
+' ' Text
+'|' Punctuation
+'url-status' Name.Label
+'=' Operator
+'dead' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'11' Text
+' ' Text
+'January' Text
+' ' Text
+'2015' Text
+' ' Text
+'|' Punctuation
+'archive-url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'web' Text
+'.' Text
+'archive' Text
+'.' Text
+'org' Text
+'/' Text
+'web' Text
+'/' Text
+'20150111213526' Text
+'/' Text
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'hosted' Text
+'.' Text
+'ap' Text
+'.' Text
+'org' Text
+'/' Text
+'dynamic' Text
+'/' Text
+'stories' Text
+'/' Text
+'E' Text
+'/' Text
+'EU_FRANCE_ATTACKS_RALLY' Text
+'?' Text
+'SITE' Text
+'=' Text
+'AP' Text
+'&' Text
+'SECTION' Text
+'=' Text
+'HOME' Text
+'&' Text
+'TEMPLATE' Text
+'=' Text
+'DEFAULT' Text
+'&' Text
+'CTIME' Text
+'=' Text
+'2015' Text
+'-' Text
+'01' Text
+'-' Text
+'11' Text
+'-' Text
+'12' Text
+'-' Text
+'51' Text
+'-' Text
+'46' Text
+' ' Text
+'|' Punctuation
+'archive-date' Name.Label
+'=' Operator
+'11' Text
+' ' Text
+'January' Text
+' ' Text
+'2015' Text
+'}}' Punctuation
+';' Text
+' ' Text
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'news' Name.Tag
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Paris' Text
+' ' Text
+'attacks' Text
+':' Text
+' ' Text
+'Millions' Text
+' ' Text
+'rally' Text
+' ' Text
+'for' Text
+' ' Text
+'unity' Text
+' ' Text
+'in' Text
+' ' Text
+'France' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'bbc' Text
+'.' Text
+'com' Text
+'/' Text
+'news' Text
+'/' Text
+'world' Text
+'-' Text
+'europe' Text
+'-' Text
+'30765824' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'12' Text
+' ' Text
+'January' Text
+' ' Text
+'2015' Text
+'|' Punctuation
+'work' Name.Label
+'=' Operator
+'BBC' Text
+' ' Text
+'News' Text
+'|' Punctuation
+'date' Name.Label
+'=' Operator
+'12' Text
+' ' Text
+'January' Text
+' ' Text
+'2015' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'November 2015 Paris attacks' Name.Tag
+']]' Punctuation
+' ' Text
+'which' Text
+' ' Text
+'resulted' Text
+' ' Text
+'in' Text
+' ' Text
+'130' Text
+' ' Text
+'deaths' Text
+',' Text
+' ' Text
+'the' Text
+' ' Text
+'deadliest' Text
+' ' Text
+'attack' Text
+' ' Text
+'on' Text
+' ' Text
+'French' Text
+' ' Text
+'soil' Text
+' ' Text
+'since' Text
+' ' Text
+'[[' Punctuation
+'World War II' Name.Tag
+']]' Punctuation
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'news' Name.Tag
+' ' Text
+'|' Punctuation
+'date' Name.Label
+'=' Operator
+'14' Text
+' ' Text
+'November' Text
+' ' Text
+'2015' Text
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Parisians' Text
+' ' Text
+'throw' Text
+' ' Text
+'open' Text
+' ' Text
+'doors' Text
+' ' Text
+'in' Text
+' ' Text
+'wake' Text
+' ' Text
+'of' Text
+' ' Text
+'attacks' Text
+',' Text
+' ' Text
+'but' Text
+' ' Text
+'Muslims' Text
+' ' Text
+'fear' Text
+' ' Text
+'repercussions' Text
+' ' Text
+'|' Punctuation
+'work' Name.Label
+'=' Operator
+'The' Text
+' ' Text
+'Guardian' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'theguardian' Text
+'.' Text
+'com' Text
+'/' Text
+'world' Text
+'/' Text
+'2015' Text
+'/' Text
+'nov' Text
+'/' Text
+'14' Text
+'/' Text
+'paris' Text
+'-' Text
+'attacks' Text
+'-' Text
+'people' Text
+'-' Text
+'throw' Text
+'-' Text
+'open' Text
+'-' Text
+'doors' Text
+'-' Text
+'to' Text
+'-' Text
+'help' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'19' Text
+' ' Text
+'November' Text
+' ' Text
+'2015' Text
+'}}' Punctuation
+';' Text
+' ' Text
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'news' Name.Tag
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'independent' Text
+'.' Text
+'ie' Text
+'/' Text
+'world' Text
+'-' Text
+'news' Text
+'/' Text
+'europe' Text
+'/' Text
+'paris' Text
+'-' Text
+'terror' Text
+'-' Text
+'attacks' Text
+'/' Text
+'paris' Text
+'-' Text
+'terror' Text
+'-' Text
+'attacks' Text
+'-' Text
+'yes' Text
+'-' Text
+'parisians' Text
+'-' Text
+'are' Text
+'-' Text
+'traumatised' Text
+'-' Text
+'but' Text
+'-' Text
+'the' Text
+'-' Text
+'spirit' Text
+'-' Text
+'of' Text
+'-' Text
+'resistance' Text
+'-' Text
+'still' Text
+'-' Text
+'lingers' Text
+'-' Text
+'34201891' Text
+'.' Text
+'html' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Yes' Text
+',' Text
+' ' Text
+'Parisians' Text
+' ' Text
+'are' Text
+' ' Text
+'traumatised' Text
+',' Text
+' ' Text
+'but' Text
+' ' Text
+'the' Text
+' ' Text
+'spirit' Text
+' ' Text
+'of' Text
+' ' Text
+'resistance' Text
+' ' Text
+'still' Text
+' ' Text
+'lingers' Text
+'|' Punctuation
+'first' Name.Label
+'=' Operator
+'Nafeesa' Text
+'|' Punctuation
+'last' Name.Label
+'=' Operator
+'Syeed' Text
+'|' Punctuation
+'newspaper' Name.Label
+'=' Operator
+'The' Text
+' ' Text
+'Irish' Text
+' ' Text
+'Independent' Text
+'|' Punctuation
+'date' Name.Label
+'=' Operator
+'15' Text
+' ' Text
+'November' Text
+' ' Text
+'2015' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'19' Text
+' ' Text
+'November' Text
+' ' Text
+'2015' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'and' Text
+' ' Text
+'the' Text
+' ' Text
+'deadliest' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'European' Text
+' ' Text
+'Union' Text
+' ' Text
+'since' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'2004 Madrid train bombings' Name.Tag
+'|' Punctuation
+'Madrid' Text
+' ' Text
+'train' Text
+' ' Text
+'bombings' Text
+' ' Text
+'in' Text
+' ' Text
+'2004' Text
+']]' Punctuation
+',' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'news' Name.Tag
+' ' Text
+'|' Punctuation
+'date' Name.Label
+'=' Operator
+'19' Text
+' ' Text
+'November' Text
+' ' Text
+'2015' Text
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Europe' Text
+"'" Text
+'s' Text
+' ' Text
+'open' Text
+'-' Text
+'border' Text
+' ' Text
+'policy' Text
+' ' Text
+'may' Text
+' ' Text
+'become' Text
+' ' Text
+'latest' Text
+' ' Text
+'victim' Text
+' ' Text
+'of' Text
+' ' Text
+'terrorism' Text
+' ' Text
+'|' Punctuation
+'newspaper' Name.Label
+'=' Operator
+'The' Text
+' ' Text
+'Irish' Text
+' ' Text
+'Times' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'irishtimes' Text
+'.' Text
+'com' Text
+'/' Text
+'news' Text
+'/' Text
+'world' Text
+'/' Text
+'europe' Text
+'/' Text
+'europe' Text
+'-' Text
+'s' Text
+'-' Text
+'open' Text
+'-' Text
+'border' Text
+'-' Text
+'policy' Text
+'-' Text
+'may' Text
+'-' Text
+'become' Text
+'-' Text
+'latest' Text
+'-' Text
+'victim' Text
+'-' Text
+'of' Text
+'-' Text
+'terrorism' Text
+'-' Text
+'1' Text
+'.' Text
+'2435486' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'19' Text
+' ' Text
+'November' Text
+' ' Text
+'2015' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'as' Text
+' ' Text
+'well' Text
+' ' Text
+'as' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'2016 Nice truck attack' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'which' Text
+' ' Text
+'caused' Text
+' ' Text
+'87' Text
+' ' Text
+'deaths' Text
+' ' Text
+'during' Text
+' ' Text
+'[[' Punctuation
+'Bastille Day' Name.Tag
+']]' Punctuation
+' ' Text
+'celebrations' Text
+'.' Text
+' ' Text
+'[[' Punctuation
+'Opération Chammal' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'France' Text
+"'" Text
+'s' Text
+' ' Text
+'military' Text
+' ' Text
+'efforts' Text
+' ' Text
+'to' Text
+' ' Text
+'contain' Text
+' ' Text
+'[[' Punctuation
+'Islamic State of Iraq and the Levant' Name.Tag
+'|' Punctuation
+'ISIS' Text
+']]' Punctuation
+',' Text
+' ' Text
+'killed' Text
+' ' Text
+'over' Text
+' ' Text
+'1' Text
+',' Text
+'000' Text
+' ' Text
+'ISIS' Text
+' ' Text
+'troops' Text
+' ' Text
+'between' Text
+' ' Text
+'2014' Text
+' ' Text
+'and' Text
+' ' Text
+'2015' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'date' Name.Label
+'=' Operator
+'14' Text
+' ' Text
+'December' Text
+' ' Text
+'2015' Text
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'French' Text
+' ' Text
+'policies' Text
+' ' Text
+'provoke' Text
+' ' Text
+'terrorist' Text
+' ' Text
+'attacks' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'thematadorsghs' Text
+'.' Text
+'us' Text
+'/' Text
+'index' Text
+'.' Text
+'php' Text
+'/' Text
+'2015' Text
+'/' Text
+'12' Text
+'/' Text
+'14' Text
+'/' Text
+'french' Text
+'-' Text
+'policies' Text
+'-' Text
+'provoke' Text
+'-' Text
+'terrorist' Text
+'-' Text
+'attacks' Text
+' ' Text
+'|' Punctuation
+'website' Name.Label
+'=' Operator
+'The' Text
+' ' Text
+'Matador' Text
+'}}' Punctuation
+';' Text
+' ' Text
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'book' Name.Tag
+' ' Text
+'|' Punctuation
+'editor-first' Name.Label
+'=' Operator
+'Gabriel' Text
+' ' Text
+'|' Punctuation
+'editor-last' Name.Label
+'=' Operator
+'Goodliffe' Text
+' ' Text
+'|' Punctuation
+'editor-first2' Name.Label
+'=' Operator
+'Riccardo' Text
+' ' Text
+'|' Punctuation
+'editor-last2' Name.Label
+'=' Operator
+'Brizzi' Text
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'France' Text
+' ' Text
+'After' Text
+' ' Text
+'2012' Text
+' ' Text
+'|' Punctuation
+'publisher' Name.Label
+'=' Operator
+'Berghahn' Text
+' ' Text
+'Books' Text
+' ' Text
+'|' Punctuation
+'date' Name.Label
+'=' Operator
+'2015' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'\n' Text
+
+'\n' Text
+
+'==' Generic.Subheading
+'Geography' Generic.Subheading
+'==' Generic.Subheading
+'\n' Text.Whitespace
+
+'{{' Punctuation
+'Main' Name.Tag
+'|' Punctuation
+'Geography' Text
+' ' Text
+'of' Text
+' ' Text
+'France' Text
+'}}' Punctuation
+'\n' Text
+
+'\n' Text
+
+'===' Generic.Subheading
+'Location and borders' Generic.Subheading
+'===' Generic.Subheading
+'\n' Text.Whitespace
+
+'[[' Punctuation
+'File' Name.Namespace
+':' Punctuation
+'Satellite_image_of_France_in_August_2002.jpg' Name.Tag
+'|' Punctuation
+'thumb' Text
+'|' Punctuation
+'[[' Punctuation
+'Satellite image' Name.Tag
+']]' Punctuation
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Metropolitan France' Name.Tag
+']]' Punctuation
+']]' Punctuation
+'\n' Text
+
+'[[' Punctuation
+'File' Name.Namespace
+':' Punctuation
+'Chamonix valley from la Flégère,2010 07.JPG' Name.Tag
+'|' Punctuation
+'thumb' Text
+'|' Punctuation
+'[[' Punctuation
+'Chamonix' Name.Tag
+']]' Punctuation
+' ' Text
+'valley' Text
+' ' Text
+'with' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Mont Blanc' Name.Tag
+']]' Punctuation
+' ' Text
+'at' Text
+' ' Text
+'background' Text
+',' Text
+' ' Text
+'the' Text
+' ' Text
+'highest' Text
+' ' Text
+'mountain' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Alps' Name.Tag
+']]' Punctuation
+' ' Text
+'and' Text
+' ' Text
+'[[' Punctuation
+'Western Europe' Name.Tag
+']]' Punctuation
+' ' Text
+'on' Text
+' ' Text
+'the' Text
+' ' Text
+'border' Text
+' ' Text
+'with' Text
+' ' Text
+'[[' Punctuation
+'Italy' Name.Tag
+']]' Punctuation
+']]' Punctuation
+'\n' Text
+
+'[[' Punctuation
+'File' Name.Namespace
+':' Punctuation
+'Bora_Bora.jpg' Name.Tag
+'|' Punctuation
+'thumb' Text
+'|' Punctuation
+'[[' Punctuation
+'Bora Bora' Name.Tag
+']]' Punctuation
+' ' Text
+'in' Text
+' ' Text
+'[[' Punctuation
+'French Polynesia' Name.Tag
+']]' Punctuation
+']]' Punctuation
+'\n' Text
+
+'The' Text
+' ' Text
+'vast' Text
+' ' Text
+'majority' Text
+' ' Text
+'of' Text
+' ' Text
+'France' Text
+"'" Text
+'s' Text
+' ' Text
+'territory' Text
+' ' Text
+'and' Text
+' ' Text
+'population' Text
+' ' Text
+'is' Text
+' ' Text
+'situated' Text
+' ' Text
+'in' Text
+' ' Text
+'Western' Text
+' ' Text
+'Europe' Text
+' ' Text
+'and' Text
+' ' Text
+'is' Text
+' ' Text
+'called' Text
+' ' Text
+'[[' Punctuation
+'Metropolitan France' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'to' Text
+' ' Text
+'distinguish' Text
+' ' Text
+'it' Text
+' ' Text
+'from' Text
+' ' Text
+'the' Text
+' ' Text
+'country' Text
+"'" Text
+'s' Text
+' ' Text
+'various' Text
+' ' Text
+'overseas' Text
+' ' Text
+'polities' Text
+'.' Text
+' ' Text
+'It' Text
+' ' Text
+'is' Text
+' ' Text
+'bordered' Text
+' ' Text
+'by' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'North Sea' Name.Tag
+']]' Punctuation
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'north' Text
+',' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'English Channel' Name.Tag
+']]' Punctuation
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'northwest' Text
+',' Text
+' ' Text
+'the' Text
+' ' Text
+'Atlantic' Text
+' ' Text
+'Ocean' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'west' Text
+' ' Text
+'and' Text
+' ' Text
+'the' Text
+' ' Text
+'Mediterranean' Text
+' ' Text
+'sea' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'southeast' Text
+'.' Text
+' ' Text
+'Its' Text
+' ' Text
+'land' Text
+' ' Text
+'borders' Text
+' ' Text
+'consist' Text
+' ' Text
+'of' Text
+' ' Text
+'[[' Punctuation
+'Belgium' Name.Tag
+']]' Punctuation
+' ' Text
+'and' Text
+' ' Text
+'[[' Punctuation
+'Luxembourg' Name.Tag
+']]' Punctuation
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'northeast' Text
+',' Text
+' ' Text
+'[[' Punctuation
+'Germany' Name.Tag
+']]' Punctuation
+' ' Text
+'and' Text
+' ' Text
+'[[' Punctuation
+'Switzerland' Name.Tag
+']]' Punctuation
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'east' Text
+',' Text
+' ' Text
+'[[' Punctuation
+'Italy' Name.Tag
+']]' Punctuation
+' ' Text
+'and' Text
+' ' Text
+'[[' Punctuation
+'Monaco' Name.Tag
+']]' Punctuation
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'southeast' Text
+',' Text
+' ' Text
+'and' Text
+' ' Text
+'[[' Punctuation
+'Andorra' Name.Tag
+']]' Punctuation
+' ' Text
+'and' Text
+' ' Text
+'[[' Punctuation
+'Spain' Name.Tag
+']]' Punctuation
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'south' Text
+' ' Text
+'and' Text
+' ' Text
+'southwest' Text
+'.' Text
+' ' Text
+'Except' Text
+' ' Text
+'for' Text
+' ' Text
+'the' Text
+' ' Text
+'northeast' Text
+',' Text
+' ' Text
+'most' Text
+' ' Text
+'of' Text
+' ' Text
+'France' Text
+"'" Text
+'s' Text
+' ' Text
+'land' Text
+' ' Text
+'borders' Text
+' ' Text
+'are' Text
+' ' Text
+'roughly' Text
+' ' Text
+'delineated' Text
+' ' Text
+'by' Text
+' ' Text
+'natural' Text
+' ' Text
+'boundaries' Text
+' ' Text
+'and' Text
+' ' Text
+'geographic' Text
+' ' Text
+'features' Text
+':' Text
+' ' Text
+'to' Text
+' ' Text
+'the' Text
+' ' Text
+'south' Text
+' ' Text
+'and' Text
+' ' Text
+'southeast' Text
+',' Text
+' ' Text
+'the' Text
+' ' Text
+'Pyrenees' Text
+' ' Text
+'and' Text
+' ' Text
+'the' Text
+' ' Text
+'Alps' Text
+' ' Text
+'and' Text
+' ' Text
+'the' Text
+' ' Text
+'Jura' Text
+',' Text
+' ' Text
+'respectively' Text
+',' Text
+' ' Text
+'and' Text
+' ' Text
+'to' Text
+' ' Text
+'the' Text
+' ' Text
+'east' Text
+',' Text
+' ' Text
+'the' Text
+' ' Text
+'Rhine' Text
+' ' Text
+'river' Text
+'.' Text
+' ' Text
+'Due' Text
+' ' Text
+'to' Text
+' ' Text
+'its' Text
+' ' Text
+'shape' Text
+',' Text
+' ' Text
+'France' Text
+' ' Text
+'is' Text
+' ' Text
+'often' Text
+' ' Text
+'referred' Text
+' ' Text
+'to' Text
+' ' Text
+'as' Text
+' ' Text
+"''" Generic.Emph
+'' Punctuation
+'{{' Punctuation
+'Lang' Name.Tag
+'|' Punctuation
+'fr' Text
+'|' Punctuation
+'l' Text
+"'" Text
+'Hexagone' Text
+'}}' Punctuation
+"''" Generic.Emph
+' ' Generic.Emph
+'(' Generic.Emph
+'"' Generic.Emph
+'The' Generic.Emph
+' ' Generic.Emph
+'[[' Punctuation
+'Hexagon' Name.Tag
+']]' Punctuation
+'"' Generic.Emph
+')' Generic.Emph
+'.' Generic.Emph
+' ' Generic.Emph
+'Metropolitan' Generic.Emph
+' ' Generic.Emph
+'France' Generic.Emph
+' ' Generic.Emph
+'includes' Generic.Emph
+' ' Generic.Emph
+'various' Generic.Emph
+' ' Generic.Emph
+'coastal' Generic.Emph
+' ' Generic.Emph
+'islands' Generic.Emph
+',' Generic.Emph
+' ' Generic.Emph
+'of' Generic.Emph
+' ' Generic.Emph
+'which' Generic.Emph
+' ' Generic.Emph
+'the' Generic.Emph
+' ' Generic.Emph
+'largest' Generic.Emph
+' ' Generic.Emph
+'is' Generic.Emph
+' ' Generic.Emph
+'[[' Punctuation
+'Corsica' Name.Tag
+']]' Punctuation
+'.' Generic.Emph
+' ' Generic.Emph
+'Metropolitan' Generic.Emph
+' ' Generic.Emph
+'France' Generic.Emph
+' ' Generic.Emph
+'is' Generic.Emph
+' ' Generic.Emph
+'situated' Generic.Emph
+' ' Generic.Emph
+'mostly' Generic.Emph
+' ' Generic.Emph
+'between' Generic.Emph
+' ' Generic.Emph
+'latitudes' Generic.Emph
+' ' Generic.Emph
+'[[' Punctuation
+'41st parallel north' Name.Tag
+'|' Punctuation
+'41' Text
+'°' Text
+']]' Punctuation
+' ' Generic.Emph
+'and' Generic.Emph
+' ' Generic.Emph
+'[[' Punctuation
+'51st parallel north' Name.Tag
+'|' Punctuation
+'51' Text
+'°' Text
+' ' Text
+'N' Text
+']]' Punctuation
+',' Generic.Emph
+' ' Generic.Emph
+'and' Generic.Emph
+' ' Generic.Emph
+'longitudes' Generic.Emph
+' ' Generic.Emph
+'[[' Punctuation
+'6th meridian west' Name.Tag
+'|' Punctuation
+'6' Text
+'°' Text
+' ' Text
+'W' Text
+']]' Punctuation
+' ' Generic.Emph
+'and' Generic.Emph
+' ' Generic.Emph
+'[[' Punctuation
+'10th meridian east' Name.Tag
+'|' Punctuation
+'10' Text
+'°' Text
+' ' Text
+'E' Text
+']]' Punctuation
+',' Generic.Emph
+' ' Generic.Emph
+'on' Generic.Emph
+' ' Generic.Emph
+'the' Generic.Emph
+' ' Generic.Emph
+'western' Generic.Emph
+' ' Generic.Emph
+'edge' Generic.Emph
+' ' Generic.Emph
+'of' Generic.Emph
+' ' Generic.Emph
+'Europe' Generic.Emph
+',' Generic.Emph
+' ' Generic.Emph
+'and' Generic.Emph
+' ' Generic.Emph
+'thus' Generic.Emph
+' ' Generic.Emph
+'lies' Generic.Emph
+' ' Generic.Emph
+'within' Generic.Emph
+' ' Generic.Emph
+'the' Generic.Emph
+' ' Generic.Emph
+'northern' Generic.Emph
+' ' Generic.Emph
+'[[' Punctuation
+'temperateness' Name.Tag
+'|' Punctuation
+'temperate' Text
+']]' Punctuation
+' ' Generic.Emph
+'zone' Generic.Emph
+'.' Generic.Emph
+' ' Generic.Emph
+'Its' Generic.Emph
+' ' Generic.Emph
+'continental' Generic.Emph
+' ' Generic.Emph
+'part' Generic.Emph
+' ' Generic.Emph
+'covers' Generic.Emph
+' ' Generic.Emph
+'about' Generic.Emph
+' ' Generic.Emph
+'1000' Generic.Emph
+'&nbsp;' Name.Entity
+'km' Generic.Emph
+' ' Generic.Emph
+'from' Generic.Emph
+' ' Generic.Emph
+'north' Generic.Emph
+' ' Generic.Emph
+'to' Generic.Emph
+' ' Generic.Emph
+'south' Generic.Emph
+' ' Generic.Emph
+'and' Generic.Emph
+' ' Generic.Emph
+'from' Generic.Emph
+' ' Generic.Emph
+'east' Generic.Emph
+' ' Generic.Emph
+'to' Generic.Emph
+' ' Generic.Emph
+'west' Generic.Emph
+'.' Generic.Emph
+'\n' Text
+
+'\n' Text
+
+'France' Text
+' ' Text
+'has' Text
+' ' Text
+'several' Text
+' ' Text
+'[[' Punctuation
+'Overseas departments and territories of France' Name.Tag
+'|' Punctuation
+'overseas' Text
+' ' Text
+'regions' Text
+']]' Punctuation
+' ' Text
+'across' Text
+' ' Text
+'the' Text
+' ' Text
+'world' Text
+',' Text
+' ' Text
+'which' Text
+' ' Text
+'are' Text
+' ' Text
+'organised' Text
+' ' Text
+'as' Text
+' ' Text
+'follows' Text
+':' Text
+'\n' Text
+
+'*' Keyword
+' ' Text
+'five' Text
+' ' Text
+'have' Text
+' ' Text
+'the' Text
+' ' Text
+'same' Text
+' ' Text
+'status' Text
+' ' Text
+'as' Text
+' ' Text
+'mainland' Text
+' ' Text
+'France' Text
+"'" Text
+'s' Text
+' ' Text
+'regions' Text
+' ' Text
+'and' Text
+' ' Text
+'departments' Text
+':' Text
+'\n' Text
+
+'**' Keyword
+' ' Text
+'[[' Punctuation
+'French Guiana' Name.Tag
+']]' Punctuation
+' ' Text
+'in' Text
+' ' Text
+'[[' Punctuation
+'South America' Name.Tag
+']]' Punctuation
+';' Text
+'\n' Text
+
+'**' Keyword
+' ' Text
+'[[' Punctuation
+'Guadeloupe' Name.Tag
+']]' Punctuation
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Caribbean' Name.Tag
+']]' Punctuation
+';' Text
+'\n' Text
+
+'**' Keyword
+' ' Text
+'[[' Punctuation
+'Martinique' Name.Tag
+']]' Punctuation
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Caribbean' Name.Tag
+']]' Punctuation
+';' Text
+'\n' Text
+
+'**' Keyword
+' ' Text
+'[[' Punctuation
+'Mayotte' Name.Tag
+']]' Punctuation
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Indian Ocean' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'off' Text
+' ' Text
+'the' Text
+' ' Text
+'coast' Text
+' ' Text
+'of' Text
+' ' Text
+'East' Text
+' ' Text
+'Africa' Text
+';' Text
+'\n' Text
+
+'**' Keyword
+' ' Text
+'[[' Punctuation
+'Réunion' Name.Tag
+']]' Punctuation
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Indian Ocean' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'off' Text
+' ' Text
+'the' Text
+' ' Text
+'coast' Text
+' ' Text
+'of' Text
+' ' Text
+'East' Text
+' ' Text
+'Africa' Text
+'.' Text
+'\n' Text
+
+'*' Keyword
+' ' Text
+'nine' Text
+' ' Text
+'have' Text
+' ' Text
+'special' Text
+' ' Text
+'legal' Text
+' ' Text
+'status' Text
+' ' Text
+'distinct' Text
+' ' Text
+'from' Text
+' ' Text
+'mainland' Text
+' ' Text
+'France' Text
+"'" Text
+'s' Text
+' ' Text
+'regions' Text
+' ' Text
+'and' Text
+' ' Text
+'departments' Text
+':' Text
+'\n' Text
+
+'**' Keyword
+' ' Text
+'In' Text
+' ' Text
+'the' Text
+' ' Text
+'Atlantic' Text
+' ' Text
+'Ocean' Text
+':' Text
+' ' Text
+'[[' Punctuation
+'Saint Pierre and Miquelon' Name.Tag
+']]' Punctuation
+' ' Text
+'and' Text
+',' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'Antilles' Text
+':' Text
+' ' Text
+'[[' Punctuation
+'Collectivity of Saint Martin' Name.Tag
+'|' Punctuation
+'Saint' Text
+' ' Text
+'Martin' Text
+']]' Punctuation
+' ' Text
+'and' Text
+' ' Text
+'[[' Punctuation
+'Saint Barthélemy' Name.Tag
+']]' Punctuation
+'.' Text
+'\n' Text
+
+'**' Keyword
+' ' Text
+'In' Text
+' ' Text
+'the' Text
+' ' Text
+'Pacific' Text
+' ' Text
+'Ocean' Text
+':' Text
+' ' Text
+'[[' Punctuation
+'French Polynesia' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'the' Text
+' ' Text
+'special' Text
+' ' Text
+'collectivity' Text
+' ' Text
+'of' Text
+' ' Text
+'[[' Punctuation
+'New Caledonia' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'[[' Punctuation
+'Wallis and Futuna' Name.Tag
+']]' Punctuation
+' ' Text
+'and' Text
+' ' Text
+'[[' Punctuation
+'Clipperton Island' Name.Tag
+']]' Punctuation
+'.' Text
+'\n' Text
+
+'**' Keyword
+' ' Text
+'In' Text
+' ' Text
+'the' Text
+' ' Text
+'Indian' Text
+' ' Text
+'Ocean' Text
+':' Text
+' ' Text
+'[[' Punctuation
+'Kerguelen Islands' Name.Tag
+'|' Punctuation
+'the' Text
+' ' Text
+'Kerguelen' Text
+' ' Text
+'Islands' Text
+']]' Punctuation
+',' Text
+' ' Text
+'[[' Punctuation
+'Crozet Islands' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'[[' Punctuation
+'Île Saint-Paul' Name.Tag
+'|' Punctuation
+'St' Text
+'.' Text
+' ' Text
+'Paul' Text
+']]' Punctuation
+' ' Text
+'and' Text
+' ' Text
+'[[' Punctuation
+'Île Amsterdam' Name.Tag
+'|' Punctuation
+'Amsterdam' Text
+']]' Punctuation
+' ' Text
+'islands' Text
+',' Text
+' ' Text
+'and' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Scattered Islands in the Indian Ocean' Name.Tag
+']]' Punctuation
+'\n' Text
+
+'**' Keyword
+' ' Text
+'In' Text
+' ' Text
+'the' Text
+' ' Text
+'Antarctic' Text
+':' Text
+' ' Text
+'[[' Punctuation
+'Adélie Land' Name.Tag
+']]' Punctuation
+'.' Text
+'\n' Text
+
+'\n' Text
+
+'France' Text
+' ' Text
+'has' Text
+' ' Text
+'land' Text
+' ' Text
+'borders' Text
+' ' Text
+'with' Text
+' ' Text
+'Brazil' Text
+' ' Text
+'and' Text
+' ' Text
+'Suriname' Text
+' ' Text
+'via' Text
+' ' Text
+'[[' Punctuation
+'French Guiana' Name.Tag
+']]' Punctuation
+' ' Text
+'and' Text
+' ' Text
+'with' Text
+' ' Text
+'the' Text
+' ' Text
+'Kingdom' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'Netherlands' Text
+' ' Text
+'through' Text
+' ' Text
+'the' Text
+' ' Text
+'French' Text
+' ' Text
+'portion' Text
+' ' Text
+'of' Text
+' ' Text
+'[[' Punctuation
+'Saint Martin (island)' Name.Tag
+'|' Punctuation
+'Saint' Text
+' ' Text
+'Martin' Text
+']]' Punctuation
+'.' Text
+'\n' Text
+
+'\n' Text
+
+'Metropolitan' Text
+' ' Text
+'France' Text
+' ' Text
+'covers' Text
+' ' Text
+'{{' Punctuation
+'Convert' Name.Tag
+'|' Punctuation
+'551500' Text
+'|' Punctuation
+'km2' Text
+'|' Punctuation
+'sqmi' Text
+'|' Punctuation
+'0' Text
+'}}' Punctuation
+',' Text
+'<' Punctuation
+'ref' Name.Tag
+' ' Text.Whitespace
+'name' Name.Attribute
+'=' Operator
+'France' Literal.String
+'/>' Punctuation
+' ' Text
+'the' Text
+' ' Text
+'largest' Text
+' ' Text
+'among' Text
+' ' Text
+'[[' Punctuation
+'European Union' Name.Tag
+']]' Punctuation
+' ' Text
+'members' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+' ' Text.Whitespace
+'name' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+'superficy' Literal.String.Double
+'"' Literal.String.Double
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Europa' Text
+' ' Text
+'Official' Text
+' ' Text
+'Site' Text
+'&nbsp;' Name.Entity
+'–' Text
+' ' Text
+'France' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'europa' Text
+'.' Text
+'eu' Text
+'/' Text
+'about' Text
+'-' Text
+'eu' Text
+'/' Text
+'countries' Text
+'/' Text
+'member' Text
+'-' Text
+'countries' Text
+'/' Text
+'france' Text
+'/' Text
+'index_en' Text
+'.' Text
+'htm' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'28' Text
+' ' Text
+'October' Text
+' ' Text
+'2014' Text
+' ' Text
+'|' Punctuation
+'publisher' Name.Label
+'=' Operator
+'EU' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'France' Text
+"'" Text
+'s' Text
+' ' Text
+'total' Text
+' ' Text
+'land' Text
+' ' Text
+'area' Text
+',' Text
+' ' Text
+'with' Text
+' ' Text
+'its' Text
+' ' Text
+'overseas' Text
+' ' Text
+'departments' Text
+' ' Text
+'and' Text
+' ' Text
+'territories' Text
+' ' Text
+'(' Text
+'excluding' Text
+' ' Text
+'[[' Punctuation
+'Adélie Land' Name.Tag
+']]' Punctuation
+')' Text
+',' Text
+' ' Text
+'is' Text
+' ' Text
+'{{' Punctuation
+'Convert' Name.Tag
+'|' Punctuation
+'643801' Text
+'|' Punctuation
+'km2' Text
+'|' Punctuation
+'sqmi' Text
+'|' Punctuation
+'0' Text
+'|' Punctuation
+'abbr' Name.Label
+'=' Operator
+'on' Text
+'}}' Punctuation
+',' Text
+' ' Text
+'0' Text
+'.' Text
+'45' Text
+'%' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'total' Text
+' ' Text
+'land' Text
+' ' Text
+'area' Text
+' ' Text
+'on' Text
+' ' Text
+'Earth' Text
+'.' Text
+' ' Text
+'France' Text
+' ' Text
+'possesses' Text
+' ' Text
+'a' Text
+' ' Text
+'wide' Text
+' ' Text
+'variety' Text
+' ' Text
+'of' Text
+' ' Text
+'landscapes' Text
+',' Text
+' ' Text
+'from' Text
+' ' Text
+'coastal' Text
+' ' Text
+'plains' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'north' Text
+' ' Text
+'and' Text
+' ' Text
+'west' Text
+' ' Text
+'to' Text
+' ' Text
+'mountain' Text
+' ' Text
+'ranges' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Alps' Name.Tag
+']]' Punctuation
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'southeast' Text
+',' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Massif Central' Name.Tag
+']]' Punctuation
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'south' Text
+'-' Text
+'central' Text
+' ' Text
+'and' Text
+' ' Text
+'[[' Punctuation
+'Pyrenees' Name.Tag
+']]' Punctuation
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'southwest' Text
+'.' Text
+'\n' Text
+
+'\n' Text
+
+'Due' Text
+' ' Text
+'to' Text
+' ' Text
+'its' Text
+' ' Text
+'numerous' Text
+' ' Text
+'[[' Punctuation
+'Overseas departments and territories of France' Name.Tag
+'|' Punctuation
+'overseas' Text
+' ' Text
+'departments' Text
+' ' Text
+'and' Text
+' ' Text
+'territories' Text
+']]' Punctuation
+' ' Text
+'scattered' Text
+' ' Text
+'across' Text
+' ' Text
+'the' Text
+' ' Text
+'planet' Text
+',' Text
+' ' Text
+'France' Text
+' ' Text
+'possesses' Text
+' ' Text
+'the' Text
+' ' Text
+'second' Text
+'-' Text
+'largest' Text
+' ' Text
+'[[' Punctuation
+'Exclusive economic zone' Name.Tag
+']]' Punctuation
+' ' Text
+'(' Text
+'EEZ' Text
+')' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'world' Text
+',' Text
+' ' Text
+'covering' Text
+' ' Text
+'{{' Punctuation
+'Convert' Name.Tag
+'|' Punctuation
+'11035000' Text
+'|' Punctuation
+'km2' Text
+'|' Punctuation
+'sqmi' Text
+'|' Punctuation
+'-' Text
+'3' Text
+'|' Punctuation
+'abbr' Name.Label
+'=' Operator
+'on' Text
+'}}' Punctuation
+',' Text
+' ' Text
+'just' Text
+' ' Text
+'behind' Text
+' ' Text
+'the' Text
+' ' Text
+'EEZ' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'United States' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'which' Text
+' ' Text
+'covers' Text
+' ' Text
+'{{' Punctuation
+'Convert' Name.Tag
+'|' Punctuation
+'11351000' Text
+'|' Punctuation
+'km2' Text
+'|' Punctuation
+'sqmi' Text
+'|' Punctuation
+'-' Text
+'3' Text
+'|' Punctuation
+'abbr' Name.Label
+'=' Operator
+'on' Text
+'}}' Punctuation
+',' Text
+' ' Text
+'but' Text
+' ' Text
+'ahead' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'EEZ' Text
+' ' Text
+'of' Text
+' ' Text
+'Australia' Text
+',' Text
+' ' Text
+'which' Text
+' ' Text
+'covers' Text
+' ' Text
+'{{' Punctuation
+'Convert' Name.Tag
+'|' Punctuation
+'8148250' Text
+'|' Punctuation
+'km2' Text
+'|' Punctuation
+'sqmi' Text
+'|' Punctuation
+'-' Text
+'3' Text
+'|' Punctuation
+'abbr' Name.Label
+'=' Operator
+'on' Text
+'}}' Punctuation
+'.' Text
+' ' Text
+'Its' Text
+' ' Text
+'EEZ' Text
+' ' Text
+'covers' Text
+' ' Text
+'approximately' Text
+' ' Text
+'8' Text
+'%' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'total' Text
+' ' Text
+'surface' Text
+' ' Text
+'of' Text
+' ' Text
+'all' Text
+' ' Text
+'the' Text
+' ' Text
+'EEZs' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'world' Text
+'.' Text
+'\n' Text
+
+'\n' Text
+
+'===' Generic.Subheading
+'Geology, topography and hydrography' Generic.Subheading
+'===' Generic.Subheading
+'\n' Text.Whitespace
+
+'[[' Punctuation
+'File' Name.Namespace
+':' Punctuation
+'2013.07.05 roussillon - roque anthéron 172.JPG' Name.Tag
+'|' Punctuation
+'thumb' Text
+'|' Punctuation
+'Geological' Text
+' ' Text
+'formations' Text
+' ' Text
+'near' Text
+' ' Text
+'[[' Punctuation
+'Roussillon, Vaucluse' Name.Tag
+'|' Punctuation
+'Roussillon' Text
+']]' Punctuation
+',' Text
+' ' Text
+'[[' Punctuation
+'Vaucluse' Name.Tag
+']]' Punctuation
+']]' Punctuation
+'\n' Text
+
+'Metropolitan' Text
+' ' Text
+'France' Text
+' ' Text
+'has' Text
+' ' Text
+'a' Text
+' ' Text
+'wide' Text
+' ' Text
+'variety' Text
+' ' Text
+'of' Text
+' ' Text
+'topographical' Text
+' ' Text
+'sets' Text
+' ' Text
+'and' Text
+' ' Text
+'natural' Text
+' ' Text
+'landscapes' Text
+'.' Text
+' ' Text
+'Large' Text
+' ' Text
+'parts' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'current' Text
+' ' Text
+'territory' Text
+' ' Text
+'of' Text
+' ' Text
+'France' Text
+' ' Text
+'were' Text
+' ' Text
+'raised' Text
+' ' Text
+'during' Text
+' ' Text
+'several' Text
+' ' Text
+'tectonic' Text
+' ' Text
+'episodes' Text
+' ' Text
+'like' Text
+' ' Text
+'the' Text
+' ' Text
+'Hercynian' Text
+' ' Text
+'uplift' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'Paleozoic' Text
+' ' Text
+'Era' Text
+',' Text
+' ' Text
+'during' Text
+' ' Text
+'which' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Armorican Massif' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Massif Central' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Morvan' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Vosges' Name.Tag
+']]' Punctuation
+' ' Text
+'and' Text
+' ' Text
+'[[' Punctuation
+'Ardennes' Name.Tag
+']]' Punctuation
+' ' Text
+'ranges' Text
+' ' Text
+'and' Text
+' ' Text
+'the' Text
+' ' Text
+'island' Text
+' ' Text
+'of' Text
+' ' Text
+'[[' Punctuation
+'Corsica' Name.Tag
+']]' Punctuation
+' ' Text
+'were' Text
+' ' Text
+'formed' Text
+'.' Text
+' ' Text
+'These' Text
+' ' Text
+'massifs' Text
+' ' Text
+'delineate' Text
+' ' Text
+'several' Text
+' ' Text
+'sedimentary' Text
+' ' Text
+'basins' Text
+' ' Text
+'such' Text
+' ' Text
+'as' Text
+' ' Text
+'the' Text
+' ' Text
+'Aquitaine' Text
+' ' Text
+'basin' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'southwest' Text
+' ' Text
+'and' Text
+' ' Text
+'the' Text
+' ' Text
+'Paris' Text
+' ' Text
+'basin' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'north' Text
+',' Text
+' ' Text
+'the' Text
+' ' Text
+'latter' Text
+' ' Text
+'including' Text
+' ' Text
+'several' Text
+' ' Text
+'areas' Text
+' ' Text
+'of' Text
+' ' Text
+'particularly' Text
+' ' Text
+'fertile' Text
+' ' Text
+'ground' Text
+' ' Text
+'such' Text
+' ' Text
+'as' Text
+' ' Text
+'the' Text
+' ' Text
+'silt' Text
+' ' Text
+'beds' Text
+' ' Text
+'of' Text
+' ' Text
+'Beauce' Text
+' ' Text
+'and' Text
+' ' Text
+'Brie' Text
+'.' Text
+' ' Text
+'Various' Text
+' ' Text
+'routes' Text
+' ' Text
+'of' Text
+' ' Text
+'natural' Text
+' ' Text
+'passage' Text
+',' Text
+' ' Text
+'such' Text
+' ' Text
+'as' Text
+' ' Text
+'the' Text
+' ' Text
+'Rhône' Text
+' ' Text
+'Valley' Text
+',' Text
+' ' Text
+'allow' Text
+' ' Text
+'easy' Text
+' ' Text
+'communication' Text
+'.' Text
+' ' Text
+'The' Text
+' ' Text
+'Alpine' Text
+',' Text
+' ' Text
+'Pyrenean' Text
+' ' Text
+'and' Text
+' ' Text
+'Jura' Text
+' ' Text
+'mountains' Text
+' ' Text
+'are' Text
+' ' Text
+'much' Text
+' ' Text
+'younger' Text
+' ' Text
+'and' Text
+' ' Text
+'have' Text
+' ' Text
+'less' Text
+' ' Text
+'eroded' Text
+' ' Text
+'forms' Text
+'.' Text
+' ' Text
+'At' Text
+' ' Text
+'{{' Punctuation
+'Convert' Name.Tag
+'|' Punctuation
+'4810' Text
+'.' Text
+'45' Text
+'|' Punctuation
+'m' Text
+'|' Punctuation
+'ft' Text
+'|' Punctuation
+'0' Text
+'}}' Punctuation
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'news' Name.Tag
+' ' Text
+'|' Punctuation
+'date' Name.Label
+'=' Operator
+'6' Text
+' ' Text
+'November' Text
+' ' Text
+'2009' Text
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Mont' Text
+' ' Text
+'Blanc' Text
+' ' Text
+'shrinks' Text
+' ' Text
+'by' Text
+' ' Text
+'{{' Punctuation
+'Convert' Name.Tag
+'|' Punctuation
+'45' Text
+'|' Punctuation
+'cm' Text
+'|' Punctuation
+'2' Text
+'|' Punctuation
+'abbr' Name.Label
+'=' Operator
+'on' Text
+'}}' Punctuation
+' ' Text
+'in' Text
+' ' Text
+'two' Text
+' ' Text
+'years' Text
+' ' Text
+'|' Punctuation
+'work' Name.Label
+'=' Operator
+'The' Text
+' ' Text
+'Sydney' Text
+' ' Text
+'Morning' Text
+' ' Text
+'Herald' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'smh' Text
+'.' Text
+'com' Text
+'.' Text
+'au' Text
+'/' Text
+'environment' Text
+'/' Text
+'mont' Text
+'-' Text
+'blanc' Text
+'-' Text
+'shrinks' Text
+'-' Text
+'by' Text
+'-' Text
+'45cm' Text
+'-' Text
+'in' Text
+'-' Text
+'two' Text
+'-' Text
+'years' Text
+'-' Text
+'20091106' Text
+'-' Text
+'i0kk' Text
+'.' Text
+'html' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'9' Text
+' ' Text
+'August' Text
+' ' Text
+'2010' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'above' Text
+' ' Text
+'sea' Text
+' ' Text
+'level' Text
+',' Text
+' ' Text
+'[[' Punctuation
+'Mont Blanc' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'located' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'Alps' Text
+' ' Text
+'on' Text
+' ' Text
+'the' Text
+' ' Text
+'French' Text
+' ' Text
+'and' Text
+' ' Text
+'Italian' Text
+' ' Text
+'border' Text
+',' Text
+' ' Text
+'is' Text
+' ' Text
+'the' Text
+' ' Text
+'highest' Text
+' ' Text
+'point' Text
+' ' Text
+'in' Text
+' ' Text
+'Western' Text
+' ' Text
+'Europe' Text
+'.' Text
+' ' Text
+'Although' Text
+' ' Text
+'60' Text
+'%' Text
+' ' Text
+'of' Text
+' ' Text
+'municipalities' Text
+' ' Text
+'are' Text
+' ' Text
+'classified' Text
+' ' Text
+'as' Text
+' ' Text
+'having' Text
+' ' Text
+'seismic' Text
+' ' Text
+'risks' Text
+',' Text
+' ' Text
+'these' Text
+' ' Text
+'risks' Text
+' ' Text
+'remain' Text
+' ' Text
+'moderate' Text
+'.' Text
+'\n' Text
+
+'\n' Text
+
+'[[' Punctuation
+'File' Name.Namespace
+':' Punctuation
+"Roselière de Pauillac et carrelets sur l'estuaire de la Gironde, France.jpg" Name.Tag
+'|' Punctuation
+'thumb' Text
+'|' Punctuation
+'Reed' Text
+' ' Text
+'bed' Text
+' ' Text
+'on' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Gironde estuary' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'the' Text
+' ' Text
+'largest' Text
+' ' Text
+'estuary' Text
+' ' Text
+'in' Text
+' ' Text
+'Western' Text
+' ' Text
+'Europe' Text
+']]' Punctuation
+'\n' Text
+
+'\n' Text
+
+'The' Text
+' ' Text
+'coastlines' Text
+' ' Text
+'offer' Text
+' ' Text
+'contrasting' Text
+' ' Text
+'landscapes' Text
+':' Text
+' ' Text
+'mountain' Text
+' ' Text
+'ranges' Text
+' ' Text
+'along' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'French Riviera' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'coastal' Text
+' ' Text
+'cliffs' Text
+' ' Text
+'such' Text
+' ' Text
+'as' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+"Côte d'Albâtre" Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'and' Text
+' ' Text
+'wide' Text
+' ' Text
+'sandy' Text
+' ' Text
+'plains' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Languedoc' Name.Tag
+']]' Punctuation
+'.' Text
+' ' Text
+'Corsica' Text
+' ' Text
+'lies' Text
+' ' Text
+'off' Text
+' ' Text
+'the' Text
+' ' Text
+'Mediterranean' Text
+' ' Text
+'coast' Text
+'.' Text
+' ' Text
+'France' Text
+' ' Text
+'has' Text
+' ' Text
+'an' Text
+' ' Text
+'extensive' Text
+' ' Text
+'river' Text
+' ' Text
+'system' Text
+' ' Text
+'consisting' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'four' Text
+' ' Text
+'major' Text
+' ' Text
+'rivers' Text
+' ' Text
+'[[' Punctuation
+'Seine' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Loire' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Garonne' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Rhône' Name.Tag
+']]' Punctuation
+' ' Text
+'and' Text
+' ' Text
+'their' Text
+' ' Text
+'tributaries' Text
+',' Text
+' ' Text
+'whose' Text
+' ' Text
+'combined' Text
+' ' Text
+'catchment' Text
+' ' Text
+'includes' Text
+' ' Text
+'over' Text
+' ' Text
+'62' Text
+'%' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'metropolitan' Text
+' ' Text
+'territory' Text
+'.' Text
+' ' Text
+'The' Text
+' ' Text
+'Rhône' Text
+' ' Text
+'divides' Text
+' ' Text
+'the' Text
+' ' Text
+'Massif' Text
+' ' Text
+'Central' Text
+' ' Text
+'from' Text
+' ' Text
+'the' Text
+' ' Text
+'Alps' Text
+' ' Text
+'and' Text
+' ' Text
+'flows' Text
+' ' Text
+'into' Text
+' ' Text
+'the' Text
+' ' Text
+'Mediterranean' Text
+' ' Text
+'Sea' Text
+' ' Text
+'at' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Camargue' Name.Tag
+']]' Punctuation
+'.' Text
+' ' Text
+'The' Text
+' ' Text
+'Garonne' Text
+' ' Text
+'meets' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Dordogne (river)' Name.Tag
+'|' Punctuation
+'Dordogne' Text
+']]' Punctuation
+' ' Text
+'just' Text
+' ' Text
+'after' Text
+' ' Text
+'Bordeaux' Text
+',' Text
+' ' Text
+'forming' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Gironde estuary' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'the' Text
+' ' Text
+'largest' Text
+' ' Text
+'estuary' Text
+' ' Text
+'in' Text
+' ' Text
+'Western' Text
+' ' Text
+'Europe' Text
+' ' Text
+'which' Text
+' ' Text
+'after' Text
+' ' Text
+'approximately' Text
+' ' Text
+'{{' Punctuation
+'Convert' Name.Tag
+'|' Punctuation
+'100' Text
+'|' Punctuation
+'km' Text
+'|' Punctuation
+'mi' Text
+'|' Punctuation
+'0' Text
+'}}' Punctuation
+' ' Text
+'empties' Text
+' ' Text
+'into' Text
+' ' Text
+'the' Text
+' ' Text
+'Atlantic' Text
+' ' Text
+'Ocean' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Close' Text
+' ' Text
+'to' Text
+' ' Text
+'ESTUARY' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'medoc' Text
+'-' Text
+'tourisme' Text
+'.' Text
+'com' Text
+'/' Text
+'en' Text
+'/' Text
+'mondes' Text
+'/' Text
+'close' Text
+'-' Text
+'to' Text
+'-' Text
+'estuary' Text
+'/' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'Other' Text
+' ' Text
+'water' Text
+' ' Text
+'courses' Text
+' ' Text
+'drain' Text
+' ' Text
+'towards' Text
+' ' Text
+'the' Text
+' ' Text
+'Meuse' Text
+' ' Text
+'and' Text
+' ' Text
+'Rhine' Text
+' ' Text
+'along' Text
+' ' Text
+'the' Text
+' ' Text
+'northeastern' Text
+' ' Text
+'borders' Text
+'.' Text
+' ' Text
+'France' Text
+' ' Text
+'has' Text
+' ' Text
+'{{' Punctuation
+'Convert' Name.Tag
+'|' Punctuation
+'11' Text
+'|' Punctuation
+'e6km2' Text
+'}}' Punctuation
+' ' Text
+'of' Text
+' ' Text
+'marine' Text
+' ' Text
+'waters' Text
+' ' Text
+'within' Text
+' ' Text
+'three' Text
+' ' Text
+'oceans' Text
+' ' Text
+'under' Text
+' ' Text
+'its' Text
+' ' Text
+'jurisdiction' Text
+',' Text
+' ' Text
+'of' Text
+' ' Text
+'which' Text
+' ' Text
+'97' Text
+'%' Text
+' ' Text
+'are' Text
+' ' Text
+'overseas' Text
+'.' Text
+'\n' Text
+
+'\n' Text
+
+'===' Generic.Subheading
+'Environment' Generic.Subheading
+'===' Generic.Subheading
+'\n' Text.Whitespace
+
+'{{' Punctuation
+'See' Name.Tag
+' ' Name.Tag
+'also' Name.Tag
+'|' Punctuation
+'List' Text
+' ' Text
+'of' Text
+' ' Text
+'national' Text
+' ' Text
+'parks' Text
+' ' Text
+'of' Text
+' ' Text
+'France' Text
+'|' Punctuation
+'Regional' Text
+' ' Text
+'natural' Text
+' ' Text
+'parks' Text
+' ' Text
+'of' Text
+' ' Text
+'France' Text
+'|' Punctuation
+'Climate' Text
+' ' Text
+'change' Text
+' ' Text
+'in' Text
+' ' Text
+'France' Text
+'}}' Punctuation
+'\n' Text
+
+'[[' Punctuation
+'File' Name.Namespace
+':' Punctuation
+'Saül 01 (cropped).jpg' Name.Tag
+'|' Punctuation
+'thumb' Text
+'|' Punctuation
+'The' Text
+' ' Text
+'[[' Punctuation
+'Guiana Amazonian Park' Name.Tag
+']]' Punctuation
+' ' Text
+'is' Text
+' ' Text
+'the' Text
+' ' Text
+'largest' Text
+' ' Text
+'[[' Punctuation
+'List of national parks of France' Name.Tag
+'|' Punctuation
+'national' Text
+' ' Text
+'park' Text
+' ' Text
+'of' Text
+' ' Text
+'France' Text
+']]' Punctuation
+',' Text
+' ' Text
+'aiming' Text
+' ' Text
+'at' Text
+' ' Text
+'protecting' Text
+' ' Text
+'part' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Amazonian forest' Name.Tag
+']]' Punctuation
+' ' Text
+'located' Text
+' ' Text
+'in' Text
+' ' Text
+'[[' Punctuation
+'French Guiana' Name.Tag
+']]' Punctuation
+']]' Punctuation
+'\n' Text
+
+'France' Text
+' ' Text
+'was' Text
+' ' Text
+'one' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'first' Text
+' ' Text
+'countries' Text
+' ' Text
+'to' Text
+' ' Text
+'create' Text
+' ' Text
+'an' Text
+' ' Text
+'environment' Text
+' ' Text
+'ministry' Text
+',' Text
+' ' Text
+'in' Text
+' ' Text
+'1971' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Protection' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'Environment' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'ambafrance' Text
+'-' Text
+'ca' Text
+'.' Text
+'org' Text
+'/' Text
+'kid' Text
+'/' Text
+'pages_en' Text
+'/' Text
+'eco6' Text
+'.' Text
+'htm' Text
+' ' Text
+'|' Punctuation
+'url-status' Name.Label
+'=' Operator
+'dead' Text
+' ' Text
+'|' Punctuation
+'archive-url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'web' Text
+'.' Text
+'archive' Text
+'.' Text
+'org' Text
+'/' Text
+'web' Text
+'/' Text
+'20110425005903' Text
+'/' Text
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'ambafrance' Text
+'-' Text
+'ca' Text
+'.' Text
+'org' Text
+'/' Text
+'kid' Text
+'/' Text
+'pages_en' Text
+'/' Text
+'eco6' Text
+'.' Text
+'htm' Text
+' ' Text
+'|' Punctuation
+'archive-date' Name.Label
+'=' Operator
+'25' Text
+' ' Text
+'April' Text
+' ' Text
+'2011' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'Although' Text
+' ' Text
+'it' Text
+' ' Text
+'is' Text
+' ' Text
+'one' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'most' Text
+' ' Text
+'industrialised' Text
+' ' Text
+'countries' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'world' Text
+',' Text
+' ' Text
+'France' Text
+' ' Text
+'is' Text
+' ' Text
+'ranked' Text
+' ' Text
+'[[' Punctuation
+'List of countries by carbon dioxide emissions' Name.Tag
+'|' Punctuation
+'only' Text
+' ' Text
+'19th' Text
+' ' Text
+'by' Text
+' ' Text
+'carbon' Text
+' ' Text
+'dioxide' Text
+' ' Text
+'emissions' Text
+']]' Punctuation
+',' Text
+' ' Text
+'behind' Text
+' ' Text
+'less' Text
+' ' Text
+'populous' Text
+' ' Text
+'nations' Text
+' ' Text
+'such' Text
+' ' Text
+'as' Text
+' ' Text
+'Canada' Text
+' ' Text
+'or' Text
+' ' Text
+'Australia' Text
+'.' Text
+' ' Text
+'This' Text
+' ' Text
+'is' Text
+' ' Text
+'due' Text
+' ' Text
+'to' Text
+' ' Text
+'the' Text
+' ' Text
+'country' Text
+"'" Text
+'s' Text
+' ' Text
+'heavy' Text
+' ' Text
+'investment' Text
+' ' Text
+'in' Text
+' ' Text
+'[[' Punctuation
+'nuclear power' Name.Tag
+']]' Punctuation
+' ' Text
+'following' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'1973 oil crisis' Name.Tag
+']]' Punctuation
+',' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'date' Name.Label
+'=' Operator
+'July' Text
+' ' Text
+'2011' Text
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Nuclear' Text
+' ' Text
+'Power' Text
+' ' Text
+'in' Text
+' ' Text
+'France' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'world' Text
+'-' Text
+'nuclear' Text
+'.' Text
+'org' Text
+'/' Text
+'info' Text
+'/' Text
+'inf40' Text
+'.' Text
+'html' Text
+' ' Text
+'|' Punctuation
+'url-status' Name.Label
+'=' Operator
+'dead' Text
+' ' Text
+'|' Punctuation
+'archive-url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'web' Text
+'.' Text
+'archive' Text
+'.' Text
+'org' Text
+'/' Text
+'web' Text
+'/' Text
+'20110719055222' Text
+'/' Text
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'world' Text
+'-' Text
+'nuclear' Text
+'.' Text
+'org' Text
+'/' Text
+'info' Text
+'/' Text
+'inf40' Text
+'.' Text
+'html' Text
+' ' Text
+'|' Punctuation
+'archive-date' Name.Label
+'=' Operator
+'19' Text
+' ' Text
+'July' Text
+' ' Text
+'2011' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'17' Text
+' ' Text
+'July' Text
+' ' Text
+'2011' Text
+' ' Text
+'|' Punctuation
+'website' Name.Label
+'=' Operator
+'World' Text
+' ' Text
+'Nuclear' Text
+' ' Text
+'Association' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'which' Text
+' ' Text
+'now' Text
+' ' Text
+'accounts' Text
+' ' Text
+'for' Text
+' ' Text
+'75' Text
+' ' Text
+'percent' Text
+' ' Text
+'of' Text
+' ' Text
+'its' Text
+' ' Text
+'electricity' Text
+' ' Text
+'production' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'encyclopedia' Name.Tag
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Energy' Text
+' ' Text
+'profile' Text
+' ' Text
+'of' Text
+' ' Text
+'France' Text
+' ' Text
+'|' Punctuation
+'encyclopedia' Name.Label
+'=' Operator
+'Encyclopedia' Text
+' ' Text
+'of' Text
+' ' Text
+'Earth' Text
+' ' Text
+'|' Punctuation
+'publisher' Name.Label
+'=' Operator
+'Environmental' Text
+' ' Text
+'Information' Text
+' ' Text
+'Coalition' Text
+',' Text
+' ' Text
+'National' Text
+' ' Text
+'Council' Text
+' ' Text
+'for' Text
+' ' Text
+'Science' Text
+' ' Text
+'and' Text
+' ' Text
+'the' Text
+' ' Text
+'Environment' Text
+' ' Text
+'|' Punctuation
+'location' Name.Label
+'=' Operator
+'Washington' Text
+',' Text
+' ' Text
+'D' Text
+'.' Text
+'C' Text
+'.' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'eoearth' Text
+'.' Text
+'org' Text
+'/' Text
+'article' Text
+'/' Text
+'Energy_profile_of_France' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'17' Text
+' ' Text
+'July' Text
+' ' Text
+'2011' Text
+' ' Text
+'|' Punctuation
+'date' Name.Label
+'=' Operator
+'10' Text
+' ' Text
+'September' Text
+' ' Text
+'2010' Text
+' ' Text
+'|' Punctuation
+'others' Name.Label
+'=' Operator
+'Topic' Text
+' ' Text
+'editor' Text
+':' Text
+' ' Text
+'Langdon' Text
+' ' Text
+'D' Text
+'.' Text
+' ' Text
+'Clough' Text
+' ' Text
+'|' Punctuation
+'orig-date' Name.Label
+'=' Operator
+'First' Text
+' ' Text
+'published' Text
+':' Text
+' ' Text
+'23' Text
+' ' Text
+'April' Text
+' ' Text
+'2010' Text
+' ' Text
+'|' Punctuation
+'editor-last' Name.Label
+'=' Operator
+'Cutler' Text
+' ' Text
+'J' Text
+'.' Text
+' ' Text
+'Cleveland' Text
+' ' Text
+'|' Punctuation
+'archive-url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'web' Text
+'.' Text
+'archive' Text
+'.' Text
+'org' Text
+'/' Text
+'web' Text
+'/' Text
+'20110429235144' Text
+'/' Text
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'eoearth' Text
+'.' Text
+'org' Text
+'/' Text
+'article' Text
+'/' Text
+'Energy_profile_of_France' Text
+' ' Text
+'|' Punctuation
+'archive-date' Name.Label
+'=' Operator
+'29' Text
+' ' Text
+'April' Text
+' ' Text
+'2011' Text
+' ' Text
+'|' Punctuation
+'author' Name.Label
+'=' Operator
+'Eia' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'and' Text
+' ' Text
+'results' Text
+' ' Text
+'in' Text
+' ' Text
+'less' Text
+' ' Text
+'pollution' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'journal' Name.Tag
+' ' Text
+'|' Punctuation
+'last' Name.Label
+'=' Operator
+'Morgane' Text
+' ' Text
+'Remy' Text
+' ' Text
+'|' Punctuation
+'date' Name.Label
+'=' Operator
+'18' Text
+' ' Text
+'June' Text
+' ' Text
+'2010' Text
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'CO2' Text
+' ' Text
+':' Text
+' ' Text
+'la' Text
+' ' Text
+'France' Text
+' ' Text
+'moins' Text
+' ' Text
+'pollueuse' Text
+' ' Text
+'grâce' Text
+' ' Text
+'au' Text
+' ' Text
+'nucléaire' Text
+' ' Text
+'|' Punctuation
+'trans-title' Name.Label
+'=' Operator
+'CO2' Text
+':' Text
+' ' Text
+'France' Text
+' ' Text
+'less' Text
+' ' Text
+'polluting' Text
+' ' Text
+'thanks' Text
+' ' Text
+'to' Text
+' ' Text
+'nuclear' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'usinenouvelle' Text
+'.' Text
+'com' Text
+'/' Text
+'article' Text
+'/' Text
+'co2' Text
+'-' Text
+'la' Text
+'-' Text
+'france' Text
+'-' Text
+'moins' Text
+'-' Text
+'pollueuse' Text
+'-' Text
+'grace' Text
+'-' Text
+'au' Text
+'-' Text
+'nucleaire' Text
+'.' Text
+'N133933' Text
+' ' Text
+'|' Punctuation
+'url-status' Name.Label
+'=' Operator
+'live' Text
+' ' Text
+'|' Punctuation
+'journal' Name.Label
+'=' Operator
+'L' Text
+"'" Text
+'Usine' Text
+' ' Text
+'Nouvelle' Text
+' ' Text
+'|' Punctuation
+'language' Name.Label
+'=' Operator
+'fr' Text
+' ' Text
+'|' Punctuation
+'archive-url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'web' Text
+'.' Text
+'archive' Text
+'.' Text
+'org' Text
+'/' Text
+'web' Text
+'/' Text
+'20100621042424' Text
+'/' Text
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'usinenouvelle' Text
+'.' Text
+'com' Text
+'/' Text
+'article' Text
+'/' Text
+'co2' Text
+'-' Text
+'la' Text
+'-' Text
+'france' Text
+'-' Text
+'moins' Text
+'-' Text
+'pollueuse' Text
+'-' Text
+'grace' Text
+'-' Text
+'au' Text
+'-' Text
+'nucleaire' Text
+'.' Text
+'N133933' Text
+' ' Text
+'|' Punctuation
+'archive-date' Name.Label
+'=' Operator
+'21' Text
+' ' Text
+'June' Text
+' ' Text
+'2010' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'date' Name.Label
+'=' Operator
+'7' Text
+' ' Text
+'January' Text
+' ' Text
+'2008' Text
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'L' Text
+"'" Text
+'énergie' Text
+' ' Text
+'nucléaire' Text
+' ' Text
+'en' Text
+' ' Text
+'France' Text
+' ' Text
+'|' Punctuation
+'trans-title' Name.Label
+'=' Operator
+'Nuclear' Text
+' ' Text
+'energy' Text
+' ' Text
+'in' Text
+' ' Text
+'France' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'ambafrance' Text
+'-' Text
+'cn' Text
+'.' Text
+'org' Text
+'/' Text
+'L' Text
+'-' Text
+'energie' Text
+'-' Text
+'nucleaire' Text
+'-' Text
+'en' Text
+'-' Text
+'France' Text
+'.' Text
+'html' Text
+' ' Text
+'|' Punctuation
+'archive-url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'web' Text
+'.' Text
+'archive' Text
+'.' Text
+'org' Text
+'/' Text
+'web' Text
+'/' Text
+'20100701211529' Text
+'/' Text
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'ambafrance' Text
+'-' Text
+'cn' Text
+'.' Text
+'org' Text
+'/' Text
+'L' Text
+'-' Text
+'energie' Text
+'-' Text
+'nucleaire' Text
+'-' Text
+'en' Text
+'-' Text
+'France' Text
+'.' Text
+'html' Text
+' ' Text
+'|' Punctuation
+'archive-date' Name.Label
+'=' Operator
+'1' Text
+' ' Text
+'July' Text
+' ' Text
+'2010' Text
+' ' Text
+'|' Punctuation
+'website' Name.Label
+'=' Operator
+'La' Text
+' ' Text
+'France' Text
+' ' Text
+'en' Text
+' ' Text
+'Chine' Text
+' ' Text
+'|' Punctuation
+'language' Name.Label
+'=' Operator
+'fr' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'According' Text
+' ' Text
+'to' Text
+' ' Text
+'the' Text
+' ' Text
+'2020' Text
+' ' Text
+'[[' Punctuation
+'Environmental Performance Index' Name.Tag
+']]' Punctuation
+' ' Text
+'conducted' Text
+' ' Text
+'by' Text
+' ' Text
+'[[' Punctuation
+'Yale' Name.Tag
+']]' Punctuation
+' ' Text
+'and' Text
+' ' Text
+'[[' Punctuation
+'Columbia University' Name.Tag
+'|' Punctuation
+'Columbia' Text
+']]' Punctuation
+',' Text
+' ' Text
+'France' Text
+' ' Text
+'was' Text
+' ' Text
+'the' Text
+' ' Text
+'fifth' Text
+' ' Text
+'most' Text
+' ' Text
+'environmentally' Text
+' ' Text
+'conscious' Text
+' ' Text
+'country' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'world' Text
+' ' Text
+'(' Text
+'behind' Text
+' ' Text
+'the' Text
+' ' Text
+'United' Text
+' ' Text
+'Kingdom' Text
+')' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'2018' Text
+' ' Text
+'EPI' Text
+' ' Text
+'Results' Text
+' ' Text
+'{{' Punctuation
+'!' Name.Function
+'}}' Punctuation
+' ' Text
+'Environmental' Text
+' ' Text
+'Performance' Text
+' ' Text
+'Index' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'epi' Text
+'.' Text
+'envirocenter' Text
+'.' Text
+'yale' Text
+'.' Text
+'edu' Text
+'/' Text
+'epi' Text
+'-' Text
+'topline' Text
+' ' Text
+'|' Punctuation
+'url-status' Name.Label
+'=' Operator
+'dead' Text
+' ' Text
+'|' Punctuation
+'archive-url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'web' Text
+'.' Text
+'archive' Text
+'.' Text
+'org' Text
+'/' Text
+'web' Text
+'/' Text
+'20190723205354' Text
+'/' Text
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'epi' Text
+'.' Text
+'envirocenter' Text
+'.' Text
+'yale' Text
+'.' Text
+'edu' Text
+'/' Text
+'epi' Text
+'-' Text
+'topline' Text
+' ' Text
+'|' Punctuation
+'archive-date' Name.Label
+'=' Operator
+'23' Text
+' ' Text
+'July' Text
+' ' Text
+'2019' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'20' Text
+' ' Text
+'August' Text
+' ' Text
+'2019' Text
+' ' Text
+'|' Punctuation
+'website' Name.Label
+'=' Operator
+'epi' Text
+'.' Text
+'envirocenter' Text
+'.' Text
+'yale' Text
+'.' Text
+'edu' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'last' Name.Label
+'=' Operator
+'Hsu' Text
+' ' Text
+'|' Punctuation
+'first' Name.Label
+'=' Operator
+'A' Text
+'.' Text
+' ' Text
+'|' Punctuation
+'display-authors' Name.Label
+'=' Operator
+'etal' Text
+' ' Text
+'|' Punctuation
+'year' Name.Label
+'=' Operator
+'2016' Text
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'2016' Text
+' ' Text
+'Environmental' Text
+' ' Text
+'Performance' Text
+' ' Text
+'Index' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'epi' Text
+'.' Text
+'yale' Text
+'.' Text
+'edu' Text
+'/' Text
+'sites' Text
+'/' Text
+'default' Text
+'/' Text
+'files' Text
+'/' Text
+'2016EPI_Full_Report_opt' Text
+'.' Text
+'pdf' Text
+' ' Text
+'|' Punctuation
+'url-status' Name.Label
+'=' Operator
+'dead' Text
+' ' Text
+'|' Punctuation
+'archive-url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'web' Text
+'.' Text
+'archive' Text
+'.' Text
+'org' Text
+'/' Text
+'web' Text
+'/' Text
+'20171004102150' Text
+'/' Text
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'epi' Text
+'.' Text
+'yale' Text
+'.' Text
+'edu' Text
+'/' Text
+'sites' Text
+'/' Text
+'default' Text
+'/' Text
+'files' Text
+'/' Text
+'2016EPI_Full_Report_opt' Text
+'.' Text
+'pdf' Text
+' ' Text
+'|' Punctuation
+'archive-date' Name.Label
+'=' Operator
+'4' Text
+' ' Text
+'October' Text
+' ' Text
+'2017' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'14' Text
+' ' Text
+'December' Text
+' ' Text
+'2017' Text
+' ' Text
+'|' Punctuation
+'publisher' Name.Label
+'=' Operator
+'Yale' Text
+' ' Text
+'University' Text
+' ' Text
+'|' Punctuation
+'location' Name.Label
+'=' Operator
+'New' Text
+' ' Text
+'Haven' Text
+',' Text
+' ' Text
+'CT' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'\n' Text
+
+'\n' Text
+
+'Like' Text
+' ' Text
+'all' Text
+' ' Text
+'European' Text
+' ' Text
+'Union' Text
+' ' Text
+'state' Text
+' ' Text
+'members' Text
+',' Text
+' ' Text
+'France' Text
+' ' Text
+'agreed' Text
+' ' Text
+'to' Text
+' ' Text
+'cut' Text
+' ' Text
+'[[' Punctuation
+'carbon emissions' Name.Tag
+']]' Punctuation
+' ' Text
+'by' Text
+' ' Text
+'at' Text
+' ' Text
+'least' Text
+' ' Text
+'20' Text
+'%' Text
+' ' Text
+'of' Text
+' ' Text
+'1990' Text
+' ' Text
+'levels' Text
+' ' Text
+'by' Text
+' ' Text
+'2020' Text
+',' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'news' Name.Tag
+' ' Text
+'|' Punctuation
+'last' Name.Label
+'=' Operator
+'Ian' Text
+' ' Text
+'Traynor' Text
+' ' Text
+'and' Text
+' ' Text
+'David' Text
+' ' Text
+'Gow' Text
+' ' Text
+'|' Punctuation
+'date' Name.Label
+'=' Operator
+'21' Text
+' ' Text
+'February' Text
+' ' Text
+'2007' Text
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'EU' Text
+' ' Text
+'promises' Text
+' ' Text
+'20' Text
+'%' Text
+' ' Text
+'reduction' Text
+' ' Text
+'in' Text
+' ' Text
+'carbon' Text
+' ' Text
+'emissions' Text
+' ' Text
+'by' Text
+' ' Text
+'2020' Text
+' ' Text
+'|' Punctuation
+'work' Name.Label
+'=' Operator
+'The' Text
+' ' Text
+'Guardian' Text
+' ' Text
+'|' Punctuation
+'location' Name.Label
+'=' Operator
+'London' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'theguardian' Text
+'.' Text
+'com' Text
+'/' Text
+'environment' Text
+'/' Text
+'2007' Text
+'/' Text
+'feb' Text
+'/' Text
+'21' Text
+'/' Text
+'climatechange' Text
+'.' Text
+'climatechangeenvironment' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'21' Text
+' ' Text
+'July' Text
+' ' Text
+'2011' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'compared' Text
+' ' Text
+'to' Text
+' ' Text
+'the' Text
+' ' Text
+'United' Text
+' ' Text
+'States' Text
+"'" Text
+' ' Text
+'plan' Text
+' ' Text
+'to' Text
+' ' Text
+'reduce' Text
+' ' Text
+'emissions' Text
+' ' Text
+'by' Text
+' ' Text
+'4' Text
+'%' Text
+' ' Text
+'of' Text
+' ' Text
+'1990' Text
+' ' Text
+'levels' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'news' Name.Tag
+' ' Text
+'|' Punctuation
+'last' Name.Label
+'=' Operator
+'Marie' Text
+' ' Text
+'Verdier' Text
+' ' Text
+'|' Punctuation
+'date' Name.Label
+'=' Operator
+'6' Text
+' ' Text
+'December' Text
+' ' Text
+'2009' Text
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Les' Text
+' ' Text
+'quatre' Text
+' ' Text
+'enjeux' Text
+' ' Text
+'de' Text
+' ' Text
+'Copenhague' Text
+' ' Text
+'|' Punctuation
+'work' Name.Label
+'=' Operator
+'[[' Punctuation
+'La Croix (newspaper)' Name.Tag
+'|' Punctuation
+'La' Text
+' ' Text
+'Croix' Text
+']]' Punctuation
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'la' Text
+'-' Text
+'croix' Text
+'.' Text
+'com' Text
+'/' Text
+'Actualite' Text
+'/' Text
+'S' Text
+'-' Text
+'informer' Text
+'/' Text
+'Sciences' Text
+'/' Text
+'Les' Text
+'-' Text
+'quatre' Text
+'-' Text
+'enjeux' Text
+'-' Text
+'de' Text
+'-' Text
+'Copenhague' Text
+'-' Text
+'_NG_' Text
+'-' Text
+'2009' Text
+'-' Text
+'12' Text
+'-' Text
+'06' Text
+'-' Text
+'569870' Text
+' ' Text
+'|' Punctuation
+'url-status' Name.Label
+'=' Operator
+'live' Text
+' ' Text
+'|' Punctuation
+'archive-url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'web' Text
+'.' Text
+'archive' Text
+'.' Text
+'org' Text
+'/' Text
+'web' Text
+'/' Text
+'20120111125721' Text
+'/' Text
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'la' Text
+'-' Text
+'croix' Text
+'.' Text
+'com' Text
+'/' Text
+'Actualite' Text
+'/' Text
+'S' Text
+'-' Text
+'informer' Text
+'/' Text
+'Sciences' Text
+'/' Text
+'Les' Text
+'-' Text
+'quatre' Text
+'-' Text
+'enjeux' Text
+'-' Text
+'de' Text
+'-' Text
+'Copenhague' Text
+'-' Text
+'_NG_' Text
+'-' Text
+'2009' Text
+'-' Text
+'12' Text
+'-' Text
+'06' Text
+'-' Text
+'569870' Text
+' ' Text
+'|' Punctuation
+'archive-date' Name.Label
+'=' Operator
+'11' Text
+' ' Text
+'January' Text
+' ' Text
+'2012' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'{{' Punctuation
+'As' Name.Tag
+' ' Name.Tag
+'of' Name.Tag
+'|' Punctuation
+'2009' Text
+'}}' Punctuation
+',' Text
+' ' Text
+'French' Text
+' ' Text
+'carbon' Text
+' ' Text
+'dioxide' Text
+' ' Text
+'emissions' Text
+' ' Text
+'per' Text
+' ' Text
+'capita' Text
+' ' Text
+'were' Text
+' ' Text
+'lower' Text
+' ' Text
+'than' Text
+' ' Text
+'that' Text
+' ' Text
+'of' Text
+' ' Text
+'China' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'news' Name.Tag
+' ' Text
+'|' Punctuation
+'last' Name.Label
+'=' Operator
+'Kanter' Text
+' ' Text
+'|' Punctuation
+'first' Name.Label
+'=' Operator
+'James' Text
+' ' Text
+'|' Punctuation
+'date' Name.Label
+'=' Operator
+'1' Text
+' ' Text
+'July' Text
+' ' Text
+'2010' Text
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Per' Text
+'-' Text
+'Capita' Text
+' ' Text
+'Emissions' Text
+' ' Text
+'Rising' Text
+' ' Text
+'in' Text
+' ' Text
+'China' Text
+' ' Text
+'|' Punctuation
+'work' Name.Label
+'=' Operator
+'The' Text
+' ' Text
+'New' Text
+' ' Text
+'York' Text
+' ' Text
+'Times' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'green' Text
+'.' Text
+'blogs' Text
+'.' Text
+'nytimes' Text
+'.' Text
+'com' Text
+'/' Text
+'2010' Text
+'/' Text
+'07' Text
+'/' Text
+'01' Text
+'/' Text
+'emissions' Text
+'-' Text
+'soar' Text
+'-' Text
+'in' Text
+'-' Text
+'china' Text
+'-' Text
+'and' Text
+'-' Text
+'india' Text
+'/' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'21' Text
+' ' Text
+'July' Text
+' ' Text
+'2011' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'The' Text
+' ' Text
+'country' Text
+' ' Text
+'was' Text
+' ' Text
+'set' Text
+' ' Text
+'to' Text
+' ' Text
+'impose' Text
+' ' Text
+'a' Text
+' ' Text
+'[[' Punctuation
+'carbon tax' Name.Tag
+']]' Punctuation
+' ' Text
+'in' Text
+' ' Text
+'2009' Text
+' ' Text
+'at' Text
+' ' Text
+'17' Text
+' ' Text
+'euros' Text
+' ' Text
+'per' Text
+' ' Text
+'tonne' Text
+' ' Text
+'of' Text
+' ' Text
+'carbon' Text
+' ' Text
+'emitted' Text
+',' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'news' Name.Tag
+' ' Text
+'|' Punctuation
+'date' Name.Label
+'=' Operator
+'10' Text
+' ' Text
+'September' Text
+' ' Text
+'2009' Text
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'France' Text
+' ' Text
+'Sets' Text
+' ' Text
+'Carbon' Text
+' ' Text
+'Tax' Text
+' ' Text
+'at' Text
+' ' Text
+'17' Text
+' ' Text
+'Euros' Text
+' ' Text
+'a' Text
+' ' Text
+'Ton' Text
+' ' Text
+'|' Punctuation
+'work' Name.Label
+'=' Operator
+'The' Text
+' ' Text
+'New' Text
+' ' Text
+'York' Text
+' ' Text
+'Times' Text
+' ' Text
+'|' Punctuation
+'agency' Name.Label
+'=' Operator
+'Reuters' Text
+' ' Text
+'|' Punctuation
+'location' Name.Label
+'=' Operator
+'France' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'nytimes' Text
+'.' Text
+'com' Text
+'/' Text
+'2009' Text
+'/' Text
+'09' Text
+'/' Text
+'11' Text
+'/' Text
+'business' Text
+'/' Text
+'global' Text
+'/' Text
+'11carbon' Text
+'.' Text
+'html' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'21' Text
+' ' Text
+'July' Text
+' ' Text
+'2011' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'which' Text
+' ' Text
+'would' Text
+' ' Text
+'have' Text
+' ' Text
+'raised' Text
+' ' Text
+'4' Text
+'&nbsp;' Name.Entity
+'billion' Text
+' ' Text
+'euros' Text
+' ' Text
+'of' Text
+' ' Text
+'revenue' Text
+' ' Text
+'annually' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'news' Name.Tag
+' ' Text
+'|' Punctuation
+'date' Name.Label
+'=' Operator
+'10' Text
+' ' Text
+'September' Text
+' ' Text
+'2009' Text
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'France' Text
+' ' Text
+'set' Text
+' ' Text
+'to' Text
+' ' Text
+'impose' Text
+' ' Text
+'carbon' Text
+' ' Text
+'tax' Text
+' ' Text
+'|' Punctuation
+'work' Name.Label
+'=' Operator
+'BBC' Text
+' ' Text
+'News' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'news' Text
+'.' Text
+'bbc' Text
+'.' Text
+'co' Text
+'.' Text
+'uk' Text
+'/' Text
+'2' Text
+'/' Text
+'hi' Text
+'/' Text
+'europe' Text
+'/' Text
+'8248392' Text
+'.' Text
+'stm' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'21' Text
+' ' Text
+'July' Text
+' ' Text
+'2011' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'However' Text
+',' Text
+' ' Text
+'the' Text
+' ' Text
+'plan' Text
+' ' Text
+'was' Text
+' ' Text
+'abandoned' Text
+' ' Text
+'due' Text
+' ' Text
+'to' Text
+' ' Text
+'fears' Text
+' ' Text
+'of' Text
+' ' Text
+'burdening' Text
+' ' Text
+'French' Text
+' ' Text
+'businesses' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'news' Name.Tag
+' ' Text
+'|' Punctuation
+'last' Name.Label
+'=' Operator
+'Saltmarsh' Text
+' ' Text
+'|' Punctuation
+'first' Name.Label
+'=' Operator
+'Matthew' Text
+' ' Text
+'|' Punctuation
+'date' Name.Label
+'=' Operator
+'23' Text
+' ' Text
+'March' Text
+' ' Text
+'2010' Text
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'France' Text
+' ' Text
+'Abandons' Text
+' ' Text
+'Plan' Text
+' ' Text
+'for' Text
+' ' Text
+'Carbon' Text
+' ' Text
+'Tax' Text
+' ' Text
+'|' Punctuation
+'work' Name.Label
+'=' Operator
+'The' Text
+' ' Text
+'New' Text
+' ' Text
+'York' Text
+' ' Text
+'Times' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'nytimes' Text
+'.' Text
+'com' Text
+'/' Text
+'2010' Text
+'/' Text
+'03' Text
+'/' Text
+'24' Text
+'/' Text
+'business' Text
+'/' Text
+'global' Text
+'/' Text
+'24iht' Text
+'-' Text
+'carbon' Text
+'.' Text
+'html' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'21' Text
+' ' Text
+'July' Text
+' ' Text
+'2011' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'\n' Text
+
+'\n' Text
+
+'Forests' Text
+' ' Text
+'account' Text
+' ' Text
+'for' Text
+' ' Text
+'31' Text
+' ' Text
+'percent' Text
+' ' Text
+'of' Text
+' ' Text
+'France' Text
+"'" Text
+'s' Text
+' ' Text
+'land' Text
+' ' Text
+'area' Text
+'—' Text
+'the' Text
+' ' Text
+'fourth' Text
+'-' Text
+'highest' Text
+' ' Text
+'proportion' Text
+' ' Text
+'in' Text
+' ' Text
+'Europe' Text
+'—' Text
+'representing' Text
+' ' Text
+'an' Text
+' ' Text
+'increase' Text
+' ' Text
+'of' Text
+' ' Text
+'7' Text
+' ' Text
+'percent' Text
+' ' Text
+'since' Text
+' ' Text
+'1990' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'news' Name.Tag
+' ' Text
+'|' Punctuation
+'date' Name.Label
+'=' Operator
+'18' Text
+' ' Text
+'July' Text
+' ' Text
+'2019' Text
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Why' Text
+' ' Text
+'France' Text
+"'" Text
+'s' Text
+' ' Text
+'forests' Text
+' ' Text
+'are' Text
+' ' Text
+'getting' Text
+' ' Text
+'bigger' Text
+' ' Text
+'|' Punctuation
+'newspaper' Name.Label
+'=' Operator
+'The' Text
+' ' Text
+'Economist' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'economist' Text
+'.' Text
+'com' Text
+'/' Text
+'europe' Text
+'/' Text
+'2019' Text
+'/' Text
+'07' Text
+'/' Text
+'18' Text
+'/' Text
+'why' Text
+'-' Text
+'frances' Text
+'-' Text
+'forests' Text
+'-' Text
+'are' Text
+'-' Text
+'getting' Text
+'-' Text
+'bigger' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'20' Text
+' ' Text
+'August' Text
+' ' Text
+'2019' Text
+' ' Text
+'|' Punctuation
+'issn' Name.Label
+'=' Operator
+'0013' Text
+'-' Text
+'0613' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Countries' Text
+' ' Text
+'Compared' Text
+' ' Text
+'by' Text
+' ' Text
+'Environment' Text
+' ' Text
+'>' Text
+' ' Text
+'Forest' Text
+' ' Text
+'area' Text
+' ' Text
+'>' Text
+' ' Text
+'%' Text
+' ' Text
+'of' Text
+' ' Text
+'land' Text
+' ' Text
+'area' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'nationmaster' Text
+'.' Text
+'com' Text
+'/' Text
+'country' Text
+'-' Text
+'info' Text
+'/' Text
+'stats' Text
+'/' Text
+'Environment' Text
+'/' Text
+'Forest' Text
+'-' Text
+'area' Text
+'/' Text
+'%' Text
+'25' Text
+'-' Text
+'of' Text
+'-' Text
+'land' Text
+'-' Text
+'area' Text
+'#' Text
+'2005' Text
+' ' Text
+'|' Punctuation
+'url-status' Name.Label
+'=' Operator
+'dead' Text
+' ' Text
+'|' Punctuation
+'archive-url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'web' Text
+'.' Text
+'archive' Text
+'.' Text
+'org' Text
+'/' Text
+'web' Text
+'/' Text
+'20180108120450' Text
+'/' Text
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'nationmaster' Text
+'.' Text
+'com' Text
+'/' Text
+'country' Text
+'-' Text
+'info' Text
+'/' Text
+'stats' Text
+'/' Text
+'Environment' Text
+'/' Text
+'Forest' Text
+'-' Text
+'area' Text
+'/' Text
+'%' Text
+'25' Text
+'-' Text
+'of' Text
+'-' Text
+'land' Text
+'-' Text
+'area' Text
+'#' Text
+'2005' Text
+' ' Text
+'|' Punctuation
+'archive-date' Name.Label
+'=' Operator
+'8' Text
+' ' Text
+'January' Text
+' ' Text
+'2018' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'7' Text
+' ' Text
+'January' Text
+' ' Text
+'2018' Text
+' ' Text
+'|' Punctuation
+'website' Name.Label
+'=' Operator
+'Nationmaster' Text
+'.' Text
+'com' Text
+' ' Text
+'|' Punctuation
+'publisher' Name.Label
+'=' Operator
+'International' Text
+' ' Text
+'Statistics' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Evolution' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'French' Text
+' ' Text
+'forest' Text
+' ' Text
+'from' Text
+' ' Text
+'1984' Text
+' ' Text
+'to' Text
+' ' Text
+'1996' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'ifn' Text
+'.' Text
+'fr' Text
+'/' Text
+'spip' Text
+'/' Text
+'?' Text
+'rubrique83' Text
+'&' Text
+'lang' Text
+'=' Text
+'en' Text
+' ' Text
+'|' Punctuation
+'archive-url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'web' Text
+'.' Text
+'archive' Text
+'.' Text
+'org' Text
+'/' Text
+'web' Text
+'/' Text
+'20110513083104' Text
+'/' Text
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'ifn' Text
+'.' Text
+'fr' Text
+'/' Text
+'spip' Text
+'/' Text
+'?' Text
+'rubrique83' Text
+'&' Text
+'lang' Text
+'=' Text
+'en' Text
+' ' Text
+'|' Punctuation
+'archive-date' Name.Label
+'=' Operator
+'13' Text
+' ' Text
+'May' Text
+' ' Text
+'2011' Text
+' ' Text
+'|' Punctuation
+'publisher' Name.Label
+'=' Operator
+'Inventaire' Text
+' ' Text
+'Forestier' Text
+' ' Text
+'National' Text
+' ' Text
+'[' Text
+'National' Text
+' ' Text
+'Forest' Text
+' ' Text
+'Inventory' Text
+']' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'French' Text
+' ' Text
+'forests' Text
+' ' Text
+'are' Text
+' ' Text
+'some' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'most' Text
+' ' Text
+'diverse' Text
+' ' Text
+'in' Text
+' ' Text
+'Europe' Text
+',' Text
+' ' Text
+'comprising' Text
+' ' Text
+'more' Text
+' ' Text
+'than' Text
+' ' Text
+'140' Text
+' ' Text
+'species' Text
+' ' Text
+'of' Text
+' ' Text
+'trees' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'La' Text
+' ' Text
+'forêt' Text
+' ' Text
+'en' Text
+' ' Text
+'France' Text
+' ' Text
+'et' Text
+' ' Text
+'dans' Text
+' ' Text
+'le' Text
+' ' Text
+'monde' Text
+' ' Text
+'|' Punctuation
+'trans-title' Name.Label
+'=' Operator
+'The' Text
+' ' Text
+'forest' Text
+' ' Text
+'in' Text
+' ' Text
+'France' Text
+' ' Text
+'and' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'world' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'lepapier' Text
+'.' Text
+'fr' Text
+'/' Text
+'foret_france' Text
+'.' Text
+'htm' Text
+' ' Text
+'|' Punctuation
+'url-status' Name.Label
+'=' Operator
+'live' Text
+' ' Text
+'|' Punctuation
+'archive-url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'web' Text
+'.' Text
+'archive' Text
+'.' Text
+'org' Text
+'/' Text
+'web' Text
+'/' Text
+'20100727011505' Text
+'/' Text
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'lepapier' Text
+'.' Text
+'fr' Text
+'/' Text
+'foret_france' Text
+'.' Text
+'htm' Text
+' ' Text
+'|' Punctuation
+'archive-date' Name.Label
+'=' Operator
+'27' Text
+' ' Text
+'July' Text
+' ' Text
+'2010' Text
+' ' Text
+'|' Punctuation
+'website' Name.Label
+'=' Operator
+'lepapier' Text
+'.' Text
+'fr' Text
+' ' Text
+'|' Punctuation
+'language' Name.Label
+'=' Operator
+'fr' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'France' Text
+' ' Text
+'had' Text
+' ' Text
+'a' Text
+' ' Text
+'2018' Text
+' ' Text
+'[[' Punctuation
+'Forest Landscape Integrity Index' Name.Tag
+']]' Punctuation
+' ' Text
+'mean' Text
+' ' Text
+'score' Text
+' ' Text
+'of' Text
+' ' Text
+'4' Text
+'.' Text
+'52' Text
+'/' Text
+'10' Text
+',' Text
+' ' Text
+'ranking' Text
+' ' Text
+'it' Text
+' ' Text
+'123rd' Text
+' ' Text
+'globally' Text
+' ' Text
+'out' Text
+' ' Text
+'of' Text
+' ' Text
+'172' Text
+' ' Text
+'countries' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+' ' Text.Whitespace
+'name' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+'FLII' Literal.String.Double
+'-' Literal.String.Double
+'Supplementary' Literal.String.Double
+'"' Literal.String.Double
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'journal' Name.Tag
+' ' Text
+'|' Punctuation
+'last1' Name.Label
+'=' Operator
+'Grantham' Text
+' ' Text
+'|' Punctuation
+'first1' Name.Label
+'=' Operator
+'H' Text
+'.' Text
+' ' Text
+'S' Text
+'.' Text
+' ' Text
+'|' Punctuation
+'last2' Name.Label
+'=' Operator
+'Duncan' Text
+' ' Text
+'|' Punctuation
+'first2' Name.Label
+'=' Operator
+'A' Text
+'.' Text
+' ' Text
+'|' Punctuation
+'last3' Name.Label
+'=' Operator
+'Evans' Text
+' ' Text
+'|' Punctuation
+'first3' Name.Label
+'=' Operator
+'T' Text
+'.' Text
+' ' Text
+'D' Text
+'.' Text
+' ' Text
+'|' Punctuation
+'last4' Name.Label
+'=' Operator
+'Jones' Text
+' ' Text
+'|' Punctuation
+'first4' Name.Label
+'=' Operator
+'K' Text
+'.' Text
+' ' Text
+'R' Text
+'.' Text
+' ' Text
+'|' Punctuation
+'last5' Name.Label
+'=' Operator
+'Beyer' Text
+' ' Text
+'|' Punctuation
+'first5' Name.Label
+'=' Operator
+'H' Text
+'.' Text
+' ' Text
+'L' Text
+'.' Text
+' ' Text
+'|' Punctuation
+'last6' Name.Label
+'=' Operator
+'Schuster' Text
+' ' Text
+'|' Punctuation
+'first6' Name.Label
+'=' Operator
+'R' Text
+'.' Text
+' ' Text
+'|' Punctuation
+'last7' Name.Label
+'=' Operator
+'Walston' Text
+' ' Text
+'|' Punctuation
+'first7' Name.Label
+'=' Operator
+'J' Text
+'.' Text
+' ' Text
+'|' Punctuation
+'last8' Name.Label
+'=' Operator
+'Ray' Text
+' ' Text
+'|' Punctuation
+'first8' Name.Label
+'=' Operator
+'J' Text
+'.' Text
+' ' Text
+'C' Text
+'.' Text
+' ' Text
+'|' Punctuation
+'last9' Name.Label
+'=' Operator
+'Robinson' Text
+' ' Text
+'|' Punctuation
+'first9' Name.Label
+'=' Operator
+'J' Text
+'.' Text
+' ' Text
+'G' Text
+'.' Text
+' ' Text
+'|' Punctuation
+'last10' Name.Label
+'=' Operator
+'Callow' Text
+' ' Text
+'|' Punctuation
+'first10' Name.Label
+'=' Operator
+'M' Text
+'.' Text
+' ' Text
+'|' Punctuation
+'last11' Name.Label
+'=' Operator
+'Clements' Text
+' ' Text
+'|' Punctuation
+'first11' Name.Label
+'=' Operator
+'T' Text
+'.' Text
+' ' Text
+'|' Punctuation
+'last12' Name.Label
+'=' Operator
+'Costa' Text
+' ' Text
+'|' Punctuation
+'first12' Name.Label
+'=' Operator
+'H' Text
+'.' Text
+' ' Text
+'M' Text
+'.' Text
+' ' Text
+'|' Punctuation
+'last13' Name.Label
+'=' Operator
+'DeGemmis' Text
+' ' Text
+'|' Punctuation
+'first13' Name.Label
+'=' Operator
+'A' Text
+'.' Text
+' ' Text
+'|' Punctuation
+'last14' Name.Label
+'=' Operator
+'Elsen' Text
+' ' Text
+'|' Punctuation
+'first14' Name.Label
+'=' Operator
+'P' Text
+'.' Text
+' ' Text
+'R' Text
+'.' Text
+' ' Text
+'|' Punctuation
+'last15' Name.Label
+'=' Operator
+'Ervin' Text
+' ' Text
+'|' Punctuation
+'first15' Name.Label
+'=' Operator
+'J' Text
+'.' Text
+' ' Text
+'|' Punctuation
+'year' Name.Label
+'=' Operator
+'2020' Text
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Anthropogenic' Text
+' ' Text
+'modification' Text
+' ' Text
+'of' Text
+' ' Text
+'forests' Text
+' ' Text
+'means' Text
+' ' Text
+'only' Text
+' ' Text
+'40' Text
+'%' Text
+' ' Text
+'of' Text
+' ' Text
+'remaining' Text
+' ' Text
+'forests' Text
+' ' Text
+'have' Text
+' ' Text
+'high' Text
+' ' Text
+'ecosystem' Text
+' ' Text
+'integrity' Text
+' ' Text
+'–' Text
+' ' Text
+'Supplementary' Text
+' ' Text
+'Material' Text
+' ' Text
+'|' Punctuation
+'journal' Name.Label
+'=' Operator
+'Nature' Text
+' ' Text
+'Communications' Text
+' ' Text
+'|' Punctuation
+'volume' Name.Label
+'=' Operator
+'11' Text
+' ' Text
+'|' Punctuation
+'issue' Name.Label
+'=' Operator
+'1' Text
+' ' Text
+'|' Punctuation
+'page' Name.Label
+'=' Operator
+'5978' Text
+' ' Text
+'|' Punctuation
+'doi' Name.Label
+'=' Operator
+'10' Text
+'.' Text
+'1038' Text
+'/' Text
+'s41467' Text
+'-' Text
+'020' Text
+'-' Text
+'19493' Text
+'-' Text
+'3' Text
+' ' Text
+'|' Punctuation
+'issn' Name.Label
+'=' Operator
+'2041' Text
+'-' Text
+'1723' Text
+' ' Text
+'|' Punctuation
+'pmc' Name.Label
+'=' Operator
+'7723057' Text
+' ' Text
+'|' Punctuation
+'pmid' Name.Label
+'=' Operator
+'33293507' Text
+' ' Text
+'|' Punctuation
+'last16' Name.Label
+'=' Operator
+'Franco' Text
+' ' Text
+'|' Punctuation
+'first16' Name.Label
+'=' Operator
+'P' Text
+'.' Text
+' ' Text
+'|' Punctuation
+'last17' Name.Label
+'=' Operator
+'Goldman' Text
+' ' Text
+'|' Punctuation
+'first17' Name.Label
+'=' Operator
+'E' Text
+'.' Text
+' ' Text
+'|' Punctuation
+'last18' Name.Label
+'=' Operator
+'Goetz' Text
+' ' Text
+'|' Punctuation
+'first18' Name.Label
+'=' Operator
+'S' Text
+'.' Text
+' ' Text
+'|' Punctuation
+'last19' Name.Label
+'=' Operator
+'Hansen' Text
+' ' Text
+'|' Punctuation
+'first19' Name.Label
+'=' Operator
+'A' Text
+'.' Text
+' ' Text
+'|' Punctuation
+'last20' Name.Label
+'=' Operator
+'Hofsvang' Text
+' ' Text
+'|' Punctuation
+'first20' Name.Label
+'=' Operator
+'E' Text
+'.' Text
+' ' Text
+'|' Punctuation
+'last21' Name.Label
+'=' Operator
+'Jantz' Text
+' ' Text
+'|' Punctuation
+'first21' Name.Label
+'=' Operator
+'P' Text
+'.' Text
+' ' Text
+'|' Punctuation
+'last22' Name.Label
+'=' Operator
+'Jupiter' Text
+' ' Text
+'|' Punctuation
+'first22' Name.Label
+'=' Operator
+'S' Text
+'.' Text
+' ' Text
+'|' Punctuation
+'last23' Name.Label
+'=' Operator
+'Kang' Text
+' ' Text
+'|' Punctuation
+'first23' Name.Label
+'=' Operator
+'A' Text
+'.' Text
+' ' Text
+'|' Punctuation
+'last24' Name.Label
+'=' Operator
+'Langhammer' Text
+' ' Text
+'|' Punctuation
+'first24' Name.Label
+'=' Operator
+'P' Text
+'.' Text
+' ' Text
+'|' Punctuation
+'last25' Name.Label
+'=' Operator
+'Laurance' Text
+' ' Text
+'|' Punctuation
+'first25' Name.Label
+'=' Operator
+'W' Text
+'.' Text
+' ' Text
+'F' Text
+'.' Text
+' ' Text
+'|' Punctuation
+'last26' Name.Label
+'=' Operator
+'Lieberman' Text
+' ' Text
+'|' Punctuation
+'first26' Name.Label
+'=' Operator
+'S' Text
+'.' Text
+' ' Text
+'|' Punctuation
+'last27' Name.Label
+'=' Operator
+'Linkie' Text
+' ' Text
+'|' Punctuation
+'first27' Name.Label
+'=' Operator
+'M' Text
+'.' Text
+' ' Text
+'|' Punctuation
+'last28' Name.Label
+'=' Operator
+'Malhi' Text
+' ' Text
+'|' Punctuation
+'first28' Name.Label
+'=' Operator
+'Y' Text
+'.' Text
+' ' Text
+'|' Punctuation
+'last29' Name.Label
+'=' Operator
+'Maxwell' Text
+' ' Text
+'|' Punctuation
+'first29' Name.Label
+'=' Operator
+'S' Text
+'.' Text
+' ' Text
+'|' Punctuation
+'last30' Name.Label
+'=' Operator
+'Mendez' Text
+' ' Text
+'|' Punctuation
+'first30' Name.Label
+'=' Operator
+'M' Text
+'.' Text
+' ' Text
+'|' Punctuation
+'last31' Name.Label
+'=' Operator
+'Mittermeier' Text
+' ' Text
+'|' Punctuation
+'first31' Name.Label
+'=' Operator
+'R' Text
+'.' Text
+' ' Text
+'|' Punctuation
+'last32' Name.Label
+'=' Operator
+'Murray' Text
+' ' Text
+'|' Punctuation
+'first32' Name.Label
+'=' Operator
+'N' Text
+'.' Text
+' ' Text
+'J' Text
+'.' Text
+' ' Text
+'|' Punctuation
+'last33' Name.Label
+'=' Operator
+'Possingham' Text
+' ' Text
+'|' Punctuation
+'first33' Name.Label
+'=' Operator
+'H' Text
+'.' Text
+' ' Text
+'|' Punctuation
+'last34' Name.Label
+'=' Operator
+'Radachowsky' Text
+' ' Text
+'|' Punctuation
+'first34' Name.Label
+'=' Operator
+'J' Text
+'.' Text
+' ' Text
+'|' Punctuation
+'last35' Name.Label
+'=' Operator
+'Saatchi' Text
+' ' Text
+'|' Punctuation
+'first35' Name.Label
+'=' Operator
+'S' Text
+'.' Text
+' ' Text
+'|' Punctuation
+'last36' Name.Label
+'=' Operator
+'Samper' Text
+' ' Text
+'|' Punctuation
+'first36' Name.Label
+'=' Operator
+'C' Text
+'.' Text
+' ' Text
+'|' Punctuation
+'last37' Name.Label
+'=' Operator
+'Silverman' Text
+' ' Text
+'|' Punctuation
+'first37' Name.Label
+'=' Operator
+'J' Text
+'.' Text
+' ' Text
+'|' Punctuation
+'last38' Name.Label
+'=' Operator
+'Shapiro' Text
+' ' Text
+'|' Punctuation
+'first38' Name.Label
+'=' Operator
+'A' Text
+'.' Text
+' ' Text
+'|' Punctuation
+'last39' Name.Label
+'=' Operator
+'Strassburg' Text
+' ' Text
+'|' Punctuation
+'first39' Name.Label
+'=' Operator
+'B' Text
+'.' Text
+' ' Text
+'|' Punctuation
+'last40' Name.Label
+'=' Operator
+'Stevens' Text
+' ' Text
+'|' Punctuation
+'first40' Name.Label
+'=' Operator
+'T' Text
+'.' Text
+' ' Text
+'|' Punctuation
+'last41' Name.Label
+'=' Operator
+'Stokes' Text
+' ' Text
+'|' Punctuation
+'first41' Name.Label
+'=' Operator
+'E' Text
+'.' Text
+' ' Text
+'|' Punctuation
+'last42' Name.Label
+'=' Operator
+'Taylor' Text
+' ' Text
+'|' Punctuation
+'first42' Name.Label
+'=' Operator
+'R' Text
+'.' Text
+' ' Text
+'|' Punctuation
+'last43' Name.Label
+'=' Operator
+'Tear' Text
+' ' Text
+'|' Punctuation
+'first43' Name.Label
+'=' Operator
+'T' Text
+'.' Text
+' ' Text
+'|' Punctuation
+'last44' Name.Label
+'=' Operator
+'Tizard' Text
+' ' Text
+'|' Punctuation
+'first44' Name.Label
+'=' Operator
+'R' Text
+'.' Text
+' ' Text
+'|' Punctuation
+'last45' Name.Label
+'=' Operator
+'Venter' Text
+' ' Text
+'|' Punctuation
+'first45' Name.Label
+'=' Operator
+'O' Text
+'.' Text
+' ' Text
+'|' Punctuation
+'last46' Name.Label
+'=' Operator
+'Visconti' Text
+' ' Text
+'|' Punctuation
+'first46' Name.Label
+'=' Operator
+'P' Text
+'.' Text
+' ' Text
+'|' Punctuation
+'last47' Name.Label
+'=' Operator
+'Wang' Text
+' ' Text
+'|' Punctuation
+'first47' Name.Label
+'=' Operator
+'S' Text
+'.' Text
+' ' Text
+'|' Punctuation
+'last48' Name.Label
+'=' Operator
+'Watson' Text
+' ' Text
+'|' Punctuation
+'first48' Name.Label
+'=' Operator
+'J' Text
+'.' Text
+' ' Text
+'E' Text
+'.' Text
+' ' Text
+'M' Text
+'.' Text
+'|' Punctuation
+'bibcode' Name.Label
+'=' Operator
+'2020NatCo' Text
+'.' Text
+'.' Text
+'11' Text
+'.' Text
+'5978G' Text
+' ' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'There' Text
+' ' Text
+'are' Text
+' ' Text
+'nine' Text
+' ' Text
+'[[' Punctuation
+'national park' Name.Tag
+']]' Punctuation
+'s' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Parks' Text
+' ' Text
+'and' Text
+' ' Text
+'other' Text
+' ' Text
+'protected' Text
+' ' Text
+'areas' Text
+' ' Text
+'in' Text
+' ' Text
+'France' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'parks' Text
+'.' Text
+'it' Text
+'/' Text
+'world' Text
+'/' Text
+'FR' Text
+'/' Text
+'Eindex' Text
+'.' Text
+'html' Text
+' ' Text
+'|' Punctuation
+'website' Name.Label
+'=' Operator
+'Parks' Text
+'.' Text
+'it' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'and' Text
+' ' Text
+'46' Text
+' ' Text
+'[[' Punctuation
+'Protected area' Name.Tag
+'|' Punctuation
+'natural' Text
+' ' Text
+'parks' Text
+']]' Punctuation
+' ' Text
+'in' Text
+' ' Text
+'France' Text
+',' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Fédération' Text
+' ' Text
+'des' Text
+' ' Text
+'parcs' Text
+' ' Text
+'naturels' Text
+' ' Text
+'régionaux' Text
+' ' Text
+'de' Text
+' ' Text
+'France' Text
+' ' Text
+'|' Punctuation
+'trans-title' Name.Label
+'=' Operator
+'Federation' Text
+' ' Text
+'of' Text
+' ' Text
+'Regional' Text
+' ' Text
+'Natural' Text
+' ' Text
+'Parks' Text
+' ' Text
+'of' Text
+' ' Text
+'France' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'parcs' Text
+'-' Text
+'naturels' Text
+'-' Text
+'regionaux' Text
+'.' Text
+'tm' Text
+'.' Text
+'fr' Text
+'/' Text
+'fr' Text
+'/' Text
+'accueil' Text
+'/' Text
+' ' Text
+'|' Punctuation
+'archive-url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'web' Text
+'.' Text
+'archive' Text
+'.' Text
+'org' Text
+'/' Text
+'web' Text
+'/' Text
+'20100712003310' Text
+'/' Text
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'parcs' Text
+'-' Text
+'naturels' Text
+'-' Text
+'regionaux' Text
+'.' Text
+'tm' Text
+'.' Text
+'fr' Text
+'/' Text
+'fr' Text
+'/' Text
+'accueil' Text
+'/' Text
+' ' Text
+'|' Punctuation
+'archive-date' Name.Label
+'=' Operator
+'12' Text
+' ' Text
+'July' Text
+' ' Text
+'2010' Text
+' ' Text
+'|' Punctuation
+'language' Name.Label
+'=' Operator
+'fr' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'with' Text
+' ' Text
+'the' Text
+' ' Text
+'government' Text
+' ' Text
+'planning' Text
+' ' Text
+'to' Text
+' ' Text
+'convert' Text
+' ' Text
+'20' Text
+'%' Text
+' ' Text
+'of' Text
+' ' Text
+'its' Text
+' ' Text
+'[[' Punctuation
+'Exclusive economic zone' Name.Tag
+']]' Punctuation
+' ' Text
+'into' Text
+' ' Text
+'a' Text
+' ' Text
+'[[' Punctuation
+'Marine protected area' Name.Tag
+']]' Punctuation
+' ' Text
+'by' Text
+' ' Text
+'2020' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'date' Name.Label
+'=' Operator
+'25' Text
+' ' Text
+'August' Text
+' ' Text
+'2009' Text
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'La' Text
+' ' Text
+'France' Text
+' ' Text
+'veut' Text
+' ' Text
+'créer' Text
+' ' Text
+'une' Text
+' ' Text
+'Zone' Text
+' ' Text
+'Économique' Text
+' ' Text
+'Exclusive' Text
+' ' Text
+'en' Text
+' ' Text
+'Méditerranée' Text
+' ' Text
+'|' Punctuation
+'trans-title' Name.Label
+'=' Operator
+'France' Text
+' ' Text
+'wants' Text
+' ' Text
+'to' Text
+' ' Text
+'create' Text
+' ' Text
+'an' Text
+' ' Text
+'Exclusive' Text
+' ' Text
+'Economic' Text
+' ' Text
+'Zone' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'Mediterranean' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'actu' Text
+'-' Text
+'environnement' Text
+'.' Text
+'com' Text
+'/' Text
+'ae' Text
+'/' Text
+'news' Text
+'/' Text
+'mer_grenelle_zee_meditarrane_borloo_aire_marine_8120' Text
+'.' Text
+'php4' Text
+' ' Text
+'|' Punctuation
+'archive-url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'web' Text
+'.' Text
+'archive' Text
+'.' Text
+'org' Text
+'/' Text
+'web' Text
+'/' Text
+'20110513060529' Text
+'/' Text
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'actu' Text
+'-' Text
+'environnement' Text
+'.' Text
+'com' Text
+'/' Text
+'ae' Text
+'/' Text
+'news' Text
+'/' Text
+'mer_grenelle_zee_meditarrane_borloo_aire_marine_8120' Text
+'.' Text
+'php4' Text
+' ' Text
+'|' Punctuation
+'archive-date' Name.Label
+'=' Operator
+'13' Text
+' ' Text
+'May' Text
+' ' Text
+'2011' Text
+' ' Text
+'|' Punctuation
+'website' Name.Label
+'=' Operator
+'Actu' Text
+'-' Text
+'Environnement' Text
+'.' Text
+'com' Text
+' ' Text
+'|' Punctuation
+'language' Name.Label
+'=' Operator
+'fr' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'A' Text
+' ' Text
+'regional' Text
+' ' Text
+'nature' Text
+' ' Text
+'park' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'date' Name.Label
+'=' Operator
+'22' Text
+' ' Text
+'July' Text
+' ' Text
+'2013' Text
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'The' Text
+' ' Text
+'regional' Text
+' ' Text
+'nature' Text
+' ' Text
+'Parks' Text
+' ' Text
+'of' Text
+' ' Text
+'France' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'parcs' Text
+'-' Text
+'naturels' Text
+'-' Text
+'regionaux' Text
+'.' Text
+'tm' Text
+'.' Text
+'fr' Text
+'/' Text
+'en' Text
+'/' Text
+'parc' Text
+'.' Text
+'UK2' Text
+'.' Text
+'pdf' Text
+' ' Text
+'|' Punctuation
+'url-status' Name.Label
+'=' Operator
+'dead' Text
+' ' Text
+'|' Punctuation
+'archive-url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'web' Text
+'.' Text
+'archive' Text
+'.' Text
+'org' Text
+'/' Text
+'web' Text
+'/' Text
+'20130722030433' Text
+'/' Text
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'parcs' Text
+'-' Text
+'naturels' Text
+'-' Text
+'regionaux' Text
+'.' Text
+'tm' Text
+'.' Text
+'fr' Text
+'/' Text
+'en' Text
+'/' Text
+'parc' Text
+'.' Text
+'UK2' Text
+'.' Text
+'pdf' Text
+' ' Text
+'|' Punctuation
+'archive-date' Name.Label
+'=' Operator
+'22' Text
+' ' Text
+'July' Text
+' ' Text
+'2013' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'22' Text
+' ' Text
+'June' Text
+' ' Text
+'2014' Text
+' ' Text
+'|' Punctuation
+'publisher' Name.Label
+'=' Operator
+'Fédération' Text
+' ' Text
+'des' Text
+' ' Text
+'Parcs' Text
+' ' Text
+'naturels' Text
+' ' Text
+'régionaux' Text
+' ' Text
+'de' Text
+' ' Text
+'France' Text
+' ' Text
+'[' Text
+'Federation' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'regional' Text
+' ' Text
+'nature' Text
+' ' Text
+'Parks' Text
+' ' Text
+'of' Text
+' ' Text
+'France' Text
+']' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'(' Text
+'{{' Punctuation
+'Lang' Name.Tag
+'-' Name.Tag
+'fr' Name.Tag
+'|' Punctuation
+'parc' Text
+' ' Text
+'naturel' Text
+' ' Text
+'régional' Text
+'|' Punctuation
+'links' Name.Label
+'=' Operator
+'no' Text
+'}}' Punctuation
+' ' Text
+'or' Text
+' ' Text
+'PNR' Text
+')' Text
+' ' Text
+'is' Text
+' ' Text
+'a' Text
+' ' Text
+'public' Text
+' ' Text
+'establishment' Text
+' ' Text
+'in' Text
+' ' Text
+'France' Text
+' ' Text
+'between' Text
+' ' Text
+'local' Text
+' ' Text
+'authorities' Text
+' ' Text
+'and' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Government of France' Name.Tag
+'|' Punctuation
+'national' Text
+' ' Text
+'government' Text
+']]' Punctuation
+' ' Text
+'covering' Text
+' ' Text
+'an' Text
+' ' Text
+'inhabited' Text
+' ' Text
+'rural' Text
+' ' Text
+'area' Text
+' ' Text
+'of' Text
+' ' Text
+'outstanding' Text
+' ' Text
+'beauty' Text
+',' Text
+' ' Text
+'to' Text
+' ' Text
+'protect' Text
+' ' Text
+'the' Text
+' ' Text
+'scenery' Text
+' ' Text
+'and' Text
+' ' Text
+'heritage' Text
+' ' Text
+'as' Text
+' ' Text
+'well' Text
+' ' Text
+'as' Text
+' ' Text
+'setting' Text
+' ' Text
+'up' Text
+' ' Text
+'sustainable' Text
+' ' Text
+'economic' Text
+' ' Text
+'development' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'area' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'book' Name.Tag
+' ' Text
+'|' Punctuation
+'last' Name.Label
+'=' Operator
+'William' Text
+' ' Text
+'M' Text
+'.' Text
+' ' Text
+'Lafferty' Text
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Sustainable' Text
+' ' Text
+'communities' Text
+' ' Text
+'in' Text
+' ' Text
+'Europe' Text
+' ' Text
+'|' Punctuation
+'publisher' Name.Label
+'=' Operator
+'Earthscan' Text
+' ' Text
+'|' Punctuation
+'year' Name.Label
+'=' Operator
+'2001' Text
+' ' Text
+'|' Punctuation
+'isbn' Name.Label
+'=' Operator
+'978' Text
+'-' Text
+'1' Text
+'-' Text
+'85383' Text
+'-' Text
+'791' Text
+'-' Text
+'3' Text
+' ' Text
+'|' Punctuation
+'page' Name.Label
+'=' Operator
+'[' Punctuation
+'https://books.google.com/books?id=VHP96jPKl-0C&pg=PA181' Name.Label
+' ' Text.Whitespace
+'181' Text
+']' Punctuation
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'A' Text
+' ' Text
+'PNR' Text
+' ' Text
+'sets' Text
+' ' Text
+'goals' Text
+' ' Text
+'and' Text
+' ' Text
+'guidelines' Text
+' ' Text
+'for' Text
+' ' Text
+'managed' Text
+' ' Text
+'human' Text
+' ' Text
+'habitation' Text
+',' Text
+' ' Text
+'sustainable' Text
+' ' Text
+'economic' Text
+' ' Text
+'development' Text
+' ' Text
+'and' Text
+' ' Text
+'protection' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'natural' Text
+' ' Text
+'environment' Text
+' ' Text
+'based' Text
+' ' Text
+'on' Text
+' ' Text
+'each' Text
+' ' Text
+'park' Text
+"'" Text
+'s' Text
+' ' Text
+'unique' Text
+' ' Text
+'landscape' Text
+' ' Text
+'and' Text
+' ' Text
+'heritage' Text
+'.' Text
+' ' Text
+'The' Text
+' ' Text
+'parks' Text
+' ' Text
+'foster' Text
+' ' Text
+'ecological' Text
+' ' Text
+'research' Text
+' ' Text
+'programmes' Text
+' ' Text
+'and' Text
+' ' Text
+'public' Text
+' ' Text
+'education' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'natural' Text
+' ' Text
+'sciences' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+' ' Text.Whitespace
+'name' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+'FGTO' Literal.String.Double
+'"' Literal.String.Double
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'year' Name.Label
+'=' Operator
+'2008' Text
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Regional' Text
+' ' Text
+'Natural' Text
+' ' Text
+'Parks' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'uk' Text
+'.' Text
+'franceguide' Text
+'.' Text
+'com' Text
+'/' Text
+'Regional' Text
+'-' Text
+'natural' Text
+'-' Text
+'parks' Text
+'.' Text
+'html' Text
+'?' Text
+'NodeID' Text
+'=' Text
+'1' Text
+'&' Text
+'EditoID' Text
+'=' Text
+'205227' Text
+' ' Text
+'|' Punctuation
+'url-status' Name.Label
+'=' Operator
+'dead' Text
+' ' Text
+'|' Punctuation
+'archive-url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'web' Text
+'.' Text
+'archive' Text
+'.' Text
+'org' Text
+'/' Text
+'web' Text
+'/' Text
+'20120405192042' Text
+'/' Text
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'uk' Text
+'.' Text
+'franceguide' Text
+'.' Text
+'com' Text
+'/' Text
+'Regional' Text
+'-' Text
+'natural' Text
+'-' Text
+'parks' Text
+'.' Text
+'html' Text
+'?' Text
+'NodeID' Text
+'=' Text
+'1' Text
+'&' Text
+'EditoID' Text
+'=' Text
+'205227' Text
+' ' Text
+'|' Punctuation
+'archive-date' Name.Label
+'=' Operator
+'5' Text
+' ' Text
+'April' Text
+' ' Text
+'2012' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'27' Text
+' ' Text
+'October' Text
+' ' Text
+'2011' Text
+' ' Text
+'|' Punctuation
+'website' Name.Label
+'=' Operator
+'France' Text
+' ' Text
+'Guide' Text
+' ' Text
+'|' Punctuation
+'publisher' Name.Label
+'=' Operator
+'Maison' Text
+' ' Text
+'de' Text
+' ' Text
+'la' Text
+' ' Text
+'France' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'{{' Punctuation
+'As' Name.Tag
+' ' Name.Tag
+'of' Name.Tag
+'|' Punctuation
+'2019' Text
+'}}' Punctuation
+' ' Text
+'there' Text
+' ' Text
+'are' Text
+' ' Text
+'54' Text
+' ' Text
+'PNRs' Text
+' ' Text
+'in' Text
+' ' Text
+'France' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Découvrir' Text
+' ' Text
+'les' Text
+' ' Text
+'54' Text
+' ' Text
+'Parcs' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'parcs' Text
+'-' Text
+'naturels' Text
+'-' Text
+'regionaux' Text
+'.' Text
+'fr' Text
+'/' Text
+'les' Text
+'-' Text
+'parcs' Text
+'-' Text
+'naturels' Text
+'-' Text
+'regionaux' Text
+'-' Text
+'de' Text
+'-' Text
+'france' Text
+'/' Text
+'decouvrir' Text
+'-' Text
+'les' Text
+'-' Text
+'54' Text
+'-' Text
+'parcs' Text
+' ' Text
+'|' Punctuation
+'url-status' Name.Label
+'=' Operator
+'dead' Text
+' ' Text
+'|' Punctuation
+'archive-url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'web' Text
+'.' Text
+'archive' Text
+'.' Text
+'org' Text
+'/' Text
+'web' Text
+'/' Text
+'20190819171349' Text
+'/' Text
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'parcs' Text
+'-' Text
+'naturels' Text
+'-' Text
+'regionaux' Text
+'.' Text
+'fr' Text
+'/' Text
+'les' Text
+'-' Text
+'parcs' Text
+'-' Text
+'naturels' Text
+'-' Text
+'regionaux' Text
+'-' Text
+'de' Text
+'-' Text
+'france' Text
+'/' Text
+'decouvrir' Text
+'-' Text
+'les' Text
+'-' Text
+'54' Text
+'-' Text
+'parcs' Text
+' ' Text
+'|' Punctuation
+'archive-date' Name.Label
+'=' Operator
+'19' Text
+' ' Text
+'August' Text
+' ' Text
+'2019' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'16' Text
+' ' Text
+'October' Text
+' ' Text
+'2019' Text
+' ' Text
+'|' Punctuation
+'website' Name.Label
+'=' Operator
+'Fédération' Text
+' ' Text
+'des' Text
+' ' Text
+'Parcs' Text
+' ' Text
+'naturels' Text
+' ' Text
+'régionaux' Text
+' ' Text
+'de' Text
+' ' Text
+'France' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'\n' Text
+
+'\n' Text
+
+'===' Generic.Subheading
+'Administrative divisions' Generic.Subheading
+'===' Generic.Subheading
+'\n' Text.Whitespace
+
+'{{' Punctuation
+'Main' Name.Tag
+'|' Punctuation
+'Administrative' Text
+' ' Text
+'divisions' Text
+' ' Text
+'of' Text
+' ' Text
+'France' Text
+'}}' Punctuation
+'\n' Text
+
+'The' Text
+' ' Text
+'French' Text
+' ' Text
+'Republic' Text
+' ' Text
+'is' Text
+' ' Text
+'divided' Text
+' ' Text
+'into' Text
+' ' Text
+'18' Text
+' ' Text
+'[[' Punctuation
+'Regions of France' Name.Tag
+'|' Punctuation
+'regions' Text
+']]' Punctuation
+' ' Text
+'(' Text
+'located' Text
+' ' Text
+'in' Text
+' ' Text
+'Europe' Text
+' ' Text
+'and' Text
+' ' Text
+'overseas' Text
+')' Text
+',' Text
+' ' Text
+'five' Text
+' ' Text
+'[[' Punctuation
+'Overseas collectivities of France' Name.Tag
+'|' Punctuation
+'overseas' Text
+' ' Text
+'collectivities' Text
+']]' Punctuation
+',' Text
+' ' Text
+'one' Text
+' ' Text
+'[[' Punctuation
+'Overseas territory (France)' Name.Tag
+'|' Punctuation
+'overseas' Text
+' ' Text
+'territory' Text
+']]' Punctuation
+',' Text
+' ' Text
+'one' Text
+' ' Text
+'special' Text
+' ' Text
+'collectivity' Text
+' ' Text
+'–' Text
+' ' Text
+'[[' Punctuation
+'New Caledonia' Name.Tag
+']]' Punctuation
+' ' Text
+'and' Text
+' ' Text
+'one' Text
+' ' Text
+'uninhabited' Text
+' ' Text
+'island' Text
+' ' Text
+'directly' Text
+' ' Text
+'under' Text
+' ' Text
+'the' Text
+' ' Text
+'authority' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'Minister' Text
+' ' Text
+'of' Text
+' ' Text
+'Overseas' Text
+' ' Text
+'France' Text
+' ' Text
+'–' Text
+' ' Text
+'[[' Punctuation
+'Clipperton Island' Name.Tag
+'|' Punctuation
+'Clipperton' Text
+']]' Punctuation
+'.' Text
+'\n' Text
+
+'\n' Text
+
+'====' Generic.Subheading
+'Regions' Generic.Subheading
+'====' Generic.Subheading
+'\n' Text.Whitespace
+
+'{{' Punctuation
+'France' Name.Tag
+' ' Name.Tag
+'Regions' Name.Tag
+' ' Name.Tag
+'Labelled' Name.Tag
+' ' Name.Tag
+'Map' Name.Tag
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'Further' Name.Tag
+'|' Punctuation
+'Departments' Text
+' ' Text
+'of' Text
+' ' Text
+'France' Text
+'}}' Punctuation
+'\n' Text
+
+'Since' Text
+' ' Text
+'2016' Text
+',' Text
+' ' Text
+'France' Text
+' ' Text
+'is' Text
+' ' Text
+'divided' Text
+' ' Text
+'into' Text
+' ' Text
+'18' Text
+' ' Text
+'administrative' Text
+' ' Text
+'regions' Text
+':' Text
+' ' Text
+'13' Text
+' ' Text
+'regions' Text
+' ' Text
+'in' Text
+' ' Text
+'[[' Punctuation
+'metropolitan France' Name.Tag
+']]' Punctuation
+' ' Text
+'(' Text
+'including' Text
+' ' Text
+'[[' Punctuation
+'Corsica' Name.Tag
+']]' Punctuation
+')' Text
+',' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'date' Name.Label
+'=' Operator
+'18' Text
+' ' Text
+'December' Text
+' ' Text
+'2015' Text
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'La' Text
+' ' Text
+'réforme' Text
+' ' Text
+'territoriale' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'gouvernement' Text
+'.' Text
+'fr' Text
+'/' Text
+'action' Text
+'/' Text
+'la' Text
+'-' Text
+'reforme' Text
+'-' Text
+'territoriale' Text
+' ' Text
+'|' Punctuation
+'url-status' Name.Label
+'=' Operator
+'dead' Text
+' ' Text
+'|' Punctuation
+'archive-url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'web' Text
+'.' Text
+'archive' Text
+'.' Text
+'org' Text
+'/' Text
+'web' Text
+'/' Text
+'20151230075909' Text
+'/' Text
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'gouvernement' Text
+'.' Text
+'fr' Text
+'/' Text
+'action' Text
+'/' Text
+'la' Text
+'-' Text
+'reforme' Text
+'-' Text
+'territoriale' Text
+' ' Text
+'|' Punctuation
+'archive-date' Name.Label
+'=' Operator
+'30' Text
+' ' Text
+'December' Text
+' ' Text
+'2015' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'1' Text
+' ' Text
+'January' Text
+' ' Text
+'2016' Text
+' ' Text
+'|' Punctuation
+'publisher' Name.Label
+'=' Operator
+'Government' Text
+' ' Text
+'of' Text
+' ' Text
+'France' Text
+' ' Text
+'|' Punctuation
+'language' Name.Label
+'=' Operator
+'fr' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'and' Text
+' ' Text
+'five' Text
+' ' Text
+'[[' Punctuation
+'overseas region' Name.Tag
+'|' Punctuation
+'overseas' Text
+']]' Punctuation
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+' ' Text.Whitespace
+'name' Name.Attribute
+'=' Operator
+'France' Literal.String
+'/>' Punctuation
+' ' Text
+'The' Text
+' ' Text
+'regions' Text
+' ' Text
+'are' Text
+' ' Text
+'further' Text
+' ' Text
+'subdivided' Text
+' ' Text
+'into' Text
+' ' Text
+'101' Text
+' ' Text
+'[[' Punctuation
+'Departments of France' Name.Tag
+'|' Punctuation
+'departments' Text
+']]' Punctuation
+',' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Departments' Text
+' ' Text
+'of' Text
+' ' Text
+'France' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'myfrenchproperty' Text
+'.' Text
+'com' Text
+'/' Text
+'departments' Text
+'/' Text
+'departments' Text
+'.' Text
+'php' Text
+' ' Text
+'|' Punctuation
+'url-status' Name.Label
+'=' Operator
+'dead' Text
+' ' Text
+'|' Punctuation
+'archive-url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'web' Text
+'.' Text
+'archive' Text
+'.' Text
+'org' Text
+'/' Text
+'web' Text
+'/' Text
+'20110714142645' Text
+'/' Text
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'myfrenchproperty' Text
+'.' Text
+'com' Text
+'/' Text
+'departments' Text
+'/' Text
+'departments' Text
+'.' Text
+'php' Text
+' ' Text
+'|' Punctuation
+'archive-date' Name.Label
+'=' Operator
+'14' Text
+' ' Text
+'July' Text
+' ' Text
+'2011' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'21' Text
+' ' Text
+'July' Text
+' ' Text
+'2011' Text
+' ' Text
+'|' Punctuation
+'publisher' Name.Label
+'=' Operator
+'Myfrenchproperty' Text
+'.' Text
+'com' Text
+' ' Text
+'|' Punctuation
+'language' Name.Label
+'=' Operator
+'fr' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'which' Text
+' ' Text
+'are' Text
+' ' Text
+'numbered' Text
+' ' Text
+'mainly' Text
+' ' Text
+'alphabetically' Text
+'.' Text
+' ' Text
+'The' Text
+' ' Text
+'department' Text
+' ' Text
+'number' Text
+' ' Text
+'is' Text
+' ' Text
+'used' Text
+' ' Text
+'in' Text
+' ' Text
+'postal' Text
+' ' Text
+'codes' Text
+' ' Text
+'and' Text
+' ' Text
+'was' Text
+' ' Text
+'formerly' Text
+' ' Text
+'used' Text
+' ' Text
+'on' Text
+' ' Text
+'[[' Punctuation
+'Vehicle registration plates of France' Name.Tag
+'|' Punctuation
+'vehicle' Text
+' ' Text
+'registration' Text
+' ' Text
+'plates' Text
+']]' Punctuation
+'.' Text
+' ' Text
+'Among' Text
+' ' Text
+'the' Text
+' ' Text
+'101' Text
+' ' Text
+'French' Text
+' ' Text
+'departments' Text
+',' Text
+' ' Text
+'five' Text
+' ' Text
+'(' Text
+'[[' Punctuation
+'French Guiana' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'Guadeloupe' Text
+',' Text
+' ' Text
+'[[' Punctuation
+'Martinique' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'[[' Punctuation
+'Mayotte' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'and' Text
+' ' Text
+'[[' Punctuation
+'Réunion' Name.Tag
+']]' Punctuation
+')' Text
+' ' Text
+'are' Text
+' ' Text
+'in' Text
+' ' Text
+'overseas' Text
+' ' Text
+'regions' Text
+' ' Text
+'(' Text
+'ROMs' Text
+')' Text
+' ' Text
+'that' Text
+' ' Text
+'are' Text
+' ' Text
+'simultaneously' Text
+' ' Text
+'overseas' Text
+' ' Text
+'departments' Text
+' ' Text
+'(' Text
+'DOMs' Text
+')' Text
+',' Text
+' ' Text
+'enjoying' Text
+' ' Text
+'the' Text
+' ' Text
+'same' Text
+' ' Text
+'status' Text
+' ' Text
+'as' Text
+' ' Text
+'metropolitan' Text
+' ' Text
+'departments' Text
+' ' Text
+'and' Text
+' ' Text
+'are' Text
+' ' Text
+'thereby' Text
+' ' Text
+'included' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'European' Text
+' ' Text
+'Union' Text
+'.' Text
+'\n' Text
+
+'\n' Text
+
+'The' Text
+' ' Text
+'101' Text
+' ' Text
+'departments' Text
+' ' Text
+'are' Text
+' ' Text
+'subdivided' Text
+' ' Text
+'into' Text
+' ' Text
+'335' Text
+' ' Text
+'[[' Punctuation
+'Arrondissements of France' Name.Tag
+'|' Punctuation
+'arrondissements' Text
+']]' Punctuation
+',' Text
+' ' Text
+'which' Text
+' ' Text
+'are' Text
+',' Text
+' ' Text
+'in' Text
+' ' Text
+'turn' Text
+',' Text
+' ' Text
+'subdivided' Text
+' ' Text
+'into' Text
+' ' Text
+'2' Text
+',' Text
+'054' Text
+' ' Text
+'[[' Punctuation
+'Cantons of France' Name.Tag
+'|' Punctuation
+'cantons' Text
+']]' Punctuation
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+' ' Text.Whitespace
+'name' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+'constituencies' Literal.String.Double
+'"' Literal.String.Double
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Circonscriptions' Text
+' ' Text
+'administratives' Text
+' ' Text
+'au' Text
+' ' Text
+'1er' Text
+' ' Text
+'janvier' Text
+' ' Text
+'2015' Text
+' ' Text
+':' Text
+' ' Text
+'comparaisons' Text
+' ' Text
+'régionales' Text
+' ' Text
+'|' Punctuation
+'trans-title' Name.Label
+'=' Operator
+'Administrative' Text
+' ' Text
+'constituencies' Text
+' ' Text
+'of' Text
+' ' Text
+'1' Text
+' ' Text
+'January' Text
+' ' Text
+'2015' Text
+':' Text
+' ' Text
+'regional' Text
+' ' Text
+'comparisons' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'insee' Text
+'.' Text
+'fr' Text
+'/' Text
+'fr' Text
+'/' Text
+'themes' Text
+'/' Text
+'tableau' Text
+'.' Text
+'asp' Text
+'?' Text
+'reg_id' Text
+'=' Text
+'99' Text
+'&' Text
+'ref_id' Text
+'=' Text
+'t_0203R' Text
+' ' Text
+'|' Punctuation
+'url-status' Name.Label
+'=' Operator
+'dead' Text
+' ' Text
+'|' Punctuation
+'archive-url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'web' Text
+'.' Text
+'archive' Text
+'.' Text
+'org' Text
+'/' Text
+'web' Text
+'/' Text
+'20140430033500' Text
+'/' Text
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'insee' Text
+'.' Text
+'fr' Text
+'/' Text
+'fr' Text
+'/' Text
+'themes' Text
+'/' Text
+'tableau' Text
+'.' Text
+'asp' Text
+'?' Text
+'reg_id' Text
+'=' Text
+'99' Text
+'&' Text
+'ref_id' Text
+'=' Text
+'t_0203R' Text
+' ' Text
+'|' Punctuation
+'archive-date' Name.Label
+'=' Operator
+'30' Text
+' ' Text
+'April' Text
+' ' Text
+'2014' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'5' Text
+' ' Text
+'July' Text
+' ' Text
+'2015' Text
+' ' Text
+'|' Punctuation
+'publisher' Name.Label
+'=' Operator
+'[[' Punctuation
+'Institut national de la statistique et des études économiques' Name.Tag
+'|' Punctuation
+'INSEE' Text
+']]' Punctuation
+' ' Text
+'|' Punctuation
+'language' Name.Label
+'=' Operator
+'fr' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'These' Text
+' ' Text
+'cantons' Text
+' ' Text
+'are' Text
+' ' Text
+'then' Text
+' ' Text
+'divided' Text
+' ' Text
+'into' Text
+' ' Text
+'36' Text
+',' Text
+'658' Text
+' ' Text
+'[[' Punctuation
+'Communes of France' Name.Tag
+'|' Punctuation
+'communes' Text
+']]' Punctuation
+',' Text
+' ' Text
+'which' Text
+' ' Text
+'are' Text
+' ' Text
+'municipalities' Text
+' ' Text
+'with' Text
+' ' Text
+'an' Text
+' ' Text
+'elected' Text
+' ' Text
+'municipal' Text
+' ' Text
+'council' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+' ' Text.Whitespace
+'name' Name.Attribute
+'=' Operator
+'constituencies' Literal.String
+'/>' Punctuation
+' ' Text
+'Three' Text
+' ' Text
+'communes' Text
+'—' Text
+'Paris' Text
+',' Text
+' ' Text
+'Lyon' Text
+' ' Text
+'and' Text
+' ' Text
+'Marseille' Text
+'—' Text
+'are' Text
+' ' Text
+'subdivided' Text
+' ' Text
+'into' Text
+' ' Text
+'45' Text
+' ' Text
+'[[' Punctuation
+'Municipal arrondissements of France' Name.Tag
+'|' Punctuation
+'municipal' Text
+' ' Text
+'arrondissements' Text
+']]' Punctuation
+'.' Text
+'\n' Text
+
+'\n' Text
+
+'The' Text
+' ' Text
+'regions' Text
+',' Text
+' ' Text
+'departments' Text
+' ' Text
+'and' Text
+' ' Text
+'communes' Text
+' ' Text
+'are' Text
+' ' Text
+'all' Text
+' ' Text
+'known' Text
+' ' Text
+'as' Text
+' ' Text
+'[[' Punctuation
+'territorial collectivity' Name.Tag
+'|' Punctuation
+'territorial' Text
+' ' Text
+'collectivities' Text
+']]' Punctuation
+',' Text
+' ' Text
+'meaning' Text
+' ' Text
+'they' Text
+' ' Text
+'possess' Text
+' ' Text
+'local' Text
+' ' Text
+'assemblies' Text
+' ' Text
+'as' Text
+' ' Text
+'well' Text
+' ' Text
+'as' Text
+' ' Text
+'an' Text
+' ' Text
+'executive' Text
+'.' Text
+' ' Text
+'Today' Text
+',' Text
+' ' Text
+'arrondissements' Text
+' ' Text
+'and' Text
+' ' Text
+'cantons' Text
+' ' Text
+'are' Text
+' ' Text
+'merely' Text
+' ' Text
+'administrative' Text
+' ' Text
+'divisions' Text
+'.' Text
+' ' Text
+'However' Text
+',' Text
+' ' Text
+'this' Text
+' ' Text
+'was' Text
+' ' Text
+'not' Text
+' ' Text
+'always' Text
+' ' Text
+'the' Text
+' ' Text
+'case' Text
+'.' Text
+' ' Text
+'Until' Text
+' ' Text
+'1940' Text
+',' Text
+' ' Text
+'the' Text
+' ' Text
+'arrondissements' Text
+' ' Text
+'were' Text
+' ' Text
+'territorial' Text
+' ' Text
+'collectivities' Text
+' ' Text
+'with' Text
+' ' Text
+'an' Text
+' ' Text
+'elected' Text
+' ' Text
+'assembly' Text
+',' Text
+' ' Text
+'but' Text
+' ' Text
+'these' Text
+' ' Text
+'were' Text
+' ' Text
+'suspended' Text
+' ' Text
+'by' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Vichy France' Name.Tag
+'|' Punctuation
+'Vichy' Text
+' ' Text
+'regime' Text
+']]' Punctuation
+' ' Text
+'and' Text
+' ' Text
+'abolished' Text
+' ' Text
+'by' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'French Fourth Republic' Name.Tag
+'|' Punctuation
+'Fourth' Text
+' ' Text
+'Republic' Text
+']]' Punctuation
+' ' Text
+'in' Text
+' ' Text
+'1946' Text
+'.' Text
+'\n' Text
+
+'\n' Text
+
+'====' Generic.Subheading
+'Overseas territories and collectivities' Generic.Subheading
+'====' Generic.Subheading
+'\n' Text.Whitespace
+
+'[[' Punctuation
+'File' Name.Namespace
+':' Punctuation
+'France-Constituent-Lands.png' Name.Tag
+'|' Punctuation
+'thumb' Text
+'|' Punctuation
+'upright' Name.Attribute
+'=' Operator
+'1' Text
+'.' Text
+'8' Text
+'|' Punctuation
+'alt' Name.Attribute
+'=' Operator
+'diagram' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'overseas' Text
+' ' Text
+'territories' Text
+' ' Text
+'of' Text
+' ' Text
+'France' Text
+' ' Text
+'showing' Text
+' ' Text
+'map' Text
+' ' Text
+'shapes' Text
+'|' Punctuation
+'The' Text
+' ' Text
+'lands' Text
+' ' Text
+'making' Text
+' ' Text
+'up' Text
+' ' Text
+'the' Text
+' ' Text
+'French' Text
+' ' Text
+'Republic' Text
+',' Text
+' ' Text
+'shown' Text
+' ' Text
+'at' Text
+' ' Text
+'the' Text
+' ' Text
+'same' Text
+' ' Text
+'[[' Punctuation
+'scale (map)' Name.Tag
+'|' Punctuation
+'geographic' Text
+' ' Text
+'scale' Text
+']]' Punctuation
+']]' Punctuation
+'\n' Text
+
+'\n' Text
+
+'In' Text
+' ' Text
+'addition' Text
+' ' Text
+'to' Text
+' ' Text
+'the' Text
+' ' Text
+'18' Text
+' ' Text
+'regions' Text
+' ' Text
+'and' Text
+' ' Text
+'101' Text
+' ' Text
+'departments' Text
+',' Text
+' ' Text
+'the' Text
+' ' Text
+'French' Text
+' ' Text
+'Republic' Text
+' ' Text
+'has' Text
+' ' Text
+'five' Text
+' ' Text
+'[[' Punctuation
+'overseas collectivity' Name.Tag
+'|' Punctuation
+'overseas' Text
+' ' Text
+'collectivities' Text
+']]' Punctuation
+' ' Text
+'(' Text
+'[[' Punctuation
+'French Polynesia' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'[[' Punctuation
+'Saint Barthélemy' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'[[' Punctuation
+'Collectivity of Saint Martin' Name.Tag
+'|' Punctuation
+'Saint' Text
+' ' Text
+'Martin' Text
+']]' Punctuation
+',' Text
+' ' Text
+'[[' Punctuation
+'Saint Pierre and Miquelon' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'and' Text
+' ' Text
+'[[' Punctuation
+'Wallis and Futuna' Name.Tag
+']]' Punctuation
+')' Text
+',' Text
+' ' Text
+'one' Text
+' ' Text
+"''" Generic.Emph
+'[[' Punctuation
+'sui generis' Name.Tag
+']]' Punctuation
+"''" Generic.Emph
+' ' Text
+'collectivity' Text
+' ' Text
+'(' Text
+'[[' Punctuation
+'New Caledonia' Name.Tag
+']]' Punctuation
+')' Text
+',' Text
+' ' Text
+'one' Text
+' ' Text
+'[[' Punctuation
+'overseas territory (France)' Name.Tag
+'|' Punctuation
+'overseas' Text
+' ' Text
+'territory' Text
+']]' Punctuation
+' ' Text
+'(' Text
+'[[' Punctuation
+'French Southern and Antarctic Lands' Name.Tag
+']]' Punctuation
+')' Text
+',' Text
+' ' Text
+'and' Text
+' ' Text
+'one' Text
+' ' Text
+'island' Text
+' ' Text
+'possession' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'Pacific' Text
+' ' Text
+'Ocean' Text
+' ' Text
+'(' Text
+'[[' Punctuation
+'Clipperton Island' Name.Tag
+']]' Punctuation
+')' Text
+'.' Text
+'\n' Text
+
+'\n' Text
+
+'Overseas' Text
+' ' Text
+'collectivities' Text
+' ' Text
+'and' Text
+' ' Text
+'territories' Text
+' ' Text
+'form' Text
+' ' Text
+'part' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'French' Text
+' ' Text
+'Republic' Text
+',' Text
+' ' Text
+'but' Text
+' ' Text
+'do' Text
+' ' Text
+'not' Text
+' ' Text
+'form' Text
+' ' Text
+'part' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'European' Text
+' ' Text
+'Union' Text
+' ' Text
+'or' Text
+' ' Text
+'its' Text
+' ' Text
+'fiscal' Text
+' ' Text
+'area' Text
+' ' Text
+'(' Text
+'except' Text
+' ' Text
+'for' Text
+' ' Text
+'St' Text
+'.' Text
+' ' Text
+'Bartelemy' Text
+',' Text
+' ' Text
+'which' Text
+' ' Text
+'seceded' Text
+' ' Text
+'from' Text
+' ' Text
+'Guadeloupe' Text
+' ' Text
+'in' Text
+' ' Text
+'2007' Text
+')' Text
+'.' Text
+' ' Text
+'The' Text
+' ' Text
+'Pacific' Text
+' ' Text
+'Collectivities' Text
+' ' Text
+'(' Text
+'COMs' Text
+')' Text
+' ' Text
+'of' Text
+' ' Text
+'French' Text
+' ' Text
+'Polynesia' Text
+',' Text
+' ' Text
+'Wallis' Text
+' ' Text
+'and' Text
+' ' Text
+'Futuna' Text
+',' Text
+' ' Text
+'and' Text
+' ' Text
+'New' Text
+' ' Text
+'Caledonia' Text
+' ' Text
+'continue' Text
+' ' Text
+'to' Text
+' ' Text
+'use' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'CFP franc' Name.Tag
+']]' Punctuation
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Currency' Text
+' ' Text
+'and' Text
+' ' Text
+'Exchange' Text
+' ' Text
+'Rate' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'thetahititraveler' Text
+'.' Text
+'com' Text
+'/' Text
+'touristinfo' Text
+'/' Text
+'moneycurr' Text
+'.' Text
+'asp' Text
+' ' Text
+'|' Punctuation
+'url-status' Name.Label
+'=' Operator
+'dead' Text
+' ' Text
+'|' Punctuation
+'archive-url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'web' Text
+'.' Text
+'archive' Text
+'.' Text
+'org' Text
+'/' Text
+'web' Text
+'/' Text
+'20110717034857' Text
+'/' Text
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'thetahititraveler' Text
+'.' Text
+'com' Text
+'/' Text
+'touristinfo' Text
+'/' Text
+'moneycurr' Text
+'.' Text
+'asp' Text
+' ' Text
+'|' Punctuation
+'archive-date' Name.Label
+'=' Operator
+'17' Text
+' ' Text
+'July' Text
+' ' Text
+'2011' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'21' Text
+' ' Text
+'July' Text
+' ' Text
+'2011' Text
+' ' Text
+'|' Punctuation
+'publisher' Name.Label
+'=' Operator
+'Thetahititraveler' Text
+'.' Text
+'com' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'whose' Text
+' ' Text
+'value' Text
+' ' Text
+'is' Text
+' ' Text
+'strictly' Text
+' ' Text
+'linked' Text
+' ' Text
+'to' Text
+' ' Text
+'that' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'euro' Text
+'.' Text
+' ' Text
+'In' Text
+' ' Text
+'contrast' Text
+',' Text
+' ' Text
+'the' Text
+' ' Text
+'five' Text
+' ' Text
+'overseas' Text
+' ' Text
+'regions' Text
+' ' Text
+'used' Text
+' ' Text
+'the' Text
+' ' Text
+'French' Text
+' ' Text
+'franc' Text
+' ' Text
+'and' Text
+' ' Text
+'now' Text
+' ' Text
+'use' Text
+' ' Text
+'the' Text
+' ' Text
+'euro' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'2085rank' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'cia' Text
+'.' Text
+'gov' Text
+'/' Text
+'library' Text
+'/' Text
+'publications' Text
+'/' Text
+'the' Text
+'-' Text
+'world' Text
+'-' Text
+'factbook' Text
+'/' Text
+'rankorder' Text
+'/' Text
+'2085rank' Text
+'.' Text
+'html' Text
+'?' Text
+'countryName' Text
+'=' Text
+'France' Text
+'&' Text
+'countryCode' Text
+'=' Text
+'fr' Text
+'&' Text
+'regionCode' Text
+'=' Text
+'eu' Text
+'&' Text
+'rank' Text
+'=' Text
+'7' Text
+'#' Text
+'fr' Text
+' ' Text
+'|' Punctuation
+'url-status' Name.Label
+'=' Operator
+'dead' Text
+' ' Text
+'|' Punctuation
+'archive-url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'web' Text
+'.' Text
+'archive' Text
+'.' Text
+'org' Text
+'/' Text
+'web' Text
+'/' Text
+'20120513121037' Text
+'/' Text
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'cia' Text
+'.' Text
+'gov' Text
+'/' Text
+'library' Text
+'/' Text
+'publications' Text
+'/' Text
+'the' Text
+'-' Text
+'world' Text
+'-' Text
+'factbook' Text
+'/' Text
+'rankorder' Text
+'/' Text
+'2085rank' Text
+'.' Text
+'html' Text
+'?' Text
+'countryName' Text
+'=' Text
+'France' Text
+'&' Text
+'countryCode' Text
+'=' Text
+'fr' Text
+'&' Text
+'regionCode' Text
+'=' Text
+'eu' Text
+'&' Text
+'rank' Text
+'=' Text
+'7' Text
+'#' Text
+'fr' Text
+' ' Text
+'|' Punctuation
+'archive-date' Name.Label
+'=' Operator
+'13' Text
+' ' Text
+'May' Text
+' ' Text
+'2012' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'29' Text
+' ' Text
+'July' Text
+' ' Text
+'2010' Text
+' ' Text
+'|' Punctuation
+'website' Name.Label
+'=' Operator
+'The' Text
+' ' Text
+'World' Text
+' ' Text
+'Factbook' Text
+' ' Text
+'|' Punctuation
+'publisher' Name.Label
+'=' Operator
+'CIA' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'\n' Text
+
+'\n' Text.Whitespace
+
+'{|' Punctuation
+' ' Text.Whitespace
+'class' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+'wikitable' Literal.String.Double
+'"' Literal.String.Double
+' ' Text.Whitespace
+'style' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+'font' Literal.String.Double
+'-' Literal.String.Double
+'size' Literal.String.Double
+':' Literal.String.Double
+'90' Literal.String.Double
+'%' Literal.String.Double
+'"' Literal.String.Double
+'\n' Text
+
+'|-' Punctuation
+'\n' Text
+
+'!' Punctuation
+' ' Generic.Subheading
+'Name' Generic.Subheading
+'\n' Text
+
+'!' Punctuation
+' ' Generic.Subheading
+'Constitutional' Generic.Subheading
+' ' Generic.Subheading
+'status' Generic.Subheading
+'\n' Text
+
+'!' Punctuation
+' ' Generic.Subheading
+'Capital' Generic.Subheading
+'\n' Text
+
+'|-' Punctuation
+'\n' Text
+
+'|' Punctuation
+' ' Text
+'{{' Punctuation
+'Flag' Name.Tag
+'|' Punctuation
+'Clipperton' Text
+' ' Text
+'Island' Text
+'}}' Punctuation
+'\n' Text
+
+'|' Punctuation
+' ' Text
+'State' Text
+' ' Text
+'private' Text
+' ' Text
+'property' Text
+' ' Text
+'under' Text
+' ' Text
+'the' Text
+' ' Text
+'direct' Text
+' ' Text
+'authority' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Minister of Overseas France' Name.Tag
+'|' Punctuation
+'French' Text
+' ' Text
+'government' Text
+']]' Punctuation
+'\n' Text
+
+'!' Punctuation
+' ' Generic.Subheading
+"'" Generic.Subheading
+"'" Generic.Subheading
+'[' Generic.Subheading
+'[' Generic.Subheading
+'Uninhabited' Generic.Subheading
+']' Generic.Subheading
+']' Generic.Subheading
+"'" Generic.Subheading
+"'" Generic.Subheading
+'\n' Text
+
+'|-' Punctuation
+'\n' Text
+
+'|' Punctuation
+' ' Text
+'{{' Punctuation
+'Flag' Name.Tag
+'|' Punctuation
+'French' Text
+' ' Text
+'Polynesia' Text
+'}}' Punctuation
+'\n' Text
+
+'|' Punctuation
+' ' Text
+'Designated' Text
+' ' Text
+'as' Text
+' ' Text
+'an' Text
+' ' Text
+'overseas' Text
+' ' Text
+'land' Text
+' ' Text
+'(' Text
+"''" Generic.Emph
+'pays' Generic.Emph
+' ' Generic.Emph
+'d' Generic.Emph
+"'" Generic.Emph
+'outre' Generic.Emph
+'-' Generic.Emph
+'mer' Generic.Emph
+"''" Generic.Emph
+' ' Text
+'or' Text
+' ' Text
+'POM' Text
+')' Text
+',' Text
+' ' Text
+'the' Text
+' ' Text
+'status' Text
+' ' Text
+'is' Text
+' ' Text
+'the' Text
+' ' Text
+'same' Text
+' ' Text
+'as' Text
+' ' Text
+'an' Text
+' ' Text
+'overseas' Text
+' ' Text
+'collectivity' Text
+'.' Text
+'\n' Text
+
+'!' Punctuation
+' ' Generic.Subheading
+'[' Generic.Subheading
+'[' Generic.Subheading
+'Papeete' Generic.Subheading
+']' Generic.Subheading
+']' Generic.Subheading
+'\n' Text
+
+'|-' Punctuation
+'\n' Text
+
+'|' Punctuation
+' ' Text
+'{{' Punctuation
+'Flag' Name.Tag
+'|' Punctuation
+'French' Text
+' ' Text
+'Southern' Text
+' ' Text
+'and' Text
+' ' Text
+'Antarctic' Text
+' ' Text
+'Lands' Text
+'}}' Punctuation
+'\n' Text
+
+'|' Punctuation
+' ' Text
+'Overseas' Text
+' ' Text
+'territory' Text
+' ' Text
+'(' Text
+"''" Generic.Emph
+'territoire' Generic.Emph
+' ' Generic.Emph
+'d' Generic.Emph
+"'" Generic.Emph
+'outre' Generic.Emph
+'-' Generic.Emph
+'mer' Generic.Emph
+"''" Generic.Emph
+' ' Text
+'or' Text
+' ' Text
+'TOM' Text
+')' Text
+'\n' Text
+
+'!' Punctuation
+' ' Generic.Subheading
+'[' Generic.Subheading
+'[' Generic.Subheading
+'Port' Generic.Subheading
+'-' Generic.Subheading
+'aux' Generic.Subheading
+'-' Generic.Subheading
+'Français' Generic.Subheading
+']' Generic.Subheading
+']' Generic.Subheading
+'\n' Text
+
+'|-' Punctuation
+'\n' Text
+
+'|' Punctuation
+' ' Text
+'{{' Punctuation
+'Flag' Name.Tag
+'|' Punctuation
+'New' Text
+' ' Text
+'Caledonia' Text
+'}}' Punctuation
+'\n' Text
+
+'|' Punctuation
+' ' Text
+"''" Generic.Emph
+'[[' Punctuation
+'Sui generis' Name.Tag
+']]' Punctuation
+"''" Generic.Emph
+' ' Text
+'collectivity' Text
+'\n' Text
+
+'!' Punctuation
+' ' Generic.Subheading
+'[' Generic.Subheading
+'[' Generic.Subheading
+'Nouméa' Generic.Subheading
+']' Generic.Subheading
+']' Generic.Subheading
+'\n' Text
+
+'|-' Punctuation
+'\n' Text
+
+'|' Punctuation
+' ' Text
+'{{' Punctuation
+'Flag' Name.Tag
+'|' Punctuation
+'Saint' Text
+' ' Text
+'Barthélemy' Text
+'|' Punctuation
+'local' Text
+'}}' Punctuation
+'\n' Text
+
+'|' Punctuation
+' ' Text
+'Overseas' Text
+' ' Text
+'collectivity' Text
+' ' Text
+'(' Text
+"''" Generic.Emph
+'collectivité' Generic.Emph
+' ' Generic.Emph
+'d' Generic.Emph
+"'" Generic.Emph
+'outre' Generic.Emph
+'-' Generic.Emph
+'mer' Generic.Emph
+"''" Generic.Emph
+' ' Text
+'or' Text
+' ' Text
+'COM' Text
+')' Text
+'\n' Text
+
+'!' Punctuation
+' ' Generic.Subheading
+'[' Generic.Subheading
+'[' Generic.Subheading
+'Gustavia' Generic.Subheading
+',' Generic.Subheading
+' ' Generic.Subheading
+'Saint' Generic.Subheading
+' ' Generic.Subheading
+'Barthélemy' Generic.Subheading
+'|' Generic.Subheading
+'Gustavia' Generic.Subheading
+']' Generic.Subheading
+']' Generic.Subheading
+'\n' Text
+
+'|-' Punctuation
+'\n' Text
+
+'|' Punctuation
+' ' Text
+'{{' Punctuation
+'Flag' Name.Tag
+'|' Punctuation
+'Saint' Text
+' ' Text
+'Martin' Text
+'}}' Punctuation
+'\n' Text
+
+'|' Punctuation
+' ' Text
+'Overseas' Text
+' ' Text
+'collectivity' Text
+' ' Text
+'(' Text
+"''" Generic.Emph
+'collectivité' Generic.Emph
+' ' Generic.Emph
+'d' Generic.Emph
+"'" Generic.Emph
+'outre' Generic.Emph
+'-' Generic.Emph
+'mer' Generic.Emph
+"''" Generic.Emph
+' ' Text
+'or' Text
+' ' Text
+'COM' Text
+')' Text
+'\n' Text
+
+'!' Punctuation
+' ' Generic.Subheading
+'[' Generic.Subheading
+'[' Generic.Subheading
+'Marigot' Generic.Subheading
+',' Generic.Subheading
+' ' Generic.Subheading
+'Saint' Generic.Subheading
+' ' Generic.Subheading
+'Martin' Generic.Subheading
+'|' Generic.Subheading
+'Marigot' Generic.Subheading
+']' Generic.Subheading
+']' Generic.Subheading
+'\n' Text
+
+'|-' Punctuation
+'\n' Text
+
+'|' Punctuation
+' ' Text
+'{{' Punctuation
+'Flag' Name.Tag
+'|' Punctuation
+'Saint' Text
+' ' Text
+'Pierre' Text
+' ' Text
+'and' Text
+' ' Text
+'Miquelon' Text
+'|' Punctuation
+'local' Text
+'}}' Punctuation
+'\n' Text
+
+'|' Punctuation
+' ' Text
+'Overseas' Text
+' ' Text
+'collectivity' Text
+' ' Text
+'(' Text
+"''" Generic.Emph
+'collectivité' Generic.Emph
+' ' Generic.Emph
+'d' Generic.Emph
+"'" Generic.Emph
+'outre' Generic.Emph
+'-' Generic.Emph
+'mer' Generic.Emph
+"''" Generic.Emph
+' ' Text
+'or' Text
+' ' Text
+'COM' Text
+')' Text
+'.' Text
+' ' Text
+'Still' Text
+' ' Text
+'referred' Text
+' ' Text
+'to' Text
+' ' Text
+'as' Text
+' ' Text
+'a' Text
+' ' Text
+"''" Generic.Emph
+'collectivité' Generic.Emph
+' ' Generic.Emph
+'territoriale' Generic.Emph
+"''" Generic.Emph
+'.' Text
+'\n' Text
+
+'!' Punctuation
+' ' Generic.Subheading
+'[' Generic.Subheading
+'[' Generic.Subheading
+'Saint' Generic.Subheading
+'-' Generic.Subheading
+'Pierre' Generic.Subheading
+',' Generic.Subheading
+' ' Generic.Subheading
+'Saint' Generic.Subheading
+' ' Generic.Subheading
+'Pierre' Generic.Subheading
+' ' Generic.Subheading
+'and' Generic.Subheading
+' ' Generic.Subheading
+'Miquelon' Generic.Subheading
+'|' Generic.Subheading
+'Saint' Generic.Subheading
+'-' Generic.Subheading
+'Pierre' Generic.Subheading
+']' Generic.Subheading
+']' Generic.Subheading
+'\n' Text
+
+'|-' Punctuation
+'\n' Text
+
+'|' Punctuation
+' ' Text
+'{{' Punctuation
+'Flag' Name.Tag
+'|' Punctuation
+'Wallis' Text
+' ' Text
+'and' Text
+' ' Text
+'Futuna' Text
+'|' Punctuation
+'local' Text
+'}}' Punctuation
+'\n' Text
+
+'|' Punctuation
+' ' Text
+'Overseas' Text
+' ' Text
+'collectivity' Text
+' ' Text
+'(' Text
+"''" Generic.Emph
+'collectivité' Generic.Emph
+' ' Generic.Emph
+'d' Generic.Emph
+"'" Generic.Emph
+'outre' Generic.Emph
+'-' Generic.Emph
+'mer' Generic.Emph
+"''" Generic.Emph
+' ' Text
+'or' Text
+' ' Text
+'COM' Text
+')' Text
+'.' Text
+' ' Text
+'Still' Text
+' ' Text
+'referred' Text
+' ' Text
+'to' Text
+' ' Text
+'as' Text
+' ' Text
+'a' Text
+' ' Text
+"''" Generic.Emph
+'territoire' Generic.Emph
+"''" Generic.Emph
+'.' Text
+'\n' Text
+
+'!' Punctuation
+' ' Generic.Subheading
+'[' Generic.Subheading
+'[' Generic.Subheading
+'Mata' Generic.Subheading
+'-' Generic.Subheading
+'Utu' Generic.Subheading
+']' Generic.Subheading
+']' Generic.Subheading
+'\n' Text
+
+'|}' Punctuation
+'\n' Text
+
+'\n' Text
+
+'==' Generic.Subheading
+'Government and politics' Generic.Subheading
+'==' Generic.Subheading
+'\n' Text.Whitespace
+
+'{{' Punctuation
+'Main' Name.Tag
+'|' Punctuation
+'Politics' Text
+' ' Text
+'of' Text
+' ' Text
+'France' Text
+'}}' Punctuation
+'\n' Text
+
+'\n' Text
+
+'===' Generic.Subheading
+'Government' Generic.Subheading
+'===' Generic.Subheading
+'\n' Text.Whitespace
+
+'{|' Punctuation
+' ' Text.Whitespace
+'class' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+'wikitable' Literal.String.Double
+'"' Literal.String.Double
+' ' Text.Whitespace
+'style' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+'text' Literal.String.Double
+'-' Literal.String.Double
+'align' Literal.String.Double
+':' Literal.String.Double
+'left' Literal.String.Double
+';' Literal.String.Double
+' ' Literal.String.Double
+'float' Literal.String.Double
+':' Literal.String.Double
+'left' Literal.String.Double
+';' Literal.String.Double
+' ' Literal.String.Double
+'margin' Literal.String.Double
+'-' Literal.String.Double
+'right' Literal.String.Double
+':' Literal.String.Double
+'9px' Literal.String.Double
+';' Literal.String.Double
+' ' Literal.String.Double
+'margin' Literal.String.Double
+'-' Literal.String.Double
+'left' Literal.String.Double
+':' Literal.String.Double
+'2px' Literal.String.Double
+'"' Literal.String.Double
+'\n' Text
+
+'|-' Punctuation
+'\n' Text
+
+'|' Punctuation
+' ' Text.Whitespace
+'style' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+'text' Literal.String.Double
+'-' Literal.String.Double
+'align' Literal.String.Double
+':' Literal.String.Double
+'left' Literal.String.Double
+'"' Literal.String.Double
+' ' Text.Whitespace
+'|' Punctuation
+' ' Text
+'[[' Punctuation
+'File' Name.Namespace
+':' Punctuation
+'Emmanuel Macron (2019-10-09) 03 (cropped).jpg' Name.Tag
+'|' Punctuation
+'120px' Text
+']]' Punctuation
+'\n' Text
+
+'|' Punctuation
+' ' Text.Whitespace
+'style' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+'text' Literal.String.Double
+'-' Literal.String.Double
+'align' Literal.String.Double
+':' Literal.String.Double
+'left' Literal.String.Double
+'"' Literal.String.Double
+' ' Text.Whitespace
+'|' Punctuation
+' ' Text
+'[[' Punctuation
+'File' Name.Namespace
+':' Punctuation
+'Elisabeth Borne November 2022 close-up.jpg' Name.Tag
+'|' Punctuation
+'120px' Text
+']]' Punctuation
+'\n' Text
+
+'|-' Punctuation
+'\n' Text
+
+'|' Punctuation
+' ' Text.Whitespace
+'style' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+'text' Literal.String.Double
+'-' Literal.String.Double
+'align' Literal.String.Double
+':' Literal.String.Double
+'center' Literal.String.Double
+'"' Literal.String.Double
+' ' Text.Whitespace
+'|' Punctuation
+' ' Text
+'[[' Punctuation
+'Emmanuel Macron' Name.Tag
+']]' Punctuation
+'<' Punctuation
+'br' Name.Tag
+'/>' Punctuation
+'{{' Punctuation
+'Small' Name.Tag
+'|' Punctuation
+'[[' Punctuation
+'President of France' Name.Tag
+'|' Punctuation
+'President' Text
+']]' Punctuation
+'}}' Punctuation
+'\n' Text
+
+'|' Punctuation
+' ' Text.Whitespace
+'style' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+'text' Literal.String.Double
+'-' Literal.String.Double
+'align' Literal.String.Double
+':' Literal.String.Double
+'center' Literal.String.Double
+'"' Literal.String.Double
+' ' Text.Whitespace
+'|' Punctuation
+' ' Text
+'[[' Punctuation
+'Élisabeth Borne' Name.Tag
+']]' Punctuation
+'<' Punctuation
+'br' Name.Tag
+'/>' Punctuation
+'{{' Punctuation
+'Small' Name.Tag
+'|' Punctuation
+'[[' Punctuation
+'Prime Minister of France' Name.Tag
+'|' Punctuation
+'Prime' Text
+' ' Text
+'Minister' Text
+']]' Punctuation
+'}}' Punctuation
+'\n' Text
+
+'|}' Punctuation
+'\n' Text
+
+'France' Text
+' ' Text
+'is' Text
+' ' Text
+'a' Text
+' ' Text
+'[[' Punctuation
+'representative democracy' Name.Tag
+']]' Punctuation
+' ' Text
+'organised' Text
+' ' Text
+'as' Text
+' ' Text
+'a' Text
+' ' Text
+'[[' Punctuation
+'Unitary state' Name.Tag
+'|' Punctuation
+'unitary' Text
+']]' Punctuation
+',' Text
+' ' Text
+'[[' Punctuation
+'Semi-presidential system' Name.Tag
+'|' Punctuation
+'semi' Text
+'-' Text
+'presidential' Text
+']]' Punctuation
+' ' Text
+'[[' Punctuation
+'republic' Name.Tag
+']]' Punctuation
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Constitutional' Text
+' ' Text
+'Limits' Text
+' ' Text
+'on' Text
+' ' Text
+'Government' Text
+':' Text
+' ' Text
+'Country' Text
+' ' Text
+'Studies' Text
+' ' Text
+'–' Text
+' ' Text
+'France' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'democracyweb' Text
+'.' Text
+'org' Text
+'/' Text
+'limits' Text
+'/' Text
+'france' Text
+'.' Text
+'php' Text
+' ' Text
+'|' Punctuation
+'url-status' Name.Label
+'=' Operator
+'dead' Text
+' ' Text
+'|' Punctuation
+'archive-url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'web' Text
+'.' Text
+'archive' Text
+'.' Text
+'org' Text
+'/' Text
+'web' Text
+'/' Text
+'20130828081904' Text
+'/' Text
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'democracyweb' Text
+'.' Text
+'org' Text
+'/' Text
+'limits' Text
+'/' Text
+'france' Text
+'.' Text
+'php' Text
+' ' Text
+'|' Punctuation
+'archive-date' Name.Label
+'=' Operator
+'28' Text
+' ' Text
+'August' Text
+' ' Text
+'2013' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'30' Text
+' ' Text
+'September' Text
+' ' Text
+'2013' Text
+' ' Text
+'|' Punctuation
+'website' Name.Label
+'=' Operator
+'Democracy' Text
+' ' Text
+'Web' Text
+':' Text
+' ' Text
+'Comparative' Text
+' ' Text
+'studies' Text
+' ' Text
+'in' Text
+' ' Text
+'Freedom' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'As' Text
+' ' Text
+'one' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'earliest' Text
+' ' Text
+'republics' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'modern' Text
+' ' Text
+'world' Text
+',' Text
+' ' Text
+'democratic' Text
+' ' Text
+'traditions' Text
+' ' Text
+'and' Text
+' ' Text
+'values' Text
+' ' Text
+'are' Text
+' ' Text
+'deeply' Text
+' ' Text
+'rooted' Text
+' ' Text
+'in' Text
+' ' Text
+'French' Text
+' ' Text
+'culture' Text
+',' Text
+' ' Text
+'identity' Text
+' ' Text
+'and' Text
+' ' Text
+'politics' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+' ' Text.Whitespace
+'name' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+':' Literal.String.Double
+'1' Literal.String.Double
+'"' Literal.String.Double
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'France' Text
+' ' Text
+'{{' Punctuation
+'!' Name.Function
+'}}' Punctuation
+' ' Text
+'History' Text
+',' Text
+' ' Text
+'Map' Text
+',' Text
+' ' Text
+'Flag' Text
+',' Text
+' ' Text
+'Capital' Text
+',' Text
+' ' Text
+'&' Text
+' ' Text
+'Facts' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'britannica' Text
+'.' Text
+'com' Text
+'/' Text
+'place' Text
+'/' Text
+'France' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'27' Text
+' ' Text
+'August' Text
+' ' Text
+'2021' Text
+' ' Text
+'|' Punctuation
+'website' Name.Label
+'=' Operator
+'Encyclopedia' Text
+' ' Text
+'Britannica' Text
+' ' Text
+'|' Punctuation
+'language' Name.Label
+'=' Operator
+'en' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'The' Text
+' ' Text
+'Constitution' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'Fifth' Text
+' ' Text
+'Republic' Text
+' ' Text
+'was' Text
+' ' Text
+'approved' Text
+' ' Text
+'by' Text
+' ' Text
+'[[' Punctuation
+'1958 French constitutional referendum' Name.Tag
+'|' Punctuation
+'referendum' Text
+']]' Punctuation
+' ' Text
+'on' Text
+' ' Text
+'28' Text
+' ' Text
+'September' Text
+' ' Text
+'1958' Text
+',' Text
+' ' Text
+'establishing' Text
+' ' Text
+'a' Text
+' ' Text
+'framework' Text
+' ' Text
+'consisting' Text
+' ' Text
+'of' Text
+' ' Text
+'executive' Text
+',' Text
+' ' Text
+'legislative' Text
+' ' Text
+'and' Text
+' ' Text
+'judicial' Text
+' ' Text
+'branches' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'book' Name.Tag
+' ' Text
+'|' Punctuation
+'last' Name.Label
+'=' Operator
+'Helen' Text
+' ' Text
+'Drake' Text
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Contemporary' Text
+' ' Text
+'France' Text
+' ' Text
+'|' Punctuation
+'date' Name.Label
+'=' Operator
+'2011' Text
+' ' Text
+'|' Punctuation
+'publisher' Name.Label
+'=' Operator
+'Palgrave' Text
+' ' Text
+'Macmillan' Text
+' ' Text
+'|' Punctuation
+'isbn' Name.Label
+'=' Operator
+'978' Text
+'-' Text
+'0' Text
+'-' Text
+'333' Text
+'-' Text
+'79243' Text
+'-' Text
+'8' Text
+' ' Text
+'|' Punctuation
+'page' Name.Label
+'=' Operator
+'[' Punctuation
+'https://books.google.com/books?id=7L8cBQAAQBAJ&pg=PA95#v=onepage' Name.Label
+' ' Text.Whitespace
+'95' Text
+']' Punctuation
+' ' Text
+'|' Punctuation
+'doi' Name.Label
+'=' Operator
+'10' Text
+'.' Text
+'1007' Text
+'/' Text
+'978' Text
+'-' Text
+'0' Text
+'-' Text
+'230' Text
+'-' Text
+'36688' Text
+'-' Text
+'6' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'It' Text
+' ' Text
+'sought' Text
+' ' Text
+'to' Text
+' ' Text
+'address' Text
+' ' Text
+'the' Text
+' ' Text
+'instability' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'Third' Text
+' ' Text
+'and' Text
+' ' Text
+'Fourth' Text
+' ' Text
+'Republics' Text
+' ' Text
+'by' Text
+' ' Text
+'combining' Text
+' ' Text
+'elements' Text
+' ' Text
+'of' Text
+' ' Text
+'both' Text
+' ' Text
+'parliamentary' Text
+' ' Text
+'and' Text
+' ' Text
+'presidential' Text
+' ' Text
+'systems' Text
+',' Text
+' ' Text
+'while' Text
+' ' Text
+'greatly' Text
+' ' Text
+'strengthening' Text
+' ' Text
+'the' Text
+' ' Text
+'authority' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'executive' Text
+' ' Text
+'relative' Text
+' ' Text
+'to' Text
+' ' Text
+'the' Text
+' ' Text
+'legislature' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+' ' Text.Whitespace
+'name' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+':' Literal.String.Double
+'1' Literal.String.Double
+'"' Literal.String.Double
+' ' Text.Whitespace
+'/>' Punctuation
+'\n' Text
+
+'\n' Text
+
+'The' Text
+' ' Text
+'executive' Text
+' ' Text
+'branch' Text
+' ' Text
+'has' Text
+' ' Text
+'two' Text
+' ' Text
+'leaders' Text
+'.' Text
+' ' Text
+'The' Text
+' ' Text
+'[[' Punctuation
+'President of France' Name.Tag
+'|' Punctuation
+'President' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'Republic' Text
+']]' Punctuation
+',' Text
+' ' Text
+'currently' Text
+' ' Text
+'[[' Punctuation
+'Emmanuel Macron' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'is' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'head of state' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'elected' Text
+' ' Text
+'directly' Text
+' ' Text
+'by' Text
+' ' Text
+'universal' Text
+' ' Text
+'adult' Text
+' ' Text
+'suffrage' Text
+' ' Text
+'for' Text
+' ' Text
+'a' Text
+' ' Text
+'five' Text
+'-' Text
+'year' Text
+' ' Text
+'term' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Le' Text
+' ' Text
+'quinquennat' Text
+' ' Text
+':' Text
+' ' Text
+'le' Text
+' ' Text
+'référendum' Text
+' ' Text
+'du' Text
+' ' Text
+'24' Text
+' ' Text
+'Septembre' Text
+' ' Text
+'2000' Text
+' ' Text
+'|' Punctuation
+'trans-title' Name.Label
+'=' Operator
+'The' Text
+' ' Text
+'5' Text
+'-' Text
+'year' Text
+' ' Text
+'term' Text
+':' Text
+' ' Text
+'referendum' Text
+' ' Text
+'of' Text
+' ' Text
+'24' Text
+' ' Text
+'September' Text
+' ' Text
+'2000' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'ladocumentationfrancaise' Text
+'.' Text
+'fr' Text
+'/' Text
+'dossiers' Text
+'/' Text
+'quinquennat' Text
+'/' Text
+'index' Text
+'.' Text
+'shtml' Text
+' ' Text
+'|' Punctuation
+'url-status' Name.Label
+'=' Operator
+'live' Text
+' ' Text
+'|' Punctuation
+'archive-url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'web' Text
+'.' Text
+'archive' Text
+'.' Text
+'org' Text
+'/' Text
+'web' Text
+'/' Text
+'20100812105736' Text
+'/' Text
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'ladocumentationfrancaise' Text
+'.' Text
+'fr' Text
+'/' Text
+'dossiers' Text
+'/' Text
+'quinquennat' Text
+'/' Text
+'index' Text
+'.' Text
+'shtml' Text
+' ' Text
+'|' Punctuation
+'archive-date' Name.Label
+'=' Operator
+'12' Text
+' ' Text
+'August' Text
+' ' Text
+'2010' Text
+' ' Text
+'|' Punctuation
+'language' Name.Label
+'=' Operator
+'fr' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'The' Text
+' ' Text
+'[[' Punctuation
+'Prime Minister of France' Name.Tag
+'|' Punctuation
+'Prime' Text
+' ' Text
+'Minister' Text
+']]' Punctuation
+',' Text
+' ' Text
+'currently' Text
+' ' Text
+'[[' Punctuation
+'Élisabeth Borne' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'is' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'head of government' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'appointed' Text
+' ' Text
+'by' Text
+' ' Text
+'the' Text
+' ' Text
+'President' Text
+' ' Text
+'to' Text
+' ' Text
+'lead' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Government of France' Name.Tag
+'|' Punctuation
+'government' Text
+']]' Punctuation
+'.' Text
+' ' Text
+'The' Text
+' ' Text
+'President' Text
+' ' Text
+'has' Text
+' ' Text
+'the' Text
+' ' Text
+'power' Text
+' ' Text
+'to' Text
+' ' Text
+'dissolve' Text
+' ' Text
+'Parliament' Text
+' ' Text
+'or' Text
+' ' Text
+'circumvent' Text
+' ' Text
+'it' Text
+' ' Text
+'by' Text
+' ' Text
+'submitting' Text
+' ' Text
+'referendums' Text
+' ' Text
+'directly' Text
+' ' Text
+'to' Text
+' ' Text
+'the' Text
+' ' Text
+'people' Text
+';' Text
+' ' Text
+'the' Text
+' ' Text
+'President' Text
+' ' Text
+'also' Text
+' ' Text
+'appoints' Text
+' ' Text
+'judges' Text
+' ' Text
+'and' Text
+' ' Text
+'civil' Text
+' ' Text
+'servants' Text
+',' Text
+' ' Text
+'negotiates' Text
+' ' Text
+'and' Text
+' ' Text
+'ratifies' Text
+' ' Text
+'international' Text
+' ' Text
+'agreements' Text
+',' Text
+' ' Text
+'as' Text
+' ' Text
+'well' Text
+' ' Text
+'as' Text
+' ' Text
+'serves' Text
+' ' Text
+'as' Text
+' ' Text
+'commander' Text
+'-' Text
+'in' Text
+'-' Text
+'chief' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'Armed' Text
+' ' Text
+'Forces' Text
+'.' Text
+' ' Text
+'The' Text
+' ' Text
+'Prime' Text
+' ' Text
+'Minister' Text
+' ' Text
+'determines' Text
+' ' Text
+'public' Text
+' ' Text
+'policy' Text
+' ' Text
+'and' Text
+' ' Text
+'oversees' Text
+' ' Text
+'the' Text
+' ' Text
+'civil' Text
+' ' Text
+'service' Text
+',' Text
+' ' Text
+'with' Text
+' ' Text
+'an' Text
+' ' Text
+'emphasis' Text
+' ' Text
+'on' Text
+' ' Text
+'domestic' Text
+' ' Text
+'matters' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'date' Name.Label
+'=' Operator
+'13' Text
+' ' Text
+'March' Text
+' ' Text
+'2013' Text
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'The' Text
+' ' Text
+'French' Text
+' ' Text
+'National' Text
+' ' Text
+'Assembly' Text
+' ' Text
+'-' Text
+' ' Text
+'Constitution' Text
+' ' Text
+'of' Text
+' ' Text
+'October' Text
+' ' Text
+'4' Text
+',' Text
+' ' Text
+'1958' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'assemblee' Text
+'-' Text
+'nationale' Text
+'.' Text
+'fr' Text
+'/' Text
+'english' Text
+'/' Text
+'8ab' Text
+'.' Text
+'asp' Text
+' ' Text
+'|' Punctuation
+'archive-url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'web' Text
+'.' Text
+'archive' Text
+'.' Text
+'org' Text
+'/' Text
+'web' Text
+'/' Text
+'20130313212736' Text
+'/' Text
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'assemblee' Text
+'-' Text
+'nationale' Text
+'.' Text
+'fr' Text
+'/' Text
+'english' Text
+'/' Text
+'8ab' Text
+'.' Text
+'asp' Text
+' ' Text
+'|' Punctuation
+'archive-date' Name.Label
+'=' Operator
+'13' Text
+' ' Text
+'March' Text
+' ' Text
+'2013' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'27' Text
+' ' Text
+'August' Text
+' ' Text
+'2021' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'In' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'2022 French presidential election' Name.Tag
+'|' Punctuation
+'2022' Text
+' ' Text
+'presidential' Text
+' ' Text
+'election' Text
+']]' Punctuation
+' ' Text
+'president' Text
+' ' Text
+'Macron' Text
+' ' Text
+'was' Text
+' ' Text
+'re' Text
+'-' Text
+'elected' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'news' Name.Tag
+' ' Text
+'|' Punctuation
+'date' Name.Label
+'=' Operator
+'24' Text
+' ' Text
+'April' Text
+' ' Text
+'2022' Text
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'What' Text
+"'" Text
+'s' Text
+' ' Text
+'in' Text
+' ' Text
+'Emmanuel' Text
+' ' Text
+'Macron' Text
+"'" Text
+'s' Text
+' ' Text
+'intray' Text
+' ' Text
+'after' Text
+' ' Text
+'his' Text
+' ' Text
+'re' Text
+'-' Text
+'election' Text
+' ' Text
+'as' Text
+' ' Text
+'French' Text
+' ' Text
+'president' Text
+'?' Text
+' ' Text
+'|' Punctuation
+'language' Name.Label
+'=' Operator
+'en' Text
+' ' Text
+'|' Punctuation
+'work' Name.Label
+'=' Operator
+'the' Text
+' ' Text
+'Guardian' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'theguardian' Text
+'.' Text
+'com' Text
+'/' Text
+'world' Text
+'/' Text
+'2022' Text
+'/' Text
+'apr' Text
+'/' Text
+'24' Text
+'/' Text
+'whats' Text
+'-' Text
+'in' Text
+'-' Text
+'emmanuel' Text
+'-' Text
+'macrons' Text
+'-' Text
+'intray' Text
+'-' Text
+'after' Text
+'-' Text
+'his' Text
+'-' Text
+'re' Text
+'-' Text
+'election' Text
+'-' Text
+'as' Text
+'-' Text
+'french' Text
+'-' Text
+'president' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'\n' Text
+
+'\n' Text
+
+'[[' Punctuation
+'File' Name.Namespace
+':' Punctuation
+'Palais Bourbon, Paris 7e, NW View 140402 1.jpg' Name.Tag
+'|' Punctuation
+'thumb' Text
+'|' Punctuation
+'[[' Punctuation
+'Palais Bourbon' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'the' Text
+' ' Text
+'meeting' Text
+' ' Text
+'place' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'National Assembly (France)' Name.Tag
+'|' Punctuation
+'National' Text
+' ' Text
+'Assembly' Text
+']]' Punctuation
+',' Text
+' ' Text
+'the' Text
+' ' Text
+'lower' Text
+' ' Text
+'legislative' Text
+' ' Text
+'chamber' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'French Parliament' Name.Tag
+']]' Punctuation
+'.' Text
+']]' Punctuation
+'\n' Text
+
+'The' Text
+' ' Text
+'legislature' Text
+' ' Text
+'consists' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'French Parliament' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'a' Text
+' ' Text
+'[[' Punctuation
+'Bicameralism' Name.Tag
+'|' Punctuation
+'bicameral' Text
+']]' Punctuation
+' ' Text
+'body' Text
+' ' Text
+'made' Text
+' ' Text
+'up' Text
+' ' Text
+'of' Text
+' ' Text
+'a' Text
+' ' Text
+'[[' Punctuation
+'lower house' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'National Assembly (France)' Name.Tag
+'|' Punctuation
+'National' Text
+' ' Text
+'Assembly' Text
+']]' Punctuation
+' ' Text
+'(' Text
+"''" Generic.Emph
+'Assemblée' Generic.Emph
+' ' Generic.Emph
+'nationale' Generic.Emph
+"''" Generic.Emph
+')' Text
+' ' Text
+'and' Text
+' ' Text
+'an' Text
+' ' Text
+'[[' Punctuation
+'upper house' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Senate (France)' Name.Tag
+'|' Punctuation
+'Senate' Text
+']]' Punctuation
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'The' Text
+' ' Text
+'National' Text
+' ' Text
+'Assembly' Text
+' ' Text
+'and' Text
+' ' Text
+'the' Text
+' ' Text
+'Senate' Text
+'&nbsp;' Name.Entity
+'–' Text
+' ' Text
+'General' Text
+' ' Text
+'Characteristics' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'Parliament' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'assemblee' Text
+'-' Text
+'nationale' Text
+'.' Text
+'fr' Text
+'/' Text
+'english' Text
+'/' Text
+'synthetic_files' Text
+'/' Text
+'file_4' Text
+'.' Text
+'asp' Text
+' ' Text
+'|' Punctuation
+'url-status' Name.Label
+'=' Operator
+'dead' Text
+' ' Text
+'|' Punctuation
+'archive-url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'web' Text
+'.' Text
+'archive' Text
+'.' Text
+'org' Text
+'/' Text
+'web' Text
+'/' Text
+'20081205055025' Text
+'/' Text
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'assemblee' Text
+'-' Text
+'nationale' Text
+'.' Text
+'fr' Text
+'/' Text
+'english' Text
+'/' Text
+'synthetic_files' Text
+'/' Text
+'file_4' Text
+'.' Text
+'asp' Text
+' ' Text
+'|' Punctuation
+'archive-date' Name.Label
+'=' Operator
+'5' Text
+' ' Text
+'December' Text
+' ' Text
+'2008' Text
+' ' Text
+'|' Punctuation
+'website' Name.Label
+'=' Operator
+'Assemblée' Text
+' ' Text
+'Nationale' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'Legislators' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'National' Text
+' ' Text
+'Assembly' Text
+',' Text
+' ' Text
+'known' Text
+' ' Text
+'as' Text
+' ' Text
+"''" Generic.Emph
+'[[' Punctuation
+'députés' Name.Tag
+']]' Punctuation
+',' Generic.Emph
+"''" Generic.Emph
+' ' Text
+'represent' Text
+' ' Text
+'local' Text
+' ' Text
+'constituencies' Text
+' ' Text
+'and' Text
+' ' Text
+'are' Text
+' ' Text
+'directly' Text
+' ' Text
+'elected' Text
+' ' Text
+'for' Text
+' ' Text
+'five' Text
+'-' Text
+'year' Text
+' ' Text
+'terms' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Election' Text
+' ' Text
+'of' Text
+' ' Text
+'deputies' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'assemblee' Text
+'-' Text
+'nationale' Text
+'.' Text
+'fr' Text
+'/' Text
+'english' Text
+'/' Text
+'election' Text
+'.' Text
+'asp' Text
+' ' Text
+'|' Punctuation
+'url-status' Name.Label
+'=' Operator
+'dead' Text
+' ' Text
+'|' Punctuation
+'archive-url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'web' Text
+'.' Text
+'archive' Text
+'.' Text
+'org' Text
+'/' Text
+'web' Text
+'/' Text
+'20110704054719' Text
+'/' Text
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'assemblee' Text
+'-' Text
+'nationale' Text
+'.' Text
+'fr' Text
+'/' Text
+'english' Text
+'/' Text
+'election' Text
+'.' Text
+'asp' Text
+' ' Text
+'|' Punctuation
+'archive-date' Name.Label
+'=' Operator
+'4' Text
+' ' Text
+'July' Text
+' ' Text
+'2011' Text
+' ' Text
+'|' Punctuation
+'website' Name.Label
+'=' Operator
+'Assemblée' Text
+' ' Text
+'Nationale' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'The' Text
+' ' Text
+'Assembly' Text
+' ' Text
+'has' Text
+' ' Text
+'the' Text
+' ' Text
+'power' Text
+' ' Text
+'to' Text
+' ' Text
+'dismiss' Text
+' ' Text
+'the' Text
+' ' Text
+'government' Text
+' ' Text
+'by' Text
+' ' Text
+'majority' Text
+' ' Text
+'vote' Text
+'.' Text
+' ' Text
+'Senators' Text
+' ' Text
+'are' Text
+' ' Text
+'chosen' Text
+' ' Text
+'by' Text
+' ' Text
+'an' Text
+' ' Text
+'electoral' Text
+' ' Text
+'college' Text
+' ' Text
+'for' Text
+' ' Text
+'six' Text
+'-' Text
+'year' Text
+' ' Text
+'terms' Text
+',' Text
+' ' Text
+'with' Text
+' ' Text
+'half' Text
+' ' Text
+'the' Text
+' ' Text
+'seats' Text
+' ' Text
+'submitted' Text
+' ' Text
+'to' Text
+' ' Text
+'election' Text
+' ' Text
+'every' Text
+' ' Text
+'three' Text
+' ' Text
+'years' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'The' Text
+' ' Text
+'senatorial' Text
+' ' Text
+'elections' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'senat' Text
+'.' Text
+'fr' Text
+'/' Text
+'lng' Text
+'/' Text
+'en' Text
+'/' Text
+'election_senateurs' Text
+'.' Text
+'html' Text
+' ' Text
+'|' Punctuation
+'website' Name.Label
+'=' Operator
+'Sénate' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'The' Text
+' ' Text
+'Senate' Text
+"'" Text
+'s' Text
+' ' Text
+'legislative' Text
+' ' Text
+'powers' Text
+' ' Text
+'are' Text
+' ' Text
+'limited' Text
+';' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'event' Text
+' ' Text
+'of' Text
+' ' Text
+'disagreement' Text
+' ' Text
+'between' Text
+' ' Text
+'the' Text
+' ' Text
+'two' Text
+' ' Text
+'chambers' Text
+',' Text
+' ' Text
+'the' Text
+' ' Text
+'National' Text
+' ' Text
+'Assembly' Text
+' ' Text
+'has' Text
+' ' Text
+'the' Text
+' ' Text
+'final' Text
+' ' Text
+'say' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'date' Name.Label
+'=' Operator
+'18' Text
+' ' Text
+'August' Text
+' ' Text
+'2007' Text
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Le' Text
+' ' Text
+'role' Text
+' ' Text
+'du' Text
+' ' Text
+'Sénat' Text
+' ' Text
+'|' Punctuation
+'trans-title' Name.Label
+'=' Operator
+'What' Text
+' ' Text
+'is' Text
+' ' Text
+'the' Text
+' ' Text
+'purpose' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'Senate' Text
+'?' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'politique' Text
+'.' Text
+'net' Text
+'/' Text
+'2007081801' Text
+'-' Text
+'le' Text
+'-' Text
+'role' Text
+'-' Text
+'du' Text
+'-' Text
+'senat' Text
+'.' Text
+'htm' Text
+' ' Text
+'|' Punctuation
+'url-status' Name.Label
+'=' Operator
+'live' Text
+' ' Text
+'|' Punctuation
+'archive-url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'web' Text
+'.' Text
+'archive' Text
+'.' Text
+'org' Text
+'/' Text
+'web' Text
+'/' Text
+'20100618060857' Text
+'/' Text
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'politique' Text
+'.' Text
+'net' Text
+'/' Text
+'2007081801' Text
+'-' Text
+'le' Text
+'-' Text
+'role' Text
+'-' Text
+'du' Text
+'-' Text
+'senat' Text
+'.' Text
+'htm' Text
+' ' Text
+'|' Punctuation
+'archive-date' Name.Label
+'=' Operator
+'18' Text
+' ' Text
+'June' Text
+' ' Text
+'2010' Text
+' ' Text
+'|' Punctuation
+'language' Name.Label
+'=' Operator
+'fr' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'The' Text
+' ' Text
+'parliament' Text
+' ' Text
+'is' Text
+' ' Text
+'responsible' Text
+' ' Text
+'for' Text
+' ' Text
+'determining' Text
+' ' Text
+'the' Text
+' ' Text
+'rules' Text
+' ' Text
+'and' Text
+' ' Text
+'principles' Text
+' ' Text
+'concerning' Text
+' ' Text
+'most' Text
+' ' Text
+'areas' Text
+' ' Text
+'of' Text
+' ' Text
+'law' Text
+',' Text
+' ' Text
+'political' Text
+' ' Text
+'amnesty' Text
+',' Text
+' ' Text
+'and' Text
+' ' Text
+'fiscal' Text
+' ' Text
+'policy' Text
+';' Text
+' ' Text
+'however' Text
+',' Text
+' ' Text
+'the' Text
+' ' Text
+'government' Text
+' ' Text
+'may' Text
+' ' Text
+'draft' Text
+' ' Text
+'specific' Text
+' ' Text
+'details' Text
+' ' Text
+'concerning' Text
+' ' Text
+'most' Text
+' ' Text
+'laws' Text
+'.' Text
+'\n' Text
+
+'\n' Text
+
+'Until' Text
+' ' Text
+'World' Text
+' ' Text
+'War' Text
+' ' Text
+'II' Text
+',' Text
+' ' Text
+'[[' Punctuation
+'Radicalism (historical)' Name.Tag
+'|' Punctuation
+'Radicals' Text
+']]' Punctuation
+' ' Text
+'were' Text
+' ' Text
+'a' Text
+' ' Text
+'strong' Text
+' ' Text
+'political' Text
+' ' Text
+'force' Text
+' ' Text
+'in' Text
+' ' Text
+'France' Text
+',' Text
+' ' Text
+'embodied' Text
+' ' Text
+'by' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Republican, Radical and Radical-Socialist Party' Name.Tag
+']]' Punctuation
+' ' Text
+'which' Text
+' ' Text
+'was' Text
+' ' Text
+'the' Text
+' ' Text
+'most' Text
+' ' Text
+'important' Text
+' ' Text
+'party' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'Third' Text
+' ' Text
+'Republic' Text
+'.' Text
+' ' Text
+'From' Text
+' ' Text
+'World' Text
+' ' Text
+'War' Text
+' ' Text
+'II' Text
+' ' Text
+'until' Text
+' ' Text
+'2017' Text
+',' Text
+' ' Text
+'French' Text
+' ' Text
+'politics' Text
+' ' Text
+'was' Text
+' ' Text
+'dominated' Text
+' ' Text
+'by' Text
+' ' Text
+'two' Text
+' ' Text
+'politically' Text
+' ' Text
+'opposed' Text
+' ' Text
+'groupings' Text
+':' Text
+' ' Text
+'one' Text
+' ' Text
+'left' Text
+'-' Text
+'wing' Text
+',' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+"French Section of the Workers' International" Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'which' Text
+' ' Text
+'was' Text
+' ' Text
+'succeeded' Text
+' ' Text
+'by' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Socialist Party (France)' Name.Tag
+'|' Punctuation
+'Socialist' Text
+' ' Text
+'Party' Text
+']]' Punctuation
+' ' Text
+'(' Text
+'in' Text
+' ' Text
+'1969' Text
+')' Text
+';' Text
+' ' Text
+'and' Text
+' ' Text
+'the' Text
+' ' Text
+'other' Text
+' ' Text
+'right' Text
+'-' Text
+'wing' Text
+',' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Gaullist Party' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'whose' Text
+' ' Text
+'name' Text
+' ' Text
+'changed' Text
+' ' Text
+'over' Text
+' ' Text
+'time' Text
+' ' Text
+'to' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Rally of the French People' Name.Tag
+']]' Punctuation
+' ' Text
+'(' Text
+'1947' Text
+')' Text
+',' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Union of Democrats for the Republic' Name.Tag
+']]' Punctuation
+' ' Text
+'(' Text
+'1958' Text
+')' Text
+',' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Rally for the Republic' Name.Tag
+']]' Punctuation
+' ' Text
+'(' Text
+'1976' Text
+')' Text
+',' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Union for a Popular Movement' Name.Tag
+']]' Punctuation
+' ' Text
+'(' Text
+'2007' Text
+')' Text
+' ' Text
+'and' Text
+' ' Text
+'[[' Punctuation
+'The Republicans (France)' Name.Tag
+'|' Punctuation
+'The' Text
+' ' Text
+'Republicans' Text
+']]' Punctuation
+' ' Text
+'(' Text
+'since' Text
+' ' Text
+'2015' Text
+')' Text
+'.' Text
+' ' Text
+'In' Text
+' ' Text
+'the' Text
+' ' Text
+'2017' Text
+' ' Text
+'presidential' Text
+' ' Text
+'and' Text
+' ' Text
+'legislative' Text
+' ' Text
+'elections' Text
+',' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Radical centrism' Name.Tag
+'|' Punctuation
+'radical' Text
+' ' Text
+'centrist' Text
+']]' Punctuation
+' ' Text
+'party' Text
+' ' Text
+'[[' Punctuation
+'La République En Marche!' Name.Tag
+']]' Punctuation
+' ' Text
+'(' Text
+'LREM' Text
+')' Text
+' ' Text
+'became' Text
+' ' Text
+'the' Text
+' ' Text
+'dominant' Text
+' ' Text
+'force' Text
+',' Text
+' ' Text
+'overtaking' Text
+' ' Text
+'both' Text
+' ' Text
+'Socialists' Text
+' ' Text
+'and' Text
+' ' Text
+'Republicans' Text
+'.' Text
+' ' Text
+'LREM' Text
+"'" Text
+'s' Text
+' ' Text
+'opponent' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'second' Text
+' ' Text
+'round' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'2017' Text
+' ' Text
+'and' Text
+' ' Text
+'2022' Text
+' ' Text
+'presidential' Text
+' ' Text
+'elections' Text
+' ' Text
+'was' Text
+' ' Text
+'the' Text
+' ' Text
+'growing' Text
+' ' Text
+'far' Text
+'-' Text
+'right' Text
+' ' Text
+'party' Text
+' ' Text
+'[[' Punctuation
+'National Rally' Name.Tag
+']]' Punctuation
+'.' Text
+' ' Text
+'Since' Text
+' ' Text
+'2020' Text
+',' Text
+' ' Text
+'[[' Punctuation
+'Europe Ecology – The Greens' Name.Tag
+']]' Punctuation
+' ' Text
+'have' Text
+' ' Text
+'performed' Text
+' ' Text
+'well' Text
+' ' Text
+'in' Text
+' ' Text
+'mayoral' Text
+' ' Text
+'elections' Text
+' ' Text
+'in' Text
+' ' Text
+'major' Text
+' ' Text
+'cities' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+' author ' Name.Label
+'=' Operator
+' ' Text
+'Romain' Text
+' ' Text
+'Brunet' Text
+' ' Text
+'|' Punctuation
+' website ' Name.Label
+'=' Operator
+' ' Text
+'France24' Text
+' ' Text
+'|' Punctuation
+' title ' Name.Label
+'=' Operator
+' ' Text
+'After' Text
+' ' Text
+'green' Text
+' ' Text
+'wave' Text
+' ' Text
+'in' Text
+' ' Text
+'local' Text
+' ' Text
+'elections' Text
+',' Text
+' ' Text
+'is' Text
+' ' Text
+'France' Text
+"'" Text
+'s' Text
+' ' Text
+'left' Text
+' ' Text
+'back' Text
+' ' Text
+'on' Text
+' ' Text
+'track' Text
+'?' Text
+' ' Text
+'|' Punctuation
+' date ' Name.Label
+'=' Operator
+' ' Text
+'29' Text
+' ' Text
+'June' Text
+' ' Text
+'2020' Text
+' ' Text
+'|' Punctuation
+' url ' Name.Label
+'=' Operator
+' ' Text
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'france24' Text
+'.' Text
+'com' Text
+'/' Text
+'en' Text
+'/' Text
+'20200629' Text
+'-' Text
+'after' Text
+'-' Text
+'green' Text
+'-' Text
+'wave' Text
+'-' Text
+'in' Text
+'-' Text
+'local' Text
+'-' Text
+'elections' Text
+'-' Text
+'is' Text
+'-' Text
+'france' Text
+'-' Text
+'s' Text
+'-' Text
+'left' Text
+'-' Text
+'back' Text
+'-' Text
+'on' Text
+'-' Text
+'track' Text
+' ' Text
+'|' Punctuation
+' language ' Name.Label
+'=' Operator
+' ' Text
+'en' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'while' Text
+' ' Text
+'on' Text
+' ' Text
+'a' Text
+' ' Text
+'national' Text
+' ' Text
+'level' Text
+',' Text
+' ' Text
+'an' Text
+' ' Text
+'alliance' Text
+' ' Text
+'of' Text
+' ' Text
+'Left' Text
+' ' Text
+'parties' Text
+' ' Text
+'(' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'NUPES' Name.Tag
+']]' Punctuation
+')' Text
+' ' Text
+'was' Text
+' ' Text
+'the' Text
+' ' Text
+'second' Text
+'-' Text
+'largest' Text
+' ' Text
+'voting' Text
+' ' Text
+'block' Text
+' ' Text
+'elected' Text
+' ' Text
+'to' Text
+' ' Text
+'the' Text
+' ' Text
+'lower' Text
+' ' Text
+'house' Text
+' ' Text
+'in' Text
+' ' Text
+'2022' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+' website ' Name.Label
+'=' Operator
+' ' Text
+'France' Text
+' ' Text
+'24' Text
+' ' Text
+'|' Punctuation
+' title ' Name.Label
+'=' Operator
+' ' Text
+'Takeaways' Text
+' ' Text
+'from' Text
+' ' Text
+'the' Text
+' ' Text
+'final' Text
+' ' Text
+'round' Text
+' ' Text
+'of' Text
+' ' Text
+'France' Text
+"'" Text
+'s' Text
+' ' Text
+'parliamentary' Text
+' ' Text
+'elections' Text
+' ' Text
+'|' Punctuation
+' url ' Name.Label
+'=' Operator
+' ' Text
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'france24' Text
+'.' Text
+'com' Text
+'/' Text
+'en' Text
+'/' Text
+'france' Text
+'/' Text
+'20220620' Text
+'-' Text
+'takeaways' Text
+'-' Text
+'from' Text
+'-' Text
+'the' Text
+'-' Text
+'second' Text
+'-' Text
+'round' Text
+'-' Text
+'of' Text
+'-' Text
+'france' Text
+'-' Text
+'s' Text
+'-' Text
+'parliamentary' Text
+'-' Text
+'elections' Text
+' ' Text
+'|' Punctuation
+' date ' Name.Label
+'=' Operator
+' ' Text
+'20' Text
+' ' Text
+'June' Text
+' ' Text
+'2022' Text
+' ' Text
+'|' Punctuation
+' language ' Name.Label
+'=' Operator
+' ' Text
+'en' Text
+' ' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'\n' Text
+
+'\n' Text
+
+'The' Text
+' ' Text
+'electorate' Text
+' ' Text
+'is' Text
+' ' Text
+'constitutionally' Text
+' ' Text
+'empowered' Text
+' ' Text
+'to' Text
+' ' Text
+'vote' Text
+' ' Text
+'on' Text
+' ' Text
+'amendments' Text
+' ' Text
+'passed' Text
+' ' Text
+'by' Text
+' ' Text
+'the' Text
+' ' Text
+'Parliament' Text
+' ' Text
+'and' Text
+' ' Text
+'bills' Text
+' ' Text
+'submitted' Text
+' ' Text
+'by' Text
+' ' Text
+'the' Text
+' ' Text
+'president' Text
+'.' Text
+' ' Text
+'Referendums' Text
+' ' Text
+'have' Text
+' ' Text
+'played' Text
+' ' Text
+'a' Text
+' ' Text
+'key' Text
+' ' Text
+'role' Text
+' ' Text
+'in' Text
+' ' Text
+'shaping' Text
+' ' Text
+'French' Text
+' ' Text
+'politics' Text
+' ' Text
+'and' Text
+' ' Text
+'even' Text
+' ' Text
+'foreign' Text
+' ' Text
+'policy' Text
+';' Text
+' ' Text
+'voters' Text
+' ' Text
+'have' Text
+' ' Text
+'decided' Text
+' ' Text
+'on' Text
+' ' Text
+'such' Text
+' ' Text
+'matters' Text
+' ' Text
+'as' Text
+' ' Text
+'Algeria' Text
+"'" Text
+'s' Text
+' ' Text
+'independence' Text
+',' Text
+' ' Text
+'the' Text
+' ' Text
+'election' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'president' Text
+' ' Text
+'by' Text
+' ' Text
+'popular' Text
+' ' Text
+'vote' Text
+',' Text
+' ' Text
+'the' Text
+' ' Text
+'formation' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'EU' Text
+',' Text
+' ' Text
+'and' Text
+' ' Text
+'the' Text
+' ' Text
+'reduction' Text
+' ' Text
+'of' Text
+' ' Text
+'presidential' Text
+' ' Text
+'term' Text
+' ' Text
+'limits' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'France' Text
+' ' Text
+'-' Text
+' ' Text
+'Parliamentary' Text
+' ' Text
+'composition' Text
+' ' Text
+'and' Text
+' ' Text
+'functions' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'britannica' Text
+'.' Text
+'com' Text
+'/' Text
+'place' Text
+'/' Text
+'France' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'27' Text
+' ' Text
+'August' Text
+' ' Text
+'2021' Text
+' ' Text
+'|' Punctuation
+'website' Name.Label
+'=' Operator
+'Encyclopedia' Text
+' ' Text
+'Britannica' Text
+' ' Text
+'|' Punctuation
+'language' Name.Label
+'=' Operator
+'en' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'Waning' Text
+' ' Text
+'civic' Text
+' ' Text
+'participation' Text
+' ' Text
+'has' Text
+' ' Text
+'been' Text
+' ' Text
+'a' Text
+' ' Text
+'matter' Text
+' ' Text
+'of' Text
+' ' Text
+'vigorous' Text
+' ' Text
+'public' Text
+' ' Text
+'debate' Text
+',' Text
+' ' Text
+'with' Text
+' ' Text
+'a' Text
+' ' Text
+'majority' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'public' Text
+' ' Text
+'reportedly' Text
+' ' Text
+'supporting' Text
+' ' Text
+'mandatory' Text
+' ' Text
+'voting' Text
+' ' Text
+'as' Text
+' ' Text
+'a' Text
+' ' Text
+'solution' Text
+' ' Text
+'in' Text
+' ' Text
+'2019' Text
+'.' Text
+'{{' Punctuation
+'citation' Name.Tag
+' ' Name.Tag
+'needed' Name.Tag
+'|' Punctuation
+'date' Name.Label
+'=' Operator
+'January' Text
+' ' Text
+'2023' Text
+'}}' Punctuation
+'\n' Text
+
+'\n' Text
+
+'===' Generic.Subheading
+'Law' Generic.Subheading
+'===' Generic.Subheading
+'\n' Text.Whitespace
+
+'{{' Punctuation
+'Main' Name.Tag
+'|' Punctuation
+'Law' Text
+' ' Text
+'of' Text
+' ' Text
+'France' Text
+'}}' Punctuation
+'\n' Text
+
+'France' Text
+' ' Text
+'uses' Text
+' ' Text
+'a' Text
+' ' Text
+'[[' Punctuation
+'Civil law (legal system)' Name.Tag
+'|' Punctuation
+'civil' Text
+' ' Text
+'legal' Text
+']]' Punctuation
+' ' Text
+'system' Text
+',' Text
+' ' Text
+'wherein' Text
+' ' Text
+'law' Text
+' ' Text
+'arises' Text
+' ' Text
+'primarily' Text
+' ' Text
+'from' Text
+' ' Text
+'written' Text
+' ' Text
+'statutes' Text
+';' Text
+'<' Punctuation
+'ref' Name.Tag
+' ' Text.Whitespace
+'name' Name.Attribute
+'=' Operator
+'France' Literal.String
+'/>' Punctuation
+' ' Text
+'judges' Text
+' ' Text
+'are' Text
+' ' Text
+'not' Text
+' ' Text
+'to' Text
+' ' Text
+'make' Text
+' ' Text
+'law' Text
+',' Text
+' ' Text
+'but' Text
+' ' Text
+'merely' Text
+' ' Text
+'to' Text
+' ' Text
+'interpret' Text
+' ' Text
+'it' Text
+' ' Text
+'(' Text
+'though' Text
+' ' Text
+'the' Text
+' ' Text
+'amount' Text
+' ' Text
+'of' Text
+' ' Text
+'judicial' Text
+' ' Text
+'interpretation' Text
+' ' Text
+'in' Text
+' ' Text
+'certain' Text
+' ' Text
+'areas' Text
+' ' Text
+'makes' Text
+' ' Text
+'it' Text
+' ' Text
+'equivalent' Text
+' ' Text
+'to' Text
+' ' Text
+'[[' Punctuation
+'case law' Name.Tag
+']]' Punctuation
+' ' Text
+'in' Text
+' ' Text
+'a' Text
+' ' Text
+'[[' Punctuation
+'common law' Name.Tag
+']]' Punctuation
+' ' Text
+'system' Text
+')' Text
+'.' Text
+' ' Text
+'Basic' Text
+' ' Text
+'principles' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'rule of law' Name.Tag
+']]' Punctuation
+' ' Text
+'were' Text
+' ' Text
+'laid' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Napoleonic Code' Name.Tag
+']]' Punctuation
+' ' Text
+'(' Text
+'which' Text
+' ' Text
+'was' Text
+',' Text
+' ' Text
+'in' Text
+' ' Text
+'turn' Text
+',' Text
+' ' Text
+'largely' Text
+' ' Text
+'based' Text
+' ' Text
+'on' Text
+' ' Text
+'the' Text
+' ' Text
+'royal' Text
+' ' Text
+'law' Text
+' ' Text
+'codified' Text
+' ' Text
+'under' Text
+' ' Text
+'[[' Punctuation
+'Louis XIV' Name.Tag
+']]' Punctuation
+')' Text
+'.' Text
+' ' Text
+'In' Text
+' ' Text
+'agreement' Text
+' ' Text
+'with' Text
+' ' Text
+'the' Text
+' ' Text
+'principles' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'Declaration' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'Rights' Text
+' ' Text
+'of' Text
+' ' Text
+'Man' Text
+' ' Text
+'and' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'Citizen' Text
+',' Text
+' ' Text
+'the' Text
+' ' Text
+'law' Text
+' ' Text
+'should' Text
+' ' Text
+'only' Text
+' ' Text
+'prohibit' Text
+' ' Text
+'actions' Text
+' ' Text
+'detrimental' Text
+' ' Text
+'to' Text
+' ' Text
+'society' Text
+'.' Text
+' ' Text
+'As' Text
+' ' Text
+'[[' Punctuation
+'Guy Canivet' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'first' Text
+' ' Text
+'president' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Court of Cassation (France)' Name.Tag
+'|' Punctuation
+'Court' Text
+' ' Text
+'of' Text
+' ' Text
+'Cassation' Text
+']]' Punctuation
+' ' Text
+'wrote' Text
+' ' Text
+'about' Text
+' ' Text
+'the' Text
+' ' Text
+'management' Text
+' ' Text
+'of' Text
+' ' Text
+'prisons' Text
+':' Text
+' ' Text
+'"' Text
+'Freedom' Text
+' ' Text
+'is' Text
+' ' Text
+'the' Text
+' ' Text
+'rule' Text
+',' Text
+' ' Text
+'and' Text
+' ' Text
+'its' Text
+' ' Text
+'restriction' Text
+' ' Text
+'is' Text
+' ' Text
+'the' Text
+' ' Text
+'exception' Text
+';' Text
+' ' Text
+'any' Text
+' ' Text
+'restriction' Text
+' ' Text
+'of' Text
+' ' Text
+'Freedom' Text
+' ' Text
+'must' Text
+' ' Text
+'be' Text
+' ' Text
+'provided' Text
+' ' Text
+'for' Text
+' ' Text
+'by' Text
+' ' Text
+'Law' Text
+' ' Text
+'and' Text
+' ' Text
+'must' Text
+' ' Text
+'follow' Text
+' ' Text
+'the' Text
+' ' Text
+'principles' Text
+' ' Text
+'of' Text
+' ' Text
+'necessity' Text
+' ' Text
+'and' Text
+' ' Text
+'proportionality' Text
+'.' Text
+'"' Text
+' ' Text
+'That' Text
+' ' Text
+'is' Text
+',' Text
+' ' Text
+'Law' Text
+' ' Text
+'should' Text
+' ' Text
+'lay' Text
+' ' Text
+'out' Text
+' ' Text
+'prohibitions' Text
+' ' Text
+'only' Text
+' ' Text
+'if' Text
+' ' Text
+'they' Text
+' ' Text
+'are' Text
+' ' Text
+'needed' Text
+',' Text
+' ' Text
+'and' Text
+' ' Text
+'if' Text
+' ' Text
+'the' Text
+' ' Text
+'inconveniences' Text
+' ' Text
+'caused' Text
+' ' Text
+'by' Text
+' ' Text
+'this' Text
+' ' Text
+'restriction' Text
+' ' Text
+'do' Text
+' ' Text
+'not' Text
+' ' Text
+'exceed' Text
+' ' Text
+'the' Text
+' ' Text
+'inconveniences' Text
+' ' Text
+'that' Text
+' ' Text
+'the' Text
+' ' Text
+'prohibition' Text
+' ' Text
+'is' Text
+' ' Text
+'supposed' Text
+' ' Text
+'to' Text
+' ' Text
+'remedy' Text
+'.' Text
+'\n' Text
+
+'[[' Punctuation
+'File' Name.Namespace
+':' Punctuation
+'Declaration of Human Rights.jpg' Name.Tag
+'|' Punctuation
+'thumb' Text
+'|' Punctuation
+'left' Text
+'|' Punctuation
+'upright' Text
+'|' Punctuation
+'alt' Name.Attribute
+'=' Operator
+'color' Text
+' ' Text
+'drawing' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'Declaration' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'Rights' Text
+' ' Text
+'of' Text
+' ' Text
+'Man' Text
+' ' Text
+'and' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'Citizen' Text
+' ' Text
+'from' Text
+' ' Text
+'1789' Text
+'|' Punctuation
+'The' Text
+' ' Text
+'basic' Text
+' ' Text
+'principles' Text
+' ' Text
+'that' Text
+' ' Text
+'the' Text
+' ' Text
+'French' Text
+' ' Text
+'Republic' Text
+' ' Text
+'must' Text
+' ' Text
+'respect' Text
+' ' Text
+'are' Text
+' ' Text
+'found' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'1789' Text
+' ' Text
+'[[' Punctuation
+'Declaration of the Rights of Man and of the Citizen' Name.Tag
+']]' Punctuation
+'.' Text
+']]' Punctuation
+'\n' Text
+
+'\n' Text
+
+'French' Text
+' ' Text
+'law' Text
+' ' Text
+'is' Text
+' ' Text
+'divided' Text
+' ' Text
+'into' Text
+' ' Text
+'two' Text
+' ' Text
+'principal' Text
+' ' Text
+'areas' Text
+':' Text
+' ' Text
+'[[' Punctuation
+'private law' Name.Tag
+']]' Punctuation
+' ' Text
+'and' Text
+' ' Text
+'[[' Punctuation
+'public law' Name.Tag
+']]' Punctuation
+'.' Text
+' ' Text
+'Private' Text
+' ' Text
+'law' Text
+' ' Text
+'includes' Text
+',' Text
+' ' Text
+'in' Text
+' ' Text
+'particular' Text
+',' Text
+' ' Text
+'[[' Punctuation
+'civil law (common law)' Name.Tag
+'|' Punctuation
+'civil' Text
+' ' Text
+'law' Text
+']]' Punctuation
+' ' Text
+'and' Text
+' ' Text
+'[[' Punctuation
+'criminal law' Name.Tag
+']]' Punctuation
+'.' Text
+' ' Text
+'Public' Text
+' ' Text
+'law' Text
+' ' Text
+'includes' Text
+',' Text
+' ' Text
+'in' Text
+' ' Text
+'particular' Text
+',' Text
+' ' Text
+'[[' Punctuation
+'administrative law' Name.Tag
+']]' Punctuation
+' ' Text
+'and' Text
+' ' Text
+'[[' Punctuation
+'constitutional law' Name.Tag
+']]' Punctuation
+'.' Text
+' ' Text
+'However' Text
+',' Text
+' ' Text
+'in' Text
+' ' Text
+'practical' Text
+' ' Text
+'terms' Text
+',' Text
+' ' Text
+'French' Text
+' ' Text
+'law' Text
+' ' Text
+'comprises' Text
+' ' Text
+'three' Text
+' ' Text
+'principal' Text
+' ' Text
+'areas' Text
+' ' Text
+'of' Text
+' ' Text
+'law' Text
+':' Text
+' ' Text
+'civil' Text
+' ' Text
+'law' Text
+',' Text
+' ' Text
+'criminal' Text
+' ' Text
+'law' Text
+',' Text
+' ' Text
+'and' Text
+' ' Text
+'administrative' Text
+' ' Text
+'law' Text
+'.' Text
+' ' Text
+'Criminal' Text
+' ' Text
+'laws' Text
+' ' Text
+'can' Text
+' ' Text
+'only' Text
+' ' Text
+'address' Text
+' ' Text
+'the' Text
+' ' Text
+'future' Text
+' ' Text
+'and' Text
+' ' Text
+'not' Text
+' ' Text
+'the' Text
+' ' Text
+'past' Text
+' ' Text
+'(' Text
+'criminal' Text
+' ' Text
+"''" Generic.Emph
+'[[' Punctuation
+'Ex post facto law' Name.Tag
+'|' Punctuation
+'ex' Text
+' ' Text
+'post' Text
+' ' Text
+'facto' Text
+']]' Punctuation
+"''" Generic.Emph
+' ' Text
+'laws' Text
+' ' Text
+'are' Text
+' ' Text
+'prohibited' Text
+')' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'In' Text
+' ' Text
+'European' Text
+' ' Text
+'countries' Text
+',' Text
+' ' Text
+'legal' Text
+' ' Text
+'doctrine' Text
+' ' Text
+'has' Text
+' ' Text
+'long' Text
+' ' Text
+'faced' Text
+' ' Text
+'the' Text
+' ' Text
+'question' Text
+' ' Text
+'of' Text
+' ' Text
+'succession' Text
+' ' Text
+'of' Text
+' ' Text
+'criminal' Text
+' ' Text
+'laws' Text
+' ' Text
+'in' Text
+' ' Text
+'time' Text
+':' Text
+' ' Text
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'journal' Name.Tag
+' ' Text
+'|' Punctuation
+'last' Name.Label
+'=' Operator
+'Buonomo' Text
+' ' Text
+'|' Punctuation
+'first' Name.Label
+'=' Operator
+'Giampiero' Text
+' ' Text
+'|' Punctuation
+'year' Name.Label
+'=' Operator
+'2015' Text
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'La' Text
+' ' Text
+'rivendicazione' Text
+' ' Text
+'di' Text
+' ' Text
+'Gallo' Text
+' ' Text
+'|' Punctuation
+'journal' Name.Label
+'=' Operator
+'Mondoperaio' Text
+' ' Text
+'Edizione' Text
+' ' Text
+'Online' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'While' Text
+' ' Text
+'administrative' Text
+' ' Text
+'law' Text
+' ' Text
+'is' Text
+' ' Text
+'often' Text
+' ' Text
+'a' Text
+' ' Text
+'subcategory' Text
+' ' Text
+'of' Text
+' ' Text
+'civil' Text
+' ' Text
+'law' Text
+' ' Text
+'in' Text
+' ' Text
+'many' Text
+' ' Text
+'countries' Text
+',' Text
+' ' Text
+'it' Text
+' ' Text
+'is' Text
+' ' Text
+'completely' Text
+' ' Text
+'separated' Text
+' ' Text
+'in' Text
+' ' Text
+'France' Text
+' ' Text
+'and' Text
+' ' Text
+'each' Text
+' ' Text
+'body' Text
+' ' Text
+'of' Text
+' ' Text
+'law' Text
+' ' Text
+'is' Text
+' ' Text
+'headed' Text
+' ' Text
+'by' Text
+' ' Text
+'a' Text
+' ' Text
+'specific' Text
+' ' Text
+'supreme' Text
+' ' Text
+'court' Text
+':' Text
+' ' Text
+'[[' Punctuation
+'French judiciary courts' Name.Tag
+'|' Punctuation
+'ordinary' Text
+' ' Text
+'courts' Text
+']]' Punctuation
+' ' Text
+'(' Text
+'which' Text
+' ' Text
+'handle' Text
+' ' Text
+'criminal' Text
+' ' Text
+'and' Text
+' ' Text
+'civil' Text
+' ' Text
+'litigation' Text
+')' Text
+' ' Text
+'are' Text
+' ' Text
+'headed' Text
+' ' Text
+'by' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Court of Cassation (France)' Name.Tag
+'|' Punctuation
+'Court' Text
+' ' Text
+'of' Text
+' ' Text
+'Cassation' Text
+']]' Punctuation
+' ' Text
+'and' Text
+' ' Text
+'administrative' Text
+' ' Text
+'courts' Text
+' ' Text
+'are' Text
+' ' Text
+'headed' Text
+' ' Text
+'by' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+"Conseil d'Etat (France)" Name.Tag
+'|' Punctuation
+'Council' Text
+' ' Text
+'of' Text
+' ' Text
+'State' Text
+']]' Punctuation
+'.' Text
+' ' Text
+'To' Text
+' ' Text
+'be' Text
+' ' Text
+'applicable' Text
+',' Text
+' ' Text
+'every' Text
+' ' Text
+'law' Text
+' ' Text
+'must' Text
+' ' Text
+'be' Text
+' ' Text
+'officially' Text
+' ' Text
+'published' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+"''" Generic.Emph
+'[[' Punctuation
+'Journal officiel de la République française' Name.Tag
+']]' Punctuation
+"''" Generic.Emph
+'.' Text
+'\n' Text
+
+'\n' Text
+
+'France' Text
+' ' Text
+'does' Text
+' ' Text
+'not' Text
+' ' Text
+'recognise' Text
+' ' Text
+'[[' Punctuation
+'religious law' Name.Tag
+']]' Punctuation
+' ' Text
+'as' Text
+' ' Text
+'a' Text
+' ' Text
+'motivation' Text
+' ' Text
+'for' Text
+' ' Text
+'the' Text
+' ' Text
+'enactment' Text
+' ' Text
+'of' Text
+' ' Text
+'prohibitions' Text
+';' Text
+' ' Text
+'it' Text
+' ' Text
+'has' Text
+' ' Text
+'long' Text
+' ' Text
+'abolished' Text
+' ' Text
+'[[' Punctuation
+'blasphemy' Name.Tag
+']]' Punctuation
+' ' Text
+'laws' Text
+' ' Text
+'and' Text
+' ' Text
+'[[' Punctuation
+'sodomy law' Name.Tag
+']]' Punctuation
+'s' Text
+' ' Text
+'(' Text
+'the' Text
+' ' Text
+'latter' Text
+' ' Text
+'in' Text
+' ' Text
+'1791' Text
+')' Text
+'.' Text
+' ' Text
+'However' Text
+',' Text
+' ' Text
+'"' Text
+'offences' Text
+' ' Text
+'against' Text
+' ' Text
+'[[' Punctuation
+'Decency' Name.Tag
+'|' Punctuation
+'public' Text
+' ' Text
+'decency' Text
+']]' Punctuation
+'"' Text
+' ' Text
+'(' Text
+"''" Generic.Emph
+'contraires' Generic.Emph
+' ' Generic.Emph
+'aux' Generic.Emph
+' ' Generic.Emph
+'bonnes' Generic.Emph
+' ' Generic.Emph
+'mœurs' Generic.Emph
+"''" Generic.Emph
+')' Text
+' ' Text
+'or' Text
+' ' Text
+'[[' Punctuation
+'breach of the peace' Name.Tag
+'|' Punctuation
+'disturbing' Text
+' ' Text
+'public' Text
+' ' Text
+'order' Text
+']]' Punctuation
+' ' Text
+'(' Text
+"''" Generic.Emph
+'trouble' Generic.Emph
+' ' Generic.Emph
+'à' Generic.Emph
+' ' Generic.Emph
+'l' Generic.Emph
+"'" Generic.Emph
+'ordre' Generic.Emph
+' ' Generic.Emph
+'public' Generic.Emph
+"''" Generic.Emph
+')' Text
+' ' Text
+'have' Text
+' ' Text
+'been' Text
+' ' Text
+'used' Text
+' ' Text
+'to' Text
+' ' Text
+'repress' Text
+' ' Text
+'public' Text
+' ' Text
+'expressions' Text
+' ' Text
+'of' Text
+' ' Text
+'homosexuality' Text
+' ' Text
+'or' Text
+' ' Text
+'street' Text
+' ' Text
+'prostitution' Text
+'.' Text
+' ' Text
+'Since' Text
+' ' Text
+'1999' Text
+',' Text
+' ' Text
+'[[' Punctuation
+'Pacte civil de solidarité' Name.Tag
+'|' Punctuation
+'civil' Text
+' ' Text
+'unions' Text
+']]' Punctuation
+' ' Text
+'for' Text
+' ' Text
+'homosexual' Text
+' ' Text
+'couples' Text
+' ' Text
+'are' Text
+' ' Text
+'permitted' Text
+',' Text
+' ' Text
+'and' Text
+' ' Text
+'since' Text
+' ' Text
+'2013' Text
+',' Text
+' ' Text
+'[[' Punctuation
+'same-sex marriage' Name.Tag
+']]' Punctuation
+' ' Text
+'and' Text
+' ' Text
+'[[' Punctuation
+'LGBT adoption' Name.Tag
+']]' Punctuation
+' ' Text
+'are' Text
+' ' Text
+'legal' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'news' Name.Tag
+' ' Text
+'|' Punctuation
+'date' Name.Label
+'=' Operator
+'18' Text
+' ' Text
+'May' Text
+' ' Text
+'2013' Text
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'François' Text
+' ' Text
+'Hollande' Text
+' ' Text
+'signs' Text
+' ' Text
+'same' Text
+'-' Text
+'sex' Text
+' ' Text
+'marriage' Text
+' ' Text
+'into' Text
+' ' Text
+'law' Text
+' ' Text
+'|' Punctuation
+'publisher' Name.Label
+'=' Operator
+'France' Text
+' ' Text
+'24' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'france24' Text
+'.' Text
+'com' Text
+'/' Text
+'en' Text
+'/' Text
+'20130518' Text
+'-' Text
+'france' Text
+'-' Text
+'gay' Text
+'-' Text
+'marriage' Text
+'-' Text
+'law' Text
+'-' Text
+'adoption' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'27' Text
+' ' Text
+'June' Text
+' ' Text
+'2013' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'Laws' Text
+' ' Text
+'prohibiting' Text
+' ' Text
+'discriminatory' Text
+' ' Text
+'speech' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'press' Text
+' ' Text
+'are' Text
+' ' Text
+'[[' Punctuation
+'Law on the Freedom of the Press of 29 July 1881' Name.Tag
+'|' Punctuation
+'as' Text
+' ' Text
+'old' Text
+' ' Text
+'as' Text
+' ' Text
+'1881' Text
+']]' Punctuation
+'.' Text
+' ' Text
+'Some' Text
+' ' Text
+'consider' Text
+' ' Text
+'[[' Punctuation
+'hate speech laws in France' Name.Tag
+']]' Punctuation
+' ' Text
+'to' Text
+' ' Text
+'be' Text
+' ' Text
+'too' Text
+' ' Text
+'broad' Text
+' ' Text
+'or' Text
+' ' Text
+'severe' Text
+',' Text
+' ' Text
+'undermining' Text
+' ' Text
+'[[' Punctuation
+'freedom of speech' Name.Tag
+']]' Punctuation
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'"' Text
+'France' Text
+':' Text
+' ' Text
+'Strict' Text
+' ' Text
+'Defamation' Text
+' ' Text
+'and' Text
+' ' Text
+'Privacy' Text
+' ' Text
+'Laws' Text
+' ' Text
+'Limit' Text
+' ' Text
+'Free' Text
+' ' Text
+'Expression' Text
+'&nbsp;' Name.Entity
+'–' Text
+' ' Text
+'Index' Text
+' ' Text
+'on' Text
+' ' Text
+'Censorship' Text
+'|' Text
+' ' Text
+'Index' Text
+' ' Text
+'on' Text
+' ' Text
+'Censorship' Text
+'.' Text
+'"' Text
+' ' Text
+'France' Text
+':' Text
+' ' Text
+'Strict' Text
+' ' Text
+'Defamation' Text
+' ' Text
+'and' Text
+' ' Text
+'Privacy' Text
+' ' Text
+'Laws' Text
+' ' Text
+'Limit' Text
+' ' Text
+'Free' Text
+' ' Text
+'Expression' Text
+'&nbsp;' Name.Entity
+'–' Text
+' ' Text
+'Index' Text
+' ' Text
+'on' Text
+' ' Text
+'Censorship' Text
+'|' Text
+' ' Text
+'Index' Text
+' ' Text
+'on' Text
+' ' Text
+'Censorship' Text
+'.' Text
+' ' Text
+'N' Text
+'.' Text
+'p' Text
+'.' Text
+',' Text
+' ' Text
+'n' Text
+'.' Text
+'d' Text
+'.' Text
+' ' Text
+'Web' Text
+'.' Text
+' ' Text
+'26' Text
+' ' Text
+'February' Text
+' ' Text
+'2014' Text
+'.' Text
+' ' Text
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'France' Text
+':' Text
+' ' Text
+'Strict' Text
+' ' Text
+'defamation' Text
+' ' Text
+'and' Text
+' ' Text
+'privacy' Text
+' ' Text
+'laws' Text
+' ' Text
+'limit' Text
+' ' Text
+'free' Text
+' ' Text
+'expression' Text
+' ' Text
+'-' Text
+' ' Text
+'Index' Text
+' ' Text
+'on' Text
+' ' Text
+'Censorship' Text
+' ' Text
+'&#124;' Name.Entity
+' ' Text
+'Index' Text
+' ' Text
+'on' Text
+' ' Text
+'Censorship' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'indexoncensorship' Text
+'.' Text
+'org' Text
+'/' Text
+'2013' Text
+'/' Text
+'08' Text
+'/' Text
+'france' Text
+'-' Text
+'faces' Text
+'-' Text
+'restrictions' Text
+'-' Text
+'on' Text
+'-' Text
+'free' Text
+'-' Text
+'expression' Text
+'/' Text
+' ' Text
+'|' Punctuation
+'url-status' Name.Label
+'=' Operator
+'dead' Text
+' ' Text
+'|' Punctuation
+'archive-url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'web' Text
+'.' Text
+'archive' Text
+'.' Text
+'org' Text
+'/' Text
+'web' Text
+'/' Text
+'20130922214544' Text
+'/' Text
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'indexoncensorship' Text
+'.' Text
+'org' Text
+'/' Text
+'2013' Text
+'/' Text
+'08' Text
+'/' Text
+'france' Text
+'-' Text
+'faces' Text
+'-' Text
+'restrictions' Text
+'-' Text
+'on' Text
+'-' Text
+'free' Text
+'-' Text
+'expression' Text
+'/' Text
+' ' Text
+'|' Punctuation
+'archive-date' Name.Label
+'=' Operator
+'22' Text
+' ' Text
+'September' Text
+' ' Text
+'2013' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'18' Text
+' ' Text
+'February' Text
+' ' Text
+'2014' Text
+'}}' Punctuation
+'.' Text
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'\n' Text
+
+'France' Text
+' ' Text
+'has' Text
+' ' Text
+'laws' Text
+' ' Text
+'against' Text
+' ' Text
+'racism' Text
+' ' Text
+'and' Text
+' ' Text
+'[[' Punctuation
+'antisemitism' Name.Tag
+']]' Punctuation
+',' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'In' Name.Tag
+' ' Name.Tag
+'lang' Name.Tag
+'|' Punctuation
+'fr' Text
+'}}' Punctuation
+' ' Text
+'[' Punctuation
+'https://web.archive.org/web/20101205103557/http://www.ambafrance-dz.org/ambassade/IMG/Lutte_racisme_et_antisemitisme.pdf' Name.Label
+' ' Text.Whitespace
+'La' Text
+' ' Text
+'lutte' Text
+' ' Text
+'contre' Text
+' ' Text
+'le' Text
+' ' Text
+'racisme' Text
+' ' Text
+'et' Text
+' ' Text
+'l' Text
+"'" Text
+'antisémintisme' Text
+' ' Text
+'en' Text
+' ' Text
+'France' Text
+']' Punctuation
+'.' Text
+' ' Text
+'AmbaFrance' Text
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'while' Text
+' ' Text
+'the' Text
+' ' Text
+'1990' Text
+' ' Text
+'[[' Punctuation
+'Gayssot Act' Name.Tag
+']]' Punctuation
+' ' Text
+'prohibits' Text
+' ' Text
+'[[' Punctuation
+'Holocaust denial' Name.Tag
+']]' Punctuation
+'.' Text
+'\n' Text
+
+'\n' Text
+
+'[[' Punctuation
+'Freedom of religion in France' Name.Tag
+'|' Punctuation
+'Freedom' Text
+' ' Text
+'of' Text
+' ' Text
+'religion' Text
+']]' Punctuation
+' ' Text
+'is' Text
+' ' Text
+'constitutionally' Text
+' ' Text
+'guaranteed' Text
+' ' Text
+'by' Text
+' ' Text
+'the' Text
+' ' Text
+'1789' Text
+' ' Text
+'[[' Punctuation
+'Declaration of the Rights of Man and of the Citizen' Name.Tag
+']]' Punctuation
+'.' Text
+' ' Text
+'The' Text
+' ' Text
+'[[' Punctuation
+'1905 French law on the Separation of the Churches and the State' Name.Tag
+']]' Punctuation
+' ' Text
+'is' Text
+' ' Text
+'the' Text
+' ' Text
+'basis' Text
+' ' Text
+'for' Text
+' ' Text
+"''" Generic.Emph
+'[[' Punctuation
+'laïcité' Name.Tag
+']]' Punctuation
+"''" Generic.Emph
+' ' Text
+'(' Text
+'state' Text
+' ' Text
+'secularism' Text
+')' Text
+':' Text
+' ' Text
+'the' Text
+' ' Text
+'state' Text
+' ' Text
+'does' Text
+' ' Text
+'not' Text
+' ' Text
+'formally' Text
+' ' Text
+'recognise' Text
+' ' Text
+'any' Text
+' ' Text
+'religion' Text
+',' Text
+' ' Text
+'[[' Punctuation
+'Concordat in Alsace-Moselle' Name.Tag
+'|' Punctuation
+'except' Text
+' ' Text
+'in' Text
+' ' Text
+'Alsace' Text
+'-' Text
+'Moselle' Text
+']]' Punctuation
+'.' Text
+' ' Text
+'Nonetheless' Text
+',' Text
+' ' Text
+'it' Text
+' ' Text
+'does' Text
+' ' Text
+'recognise' Text
+' ' Text
+'religious' Text
+' ' Text
+'associations' Text
+'.' Text
+' ' Text
+'The' Text
+' ' Text
+'Parliament' Text
+' ' Text
+'has' Text
+' ' Text
+'[[' Punctuation
+'Groups referred to as cults in government reports' Name.Tag
+'#' Punctuation
+'France' Name.Label
+'|' Punctuation
+'listed' Text
+' ' Text
+'many' Text
+' ' Text
+'religious' Text
+' ' Text
+'movements' Text
+' ' Text
+'as' Text
+' ' Text
+'dangerous' Text
+' ' Text
+'cults' Text
+']]' Punctuation
+' ' Text
+'since' Text
+' ' Text
+'1995' Text
+' ' Text
+'and' Text
+' ' Text
+'has' Text
+' ' Text
+'[[' Punctuation
+'French law on secularity and conspicuous religious symbols in schools' Name.Tag
+'|' Punctuation
+'banned' Text
+' ' Text
+'wearing' Text
+' ' Text
+'conspicuous' Text
+' ' Text
+'religious' Text
+' ' Text
+'symbols' Text
+' ' Text
+'in' Text
+' ' Text
+'schools' Text
+']]' Punctuation
+' ' Text
+'since' Text
+' ' Text
+'2004' Text
+'.' Text
+' ' Text
+'In' Text
+' ' Text
+'2010' Text
+',' Text
+' ' Text
+'it' Text
+' ' Text
+'banned' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'French ban on face covering' Name.Tag
+'|' Punctuation
+'wearing' Text
+' ' Text
+'of' Text
+' ' Text
+'face' Text
+'-' Text
+'covering' Text
+' ' Text
+'Islamic' Text
+' ' Text
+'veils' Text
+' ' Text
+'in' Text
+' ' Text
+'public' Text
+']]' Punctuation
+';' Text
+' ' Text
+'human' Text
+' ' Text
+'rights' Text
+' ' Text
+'groups' Text
+' ' Text
+'such' Text
+' ' Text
+'as' Text
+' ' Text
+'[[' Punctuation
+'Amnesty International' Name.Tag
+']]' Punctuation
+' ' Text
+'and' Text
+' ' Text
+'[[' Punctuation
+'Human Rights Watch' Name.Tag
+']]' Punctuation
+' ' Text
+'described' Text
+' ' Text
+'the' Text
+' ' Text
+'law' Text
+' ' Text
+'as' Text
+' ' Text
+'discriminatory' Text
+' ' Text
+'towards' Text
+' ' Text
+'Muslims' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'last' Name.Label
+'=' Operator
+'Kenneth' Text
+' ' Text
+'Roth' Text
+' ' Text
+'Executive' Text
+' ' Text
+'Director' Text
+' ' Text
+'|' Punctuation
+'date' Name.Label
+'=' Operator
+'26' Text
+' ' Text
+'February' Text
+' ' Text
+'2004' Text
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Human' Text
+' ' Text
+'Rights' Text
+' ' Text
+'Watch' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'hrw' Text
+'.' Text
+'org' Text
+'/' Text
+'english' Text
+'/' Text
+'docs' Text
+'/' Text
+'2004' Text
+'/' Text
+'02' Text
+'/' Text
+'26' Text
+'/' Text
+'france7666' Text
+'.' Text
+'htm' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'31' Text
+' ' Text
+'January' Text
+' ' Text
+'2009' Text
+' ' Text
+'|' Punctuation
+'publisher' Name.Label
+'=' Operator
+'Human' Text
+' ' Text
+'Rights' Text
+' ' Text
+'Watch' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'news' Name.Tag
+' ' Text
+'|' Punctuation
+'date' Name.Label
+'=' Operator
+'13' Text
+' ' Text
+'July' Text
+' ' Text
+'2010' Text
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'France' Text
+' ' Text
+'votes' Text
+' ' Text
+'to' Text
+' ' Text
+'ban' Text
+' ' Text
+'full' Text
+'-' Text
+'face' Text
+' ' Text
+'veils' Text
+' ' Text
+'|' Punctuation
+'publisher' Name.Label
+'=' Operator
+'[[' Punctuation
+'Amnesty International' Name.Tag
+']]' Punctuation
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'amnesty' Text
+'.' Text
+'org' Text
+'/' Text
+'en' Text
+'/' Text
+'news' Text
+'-' Text
+'and' Text
+'-' Text
+'updates' Text
+'/' Text
+'france' Text
+'-' Text
+'votes' Text
+'-' Text
+'ban' Text
+'-' Text
+'full' Text
+'-' Text
+'face' Text
+'-' Text
+'veils' Text
+'-' Text
+'2010' Text
+'-' Text
+'07' Text
+'-' Text
+'13' Text
+' ' Text
+'|' Punctuation
+'url-status' Name.Label
+'=' Operator
+'dead' Text
+' ' Text
+'|' Punctuation
+'archive-url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'web' Text
+'.' Text
+'archive' Text
+'.' Text
+'org' Text
+'/' Text
+'web' Text
+'/' Text
+'20141207163309' Text
+'/' Text
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'amnesty' Text
+'.' Text
+'org' Text
+'/' Text
+'en' Text
+'/' Text
+'news' Text
+'-' Text
+'and' Text
+'-' Text
+'updates' Text
+'/' Text
+'france' Text
+'-' Text
+'votes' Text
+'-' Text
+'ban' Text
+'-' Text
+'full' Text
+'-' Text
+'face' Text
+'-' Text
+'veils' Text
+'-' Text
+'2010' Text
+'-' Text
+'07' Text
+'-' Text
+'13' Text
+' ' Text
+'|' Punctuation
+'archive-date' Name.Label
+'=' Operator
+'7' Text
+' ' Text
+'December' Text
+' ' Text
+'2014' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'However' Text
+',' Text
+' ' Text
+'it' Text
+' ' Text
+'is' Text
+' ' Text
+'supported' Text
+' ' Text
+'by' Text
+' ' Text
+'most' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'population' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'L' Text
+"'" Text
+'image' Text
+' ' Text
+'de' Text
+' ' Text
+'l' Text
+"'" Text
+'islam' Text
+' ' Text
+'en' Text
+' ' Text
+'France' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'ifop' Text
+'.' Text
+'com' Text
+'/' Text
+'media' Text
+'/' Text
+'poll' Text
+'/' Text
+'2028' Text
+'-' Text
+'1' Text
+'-' Text
+'study_file' Text
+'.' Text
+'pdf' Text
+' ' Text
+'|' Punctuation
+'url-status' Name.Label
+'=' Operator
+'dead' Text
+' ' Text
+'|' Punctuation
+'archive-url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'web' Text
+'.' Text
+'archive' Text
+'.' Text
+'org' Text
+'/' Text
+'web' Text
+'/' Text
+'20140312131944' Text
+'/' Text
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'ifop' Text
+'.' Text
+'com' Text
+'/' Text
+'media' Text
+'/' Text
+'poll' Text
+'/' Text
+'2028' Text
+'-' Text
+'1' Text
+'-' Text
+'study_file' Text
+'.' Text
+'pdf' Text
+' ' Text
+'|' Punctuation
+'archive-date' Name.Label
+'=' Operator
+'12' Text
+' ' Text
+'March' Text
+' ' Text
+'2014' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'16' Text
+' ' Text
+'January' Text
+' ' Text
+'2017' Text
+' ' Text
+'|' Punctuation
+'website' Name.Label
+'=' Operator
+'ifop' Text
+'.' Text
+'fr' Text
+' ' Text
+'|' Punctuation
+'publisher' Name.Label
+'=' Operator
+'IFOP' Text
+' ' Text
+'|' Punctuation
+'page' Name.Label
+'=' Operator
+'22' Text
+' ' Text
+'|' Punctuation
+'language' Name.Label
+'=' Operator
+'fr' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'\n' Text
+
+'<!-- to remove if it does not break future refs<ref name="Pew">{{Cite news |last=Dumoulin |first=Frederic |date=14 September 2010 |title=French parliament adopts ban on full-face veil |publisher=Google News |url=https://www.google.com/hostednews/afp/article/ALeqM5gNCFdNZ4r-9aDEBG0G_OUSMKoASw |url-status=dead |access-date=14 September 2010 |archive-url=https://web.archive.org/web/20130518083647/https://www.google.com/hostednews/afp/article/ALeqM5gNCFdNZ4r-9aDEBG0G_OUSMKoASw |archive-date=18 May 2013}}</ref>-->' Comment.Multiline
+'\n' Text
+
+'\n' Text
+
+'===' Generic.Subheading
+'Foreign relations' Generic.Subheading
+'===' Generic.Subheading
+'\n' Text.Whitespace
+
+'{{' Punctuation
+'Main' Name.Tag
+'|' Punctuation
+'Foreign' Text
+' ' Text
+'relations' Text
+' ' Text
+'of' Text
+' ' Text
+'France' Text
+'}}' Punctuation
+'\n' Text
+
+'France' Text
+' ' Text
+'is' Text
+' ' Text
+'a' Text
+' ' Text
+'founding' Text
+' ' Text
+'member' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'United' Text
+' ' Text
+'Nations' Text
+' ' Text
+'and' Text
+' ' Text
+'serves' Text
+' ' Text
+'as' Text
+' ' Text
+'one' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Permanent members of the United Nations Security Council' Name.Tag
+'|' Punctuation
+'permanent' Text
+' ' Text
+'members' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'UN' Text
+' ' Text
+'Security' Text
+' ' Text
+'Council' Text
+']]' Punctuation
+' ' Text
+'with' Text
+' ' Text
+'veto' Text
+' ' Text
+'rights' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'date' Name.Label
+'=' Operator
+'6' Text
+' ' Text
+'July' Text
+' ' Text
+'2010' Text
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Membership' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'Security' Text
+' ' Text
+'Councils' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'UN' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'un' Text
+'.' Text
+'org' Text
+'/' Text
+'sc' Text
+'/' Text
+'members' Text
+'.' Text
+'asp' Text
+' ' Text
+'|' Punctuation
+'url-status' Name.Label
+'=' Operator
+'dead' Text
+' ' Text
+'|' Punctuation
+'archive-url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'web' Text
+'.' Text
+'archive' Text
+'.' Text
+'org' Text
+'/' Text
+'web' Text
+'/' Text
+'20100706231352' Text
+'/' Text
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'un' Text
+'.' Text
+'org' Text
+'/' Text
+'sc' Text
+'/' Text
+'members' Text
+'.' Text
+'asp' Text
+' ' Text
+'|' Punctuation
+'archive-date' Name.Label
+'=' Operator
+'6' Text
+' ' Text
+'July' Text
+' ' Text
+'2010' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'In' Text
+' ' Text
+'2015' Text
+',' Text
+' ' Text
+'it' Text
+' ' Text
+'was' Text
+' ' Text
+'described' Text
+' ' Text
+'as' Text
+' ' Text
+'"' Text
+'the' Text
+' ' Text
+'best' Text
+' ' Text
+'networked' Text
+' ' Text
+'state' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'world' Text
+'"' Text
+' ' Text
+'due' Text
+' ' Text
+'to' Text
+' ' Text
+'its' Text
+' ' Text
+'membership' Text
+' ' Text
+'in' Text
+' ' Text
+'more' Text
+' ' Text
+'international' Text
+' ' Text
+'institutions' Text
+' ' Text
+'than' Text
+' ' Text
+'any' Text
+' ' Text
+'other' Text
+' ' Text
+'country' Text
+';' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'The' Text
+' ' Text
+'Soft' Text
+' ' Text
+'Power' Text
+' ' Text
+'30' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'comres' Text
+'.' Text
+'co' Text
+'.' Text
+'uk' Text
+'/' Text
+'wp' Text
+'-' Text
+'content' Text
+'/' Text
+'uploads' Text
+'/' Text
+'2015' Text
+'/' Text
+'07' Text
+'/' Text
+'Report_Final' Text
+'-' Text
+'published' Text
+'.' Text
+'pdf' Text
+' ' Text
+'|' Punctuation
+'url-status' Name.Label
+'=' Operator
+'dead' Text
+' ' Text
+'|' Punctuation
+'archive-url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'web' Text
+'.' Text
+'archive' Text
+'.' Text
+'org' Text
+'/' Text
+'web' Text
+'/' Text
+'20151120204008' Text
+'/' Text
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'comres' Text
+'.' Text
+'co' Text
+'.' Text
+'uk' Text
+'/' Text
+'wp' Text
+'-' Text
+'content' Text
+'/' Text
+'uploads' Text
+'/' Text
+'2015' Text
+'/' Text
+'07' Text
+'/' Text
+'Report_Final' Text
+'-' Text
+'published' Text
+'.' Text
+'pdf' Text
+' ' Text
+'|' Punctuation
+'archive-date' Name.Label
+'=' Operator
+'20' Text
+' ' Text
+'November' Text
+' ' Text
+'2015' Text
+' ' Text
+'|' Punctuation
+'website' Name.Label
+'=' Operator
+'[[' Punctuation
+'Monocle (media company)' Name.Tag
+'|' Punctuation
+'Monocle' Text
+']]' Punctuation
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'these' Text
+' ' Text
+'include' Text
+' ' Text
+'the' Text
+' ' Text
+'G7' Text
+',' Text
+' ' Text
+'[[' Punctuation
+'World Trade Organization' Name.Tag
+']]' Punctuation
+' ' Text
+'(' Text
+'WTO' Text
+')' Text
+',' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Members' Text
+' ' Text
+'and' Text
+' ' Text
+'Observers' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'wto' Text
+'.' Text
+'org' Text
+'/' Text
+'english' Text
+'/' Text
+'thewto_e' Text
+'/' Text
+'whatis_e' Text
+'/' Text
+'tif_e' Text
+'/' Text
+'org6_e' Text
+'.' Text
+'htm' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'30' Text
+' ' Text
+'October' Text
+' ' Text
+'2010' Text
+' ' Text
+'|' Punctuation
+'website' Name.Label
+'=' Operator
+'World' Text
+' ' Text
+'Trade' Text
+' ' Text
+'Organization' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Pacific Community' Name.Tag
+']]' Punctuation
+' ' Text
+'(' Text
+'SPC' Text
+')' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'date' Name.Label
+'=' Operator
+'12' Text
+' ' Text
+'February' Text
+' ' Text
+'2010' Text
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'History' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'spc' Text
+'.' Text
+'int' Text
+'/' Text
+'en' Text
+'/' Text
+'about' Text
+'-' Text
+'spc' Text
+'/' Text
+'history' Text
+'.' Text
+'html' Text
+' ' Text
+'|' Punctuation
+'url-status' Name.Label
+'=' Operator
+'dead' Text
+' ' Text
+'|' Punctuation
+'archive-url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'web' Text
+'.' Text
+'archive' Text
+'.' Text
+'org' Text
+'/' Text
+'web' Text
+'/' Text
+'20100828105101' Text
+'/' Text
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'spc' Text
+'.' Text
+'int' Text
+'/' Text
+'en' Text
+'/' Text
+'about' Text
+'-' Text
+'spc' Text
+'/' Text
+'history' Text
+'.' Text
+'html' Text
+' ' Text
+'|' Punctuation
+'archive-date' Name.Label
+'=' Operator
+'28' Text
+' ' Text
+'August' Text
+' ' Text
+'2010' Text
+' ' Text
+'|' Punctuation
+'website' Name.Label
+'=' Operator
+'Secretariate' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'Pacific' Text
+' ' Text
+'Community' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'and' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Indian Ocean Commission' Name.Tag
+']]' Punctuation
+' ' Text
+'(' Text
+'COI' Text
+')' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Les' Text
+' ' Text
+'pays' Text
+' ' Text
+'membres' Text
+' ' Text
+'de' Text
+' ' Text
+'la' Text
+' ' Text
+'COI' Text
+' ' Text
+'|' Punctuation
+'trans-title' Name.Label
+'=' Operator
+'IOC' Text
+' ' Text
+'member' Text
+' ' Text
+'countries' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'coi' Text
+'-' Text
+'ioc' Text
+'.' Text
+'org' Text
+'/' Text
+'index' Text
+'.' Text
+'php' Text
+'?' Text
+'id' Text
+'=' Text
+'36' Text
+' ' Text
+'|' Punctuation
+'url-status' Name.Label
+'=' Operator
+'dead' Text
+' ' Text
+'|' Punctuation
+'archive-url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'web' Text
+'.' Text
+'archive' Text
+'.' Text
+'org' Text
+'/' Text
+'web' Text
+'/' Text
+'20120402173028' Text
+'/' Text
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'coi' Text
+'-' Text
+'ioc' Text
+'.' Text
+'org' Text
+'/' Text
+'index' Text
+'.' Text
+'php' Text
+'?' Text
+'id' Text
+'=' Text
+'36' Text
+' ' Text
+'|' Punctuation
+'archive-date' Name.Label
+'=' Operator
+'2' Text
+' ' Text
+'April' Text
+' ' Text
+'2012' Text
+' ' Text
+'|' Punctuation
+'website' Name.Label
+'=' Operator
+'Commission' Text
+' ' Text
+'de' Text
+' ' Text
+'l' Text
+"'" Text
+'Océan' Text
+' ' Text
+'Indien' Text
+' ' Text
+'{{' Punctuation
+'!' Name.Function
+'}}' Punctuation
+' ' Text
+'Indian' Text
+' ' Text
+'Ocean' Text
+' ' Text
+'Commission' Text
+' ' Text
+'|' Punctuation
+'language' Name.Label
+'=' Operator
+'fr' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'It' Text
+' ' Text
+'is' Text
+' ' Text
+'an' Text
+' ' Text
+'associate' Text
+' ' Text
+'member' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Association of Caribbean States' Name.Tag
+']]' Punctuation
+' ' Text
+'(' Text
+'ACS' Text
+')' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'date' Name.Label
+'=' Operator
+'24' Text
+' ' Text
+'July' Text
+' ' Text
+'1994' Text
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'About' Text
+' ' Text
+'the' Text
+' ' Text
+'Association' Text
+' ' Text
+'of' Text
+' ' Text
+'Caribbean' Text
+' ' Text
+'States' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'acs' Text
+'-' Text
+'aec' Text
+'.' Text
+'org' Text
+'/' Text
+'index' Text
+'.' Text
+'php' Text
+'?' Text
+'q' Text
+'=' Text
+'about' Text
+'-' Text
+'the' Text
+'-' Text
+'acs' Text
+' ' Text
+'|' Punctuation
+'url-status' Name.Label
+'=' Operator
+'live' Text
+' ' Text
+'|' Punctuation
+'archive-url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'web' Text
+'.' Text
+'archive' Text
+'.' Text
+'org' Text
+'/' Text
+'web' Text
+'/' Text
+'20120822100530' Text
+'/' Text
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'acs' Text
+'-' Text
+'aec' Text
+'.' Text
+'org' Text
+'/' Text
+'index' Text
+'.' Text
+'php' Text
+'?' Text
+'q' Text
+'=' Text
+'about' Text
+'-' Text
+'the' Text
+'-' Text
+'acs' Text
+' ' Text
+'|' Punctuation
+'archive-date' Name.Label
+'=' Operator
+'22' Text
+' ' Text
+'August' Text
+' ' Text
+'2012' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'22' Text
+' ' Text
+'June' Text
+' ' Text
+'2012' Text
+' ' Text
+'|' Punctuation
+'publisher' Name.Label
+'=' Operator
+'Association' Text
+' ' Text
+'of' Text
+' ' Text
+'Caribbean' Text
+' ' Text
+'States' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'and' Text
+' ' Text
+'a' Text
+' ' Text
+'leading' Text
+' ' Text
+'member' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Organisation internationale de la Francophonie' Name.Tag
+']]' Punctuation
+' ' Text
+'(' Text
+'OIF' Text
+')' Text
+' ' Text
+'of' Text
+' ' Text
+'84' Text
+' ' Text
+'French' Text
+'-' Text
+'speaking' Text
+' ' Text
+'countries' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'84' Text
+' ' Text
+'États' Text
+' ' Text
+'et' Text
+' ' Text
+'gouvernements' Text
+' ' Text
+'|' Punctuation
+'trans-title' Name.Label
+'=' Operator
+'84' Text
+' ' Text
+'states' Text
+' ' Text
+'and' Text
+' ' Text
+'governments' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'francophonie' Text
+'.' Text
+'org' Text
+'/' Text
+'-' Text
+'Etats' Text
+'-' Text
+'et' Text
+'-' Text
+'gouvernements' Text
+'-' Text
+'.' Text
+'html' Text
+' ' Text
+'|' Punctuation
+'url-status' Name.Label
+'=' Operator
+'dead' Text
+' ' Text
+'|' Punctuation
+'archive-url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'web' Text
+'.' Text
+'archive' Text
+'.' Text
+'org' Text
+'/' Text
+'web' Text
+'/' Text
+'20091003114546' Text
+'/' Text
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'francophonie' Text
+'.' Text
+'org' Text
+'/' Text
+'-' Text
+'Etats' Text
+'-' Text
+'et' Text
+'-' Text
+'gouvernements' Text
+'-' Text
+'.' Text
+'html' Text
+' ' Text
+'|' Punctuation
+'archive-date' Name.Label
+'=' Operator
+'3' Text
+' ' Text
+'October' Text
+' ' Text
+'2009' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'22' Text
+' ' Text
+'July' Text
+' ' Text
+'2010' Text
+' ' Text
+'|' Punctuation
+'publisher' Name.Label
+'=' Operator
+'Organisation' Text
+' ' Text
+'internationale' Text
+' ' Text
+'de' Text
+' ' Text
+'la' Text
+' ' Text
+'Francophonie' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'[[' Punctuation
+'File' Name.Namespace
+':' Punctuation
+'Map-Francophonie organisation fr.svg' Name.Tag
+'|' Punctuation
+'thumb' Text
+'|' Punctuation
+'alt' Name.Attribute
+'=' Operator
+'La' Text
+' ' Text
+'Francophonie' Text
+' ' Text
+'map' Text
+' ' Text
+'(' Text
+'dozens' Text
+' ' Text
+'of' Text
+' ' Text
+'countries' Text
+' ' Text
+'in' Text
+' ' Text
+'Africa' Text
+',' Text
+' ' Text
+'Europe' Text
+',' Text
+' ' Text
+'Asia' Text
+' ' Text
+'and' Text
+' ' Text
+'Latin' Text
+' ' Text
+'America' Text
+' ' Text
+'are' Text
+' ' Text
+'members' Text
+' ' Text
+'of' Text
+' ' Text
+'this' Text
+' ' Text
+'international' Text
+' ' Text
+'organisation' Text
+'.' Text
+'|' Punctuation
+'88' Text
+' ' Text
+'states' Text
+' ' Text
+'and' Text
+' ' Text
+'governments' Text
+' ' Text
+'are' Text
+' ' Text
+'part' Text
+' ' Text
+'of' Text
+' ' Text
+"''" Generic.Emph
+'[[' Punctuation
+'La Francophonie' Name.Tag
+']]' Punctuation
+"''" Generic.Emph
+',' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'[' Punctuation
+'https://www.francophonie.org/la-francophonie-en-bref-754' Name.Label
+' ' Text.Whitespace
+'La' Text
+' ' Text
+'Francophonie' Text
+' ' Text
+'en' Text
+' ' Text
+'bref' Text
+']' Punctuation
+',' Text
+' ' Text
+"''" Generic.Emph
+'[[' Punctuation
+'La Francophonie' Name.Tag
+']]' Punctuation
+"''" Generic.Emph
+',' Text
+' ' Text
+'retrieved' Text
+' ' Text
+'on' Text
+' ' Text
+'26' Text
+' ' Text
+'January' Text
+' ' Text
+'2020' Text
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'which' Text
+' ' Text
+'promotes' Text
+' ' Text
+'values' Text
+' ' Text
+'of' Text
+' ' Text
+'[[' Punctuation
+'democracy' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'[[' Punctuation
+'multilingualism' Name.Tag
+']]' Punctuation
+' ' Text
+'and' Text
+' ' Text
+'[[' Punctuation
+'cultural diversity' Name.Tag
+']]' Punctuation
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'Anne' Text
+' ' Text
+'Gazeau' Text
+'-' Text
+'Secret' Text
+',' Text
+' ' Text
+'[' Punctuation
+'https://www.cairn.info/revue-geoeconomie-2010-4-page-39.htm' Name.Label
+' ' Text.Whitespace
+'Francophonie' Text
+' ' Text
+'et' Text
+' ' Text
+'diplomatie' Text
+' ' Text
+'d' Text
+"'" Text
+'influence' Text
+']' Punctuation
+',' Text
+' ' Text
+'[[' Punctuation
+'Cairn.info' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'dans' Text
+' ' Text
+"''" Generic.Emph
+'Géoéconomie' Generic.Emph
+"''" Generic.Emph
+' ' Text
+'2010' Text
+'/' Text
+'4' Text
+' ' Text
+'(' Text
+'n' Text
+'°' Text
+' ' Text
+'55' Text
+')' Text
+',' Text
+' ' Text
+'pages' Text
+' ' Text
+'39' Text
+' ' Text
+'à' Text
+' ' Text
+'56' Text
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'France' Text
+' ' Text
+'has' Text
+' ' Text
+'been' Text
+' ' Text
+'a' Text
+' ' Text
+'key' Text
+' ' Text
+'member' Text
+' ' Text
+'of' Text
+' ' Text
+'this' Text
+' ' Text
+'global' Text
+' ' Text
+'organisation' Text
+' ' Text
+'since' Text
+' ' Text
+'its' Text
+' ' Text
+'inception' Text
+' ' Text
+'in' Text
+' ' Text
+'1970' Text
+'.' Text
+']]' Punctuation
+'\n' Text
+
+'[[' Punctuation
+'File' Name.Namespace
+':' Punctuation
+'Inauguration EYE2014 Parlement européen Strasbourg 9 mai 2014.jpg' Name.Tag
+'|' Punctuation
+'thumb' Text
+'|' Punctuation
+'alt' Name.Attribute
+'=' Operator
+'European' Text
+' ' Text
+'Parliament' Text
+' ' Text
+'opening' Text
+' ' Text
+'in' Text
+' ' Text
+'Strasbourg' Text
+' ' Text
+'with' Text
+' ' Text
+'crowd' Text
+' ' Text
+'and' Text
+' ' Text
+'many' Text
+' ' Text
+'countries' Text
+"'" Text
+' ' Text
+'flags' Text
+' ' Text
+'on' Text
+' ' Text
+'flagpoles' Text
+'|' Punctuation
+'The' Text
+' ' Text
+'[[' Punctuation
+'European Parliament' Name.Tag
+']]' Punctuation
+' ' Text
+'in' Text
+' ' Text
+'[[' Punctuation
+'Strasbourg' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'near' Text
+' ' Text
+'the' Text
+' ' Text
+'border' Text
+' ' Text
+'with' Text
+' ' Text
+'(' Text
+'Germany' Text
+')' Text
+'.' Text
+' ' Text
+'France' Text
+' ' Text
+'is' Text
+' ' Text
+'a' Text
+' ' Text
+'founding' Text
+' ' Text
+'member' Text
+' ' Text
+'of' Text
+' ' Text
+'all' Text
+' ' Text
+'EU' Text
+' ' Text
+'institutions' Text
+'.' Text
+']]' Punctuation
+'\n' Text
+
+'\n' Text
+
+'As' Text
+' ' Text
+'a' Text
+' ' Text
+'significant' Text
+' ' Text
+'hub' Text
+' ' Text
+'for' Text
+' ' Text
+'international' Text
+' ' Text
+'relations' Text
+',' Text
+' ' Text
+'France' Text
+' ' Text
+'has' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'List of diplomatic missions of France' Name.Tag
+'|' Punctuation
+'third' Text
+'-' Text
+'largest' Text
+' ' Text
+'assembly' Text
+']]' Punctuation
+' ' Text
+'of' Text
+' ' Text
+'[[' Punctuation
+'diplomatic mission' Name.Tag
+']]' Punctuation
+'s' Text
+',' Text
+' ' Text
+'second' Text
+' ' Text
+'only' Text
+' ' Text
+'to' Text
+' ' Text
+'China' Text
+' ' Text
+'and' Text
+' ' Text
+'the' Text
+' ' Text
+'United' Text
+' ' Text
+'States' Text
+',' Text
+' ' Text
+'which' Text
+' ' Text
+'are' Text
+' ' Text
+'far' Text
+' ' Text
+'more' Text
+' ' Text
+'populous' Text
+'.' Text
+' ' Text
+'It' Text
+' ' Text
+'also' Text
+' ' Text
+'hosts' Text
+' ' Text
+'the' Text
+' ' Text
+'headquarters' Text
+' ' Text
+'of' Text
+' ' Text
+'several' Text
+' ' Text
+'[[' Punctuation
+'international organization' Name.Tag
+'|' Punctuation
+'international' Text
+' ' Text
+'organisations' Text
+']]' Punctuation
+',' Text
+' ' Text
+'including' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Organisation for Economic Co-operation and Development' Name.Tag
+'|' Punctuation
+'OECD' Text
+']]' Punctuation
+',' Text
+' ' Text
+'[[' Punctuation
+'UNESCO' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'[[' Punctuation
+'Interpol' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'International Bureau of Weights and Measures' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'and' Text
+' ' Text
+'the' Text
+' ' Text
+'OIF' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Embassies' Text
+' ' Text
+'and' Text
+' ' Text
+'consulates' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'diplomatie' Text
+'.' Text
+'gouv' Text
+'.' Text
+'fr' Text
+'/' Text
+'en' Text
+'/' Text
+'ministry_158' Text
+'/' Text
+'embassies' Text
+'-' Text
+'and' Text
+'-' Text
+'consulates_2052' Text
+'/' Text
+'bilateral' Text
+'-' Text
+'embassies_1580' Text
+'.' Text
+'html' Text
+' ' Text
+'|' Punctuation
+'url-status' Name.Label
+'=' Operator
+'dead' Text
+' ' Text
+'|' Punctuation
+'archive-url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'web' Text
+'.' Text
+'archive' Text
+'.' Text
+'org' Text
+'/' Text
+'web' Text
+'/' Text
+'20100908014607' Text
+'/' Text
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'diplomatie' Text
+'.' Text
+'gouv' Text
+'.' Text
+'fr' Text
+'/' Text
+'en' Text
+'/' Text
+'ministry_158' Text
+'/' Text
+'embassies' Text
+'-' Text
+'and' Text
+'-' Text
+'consulates_2052' Text
+'/' Text
+'bilateral' Text
+'-' Text
+'embassies_1580' Text
+'.' Text
+'html' Text
+' ' Text
+'|' Punctuation
+'archive-date' Name.Label
+'=' Operator
+'8' Text
+' ' Text
+'September' Text
+' ' Text
+'2010' Text
+' ' Text
+'|' Punctuation
+'website' Name.Label
+'=' Operator
+'France' Text
+' ' Text
+'Diplomatie' Text
+' ' Text
+'|' Punctuation
+'publisher' Name.Label
+'=' Operator
+'The' Text
+' ' Text
+'French' Text
+' ' Text
+'Ministry' Text
+' ' Text
+'of' Text
+' ' Text
+'Foreign' Text
+' ' Text
+'affairs' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'\n' Text
+
+'\n' Text
+
+'Postwar' Text
+' ' Text
+'French' Text
+' ' Text
+'foreign' Text
+' ' Text
+'policy' Text
+' ' Text
+'has' Text
+' ' Text
+'been' Text
+' ' Text
+'largely' Text
+' ' Text
+'shaped' Text
+' ' Text
+'by' Text
+' ' Text
+'membership' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'European' Text
+' ' Text
+'Union' Text
+',' Text
+' ' Text
+'of' Text
+' ' Text
+'which' Text
+' ' Text
+'it' Text
+' ' Text
+'was' Text
+' ' Text
+'a' Text
+' ' Text
+'[[' Punctuation
+'Inner Six' Name.Tag
+'|' Punctuation
+'founding' Text
+' ' Text
+'member' Text
+']]' Punctuation
+'.' Text
+' ' Text
+'Since' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Élysée Treaty' Name.Tag
+'|' Punctuation
+'1960s' Text
+']]' Punctuation
+',' Text
+' ' Text
+'France' Text
+' ' Text
+'has' Text
+' ' Text
+'developed' Text
+' ' Text
+'close' Text
+' ' Text
+'ties' Text
+' ' Text
+'with' Text
+' ' Text
+'reunified' Text
+' ' Text
+'Germany' Text
+' ' Text
+'to' Text
+' ' Text
+'become' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'France–Germany relations' Name.Tag
+'|' Punctuation
+'most' Text
+' ' Text
+'influential' Text
+' ' Text
+'driving' Text
+' ' Text
+'force' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'EU' Text
+']]' Punctuation
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'last' Name.Label
+'=' Operator
+'Pierre' Text
+'-' Text
+'Louis' Text
+' ' Text
+'Germain' Text
+' ' Text
+'|' Punctuation
+'date' Name.Label
+'=' Operator
+'12' Text
+' ' Text
+'November' Text
+' ' Text
+'2009' Text
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'L' Text
+"'" Text
+'alliance' Text
+' ' Text
+'Franco' Text
+'-' Text
+'allemande' Text
+' ' Text
+'au' Text
+' ' Text
+'coeur' Text
+' ' Text
+'de' Text
+' ' Text
+'la' Text
+' ' Text
+'puissance' Text
+' ' Text
+'européenne' Text
+' ' Text
+'|' Punctuation
+'trans-title' Name.Label
+'=' Operator
+'The' Text
+' ' Text
+'Franco' Text
+'-' Text
+'German' Text
+' ' Text
+'alliance' Text
+' ' Text
+'at' Text
+' ' Text
+'the' Text
+' ' Text
+'heart' Text
+' ' Text
+'of' Text
+' ' Text
+'European' Text
+' ' Text
+'power' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'oftt' Text
+'.' Text
+'eu' Text
+'/' Text
+'perspectives' Text
+'/' Text
+'article' Text
+'/' Text
+'l' Text
+'-' Text
+'alliance' Text
+'-' Text
+'franco' Text
+'-' Text
+'allemande' Text
+'-' Text
+'au' Text
+'-' Text
+'coeur' Text
+'-' Text
+'de' Text
+'-' Text
+'la' Text
+'-' Text
+'puissance' Text
+'-' Text
+'europeenne' Text
+' ' Text
+'|' Punctuation
+'archive-url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'web' Text
+'.' Text
+'archive' Text
+'.' Text
+'org' Text
+'/' Text
+'web' Text
+'/' Text
+'20100123092331' Text
+'/' Text
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'oftt' Text
+'.' Text
+'eu' Text
+'/' Text
+'perspectives' Text
+'/' Text
+'article' Text
+'/' Text
+'l' Text
+'-' Text
+'alliance' Text
+'-' Text
+'franco' Text
+'-' Text
+'allemande' Text
+'-' Text
+'au' Text
+'-' Text
+'coeur' Text
+'-' Text
+'de' Text
+'-' Text
+'la' Text
+'-' Text
+'puissance' Text
+'-' Text
+'europeenne' Text
+' ' Text
+'|' Punctuation
+'archive-date' Name.Label
+'=' Operator
+'23' Text
+' ' Text
+'January' Text
+' ' Text
+'2010' Text
+' ' Text
+'|' Punctuation
+'publisher' Name.Label
+'=' Operator
+'Institut' Text
+' ' Text
+'Montaigne' Text
+' ' Text
+'|' Punctuation
+'language' Name.Label
+'=' Operator
+'fr' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'In' Text
+' ' Text
+'the' Text
+' ' Text
+'1960s' Text
+',' Text
+' ' Text
+'France' Text
+' ' Text
+'sought' Text
+' ' Text
+'to' Text
+' ' Text
+'exclude' Text
+' ' Text
+'the' Text
+' ' Text
+'British' Text
+' ' Text
+'from' Text
+' ' Text
+'the' Text
+' ' Text
+'European' Text
+' ' Text
+'unification' Text
+' ' Text
+'process' Text
+',' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'news' Name.Tag
+' ' Text
+'|' Punctuation
+'date' Name.Label
+'=' Operator
+'27' Text
+' ' Text
+'November' Text
+' ' Text
+'1967' Text
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'De' Text
+' ' Text
+'Gaulle' Text
+' ' Text
+'says' Text
+' ' Text
+"'" Text
+'non' Text
+"'" Text
+' ' Text
+'to' Text
+' ' Text
+'Britain' Text
+'&nbsp;' Name.Entity
+'–' Text
+' ' Text
+'again' Text
+' ' Text
+'|' Punctuation
+'work' Name.Label
+'=' Operator
+'BBC' Text
+' ' Text
+'News' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'news' Text
+'.' Text
+'bbc' Text
+'.' Text
+'co' Text
+'.' Text
+'uk' Text
+'/' Text
+'onthisday' Text
+'/' Text
+'hi' Text
+'/' Text
+'dates' Text
+'/' Text
+'stories' Text
+'/' Text
+'november' Text
+'/' Text
+'27' Text
+'/' Text
+'newsid_4187000' Text
+'/' Text
+'4187714' Text
+'.' Text
+'stm' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'21' Text
+' ' Text
+'July' Text
+' ' Text
+'2011' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'seeking' Text
+' ' Text
+'to' Text
+' ' Text
+'build' Text
+' ' Text
+'its' Text
+' ' Text
+'standing' Text
+' ' Text
+'in' Text
+' ' Text
+'continental' Text
+' ' Text
+'Europe' Text
+'.' Text
+' ' Text
+'However' Text
+',' Text
+' ' Text
+'since' Text
+' ' Text
+'1904' Text
+',' Text
+' ' Text
+'France' Text
+' ' Text
+'has' Text
+' ' Text
+'maintained' Text
+' ' Text
+'an' Text
+' ' Text
+'"' Text
+'[[' Punctuation
+'Entente cordiale' Name.Tag
+']]' Punctuation
+'"' Text
+' ' Text
+'with' Text
+' ' Text
+'the' Text
+' ' Text
+'United' Text
+' ' Text
+'Kingdom' Text
+',' Text
+' ' Text
+'and' Text
+' ' Text
+'there' Text
+' ' Text
+'has' Text
+' ' Text
+'been' Text
+' ' Text
+'a' Text
+' ' Text
+'strengthening' Text
+' ' Text
+'of' Text
+' ' Text
+'links' Text
+' ' Text
+'between' Text
+' ' Text
+'the' Text
+' ' Text
+'countries' Text
+',' Text
+' ' Text
+'especially' Text
+' ' Text
+'[[' Punctuation
+'Defence and Security Co-operation Treaty' Name.Tag
+'|' Punctuation
+'militarily' Text
+']]' Punctuation
+'.' Text
+'\n' Text
+
+'\n' Text
+
+'France' Text
+' ' Text
+'is' Text
+' ' Text
+'a' Text
+' ' Text
+'member' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'North Atlantic Treaty Organization' Name.Tag
+']]' Punctuation
+' ' Text
+'(' Text
+'NATO' Text
+')' Text
+',' Text
+' ' Text
+'but' Text
+' ' Text
+'under' Text
+' ' Text
+'President' Text
+' ' Text
+'de' Text
+' ' Text
+'Gaulle' Text
+' ' Text
+'excluded' Text
+' ' Text
+'itself' Text
+' ' Text
+'from' Text
+' ' Text
+'the' Text
+' ' Text
+'joint' Text
+' ' Text
+'military' Text
+' ' Text
+'command' Text
+',' Text
+' ' Text
+'in' Text
+' ' Text
+'protest' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Special Relationship' Name.Tag
+']]' Punctuation
+' ' Text
+'between' Text
+' ' Text
+'the' Text
+' ' Text
+'United' Text
+' ' Text
+'States' Text
+' ' Text
+'and' Text
+' ' Text
+'Britain' Text
+',' Text
+' ' Text
+'and' Text
+' ' Text
+'to' Text
+' ' Text
+'preserve' Text
+' ' Text
+'the' Text
+' ' Text
+'independence' Text
+' ' Text
+'of' Text
+' ' Text
+'French' Text
+' ' Text
+'foreign' Text
+' ' Text
+'and' Text
+' ' Text
+'security' Text
+' ' Text
+'policies' Text
+'.' Text
+' ' Text
+'Under' Text
+' ' Text
+'Nicolas' Text
+' ' Text
+'Sarkozy' Text
+',' Text
+' ' Text
+'France' Text
+' ' Text
+'rejoined' Text
+' ' Text
+'the' Text
+' ' Text
+'NATO' Text
+' ' Text
+'joint' Text
+' ' Text
+'military' Text
+' ' Text
+'command' Text
+' ' Text
+'on' Text
+' ' Text
+'4' Text
+' ' Text
+'April' Text
+' ' Text
+'2009' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'last' Name.Label
+'=' Operator
+'Isabelle' Text
+' ' Text
+'Lasserre' Text
+' ' Text
+'|' Punctuation
+'date' Name.Label
+'=' Operator
+'11' Text
+' ' Text
+'March' Text
+' ' Text
+'2009' Text
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Quand' Text
+' ' Text
+'Mitterrand' Text
+',' Text
+' ' Text
+'déjà' Text
+',' Text
+' ' Text
+'négociait' Text
+' ' Text
+'le' Text
+' ' Text
+'retour' Text
+' ' Text
+'de' Text
+' ' Text
+'la' Text
+' ' Text
+'France' Text
+' ' Text
+'dans' Text
+' ' Text
+'l' Text
+"'" Text
+'Otan' Text
+' ' Text
+'|' Punctuation
+'trans-title' Name.Label
+'=' Operator
+'Mitterrand' Text
+' ' Text
+'already' Text
+' ' Text
+'negotiated' Text
+' ' Text
+'the' Text
+' ' Text
+'return' Text
+' ' Text
+'of' Text
+' ' Text
+'France' Text
+' ' Text
+'to' Text
+' ' Text
+'NATO' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'lefigaro' Text
+'.' Text
+'fr' Text
+'/' Text
+'international' Text
+'/' Text
+'2009' Text
+'/' Text
+'03' Text
+'/' Text
+'11' Text
+'/' Text
+'01003' Text
+'-' Text
+'20090311ARTFIG00073' Text
+'-' Text
+'quand' Text
+'-' Text
+'mitterrand' Text
+'-' Text
+'deja' Text
+'-' Text
+'negociait' Text
+'-' Text
+'le' Text
+'-' Text
+'retour' Text
+'-' Text
+'dans' Text
+'-' Text
+'l' Text
+'-' Text
+'otan' Text
+'-' Text
+'.' Text
+'php' Text
+' ' Text
+'|' Punctuation
+'website' Name.Label
+'=' Operator
+'Le' Text
+' ' Text
+'Figaro' Text
+' ' Text
+'|' Punctuation
+'language' Name.Label
+'=' Operator
+'fr' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'news' Name.Tag
+' ' Text
+'|' Punctuation
+'date' Name.Label
+'=' Operator
+'12' Text
+' ' Text
+'March' Text
+' ' Text
+'2009' Text
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'France' Text
+' ' Text
+'ends' Text
+' ' Text
+'four' Text
+'-' Text
+'decade' Text
+' ' Text
+'Nato' Text
+' ' Text
+'rift' Text
+' ' Text
+'|' Punctuation
+'work' Name.Label
+'=' Operator
+'BBC' Text
+' ' Text
+'News' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'news' Text
+'.' Text
+'bbc' Text
+'.' Text
+'co' Text
+'.' Text
+'uk' Text
+'/' Text
+'2' Text
+'/' Text
+'hi' Text
+'/' Text
+'europe' Text
+'/' Text
+'7937666' Text
+'.' Text
+'stm' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'21' Text
+' ' Text
+'July' Text
+' ' Text
+'2011' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'news' Name.Tag
+' ' Text
+'|' Punctuation
+'last' Name.Label
+'=' Operator
+'Roger' Text
+' ' Text
+'|' Punctuation
+'first' Name.Label
+'=' Operator
+'Patrick' Text
+' ' Text
+'|' Punctuation
+'date' Name.Label
+'=' Operator
+'11' Text
+' ' Text
+'March' Text
+' ' Text
+'2009' Text
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Le' Text
+' ' Text
+'retour' Text
+' ' Text
+'de' Text
+' ' Text
+'la' Text
+' ' Text
+'France' Text
+' ' Text
+'dans' Text
+' ' Text
+'l' Text
+"'" Text
+'OTAN' Text
+' ' Text
+'suscite' Text
+' ' Text
+'un' Text
+' ' Text
+'malaise' Text
+' ' Text
+'dans' Text
+' ' Text
+'les' Text
+' ' Text
+'rangs' Text
+' ' Text
+'de' Text
+' ' Text
+'la' Text
+' ' Text
+'Droite' Text
+' ' Text
+'|' Punctuation
+'language' Name.Label
+'=' Operator
+'fr' Text
+' ' Text
+'|' Punctuation
+'trans-title' Name.Label
+'=' Operator
+'The' Text
+' ' Text
+'return' Text
+' ' Text
+'of' Text
+' ' Text
+'France' Text
+' ' Text
+'to' Text
+' ' Text
+'NATO' Text
+' ' Text
+'causes' Text
+' ' Text
+'discomfort' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'ranks' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'right' Text
+' ' Text
+'|' Punctuation
+'work' Name.Label
+'=' Operator
+'Le' Text
+' ' Text
+'Monde' Text
+' ' Text
+'|' Punctuation
+'location' Name.Label
+'=' Operator
+'Paris' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'lemonde' Text
+'.' Text
+'fr' Text
+'/' Text
+'politique' Text
+'/' Text
+'article' Text
+'/' Text
+'2009' Text
+'/' Text
+'03' Text
+'/' Text
+'11' Text
+'/' Text
+'le' Text
+'-' Text
+'retour' Text
+'-' Text
+'de' Text
+'-' Text
+'la' Text
+'-' Text
+'france' Text
+'-' Text
+'dans' Text
+'-' Text
+'l' Text
+'-' Text
+'otan' Text
+'-' Text
+'suscite' Text
+'-' Text
+'un' Text
+'-' Text
+'malaise' Text
+'-' Text
+'dans' Text
+'-' Text
+'les' Text
+'-' Text
+'rangs' Text
+'-' Text
+'de' Text
+'-' Text
+'la' Text
+'-' Text
+'droite_1166352_823448' Text
+'.' Text
+'html' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'\n' Text
+
+'\n' Text
+
+'France' Text
+' ' Text
+'retains' Text
+' ' Text
+'strong' Text
+' ' Text
+'political' Text
+' ' Text
+'and' Text
+' ' Text
+'economic' Text
+' ' Text
+'influence' Text
+' ' Text
+'in' Text
+' ' Text
+'its' Text
+' ' Text
+'[[' Punctuation
+'Second French colonial empire' Name.Tag
+'|' Punctuation
+'former' Text
+' ' Text
+'African' Text
+' ' Text
+'colonies' Text
+']]' Punctuation
+' ' Text
+'(' Text
+"''" Generic.Emph
+'[[' Punctuation
+'Françafrique' Name.Tag
+']]' Punctuation
+"''" Generic.Emph
+')' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'L' Text
+"'" Text
+'empire' Text
+' ' Text
+'colonial' Text
+' ' Text
+'français' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'memo' Text
+'.' Text
+'fr' Text
+'/' Text
+'article' Text
+'.' Text
+'asp' Text
+'?' Text
+'ID' Text
+'=' Text
+'CON_COL_009' Text
+' ' Text
+'|' Punctuation
+'url-status' Name.Label
+'=' Operator
+'dead' Text
+' ' Text
+'|' Punctuation
+'archive-url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'web' Text
+'.' Text
+'archive' Text
+'.' Text
+'org' Text
+'/' Text
+'web' Text
+'/' Text
+'20110425142925' Text
+'/' Text
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'memo' Text
+'.' Text
+'fr' Text
+'/' Text
+'article' Text
+'.' Text
+'asp' Text
+'?' Text
+'ID' Text
+'=' Text
+'CON_COL_009' Text
+' ' Text
+'|' Punctuation
+'archive-date' Name.Label
+'=' Operator
+'25' Text
+' ' Text
+'April' Text
+' ' Text
+'2011' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'and' Text
+' ' Text
+'has' Text
+' ' Text
+'supplied' Text
+' ' Text
+'economic' Text
+' ' Text
+'aid' Text
+' ' Text
+'and' Text
+' ' Text
+'troops' Text
+' ' Text
+'for' Text
+' ' Text
+'peacekeeping' Text
+' ' Text
+'missions' Text
+' ' Text
+'in' Text
+' ' Text
+'Ivory' Text
+' ' Text
+'Coast' Text
+' ' Text
+'and' Text
+' ' Text
+'Chad' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'France' Text
+' ' Text
+'involvement' Text
+' ' Text
+'in' Text
+' ' Text
+'peace' Text
+'-' Text
+'keeping' Text
+' ' Text
+'operations' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'delegfrance' Text
+'-' Text
+'onu' Text
+'-' Text
+'geneve' Text
+'.' Text
+'org' Text
+'/' Text
+'spip' Text
+'.' Text
+'php' Text
+'?' Text
+'article417' Text
+' ' Text
+'|' Punctuation
+'url-status' Name.Label
+'=' Operator
+'dead' Text
+' ' Text
+'|' Punctuation
+'archive-url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'web' Text
+'.' Text
+'archive' Text
+'.' Text
+'org' Text
+'/' Text
+'web' Text
+'/' Text
+'20110425024055' Text
+'/' Text
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'delegfrance' Text
+'-' Text
+'onu' Text
+'-' Text
+'geneve' Text
+'.' Text
+'org' Text
+'/' Text
+'spip' Text
+'.' Text
+'php' Text
+'?' Text
+'article417' Text
+' ' Text
+'|' Punctuation
+'archive-date' Name.Label
+'=' Operator
+'25' Text
+' ' Text
+'April' Text
+' ' Text
+'2011' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'9' Text
+' ' Text
+'August' Text
+' ' Text
+'2010' Text
+' ' Text
+'|' Punctuation
+'publisher' Name.Label
+'=' Operator
+'Delegfrance' Text
+'-' Text
+'onu' Text
+'-' Text
+'geneve' Text
+'.' Text
+'org' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'From' Text
+' ' Text
+'2012' Text
+' ' Text
+'to' Text
+' ' Text
+'2021' Text
+',' Text
+' ' Text
+'France' Text
+' ' Text
+'and' Text
+' ' Text
+'other' Text
+' ' Text
+'African' Text
+' ' Text
+'states' Text
+' ' Text
+'intervened' Text
+' ' Text
+'in' Text
+' ' Text
+'support' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Mali' Name.Tag
+']]' Punctuation
+'an' Text
+' ' Text
+'government' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Northern Mali conflict' Name.Tag
+']]' Punctuation
+'.' Text
+'\n' Text
+
+'\n' Text
+
+'In' Text
+' ' Text
+'2017' Text
+',' Text
+' ' Text
+'France' Text
+' ' Text
+'was' Text
+' ' Text
+'the' Text
+' ' Text
+'world' Text
+"'" Text
+'s' Text
+' ' Text
+'fourth' Text
+'-' Text
+'largest' Text
+' ' Text
+'donor' Text
+' ' Text
+'of' Text
+' ' Text
+'[[' Punctuation
+'development aid' Name.Tag
+']]' Punctuation
+' ' Text
+'in' Text
+' ' Text
+'absolute' Text
+' ' Text
+'terms' Text
+',' Text
+' ' Text
+'behind' Text
+' ' Text
+'the' Text
+' ' Text
+'United' Text
+' ' Text
+'States' Text
+',' Text
+' ' Text
+'Germany' Text
+',' Text
+' ' Text
+'and' Text
+' ' Text
+'the' Text
+' ' Text
+'United' Text
+' ' Text
+'Kingdom' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Official' Text
+' ' Text
+'development' Text
+' ' Text
+'assistance' Text
+' ' Text
+'(' Text
+'ODA' Text
+')' Text
+' ' Text
+'–' Text
+' ' Text
+'Net' Text
+' ' Text
+'ODA' Text
+' ' Text
+'–' Text
+' ' Text
+'OECD' Text
+' ' Text
+'Data' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'data' Text
+'.' Text
+'oecd' Text
+'.' Text
+'org' Text
+'/' Text
+'oda' Text
+'/' Text
+'net' Text
+'-' Text
+'oda' Text
+'.' Text
+'htm' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'20' Text
+' ' Text
+'August' Text
+' ' Text
+'2019' Text
+' ' Text
+'|' Punctuation
+'website' Name.Label
+'=' Operator
+'theOECD' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'This' Text
+' ' Text
+'represents' Text
+' ' Text
+'0' Text
+'.' Text
+'43' Text
+'%' Text
+' ' Text
+'of' Text
+' ' Text
+'its' Text
+' ' Text
+'[[' Punctuation
+'GNP' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'the' Text
+' ' Text
+'12th' Text
+' ' Text
+'highest' Text
+' ' Text
+'among' Text
+' ' Text
+'the' Text
+' ' Text
+'OECD' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Aid' Text
+' ' Text
+'to' Text
+' ' Text
+'developing' Text
+' ' Text
+'countries' Text
+' ' Text
+'rebounds' Text
+' ' Text
+'in' Text
+' ' Text
+'2013' Text
+' ' Text
+'to' Text
+' ' Text
+'reach' Text
+' ' Text
+'an' Text
+' ' Text
+'all' Text
+'-' Text
+'time' Text
+' ' Text
+'high' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'oecd' Text
+'.' Text
+'org' Text
+'/' Text
+'newsroom' Text
+'/' Text
+'aid' Text
+'-' Text
+'to' Text
+'-' Text
+'developing' Text
+'-' Text
+'countries' Text
+'-' Text
+'rebounds' Text
+'-' Text
+'in' Text
+'-' Text
+'2013' Text
+'-' Text
+'to' Text
+'-' Text
+'reach' Text
+'-' Text
+'an' Text
+'-' Text
+'all' Text
+'-' Text
+'time' Text
+'-' Text
+'high' Text
+'.' Text
+'htm' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'3' Text
+' ' Text
+'March' Text
+' ' Text
+'2016' Text
+' ' Text
+'|' Punctuation
+'publisher' Name.Label
+'=' Operator
+'OECD' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'Aid' Text
+' ' Text
+'is' Text
+' ' Text
+'provided' Text
+' ' Text
+'by' Text
+' ' Text
+'the' Text
+' ' Text
+'governmental' Text
+' ' Text
+'[[' Punctuation
+'French Development Agency' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'which' Text
+' ' Text
+'finances' Text
+' ' Text
+'primarily' Text
+' ' Text
+'humanitarian' Text
+' ' Text
+'projects' Text
+' ' Text
+'in' Text
+' ' Text
+'[[' Punctuation
+'sub-Saharan Africa' Name.Tag
+']]' Punctuation
+',' Text
+'<' Punctuation
+'ref' Name.Tag
+' ' Text.Whitespace
+'name' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+'aid' Literal.String.Double
+'"' Literal.String.Double
+' ' Text.Whitespace
+'/>' Punctuation
+' ' Text
+'with' Text
+' ' Text
+'an' Text
+' ' Text
+'emphasis' Text
+' ' Text
+'on' Text
+' ' Text
+'"' Text
+'developing' Text
+' ' Text
+'infrastructure' Text
+',' Text
+' ' Text
+'access' Text
+' ' Text
+'to' Text
+' ' Text
+'health' Text
+' ' Text
+'care' Text
+' ' Text
+'and' Text
+' ' Text
+'education' Text
+',' Text
+' ' Text
+'the' Text
+' ' Text
+'implementation' Text
+' ' Text
+'of' Text
+' ' Text
+'appropriate' Text
+' ' Text
+'economic' Text
+' ' Text
+'policies' Text
+' ' Text
+'and' Text
+' ' Text
+'the' Text
+' ' Text
+'consolidation' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'rule' Text
+' ' Text
+'of' Text
+' ' Text
+'law' Text
+' ' Text
+'and' Text
+' ' Text
+'democracy' Text
+'"' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+' ' Text.Whitespace
+'name' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+'aid' Literal.String.Double
+'"' Literal.String.Double
+'>' Punctuation
+'[' Punctuation
+'http://www.diplomatie.gouv.fr/en/france-priorities_1/index.html' Name.Label
+' ' Text.Whitespace
+'France' Text
+' ' Text
+'priorities' Text
+']' Punctuation
+' ' Text
+'{{' Punctuation
+'Webarchive' Name.Tag
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'web' Text
+'.' Text
+'archive' Text
+'.' Text
+'org' Text
+'/' Text
+'web' Text
+'/' Text
+'20100722114125' Text
+'/' Text
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'diplomatie' Text
+'.' Text
+'gouv' Text
+'.' Text
+'fr' Text
+'/' Text
+'en' Text
+'/' Text
+'france' Text
+'-' Text
+'priorities_1' Text
+'/' Text
+'index' Text
+'.' Text
+'html' Text
+'|' Punctuation
+'date' Name.Label
+'=' Operator
+'22' Text
+' ' Text
+'July' Text
+' ' Text
+'2010' Text
+'}}' Punctuation
+'&nbsp;' Name.Entity
+'–' Text
+' ' Text
+'France' Text
+' ' Text
+'Diplomatie' Text
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'\n' Text
+
+'\n' Text
+
+'===' Generic.Subheading
+'Military' Generic.Subheading
+'===' Generic.Subheading
+'\n' Text.Whitespace
+
+'{{' Punctuation
+'Main' Name.Tag
+'|' Punctuation
+'French' Text
+' ' Text
+'Armed' Text
+' ' Text
+'Forces' Text
+'}}' Punctuation
+'The' Text
+' ' Text
+'French' Text
+' ' Text
+'Armed' Text
+' ' Text
+'Forces' Text
+' ' Text
+'(' Text
+"''" Generic.Emph
+'Forces' Generic.Emph
+' ' Generic.Emph
+'armées' Generic.Emph
+' ' Generic.Emph
+'françaises' Generic.Emph
+"''" Generic.Emph
+')' Text
+' ' Text
+'are' Text
+' ' Text
+'the' Text
+' ' Text
+'military' Text
+' ' Text
+'and' Text
+' ' Text
+'paramilitary' Text
+' ' Text
+'forces' Text
+' ' Text
+'of' Text
+' ' Text
+'France' Text
+',' Text
+' ' Text
+'under' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'President of France' Name.Tag
+'|' Punctuation
+'President' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'Republic' Text
+']]' Punctuation
+' ' Text
+'as' Text
+' ' Text
+'supreme' Text
+' ' Text
+'commander' Text
+'.' Text
+' ' Text
+'They' Text
+' ' Text
+'consist' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'French Army' Name.Tag
+']]' Punctuation
+' ' Text
+'(' Text
+"''" Generic.Emph
+'Armée' Generic.Emph
+' ' Generic.Emph
+'de' Generic.Emph
+' ' Generic.Emph
+'Terre' Generic.Emph
+"''" Generic.Emph
+')' Text
+',' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'French Navy' Name.Tag
+']]' Punctuation
+' ' Text
+'(' Text
+"''" Generic.Emph
+'Marine' Generic.Emph
+' ' Generic.Emph
+'Nationale' Generic.Emph
+"''" Generic.Emph
+',' Text
+' ' Text
+'formerly' Text
+' ' Text
+'called' Text
+' ' Text
+"''" Generic.Emph
+'Armée' Generic.Emph
+' ' Generic.Emph
+'de' Generic.Emph
+' ' Generic.Emph
+'Mer' Generic.Emph
+"''" Generic.Emph
+')' Text
+',' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'French Air and Space Force' Name.Tag
+']]' Punctuation
+' ' Text
+'(' Text
+"''" Generic.Emph
+'Armée' Generic.Emph
+' ' Generic.Emph
+'de' Generic.Emph
+' ' Generic.Emph
+'l' Generic.Emph
+"'" Generic.Emph
+'Air' Generic.Emph
+' ' Generic.Emph
+'et' Generic.Emph
+' ' Generic.Emph
+'de' Generic.Emph
+' ' Generic.Emph
+'l' Generic.Emph
+'’' Generic.Emph
+'Espace' Generic.Emph
+"''" Generic.Emph
+')' Text
+',' Text
+' ' Text
+'and' Text
+' ' Text
+'the' Text
+' ' Text
+'Military' Text
+' ' Text
+'Police' Text
+' ' Text
+'called' Text
+' ' Text
+'[[' Punctuation
+'National Gendarmerie' Name.Tag
+']]' Punctuation
+' ' Text
+'(' Text
+"''" Generic.Emph
+'Gendarmerie' Generic.Emph
+' ' Generic.Emph
+'nationale' Generic.Emph
+"''" Generic.Emph
+')' Text
+',' Text
+' ' Text
+'which' Text
+' ' Text
+'also' Text
+' ' Text
+'fulfils' Text
+' ' Text
+'civil' Text
+' ' Text
+'police' Text
+' ' Text
+'duties' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'rural' Text
+' ' Text
+'areas' Text
+' ' Text
+'of' Text
+' ' Text
+'France' Text
+'.' Text
+' ' Text
+'Together' Text
+' ' Text
+'they' Text
+' ' Text
+'are' Text
+' ' Text
+'among' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'List of countries by number of troops' Name.Tag
+'|' Punctuation
+'largest' Text
+' ' Text
+'armed' Text
+' ' Text
+'forces' Text
+']]' Punctuation
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'world' Text
+' ' Text
+'and' Text
+' ' Text
+'the' Text
+' ' Text
+'largest' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'EU' Text
+'.' Text
+' ' Text
+'According' Text
+' ' Text
+'to' Text
+' ' Text
+'a' Text
+' ' Text
+'2018' Text
+' ' Text
+'study' Text
+' ' Text
+'by' Text
+' ' Text
+'[[' Punctuation
+'Crédit Suisse' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'the' Text
+' ' Text
+'French' Text
+' ' Text
+'Armed' Text
+' ' Text
+'Forces' Text
+' ' Text
+'are' Text
+' ' Text
+'ranked' Text
+' ' Text
+'as' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'List of countries by Military Strength Index' Name.Tag
+'|' Punctuation
+'world' Text
+"'" Text
+'s' Text
+' ' Text
+'sixth' Text
+'-' Text
+'most' Text
+' ' Text
+'powerful' Text
+' ' Text
+'military' Text
+']]' Punctuation
+',' Text
+' ' Text
+'and' Text
+' ' Text
+'the' Text
+' ' Text
+'second' Text
+' ' Text
+'most' Text
+' ' Text
+'powerful' Text
+' ' Text
+'in' Text
+' ' Text
+'Europe' Text
+' ' Text
+'after' Text
+' ' Text
+'[[' Punctuation
+'Russia' Name.Tag
+']]' Punctuation
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+' ' Text.Whitespace
+'name' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+'CreditSuisse2015' Literal.String.Double
+'"' Literal.String.Double
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'report' Name.Tag
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'publications' Text
+'.' Text
+'credit' Text
+'-' Text
+'suisse' Text
+'.' Text
+'com' Text
+'/' Text
+'tasks' Text
+'/' Text
+'render' Text
+'/' Text
+'file' Text
+'/' Text
+'index' Text
+'.' Text
+'cfm' Text
+'?' Text
+'fileid' Text
+'=' Text
+'EE7A6A5D' Text
+'-' Text
+'D9D5' Text
+'-' Text
+'6204' Text
+'-' Text
+'E9E6BB426B47D054' Text
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'The' Text
+' ' Text
+'End' Text
+' ' Text
+'of' Text
+' ' Text
+'Globalization' Text
+' ' Text
+'or' Text
+' ' Text
+'a' Text
+' ' Text
+'more' Text
+' ' Text
+'Multipolar' Text
+' ' Text
+'World' Text
+'?' Text
+' ' Text
+'|' Punctuation
+'last1' Name.Label
+'=' Operator
+'O' Text
+'’' Text
+'Sullivan' Text
+' ' Text
+'|' Punctuation
+'first1' Name.Label
+'=' Operator
+'Michael' Text
+' ' Text
+'|' Punctuation
+'last2' Name.Label
+'=' Operator
+'Subramanian' Text
+' ' Text
+'|' Punctuation
+'first2' Name.Label
+'=' Operator
+'Krithika' Text
+' ' Text
+'|' Punctuation
+'date' Name.Label
+'=' Operator
+'17' Text
+' ' Text
+'October' Text
+' ' Text
+'2015' Text
+' ' Text
+'|' Punctuation
+'publisher' Name.Label
+'=' Operator
+'[[' Punctuation
+'Credit Suisse' Name.Tag
+']]' Punctuation
+' ' Text
+'AG' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'14' Text
+' ' Text
+'July' Text
+' ' Text
+'2017' Text
+' ' Text
+'|' Punctuation
+'archive-url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'web' Text
+'.' Text
+'archive' Text
+'.' Text
+'org' Text
+'/' Text
+'web' Text
+'/' Text
+'20180215235711' Text
+'/' Text
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'publications' Text
+'.' Text
+'credit' Text
+'-' Text
+'suisse' Text
+'.' Text
+'com' Text
+'/' Text
+'tasks' Text
+'/' Text
+'render' Text
+'/' Text
+'file' Text
+'/' Text
+'index' Text
+'.' Text
+'cfm' Text
+'?' Text
+'fileid' Text
+'=' Text
+'EE7A6A5D' Text
+'-' Text
+'D9D5' Text
+'-' Text
+'6204' Text
+'-' Text
+'E9E6BB426B47D054' Text
+' ' Text
+'|' Punctuation
+'archive-date' Name.Label
+'=' Operator
+'15' Text
+' ' Text
+'February' Text
+' ' Text
+'2018' Text
+' ' Text
+'|' Punctuation
+'url-status' Name.Label
+'=' Operator
+'dead' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'France' Text
+"'" Text
+'s' Text
+' ' Text
+'annual' Text
+' ' Text
+'military' Text
+' ' Text
+'expenditure' Text
+' ' Text
+'in' Text
+' ' Text
+'2018' Text
+' ' Text
+'was' Text
+' ' Text
+'US' Text
+'$' Text
+'63' Text
+'.' Text
+'8' Text
+'&nbsp;' Name.Entity
+'billion' Text
+',' Text
+' ' Text
+'or' Text
+' ' Text
+'2' Text
+'.' Text
+'3' Text
+'%' Text
+' ' Text
+'[[' Punctuation
+'List of countries by military expenditure share of GDP' Name.Tag
+'|' Punctuation
+'of' Text
+' ' Text
+'its' Text
+' ' Text
+'GDP' Text
+']]' Punctuation
+',' Text
+' ' Text
+'making' Text
+' ' Text
+'it' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'List of countries by military expenditures' Name.Tag
+'|' Punctuation
+'fifth' Text
+' ' Text
+'biggest' Text
+' ' Text
+'military' Text
+' ' Text
+'spender' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'world' Text
+']]' Punctuation
+' ' Text
+'after' Text
+' ' Text
+'the' Text
+' ' Text
+'United' Text
+' ' Text
+'States' Text
+',' Text
+' ' Text
+'China' Text
+',' Text
+' ' Text
+'Saudi' Text
+' ' Text
+'Arabia' Text
+',' Text
+' ' Text
+'and' Text
+' ' Text
+'India' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'[' Punctuation
+'https://www.sipri.org/publications/2019/sipri-fact-sheets/trends-world-military-expenditure-2018' Name.Label
+' ' Text.Whitespace
+'Trends' Text
+' ' Text
+'in' Text
+' ' Text
+'World' Text
+' ' Text
+'Military' Text
+' ' Text
+'Expenditure' Text
+']' Punctuation
+' ' Text
+'SIPRI' Text
+'.' Text
+' ' Text
+'Retrieved' Text
+' ' Text
+'18' Text
+' ' Text
+'December' Text
+' ' Text
+'2019' Text
+'.' Text
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'There' Text
+' ' Text
+'has' Text
+' ' Text
+'been' Text
+' ' Text
+'no' Text
+' ' Text
+'national' Text
+' ' Text
+'[[' Punctuation
+'conscription' Name.Tag
+']]' Punctuation
+' ' Text
+'since' Text
+' ' Text
+'1997' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'In' Name.Tag
+' ' Name.Tag
+'lang' Name.Tag
+'|' Punctuation
+'fr' Text
+'}}' Punctuation
+' ' Text
+'[' Punctuation
+'http://www.ladocumentationfrancaise.fr/dossiers/service-civil/fin-service-militaire-obligatoire.shtml' Name.Label
+' ' Text.Whitespace
+'La' Text
+' ' Text
+'fin' Text
+' ' Text
+'du' Text
+' ' Text
+'service' Text
+' ' Text
+'militaire' Text
+' ' Text
+'obligatoire' Text
+']' Punctuation
+' ' Text
+'{{' Punctuation
+'Webarchive' Name.Tag
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'web' Text
+'.' Text
+'archive' Text
+'.' Text
+'org' Text
+'/' Text
+'web' Text
+'/' Text
+'20100808230428' Text
+'/' Text
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'ladocumentationfrancaise' Text
+'.' Text
+'fr' Text
+'/' Text
+'dossiers' Text
+'/' Text
+'service' Text
+'-' Text
+'civil' Text
+'/' Text
+'fin' Text
+'-' Text
+'service' Text
+'-' Text
+'militaire' Text
+'-' Text
+'obligatoire' Text
+'.' Text
+'shtml' Text
+'|' Punctuation
+'date' Name.Label
+'=' Operator
+'8' Text
+' ' Text
+'August' Text
+' ' Text
+'2010' Text
+'}}' Punctuation
+'&nbsp;' Name.Entity
+'–' Text
+' ' Text
+'La' Text
+' ' Text
+'documentation' Text
+' ' Text
+'française' Text
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Multiple' Name.Tag
+' ' Name.Tag
+'image' Name.Tag
+'\n' Text
+
+'|' Punctuation
+' direction ' Name.Label
+'=' Operator
+' ' Text
+'vertical' Text
+'\n' Text
+
+'|' Punctuation
+' caption_align ' Name.Label
+'=' Operator
+' ' Text
+'center' Text
+'\n' Text
+
+'|' Punctuation
+' image1 ' Name.Label
+'=' Operator
+' ' Text
+'Rafale_' Text
+'-' Text
+'_RIAT_2009_' Text
+'(' Text
+'3751416421' Text
+')' Text
+'.' Text
+'jpg' Text
+'\n' Text
+
+'|' Punctuation
+' caption1 ' Name.Label
+'=' Operator
+' ' Text
+'[[' Punctuation
+'Dassault Rafale' Name.Tag
+']]' Punctuation
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+"Armée de l'Air et de l'Espace" Name.Tag
+']]' Punctuation
+'\n' Text
+
+'|' Punctuation
+' image2 ' Name.Label
+'=' Operator
+' ' Text
+'French' Text
+' ' Text
+'aircraft' Text
+' ' Text
+'carrier' Text
+' ' Text
+'Charles' Text
+' ' Text
+'de' Text
+' ' Text
+'Gaulle' Text
+' ' Text
+'(' Text
+'R91' Text
+')' Text
+' ' Text
+'underway' Text
+' ' Text
+'on' Text
+' ' Text
+'24' Text
+' ' Text
+'April' Text
+' ' Text
+'2019' Text
+' ' Text
+'(' Text
+'190424' Text
+'-' Text
+'M' Text
+'-' Text
+'BP588' Text
+'-' Text
+'1005' Text
+')' Text
+'.' Text
+'jpg' Text
+'\n' Text
+
+'|' Punctuation
+' caption2 ' Name.Label
+'=' Operator
+' ' Text
+"''" Generic.Emph
+'[[' Punctuation
+'French aircraft carrier Charles de Gaulle' Name.Tag
+'|' Punctuation
+'Charles' Text
+' ' Text
+'de' Text
+' ' Text
+'Gaulle' Text
+']]' Punctuation
+"''" Generic.Emph
+' ' Text
+'aircraft' Text
+' ' Text
+'carrier' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'French Navy' Name.Tag
+'|' Punctuation
+'Marine' Text
+' ' Text
+'nationale' Text
+']]' Punctuation
+'\n' Text
+
+'|' Punctuation
+' image3 ' Name.Label
+'=' Operator
+' ' Text
+'Bastille_Day_2014_Paris_' Text
+'-' Text
+'_Motorised_troops_063' Text
+'.' Text
+'jpg' Text
+'\n' Text
+
+'|' Punctuation
+' caption3 ' Name.Label
+'=' Operator
+' ' Text
+'[[' Punctuation
+'Leclerc tank' Name.Tag
+'|' Punctuation
+'AMX' Text
+' ' Text
+'Leclerc' Text
+']]' Punctuation
+' ' Text
+'tank' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'French Army' Name.Tag
+'|' Punctuation
+'Armée' Text
+' ' Text
+'de' Text
+' ' Text
+'terre' Text
+']]' Punctuation
+'\n' Text
+
+'}}' Punctuation
+'\n' Text
+
+'France' Text
+' ' Text
+'has' Text
+' ' Text
+'been' Text
+' ' Text
+'a' Text
+' ' Text
+'[[' Punctuation
+'List of states with nuclear weapons' Name.Tag
+'#' Punctuation
+'Five nuclear-weapon states under the NPT' Name.Label
+'|' Punctuation
+'recognised' Text
+' ' Text
+'nuclear' Text
+' ' Text
+'state' Text
+']]' Punctuation
+' ' Text
+'since' Text
+' ' Text
+'1960' Text
+'.' Text
+' ' Text
+'France' Text
+' ' Text
+'has' Text
+' ' Text
+'signed' Text
+' ' Text
+'and' Text
+' ' Text
+'ratified' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Comprehensive Nuclear-Test-Ban Treaty' Name.Tag
+']]' Punctuation
+' ' Text
+'(' Text
+'CTBT' Text
+')' Text
+'<' Punctuation
+'ref' Name.Tag
+' ' Text.Whitespace
+'name' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+'status' Literal.String.Double
+'"' Literal.String.Double
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'date' Name.Label
+'=' Operator
+'26' Text
+' ' Text
+'May' Text
+' ' Text
+'2010' Text
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Status' Text
+' ' Text
+'of' Text
+' ' Text
+'signature' Text
+' ' Text
+'and' Text
+' ' Text
+'ratification' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'ctbto' Text
+'.' Text
+'org' Text
+'/' Text
+'the' Text
+'-' Text
+'treaty' Text
+'/' Text
+'status' Text
+'-' Text
+'of' Text
+'-' Text
+'signature' Text
+'-' Text
+'and' Text
+'-' Text
+'ratification' Text
+'/' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'27' Text
+' ' Text
+'May' Text
+' ' Text
+'2010' Text
+' ' Text
+'|' Punctuation
+'publisher' Name.Label
+'=' Operator
+'CTBTO' Text
+' ' Text
+'Preparatory' Text
+' ' Text
+'Commission' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'and' Text
+' ' Text
+'acceded' Text
+' ' Text
+'to' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Nuclear Non-Proliferation Treaty' Name.Tag
+']]' Punctuation
+'.' Text
+' ' Text
+'The' Text
+' ' Text
+'French' Text
+' ' Text
+'nuclear' Text
+' ' Text
+'force' Text
+' ' Text
+'(' Text
+'formerly' Text
+' ' Text
+'known' Text
+' ' Text
+'as' Text
+' ' Text
+'"' Text
+"''" Generic.Emph
+'[[' Punctuation
+'Force de Frappe' Name.Tag
+']]' Punctuation
+"''" Generic.Emph
+'"' Text
+')' Text
+' ' Text
+'consists' Text
+' ' Text
+'of' Text
+' ' Text
+'four' Text
+' ' Text
+'[[' Punctuation
+'Triomphant class submarine' Name.Tag
+'|' Punctuation
+"''" Generic.Emph
+'Triomphant' Generic.Emph
+"''" Generic.Emph
+']]' Punctuation
+' ' Text
+'class' Text
+' ' Text
+'submarines' Text
+' ' Text
+'equipped' Text
+' ' Text
+'with' Text
+' ' Text
+'[[' Punctuation
+'submarine-launched ballistic missile' Name.Tag
+']]' Punctuation
+'s' Text
+'.' Text
+' ' Text
+'In' Text
+' ' Text
+'addition' Text
+' ' Text
+'to' Text
+' ' Text
+'the' Text
+' ' Text
+'submarine' Text
+' ' Text
+'fleet' Text
+',' Text
+' ' Text
+'it' Text
+' ' Text
+'is' Text
+' ' Text
+'estimated' Text
+' ' Text
+'that' Text
+' ' Text
+'France' Text
+' ' Text
+'has' Text
+' ' Text
+'about' Text
+' ' Text
+'60' Text
+' ' Text
+'[[' Punctuation
+'Air-Sol Moyenne Portée' Name.Tag
+'|' Punctuation
+"''" Generic.Emph
+'ASMP' Generic.Emph
+"''" Generic.Emph
+']]' Punctuation
+' ' Text
+'medium' Text
+'-' Text
+'range' Text
+' ' Text
+'[[' Punctuation
+'Air-to-surface missile' Name.Tag
+'|' Punctuation
+'air' Text
+'-' Text
+'to' Text
+'-' Text
+'ground' Text
+' ' Text
+'missiles' Text
+']]' Punctuation
+' ' Text
+'with' Text
+' ' Text
+'[[' Punctuation
+'Nuclear weapon' Name.Tag
+'|' Punctuation
+'nuclear' Text
+' ' Text
+'warheads' Text
+']]' Punctuation
+',' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'In' Name.Tag
+' ' Name.Tag
+'lang' Name.Tag
+'|' Punctuation
+'fr' Text
+'}}' Punctuation
+' ' Text
+'Centre' Text
+' ' Text
+'de' Text
+' ' Text
+'Documentation' Text
+' ' Text
+'et' Text
+' ' Text
+'de' Text
+' ' Text
+'Recherche' Text
+' ' Text
+'sur' Text
+' ' Text
+'la' Text
+' ' Text
+'Paix' Text
+' ' Text
+'et' Text
+' ' Text
+'les' Text
+' ' Text
+'Conflits' Text
+',' Text
+' ' Text
+'[' Punctuation
+'http://obsarm.org/obsnuc/puissances-mondiales/france-forces.html' Name.Label
+' ' Text.Whitespace
+"''" Generic.Emph
+'Etat' Generic.Emph
+' ' Generic.Emph
+'des' Generic.Emph
+' ' Generic.Emph
+'forces' Generic.Emph
+' ' Generic.Emph
+'nucléaires' Generic.Emph
+' ' Generic.Emph
+'françaises' Generic.Emph
+' ' Generic.Emph
+'au' Generic.Emph
+' ' Generic.Emph
+'15' Generic.Emph
+' ' Generic.Emph
+'août' Generic.Emph
+' ' Generic.Emph
+'2004' Generic.Emph
+"''" Generic.Emph
+']' Punctuation
+' ' Text
+'{{' Punctuation
+'Webarchive' Name.Tag
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'web' Text
+'.' Text
+'archive' Text
+'.' Text
+'org' Text
+'/' Text
+'web' Text
+'/' Text
+'20110725004911' Text
+'/' Text
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'obsarm' Text
+'.' Text
+'org' Text
+'/' Text
+'obsnuc' Text
+'/' Text
+'puissances' Text
+'-' Text
+'mondiales' Text
+'/' Text
+'france' Text
+'-' Text
+'forces' Text
+'.' Text
+'html' Text
+'|' Punctuation
+'date' Name.Label
+'=' Operator
+'25' Text
+' ' Text
+'July' Text
+' ' Text
+'2011' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'of' Text
+' ' Text
+'which' Text
+' ' Text
+'around' Text
+' ' Text
+'50' Text
+' ' Text
+'are' Text
+' ' Text
+'deployed' Text
+' ' Text
+'by' Text
+' ' Text
+'the' Text
+' ' Text
+'Air' Text
+' ' Text
+'and' Text
+' ' Text
+'Space' Text
+' ' Text
+'Force' Text
+' ' Text
+'using' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Dassault Mirage 2000N/2000D' Name.Tag
+'|' Punctuation
+'Mirage' Text
+' ' Text
+'2000N' Text
+']]' Punctuation
+' ' Text
+'long' Text
+'-' Text
+'range' Text
+' ' Text
+'nuclear' Text
+' ' Text
+'strike' Text
+' ' Text
+'aircraft' Text
+',' Text
+' ' Text
+'while' Text
+' ' Text
+'around' Text
+' ' Text
+'10' Text
+' ' Text
+'are' Text
+' ' Text
+'deployed' Text
+' ' Text
+'by' Text
+' ' Text
+'the' Text
+' ' Text
+'French' Text
+' ' Text
+'Navy' Text
+"'" Text
+'s' Text
+' ' Text
+'[[' Punctuation
+'Dassault-Breguet Super Étendard' Name.Tag
+'|' Punctuation
+'Super' Text
+' ' Text
+'Étendard' Text
+' ' Text
+'Modernisé' Text
+' ' Text
+'(' Text
+'SEM' Text
+')' Text
+']]' Punctuation
+' ' Text
+'attack' Text
+' ' Text
+'aircraft' Text
+',' Text
+' ' Text
+'which' Text
+' ' Text
+'operate' Text
+' ' Text
+'from' Text
+' ' Text
+'the' Text
+' ' Text
+'nuclear' Text
+'-' Text
+'powered' Text
+' ' Text
+'[[' Punctuation
+'aircraft carrier' Name.Tag
+']]' Punctuation
+' ' Text
+'[[' Punctuation
+'French aircraft carrier Charles de Gaulle (R91)' Name.Tag
+'|' Punctuation
+"''" Generic.Emph
+'Charles' Generic.Emph
+' ' Generic.Emph
+'de' Generic.Emph
+' ' Generic.Emph
+'Gaulle' Generic.Emph
+"''" Generic.Emph
+']]' Punctuation
+'.' Text
+' ' Text
+'The' Text
+' ' Text
+'new' Text
+' ' Text
+'[[' Punctuation
+'Dassault Rafale' Name.Tag
+'|' Punctuation
+'Rafale' Text
+' ' Text
+'F3' Text
+']]' Punctuation
+' ' Text
+'aircraft' Text
+' ' Text
+'will' Text
+' ' Text
+'gradually' Text
+' ' Text
+'replace' Text
+' ' Text
+'all' Text
+' ' Text
+'Mirage' Text
+' ' Text
+'2000N' Text
+' ' Text
+'and' Text
+' ' Text
+'SEM' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'nuclear' Text
+' ' Text
+'strike' Text
+' ' Text
+'role' Text
+' ' Text
+'with' Text
+' ' Text
+'the' Text
+' ' Text
+'improved' Text
+' ' Text
+"''" Generic.Emph
+'ASMP' Generic.Emph
+'-' Generic.Emph
+'A' Generic.Emph
+"''" Generic.Emph
+' ' Text
+'missile' Text
+' ' Text
+'with' Text
+' ' Text
+'a' Text
+' ' Text
+'nuclear' Text
+' ' Text
+'warhead' Text
+'.' Text
+'{{' Punctuation
+'Citation' Name.Tag
+' ' Name.Tag
+'needed' Name.Tag
+'|' Punctuation
+'date' Name.Label
+'=' Operator
+'September' Text
+' ' Text
+'2022' Text
+'}}' Punctuation
+'\n' Text
+
+'\n' Text
+
+'France' Text
+' ' Text
+'has' Text
+' ' Text
+'major' Text
+' ' Text
+'military' Text
+' ' Text
+'industries' Text
+' ' Text
+'with' Text
+' ' Text
+'one' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'largest' Text
+' ' Text
+'[[' Punctuation
+'Aerospace manufacturer' Name.Tag
+'|' Punctuation
+'aerospace' Text
+' ' Text
+'industries' Text
+']]' Punctuation
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'world' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'90' Text
+'.' Text
+'07' Text
+'.' Text
+'06' Text
+':' Text
+' ' Text
+'The' Text
+' ' Text
+'Aerospace' Text
+' ' Text
+'Industry' Text
+':' Text
+' ' Text
+'Its' Text
+' ' Text
+'History' Text
+' ' Text
+'and' Text
+' ' Text
+'How' Text
+' ' Text
+'it' Text
+' ' Text
+'Affects' Text
+' ' Text
+'the' Text
+' ' Text
+'U' Text
+'.' Text
+'S' Text
+'.' Text
+' ' Text
+'Economy' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'yale' Text
+'.' Text
+'edu' Text
+'/' Text
+'ynhti' Text
+'/' Text
+'curriculum' Text
+'/' Text
+'units' Text
+'/' Text
+'1990' Text
+'/' Text
+'7' Text
+'/' Text
+'90' Text
+'.' Text
+'07' Text
+'.' Text
+'06' Text
+'.' Text
+'x' Text
+'.' Text
+'html' Text
+' ' Text
+'|' Punctuation
+'url-status' Name.Label
+'=' Operator
+'dead' Text
+' ' Text
+'|' Punctuation
+'archive-url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'web' Text
+'.' Text
+'archive' Text
+'.' Text
+'org' Text
+'/' Text
+'web' Text
+'/' Text
+'20110920085434' Text
+'/' Text
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'yale' Text
+'.' Text
+'edu' Text
+'/' Text
+'ynhti' Text
+'/' Text
+'curriculum' Text
+'/' Text
+'units' Text
+'/' Text
+'1990' Text
+'/' Text
+'7' Text
+'/' Text
+'90' Text
+'.' Text
+'07' Text
+'.' Text
+'06' Text
+'.' Text
+'x' Text
+'.' Text
+'html' Text
+' ' Text
+'|' Punctuation
+'archive-date' Name.Label
+'=' Operator
+'20' Text
+' ' Text
+'September' Text
+' ' Text
+'2011' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'21' Text
+' ' Text
+'July' Text
+' ' Text
+'2011' Text
+' ' Text
+'|' Punctuation
+'publisher' Name.Label
+'=' Operator
+'Yale' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'Its' Text
+' ' Text
+'industries' Text
+' ' Text
+'have' Text
+' ' Text
+'produced' Text
+' ' Text
+'such' Text
+' ' Text
+'equipment' Text
+' ' Text
+'as' Text
+' ' Text
+'the' Text
+' ' Text
+'Rafale' Text
+' ' Text
+'fighter' Text
+',' Text
+' ' Text
+'the' Text
+' ' Text
+"''" Generic.Emph
+'Charles' Generic.Emph
+' ' Generic.Emph
+'de' Generic.Emph
+' ' Generic.Emph
+'Gaulle' Generic.Emph
+"''" Generic.Emph
+' ' Text
+'aircraft' Text
+' ' Text
+'carrier' Text
+',' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Exocet' Name.Tag
+']]' Punctuation
+' ' Text
+'missile' Text
+' ' Text
+'and' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'AMX-56 Leclerc' Name.Tag
+'|' Punctuation
+'Leclerc' Text
+']]' Punctuation
+' ' Text
+'tank' Text
+' ' Text
+'among' Text
+' ' Text
+'others' Text
+'.' Text
+' ' Text
+'France' Text
+' ' Text
+'is' Text
+' ' Text
+'actively' Text
+' ' Text
+'investing' Text
+' ' Text
+'in' Text
+' ' Text
+'European' Text
+' ' Text
+'joint' Text
+' ' Text
+'projects' Text
+' ' Text
+'such' Text
+' ' Text
+'as' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Eurocopter Tiger' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'[[' Punctuation
+'FREMM multipurpose frigate' Name.Tag
+'|' Punctuation
+'multipurpose' Text
+' ' Text
+'frigates' Text
+']]' Punctuation
+',' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Unmanned combat air vehicle' Name.Tag
+'|' Punctuation
+'UCAV' Text
+']]' Punctuation
+' ' Text
+'demonstrator' Text
+' ' Text
+'[[' Punctuation
+'Dassault nEUROn' Name.Tag
+'|' Punctuation
+'nEUROn' Text
+']]' Punctuation
+' ' Text
+'and' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Airbus A400M' Name.Tag
+']]' Punctuation
+'.' Text
+'{{' Punctuation
+'Citation' Name.Tag
+' ' Name.Tag
+'needed' Name.Tag
+'|' Punctuation
+'date' Name.Label
+'=' Operator
+'September' Text
+' ' Text
+'2022' Text
+'}}' Punctuation
+' ' Text
+'France' Text
+' ' Text
+'is' Text
+' ' Text
+'a' Text
+' ' Text
+'major' Text
+' ' Text
+'arms' Text
+' ' Text
+'seller' Text
+',' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'last' Name.Label
+'=' Operator
+'Thierry' Text
+' ' Text
+'Gadault' Text
+' ' Text
+'|' Punctuation
+'date' Name.Label
+'=' Operator
+'13' Text
+' ' Text
+'June' Text
+' ' Text
+'2002' Text
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'La' Text
+' ' Text
+'France' Text
+' ' Text
+'demeure' Text
+' ' Text
+'un' Text
+' ' Text
+'fournisseur' Text
+' ' Text
+'d' Text
+"'" Text
+'armes' Text
+' ' Text
+'de' Text
+' ' Text
+'premier' Text
+' ' Text
+'plan' Text
+' ' Text
+'|' Punctuation
+'trans-title' Name.Label
+'=' Operator
+'France' Text
+' ' Text
+'stays' Text
+' ' Text
+'one' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'biggest' Text
+' ' Text
+'arms' Text
+' ' Text
+'supplier' Text
+']' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'lexpansion' Text
+'.' Text
+'lexpress' Text
+'.' Text
+'fr' Text
+'/' Text
+'entreprise' Text
+'/' Text
+'la' Text
+'-' Text
+'france' Text
+'-' Text
+'demeure' Text
+'-' Text
+'un' Text
+'-' Text
+'fournisseur' Text
+'-' Text
+'d' Text
+'-' Text
+'armes' Text
+'-' Text
+'de' Text
+'-' Text
+'premier' Text
+'-' Text
+'plan_95084' Text
+'.' Text
+'html' Text
+' ' Text
+'|' Punctuation
+'archive-url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'web' Text
+'.' Text
+'archive' Text
+'.' Text
+'org' Text
+'/' Text
+'web' Text
+'/' Text
+'20120311161443' Text
+'/' Text
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'lexpansion' Text
+'.' Text
+'lexpress' Text
+'.' Text
+'fr' Text
+'/' Text
+'entreprise' Text
+'/' Text
+'la' Text
+'-' Text
+'france' Text
+'-' Text
+'demeure' Text
+'-' Text
+'un' Text
+'-' Text
+'fournisseur' Text
+'-' Text
+'d' Text
+'-' Text
+'armes' Text
+'-' Text
+'de' Text
+'-' Text
+'premier' Text
+'-' Text
+'plan_95084' Text
+'.' Text
+'html' Text
+' ' Text
+'|' Punctuation
+'archive-date' Name.Label
+'=' Operator
+'11' Text
+' ' Text
+'March' Text
+' ' Text
+'2012' Text
+' ' Text
+'|' Punctuation
+'website' Name.Label
+'=' Operator
+'L' Text
+"'" Text
+'express' Text
+' ' Text
+'|' Punctuation
+'language' Name.Label
+'=' Operator
+'fr' Text
+' ' Text
+'|' Punctuation
+'quote' Name.Label
+'=' Operator
+'En' Text
+' ' Text
+'2001' Text
+',' Text
+' ' Text
+'la' Text
+' ' Text
+'France' Text
+' ' Text
+'a' Text
+' ' Text
+'vendu' Text
+' ' Text
+'pour' Text
+' ' Text
+'1' Text
+',' Text
+'288' Text
+'&nbsp;' Name.Entity
+'milliard' Text
+' ' Text
+'de' Text
+' ' Text
+'dollars' Text
+' ' Text
+'d' Text
+"'" Text
+'équipements' Text
+' ' Text
+'militaires' Text
+',' Text
+' ' Text
+'ce' Text
+' ' Text
+'qui' Text
+' ' Text
+'la' Text
+' ' Text
+'met' Text
+' ' Text
+'au' Text
+' ' Text
+'troisième' Text
+' ' Text
+'rang' Text
+' ' Text
+'mondial' Text
+' ' Text
+'des' Text
+' ' Text
+'exportateurs' Text
+' ' Text
+'derrière' Text
+' ' Text
+'les' Text
+' ' Text
+'États' Text
+'-' Text
+'Unis' Text
+' ' Text
+'et' Text
+' ' Text
+'la' Text
+' ' Text
+'Russie' Text
+'.' Text
+' ' Text
+'[' Text
+'In' Text
+' ' Text
+'2001' Text
+',' Text
+' ' Text
+'France' Text
+' ' Text
+'sold' Text
+' ' Text
+'$' Text
+'1' Text
+',' Text
+'288' Text
+'&nbsp;' Name.Entity
+'billion' Text
+' ' Text
+'of' Text
+' ' Text
+'military' Text
+' ' Text
+'equipment' Text
+',' Text
+' ' Text
+'ranking' Text
+' ' Text
+'3rd' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'world' Text
+' ' Text
+'for' Text
+' ' Text
+'arms' Text
+' ' Text
+'exportations' Text
+' ' Text
+'behind' Text
+' ' Text
+'the' Text
+' ' Text
+'USA' Text
+' ' Text
+'and' Text
+' ' Text
+'Russia' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'date' Name.Label
+'=' Operator
+'8' Text
+' ' Text
+'February' Text
+' ' Text
+'2010' Text
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Les' Text
+' ' Text
+'ventes' Text
+' ' Text
+'d' Text
+"'" Text
+'armes' Text
+' ' Text
+'explosent' Text
+' ' Text
+'en' Text
+' ' Text
+'2009' Text
+' ' Text
+'|' Punctuation
+'trans-title' Name.Label
+'=' Operator
+'Sales' Text
+' ' Text
+'of' Text
+' ' Text
+'weapons' Text
+' ' Text
+'explode' Text
+' ' Text
+'in' Text
+' ' Text
+'2009' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'20minutes' Text
+'.' Text
+'fr' Text
+'/' Text
+'economie' Text
+'/' Text
+'551139' Text
+'-' Text
+'20100208' Text
+'-' Text
+'economie' Text
+'-' Text
+'les' Text
+'-' Text
+'ventes' Text
+'-' Text
+'d' Text
+'-' Text
+'armes' Text
+'-' Text
+'explosent' Text
+'-' Text
+'en' Text
+'-' Text
+'2009' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'6' Text
+' ' Text
+'January' Text
+' ' Text
+'2017' Text
+' ' Text
+'|' Punctuation
+'website' Name.Label
+'=' Operator
+'20' Text
+' ' Text
+'minutes' Text
+' ' Text
+'|' Punctuation
+'language' Name.Label
+'=' Operator
+'fr' Text
+' ' Text
+'|' Punctuation
+'quote' Name.Label
+'=' Operator
+'La' Text
+' ' Text
+'France' Text
+' ' Text
+'est' Text
+' ' Text
+'au' Text
+' ' Text
+'4ème' Text
+' ' Text
+'rang' Text
+' ' Text
+'mondial' Text
+' ' Text
+'des' Text
+' ' Text
+'exportateurs' Text
+' ' Text
+'d' Text
+"'" Text
+'armes' Text
+',' Text
+' ' Text
+'derrière' Text
+' ' Text
+'les' Text
+' ' Text
+'Etats' Text
+'-' Text
+'Unis' Text
+',' Text
+' ' Text
+'le' Text
+' ' Text
+'Royaume' Text
+'-' Text
+'Uni' Text
+' ' Text
+'et' Text
+' ' Text
+'la' Text
+' ' Text
+'Russie' Text
+',' Text
+' ' Text
+'et' Text
+' ' Text
+'devant' Text
+' ' Text
+'Israël' Text
+',' Text
+' ' Text
+'selon' Text
+' ' Text
+'un' Text
+' ' Text
+'rapport' Text
+' ' Text
+'du' Text
+' ' Text
+'ministère' Text
+' ' Text
+'de' Text
+' ' Text
+'la' Text
+' ' Text
+'Défense' Text
+' ' Text
+'publié' Text
+' ' Text
+'l' Text
+"'" Text
+'an' Text
+' ' Text
+'dernier' Text
+'.' Text
+' ' Text
+'[' Text
+'France' Text
+' ' Text
+'is' Text
+' ' Text
+'4th' Text
+' ' Text
+'biggest' Text
+' ' Text
+'arms' Text
+' ' Text
+'exporter' Text
+',' Text
+' ' Text
+'behind' Text
+' ' Text
+'the' Text
+' ' Text
+'United' Text
+' ' Text
+'States' Text
+',' Text
+' ' Text
+'the' Text
+' ' Text
+'United' Text
+' ' Text
+'Kingdom' Text
+' ' Text
+'and' Text
+' ' Text
+'Russia' Text
+',' Text
+' ' Text
+'and' Text
+' ' Text
+'ahead' Text
+' ' Text
+'of' Text
+' ' Text
+'Israel' Text
+',' Text
+' ' Text
+'according' Text
+' ' Text
+'to' Text
+' ' Text
+'a' Text
+' ' Text
+'report' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'Ministry' Text
+' ' Text
+'of' Text
+' ' Text
+'Defense' Text
+' ' Text
+'published' Text
+' ' Text
+'a' Text
+' ' Text
+'year' Text
+' ' Text
+'ago' Text
+'.' Text
+']' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'with' Text
+' ' Text
+'most' Text
+' ' Text
+'of' Text
+' ' Text
+'its' Text
+' ' Text
+'arsenal' Text
+"'" Text
+'s' Text
+' ' Text
+'designs' Text
+' ' Text
+'available' Text
+' ' Text
+'for' Text
+' ' Text
+'the' Text
+' ' Text
+'export' Text
+' ' Text
+'market' Text
+',' Text
+' ' Text
+'except' Text
+' ' Text
+'for' Text
+' ' Text
+'the' Text
+' ' Text
+'nuclear' Text
+'-' Text
+'powered' Text
+' ' Text
+'devices' Text
+'.' Text
+'\n' Text
+
+'\n' Text
+
+'One' Text
+' ' Text
+'French' Text
+' ' Text
+'intelligence' Text
+' ' Text
+'unit' Text
+',' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Directorate-General for External Security' Name.Tag
+']]' Punctuation
+' ' Text
+'(' Text
+"''" Generic.Emph
+'Direction' Generic.Emph
+' ' Generic.Emph
+'générale' Generic.Emph
+' ' Generic.Emph
+'de' Generic.Emph
+' ' Generic.Emph
+'la' Generic.Emph
+' ' Generic.Emph
+'sécurité' Generic.Emph
+' ' Generic.Emph
+'extérieure' Generic.Emph
+"''" Generic.Emph
+')' Text
+',' Text
+' ' Text
+'is' Text
+' ' Text
+'considered' Text
+' ' Text
+'to' Text
+' ' Text
+'be' Text
+' ' Text
+'a' Text
+' ' Text
+'component' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'Armed' Text
+' ' Text
+'Forces' Text
+' ' Text
+'under' Text
+' ' Text
+'the' Text
+' ' Text
+'authority' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'Ministry' Text
+' ' Text
+'of' Text
+' ' Text
+'Defense' Text
+'.' Text
+' ' Text
+'The' Text
+' ' Text
+'other' Text
+',' Text
+' ' Text
+'the' Text
+' ' Text
+'Central' Text
+' ' Text
+'Directorate' Text
+' ' Text
+'for' Text
+' ' Text
+'Interior' Text
+' ' Text
+'Intelligence' Text
+' ' Text
+'(' Text
+"''" Generic.Emph
+'Direction' Generic.Emph
+' ' Generic.Emph
+'centrale' Generic.Emph
+' ' Generic.Emph
+'du' Generic.Emph
+' ' Generic.Emph
+'renseignement' Generic.Emph
+' ' Generic.Emph
+'intérieur' Generic.Emph
+"''" Generic.Emph
+')' Text
+' ' Text
+'is' Text
+' ' Text
+'a' Text
+' ' Text
+'division' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'National' Text
+' ' Text
+'Police' Text
+' ' Text
+'Force' Text
+' ' Text
+'(' Text
+"''" Generic.Emph
+'Direction' Generic.Emph
+' ' Generic.Emph
+'générale' Generic.Emph
+' ' Generic.Emph
+'de' Generic.Emph
+' ' Generic.Emph
+'la' Generic.Emph
+' ' Generic.Emph
+'Police' Generic.Emph
+' ' Generic.Emph
+'Nationale' Generic.Emph
+"''" Generic.Emph
+')' Text
+'.' Text
+'{{' Punctuation
+'Citation' Name.Tag
+' ' Name.Tag
+'needed' Name.Tag
+'|' Punctuation
+'date' Name.Label
+'=' Operator
+'September' Text
+' ' Text
+'2022' Text
+'}}' Punctuation
+' ' Text
+'France' Text
+"'" Text
+'s' Text
+' ' Text
+'[[' Punctuation
+'Cybersecurity' Name.Tag
+'|' Punctuation
+'cybersecurity' Text
+' ' Text
+'capabilities' Text
+']]' Punctuation
+' ' Text
+'are' Text
+' ' Text
+'regularly' Text
+' ' Text
+'ranked' Text
+' ' Text
+'as' Text
+' ' Text
+'some' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'most' Text
+' ' Text
+'robust' Text
+' ' Text
+'of' Text
+' ' Text
+'any' Text
+' ' Text
+'nation' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'world' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'Bruce' Text
+' ' Text
+'Sussman' Text
+',' Text
+' ' Text
+'[' Punctuation
+'https://www.secureworldexpo.com/industry-news/countries-dedicated-to-cybersecurity' Name.Label
+' ' Text.Whitespace
+'The' Text
+' ' Text
+'List' Text
+':' Text
+' ' Text
+'Best' Text
+' ' Text
+'and' Text
+' ' Text
+'Worst' Text
+' ' Text
+'Countries' Text
+' ' Text
+'for' Text
+' ' Text
+'Cybersecurity' Text
+']' Punctuation
+',' Text
+' ' Text
+'13' Text
+' ' Text
+'November' Text
+' ' Text
+'2019' Text
+',' Text
+' ' Text
+'Securworld' Text
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'[' Punctuation
+'https://www.itu.int/dms_pub/itu-d/opb/str/D-STR-GCI.01-2018-PDF-E.pdf' Name.Label
+' ' Text.Whitespace
+'Global' Text
+' ' Text
+'Cybersecurity' Text
+' ' Text
+'Index' Text
+' ' Text
+'(' Text
+'GCI' Text
+')' Text
+' ' Text
+'2018' Text
+']' Punctuation
+',' Text
+' ' Text
+'[[' Punctuation
+'International Telecommunication Union' Name.Tag
+']]' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'\n' Text
+
+'\n' Text
+
+'===' Generic.Subheading
+'Government finance' Generic.Subheading
+'===' Generic.Subheading
+'\n' Text.Whitespace
+
+'{{' Punctuation
+'See' Name.Tag
+' ' Name.Tag
+'also' Name.Tag
+'|' Punctuation
+'Taxation' Text
+' ' Text
+'in' Text
+' ' Text
+'France' Text
+'}}' Punctuation
+'\n' Text
+
+'The' Text
+' ' Text
+'Government' Text
+' ' Text
+'of' Text
+' ' Text
+'France' Text
+' ' Text
+'has' Text
+' ' Text
+'run' Text
+' ' Text
+'a' Text
+' ' Text
+'[[' Punctuation
+'budget deficit' Name.Tag
+']]' Punctuation
+' ' Text
+'each' Text
+' ' Text
+'year' Text
+' ' Text
+'since' Text
+' ' Text
+'the' Text
+' ' Text
+'early' Text
+' ' Text
+'1970s' Text
+'.' Text
+' ' Text
+'{{' Punctuation
+'As' Name.Tag
+' ' Name.Tag
+'of' Name.Tag
+'|' Punctuation
+'2016' Text
+'}}' Punctuation
+',' Text
+' ' Text
+'French' Text
+' ' Text
+'government' Text
+' ' Text
+'debt' Text
+' ' Text
+'levels' Text
+' ' Text
+'reached' Text
+' ' Text
+'2' Text
+'.' Text
+'2' Text
+'&nbsp;' Name.Entity
+'trillion' Text
+' ' Text
+'euros' Text
+',' Text
+' ' Text
+'the' Text
+' ' Text
+'equivalent' Text
+' ' Text
+'of' Text
+' ' Text
+'96' Text
+'.' Text
+'4' Text
+'%' Text
+' ' Text
+'of' Text
+' ' Text
+'French' Text
+' ' Text
+'GDP' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Country' Text
+' ' Text
+'Comparison' Text
+' ' Text
+':' Text
+':' Text
+' ' Text
+'Public' Text
+' ' Text
+'Debt' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'cia' Text
+'.' Text
+'gov' Text
+'/' Text
+'library' Text
+'/' Text
+'publications' Text
+'/' Text
+'the' Text
+'-' Text
+'world' Text
+'-' Text
+'factbook' Text
+'/' Text
+'rankorder' Text
+'/' Text
+'2186rank' Text
+'.' Text
+'html' Text
+' ' Text
+'|' Punctuation
+'url-status' Name.Label
+'=' Operator
+'dead' Text
+' ' Text
+'|' Punctuation
+'archive-url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'web' Text
+'.' Text
+'archive' Text
+'.' Text
+'org' Text
+'/' Text
+'web' Text
+'/' Text
+'20070613005546' Text
+'/' Text
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'cia' Text
+'.' Text
+'gov' Text
+'/' Text
+'library' Text
+'/' Text
+'publications' Text
+'/' Text
+'the' Text
+'-' Text
+'world' Text
+'-' Text
+'factbook' Text
+'/' Text
+'rankorder' Text
+'/' Text
+'2186rank' Text
+'.' Text
+'html' Text
+' ' Text
+'|' Punctuation
+'archive-date' Name.Label
+'=' Operator
+'13' Text
+' ' Text
+'June' Text
+' ' Text
+'2007' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'10' Text
+' ' Text
+'January' Text
+' ' Text
+'2018' Text
+' ' Text
+'|' Punctuation
+'website' Name.Label
+'=' Operator
+'The' Text
+' ' Text
+'World' Text
+' ' Text
+'Factbook' Text
+' ' Text
+'|' Punctuation
+'publisher' Name.Label
+'=' Operator
+'CIA' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'In' Text
+' ' Text
+'late' Text
+' ' Text
+'2012' Text
+',' Text
+' ' Text
+'[[' Punctuation
+'credit rating agencies' Name.Tag
+']]' Punctuation
+' ' Text
+'warned' Text
+' ' Text
+'that' Text
+' ' Text
+'growing' Text
+' ' Text
+'French' Text
+' ' Text
+'Government' Text
+' ' Text
+'debt' Text
+' ' Text
+'levels' Text
+' ' Text
+'risked' Text
+' ' Text
+'[[' Punctuation
+'List of countries by credit rating' Name.Tag
+'|' Punctuation
+'France' Text
+"'" Text
+'s' Text
+' ' Text
+'AAA' Text
+' ' Text
+'credit' Text
+' ' Text
+'rating' Text
+']]' Punctuation
+',' Text
+' ' Text
+'raising' Text
+' ' Text
+'the' Text
+' ' Text
+'possibility' Text
+' ' Text
+'of' Text
+' ' Text
+'a' Text
+' ' Text
+'future' Text
+' ' Text
+'downgrade' Text
+' ' Text
+'and' Text
+' ' Text
+'subsequent' Text
+' ' Text
+'higher' Text
+' ' Text
+'borrowing' Text
+' ' Text
+'costs' Text
+' ' Text
+'for' Text
+' ' Text
+'the' Text
+' ' Text
+'French' Text
+' ' Text
+'authorities' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'news' Name.Tag
+' ' Text
+'|' Punctuation
+'last' Name.Label
+'=' Operator
+'John' Text
+' ' Text
+'|' Punctuation
+'first' Name.Label
+'=' Operator
+'Mark' Text
+' ' Text
+'|' Punctuation
+'date' Name.Label
+'=' Operator
+'26' Text
+' ' Text
+'October' Text
+' ' Text
+'2012' Text
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Analysis' Text
+':' Text
+' ' Text
+'Low' Text
+' ' Text
+'French' Text
+' ' Text
+'borrowing' Text
+' ' Text
+'costs' Text
+' ' Text
+'risk' Text
+' ' Text
+'negative' Text
+' ' Text
+'reappraisal' Text
+' ' Text
+'|' Punctuation
+'work' Name.Label
+'=' Operator
+'Reuters' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'reuters' Text
+'.' Text
+'com' Text
+'/' Text
+'article' Text
+'/' Text
+'us' Text
+'-' Text
+'france' Text
+'-' Text
+'debt' Text
+'-' Text
+'idUSBRE89P0SO20121026' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'27' Text
+' ' Text
+'November' Text
+' ' Text
+'2012' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'\n' Text
+
+'However' Text
+',' Text
+' ' Text
+'in' Text
+' ' Text
+'July' Text
+' ' Text
+'2020' Text
+',' Text
+' ' Text
+'during' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'COVID-19 pandemic' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'the' Text
+' ' Text
+'French' Text
+' ' Text
+'government' Text
+' ' Text
+'issued' Text
+' ' Text
+'negative' Text
+'-' Text
+'interest' Text
+' ' Text
+'rate' Text
+' ' Text
+'10' Text
+'-' Text
+'year' Text
+' ' Text
+'bonds' Text
+' ' Text
+'for' Text
+' ' Text
+'the' Text
+' ' Text
+'first' Text
+' ' Text
+'time' Text
+' ' Text
+'in' Text
+' ' Text
+'its' Text
+' ' Text
+'history' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'[' Punctuation
+'https://www.france24.com/en/20190704-france-issues-first-10-year-bond-negative-interest-rate' Name.Label
+' ' Text.Whitespace
+'France' Text
+' ' Text
+'issues' Text
+' ' Text
+'first' Text
+' ' Text
+'10' Text
+'-' Text
+'year' Text
+' ' Text
+'bond' Text
+' ' Text
+'at' Text
+' ' Text
+'negative' Text
+' ' Text
+'interest' Text
+' ' Text
+'rate' Text
+']' Punctuation
+',' Text
+' ' Text
+'[[' Punctuation
+'France 24' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'4' Text
+' ' Text
+'July' Text
+' ' Text
+'2020' Text
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'In' Text
+' ' Text
+'2020' Text
+',' Text
+' ' Text
+'France' Text
+' ' Text
+'possessed' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Gold reserve' Name.Tag
+'#' Punctuation
+'Officially reported holdings' Name.Label
+'|' Punctuation
+'fourth' Text
+'-' Text
+'largest' Text
+' ' Text
+'gold' Text
+' ' Text
+'reserves' Text
+']]' Punctuation
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'world' Text
+'.' Text
+'{{' Punctuation
+'citation' Name.Tag
+' ' Name.Tag
+'needed' Name.Tag
+'|' Punctuation
+'date' Name.Label
+'=' Operator
+'January' Text
+' ' Text
+'2023' Text
+'}}' Punctuation
+'\n' Text
+
+'\n' Text
+
+'==' Generic.Subheading
+'Economy' Generic.Subheading
+'==' Generic.Subheading
+'\n' Text.Whitespace
+
+'{{' Punctuation
+'Main' Name.Tag
+'|' Punctuation
+'Economy' Text
+' ' Text
+'of' Text
+' ' Text
+'France' Text
+'}}' Punctuation
+'\n' Text
+
+'\n' Text
+
+'===' Generic.Subheading
+' Overview ' Generic.Subheading
+'===' Generic.Subheading
+'\n' Text.Whitespace
+
+'[[' Punctuation
+'File' Name.Namespace
+':' Punctuation
+'La Défense @ Ballon de Paris @ Parc André Citroën @ Paris (28204532024) (cropped).jpg' Name.Tag
+'|' Punctuation
+'alt' Name.Attribute
+'=' Operator
+'La' Text
+' ' Text
+'Défense' Text
+',' Text
+' ' Text
+'seen' Text
+' ' Text
+'from' Text
+' ' Text
+'the' Text
+' ' Text
+'Eiffel' Text
+' ' Text
+'Tower' Text
+'|' Punctuation
+'thumb' Text
+'|' Punctuation
+'[[' Punctuation
+'La Défense' Name.Tag
+']]' Punctuation
+' ' Text
+'was' Text
+' ' Text
+'in' Text
+' ' Text
+'2017' Text
+' ' Text
+'ranked' Text
+' ' Text
+'by' Text
+' ' Text
+'[[' Punctuation
+'Ernst & Young' Name.Tag
+']]' Punctuation
+' ' Text
+'as' Text
+' ' Text
+'the' Text
+' ' Text
+'leading' Text
+' ' Text
+'[[' Punctuation
+'central business district' Name.Tag
+']]' Punctuation
+' ' Text
+'in' Text
+' ' Text
+'continental' Text
+' ' Text
+'Europe' Text
+',' Text
+' ' Text
+'and' Text
+' ' Text
+'the' Text
+' ' Text
+'fourth' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'world' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'[' Punctuation
+'https://www.ey.com/Publication/vwLUAssets/ey-the-attractiveness-of-world-class-business-districts/$FILE/ey-the-attractiveness-of-world-class-business-districts.pdf' Name.Label
+' ' Text.Whitespace
+'The' Text
+' ' Text
+'attractiveness' Text
+' ' Text
+'of' Text
+' ' Text
+'world' Text
+'-' Text
+'class' Text
+' ' Text
+'business' Text
+' ' Text
+'districts' Text
+':' Text
+' ' Text
+'Paris' Text
+' ' Text
+'La' Text
+' ' Text
+'Défense' Text
+' ' Text
+'vs' Text
+'.' Text
+' ' Text
+'its' Text
+' ' Text
+'global' Text
+' ' Text
+'competitors' Text
+']' Punctuation
+',' Text
+' ' Text
+'[[' Punctuation
+'Ernst & Young' Name.Tag
+'|' Punctuation
+'EY' Text
+']]' Punctuation
+',' Text
+' ' Text
+'November' Text
+' ' Text
+'2017' Text
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+']]' Punctuation
+'\n' Text
+
+'[[' Punctuation
+'File' Name.Namespace
+':' Punctuation
+'French economy 2016 - expenditures.png' Name.Tag
+'|' Punctuation
+'thumb' Text
+'|' Punctuation
+'Composition' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'French' Text
+' ' Text
+'economy' Text
+' ' Text
+'(' Text
+'GDP' Text
+')' Text
+' ' Text
+'in' Text
+' ' Text
+'2016' Text
+' ' Text
+'by' Text
+' ' Text
+'expenditure' Text
+' ' Text
+'type' Text
+']]' Punctuation
+'\n' Text
+
+'\n' Text
+
+'France' Text
+' ' Text
+'has' Text
+' ' Text
+'a' Text
+' ' Text
+'developed' Text
+',' Text
+' ' Text
+'high' Text
+'-' Text
+'income' Text
+' ' Text
+'[[' Punctuation
+'mixed economy' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'characterised' Text
+' ' Text
+'by' Text
+' ' Text
+'[[' Punctuation
+'Dirigisme' Name.Tag
+'|' Punctuation
+'sizeable' Text
+' ' Text
+'government' Text
+' ' Text
+'involvement' Text
+']]' Punctuation
+',' Text
+' ' Text
+'[[' Punctuation
+'economic diversity' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'a' Text
+' ' Text
+'skilled' Text
+' ' Text
+'labour' Text
+' ' Text
+'force' Text
+',' Text
+' ' Text
+'and' Text
+' ' Text
+'high' Text
+' ' Text
+'innovation' Text
+'.' Text
+' ' Text
+'For' Text
+' ' Text
+'roughly' Text
+' ' Text
+'two' Text
+' ' Text
+'centuries' Text
+',' Text
+' ' Text
+'the' Text
+' ' Text
+'French' Text
+' ' Text
+'economy' Text
+' ' Text
+'has' Text
+' ' Text
+'[[' Punctuation
+'Angus Maddison statistics of the ten largest economies by GDP (PPP)' Name.Tag
+'|' Punctuation
+'consistently' Text
+' ' Text
+'ranked' Text
+']]' Punctuation
+' ' Text
+'among' Text
+' ' Text
+'the' Text
+' ' Text
+'ten' Text
+' ' Text
+'largest' Text
+' ' Text
+'globally' Text
+';' Text
+' ' Text
+'it' Text
+' ' Text
+'is' Text
+' ' Text
+'currently' Text
+' ' Text
+'the' Text
+' ' Text
+'world' Text
+"'" Text
+'s' Text
+' ' Text
+'[[' Punctuation
+'List of countries by GDP (PPP)' Name.Tag
+'|' Punctuation
+'ninth' Text
+'-' Text
+'largest' Text
+']]' Punctuation
+' ' Text
+'by' Text
+' ' Text
+'[[' Punctuation
+'purchasing power parity' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'List of countries by GDP (nominal)' Name.Tag
+'|' Punctuation
+'seventh' Text
+'-' Text
+'largest' Text
+']]' Punctuation
+' ' Text
+'by' Text
+' ' Text
+'[[' Punctuation
+'nominal GDP' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'and' Text
+' ' Text
+'the' Text
+' ' Text
+'second' Text
+'-' Text
+'largest' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'European' Text
+' ' Text
+'Union' Text
+' ' Text
+'by' Text
+' ' Text
+'both' Text
+' ' Text
+'metrics' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+' ' Text.Whitespace
+'name' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+'data' Literal.String.Double
+'.' Literal.String.Double
+'worldbank' Literal.String.Double
+'.' Literal.String.Double
+'org' Literal.String.Double
+'"' Literal.String.Double
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'GDP' Text
+',' Text
+' ' Text
+'PPP' Text
+' ' Text
+'(' Text
+'current' Text
+' ' Text
+'international' Text
+' ' Text
+'$' Text
+')' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'data' Text
+'.' Text
+'worldbank' Text
+'.' Text
+'org' Text
+'/' Text
+'indicator' Text
+'/' Text
+'NY' Text
+'.' Text
+'GDP' Text
+'.' Text
+'MKTP' Text
+'.' Text
+'PP' Text
+'.' Text
+'CD' Text
+'?' Text
+'order' Text
+'=' Text
+'wbapi_data_value_2014' Text
+'+' Text
+'wbapi_data_value' Text
+'+' Text
+'wbapi_data_value' Text
+'-' Text
+'last' Text
+'&' Text
+'sort' Text
+'=' Text
+'desc' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'1' Text
+' ' Text
+'November' Text
+' ' Text
+'2015' Text
+' ' Text
+'|' Punctuation
+'publisher' Name.Label
+'=' Operator
+'The' Text
+' ' Text
+'World' Text
+' ' Text
+'Bank' Text
+' ' Text
+'Group' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'France' Text
+' ' Text
+'is' Text
+' ' Text
+'considered' Text
+' ' Text
+'an' Text
+' ' Text
+'[[' Punctuation
+'economic power' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'with' Text
+' ' Text
+'membership' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Group of Seven' Name.Tag
+']]' Punctuation
+' ' Text
+'leading' Text
+' ' Text
+'[[' Punctuation
+'Developed country' Name.Tag
+'|' Punctuation
+'industrialised' Text
+' ' Text
+'countries' Text
+']]' Punctuation
+',' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'OECD' Name.Tag
+'|' Punctuation
+'Organisation' Text
+' ' Text
+'for' Text
+' ' Text
+'Economic' Text
+' ' Text
+'Co' Text
+'-' Text
+'operation' Text
+' ' Text
+'and' Text
+' ' Text
+'Development' Text
+']]' Punctuation
+' ' Text
+'(' Text
+'OECD' Text
+')' Text
+',' Text
+' ' Text
+'and' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'G20' Name.Tag
+'|' Punctuation
+'Group' Text
+' ' Text
+'of' Text
+' ' Text
+'Twenty' Text
+']]' Punctuation
+' ' Text
+'largest' Text
+' ' Text
+'economies' Text
+'.' Text
+'\n' Text
+
+'\n' Text
+
+'France' Text
+"'" Text
+'s' Text
+' ' Text
+'economy' Text
+' ' Text
+'is' Text
+' ' Text
+'highly' Text
+' ' Text
+'diversified' Text
+';' Text
+' ' Text
+'[[' Punctuation
+'Service sector' Name.Tag
+'|' Punctuation
+'services' Text
+']]' Punctuation
+' ' Text
+'represent' Text
+' ' Text
+'two' Text
+'-' Text
+'thirds' Text
+' ' Text
+'of' Text
+' ' Text
+'both' Text
+' ' Text
+'the' Text
+' ' Text
+'workforce' Text
+' ' Text
+'and' Text
+' ' Text
+'GDP' Text
+',' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'[' Punctuation
+'https://www.eulerhermes.com/en_global/economic-research/country-reports/France.html' Name.Label
+' ' Text.Whitespace
+'Country' Text
+' ' Text
+'profile' Text
+':' Text
+' ' Text
+'France' Text
+']' Punctuation
+',' Text
+' ' Text
+'[[' Punctuation
+'Euler Hermes' Name.Tag
+']]' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'while' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'industrial sector' Name.Tag
+']]' Punctuation
+' ' Text
+'accounts' Text
+' ' Text
+'for' Text
+' ' Text
+'a' Text
+' ' Text
+'fifth' Text
+' ' Text
+'of' Text
+' ' Text
+'GDP' Text
+' ' Text
+'and' Text
+' ' Text
+'a' Text
+' ' Text
+'similar' Text
+' ' Text
+'proportion' Text
+' ' Text
+'of' Text
+' ' Text
+'employment' Text
+'.' Text
+' ' Text
+'France' Text
+' ' Text
+'is' Text
+' ' Text
+'the' Text
+' ' Text
+'third' Text
+'-' Text
+'biggest' Text
+' ' Text
+'manufacturing' Text
+' ' Text
+'country' Text
+' ' Text
+'in' Text
+' ' Text
+'Europe' Text
+',' Text
+' ' Text
+'behind' Text
+' ' Text
+'Germany' Text
+' ' Text
+'and' Text
+' ' Text
+'Italy' Text
+',' Text
+' ' Text
+'and' Text
+' ' Text
+'ranks' Text
+' ' Text
+'eighth' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'world' Text
+' ' Text
+'by' Text
+' ' Text
+'share' Text
+' ' Text
+'of' Text
+' ' Text
+'global' Text
+' ' Text
+'manufacturing' Text
+' ' Text
+'output' Text
+',' Text
+' ' Text
+'at' Text
+' ' Text
+'1' Text
+'.' Text
+'9' Text
+' ' Text
+'percent' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'These' Text
+' ' Text
+'are' Text
+' ' Text
+'the' Text
+' ' Text
+'top' Text
+' ' Text
+'10' Text
+' ' Text
+'manufacturing' Text
+' ' Text
+'countries' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'world' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'weforum' Text
+'.' Text
+'org' Text
+'/' Text
+'agenda' Text
+'/' Text
+'2020' Text
+'/' Text
+'02' Text
+'/' Text
+'countries' Text
+'-' Text
+'manufacturing' Text
+'-' Text
+'trade' Text
+'-' Text
+'exports' Text
+'-' Text
+'economics' Text
+'/' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'10' Text
+' ' Text
+'February' Text
+' ' Text
+'2022' Text
+' ' Text
+'|' Punctuation
+'website' Name.Label
+'=' Operator
+'World' Text
+' ' Text
+'Economic' Text
+' ' Text
+'Forum' Text
+' ' Text
+'|' Punctuation
+'language' Name.Label
+'=' Operator
+'en' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'Less' Text
+' ' Text
+'than' Text
+' ' Text
+'2' Text
+' ' Text
+'percent' Text
+' ' Text
+'of' Text
+' ' Text
+'GDP' Text
+' ' Text
+'is' Text
+' ' Text
+'generated' Text
+' ' Text
+'by' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'primary sector' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'namely' Text
+' ' Text
+'agriculture' Text
+';' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'[' Punctuation
+'https://www.cia.gov/the-world-factbook/countries/france' Name.Label
+' ' Text.Whitespace
+'Country' Text
+' ' Text
+'profil' Text
+':' Text
+' ' Text
+'France' Text
+']' Punctuation
+',' Text
+' ' Text
+'[[' Punctuation
+'CIA World factbook' Name.Tag
+']]' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'however' Text
+',' Text
+' ' Text
+'France' Text
+"'" Text
+'s' Text
+' ' Text
+'agricultural' Text
+' ' Text
+'sector' Text
+' ' Text
+'is' Text
+' ' Text
+'among' Text
+' ' Text
+'the' Text
+' ' Text
+'largest' Text
+' ' Text
+'in' Text
+' ' Text
+'value' Text
+' ' Text
+'and' Text
+' ' Text
+'leads' Text
+' ' Text
+'the' Text
+' ' Text
+'EU' Text
+' ' Text
+'in' Text
+' ' Text
+'terms' Text
+' ' Text
+'of' Text
+' ' Text
+'overall' Text
+' ' Text
+'production' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'[' Punctuation
+'https://import-export.societegenerale.fr/en/country/france/market-sectors' Name.Label
+' ' Text.Whitespace
+'France' Text
+':' Text
+' ' Text
+'the' Text
+' ' Text
+'market' Text
+']' Punctuation
+' ' Text
+'{{' Punctuation
+'Webarchive' Name.Tag
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'web' Text
+'.' Text
+'archive' Text
+'.' Text
+'org' Text
+'/' Text
+'web' Text
+'/' Text
+'20210219011017' Text
+'/' Text
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'import' Text
+'-' Text
+'export' Text
+'.' Text
+'societegenerale' Text
+'.' Text
+'fr' Text
+'/' Text
+'en' Text
+'/' Text
+'country' Text
+'/' Text
+'france' Text
+'/' Text
+'market' Text
+'-' Text
+'sectors' Text
+' ' Text
+'|' Punctuation
+'date' Name.Label
+'=' Operator
+'19' Text
+' ' Text
+'February' Text
+' ' Text
+'2021' Text
+' ' Text
+'}}' Punctuation
+',' Text
+' ' Text
+'[[' Punctuation
+'Société Générale' Name.Tag
+']]' Punctuation
+' ' Text
+'(' Text
+'latest' Text
+' ' Text
+'Update' Text
+':' Text
+' ' Text
+'September' Text
+' ' Text
+'2020' Text
+')' Text
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'\n' Text
+
+'\n' Text
+
+'In' Text
+' ' Text
+'2018' Text
+',' Text
+' ' Text
+'France' Text
+' ' Text
+'was' Text
+' ' Text
+'the' Text
+' ' Text
+'fifth' Text
+'-' Text
+'largest' Text
+' ' Text
+'trading' Text
+' ' Text
+'nation' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'world' Text
+' ' Text
+'and' Text
+' ' Text
+'the' Text
+' ' Text
+'second' Text
+'-' Text
+'largest' Text
+' ' Text
+'in' Text
+' ' Text
+'Europe' Text
+',' Text
+' ' Text
+'with' Text
+' ' Text
+'the' Text
+' ' Text
+'value' Text
+' ' Text
+'of' Text
+' ' Text
+'exports' Text
+' ' Text
+'representing' Text
+' ' Text
+'over' Text
+' ' Text
+'a' Text
+' ' Text
+'fifth' Text
+' ' Text
+'of' Text
+' ' Text
+'GDP' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+' ' Text.Whitespace
+'name' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+'wto' Literal.String.Double
+'"' Literal.String.Double
+'>' Punctuation
+'[' Punctuation
+'https://www.wto.org/english/res_e/statis_e/wts2019_e/wts2019_e.pdf' Name.Label
+' ' Text.Whitespace
+'World' Text
+' ' Text
+'Trade' Text
+' ' Text
+'Statistical' Text
+' ' Text
+'Review' Text
+' ' Text
+'2019' Text
+']' Punctuation
+',' Text
+' ' Text
+'[[' Punctuation
+'World Trade Organization' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'p' Text
+'.' Text
+' ' Text
+'11' Text
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'Its' Text
+' ' Text
+'membership' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Eurozone' Name.Tag
+']]' Punctuation
+' ' Text
+'and' Text
+' ' Text
+'the' Text
+' ' Text
+'broader' Text
+' ' Text
+'[[' Punctuation
+'European Single Market' Name.Tag
+']]' Punctuation
+' ' Text
+'facilitates' Text
+' ' Text
+'access' Text
+' ' Text
+'to' Text
+' ' Text
+'capital' Text
+',' Text
+' ' Text
+'goods' Text
+',' Text
+' ' Text
+'services' Text
+',' Text
+' ' Text
+'and' Text
+' ' Text
+'skilled' Text
+' ' Text
+'labour' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+' ' Text.Whitespace
+'name' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+'euroc' Literal.String.Double
+'"' Literal.String.Double
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'news' Name.Tag
+' ' Text
+'|' Punctuation
+'last' Name.Label
+'=' Operator
+'Andrews' Text
+' ' Text
+'|' Punctuation
+'first' Name.Label
+'=' Operator
+'Edmund' Text
+' ' Text
+'L' Text
+'.' Text
+' ' Text
+'|' Punctuation
+'date' Name.Label
+'=' Operator
+'1' Text
+' ' Text
+'January' Text
+' ' Text
+'2002' Text
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Germans' Text
+' ' Text
+'Say' Text
+' ' Text
+'Goodbye' Text
+' ' Text
+'to' Text
+' ' Text
+'the' Text
+' ' Text
+'Mark' Text
+',' Text
+' ' Text
+'a' Text
+' ' Text
+'Symbol' Text
+' ' Text
+'of' Text
+' ' Text
+'Strength' Text
+' ' Text
+'and' Text
+' ' Text
+'Unity' Text
+' ' Text
+'|' Punctuation
+'work' Name.Label
+'=' Operator
+'The' Text
+' ' Text
+'New' Text
+' ' Text
+'York' Text
+' ' Text
+'Times' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'nytimes' Text
+'.' Text
+'com' Text
+'/' Text
+'2002' Text
+'/' Text
+'01' Text
+'/' Text
+'01' Text
+'/' Text
+'world' Text
+'/' Text
+'germans' Text
+'-' Text
+'say' Text
+'-' Text
+'goodbye' Text
+'-' Text
+'to' Text
+'-' Text
+'the' Text
+'-' Text
+'mark' Text
+'-' Text
+'a' Text
+'-' Text
+'symbol' Text
+'-' Text
+'of' Text
+'-' Text
+'strength' Text
+'-' Text
+'and' Text
+'-' Text
+'unity' Text
+'.' Text
+'html' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'18' Text
+' ' Text
+'March' Text
+' ' Text
+'2011' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'Despite' Text
+' ' Text
+'[[' Punctuation
+'Protectionism' Name.Tag
+'|' Punctuation
+'protectionist' Text
+']]' Punctuation
+' ' Text
+'policies' Text
+' ' Text
+'over' Text
+' ' Text
+'certain' Text
+' ' Text
+'industries' Text
+',' Text
+' ' Text
+'particularly' Text
+' ' Text
+'in' Text
+' ' Text
+'agriculture' Text
+',' Text
+' ' Text
+'France' Text
+' ' Text
+'has' Text
+' ' Text
+'generally' Text
+' ' Text
+'played' Text
+' ' Text
+'a' Text
+' ' Text
+'leading' Text
+' ' Text
+'role' Text
+' ' Text
+'in' Text
+' ' Text
+'fostering' Text
+' ' Text
+'free' Text
+' ' Text
+'trade' Text
+' ' Text
+'and' Text
+' ' Text
+'commercial' Text
+' ' Text
+'integration' Text
+' ' Text
+'in' Text
+' ' Text
+'Europe' Text
+' ' Text
+'to' Text
+' ' Text
+'enhance' Text
+' ' Text
+'its' Text
+' ' Text
+'economy' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'France' Text
+' ' Text
+'-' Text
+' ' Text
+'Finance' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'britannica' Text
+'.' Text
+'com' Text
+'/' Text
+'place' Text
+'/' Text
+'France' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'28' Text
+' ' Text
+'August' Text
+' ' Text
+'2021' Text
+' ' Text
+'|' Punctuation
+'website' Name.Label
+'=' Operator
+'Encyclopedia' Text
+' ' Text
+'Britannica' Text
+' ' Text
+'|' Punctuation
+'language' Name.Label
+'=' Operator
+'en' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'news' Name.Tag
+' ' Text
+'|' Punctuation
+'last' Name.Label
+'=' Operator
+'Taylor' Text
+' ' Text
+'Martin' Text
+' ' Text
+'|' Punctuation
+'first' Name.Label
+'=' Operator
+'Susan' Text
+' ' Text
+'|' Punctuation
+'date' Name.Label
+'=' Operator
+'28' Text
+' ' Text
+'December' Text
+' ' Text
+'1998' Text
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'On' Text
+' ' Text
+'Jan' Text
+'.' Text
+'&nbsp;' Name.Entity
+'1' Text
+',' Text
+' ' Text
+'out' Text
+' ' Text
+'of' Text
+' ' Text
+'many' Text
+' ' Text
+'arises' Text
+' ' Text
+'one' Text
+' ' Text
+'Euro' Text
+' ' Text
+'|' Punctuation
+'page' Name.Label
+'=' Operator
+'National' Text
+',' Text
+' ' Text
+'1' Text
+'.' Text
+'A' Text
+' ' Text
+'|' Punctuation
+'work' Name.Label
+'=' Operator
+'[[' Punctuation
+'St. Petersburg Times' Name.Tag
+']]' Punctuation
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'In' Text
+' ' Text
+'2019' Text
+',' Text
+' ' Text
+'it' Text
+' ' Text
+'ranked' Text
+' ' Text
+'first' Text
+' ' Text
+'in' Text
+' ' Text
+'Europe' Text
+' ' Text
+'and' Text
+' ' Text
+'13th' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'world' Text
+' ' Text
+'in' Text
+' ' Text
+'[[' Punctuation
+'Foreign Direct Investment' Name.Tag
+'|' Punctuation
+'foreign' Text
+' ' Text
+'direct' Text
+' ' Text
+'investment' Text
+']]' Punctuation
+',' Text
+' ' Text
+'with' Text
+' ' Text
+'European' Text
+' ' Text
+'countries' Text
+' ' Text
+'and' Text
+' ' Text
+'the' Text
+' ' Text
+'United' Text
+' ' Text
+'States' Text
+' ' Text
+'being' Text
+' ' Text
+'leading' Text
+' ' Text
+'sources' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+' ' Text.Whitespace
+'name' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+'FDI' Literal.String.Double
+'"' Literal.String.Double
+'>' Punctuation
+'[' Punctuation
+'https://www.ey.com/en_gl/attractiveness/20/how-can-europe-reset-the-investment-agenda-now-to-rebuild-its-future' Name.Label
+' ' Text.Whitespace
+'How' Text
+' ' Text
+'can' Text
+' ' Text
+'Europe' Text
+' ' Text
+'reset' Text
+' ' Text
+'the' Text
+' ' Text
+'investment' Text
+' ' Text
+'agenda' Text
+' ' Text
+'now' Text
+' ' Text
+'to' Text
+' ' Text
+'rebuild' Text
+' ' Text
+'its' Text
+' ' Text
+'future' Text
+'?' Text
+']' Punctuation
+',' Text
+' ' Text
+'[[' Punctuation
+'Ernst&Young' Name.Tag
+'|' Punctuation
+'EY' Text
+']]' Punctuation
+',' Text
+' ' Text
+'28' Text
+' ' Text
+'May' Text
+' ' Text
+'2020' Text
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'According' Text
+' ' Text
+'to' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Bank of France' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'the' Text
+' ' Text
+'leading' Text
+' ' Text
+'recipients' Text
+' ' Text
+'of' Text
+' ' Text
+'FDI' Text
+' ' Text
+'were' Text
+' ' Text
+'manufacturing' Text
+',' Text
+' ' Text
+'real' Text
+' ' Text
+'estate' Text
+',' Text
+' ' Text
+'finance' Text
+' ' Text
+'and' Text
+' ' Text
+'insurance' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+' ' Text.Whitespace
+'name' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+'lloydsbanktrade' Literal.String.Double
+'.' Literal.String.Double
+'com' Literal.String.Double
+'"' Literal.String.Double
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Foreign' Text
+' ' Text
+'direct' Text
+' ' Text
+'investment' Text
+' ' Text
+'(' Text
+'FDI' Text
+')' Text
+' ' Text
+'in' Text
+' ' Text
+'France' Text
+' ' Text
+'-' Text
+' ' Text
+'Investing' Text
+' ' Text
+'-' Text
+' ' Text
+'International' Text
+' ' Text
+'Trade' Text
+' ' Text
+'Portal' Text
+' ' Text
+'International' Text
+' ' Text
+'Trade' Text
+' ' Text
+'Portal' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'lloydsbanktrade' Text
+'.' Text
+'com' Text
+'/' Text
+'en' Text
+'/' Text
+'market' Text
+'-' Text
+'potential' Text
+'/' Text
+'france' Text
+'/' Text
+'investment' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'28' Text
+' ' Text
+'August' Text
+' ' Text
+'2021' Text
+' ' Text
+'|' Punctuation
+'website' Name.Label
+'=' Operator
+'lloydsbanktrade' Text
+'.' Text
+'com' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'The' Text
+' ' Text
+'[[' Punctuation
+'Île-de-France' Name.Tag
+'|' Punctuation
+'Paris' Text
+' ' Text
+'region' Text
+']]' Punctuation
+' ' Text
+'has' Text
+' ' Text
+'the' Text
+' ' Text
+'highest' Text
+' ' Text
+'concentration' Text
+' ' Text
+'of' Text
+' ' Text
+'multinational' Text
+' ' Text
+'firms' Text
+' ' Text
+'in' Text
+' ' Text
+'Europe' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+' ' Text.Whitespace
+'name' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+'lloydsbanktrade' Literal.String.Double
+'.' Literal.String.Double
+'com' Literal.String.Double
+'"' Literal.String.Double
+' ' Text.Whitespace
+'/>' Punctuation
+'\n' Text
+
+'\n' Text
+
+'Under' Text
+' ' Text
+'the' Text
+' ' Text
+'doctrine' Text
+' ' Text
+'of' Text
+' ' Text
+'[[' Punctuation
+'Dirigiste' Name.Tag
+'|' Punctuation
+"''" Generic.Emph
+'Dirigisme' Generic.Emph
+"''" Generic.Emph
+']]' Punctuation
+',' Text
+' ' Text
+'the' Text
+' ' Text
+'government' Text
+' ' Text
+'historically' Text
+' ' Text
+'played' Text
+' ' Text
+'a' Text
+' ' Text
+'major' Text
+' ' Text
+'role' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'economy' Text
+';' Text
+' ' Text
+'policies' Text
+' ' Text
+'such' Text
+' ' Text
+'as' Text
+' ' Text
+'[[' Punctuation
+'indicative planning' Name.Tag
+']]' Punctuation
+' ' Text
+'and' Text
+' ' Text
+'[[' Punctuation
+'Nationalization' Name.Tag
+'|' Punctuation
+'nationalisation' Text
+']]' Punctuation
+' ' Text
+'are' Text
+' ' Text
+'credited' Text
+' ' Text
+'for' Text
+' ' Text
+'contributing' Text
+' ' Text
+'to' Text
+' ' Text
+'three' Text
+' ' Text
+'decades' Text
+' ' Text
+'of' Text
+' ' Text
+'unprecedented' Text
+' ' Text
+'postwar' Text
+' ' Text
+'economic' Text
+' ' Text
+'growth' Text
+' ' Text
+'known' Text
+' ' Text
+'as' Text
+' ' Text
+"''" Generic.Emph
+'[[' Punctuation
+'Trente Glorieuses' Name.Tag
+']]' Punctuation
+"''" Generic.Emph
+'.' Text
+' ' Text
+'At' Text
+' ' Text
+'its' Text
+' ' Text
+'peak' Text
+' ' Text
+'in' Text
+' ' Text
+'1982' Text
+',' Text
+' ' Text
+'the' Text
+' ' Text
+'public' Text
+' ' Text
+'sector' Text
+' ' Text
+'accounted' Text
+' ' Text
+'for' Text
+' ' Text
+'one' Text
+'-' Text
+'fifth' Text
+' ' Text
+'of' Text
+' ' Text
+'industrial' Text
+' ' Text
+'employment' Text
+' ' Text
+'and' Text
+' ' Text
+'over' Text
+' ' Text
+'four' Text
+'-' Text
+'fifths' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'credit' Text
+' ' Text
+'market' Text
+'.' Text
+' ' Text
+'Beginning' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'late' Text
+' ' Text
+'20th' Text
+' ' Text
+'century' Text
+',' Text
+' ' Text
+'France' Text
+' ' Text
+'loosened' Text
+' ' Text
+'regulations' Text
+' ' Text
+'and' Text
+' ' Text
+'state' Text
+' ' Text
+'involvement' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'economy' Text
+',' Text
+' ' Text
+'with' Text
+' ' Text
+'most' Text
+' ' Text
+'leading' Text
+' ' Text
+'companies' Text
+' ' Text
+'now' Text
+' ' Text
+'being' Text
+' ' Text
+'privately' Text
+' ' Text
+'owned' Text
+';' Text
+' ' Text
+'state' Text
+' ' Text
+'ownership' Text
+' ' Text
+'now' Text
+' ' Text
+'dominates' Text
+' ' Text
+'only' Text
+' ' Text
+'transportation' Text
+',' Text
+' ' Text
+'defence' Text
+' ' Text
+'and' Text
+' ' Text
+'broadcasting' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'France' Text
+' ' Text
+'-' Text
+' ' Text
+'Economy' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'britannica' Text
+'.' Text
+'com' Text
+'/' Text
+'place' Text
+'/' Text
+'France' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'28' Text
+' ' Text
+'August' Text
+' ' Text
+'2021' Text
+' ' Text
+'|' Punctuation
+'website' Name.Label
+'=' Operator
+'Encyclopedia' Text
+' ' Text
+'Britannica' Text
+' ' Text
+'|' Punctuation
+'language' Name.Label
+'=' Operator
+'en' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'Policies' Text
+' ' Text
+'aimed' Text
+' ' Text
+'at' Text
+' ' Text
+'promoting' Text
+' ' Text
+'economic' Text
+' ' Text
+'dynamism' Text
+' ' Text
+'and' Text
+' ' Text
+'privatisation' Text
+' ' Text
+'have' Text
+' ' Text
+'improved' Text
+' ' Text
+'France' Text
+"'" Text
+'s' Text
+' ' Text
+'economic' Text
+' ' Text
+'standing' Text
+' ' Text
+'globally' Text
+':' Text
+' ' Text
+'it' Text
+' ' Text
+'is' Text
+' ' Text
+'among' Text
+' ' Text
+'the' Text
+' ' Text
+'world' Text
+"'" Text
+'s' Text
+' ' Text
+'10' Text
+' ' Text
+'most' Text
+' ' Text
+'[[' Punctuation
+'Innovation' Name.Tag
+'|' Punctuation
+'innovative' Text
+']]' Punctuation
+' ' Text
+'countries' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'2020' Text
+' ' Text
+'[[' Punctuation
+'Bloomberg Innovation Index' Name.Tag
+']]' Punctuation
+',' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'[' Punctuation
+'https://www.businessinsider.com/these-are-the-10-most-innovative-countries-bloomberg-says-2020-1?IR=T' Name.Label
+' ' Text.Whitespace
+'These' Text
+' ' Text
+'are' Text
+' ' Text
+'the' Text
+' ' Text
+'world' Text
+"'" Text
+'s' Text
+' ' Text
+'most' Text
+' ' Text
+'innovative' Text
+' ' Text
+'countries' Text
+']' Punctuation
+',' Text
+' ' Text
+'[[' Punctuation
+'Business Insider' Name.Tag
+']]' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'and' Text
+' ' Text
+'the' Text
+' ' Text
+'15th' Text
+' ' Text
+'most' Text
+' ' Text
+'competitive' Text
+',' Text
+' ' Text
+'according' Text
+' ' Text
+'to' Text
+' ' Text
+'the' Text
+' ' Text
+'2019' Text
+' ' Text
+'[[' Punctuation
+'Global Competitiveness Report' Name.Tag
+'#' Punctuation
+'2019 rankings' Name.Label
+'|' Punctuation
+'Global' Text
+' ' Text
+'Competitiveness' Text
+' ' Text
+'Report' Text
+']]' Punctuation
+' ' Text
+'(' Text
+'up' Text
+' ' Text
+'two' Text
+' ' Text
+'places' Text
+' ' Text
+'from' Text
+' ' Text
+'2018' Text
+')' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'The' Text
+' ' Text
+'Global' Text
+' ' Text
+'Competitiveness' Text
+' ' Text
+'Report' Text
+' ' Text
+'2019' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www3' Text
+'.' Text
+'weforum' Text
+'.' Text
+'org' Text
+'/' Text
+'docs' Text
+'/' Text
+'WEF_TheGlobalCompetitivenessReport2019' Text
+'.' Text
+'pdf' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'\n' Text
+
+'\n' Text
+
+'According' Text
+' ' Text
+'to' Text
+' ' Text
+'the' Text
+' ' Text
+'IMF' Text
+',' Text
+' ' Text
+'France' Text
+' ' Text
+'ranked' Text
+' ' Text
+'[[' Punctuation
+'List of countries by GDP (nominal) per capita' Name.Tag
+'|' Punctuation
+'30th' Text
+' ' Text
+'in' Text
+' ' Text
+'GDP' Text
+' ' Text
+'per' Text
+' ' Text
+'capita' Text
+']]' Punctuation
+',' Text
+' ' Text
+'with' Text
+' ' Text
+'roughly' Text
+' ' Text
+'$' Text
+'45' Text
+',' Text
+'000' Text
+' ' Text
+'per' Text
+' ' Text
+'inhabitant' Text
+'.' Text
+' ' Text
+'It' Text
+' ' Text
+'placed' Text
+' ' Text
+'23rd' Text
+' ' Text
+'on' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Human Development Index' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'indicating' Text
+' ' Text
+'very' Text
+' ' Text
+'high' Text
+' ' Text
+'human' Text
+' ' Text
+'development' Text
+'.' Text
+' ' Text
+'[[' Punctuation
+'Public corruption' Name.Tag
+']]' Punctuation
+' ' Text
+'is' Text
+' ' Text
+'among' Text
+' ' Text
+'the' Text
+' ' Text
+'lowest' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'world' Text
+',' Text
+' ' Text
+'with' Text
+' ' Text
+'France' Text
+' ' Text
+'consistently' Text
+' ' Text
+'ranking' Text
+' ' Text
+'among' Text
+' ' Text
+'the' Text
+' ' Text
+'30' Text
+' ' Text
+'least' Text
+' ' Text
+'corrupt' Text
+' ' Text
+'countries' Text
+' ' Text
+'since' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Corruption Perceptions Index' Name.Tag
+']]' Punctuation
+' ' Text
+'began' Text
+' ' Text
+'in' Text
+' ' Text
+'2012' Text
+';' Text
+' ' Text
+'it' Text
+' ' Text
+'placed' Text
+' ' Text
+'22nd' Text
+' ' Text
+'in' Text
+' ' Text
+'2021' Text
+',' Text
+' ' Text
+'up' Text
+' ' Text
+'one' Text
+' ' Text
+'place' Text
+' ' Text
+'from' Text
+' ' Text
+'the' Text
+' ' Text
+'previous' Text
+' ' Text
+'year' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+' ' Text.Whitespace
+'name' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+'HDIFR' Literal.String.Double
+'"' Literal.String.Double
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'date' Name.Label
+'=' Operator
+'January' Text
+' ' Text
+'2018' Text
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Human' Text
+' ' Text
+'Development' Text
+' ' Text
+'Index' Text
+' ' Text
+'2018' Text
+' ' Text
+'Statistical' Text
+' ' Text
+'Update' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'hdr' Text
+'.' Text
+'undp' Text
+'.' Text
+'org' Text
+'/' Text
+'en' Text
+'/' Text
+'2018' Text
+'-' Text
+'update' Text
+' ' Text
+'|' Punctuation
+'url-status' Name.Label
+'=' Operator
+'dead' Text
+' ' Text
+'|' Punctuation
+'archive-url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'wayback' Text
+'.' Text
+'archive' Text
+'-' Text
+'it' Text
+'.' Text
+'org' Text
+'/' Text
+'all' Text
+'/' Text
+'20180918035109' Text
+'/' Text
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'hdr' Text
+'.' Text
+'undp' Text
+'.' Text
+'org' Text
+'/' Text
+'en' Text
+'/' Text
+'2018' Text
+'-' Text
+'update' Text
+' ' Text
+'|' Punctuation
+'archive-date' Name.Label
+'=' Operator
+'18' Text
+' ' Text
+'September' Text
+' ' Text
+'2018' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'10' Text
+' ' Text
+'July' Text
+' ' Text
+'2019' Text
+' ' Text
+'|' Punctuation
+'website' Name.Label
+'=' Operator
+'hdr' Text
+'.' Text
+'undp' Text
+'.' Text
+'org' Text
+' ' Text
+'|' Punctuation
+'publisher' Name.Label
+'=' Operator
+'[[' Punctuation
+'United Nations Development Programme' Name.Tag
+']]' Punctuation
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Corruption' Text
+' ' Text
+'Perceptions' Text
+' ' Text
+'Index' Text
+' ' Text
+'2018' Text
+' ' Text
+'Executive' Text
+' ' Text
+'summary' Text
+' ' Text
+'p' Text
+'.' Text
+' ' Text
+'2' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'transparency' Text
+'.' Text
+'org' Text
+'/' Text
+'files' Text
+'/' Text
+'content' Text
+'/' Text
+'pages' Text
+'/' Text
+'CPI_2018_Executive_Summary_EN' Text
+'.' Text
+'pdf' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'10' Text
+' ' Text
+'July' Text
+' ' Text
+'2019' Text
+' ' Text
+'|' Punctuation
+'website' Name.Label
+'=' Operator
+'transparency' Text
+'.' Text
+'org' Text
+' ' Text
+'|' Punctuation
+'publisher' Name.Label
+'=' Operator
+'[[' Punctuation
+'Transparency International' Name.Tag
+']]' Punctuation
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'France' Text
+' ' Text
+'is' Text
+' ' Text
+'Europe' Text
+"'" Text
+'s' Text
+' ' Text
+'second' Text
+'-' Text
+'largest' Text
+' ' Text
+'spender' Text
+' ' Text
+'in' Text
+' ' Text
+'[[' Punctuation
+'research and development' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'at' Text
+' ' Text
+'over' Text
+' ' Text
+'2' Text
+' ' Text
+'percent' Text
+' ' Text
+'of' Text
+' ' Text
+'GDP' Text
+';' Text
+' ' Text
+'globally' Text
+',' Text
+' ' Text
+'it' Text
+' ' Text
+'ranks' Text
+' ' Text
+'12th' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'[' Punctuation
+'http://uis.unesco.org/apps/visualisations/research-and-development-spending' Name.Label
+' ' Text.Whitespace
+'How' Text
+' ' Text
+'does' Text
+' ' Text
+'your' Text
+' ' Text
+'country' Text
+' ' Text
+'invest' Text
+' ' Text
+'in' Text
+' ' Text
+'R' Text
+'&' Text
+'D' Text
+' ' Text
+'?' Text
+']' Punctuation
+',' Text
+' ' Text
+'[[' Punctuation
+'UNESCO Institute for Statistics' Name.Tag
+']]' Punctuation
+' ' Text
+'(' Text
+'retrieved' Text
+' ' Text
+'on' Text
+' ' Text
+'27' Text
+' ' Text
+'September' Text
+' ' Text
+'2020' Text
+')' Text
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'\n' Text
+
+'\n' Text
+
+'Financial' Text
+' ' Text
+'services' Text
+',' Text
+' ' Text
+'banking' Text
+',' Text
+' ' Text
+'and' Text
+' ' Text
+'insurance' Text
+' ' Text
+'are' Text
+' ' Text
+'important' Text
+' ' Text
+'part' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'economy' Text
+'.' Text
+' ' Text
+'[[' Punctuation
+'AXA' Name.Tag
+']]' Punctuation
+' ' Text
+'is' Text
+' ' Text
+'the' Text
+' ' Text
+'world' Text
+"'" Text
+'s' Text
+' ' Text
+'second' Text
+'-' Text
+'largest' Text
+' ' Text
+'insurance' Text
+' ' Text
+'company' Text
+' ' Text
+'by' Text
+' ' Text
+'total' Text
+' ' Text
+'nonbanking' Text
+' ' Text
+'assets' Text
+' ' Text
+'in' Text
+' ' Text
+'2020' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'World' Text
+"'" Text
+'s' Text
+' ' Text
+'Largest' Text
+' ' Text
+'Insurers' Text
+' ' Text
+'—' Text
+' ' Text
+'2022' Text
+' ' Text
+'Edition' Text
+':' Text
+' ' Text
+'China' Text
+' ' Text
+'Insurers' Text
+',' Text
+' ' Text
+'US' Text
+' ' Text
+'Health' Text
+' ' Text
+'Writers' Text
+' ' Text
+'Show' Text
+' ' Text
+'Gains' Text
+' ' Text
+'in' Text
+' ' Text
+'AM' Text
+' ' Text
+'Best' Text
+"'" Text
+'s' Text
+' ' Text
+'Ranking' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'news' Text
+'.' Text
+'ambest' Text
+'.' Text
+'com' Text
+'/' Text
+'articlecontent' Text
+'.' Text
+'aspx' Text
+'?' Text
+'refnum' Text
+'=' Text
+'316701' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'10' Text
+' ' Text
+'February' Text
+' ' Text
+'2022' Text
+' ' Text
+'|' Punctuation
+'website' Name.Label
+'=' Operator
+'news' Text
+'.' Text
+'ambest' Text
+'.' Text
+'com' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'[' Punctuation
+'http://www.ambest.com/review/displaychart.aspx?Record_Code=274407' Name.Label
+' ' Text.Whitespace
+'World' Text
+"'" Text
+'s' Text
+' ' Text
+'largest' Text
+' ' Text
+'insurers' Text
+' ' Text
+'–' Text
+' ' Text
+'Total' Text
+' ' Text
+'non' Text
+' ' Text
+'banking' Text
+' ' Text
+'assets' Text
+',' Text
+' ' Text
+'2019' Text
+']' Punctuation
+',' Text
+' ' Text
+'[[' Punctuation
+'AM Best' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'2019' Text
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'As' Text
+' ' Text
+'of' Text
+' ' Text
+'2011' Text
+',' Text
+' ' Text
+'the' Text
+' ' Text
+'three' Text
+' ' Text
+'largest' Text
+' ' Text
+'[[' Punctuation
+'cooperative banking' Name.Tag
+'|' Punctuation
+'financial' Text
+' ' Text
+'institutions' Text
+' ' Text
+'cooperatively' Text
+' ' Text
+'owned' Text
+' ' Text
+'by' Text
+' ' Text
+'their' Text
+' ' Text
+'customers' Text
+']]' Punctuation
+' ' Text
+'were' Text
+' ' Text
+'French' Text
+':' Text
+' ' Text
+'[[' Punctuation
+'Crédit Agricole' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'[[' Punctuation
+"Groupe Caisse d'Épargne" Name.Tag
+'|' Punctuation
+'Groupe' Text
+' ' Text
+'Caisse' Text
+' ' Text
+'D' Text
+"'" Text
+'Epargne' Text
+']]' Punctuation
+',' Text
+' ' Text
+'and' Text
+' ' Text
+'[[' Punctuation
+"Groupe Caisse d'Épargne" Name.Tag
+'|' Punctuation
+'Groupe' Text
+' ' Text
+'Caisse' Text
+' ' Text
+'D' Text
+"'" Text
+'Epargne' Text
+']]' Punctuation
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'last' Name.Label
+'=' Operator
+'Gould' Text
+' ' Text
+'|' Punctuation
+'first' Name.Label
+'=' Operator
+'Charles' Text
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Global300' Text
+' ' Text
+'Report' Text
+' ' Text
+'2010' Text
+',' Text
+' ' Text
+'International' Text
+' ' Text
+'Co' Text
+'-' Text
+'operative' Text
+' ' Text
+'Alliance' Text
+'.' Text
+' ' Text
+'The' Text
+' ' Text
+'world' Text
+"'" Text
+'s' Text
+' ' Text
+'major' Text
+' ' Text
+'co' Text
+'-' Text
+'operatives' Text
+' ' Text
+'and' Text
+' ' Text
+'mutual' Text
+' ' Text
+'businesses' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'ica' Text
+'.' Text
+'coop' Text
+'/' Text
+'sites' Text
+'/' Text
+'default' Text
+'/' Text
+'files' Text
+'/' Text
+'basic' Text
+'-' Text
+'page' Text
+'-' Text
+'attachments' Text
+'/' Text
+'global300' Text
+'-' Text
+'report' Text
+'-' Text
+'2011' Text
+'-' Text
+'1757377405' Text
+'.' Text
+'pdf' Text
+' ' Text
+'|' Punctuation
+'url-status' Name.Label
+'=' Operator
+'dead' Text
+' ' Text
+'|' Punctuation
+'archive-url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'web' Text
+'.' Text
+'archive' Text
+'.' Text
+'org' Text
+'/' Text
+'web' Text
+'/' Text
+'20210813153010' Text
+'/' Text
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'ica' Text
+'.' Text
+'coop' Text
+'/' Text
+'sites' Text
+'/' Text
+'default' Text
+'/' Text
+'files' Text
+'/' Text
+'basic' Text
+'-' Text
+'page' Text
+'-' Text
+'attachments' Text
+'/' Text
+'global300' Text
+'-' Text
+'report' Text
+'-' Text
+'2011' Text
+'-' Text
+'1757377405' Text
+'.' Text
+'pdf' Text
+' ' Text
+'|' Punctuation
+'archive-date' Name.Label
+'=' Operator
+'13' Text
+' ' Text
+'August' Text
+' ' Text
+'2021' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'29' Text
+' ' Text
+'November' Text
+' ' Text
+'2018' Text
+' ' Text
+'|' Punctuation
+'website' Name.Label
+'=' Operator
+'ica' Text
+'.' Text
+'coop' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'According' Text
+' ' Text
+'to' Text
+' ' Text
+'a' Text
+' ' Text
+'2020' Text
+' ' Text
+'report' Text
+' ' Text
+'by' Text
+' ' Text
+'[[' Punctuation
+'S&P Global Market Intelligence' Name.Tag
+'|' Punctuation
+'S' Text
+'&' Text
+'P' Text
+' ' Text
+'Global' Text
+' ' Text
+'Market' Text
+' ' Text
+'Intelligenc' Text
+']]' Punctuation
+',' Text
+' ' Text
+'France' Text
+"'" Text
+'s' Text
+' ' Text
+'leading' Text
+' ' Text
+'banks' Text
+',' Text
+' ' Text
+'[[' Punctuation
+'BNP Paribas' Name.Tag
+']]' Punctuation
+' ' Text
+'and' Text
+' ' Text
+'[[' Punctuation
+'Crédit Agricole' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'are' Text
+' ' Text
+'among' Text
+' ' Text
+'the' Text
+' ' Text
+'world' Text
+"'" Text
+'s' Text
+' ' Text
+'10' Text
+' ' Text
+'largest' Text
+' ' Text
+'bank' Text
+' ' Text
+'by' Text
+' ' Text
+'assets' Text
+',' Text
+' ' Text
+'with' Text
+' ' Text
+'[[' Punctuation
+'Société Générale' Name.Tag
+']]' Punctuation
+' ' Text
+'and' Text
+' ' Text
+'[[' Punctuation
+'Groupe BPCE' Name.Tag
+']]' Punctuation
+' ' Text
+'ranking' Text
+' ' Text
+'17th' Text
+' ' Text
+'and' Text
+' ' Text
+'19th' Text
+' ' Text
+'globally' Text
+',' Text
+' ' Text
+'respectively' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+' ' Text.Whitespace
+'name' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+'SP' Literal.String.Double
+'"' Literal.String.Double
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'last' Name.Label
+'=' Operator
+'Ali' Text
+' ' Text
+'|' Punctuation
+'first' Name.Label
+'=' Operator
+'Zarmina' Text
+' ' Text
+'|' Punctuation
+'date' Name.Label
+'=' Operator
+'7' Text
+' ' Text
+'April' Text
+' ' Text
+'2020' Text
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'The' Text
+' ' Text
+'world' Text
+"'" Text
+'s' Text
+' ' Text
+'100' Text
+' ' Text
+'largest' Text
+' ' Text
+'banks' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'spglobal' Text
+'.' Text
+'com' Text
+'/' Text
+'marketintelligence' Text
+'/' Text
+'en' Text
+'/' Text
+'news' Text
+'-' Text
+'insights' Text
+'/' Text
+'latest' Text
+'-' Text
+'news' Text
+'-' Text
+'headlines' Text
+'/' Text
+'the' Text
+'-' Text
+'world' Text
+'-' Text
+'s' Text
+'-' Text
+'100' Text
+'-' Text
+'largest' Text
+'-' Text
+'banks' Text
+'-' Text
+'2020' Text
+'-' Text
+'57854079' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'23' Text
+' ' Text
+'June' Text
+' ' Text
+'2020' Text
+' ' Text
+'|' Punctuation
+'publisher' Name.Label
+'=' Operator
+'Standard' Text
+' ' Text
+'&' Text
+' ' Text
+'Poor' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'\n' Text
+
+'\n' Text
+
+'The' Text
+' ' Text
+'Paris' Text
+' ' Text
+'stock' Text
+' ' Text
+'exchange' Text
+' ' Text
+'(' Text
+'{{' Punctuation
+'Lang' Name.Tag
+'-' Name.Tag
+'fr' Name.Tag
+'|' Punctuation
+'links' Name.Label
+'=' Operator
+'no' Text
+'|' Punctuation
+'La' Text
+' ' Text
+'Bourse' Text
+' ' Text
+'de' Text
+' ' Text
+'Paris' Text
+'}}' Punctuation
+')' Text
+' ' Text
+'is' Text
+' ' Text
+'one' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'oldest' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'world' Text
+',' Text
+' ' Text
+'created' Text
+' ' Text
+'by' Text
+' ' Text
+'[[' Punctuation
+'Louis XV' Name.Tag
+']]' Punctuation
+' ' Text
+'in' Text
+' ' Text
+'1724' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'news' Name.Tag
+' ' Text
+'|' Punctuation
+'last' Name.Label
+'=' Operator
+'Audrey' Text
+' ' Text
+'Vautherot' Text
+' ' Text
+'|' Punctuation
+'date' Name.Label
+'=' Operator
+'19' Text
+' ' Text
+'November' Text
+' ' Text
+'2007' Text
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'La' Text
+' ' Text
+'Bourse' Text
+' ' Text
+'de' Text
+' ' Text
+'Paris' Text
+' ' Text
+':' Text
+' ' Text
+'une' Text
+' ' Text
+'institution' Text
+' ' Text
+'depuis' Text
+' ' Text
+'1724' Text
+' ' Text
+'|' Punctuation
+'trans-title' Name.Label
+'=' Operator
+'The' Text
+' ' Text
+'Paris' Text
+' ' Text
+'Stock' Text
+' ' Text
+'Exchange' Text
+':' Text
+' ' Text
+'an' Text
+' ' Text
+'institution' Text
+' ' Text
+'since' Text
+' ' Text
+'1724' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'gralon' Text
+'.' Text
+'net' Text
+'/' Text
+'articles' Text
+'/' Text
+'economie' Text
+'-' Text
+'et' Text
+'-' Text
+'finance' Text
+'/' Text
+'bourse' Text
+'/' Text
+'article' Text
+'-' Text
+'la' Text
+'-' Text
+'bourse' Text
+'-' Text
+'de' Text
+'-' Text
+'paris' Text
+'-' Text
+'-' Text
+'-' Text
+'une' Text
+'-' Text
+'institution' Text
+'-' Text
+'depuis' Text
+'-' Text
+'1724' Text
+'-' Text
+'981' Text
+'.' Text
+'htm' Text
+' ' Text
+'|' Punctuation
+'website' Name.Label
+'=' Operator
+'Gralon' Text
+' ' Text
+'|' Punctuation
+'language' Name.Label
+'=' Operator
+'fr' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'In' Text
+' ' Text
+'2000' Text
+',' Text
+' ' Text
+'it' Text
+' ' Text
+'merged' Text
+' ' Text
+'with' Text
+' ' Text
+'counterparts' Text
+' ' Text
+'in' Text
+' ' Text
+'Amsterdam' Text
+' ' Text
+'and' Text
+' ' Text
+'Brussels' Text
+' ' Text
+'to' Text
+' ' Text
+'form' Text
+' ' Text
+'[[' Punctuation
+'Euronext' Name.Tag
+']]' Punctuation
+',' Text
+'<' Punctuation
+'ref' Name.Tag
+' ' Text.Whitespace
+'name' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+'banque' Literal.String.Double
+'"' Literal.String.Double
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'last' Name.Label
+'=' Operator
+'Embassy' Text
+' ' Text
+'of' Text
+' ' Text
+'France' Text
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Embassy' Text
+' ' Text
+'of' Text
+' ' Text
+'France' Text
+' ' Text
+'in' Text
+' ' Text
+'Washington' Text
+':' Text
+' ' Text
+'Economy' Text
+' ' Text
+'of' Text
+' ' Text
+'France' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'ambafrance' Text
+'-' Text
+'us' Text
+'.' Text
+'org' Text
+'/' Text
+'spip' Text
+'.' Text
+'php' Text
+'?' Text
+'article511' Text
+' ' Text
+'|' Punctuation
+'url-status' Name.Label
+'=' Operator
+'dead' Text
+' ' Text
+'|' Punctuation
+'archive-url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'web' Text
+'.' Text
+'archive' Text
+'.' Text
+'org' Text
+'/' Text
+'web' Text
+'/' Text
+'20111009235442' Text
+'/' Text
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'ambafrance' Text
+'-' Text
+'us' Text
+'.' Text
+'org' Text
+'/' Text
+'spip' Text
+'.' Text
+'php' Text
+'?' Text
+'article511' Text
+' ' Text
+'|' Punctuation
+'archive-date' Name.Label
+'=' Operator
+'9' Text
+' ' Text
+'October' Text
+' ' Text
+'2011' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'16' Text
+' ' Text
+'July' Text
+' ' Text
+'2011' Text
+' ' Text
+'|' Punctuation
+'publisher' Name.Label
+'=' Operator
+'Ambafrance' Text
+'-' Text
+'us' Text
+'.' Text
+'org' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'which' Text
+' ' Text
+'in' Text
+' ' Text
+'2007' Text
+' ' Text
+'merged' Text
+' ' Text
+'with' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'New York stock exchange' Name.Tag
+']]' Punctuation
+' ' Text
+'to' Text
+' ' Text
+'form' Text
+' ' Text
+'[[' Punctuation
+'NYSE Euronext' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'the' Text
+' ' Text
+'world' Text
+"'" Text
+'s' Text
+' ' Text
+'largest' Text
+' ' Text
+'stock' Text
+' ' Text
+'exchange' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+' ' Text.Whitespace
+'name' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+'banque' Literal.String.Double
+'"' Literal.String.Double
+' ' Text.Whitespace
+'/>' Punctuation
+' ' Text
+'[[' Punctuation
+'Euronext Paris' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'the' Text
+' ' Text
+'French' Text
+' ' Text
+'branch' Text
+' ' Text
+'of' Text
+' ' Text
+'NYSE' Text
+' ' Text
+'Euronext' Text
+',' Text
+' ' Text
+'is' Text
+' ' Text
+'Europe' Text
+"'" Text
+'s' Text
+' ' Text
+'second' Text
+'-' Text
+'largest' Text
+' ' Text
+'stock' Text
+' ' Text
+'exchange' Text
+' ' Text
+'market' Text
+',' Text
+' ' Text
+'behind' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'London Stock Exchange' Name.Tag
+']]' Punctuation
+'.' Text
+'\n' Text
+
+'\n' Text
+
+'===' Generic.Subheading
+' Agriculture ' Generic.Subheading
+'===' Generic.Subheading
+'\n' Text.Whitespace
+
+'[[' Punctuation
+'File' Name.Namespace
+':' Punctuation
+'Verzenay moulin.jpg' Name.Tag
+'|' Punctuation
+'thumb' Text
+'|' Punctuation
+'left' Text
+'|' Punctuation
+'[[' Punctuation
+'Champagne wine region' Name.Tag
+'|' Punctuation
+'Champagne' Text
+' ' Text
+'vineyards' Text
+']]' Punctuation
+' ' Text
+'in' Text
+' ' Text
+'[[' Punctuation
+'Verzenay' Name.Tag
+']]' Punctuation
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'Montagne' Text
+' ' Text
+'de' Text
+' ' Text
+'Reims' Text
+' ' Text
+'subregion' Text
+']]' Punctuation
+'France' Text
+' ' Text
+'has' Text
+' ' Text
+'historically' Text
+' ' Text
+'been' Text
+' ' Text
+'one' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'world' Text
+"'" Text
+'s' Text
+' ' Text
+'major' Text
+' ' Text
+'agricultural' Text
+' ' Text
+'centres' Text
+' ' Text
+'and' Text
+' ' Text
+'remains' Text
+' ' Text
+'a' Text
+' ' Text
+'"' Text
+'global' Text
+' ' Text
+'agricultural' Text
+' ' Text
+'powerhouse' Text
+'"' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+' ' Text.Whitespace
+'name' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+'agriculture' Literal.String.Double
+'"' Literal.String.Double
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'France' Text
+'&nbsp;' Name.Entity
+'–' Text
+' ' Text
+'Agriculture' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'nationsencyclopedia' Text
+'.' Text
+'com' Text
+'/' Text
+'economies' Text
+'/' Text
+'Europe' Text
+'/' Text
+'France' Text
+'-' Text
+'AGRICULTURE' Text
+'.' Text
+'html' Text
+' ' Text
+'|' Punctuation
+'url-status' Name.Label
+'=' Operator
+'dead' Text
+' ' Text
+'|' Punctuation
+'archive-url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'web' Text
+'.' Text
+'archive' Text
+'.' Text
+'org' Text
+'/' Text
+'web' Text
+'/' Text
+'20110104104316' Text
+'/' Text
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'nationsencyclopedia' Text
+'.' Text
+'com' Text
+'/' Text
+'economies' Text
+'/' Text
+'Europe' Text
+'/' Text
+'France' Text
+'-' Text
+'AGRICULTURE' Text
+'.' Text
+'html' Text
+' ' Text
+'|' Punctuation
+'archive-date' Name.Label
+'=' Operator
+'4' Text
+' ' Text
+'January' Text
+' ' Text
+'2011' Text
+' ' Text
+'|' Punctuation
+'website' Name.Label
+'=' Operator
+'Nations' Text
+' ' Text
+'Encyclopedia' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Country' Text
+' ' Text
+'Memo' Text
+' ' Text
+'-' Text
+' ' Text
+'France' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'globaledge' Text
+'.' Text
+'msu' Text
+'.' Text
+'edu' Text
+'/' Text
+'countries' Text
+'/' Text
+'france' Text
+'/' Text
+'memo' Text
+'/' Text
+' ' Text
+'|' Punctuation
+'website' Name.Label
+'=' Operator
+'globalEDGE' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'Nicknamed' Text
+' ' Text
+'"' Text
+'the' Text
+' ' Text
+'granary' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'old' Text
+' ' Text
+'continent' Text
+'"' Text
+',' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Topic' Text
+':' Text
+' ' Text
+'Agriculture' Text
+' ' Text
+'in' Text
+' ' Text
+'France' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'statista' Text
+'.' Text
+'com' Text
+'/' Text
+'topics' Text
+'/' Text
+'6215' Text
+'/' Text
+'agriculture' Text
+'-' Text
+'in' Text
+'-' Text
+'france' Text
+'/' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'13' Text
+' ' Text
+'January' Text
+' ' Text
+'2022' Text
+' ' Text
+'|' Punctuation
+'website' Name.Label
+'=' Operator
+'Statista' Text
+' ' Text
+'|' Punctuation
+'language' Name.Label
+'=' Operator
+'en' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'over' Text
+' ' Text
+'half' Text
+' ' Text
+'its' Text
+' ' Text
+'total' Text
+' ' Text
+'land' Text
+' ' Text
+'area' Text
+' ' Text
+'is' Text
+' ' Text
+'[[' Punctuation
+'Agricultural land' Name.Tag
+'|' Punctuation
+'farmland' Text
+']]' Punctuation
+',' Text
+' ' Text
+'of' Text
+' ' Text
+'which' Text
+' ' Text
+'45' Text
+' ' Text
+'percent' Text
+' ' Text
+'is' Text
+' ' Text
+'devoted' Text
+' ' Text
+'to' Text
+' ' Text
+'permanent' Text
+' ' Text
+'field' Text
+' ' Text
+'crops' Text
+' ' Text
+'such' Text
+' ' Text
+'as' Text
+' ' Text
+'cereals' Text
+'.' Text
+' ' Text
+'The' Text
+' ' Text
+'country' Text
+"'" Text
+'s' Text
+' ' Text
+'diverse' Text
+' ' Text
+'climate' Text
+',' Text
+' ' Text
+'extensive' Text
+' ' Text
+'arable' Text
+' ' Text
+'land' Text
+',' Text
+' ' Text
+'modern' Text
+' ' Text
+'farming' Text
+' ' Text
+'technology' Text
+',' Text
+' ' Text
+'and' Text
+' ' Text
+'[[' Punctuation
+'Common agricultural policy' Name.Tag
+'|' Punctuation
+'EU' Text
+' ' Text
+'subsidies' Text
+']]' Punctuation
+' ' Text
+'have' Text
+' ' Text
+'made' Text
+' ' Text
+'it' Text
+' ' Text
+'Europe' Text
+"'" Text
+'s' Text
+' ' Text
+'leading' Text
+' ' Text
+'agricultural' Text
+' ' Text
+'producer' Text
+' ' Text
+'and' Text
+' ' Text
+'exporter' Text
+';' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Key' Text
+' ' Text
+'figures' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'French' Text
+' ' Text
+'economy' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'diplomatie' Text
+'.' Text
+'gouv' Text
+'.' Text
+'fr' Text
+'/' Text
+'en' Text
+'/' Text
+'france_159' Text
+'/' Text
+'economy_6815' Text
+'/' Text
+'overview' Text
+'-' Text
+'of' Text
+'-' Text
+'the' Text
+'-' Text
+'french' Text
+'-' Text
+'economy_6831' Text
+'/' Text
+'key' Text
+'-' Text
+'figures' Text
+'-' Text
+'of' Text
+'-' Text
+'the' Text
+'-' Text
+'french' Text
+'-' Text
+'economy_1402' Text
+'.' Text
+'html' Text
+'#' Text
+'sommaire_1' Text
+' ' Text
+'|' Punctuation
+'url-status' Name.Label
+'=' Operator
+'live' Text
+' ' Text
+'|' Punctuation
+'archive-url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'web' Text
+'.' Text
+'archive' Text
+'.' Text
+'org' Text
+'/' Text
+'web' Text
+'/' Text
+'20100114024542' Text
+'/' Text
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'diplomatie' Text
+'.' Text
+'gouv' Text
+'.' Text
+'fr' Text
+'/' Text
+'en' Text
+'/' Text
+'france_159' Text
+'/' Text
+'economy_6815' Text
+'/' Text
+'overview' Text
+'-' Text
+'of' Text
+'-' Text
+'the' Text
+'-' Text
+'french' Text
+'-' Text
+'economy_6831' Text
+'/' Text
+'key' Text
+'-' Text
+'figures' Text
+'-' Text
+'of' Text
+'-' Text
+'the' Text
+'-' Text
+'french' Text
+'-' Text
+'economy_1402' Text
+'.' Text
+'html' Text
+' ' Text
+'|' Punctuation
+'archive-date' Name.Label
+'=' Operator
+'14' Text
+' ' Text
+'January' Text
+' ' Text
+'2010' Text
+' ' Text
+'|' Punctuation
+'website' Name.Label
+'=' Operator
+'France' Text
+' ' Text
+'Diplomatie' Text
+' ' Text
+'|' Punctuation
+'publisher' Name.Label
+'=' Operator
+'[[' Punctuation
+'Minister of Foreign Affairs (France)' Name.Tag
+'|' Punctuation
+'French' Text
+' ' Text
+'Ministry' Text
+' ' Text
+'of' Text
+' ' Text
+'Foreign' Text
+' ' Text
+'and' Text
+' ' Text
+'European' Text
+' ' Text
+'Affairs' Text
+']]' Punctuation
+' ' Text
+'|' Punctuation
+'quote' Name.Label
+'=' Operator
+'France' Text
+' ' Text
+'is' Text
+' ' Text
+'the' Text
+' ' Text
+'world' Text
+"'" Text
+'s' Text
+' ' Text
+'fifth' Text
+' ' Text
+'largest' Text
+' ' Text
+'exporter' Text
+' ' Text
+'of' Text
+' ' Text
+'goods' Text
+' ' Text
+'(' Text
+'mainly' Text
+' ' Text
+'durables' Text
+')' Text
+'.' Text
+' ' Text
+'The' Text
+' ' Text
+'country' Text
+' ' Text
+'ranks' Text
+' ' Text
+'fourth' Text
+' ' Text
+'in' Text
+' ' Text
+'services' Text
+' ' Text
+'and' Text
+' ' Text
+'third' Text
+' ' Text
+'in' Text
+' ' Text
+'agriculture' Text
+' ' Text
+'(' Text
+'especially' Text
+' ' Text
+'in' Text
+' ' Text
+'cereals' Text
+' ' Text
+'and' Text
+' ' Text
+'the' Text
+' ' Text
+'agri' Text
+'-' Text
+'food' Text
+' ' Text
+'sector' Text
+')' Text
+'.' Text
+' ' Text
+'It' Text
+' ' Text
+'is' Text
+' ' Text
+'the' Text
+' ' Text
+'leading' Text
+' ' Text
+'producer' Text
+' ' Text
+'and' Text
+' ' Text
+'exporter' Text
+' ' Text
+'of' Text
+' ' Text
+'farm' Text
+' ' Text
+'products' Text
+' ' Text
+'in' Text
+' ' Text
+'Europe' Text
+'.' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'it' Text
+' ' Text
+'accounts' Text
+' ' Text
+'for' Text
+' ' Text
+'one' Text
+'-' Text
+'fifth' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'EU' Text
+"'" Text
+'s' Text
+' ' Text
+'agricultural' Text
+' ' Text
+'production' Text
+',' Text
+' ' Text
+'including' Text
+' ' Text
+'over' Text
+' ' Text
+'one' Text
+'-' Text
+'third' Text
+' ' Text
+'of' Text
+' ' Text
+'its' Text
+' ' Text
+'[[' Punctuation
+'Vegetable oil' Name.Tag
+'|' Punctuation
+'oilseeds' Text
+']]' Punctuation
+',' Text
+' ' Text
+'cereals' Text
+',' Text
+' ' Text
+'and' Text
+' ' Text
+'wine' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+' ' Text.Whitespace
+'name' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+'ministère' Literal.String.Double
+'"' Literal.String.Double
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'A' Text
+' ' Text
+'Panorama' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'agriculture' Text
+' ' Text
+'and' Text
+' ' Text
+'agri' Text
+'-' Text
+'food' Text
+' ' Text
+'industries' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'agriculture' Text
+'.' Text
+'gouv' Text
+'.' Text
+'fr' Text
+'/' Text
+'IMG' Text
+'/' Text
+'pdf' Text
+'/' Text
+'panorama_agriculture_ed2008EN' Text
+'.' Text
+'pdf' Text
+' ' Text
+'|' Punctuation
+'url-status' Name.Label
+'=' Operator
+'dead' Text
+' ' Text
+'|' Punctuation
+'archive-url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'web' Text
+'.' Text
+'archive' Text
+'.' Text
+'org' Text
+'/' Text
+'web' Text
+'/' Text
+'20100921021111' Text
+'/' Text
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'agriculture' Text
+'.' Text
+'gouv' Text
+'.' Text
+'fr' Text
+'/' Text
+'IMG' Text
+'/' Text
+'pdf' Text
+'/' Text
+'panorama_agriculture_ed2008EN' Text
+'.' Text
+'pdf' Text
+' ' Text
+'|' Punctuation
+'archive-date' Name.Label
+'=' Operator
+'21' Text
+' ' Text
+'September' Text
+' ' Text
+'2010' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'8' Text
+' ' Text
+'August' Text
+' ' Text
+'2010' Text
+' ' Text
+'|' Punctuation
+'publisher' Name.Label
+'=' Operator
+'Ministère' Text
+' ' Text
+'de' Text
+' ' Text
+'l' Text
+"'" Text
+'Alimentation' Text
+',' Text
+' ' Text
+'de' Text
+' ' Text
+'l' Text
+"'" Text
+'Agriculture' Text
+' ' Text
+'et' Text
+' ' Text
+'de' Text
+' ' Text
+'la' Text
+' ' Text
+'Pêche' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'As' Text
+' ' Text
+'of' Text
+' ' Text
+'2017' Text
+',' Text
+' ' Text
+'France' Text
+' ' Text
+'ranked' Text
+' ' Text
+'first' Text
+' ' Text
+'in' Text
+' ' Text
+'Europe' Text
+' ' Text
+'in' Text
+' ' Text
+'beef' Text
+' ' Text
+'and' Text
+' ' Text
+'cereals' Text
+';' Text
+' ' Text
+'second' Text
+' ' Text
+'in' Text
+' ' Text
+'dairy' Text
+' ' Text
+'and' Text
+' ' Text
+'aquaculture' Text
+';' Text
+' ' Text
+'and' Text
+' ' Text
+'third' Text
+' ' Text
+'in' Text
+' ' Text
+'poultry' Text
+',' Text
+' ' Text
+'fruits' Text
+',' Text
+' ' Text
+'vegetables' Text
+',' Text
+' ' Text
+'and' Text
+' ' Text
+'manufactured' Text
+' ' Text
+'chocolate' Text
+' ' Text
+'products' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+' ' Text.Whitespace
+'name' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+':' Literal.String.Double
+'6' Literal.String.Double
+'"' Literal.String.Double
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Infographics' Text
+' ' Text
+'-' Text
+' ' Text
+'France' Text
+"'" Text
+'s' Text
+' ' Text
+'rankings' Text
+' ' Text
+'for' Text
+' ' Text
+'agricultural' Text
+' ' Text
+'and' Text
+' ' Text
+'agrifood' Text
+' ' Text
+'production' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'agriculture' Text
+'.' Text
+'gouv' Text
+'.' Text
+'fr' Text
+'/' Text
+'infographics' Text
+'-' Text
+'frances' Text
+'-' Text
+'rankings' Text
+'-' Text
+'agricultural' Text
+'-' Text
+'and' Text
+'-' Text
+'agrifood' Text
+'-' Text
+'production' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'5' Text
+' ' Text
+'February' Text
+' ' Text
+'2022' Text
+' ' Text
+'|' Punctuation
+'website' Name.Label
+'=' Operator
+'agriculture' Text
+'.' Text
+'gouv' Text
+'.' Text
+'fr' Text
+' ' Text
+'|' Punctuation
+'language' Name.Label
+'=' Operator
+'fr' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'France' Text
+' ' Text
+'has' Text
+' ' Text
+'the' Text
+' ' Text
+'EU' Text
+"'" Text
+'s' Text
+' ' Text
+'largest' Text
+' ' Text
+'[[' Punctuation
+'Cattle' Name.Tag
+'|' Punctuation
+'cattle' Text
+' ' Text
+'herd' Text
+']]' Punctuation
+',' Text
+' ' Text
+'at' Text
+' ' Text
+'18' Text
+'-' Text
+'19' Text
+' ' Text
+'million' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+' ' Text.Whitespace
+'name' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+':' Literal.String.Double
+'7' Literal.String.Double
+'"' Literal.String.Double
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Infographics' Text
+' ' Text
+'-' Text
+' ' Text
+'Farming' Text
+' ' Text
+'France' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'agriculture' Text
+'.' Text
+'gouv' Text
+'.' Text
+'fr' Text
+'/' Text
+'infographics' Text
+'-' Text
+'farming' Text
+'-' Text
+'france' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'5' Text
+' ' Text
+'February' Text
+' ' Text
+'2022' Text
+' ' Text
+'|' Punctuation
+'website' Name.Label
+'=' Operator
+'agriculture' Text
+'.' Text
+'gouv' Text
+'.' Text
+'fr' Text
+' ' Text
+'|' Punctuation
+'language' Name.Label
+'=' Operator
+'fr' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'\n' Text
+
+'\n' Text
+
+'France' Text
+' ' Text
+'is' Text
+' ' Text
+'the' Text
+' ' Text
+'world' Text
+"'" Text
+'s' Text
+' ' Text
+'sixth' Text
+'-' Text
+'biggest' Text
+' ' Text
+'exporter' Text
+' ' Text
+'of' Text
+' ' Text
+'agricultural' Text
+' ' Text
+'products' Text
+',' Text
+' ' Text
+'generating' Text
+' ' Text
+'a' Text
+' ' Text
+'trade' Text
+' ' Text
+'surplus' Text
+' ' Text
+'of' Text
+' ' Text
+'over' Text
+' ' Text
+'€' Text
+'7' Text
+'.' Text
+'4' Text
+' ' Text
+'billion' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+' ' Text.Whitespace
+'name' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+':' Literal.String.Double
+'6' Literal.String.Double
+'"' Literal.String.Double
+' ' Text.Whitespace
+'/>' Punctuation
+' ' Text
+'Its' Text
+' ' Text
+'primary' Text
+' ' Text
+'agricultural' Text
+' ' Text
+'exports' Text
+' ' Text
+'are' Text
+' ' Text
+'wheat' Text
+',' Text
+' ' Text
+'poultry' Text
+',' Text
+' ' Text
+'dairy' Text
+',' Text
+' ' Text
+'beef' Text
+',' Text
+' ' Text
+'pork' Text
+',' Text
+' ' Text
+'and' Text
+' ' Text
+'internationally' Text
+' ' Text
+'recognised' Text
+' ' Text
+'brands' Text
+',' Text
+' ' Text
+'particularly' Text
+' ' Text
+'beverages' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+' ' Text.Whitespace
+'name' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+':' Literal.String.Double
+'7' Literal.String.Double
+'"' Literal.String.Double
+' ' Text.Whitespace
+'/>' Punctuation
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Farming' Text
+' ' Text
+'France' Text
+'{{' Punctuation
+'!' Name.Function
+'}}' Punctuation
+'Food' Text
+' ' Text
+'and' Text
+' ' Text
+'Agriculture' Text
+' ' Text
+'Organization' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'United' Text
+' ' Text
+'Nations' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'fao' Text
+'.' Text
+'org' Text
+'/' Text
+'country' Text
+'-' Text
+'showcase' Text
+'/' Text
+'item' Text
+'-' Text
+'detail' Text
+'/' Text
+'en' Text
+'/' Text
+'c' Text
+'/' Text
+'1278517' Text
+'/' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'5' Text
+' ' Text
+'February' Text
+' ' Text
+'2022' Text
+' ' Text
+'|' Punctuation
+'website' Name.Label
+'=' Operator
+'fao' Text
+'.' Text
+'org' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'France' Text
+' ' Text
+'is' Text
+' ' Text
+'the' Text
+' ' Text
+'fifth' Text
+' ' Text
+'largest' Text
+' ' Text
+'grower' Text
+' ' Text
+'of' Text
+' ' Text
+'wheat' Text
+',' Text
+' ' Text
+'after' Text
+' ' Text
+'China' Text
+',' Text
+' ' Text
+'India' Text
+',' Text
+' ' Text
+'Russia' Text
+',' Text
+' ' Text
+'and' Text
+' ' Text
+'the' Text
+' ' Text
+'United' Text
+' ' Text
+'States' Text
+',' Text
+' ' Text
+'all' Text
+' ' Text
+'of' Text
+' ' Text
+'which' Text
+' ' Text
+'are' Text
+' ' Text
+'significantly' Text
+' ' Text
+'larger' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+' ' Text.Whitespace
+'name' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+':' Literal.String.Double
+'7' Literal.String.Double
+'"' Literal.String.Double
+' ' Text.Whitespace
+'/>' Punctuation
+' ' Text
+'It' Text
+' ' Text
+'is' Text
+' ' Text
+'the' Text
+' ' Text
+'world' Text
+"'" Text
+'s' Text
+' ' Text
+'top' Text
+' ' Text
+'exporter' Text
+' ' Text
+'of' Text
+' ' Text
+'natural' Text
+' ' Text
+'spring' Text
+' ' Text
+'water' Text
+',' Text
+' ' Text
+'flax' Text
+',' Text
+' ' Text
+'malt' Text
+',' Text
+' ' Text
+'and' Text
+' ' Text
+'potatoes' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+' ' Text.Whitespace
+'name' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+':' Literal.String.Double
+'6' Literal.String.Double
+'"' Literal.String.Double
+' ' Text.Whitespace
+'/>' Punctuation
+' ' Text
+'In' Text
+' ' Text
+'2020' Text
+',' Text
+' ' Text
+'France' Text
+' ' Text
+'exported' Text
+' ' Text
+'over' Text
+' ' Text
+'€' Text
+'61' Text
+' ' Text
+'billion' Text
+' ' Text
+'in' Text
+' ' Text
+'agricultural' Text
+' ' Text
+'products' Text
+',' Text
+' ' Text
+'compared' Text
+' ' Text
+'to' Text
+' ' Text
+'€' Text
+'37' Text
+' ' Text
+'billion' Text
+' ' Text
+'in' Text
+' ' Text
+'2000' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Agri' Text
+'-' Text
+'food' Text
+' ' Text
+'industry' Text
+':' Text
+' ' Text
+'total' Text
+' ' Text
+'export' Text
+' ' Text
+'value' Text
+' ' Text
+'France' Text
+' ' Text
+'2020' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'statista' Text
+'.' Text
+'com' Text
+'/' Text
+'statistics' Text
+'/' Text
+'1142909' Text
+'/' Text
+'exports' Text
+'-' Text
+'value' Text
+'-' Text
+'france' Text
+'-' Text
+'by' Text
+'-' Text
+'destination' Text
+'-' Text
+'marker' Text
+'/' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'5' Text
+' ' Text
+'February' Text
+' ' Text
+'2022' Text
+' ' Text
+'|' Punctuation
+'website' Name.Label
+'=' Operator
+'Statista' Text
+' ' Text
+'|' Punctuation
+'language' Name.Label
+'=' Operator
+'en' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Les' Text
+' ' Text
+'enjeux' Text
+' ' Text
+'des' Text
+' ' Text
+'industries' Text
+' ' Text
+'agroalimentaires' Text
+' ' Text
+'françaises' Text
+' ' Text
+'|' Punctuation
+'trans-title' Name.Label
+'=' Operator
+'The' Text
+' ' Text
+'stakes' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'French' Text
+' ' Text
+'agri' Text
+'-' Text
+'food' Text
+' ' Text
+'industries' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'panorama' Text
+'-' Text
+'iaa' Text
+'.' Text
+'alimentation' Text
+'.' Text
+'gouv' Text
+'.' Text
+'fr' Text
+'/' Text
+' ' Text
+'|' Punctuation
+'url-status' Name.Label
+'=' Operator
+'dead' Text
+' ' Text
+'|' Punctuation
+'archive-url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'web' Text
+'.' Text
+'archive' Text
+'.' Text
+'org' Text
+'/' Text
+'web' Text
+'/' Text
+'20111229143438' Text
+'/' Text
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'panorama' Text
+'-' Text
+'iaa' Text
+'.' Text
+'alimentation' Text
+'.' Text
+'gouv' Text
+'.' Text
+'fr' Text
+'/' Text
+' ' Text
+'|' Punctuation
+'archive-date' Name.Label
+'=' Operator
+'29' Text
+' ' Text
+'December' Text
+' ' Text
+'2011' Text
+' ' Text
+'|' Punctuation
+'publisher' Name.Label
+'=' Operator
+'Panorama' Text
+' ' Text
+'des' Text
+' ' Text
+'Industries' Text
+' ' Text
+'Agroalimentaires' Text
+' ' Text
+'|' Punctuation
+'language' Name.Label
+'=' Operator
+'fr' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'\n' Text
+
+'\n' Text
+
+'France' Text
+' ' Text
+'was' Text
+' ' Text
+'an' Text
+' ' Text
+'[[' Punctuation
+'French wine' Name.Tag
+'|' Punctuation
+'early' Text
+' ' Text
+'centre' Text
+' ' Text
+'of' Text
+' ' Text
+'viviculture' Text
+']]' Punctuation
+',' Text
+' ' Text
+'dating' Text
+' ' Text
+'back' Text
+' ' Text
+'to' Text
+' ' Text
+'at' Text
+' ' Text
+'least' Text
+' ' Text
+'the' Text
+' ' Text
+'sixth' Text
+' ' Text
+'century' Text
+' ' Text
+'BCE' Text
+'.' Text
+' ' Text
+'It' Text
+' ' Text
+'is' Text
+' ' Text
+'the' Text
+' ' Text
+'world' Text
+"'" Text
+'s' Text
+' ' Text
+'second' Text
+'-' Text
+'largest' Text
+' ' Text
+'producer' Text
+' ' Text
+'of' Text
+' ' Text
+'wine' Text
+',' Text
+' ' Text
+'with' Text
+' ' Text
+'many' Text
+' ' Text
+'varieties' Text
+' ' Text
+'enjoying' Text
+' ' Text
+'global' Text
+' ' Text
+'renown' Text
+',' Text
+' ' Text
+'such' Text
+' ' Text
+'as' Text
+' ' Text
+'[[' Punctuation
+'Champagne' Name.Tag
+']]' Punctuation
+' ' Text
+'and' Text
+' ' Text
+'[[' Punctuation
+'Bordeaux wine' Name.Tag
+'|' Punctuation
+'Bordeaux' Text
+']]' Punctuation
+';' Text
+'<' Punctuation
+'ref' Name.Tag
+' ' Text.Whitespace
+'name' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+':' Literal.String.Double
+'6' Literal.String.Double
+'"' Literal.String.Double
+' ' Text.Whitespace
+'/>' Punctuation
+' ' Text
+'domestic' Text
+' ' Text
+'consumption' Text
+' ' Text
+'is' Text
+' ' Text
+'also' Text
+' ' Text
+'high' Text
+',' Text
+' ' Text
+'particularly' Text
+' ' Text
+'of' Text
+' ' Text
+'[[' Punctuation
+'Rosé' Name.Tag
+']]' Punctuation
+'.' Text
+' ' Text
+'[[' Punctuation
+'List of French rums' Name.Tag
+'|' Punctuation
+'France' Text
+' ' Text
+'produces' Text
+' ' Text
+'rum' Text
+']]' Punctuation
+' ' Text
+'primarily' Text
+' ' Text
+'from' Text
+' ' Text
+'overseas' Text
+' ' Text
+'territories' Text
+' ' Text
+'such' Text
+' ' Text
+'as' Text
+' ' Text
+'[[' Punctuation
+'Martinique' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'Guadeloupe' Text
+' ' Text
+'and' Text
+' ' Text
+'[[' Punctuation
+'La Réunion' Name.Tag
+']]' Punctuation
+'.' Text
+'\n' Text
+
+'\n' Text
+
+'Relative' Text
+' ' Text
+'to' Text
+' ' Text
+'other' Text
+' ' Text
+'developed' Text
+' ' Text
+'countries' Text
+',' Text
+' ' Text
+'agriculture' Text
+' ' Text
+'is' Text
+' ' Text
+'an' Text
+' ' Text
+'important' Text
+' ' Text
+'sector' Text
+' ' Text
+'of' Text
+' ' Text
+'France' Text
+"'" Text
+'s' Text
+' ' Text
+'economy' Text
+':' Text
+' ' Text
+'3' Text
+'.' Text
+'8' Text
+'%' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'active' Text
+' ' Text
+'population' Text
+' ' Text
+'is' Text
+' ' Text
+'employed' Text
+' ' Text
+'in' Text
+' ' Text
+'agriculture' Text
+',' Text
+' ' Text
+'whereas' Text
+' ' Text
+'the' Text
+' ' Text
+'total' Text
+' ' Text
+'agri' Text
+'-' Text
+'food' Text
+' ' Text
+'industry' Text
+' ' Text
+'made' Text
+' ' Text
+'up' Text
+' ' Text
+'4' Text
+'.' Text
+'2' Text
+'%' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'French' Text
+' ' Text
+'GDP' Text
+' ' Text
+'in' Text
+' ' Text
+'2005' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+' ' Text.Whitespace
+'name' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+'ministère' Literal.String.Double
+'"' Literal.String.Double
+' ' Text.Whitespace
+'/>' Punctuation
+' ' Text
+'France' Text
+' ' Text
+'remains' Text
+' ' Text
+'the' Text
+' ' Text
+'largest' Text
+' ' Text
+'recipient' Text
+' ' Text
+'of' Text
+' ' Text
+'EU' Text
+' ' Text
+'agricultural' Text
+' ' Text
+'subsidies' Text
+',' Text
+' ' Text
+'receiving' Text
+' ' Text
+'an' Text
+' ' Text
+'annual' Text
+' ' Text
+'average' Text
+' ' Text
+'of' Text
+' ' Text
+'€' Text
+'8' Text
+' ' Text
+'billion' Text
+' ' Text
+'from' Text
+' ' Text
+'2007' Text
+' ' Text
+'to' Text
+' ' Text
+'2019' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'date' Name.Label
+'=' Operator
+'22' Text
+' ' Text
+'April' Text
+' ' Text
+'2009' Text
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Annex' Text
+' ' Text
+'1' Text
+':' Text
+' ' Text
+'Indicative' Text
+' ' Text
+'Figures' Text
+' ' Text
+'on' Text
+' ' Text
+'the' Text
+' ' Text
+'Distribution' Text
+' ' Text
+'of' Text
+' ' Text
+'Aid' Text
+',' Text
+' ' Text
+'by' Text
+' ' Text
+'Size' Text
+'-' Text
+'Class' Text
+' ' Text
+'of' Text
+' ' Text
+'Aid' Text
+',' Text
+' ' Text
+'Received' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'Context' Text
+' ' Text
+'of' Text
+' ' Text
+'Direct' Text
+' ' Text
+'Aid' Text
+' ' Text
+'Paid' Text
+' ' Text
+'to' Text
+' ' Text
+'the' Text
+' ' Text
+'Producers' Text
+' ' Text
+'According' Text
+' ' Text
+'to' Text
+' ' Text
+'Council' Text
+' ' Text
+'Regulation' Text
+' ' Text
+'(' Text
+'EC' Text
+')' Text
+' ' Text
+'No' Text
+' ' Text
+'1782' Text
+'/' Text
+'2003' Text
+' ' Text
+'(' Text
+'Financial' Text
+' ' Text
+'Year' Text
+' ' Text
+'2007' Text
+')' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'ec' Text
+'.' Text
+'europa' Text
+'.' Text
+'eu' Text
+'/' Text
+'agriculture' Text
+'/' Text
+'fin' Text
+'/' Text
+'directaid' Text
+'/' Text
+'2007' Text
+'/' Text
+'annex1_en' Text
+'.' Text
+'pdf' Text
+' ' Text
+'|' Punctuation
+'url-status' Name.Label
+'=' Operator
+'dead' Text
+' ' Text
+'|' Punctuation
+'archive-url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'web' Text
+'.' Text
+'archive' Text
+'.' Text
+'org' Text
+'/' Text
+'web' Text
+'/' Text
+'20110430163204' Text
+'/' Text
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'ec' Text
+'.' Text
+'europa' Text
+'.' Text
+'eu' Text
+'/' Text
+'agriculture' Text
+'/' Text
+'fin' Text
+'/' Text
+'directaid' Text
+'/' Text
+'2007' Text
+'/' Text
+'annex1_en' Text
+'.' Text
+'pdf' Text
+' ' Text
+'|' Punctuation
+'archive-date' Name.Label
+'=' Operator
+'30' Text
+' ' Text
+'April' Text
+' ' Text
+'2011' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'7' Text
+' ' Text
+'October' Text
+' ' Text
+'2010' Text
+' ' Text
+'|' Punctuation
+'publisher' Name.Label
+'=' Operator
+'European' Text
+' ' Text
+'Commission' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'date' Name.Label
+'=' Operator
+'24' Text
+' ' Text
+'November' Text
+' ' Text
+'2021' Text
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'EU' Text
+' ' Text
+'agriculture' Text
+' ' Text
+'statistics' Text
+':' Text
+' ' Text
+'subsidies' Text
+',' Text
+' ' Text
+'jobs' Text
+',' Text
+' ' Text
+'production' Text
+' ' Text
+'(' Text
+'infographic' Text
+')' Text
+' ' Text
+'{{' Punctuation
+'!' Name.Function
+'}}' Punctuation
+' ' Text
+'News' Text
+' ' Text
+'{{' Punctuation
+'!' Name.Function
+'}}' Punctuation
+' ' Text
+'European' Text
+' ' Text
+'Parliament' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'europarl' Text
+'.' Text
+'europa' Text
+'.' Text
+'eu' Text
+'/' Text
+'news' Text
+'/' Text
+'en' Text
+'/' Text
+'headlines' Text
+'/' Text
+'society' Text
+'/' Text
+'20211118STO17609' Text
+'/' Text
+'eu' Text
+'-' Text
+'agriculture' Text
+'-' Text
+'statistics' Text
+'-' Text
+'subsidies' Text
+'-' Text
+'jobs' Text
+'-' Text
+'production' Text
+'-' Text
+'infographic' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'5' Text
+' ' Text
+'February' Text
+' ' Text
+'2022' Text
+' ' Text
+'|' Punctuation
+'website' Name.Label
+'=' Operator
+'europarl' Text
+'.' Text
+'europa' Text
+'.' Text
+'eu' Text
+' ' Text
+'|' Punctuation
+'language' Name.Label
+'=' Operator
+'en' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'\n' Text
+
+'\n' Text
+
+'===' Generic.Subheading
+'Tourism' Generic.Subheading
+'===' Generic.Subheading
+'\n' Text.Whitespace
+
+'{{' Punctuation
+'Main' Name.Tag
+'|' Punctuation
+'Tourism' Text
+' ' Text
+'in' Text
+' ' Text
+'France' Text
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'Multiple' Name.Tag
+' ' Name.Tag
+'image' Name.Tag
+'\n' Text
+
+'|' Punctuation
+' direction ' Name.Label
+'=' Operator
+' ' Text
+'vertical' Text
+'\n' Text
+
+'|' Punctuation
+' caption_align ' Name.Label
+'=' Operator
+' ' Text
+'center' Text
+'\n' Text
+
+'|' Punctuation
+' image1 ' Name.Label
+'=' Operator
+' ' Text
+'Paris_vue_d' Text
+"'" Text
+'ensemble_tour_Eiffel' Text
+'.' Text
+'jpg' Text
+'\n' Text
+
+'|' Punctuation
+' caption1 ' Name.Label
+'=' Operator
+' ' Text
+'The' Text
+' ' Text
+'[[' Punctuation
+'Eiffel Tower' Name.Tag
+']]' Punctuation
+' ' Text
+'is' Text
+' ' Text
+'the' Text
+' ' Text
+'world' Text
+"'" Text
+'s' Text
+' ' Text
+'most' Text
+'-' Text
+'visited' Text
+' ' Text
+'paid' Text
+' ' Text
+'monument' Text
+',' Text
+' ' Text
+'an' Text
+' ' Text
+'icon' Text
+' ' Text
+'of' Text
+' ' Text
+'both' Text
+' ' Text
+'Paris' Text
+' ' Text
+'and' Text
+' ' Text
+'France' Text
+'\n' Text
+
+'|' Punctuation
+' image2 ' Name.Label
+'=' Operator
+' ' Text
+'Hafen_von_Nizza' Text
+'.' Text
+'jpg' Text
+'\n' Text
+
+'|' Punctuation
+' caption2 ' Name.Label
+'=' Operator
+' ' Text
+'[[' Punctuation
+'Nice' Name.Tag
+']]' Punctuation
+' ' Text
+'on' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'French Riviera' Name.Tag
+']]' Punctuation
+'\n' Text
+
+'|' Punctuation
+' image3 ' Name.Label
+'=' Operator
+' ' Text
+'Mont' Text
+'-' Text
+'Saint' Text
+'-' Text
+'Michel' Text
+' ' Text
+'vu' Text
+' ' Text
+'du' Text
+' ' Text
+'ciel' Text
+'.' Text
+'jpg' Text
+'\n' Text
+
+'|' Punctuation
+' caption3 ' Name.Label
+'=' Operator
+' ' Text
+'[[' Punctuation
+'Mont-Saint-Michel' Name.Tag
+']]' Punctuation
+' ' Text
+'and' Text
+' ' Text
+'[[' Punctuation
+'Mont-Saint-Michel Bay' Name.Tag
+'|' Punctuation
+'its' Text
+' ' Text
+'bay' Text
+']]' Punctuation
+' ' Text
+'were' Text
+' ' Text
+'listed' Text
+' ' Text
+'as' Text
+' ' Text
+'a' Text
+' ' Text
+'[[' Punctuation
+'UNESCO' Name.Tag
+']]' Punctuation
+' ' Text
+'[[' Punctuation
+'World Heritage Sites' Name.Tag
+']]' Punctuation
+' ' Text
+'in' Text
+' ' Text
+'1979' Text
+'\n' Text
+
+'}}' Punctuation
+'\n' Text
+
+'\n' Text
+
+'With' Text
+' ' Text
+'89' Text
+'&nbsp;' Name.Entity
+'million' Text
+' ' Text
+'international' Text
+' ' Text
+'tourist' Text
+' ' Text
+'arrivals' Text
+' ' Text
+'in' Text
+' ' Text
+'2018' Text
+',' Text
+'<' Punctuation
+'ref' Name.Tag
+' ' Text.Whitespace
+'name' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+'tourism' Literal.String.Double
+'.' Literal.String.Double
+'stat' Literal.String.Double
+'"' Literal.String.Double
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'book' Name.Tag
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'e' Text
+'-' Text
+'unwto' Text
+'.' Text
+'org' Text
+'/' Text
+'doi' Text
+'/' Text
+'pdf' Text
+'/' Text
+'10' Text
+'.' Text
+'18111' Text
+'/' Text
+'9789284421152' Text
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'UNWTO' Text
+' ' Text
+'Tourism' Text
+' ' Text
+'Highlights' Text
+' ' Text
+'|' Punctuation
+'publisher' Name.Label
+'=' Operator
+'United' Text
+' ' Text
+'Nations' Text
+' ' Text
+'World' Text
+' ' Text
+'Tourism' Text
+' ' Text
+'Organization' Text
+' ' Text
+'|' Punctuation
+'year' Name.Label
+'=' Operator
+'2019' Text
+' ' Text
+'|' Punctuation
+'isbn' Name.Label
+'=' Operator
+'978' Text
+'-' Text
+'92' Text
+'-' Text
+'844' Text
+'-' Text
+'2114' Text
+'-' Text
+'5' Text
+' ' Text
+'|' Punctuation
+'edition' Name.Label
+'=' Operator
+'2019' Text
+' ' Text
+'|' Punctuation
+'page' Name.Label
+'=' Operator
+'9' Text
+' ' Text
+'|' Punctuation
+'doi' Name.Label
+'=' Operator
+'10' Text
+'.' Text
+'18111' Text
+'/' Text
+'9789284421152' Text
+' ' Text
+'|' Punctuation
+'s2cid' Name.Label
+'=' Operator
+'240665765' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'France' Text
+' ' Text
+'is' Text
+' ' Text
+'the' Text
+' ' Text
+'world' Text
+"'" Text
+'s' Text
+' ' Text
+'[[' Punctuation
+'World Tourism rankings' Name.Tag
+'|' Punctuation
+'top' Text
+' ' Text
+'tourist' Text
+' ' Text
+'destination' Text
+']]' Punctuation
+',' Text
+' ' Text
+'ahead' Text
+' ' Text
+'of' Text
+' ' Text
+'Spain' Text
+' ' Text
+'(' Text
+'83' Text
+'&nbsp;' Name.Entity
+'million' Text
+')' Text
+' ' Text
+'and' Text
+' ' Text
+'the' Text
+' ' Text
+'United' Text
+' ' Text
+'States' Text
+' ' Text
+'(' Text
+'80' Text
+'&nbsp;' Name.Entity
+'million' Text
+')' Text
+'.' Text
+' ' Text
+'However' Text
+',' Text
+' ' Text
+'it' Text
+' ' Text
+'ranks' Text
+' ' Text
+'third' Text
+' ' Text
+'in' Text
+' ' Text
+'tourism' Text
+'-' Text
+'derived' Text
+' ' Text
+'income' Text
+' ' Text
+'due' Text
+' ' Text
+'to' Text
+' ' Text
+'the' Text
+' ' Text
+'shorter' Text
+' ' Text
+'duration' Text
+' ' Text
+'of' Text
+' ' Text
+'visits' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'news' Name.Tag
+' ' Text
+'|' Punctuation
+'last' Name.Label
+'=' Operator
+'Dilorenzo' Text
+' ' Text
+'|' Punctuation
+'first' Name.Label
+'=' Operator
+'Sarah' Text
+' ' Text
+'|' Punctuation
+'date' Name.Label
+'=' Operator
+'18' Text
+' ' Text
+'July' Text
+' ' Text
+'2013' Text
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'France' Text
+' ' Text
+'learns' Text
+' ' Text
+'to' Text
+' ' Text
+'speak' Text
+' ' Text
+"'" Text
+'touriste' Text
+"'" Text
+' ' Text
+'|' Punctuation
+'agency' Name.Label
+'=' Operator
+'Associated' Text
+' ' Text
+'Press' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'bigstory' Text
+'.' Text
+'ap' Text
+'.' Text
+'org' Text
+'/' Text
+'article' Text
+'/' Text
+'france' Text
+'-' Text
+'learns' Text
+'-' Text
+'speak' Text
+'-' Text
+'touriste' Text
+'-' Text
+'0' Text
+' ' Text
+'|' Punctuation
+'url-status' Name.Label
+'=' Operator
+'dead' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'20' Text
+' ' Text
+'July' Text
+' ' Text
+'2013' Text
+' ' Text
+'|' Punctuation
+'archive-url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'web' Text
+'.' Text
+'archive' Text
+'.' Text
+'org' Text
+'/' Text
+'web' Text
+'/' Text
+'20130822043825' Text
+'/' Text
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'bigstory' Text
+'.' Text
+'ap' Text
+'.' Text
+'org' Text
+'/' Text
+'article' Text
+'/' Text
+'france' Text
+'-' Text
+'learns' Text
+'-' Text
+'speak' Text
+'-' Text
+'touriste' Text
+'-' Text
+'0' Text
+' ' Text
+'|' Punctuation
+'archive-date' Name.Label
+'=' Operator
+'22' Text
+' ' Text
+'August' Text
+' ' Text
+'2013' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'The' Text
+' ' Text
+'most' Text
+' ' Text
+'popular' Text
+' ' Text
+'tourist' Text
+' ' Text
+'sites' Text
+' ' Text
+'include' Text
+' ' Text
+'(' Text
+'annual' Text
+' ' Text
+'visitors' Text
+')' Text
+':' Text
+' ' Text
+'[[' Punctuation
+'Eiffel Tower' Name.Tag
+']]' Punctuation
+' ' Text
+'(' Text
+'6' Text
+'.' Text
+'2' Text
+'&nbsp;' Name.Entity
+'million' Text
+')' Text
+',' Text
+' ' Text
+'[[' Punctuation
+'Palace of Versailles' Name.Tag
+'|' Punctuation
+'Château' Text
+' ' Text
+'de' Text
+' ' Text
+'Versailles' Text
+']]' Punctuation
+' ' Text
+'(' Text
+'2' Text
+'.' Text
+'8' Text
+'&nbsp;' Name.Entity
+'million' Text
+')' Text
+',' Text
+' ' Text
+'[[' Punctuation
+'National Museum of Natural History (France)' Name.Tag
+'|' Punctuation
+'Muséum' Text
+' ' Text
+'national' Text
+' ' Text
+'d' Text
+"'" Text
+'Histoire' Text
+' ' Text
+'naturelle' Text
+']]' Punctuation
+' ' Text
+'(' Text
+'2' Text
+'&nbsp;' Name.Entity
+'million' Text
+')' Text
+',' Text
+' ' Text
+'[[' Punctuation
+'Pont du Gard' Name.Tag
+']]' Punctuation
+' ' Text
+'(' Text
+'1' Text
+'.' Text
+'5' Text
+'&nbsp;' Name.Entity
+'million' Text
+')' Text
+',' Text
+' ' Text
+'[[' Punctuation
+'Arc de Triomphe' Name.Tag
+']]' Punctuation
+' ' Text
+'(' Text
+'1' Text
+'.' Text
+'2' Text
+'&nbsp;' Name.Entity
+'million' Text
+')' Text
+',' Text
+' ' Text
+'[[' Punctuation
+'Mont Saint-Michel' Name.Tag
+']]' Punctuation
+' ' Text
+'(' Text
+'1' Text
+'&nbsp;' Name.Entity
+'million' Text
+')' Text
+',' Text
+' ' Text
+'[[' Punctuation
+'Sainte-Chapelle' Name.Tag
+']]' Punctuation
+' ' Text
+'(' Text
+'683' Text
+',' Text
+'000' Text
+')' Text
+',' Text
+' ' Text
+'[[' Punctuation
+'Château du Haut-Kœnigsbourg' Name.Tag
+']]' Punctuation
+' ' Text
+'(' Text
+'549' Text
+',' Text
+'000' Text
+')' Text
+',' Text
+' ' Text
+'[[' Punctuation
+'Puy de Dôme' Name.Tag
+']]' Punctuation
+' ' Text
+'(' Text
+'500' Text
+',' Text
+'000' Text
+')' Text
+',' Text
+' ' Text
+'[[' Punctuation
+'Musée Picasso' Name.Tag
+']]' Punctuation
+' ' Text
+'(' Text
+'441' Text
+',' Text
+'000' Text
+')' Text
+',' Text
+' ' Text
+'and' Text
+' ' Text
+'[[' Punctuation
+'Carcassonne' Name.Tag
+']]' Punctuation
+' ' Text
+'(' Text
+'362' Text
+',' Text
+'000' Text
+')' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'year' Name.Label
+'=' Operator
+'2003' Text
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Fréquentation' Text
+' ' Text
+'des' Text
+' ' Text
+'musées' Text
+' ' Text
+'et' Text
+' ' Text
+'des' Text
+' ' Text
+'bâtiments' Text
+' ' Text
+'historiques' Text
+' ' Text
+'|' Punctuation
+'trans-title' Name.Label
+'=' Operator
+'Frequentation' Text
+' ' Text
+'of' Text
+' ' Text
+'museums' Text
+' ' Text
+'and' Text
+' ' Text
+'historic' Text
+' ' Text
+'buildings' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www2' Text
+'.' Text
+'culture' Text
+'.' Text
+'gouv' Text
+'.' Text
+'fr' Text
+'/' Text
+'deps' Text
+'/' Text
+'mini_chiff_03' Text
+'/' Text
+'fr' Text
+'/' Text
+'musee' Text
+'.' Text
+'htm' Text
+' ' Text
+'|' Punctuation
+'url-status' Name.Label
+'=' Operator
+'dead' Text
+' ' Text
+'|' Punctuation
+'archive-url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'web' Text
+'.' Text
+'archive' Text
+'.' Text
+'org' Text
+'/' Text
+'web' Text
+'/' Text
+'20071224180811' Text
+'/' Text
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www2' Text
+'.' Text
+'culture' Text
+'.' Text
+'gouv' Text
+'.' Text
+'fr' Text
+'/' Text
+'deps' Text
+'/' Text
+'mini_chiff_03' Text
+'/' Text
+'fr' Text
+'/' Text
+'musee' Text
+'.' Text
+'htm' Text
+' ' Text
+'|' Punctuation
+'archive-date' Name.Label
+'=' Operator
+'24' Text
+' ' Text
+'December' Text
+' ' Text
+'2007' Text
+' ' Text
+'|' Punctuation
+'language' Name.Label
+'=' Operator
+'fr' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'\n' Text
+
+'\n' Text
+
+'France' Text
+',' Text
+' ' Text
+'especially' Text
+' ' Text
+'Paris' Text
+',' Text
+' ' Text
+'has' Text
+' ' Text
+'some' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'world' Text
+"'" Text
+'s' Text
+' ' Text
+'largest' Text
+' ' Text
+'and' Text
+' ' Text
+'most' Text
+' ' Text
+'renowned' Text
+' ' Text
+'museums' Text
+',' Text
+' ' Text
+'including' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Louvre' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'which' Text
+' ' Text
+'is' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'List of most visited art museums in the world' Name.Tag
+'|' Punctuation
+'most' Text
+' ' Text
+'visited' Text
+' ' Text
+'art' Text
+' ' Text
+'museum' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'world' Text
+']]' Punctuation
+' ' Text
+'(' Text
+'5' Text
+'.' Text
+'7' Text
+'&nbsp;' Name.Entity
+'million' Text
+')' Text
+',' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+"Musée d'Orsay" Name.Tag
+']]' Punctuation
+' ' Text
+'(' Text
+'2' Text
+'.' Text
+'1' Text
+'&nbsp;' Name.Entity
+'million' Text
+')' Text
+',' Text
+' ' Text
+'mostly' Text
+' ' Text
+'devoted' Text
+' ' Text
+'to' Text
+' ' Text
+'[[' Punctuation
+'Impressionism' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+"Musée de l'Orangerie" Name.Tag
+']]' Punctuation
+' ' Text
+'(' Text
+'1' Text
+'.' Text
+'02' Text
+'&nbsp;' Name.Entity
+'million' Text
+')' Text
+',' Text
+' ' Text
+'which' Text
+' ' Text
+'is' Text
+' ' Text
+'home' Text
+' ' Text
+'to' Text
+' ' Text
+'eight' Text
+' ' Text
+'large' Text
+' ' Text
+'[[' Punctuation
+'Water Lilies (Monet series)' Name.Tag
+'|' Punctuation
+'Water' Text
+' ' Text
+'Lily' Text
+']]' Punctuation
+' ' Text
+'murals' Text
+' ' Text
+'by' Text
+' ' Text
+'[[' Punctuation
+'Claude Monet' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'as' Text
+' ' Text
+'well' Text
+' ' Text
+'as' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Centre Georges Pompidou' Name.Tag
+']]' Punctuation
+' ' Text
+'(' Text
+'1' Text
+'.' Text
+'2' Text
+'&nbsp;' Name.Entity
+'million' Text
+')' Text
+',' Text
+' ' Text
+'dedicated' Text
+' ' Text
+'to' Text
+' ' Text
+'[[' Punctuation
+'contemporary art' Name.Tag
+']]' Punctuation
+'.' Text
+' ' Text
+'[[' Punctuation
+'Disneyland Paris' Name.Tag
+']]' Punctuation
+' ' Text
+'is' Text
+' ' Text
+'Europe' Text
+"'" Text
+'s' Text
+' ' Text
+'most' Text
+' ' Text
+'popular' Text
+' ' Text
+'theme' Text
+' ' Text
+'park' Text
+',' Text
+' ' Text
+'with' Text
+' ' Text
+'15' Text
+'&nbsp;' Name.Entity
+'million' Text
+' ' Text
+'combined' Text
+' ' Text
+'visitors' Text
+' ' Text
+'to' Text
+' ' Text
+'the' Text
+' ' Text
+'resort' Text
+"'" Text
+'s' Text
+' ' Text
+'[[' Punctuation
+'Disneyland Park (Paris)' Name.Tag
+'|' Punctuation
+'Disneyland' Text
+' ' Text
+'Park' Text
+']]' Punctuation
+' ' Text
+'and' Text
+' ' Text
+'[[' Punctuation
+'Walt Disney Studios Park' Name.Tag
+']]' Punctuation
+' ' Text
+'in' Text
+' ' Text
+'2009' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'year' Name.Label
+'=' Operator
+'2009' Text
+' ' Text
+'|' Punctuation
+'editor-last' Name.Label
+'=' Operator
+'Judith' Text
+' ' Text
+'Rubin' Text
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'TEA' Text
+'/' Text
+'AECOM' Text
+' ' Text
+'Attraction' Text
+' ' Text
+'Attendance' Text
+' ' Text
+'Report' Text
+' ' Text
+'for' Text
+' ' Text
+'2009' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'themeit' Text
+'.' Text
+'com' Text
+'/' Text
+'etea' Text
+'/' Text
+'2009report' Text
+'.' Text
+'pdf' Text
+' ' Text
+'|' Punctuation
+'url-status' Name.Label
+'=' Operator
+'dead' Text
+' ' Text
+'|' Punctuation
+'archive-url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'web' Text
+'.' Text
+'archive' Text
+'.' Text
+'org' Text
+'/' Text
+'web' Text
+'/' Text
+'20100602032710' Text
+'/' Text
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'themeit' Text
+'.' Text
+'com' Text
+'/' Text
+'etea' Text
+'/' Text
+'2009report' Text
+'.' Text
+'pdf' Text
+' ' Text
+'|' Punctuation
+'archive-date' Name.Label
+'=' Operator
+'2' Text
+' ' Text
+'June' Text
+' ' Text
+'2010' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'7' Text
+' ' Text
+'October' Text
+' ' Text
+'2010' Text
+' ' Text
+'|' Punctuation
+'publisher' Name.Label
+'=' Operator
+'Themed' Text
+' ' Text
+'Entertainment' Text
+' ' Text
+'Association' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'\n' Text
+
+'\n' Text
+
+'With' Text
+' ' Text
+'more' Text
+' ' Text
+'than' Text
+' ' Text
+'10' Text
+' ' Text
+'million' Text
+' ' Text
+'tourists' Text
+' ' Text
+'a' Text
+' ' Text
+'year' Text
+',' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'French Riviera' Name.Tag
+']]' Punctuation
+' ' Text
+'(' Text
+'French' Text
+':' Text
+' ' Text
+"''" Generic.Emph
+'Côte' Generic.Emph
+' ' Generic.Emph
+'d' Generic.Emph
+"'" Generic.Emph
+'Azur' Generic.Emph
+"''" Generic.Emph
+')' Text
+',' Text
+' ' Text
+'in' Text
+' ' Text
+'Southeast' Text
+' ' Text
+'France' Text
+',' Text
+' ' Text
+'is' Text
+' ' Text
+'the' Text
+' ' Text
+'second' Text
+' ' Text
+'leading' Text
+' ' Text
+'tourist' Text
+' ' Text
+'destination' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'country' Text
+',' Text
+' ' Text
+'after' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Île-de-France' Name.Tag
+'|' Punctuation
+'Paris' Text
+' ' Text
+'region' Text
+']]' Punctuation
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'The' Text
+' ' Text
+'French' Text
+' ' Text
+'Riviera' Text
+' ' Text
+'Tourist' Text
+' ' Text
+'Board' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'frenchriviera' Text
+'-' Text
+'tourism' Text
+'.' Text
+'com' Text
+'/' Text
+'regional' Text
+'-' Text
+'tourism' Text
+'-' Text
+'organization' Text
+'/' Text
+'the' Text
+'-' Text
+'french' Text
+'-' Text
+'riviera' Text
+'-' Text
+'tourist' Text
+'-' Text
+'board' Text
+'-' Text
+'06_191' Text
+'.' Text
+'html' Text
+' ' Text
+'|' Punctuation
+'url-status' Name.Label
+'=' Operator
+'dead' Text
+' ' Text
+'|' Punctuation
+'archive-url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'web' Text
+'.' Text
+'archive' Text
+'.' Text
+'org' Text
+'/' Text
+'web' Text
+'/' Text
+'20110425152011' Text
+'/' Text
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'frenchriviera' Text
+'-' Text
+'tourism' Text
+'.' Text
+'com' Text
+'/' Text
+'regional' Text
+'-' Text
+'tourism' Text
+'-' Text
+'organization' Text
+'/' Text
+'the' Text
+'-' Text
+'french' Text
+'-' Text
+'riviera' Text
+'-' Text
+'tourist' Text
+'-' Text
+'board' Text
+'-' Text
+'06_191' Text
+'.' Text
+'html' Text
+' ' Text
+'|' Punctuation
+'archive-date' Name.Label
+'=' Operator
+'25' Text
+' ' Text
+'April' Text
+' ' Text
+'2011' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'23' Text
+' ' Text
+'January' Text
+' ' Text
+'2011' Text
+' ' Text
+'|' Punctuation
+'website' Name.Label
+'=' Operator
+'CÔTE' Text
+' ' Text
+'D' Text
+"'" Text
+'AZUR' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'It' Text
+' ' Text
+'benefits' Text
+' ' Text
+'from' Text
+' ' Text
+'300' Text
+' ' Text
+'days' Text
+' ' Text
+'of' Text
+' ' Text
+'sunshine' Text
+' ' Text
+'per' Text
+' ' Text
+'year' Text
+',' Text
+' ' Text
+'{{' Punctuation
+'Convert' Name.Tag
+'|' Punctuation
+'115' Text
+'|' Punctuation
+'km' Text
+'}}' Punctuation
+' ' Text
+'of' Text
+' ' Text
+'coastline' Text
+' ' Text
+'and' Text
+' ' Text
+'beaches' Text
+',' Text
+' ' Text
+'18' Text
+' ' Text
+'golf' Text
+' ' Text
+'courses' Text
+',' Text
+' ' Text
+'14' Text
+' ' Text
+'ski' Text
+' ' Text
+'resorts' Text
+' ' Text
+'and' Text
+' ' Text
+'3' Text
+',' Text
+'000' Text
+' ' Text
+'restaurants' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+' ' Text.Whitespace
+'name' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+'CAEDA' Literal.String.Double
+'"' Literal.String.Double
+' ' Text.Whitespace
+'/>' Punctuation
+'{{' Punctuation
+'Rp' Name.Tag
+'|' Punctuation
+'31' Text
+'}}' Punctuation
+' ' Text
+'Each' Text
+' ' Text
+'year' Text
+' ' Text
+'the' Text
+' ' Text
+"''" Generic.Emph
+'Côte' Generic.Emph
+' ' Generic.Emph
+'d' Generic.Emph
+"'" Generic.Emph
+'Azur' Generic.Emph
+"''" Generic.Emph
+' ' Text
+'hosts' Text
+' ' Text
+'50' Text
+'%' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'world' Text
+"'" Text
+'s' Text
+' ' Text
+'[[' Punctuation
+'Luxury yacht' Name.Tag
+'|' Punctuation
+'superyacht' Text
+']]' Punctuation
+' ' Text
+'fleet' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+' ' Text.Whitespace
+'name' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+'CAEDA' Literal.String.Double
+'"' Literal.String.Double
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Présentation' Text
+' ' Text
+'de' Text
+' ' Text
+'la' Text
+' ' Text
+'Côte' Text
+' ' Text
+'d' Text
+"'" Text
+'Azur' Text
+' ' Text
+'|' Punctuation
+'trans-title' Name.Label
+'=' Operator
+'Presentation' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'French' Text
+' ' Text
+'Riviera' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'crdp' Text
+'-' Text
+'nice' Text
+'.' Text
+'net' Text
+'/' Text
+'dp' Text
+'/' Text
+'IMG' Text
+'/' Text
+'pdf' Text
+'/' Text
+'Kit_Info_Cote_d_Azur_FR_Version_sept_07' Text
+'.' Text
+'pdf' Text
+' ' Text
+'|' Punctuation
+'url-status' Name.Label
+'=' Operator
+'dead' Text
+' ' Text
+'|' Punctuation
+'archive-url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'web' Text
+'.' Text
+'archive' Text
+'.' Text
+'org' Text
+'/' Text
+'web' Text
+'/' Text
+'20100704173303' Text
+'/' Text
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'crdp' Text
+'-' Text
+'nice' Text
+'.' Text
+'net' Text
+'/' Text
+'dp' Text
+'/' Text
+'IMG' Text
+'/' Text
+'pdf' Text
+'/' Text
+'Kit_Info_Cote_d_Azur_FR_Version_sept_07' Text
+'.' Text
+'pdf' Text
+' ' Text
+'|' Punctuation
+'archive-date' Name.Label
+'=' Operator
+'4' Text
+' ' Text
+'July' Text
+' ' Text
+'2010' Text
+' ' Text
+'|' Punctuation
+'publisher' Name.Label
+'=' Operator
+'Côte' Text
+' ' Text
+'d' Text
+"'" Text
+'Azur' Text
+' ' Text
+'Economic' Text
+' ' Text
+'Development' Text
+' ' Text
+'Agency' Text
+' ' Text
+'|' Punctuation
+'language' Name.Label
+'=' Operator
+'fr' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Rp' Name.Tag
+'|' Punctuation
+'66' Text
+'}}' Punctuation
+'\n' Text
+
+'\n' Text
+
+'With' Text
+' ' Text
+'6' Text
+' ' Text
+'million' Text
+' ' Text
+'tourists' Text
+' ' Text
+'a' Text
+' ' Text
+'year' Text
+',' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Châteaux of the Loire Valley' Name.Tag
+'|' Punctuation
+'castles' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'Loire' Text
+' ' Text
+'Valley' Text
+']]' Punctuation
+' ' Text
+'(' Text
+'French' Text
+':' Text
+' ' Text
+"''" Generic.Emph
+'châteaux' Generic.Emph
+"''" Generic.Emph
+')' Text
+' ' Text
+'and' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Loire Valley' Name.Tag
+']]' Punctuation
+' ' Text
+'itself' Text
+' ' Text
+'are' Text
+' ' Text
+'the' Text
+' ' Text
+'third' Text
+' ' Text
+'leading' Text
+' ' Text
+'tourist' Text
+' ' Text
+'destination' Text
+' ' Text
+'in' Text
+' ' Text
+'France' Text
+';' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'news' Name.Tag
+' ' Text
+'|' Punctuation
+'last' Name.Label
+'=' Operator
+'Foucher' Text
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Tourism' Text
+':' Text
+' ' Text
+'The' Text
+' ' Text
+'Loire' Text
+' ' Text
+'Valley' Text
+',' Text
+' ' Text
+'an' Text
+' ' Text
+'intoxicating' Text
+' ' Text
+'destination' Text
+' ' Text
+'for' Text
+' ' Text
+'visitors' Text
+' ' Text
+'|' Punctuation
+'language' Name.Label
+'=' Operator
+'fr' Text
+' ' Text
+'|' Punctuation
+'work' Name.Label
+'=' Operator
+'TourMaG' Text
+'.' Text
+'com' Text
+',' Text
+' ' Text
+'1er' Text
+' ' Text
+'journal' Text
+' ' Text
+'des' Text
+' ' Text
+'professionnels' Text
+' ' Text
+'du' Text
+' ' Text
+'tourisme' Text
+' ' Text
+'francophone' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'tourmag' Text
+'.' Text
+'com' Text
+'/' Text
+'Tourism' Text
+'-' Text
+'The' Text
+'-' Text
+'Loire' Text
+'-' Text
+'Valley' Text
+'-' Text
+'an' Text
+'-' Text
+'intoxicating' Text
+'-' Text
+'destination' Text
+'-' Text
+'for' Text
+'-' Text
+'visitors_a67875' Text
+'.' Text
+'html' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'10' Text
+' ' Text
+'October' Text
+' ' Text
+'2018' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'news' Name.Tag
+' ' Text
+'|' Punctuation
+'date' Name.Label
+'=' Operator
+'12' Text
+' ' Text
+'July' Text
+' ' Text
+'2017' Text
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Chateaux' Text
+' ' Text
+'deluxe' Text
+':' Text
+' ' Text
+'5' Text
+' ' Text
+'best' Text
+' ' Text
+'Loire' Text
+' ' Text
+'Valley' Text
+' ' Text
+'castles' Text
+' ' Text
+'|' Punctuation
+'publisher' Name.Label
+'=' Operator
+'CNN' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'edition' Text
+'.' Text
+'cnn' Text
+'.' Text
+'com' Text
+'/' Text
+'travel' Text
+'/' Text
+'article' Text
+'/' Text
+'loire' Text
+'-' Text
+'valley' Text
+'-' Text
+'castles' Text
+'/' Text
+'index' Text
+'.' Text
+'html' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'10' Text
+' ' Text
+'October' Text
+' ' Text
+'2018' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'this' Text
+' ' Text
+'[[' Punctuation
+'World Heritage Site' Name.Tag
+']]' Punctuation
+' ' Text
+'is' Text
+' ' Text
+'noteworthy' Text
+' ' Text
+'for' Text
+' ' Text
+'its' Text
+' ' Text
+'architectural' Text
+' ' Text
+'heritage' Text
+',' Text
+' ' Text
+'in' Text
+' ' Text
+'its' Text
+' ' Text
+'historic' Text
+' ' Text
+'towns' Text
+' ' Text
+'but' Text
+' ' Text
+'in' Text
+' ' Text
+'particular' Text
+' ' Text
+'its' Text
+' ' Text
+'castles' Text
+',' Text
+' ' Text
+'such' Text
+' ' Text
+'as' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Château' Name.Tag
+']]' Punctuation
+'x' Text
+' ' Text
+'d' Text
+"'" Text
+'[[' Punctuation
+"Château d'Amboise" Name.Tag
+'|' Punctuation
+'Amboise' Text
+']]' Punctuation
+',' Text
+' ' Text
+'de' Text
+' ' Text
+'[[' Punctuation
+'Château de Chambord' Name.Tag
+'|' Punctuation
+'Chambord' Text
+']]' Punctuation
+',' Text
+' ' Text
+'d' Text
+"'" Text
+'[[' Punctuation
+"Château d'Ussé" Name.Tag
+'|' Punctuation
+'Ussé' Text
+']]' Punctuation
+',' Text
+' ' Text
+'de' Text
+' ' Text
+'[[' Punctuation
+'Château de Villandry' Name.Tag
+'|' Punctuation
+'Villandry' Text
+']]' Punctuation
+',' Text
+' ' Text
+'[[' Punctuation
+'Château de Chenonceau' Name.Tag
+'|' Punctuation
+'Chenonceau' Text
+']]' Punctuation
+' ' Text
+'and' Text
+' ' Text
+'[[' Punctuation
+'Château de Montsoreau' Name.Tag
+'|' Punctuation
+'Montsoreau' Text
+']]' Punctuation
+'.' Text
+' ' Text
+'The' Text
+' ' Text
+'[[' Punctuation
+'Château de Chantilly' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'[[' Punctuation
+'Palace of Versailles' Name.Tag
+'|' Punctuation
+'Versailles' Text
+']]' Punctuation
+' ' Text
+'and' Text
+' ' Text
+'[[' Punctuation
+'Vaux-le-Vicomte' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'all' Text
+' ' Text
+'three' Text
+' ' Text
+'located' Text
+' ' Text
+'near' Text
+' ' Text
+'Paris' Text
+',' Text
+' ' Text
+'are' Text
+' ' Text
+'also' Text
+' ' Text
+'visitor' Text
+' ' Text
+'attractions' Text
+'.' Text
+'\n' Text
+
+'\n' Text
+
+'France' Text
+' ' Text
+'has' Text
+' ' Text
+'37' Text
+' ' Text
+'sites' Text
+' ' Text
+'inscribed' Text
+' ' Text
+'in' Text
+' ' Text
+'[[' Punctuation
+'List of World Heritage Sites in France' Name.Tag
+'|' Punctuation
+'UNESCO' Text
+"'" Text
+'s' Text
+' ' Text
+'World' Text
+' ' Text
+'Heritage' Text
+' ' Text
+'List' Text
+']]' Punctuation
+' ' Text
+'and' Text
+' ' Text
+'features' Text
+' ' Text
+'cities' Text
+' ' Text
+'of' Text
+' ' Text
+'high' Text
+' ' Text
+'cultural' Text
+' ' Text
+'interest' Text
+',' Text
+' ' Text
+'beaches' Text
+' ' Text
+'and' Text
+' ' Text
+'seaside' Text
+' ' Text
+'resorts' Text
+',' Text
+' ' Text
+'ski' Text
+' ' Text
+'resorts' Text
+',' Text
+' ' Text
+'as' Text
+' ' Text
+'well' Text
+' ' Text
+'as' Text
+' ' Text
+'rural' Text
+' ' Text
+'regions' Text
+' ' Text
+'that' Text
+' ' Text
+'many' Text
+' ' Text
+'enjoy' Text
+' ' Text
+'for' Text
+' ' Text
+'their' Text
+' ' Text
+'beauty' Text
+' ' Text
+'and' Text
+' ' Text
+'tranquillity' Text
+' ' Text
+'(' Text
+'[[' Punctuation
+'Ecotourism' Name.Tag
+'|' Punctuation
+'green' Text
+' ' Text
+'tourism' Text
+']]' Punctuation
+')' Text
+'.' Text
+' ' Text
+'Small' Text
+' ' Text
+'and' Text
+' ' Text
+'picturesque' Text
+' ' Text
+'French' Text
+' ' Text
+'villages' Text
+' ' Text
+'are' Text
+' ' Text
+'promoted' Text
+' ' Text
+'through' Text
+' ' Text
+'the' Text
+' ' Text
+'association' Text
+' ' Text
+"''" Generic.Emph
+'[[' Punctuation
+'Les Plus Beaux Villages de France' Name.Tag
+']]' Punctuation
+"''" Generic.Emph
+' ' Text
+'(' Text
+'literally' Text
+' ' Text
+'"' Text
+'The' Text
+' ' Text
+'Most' Text
+' ' Text
+'Beautiful' Text
+' ' Text
+'Villages' Text
+' ' Text
+'of' Text
+' ' Text
+'France' Text
+'"' Text
+')' Text
+'.' Text
+' ' Text
+'The' Text
+' ' Text
+'"' Text
+'[[' Punctuation
+'Remarkable Gardens of France' Name.Tag
+'|' Punctuation
+'Remarkable' Text
+' ' Text
+'Gardens' Text
+']]' Punctuation
+'"' Text
+' ' Text
+'label' Text
+' ' Text
+'is' Text
+' ' Text
+'a' Text
+' ' Text
+'list' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'over' Text
+' ' Text
+'200' Text
+' ' Text
+'gardens' Text
+' ' Text
+'classified' Text
+' ' Text
+'by' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Ministry of Culture (France)' Name.Tag
+'|' Punctuation
+'Ministry' Text
+' ' Text
+'of' Text
+' ' Text
+'Culture' Text
+']]' Punctuation
+'.' Text
+' ' Text
+'This' Text
+' ' Text
+'label' Text
+' ' Text
+'is' Text
+' ' Text
+'intended' Text
+' ' Text
+'to' Text
+' ' Text
+'protect' Text
+' ' Text
+'and' Text
+' ' Text
+'promote' Text
+' ' Text
+'remarkable' Text
+' ' Text
+'gardens' Text
+' ' Text
+'and' Text
+' ' Text
+'parks' Text
+'.' Text
+' ' Text
+'France' Text
+' ' Text
+'attracts' Text
+' ' Text
+'many' Text
+' ' Text
+'religious' Text
+' ' Text
+'[[' Punctuation
+'Christian pilgrimage' Name.Tag
+'|' Punctuation
+'pilgrims' Text
+']]' Punctuation
+' ' Text
+'on' Text
+' ' Text
+'their' Text
+' ' Text
+'[[' Punctuation
+'Way of St. James' Name.Tag
+'|' Punctuation
+'way' Text
+' ' Text
+'to' Text
+' ' Text
+'St' Text
+'.' Text
+' ' Text
+'James' Text
+']]' Punctuation
+',' Text
+' ' Text
+'or' Text
+' ' Text
+'to' Text
+' ' Text
+'[[' Punctuation
+'Lourdes' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'a' Text
+' ' Text
+'town' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Hautes-Pyrénées' Name.Tag
+']]' Punctuation
+' ' Text
+'that' Text
+' ' Text
+'hosts' Text
+' ' Text
+'several' Text
+' ' Text
+'million' Text
+' ' Text
+'visitors' Text
+' ' Text
+'a' Text
+' ' Text
+'year' Text
+'.' Text
+'\n' Text
+
+'\n' Text
+
+'===' Generic.Subheading
+'Energy' Generic.Subheading
+'===' Generic.Subheading
+'\n' Text.Whitespace
+
+'{{' Punctuation
+'Further' Name.Tag
+'|' Punctuation
+'Energy' Text
+' ' Text
+'in' Text
+' ' Text
+'France' Text
+'}}' Punctuation
+'\n' Text
+
+'[[' Punctuation
+'File' Name.Namespace
+':' Punctuation
+'Centrale EDF de Belleville-FR-18-a05.jpg' Name.Tag
+'|' Punctuation
+'thumb' Text
+'|' Punctuation
+'left' Text
+'|' Punctuation
+'alt' Name.Attribute
+'=' Operator
+'Nuclear' Text
+' ' Text
+'power' Text
+' ' Text
+'plant' Text
+' ' Text
+'in' Text
+' ' Text
+'Cattenom' Text
+',' Text
+' ' Text
+'France' Text
+' ' Text
+'four' Text
+' ' Text
+'large' Text
+' ' Text
+'cooling' Text
+' ' Text
+'towers' Text
+' ' Text
+'expelling' Text
+' ' Text
+'white' Text
+' ' Text
+'water' Text
+' ' Text
+'vapour' Text
+' ' Text
+'against' Text
+' ' Text
+'a' Text
+' ' Text
+'blue' Text
+' ' Text
+'sky' Text
+'|' Punctuation
+'[[' Punctuation
+'Belleville Nuclear Power Plant' Name.Tag
+']]' Punctuation
+'.' Text
+' ' Text
+'France' Text
+' ' Text
+'derives' Text
+' ' Text
+'most' Text
+' ' Text
+'of' Text
+' ' Text
+'its' Text
+' ' Text
+'electricity' Text
+' ' Text
+'from' Text
+' ' Text
+'[[' Punctuation
+'Nuclear power in France' Name.Tag
+'|' Punctuation
+'nuclear' Text
+' ' Text
+'power' Text
+']]' Punctuation
+',' Text
+' ' Text
+'the' Text
+' ' Text
+'highest' Text
+' ' Text
+'percentage' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'world' Text
+'.' Text
+' ' Text
+']]' Punctuation
+'\n' Text
+
+'France' Text
+' ' Text
+'is' Text
+' ' Text
+'the' Text
+' ' Text
+'world' Text
+"'" Text
+'s' Text
+' ' Text
+'tenth' Text
+'-' Text
+'largest' Text
+' ' Text
+'producer' Text
+' ' Text
+'of' Text
+' ' Text
+'electricity' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'BP' Text
+' ' Text
+'Statistical' Text
+' ' Text
+'Review' Text
+' ' Text
+'of' Text
+' ' Text
+'World' Text
+' ' Text
+'Energy' Text
+' ' Text
+'July' Text
+' ' Text
+'2021' Text
+'"' Text
+'.' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'bp' Text
+'.' Text
+'com' Text
+'/' Text
+'content' Text
+'/' Text
+'dam' Text
+'/' Text
+'bp' Text
+'/' Text
+'business' Text
+'-' Text
+'sites' Text
+'/' Text
+'en' Text
+'/' Text
+'global' Text
+'/' Text
+'corporate' Text
+'/' Text
+'xlsx' Text
+'/' Text
+'energy' Text
+'-' Text
+'economics' Text
+'/' Text
+'statistical' Text
+'-' Text
+'review' Text
+'/' Text
+'bp' Text
+'-' Text
+'stats' Text
+'-' Text
+'review' Text
+'-' Text
+'2021' Text
+'-' Text
+'all' Text
+'-' Text
+'data' Text
+'.' Text
+'xlsx' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'[[' Punctuation
+'Électricité de France' Name.Tag
+']]' Punctuation
+' ' Text
+'(' Text
+'EDF' Text
+')' Text
+',' Text
+' ' Text
+'which' Text
+' ' Text
+'is' Text
+' ' Text
+'majority' Text
+'-' Text
+'owned' Text
+' ' Text
+'by' Text
+' ' Text
+'the' Text
+' ' Text
+'French' Text
+' ' Text
+'government' Text
+',' Text
+' ' Text
+'is' Text
+' ' Text
+'the' Text
+' ' Text
+'country' Text
+"'" Text
+'s' Text
+' ' Text
+'main' Text
+' ' Text
+'producer' Text
+' ' Text
+'and' Text
+' ' Text
+'distributor' Text
+' ' Text
+'of' Text
+' ' Text
+'electricity' Text
+',' Text
+' ' Text
+'and' Text
+' ' Text
+'one' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'world' Text
+"'" Text
+'s' Text
+' ' Text
+'largest' Text
+' ' Text
+'[[' Punctuation
+'Electric utility' Name.Tag
+'|' Punctuation
+'electric' Text
+' ' Text
+'utility' Text
+' ' Text
+'companies' Text
+']]' Punctuation
+',' Text
+' ' Text
+'ranking' Text
+' ' Text
+'third' Text
+' ' Text
+'in' Text
+' ' Text
+'revenue' Text
+' ' Text
+'globally' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'date' Name.Label
+'=' Operator
+'19' Text
+' ' Text
+'March' Text
+' ' Text
+'2019' Text
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'The' Text
+' ' Text
+'ten' Text
+' ' Text
+'biggest' Text
+' ' Text
+'power' Text
+' ' Text
+'companies' Text
+' ' Text
+'in' Text
+' ' Text
+'2018' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'power' Text
+'-' Text
+'technology' Text
+'.' Text
+'com' Text
+'/' Text
+'features' Text
+'/' Text
+'top' Text
+'-' Text
+'10' Text
+'-' Text
+'power' Text
+'-' Text
+'companies' Text
+'-' Text
+'in' Text
+'-' Text
+'the' Text
+'-' Text
+'world' Text
+'/' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'5' Text
+' ' Text
+'February' Text
+' ' Text
+'2022' Text
+' ' Text
+'|' Punctuation
+'website' Name.Label
+'=' Operator
+'Power' Text
+' ' Text
+'Technology' Text
+' ' Text
+'|' Punctuation
+'language' Name.Label
+'=' Operator
+'en' Text
+'-' Text
+'US' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'In' Text
+' ' Text
+'2018' Text
+',' Text
+' ' Text
+'EDF' Text
+' ' Text
+'produced' Text
+' ' Text
+'around' Text
+' ' Text
+'one' Text
+'-' Text
+'fifth' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'European Union' Name.Tag
+']]' Punctuation
+"'" Text
+'s' Text
+' ' Text
+'electricity' Text
+',' Text
+' ' Text
+'primarily' Text
+' ' Text
+'from' Text
+' ' Text
+'[[' Punctuation
+'nuclear power' Name.Tag
+']]' Punctuation
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'[' Punctuation
+'https://ec.europa.eu/eurostat/statistics-explained/index.php/Electricity_production,_consumption_and_market_overview#:~:text=Germany%20had%20the%20highest%20level,with%20a%20double%2Ddigit%20share.' Name.Label
+' ' Text.Whitespace
+'Electricity' Text
+' ' Text
+'production' Text
+',' Text
+' ' Text
+'consumption' Text
+' ' Text
+'and' Text
+' ' Text
+'market' Text
+' ' Text
+'overview' Text
+']' Punctuation
+',' Text
+' ' Text
+'[[' Punctuation
+'Eurostat' Name.Tag
+']]' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'As' Text
+' ' Text
+'of' Text
+' ' Text
+'2021' Text
+',' Text
+' ' Text
+'France' Text
+' ' Text
+'was' Text
+' ' Text
+'the' Text
+' ' Text
+'biggest' Text
+' ' Text
+'energy' Text
+' ' Text
+'exporter' Text
+' ' Text
+'in' Text
+' ' Text
+'Europe' Text
+',' Text
+' ' Text
+'mostly' Text
+' ' Text
+'to' Text
+' ' Text
+'the' Text
+' ' Text
+'U' Text
+'.' Text
+'K' Text
+'.' Text
+' ' Text
+'and' Text
+' ' Text
+'Italy' Text
+',' Text
+'<' Punctuation
+'ref' Name.Tag
+' ' Text.Whitespace
+'name' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+':' Literal.String.Double
+'3' Literal.String.Double
+'"' Literal.String.Double
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Nuclear' Text
+' ' Text
+'Power' Text
+' ' Text
+'in' Text
+' ' Text
+'France' Text
+' ' Text
+'{{' Punctuation
+'!' Name.Function
+'}}' Punctuation
+' ' Text
+'French' Text
+' ' Text
+'Nuclear' Text
+' ' Text
+'Energy' Text
+' ' Text
+'-' Text
+' ' Text
+'World' Text
+' ' Text
+'Nuclear' Text
+' ' Text
+'Association' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'world' Text
+'-' Text
+'nuclear' Text
+'.' Text
+'org' Text
+'/' Text
+'information' Text
+'-' Text
+'library' Text
+'/' Text
+'country' Text
+'-' Text
+'profiles' Text
+'/' Text
+'countries' Text
+'-' Text
+'a' Text
+'-' Text
+'f' Text
+'/' Text
+'france' Text
+'.' Text
+'aspx' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'5' Text
+' ' Text
+'February' Text
+' ' Text
+'2022' Text
+' ' Text
+'|' Punctuation
+'website' Name.Label
+'=' Operator
+'world' Text
+'-' Text
+'nuclear' Text
+'.' Text
+'org' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'and' Text
+' ' Text
+'the' Text
+' ' Text
+'largest' Text
+' ' Text
+'net' Text
+' ' Text
+'exporter' Text
+' ' Text
+'of' Text
+' ' Text
+'electricity' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'world' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+' ' Text.Whitespace
+'name' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+':' Literal.String.Double
+'3' Literal.String.Double
+'"' Literal.String.Double
+' ' Text.Whitespace
+'/>' Punctuation
+'\n' Text
+
+'\n' Text
+
+'Since' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'1973 oil crisis' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'France' Text
+' ' Text
+'has' Text
+' ' Text
+'pursued' Text
+' ' Text
+'a' Text
+' ' Text
+'strong' Text
+' ' Text
+'policy' Text
+' ' Text
+'of' Text
+' ' Text
+'[[' Punctuation
+'energy security' Name.Tag
+']]' Punctuation
+',' Text
+'<' Punctuation
+'ref' Name.Tag
+' ' Text.Whitespace
+'name' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+':' Literal.String.Double
+'3' Literal.String.Double
+'"' Literal.String.Double
+' ' Text.Whitespace
+'/>' Punctuation
+' ' Text
+'namely' Text
+' ' Text
+'through' Text
+' ' Text
+'[[' Punctuation
+'Nuclear power in France' Name.Tag
+'|' Punctuation
+'heavy' Text
+' ' Text
+'investment' Text
+' ' Text
+'in' Text
+' ' Text
+'nuclear' Text
+' ' Text
+'energy' Text
+']]' Punctuation
+'.' Text
+' ' Text
+'It' Text
+' ' Text
+'is' Text
+' ' Text
+'one' Text
+' ' Text
+'of' Text
+' ' Text
+'32' Text
+' ' Text
+'countries' Text
+' ' Text
+'with' Text
+' ' Text
+'[[' Punctuation
+'nuclear power plant' Name.Tag
+']]' Punctuation
+'s' Text
+',' Text
+' ' Text
+'ranking' Text
+' ' Text
+'second' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'world' Text
+' ' Text
+'by' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Nuclear power by country' Name.Tag
+'|' Punctuation
+'number' Text
+' ' Text
+'of' Text
+' ' Text
+'operational' Text
+' ' Text
+'nuclear' Text
+' ' Text
+'reactors' Text
+']]' Punctuation
+',' Text
+' ' Text
+'at' Text
+' ' Text
+'56' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'PRIS' Text
+' ' Text
+'-' Text
+' ' Text
+'Miscellaneous' Text
+' ' Text
+'reports' Text
+' ' Text
+'-' Text
+' ' Text
+'Nuclear' Text
+' ' Text
+'Share' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'pris' Text
+'.' Text
+'iaea' Text
+'.' Text
+'org' Text
+'/' Text
+'PRIS' Text
+'/' Text
+'WorldStatistics' Text
+'/' Text
+'NuclearShareofElectricityGeneration' Text
+'.' Text
+'aspx' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'5' Text
+' ' Text
+'February' Text
+' ' Text
+'2022' Text
+' ' Text
+'|' Punctuation
+'website' Name.Label
+'=' Operator
+'pris' Text
+'.' Text
+'iaea' Text
+'.' Text
+'org' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'Consequently' Text
+',' Text
+' ' Text
+'70' Text
+'%' Text
+' ' Text
+'of' Text
+' ' Text
+'France' Text
+"'" Text
+'s' Text
+' ' Text
+'electricity' Text
+' ' Text
+'is' Text
+' ' Text
+'generated' Text
+' ' Text
+'by' Text
+' ' Text
+'nuclear' Text
+' ' Text
+'power' Text
+',' Text
+' ' Text
+'the' Text
+' ' Text
+'highest' Text
+' ' Text
+'proportion' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'world' Text
+' ' Text
+'by' Text
+' ' Text
+'a' Text
+' ' Text
+'wide' Text
+' ' Text
+'margin' Text
+';' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'date' Name.Label
+'=' Operator
+'April' Text
+' ' Text
+'2017' Text
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Nuclear' Text
+' ' Text
+'share' Text
+' ' Text
+'figures' Text
+',' Text
+' ' Text
+'2006' Text
+'–' Text
+'2016' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'world' Text
+'-' Text
+'nuclear' Text
+'.' Text
+'org' Text
+'/' Text
+'info' Text
+'/' Text
+'Facts' Text
+'-' Text
+'and' Text
+'-' Text
+'Figures' Text
+'/' Text
+'Nuclear' Text
+'-' Text
+'generation' Text
+'-' Text
+'by' Text
+'-' Text
+'country' Text
+'/' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'8' Text
+' ' Text
+'January' Text
+' ' Text
+'2018' Text
+' ' Text
+'|' Punctuation
+'publisher' Name.Label
+'=' Operator
+'World' Text
+' ' Text
+'Nuclear' Text
+' ' Text
+'Association' Text
+' ' Text
+'|' Punctuation
+'archive-date' Name.Label
+'=' Operator
+'1' Text
+' ' Text
+'October' Text
+' ' Text
+'2013' Text
+' ' Text
+'|' Punctuation
+'archive-url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'web' Text
+'.' Text
+'archive' Text
+'.' Text
+'org' Text
+'/' Text
+'web' Text
+'/' Text
+'20131001103413' Text
+'/' Text
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'world' Text
+'-' Text
+'nuclear' Text
+'.' Text
+'org' Text
+'/' Text
+'info' Text
+'/' Text
+'Facts' Text
+'-' Text
+'and' Text
+'-' Text
+'Figures' Text
+'/' Text
+'Nuclear' Text
+'-' Text
+'generation' Text
+'-' Text
+'by' Text
+'-' Text
+'country' Text
+'/' Text
+' ' Text
+'|' Punctuation
+'url-status' Name.Label
+'=' Operator
+'dead' Text
+' ' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'only' Text
+' ' Text
+'Slovakia' Text
+' ' Text
+'and' Text
+' ' Text
+'Ukraine' Text
+' ' Text
+'derive' Text
+' ' Text
+'a' Text
+' ' Text
+'majority' Text
+' ' Text
+'of' Text
+' ' Text
+'electricity' Text
+' ' Text
+'from' Text
+' ' Text
+'nuclear' Text
+' ' Text
+'power' Text
+',' Text
+' ' Text
+'at' Text
+' ' Text
+'roughly' Text
+' ' Text
+'53' Text
+'%' Text
+' ' Text
+'and' Text
+' ' Text
+'51' Text
+'%' Text
+',' Text
+' ' Text
+'respectively' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'France' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'iaea' Text
+'.' Text
+'org' Text
+'/' Text
+'pris' Text
+'/' Text
+'CountryStatistics' Text
+'/' Text
+'CountryDetails' Text
+'.' Text
+'aspx' Text
+'?' Text
+'current' Text
+'=' Text
+'FR' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'8' Text
+' ' Text
+'January' Text
+' ' Text
+'2018' Text
+' ' Text
+'|' Punctuation
+'website' Name.Label
+'=' Operator
+'IAEA' Text
+' ' Text
+'{{' Punctuation
+'!' Name.Function
+'}}' Punctuation
+' ' Text
+'PRIS' Text
+' ' Text
+'Power' Text
+' ' Text
+'Reactor' Text
+' ' Text
+'Information' Text
+' ' Text
+'System' Text
+' ' Text
+'|' Punctuation
+'publisher' Name.Label
+'=' Operator
+'International' Text
+' ' Text
+'Atomic' Text
+' ' Text
+'Energy' Text
+' ' Text
+'Agency' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'France' Text
+' ' Text
+'is' Text
+' ' Text
+'considered' Text
+' ' Text
+'a' Text
+' ' Text
+'world' Text
+' ' Text
+'leader' Text
+' ' Text
+'in' Text
+' ' Text
+'nuclear' Text
+' ' Text
+'technology' Text
+',' Text
+' ' Text
+'with' Text
+' ' Text
+'reactors' Text
+' ' Text
+'and' Text
+' ' Text
+'fuel' Text
+' ' Text
+'products' Text
+' ' Text
+'being' Text
+' ' Text
+'major' Text
+' ' Text
+'exports' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+' ' Text.Whitespace
+'name' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+':' Literal.String.Double
+'3' Literal.String.Double
+'"' Literal.String.Double
+' ' Text.Whitespace
+'/>' Punctuation
+'\n' Text
+
+'\n' Text
+
+'Due' Text
+' ' Text
+'to' Text
+' ' Text
+'its' Text
+' ' Text
+'overwhelming' Text
+' ' Text
+'reliance' Text
+' ' Text
+'on' Text
+' ' Text
+'nuclear' Text
+' ' Text
+'power' Text
+',' Text
+' ' Text
+'[[' Punctuation
+'Renewable energy' Name.Tag
+'|' Punctuation
+'renewable' Text
+' ' Text
+'energies' Text
+']]' Punctuation
+' ' Text
+'have' Text
+' ' Text
+'seen' Text
+' ' Text
+'relatively' Text
+' ' Text
+'little' Text
+' ' Text
+'growth' Text
+' ' Text
+'compared' Text
+' ' Text
+'to' Text
+' ' Text
+'other' Text
+' ' Text
+'Western' Text
+' ' Text
+'countries' Text
+'.' Text
+' ' Text
+'Nevertheless' Text
+',' Text
+' ' Text
+'between' Text
+' ' Text
+'2008' Text
+' ' Text
+'and' Text
+' ' Text
+'2019' Text
+',' Text
+' ' Text
+'France' Text
+"'" Text
+'s' Text
+' ' Text
+'production' Text
+' ' Text
+'capacity' Text
+' ' Text
+'from' Text
+' ' Text
+'renewable' Text
+' ' Text
+'energies' Text
+' ' Text
+'rose' Text
+' ' Text
+'consistently' Text
+' ' Text
+'and' Text
+' ' Text
+'nearly' Text
+' ' Text
+'doubled' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+' ' Text.Whitespace
+'name' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+':' Literal.String.Double
+'5' Literal.String.Double
+'"' Literal.String.Double
+' ' Text.Whitespace
+'/>' Punctuation
+' ' Text
+'[[' Punctuation
+'Hydropower' Name.Tag
+']]' Punctuation
+' ' Text
+'is' Text
+' ' Text
+'by' Text
+' ' Text
+'far' Text
+' ' Text
+'the' Text
+' ' Text
+'leading' Text
+' ' Text
+'source' Text
+',' Text
+' ' Text
+'accounting' Text
+' ' Text
+'for' Text
+' ' Text
+'over' Text
+' ' Text
+'half' Text
+' ' Text
+'the' Text
+' ' Text
+'country' Text
+"'" Text
+'s' Text
+' ' Text
+'renewable' Text
+' ' Text
+'energy' Text
+' ' Text
+'sources' Text
+'<' Punctuation
+'ref' Name.Tag
+' ' Text.Whitespace
+'name' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+':' Literal.String.Double
+'4' Literal.String.Double
+'"' Literal.String.Double
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'France' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'hydropower' Text
+'.' Text
+'org' Text
+'/' Text
+'country' Text
+'-' Text
+'profiles' Text
+'/' Text
+'france' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'5' Text
+' ' Text
+'February' Text
+' ' Text
+'2022' Text
+' ' Text
+'|' Punctuation
+'website' Name.Label
+'=' Operator
+'hydropower' Text
+'.' Text
+'org' Text
+' ' Text
+'|' Punctuation
+'language' Name.Label
+'=' Operator
+'en' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'and' Text
+' ' Text
+'contributing' Text
+' ' Text
+'13' Text
+'%' Text
+' ' Text
+'of' Text
+' ' Text
+'its' Text
+' ' Text
+'electricity' Text
+',' Text
+'<' Punctuation
+'ref' Name.Tag
+' ' Text.Whitespace
+'name' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+':' Literal.String.Double
+'5' Literal.String.Double
+'"' Literal.String.Double
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Topic' Text
+':' Text
+' ' Text
+'Hydropower' Text
+' ' Text
+'in' Text
+' ' Text
+'France' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'statista' Text
+'.' Text
+'com' Text
+'/' Text
+'topics' Text
+'/' Text
+'6308' Text
+'/' Text
+'hydropower' Text
+'-' Text
+'in' Text
+'-' Text
+'france' Text
+'/' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'5' Text
+' ' Text
+'February' Text
+' ' Text
+'2022' Text
+' ' Text
+'|' Punctuation
+'website' Name.Label
+'=' Operator
+'Statista' Text
+' ' Text
+'|' Punctuation
+'language' Name.Label
+'=' Operator
+'en' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'the' Text
+' ' Text
+'highest' Text
+' ' Text
+'proportion' Text
+' ' Text
+'in' Text
+' ' Text
+'Europe' Text
+' ' Text
+'after' Text
+' ' Text
+'Norway' Text
+' ' Text
+'and' Text
+' ' Text
+'Turkey' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+' ' Text.Whitespace
+'name' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+':' Literal.String.Double
+'4' Literal.String.Double
+'"' Literal.String.Double
+' ' Text.Whitespace
+'/>' Punctuation
+' ' Text
+'As' Text
+' ' Text
+'with' Text
+' ' Text
+'nuclear' Text
+' ' Text
+'power' Text
+',' Text
+' ' Text
+'most' Text
+' ' Text
+'hydroelectric' Text
+' ' Text
+'plants' Text
+',' Text
+' ' Text
+'such' Text
+' ' Text
+'as' Text
+' ' Text
+'[[' Punctuation
+'Eguzon dam' Name.Tag
+'|' Punctuation
+'Eguzon' Text
+']]' Punctuation
+',' Text
+' ' Text
+'[[' Punctuation
+'Étang de Soulcem' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'and' Text
+' ' Text
+'[[' Punctuation
+'Lac de Vouglans' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'are' Text
+' ' Text
+'managed' Text
+' ' Text
+'by' Text
+' ' Text
+'EDF' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+' ' Text.Whitespace
+'name' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+':' Literal.String.Double
+'4' Literal.String.Double
+'"' Literal.String.Double
+' ' Text.Whitespace
+'/>' Punctuation
+' ' Text
+'France' Text
+' ' Text
+'aims' Text
+' ' Text
+'to' Text
+' ' Text
+'further' Text
+' ' Text
+'expand' Text
+' ' Text
+'hydropower' Text
+' ' Text
+'into' Text
+' ' Text
+'2040' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+' ' Text.Whitespace
+'name' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+':' Literal.String.Double
+'5' Literal.String.Double
+'"' Literal.String.Double
+' ' Text.Whitespace
+'/>' Punctuation
+'\n' Text
+
+'\n' Text
+
+'France' Text
+' ' Text
+'made' Text
+' ' Text
+'minimal' Text
+' ' Text
+'but' Text
+' ' Text
+'measurable' Text
+' ' Text
+'investments' Text
+' ' Text
+'in' Text
+' ' Text
+'other' Text
+' ' Text
+'renewable' Text
+' ' Text
+'energy' Text
+' ' Text
+'sources' Text
+'.' Text
+' ' Text
+'Due' Text
+' ' Text
+'to' Text
+' ' Text
+'its' Text
+' ' Text
+'geography' Text
+' ' Text
+'and' Text
+' ' Text
+'extensive' Text
+' ' Text
+'agricultural' Text
+' ' Text
+'land' Text
+',' Text
+' ' Text
+'it' Text
+' ' Text
+'has' Text
+' ' Text
+'the' Text
+' ' Text
+'second' Text
+'-' Text
+'largest' Text
+' ' Text
+'wind' Text
+' ' Text
+'energy' Text
+' ' Text
+'potential' Text
+' ' Text
+'in' Text
+' ' Text
+'Europe' Text
+',' Text
+' ' Text
+'and' Text
+' ' Text
+'by' Text
+' ' Text
+'2017' Text
+' ' Text
+'had' Text
+' ' Text
+'ranked' Text
+' ' Text
+'eighth' Text
+' ' Text
+'globally' Text
+' ' Text
+'in' Text
+' ' Text
+'installed' Text
+' ' Text
+'wind' Text
+' ' Text
+'capacity' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'France' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'wind' Text
+'-' Text
+'energy' Text
+'-' Text
+'the' Text
+'-' Text
+'facts' Text
+'.' Text
+'org' Text
+'/' Text
+'france' Text
+'.' Text
+'html' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'5' Text
+' ' Text
+'February' Text
+' ' Text
+'2022' Text
+' ' Text
+'|' Punctuation
+'website' Name.Label
+'=' Operator
+'wind' Text
+'-' Text
+'energy' Text
+'-' Text
+'the' Text
+'-' Text
+'facts' Text
+'.' Text
+'org' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'In' Text
+' ' Text
+'terms' Text
+' ' Text
+'of' Text
+' ' Text
+'solar' Text
+' ' Text
+'power' Text
+',' Text
+' ' Text
+'France' Text
+' ' Text
+'ranked' Text
+' ' Text
+'seventh' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'world' Text
+' ' Text
+'in' Text
+' ' Text
+'2015' Text
+' ' Text
+'for' Text
+' ' Text
+'solar' Text
+' ' Text
+'photovoltaic' Text
+' ' Text
+'installation' Text
+' ' Text
+'capacity' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'[' Punctuation
+'http://www.iea-pvps.org/fileadmin/dam/public/report/statistics/IEA-PVPS_-__A_Snapshot_of_Global_PV_-_1992-2015_-_Final.pdf' Name.Label
+' ' Text.Whitespace
+'Snapshot' Text
+' ' Text
+'of' Text
+' ' Text
+'Global' Text
+' ' Text
+'Photovoltaic' Text
+' ' Text
+'Markets' Text
+',' Text
+' ' Text
+'IEA' Text
+' ' Text
+'PVPS' Text
+',' Text
+' ' Text
+"'''" Generic.Strong
+'p' Generic.Strong
+'.' Generic.Strong
+' ' Generic.Strong
+'14' Generic.Strong
+"'''" Generic.Strong
+']' Punctuation
+'"' Text
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'As' Text
+' ' Text
+'of' Text
+' ' Text
+'2019' Text
+',' Text
+' ' Text
+'solar' Text
+' ' Text
+'power' Text
+' ' Text
+'sources' Text
+' ' Text
+'generated' Text
+' ' Text
+'over' Text
+' ' Text
+'10' Text
+',' Text
+'570' Text
+' ' Text
+'megawatts' Text
+' ' Text
+'of' Text
+' ' Text
+'electricity' Text
+',' Text
+' ' Text
+'compared' Text
+' ' Text
+'to' Text
+' ' Text
+'a' Text
+' ' Text
+'little' Text
+' ' Text
+'over' Text
+' ' Text
+'1' Text
+',' Text
+'000' Text
+' ' Text
+'megawatts' Text
+' ' Text
+'in' Text
+' ' Text
+'2010' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'France' Text
+' ' Text
+'Distributed' Text
+' ' Text
+'Solar' Text
+' ' Text
+'Power' Text
+' ' Text
+'Generation' Text
+' ' Text
+'Market' Text
+' ' Text
+'{{' Punctuation
+'!' Name.Function
+'}}' Punctuation
+' ' Text
+'2022' Text
+' ' Text
+'-' Text
+' ' Text
+'27' Text
+' ' Text
+'{{' Punctuation
+'!' Name.Function
+'}}' Punctuation
+' ' Text
+'Industry' Text
+' ' Text
+'Share' Text
+',' Text
+' ' Text
+'Size' Text
+',' Text
+' ' Text
+'Growth' Text
+' ' Text
+'-' Text
+' ' Text
+'Mordor' Text
+' ' Text
+'Intelligence' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'mordorintelligence' Text
+'.' Text
+'com' Text
+'/' Text
+'industry' Text
+'-' Text
+'reports' Text
+'/' Text
+'france' Text
+'-' Text
+'distributed' Text
+'-' Text
+'solar' Text
+'-' Text
+'power' Text
+'-' Text
+'generation' Text
+'-' Text
+'market' Text
+'-' Text
+'industry' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'5' Text
+' ' Text
+'February' Text
+' ' Text
+'2022' Text
+' ' Text
+'|' Punctuation
+'website' Name.Label
+'=' Operator
+'mordorintelligence' Text
+'.' Text
+'com' Text
+' ' Text
+'|' Punctuation
+'language' Name.Label
+'=' Operator
+'en' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'\n' Text
+
+'\n' Text
+
+'Because' Text
+' ' Text
+'France' Text
+' ' Text
+'derives' Text
+' ' Text
+'the' Text
+' ' Text
+'vast' Text
+' ' Text
+'majority' Text
+' ' Text
+'of' Text
+' ' Text
+'its' Text
+' ' Text
+'power' Text
+' ' Text
+'from' Text
+' ' Text
+'nuclear' Text
+' ' Text
+'and' Text
+' ' Text
+'renewable' Text
+' ' Text
+'sources' Text
+',' Text
+' ' Text
+'close' Text
+' ' Text
+'to' Text
+' ' Text
+'half' Text
+' ' Text
+'its' Text
+' ' Text
+'primary' Text
+' ' Text
+'energy' Text
+' ' Text
+'(' Text
+'48' Text
+'.' Text
+'5' Text
+'%' Text
+')' Text
+' ' Text
+'is' Text
+' ' Text
+'derived' Text
+' ' Text
+'from' Text
+' ' Text
+'low' Text
+'-' Text
+'carbon' Text
+' ' Text
+'sources' Text
+',' Text
+' ' Text
+'compared' Text
+' ' Text
+'to' Text
+' ' Text
+'26' Text
+'.' Text
+'4' Text
+'%' Text
+' ' Text
+'in' Text
+' ' Text
+'Europe' Text
+' ' Text
+'and' Text
+' ' Text
+'15' Text
+'.' Text
+'7' Text
+'%' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'world' Text
+' ' Text
+'as' Text
+' ' Text
+'a' Text
+' ' Text
+'whole' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Share' Text
+' ' Text
+'of' Text
+' ' Text
+'primary' Text
+' ' Text
+'energy' Text
+' ' Text
+'from' Text
+' ' Text
+'low' Text
+'-' Text
+'carbon' Text
+' ' Text
+'sources' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'ourworldindata' Text
+'.' Text
+'org' Text
+'/' Text
+'grapher' Text
+'/' Text
+'low' Text
+'-' Text
+'carbon' Text
+'-' Text
+'share' Text
+'-' Text
+'energy' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'5' Text
+' ' Text
+'February' Text
+' ' Text
+'2022' Text
+' ' Text
+'|' Punctuation
+'website' Name.Label
+'=' Operator
+'Our' Text
+' ' Text
+'World' Text
+' ' Text
+'in' Text
+' ' Text
+'Data' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'France' Text
+' ' Text
+'is' Text
+' ' Text
+'also' Text
+' ' Text
+'the' Text
+' ' Text
+'smallest' Text
+' ' Text
+'emitter' Text
+' ' Text
+'of' Text
+' ' Text
+'[[' Punctuation
+'Greenhouse gas' Name.Tag
+'|' Punctuation
+'carbon' Text
+' ' Text
+'dioxide' Text
+']]' Punctuation
+' ' Text
+'among' Text
+' ' Text
+'the' Text
+' ' Text
+'G7' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'date' Name.Label
+'=' Operator
+'July' Text
+' ' Text
+'2010' Text
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Greenhouse' Text
+' ' Text
+'Gas' Text
+' ' Text
+'Emissions' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'unstats' Text
+'.' Text
+'un' Text
+'.' Text
+'org' Text
+'/' Text
+'unsd' Text
+'/' Text
+'environment' Text
+'/' Text
+'air_co2_emissions' Text
+'.' Text
+'htm' Text
+' ' Text
+'|' Punctuation
+'url-status' Name.Label
+'=' Operator
+'dead' Text
+' ' Text
+'|' Punctuation
+'archive-url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'web' Text
+'.' Text
+'archive' Text
+'.' Text
+'org' Text
+'/' Text
+'web' Text
+'/' Text
+'20100310190132' Text
+'/' Text
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'unstats' Text
+'.' Text
+'un' Text
+'.' Text
+'org' Text
+'/' Text
+'unsd' Text
+'/' Text
+'environment' Text
+'/' Text
+'air_co2_emissions' Text
+'.' Text
+'htm' Text
+' ' Text
+'|' Punctuation
+'archive-date' Name.Label
+'=' Operator
+'10' Text
+' ' Text
+'March' Text
+' ' Text
+'2010' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'8' Text
+' ' Text
+'January' Text
+' ' Text
+'2017' Text
+' ' Text
+'|' Punctuation
+'website' Name.Label
+'=' Operator
+'Environmental' Text
+' ' Text
+'Indicators' Text
+' ' Text
+'|' Punctuation
+'publisher' Name.Label
+'=' Operator
+'United' Text
+' ' Text
+'Nations' Text
+'}}' Punctuation
+'\n' Text
+
+'♦' Text
+' ' Text
+'Archived' Text
+':' Text
+' ' Text
+'10' Text
+' ' Text
+'March' Text
+' ' Text
+'2010' Text
+'\n' Text
+
+'♦' Text
+' ' Text
+'Archived' Text
+':' Text
+' ' Text
+'11' Text
+' ' Text
+'July' Text
+' ' Text
+'2017' Text
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'\n' Text
+
+'\n' Text
+
+'===' Generic.Subheading
+'Transport' Generic.Subheading
+'===' Generic.Subheading
+'\n' Text.Whitespace
+
+'{{' Punctuation
+'Main' Name.Tag
+'|' Punctuation
+'Transport' Text
+' ' Text
+'in' Text
+' ' Text
+'France' Text
+'}}' Punctuation
+'\n' Text
+
+'[[' Punctuation
+'File' Name.Namespace
+':' Punctuation
+'Creissels_et_Viaduct_de_Millau.jpg' Name.Tag
+'|' Punctuation
+'thumb' Text
+'|' Punctuation
+'[[' Punctuation
+'Millau Viaduct' Name.Tag
+']]' Punctuation
+' ' Text
+'is' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'List of tallest bridges' Name.Tag
+'|' Punctuation
+'tallest' Text
+' ' Text
+'bridge' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'world' Text
+']]' Punctuation
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+' ' Text.Whitespace
+'name' Name.Attribute
+'=' Operator
+'structurae' Literal.String
+'>' Punctuation
+'{{' Punctuation
+'Structurae' Name.Tag
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'12' Text
+' ' Text
+'September' Text
+' ' Text
+'2018' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+']]' Punctuation
+'\n' Text
+
+'[[' Punctuation
+'File' Name.Namespace
+':' Punctuation
+'SNCF TGV Duplex Viaduc de Cize - Bolozon.jpg' Name.Tag
+'|' Punctuation
+'thumb' Text
+'|' Punctuation
+'A' Text
+' ' Text
+'[[' Punctuation
+'TGV Duplex' Name.Tag
+']]' Punctuation
+' ' Text
+'crossing' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Cize–Bolozon viaduct' Name.Tag
+']]' Punctuation
+'.' Text
+' ' Text
+'The' Text
+' ' Text
+'train' Text
+' ' Text
+'can' Text
+' ' Text
+'reach' Text
+' ' Text
+'a' Text
+' ' Text
+'maximum' Text
+' ' Text
+'speed' Text
+' ' Text
+'of' Text
+' ' Text
+'{{' Punctuation
+'Convert' Name.Tag
+'|' Punctuation
+'360' Text
+'|' Punctuation
+'km' Text
+'/' Text
+'h' Text
+'}}' Punctuation
+'.' Text
+']]' Punctuation
+'\n' Text
+
+'France' Text
+"'" Text
+'s' Text
+' ' Text
+'[[' Punctuation
+'Rail transport in France' Name.Tag
+'|' Punctuation
+'railway' Text
+' ' Text
+'network' Text
+']]' Punctuation
+',' Text
+' ' Text
+'which' Text
+' ' Text
+'stretches' Text
+' ' Text
+'{{' Punctuation
+'Convert' Name.Tag
+'|' Punctuation
+'29473' Text
+'|' Punctuation
+'km' Text
+'|' Punctuation
+'mi' Text
+'|' Punctuation
+'0' Text
+'}}' Punctuation
+' ' Text
+'as' Text
+' ' Text
+'of' Text
+' ' Text
+'2008' Text
+',' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Chiffres' Text
+' ' Text
+'clés' Text
+' ' Text
+'du' Text
+' ' Text
+'transport' Text
+' ' Text
+'Édition' Text
+' ' Text
+'2010' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'developpement' Text
+'-' Text
+'durable' Text
+'.' Text
+'gouv' Text
+'.' Text
+'fr' Text
+'/' Text
+'IMG' Text
+'/' Text
+'pdf' Text
+'/' Text
+'Chiffres_transport' Text
+'-' Text
+'pdf' Text
+'.' Text
+'pdf' Text
+' ' Text
+'|' Punctuation
+'url-status' Name.Label
+'=' Operator
+'dead' Text
+' ' Text
+'|' Punctuation
+'archive-url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'web' Text
+'.' Text
+'archive' Text
+'.' Text
+'org' Text
+'/' Text
+'web' Text
+'/' Text
+'20100601124351' Text
+'/' Text
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'developpement' Text
+'-' Text
+'durable' Text
+'.' Text
+'gouv' Text
+'.' Text
+'fr' Text
+'/' Text
+'IMG' Text
+'/' Text
+'pdf' Text
+'/' Text
+'Chiffres_transport' Text
+'-' Text
+'pdf' Text
+'.' Text
+'pdf' Text
+' ' Text
+'|' Punctuation
+'archive-date' Name.Label
+'=' Operator
+'1' Text
+' ' Text
+'June' Text
+' ' Text
+'2010' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'7' Text
+' ' Text
+'October' Text
+' ' Text
+'2010' Text
+' ' Text
+'|' Punctuation
+'publisher' Name.Label
+'=' Operator
+'[[' Punctuation
+'Ministry of Ecology' Name.Tag
+'|' Punctuation
+'Ministère' Text
+' ' Text
+'de' Text
+' ' Text
+'l' Text
+"'" Text
+'Écologie' Text
+',' Text
+' ' Text
+'de' Text
+' ' Text
+'l' Text
+"'" Text
+'Énergie' Text
+',' Text
+' ' Text
+'du' Text
+' ' Text
+'Développement' Text
+' ' Text
+'Durable' Text
+' ' Text
+'et' Text
+' ' Text
+'de' Text
+' ' Text
+'la' Text
+' ' Text
+'Mer' Text
+']]' Punctuation
+' ' Text
+'|' Punctuation
+'language' Name.Label
+'=' Operator
+'fr' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'is' Text
+' ' Text
+'the' Text
+' ' Text
+'second' Text
+' ' Text
+'most' Text
+' ' Text
+'extensive' Text
+' ' Text
+'in' Text
+' ' Text
+'Western' Text
+' ' Text
+'Europe' Text
+' ' Text
+'after' Text
+' ' Text
+'[[' Punctuation
+'Rail transport in Germany' Name.Tag
+'|' Punctuation
+'Germany' Text
+']]' Punctuation
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Country' Text
+' ' Text
+'comparison' Text
+' ' Text
+':' Text
+':' Text
+' ' Text
+'railways' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'cia' Text
+'.' Text
+'gov' Text
+'/' Text
+'library' Text
+'/' Text
+'publications' Text
+'/' Text
+'the' Text
+'-' Text
+'world' Text
+'-' Text
+'factbook' Text
+'/' Text
+'rankorder' Text
+'/' Text
+'2121rank' Text
+'.' Text
+'html' Text
+'?' Text
+'countryName' Text
+'=' Text
+'France' Text
+'&' Text
+'countryCode' Text
+'=' Text
+'fr' Text
+'&' Text
+'regionCode' Text
+'=' Text
+'eu' Text
+'&' Text
+'rank' Text
+'=' Text
+'9' Text
+'#' Text
+'fr' Text
+' ' Text
+'|' Punctuation
+'url-status' Name.Label
+'=' Operator
+'dead' Text
+' ' Text
+'|' Punctuation
+'archive-url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'web' Text
+'.' Text
+'archive' Text
+'.' Text
+'org' Text
+'/' Text
+'web' Text
+'/' Text
+'20131004215524' Text
+'/' Text
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'cia' Text
+'.' Text
+'gov' Text
+'/' Text
+'library' Text
+'/' Text
+'publications' Text
+'/' Text
+'the' Text
+'-' Text
+'world' Text
+'-' Text
+'factbook' Text
+'/' Text
+'rankorder' Text
+'/' Text
+'2121rank' Text
+'.' Text
+'html' Text
+'?' Text
+'countryName' Text
+'=' Text
+'France' Text
+'&' Text
+'countryCode' Text
+'=' Text
+'fr' Text
+'&' Text
+'regionCode' Text
+'=' Text
+'eu' Text
+'&' Text
+'rank' Text
+'=' Text
+'9' Text
+'#' Text
+'fr' Text
+' ' Text
+'|' Punctuation
+'archive-date' Name.Label
+'=' Operator
+'4' Text
+' ' Text
+'October' Text
+' ' Text
+'2013' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'30' Text
+' ' Text
+'July' Text
+' ' Text
+'2010' Text
+' ' Text
+'|' Punctuation
+'website' Name.Label
+'=' Operator
+'The' Text
+' ' Text
+'World' Text
+' ' Text
+'Factbook' Text
+' ' Text
+'|' Punctuation
+'publisher' Name.Label
+'=' Operator
+'CIA' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'It' Text
+' ' Text
+'is' Text
+' ' Text
+'operated' Text
+' ' Text
+'by' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'SNCF' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'and' Text
+' ' Text
+'high' Text
+'-' Text
+'speed' Text
+' ' Text
+'trains' Text
+' ' Text
+'include' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Thalys' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Eurostar' Name.Tag
+']]' Punctuation
+' ' Text
+'and' Text
+' ' Text
+'[[' Punctuation
+'TGV' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'which' Text
+' ' Text
+'travels' Text
+' ' Text
+'at' Text
+' ' Text
+'{{' Punctuation
+'Convert' Name.Tag
+'|' Punctuation
+'320' Text
+'|' Punctuation
+'km' Text
+'/' Text
+'h' Text
+'|' Punctuation
+'mph' Text
+'|' Punctuation
+'0' Text
+'|' Punctuation
+'abbr' Name.Label
+'=' Operator
+'on' Text
+'}}' Punctuation
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'TGV' Text
+'&nbsp;' Name.Entity
+'–' Text
+' ' Text
+'The' Text
+' ' Text
+'French' Text
+' ' Text
+'High' Text
+'-' Text
+'speed' Text
+' ' Text
+'Train' Text
+' ' Text
+'Service' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'h2g2' Text
+'.' Text
+'com' Text
+'/' Text
+'dna' Text
+'/' Text
+'h2g2' Text
+'/' Text
+'A711785' Text
+' ' Text
+'|' Punctuation
+'url-status' Name.Label
+'=' Operator
+'live' Text
+' ' Text
+'|' Punctuation
+'archive-url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'archive' Text
+'.' Text
+'today' Text
+'/' Text
+'20120716194231' Text
+'/' Text
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'h2g2' Text
+'.' Text
+'com' Text
+'/' Text
+'dna' Text
+'/' Text
+'h2g2' Text
+'/' Text
+'A711785' Text
+' ' Text
+'|' Punctuation
+'archive-date' Name.Label
+'=' Operator
+'16' Text
+' ' Text
+'July' Text
+' ' Text
+'2012' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'21' Text
+' ' Text
+'July' Text
+' ' Text
+'2011' Text
+' ' Text
+'|' Punctuation
+'website' Name.Label
+'=' Operator
+'h2g2' Text
+' ' Text
+'The' Text
+' ' Text
+'Hitchhiker' Text
+"'" Text
+'s' Text
+' ' Text
+'Guide' Text
+' ' Text
+'to' Text
+' ' Text
+'the' Text
+' ' Text
+'Galaxy' Text
+':' Text
+' ' Text
+'Earth' Text
+' ' Text
+'Edition' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'The' Text
+' ' Text
+'Eurostar' Text
+',' Text
+' ' Text
+'along' Text
+' ' Text
+'with' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Eurotunnel Shuttle' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'connects' Text
+' ' Text
+'with' Text
+' ' Text
+'the' Text
+' ' Text
+'United' Text
+' ' Text
+'Kingdom' Text
+' ' Text
+'through' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Channel Tunnel' Name.Tag
+']]' Punctuation
+'.' Text
+' ' Text
+'Rail' Text
+' ' Text
+'connections' Text
+' ' Text
+'exist' Text
+' ' Text
+'to' Text
+' ' Text
+'all' Text
+' ' Text
+'other' Text
+' ' Text
+'neighbouring' Text
+' ' Text
+'countries' Text
+' ' Text
+'in' Text
+' ' Text
+'Europe' Text
+' ' Text
+'except' Text
+' ' Text
+'Andorra' Text
+'.' Text
+' ' Text
+'Intra' Text
+'-' Text
+'urban' Text
+' ' Text
+'connections' Text
+' ' Text
+'are' Text
+' ' Text
+'also' Text
+' ' Text
+'well' Text
+' ' Text
+'developed' Text
+',' Text
+' ' Text
+'with' Text
+' ' Text
+'most' Text
+' ' Text
+'major' Text
+' ' Text
+'cities' Text
+' ' Text
+'having' Text
+' ' Text
+'[[' Punctuation
+'Rapid transit' Name.Tag
+'|' Punctuation
+'underground' Text
+']]' Punctuation
+' ' Text
+'or' Text
+' ' Text
+'tramway' Text
+' ' Text
+'services' Text
+' ' Text
+'complementing' Text
+' ' Text
+'bus' Text
+' ' Text
+'services' Text
+'.' Text
+'\n' Text
+
+'\n' Text
+
+'There' Text
+' ' Text
+'are' Text
+' ' Text
+'approximately' Text
+' ' Text
+'{{' Punctuation
+'Convert' Name.Tag
+'|' Punctuation
+'1027183' Text
+'|' Punctuation
+'km' Text
+'|' Punctuation
+'mi' Text
+'|' Punctuation
+'0' Text
+'}}' Punctuation
+' ' Text
+'of' Text
+' ' Text
+'serviceable' Text
+' ' Text
+'roadway' Text
+' ' Text
+'in' Text
+' ' Text
+'France' Text
+',' Text
+' ' Text
+'ranking' Text
+' ' Text
+'it' Text
+' ' Text
+'the' Text
+' ' Text
+'most' Text
+' ' Text
+'extensive' Text
+' ' Text
+'network' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'European' Text
+' ' Text
+'continent' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Country' Text
+' ' Text
+'comparison' Text
+' ' Text
+':' Text
+':' Text
+' ' Text
+'roadways' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'cia' Text
+'.' Text
+'gov' Text
+'/' Text
+'library' Text
+'/' Text
+'publications' Text
+'/' Text
+'the' Text
+'-' Text
+'world' Text
+'-' Text
+'factbook' Text
+'/' Text
+'rankorder' Text
+'/' Text
+'2085rank' Text
+'.' Text
+'html' Text
+'?' Text
+'countryName' Text
+'=' Text
+'France' Text
+'&' Text
+'countryCode' Text
+'=' Text
+'fr' Text
+'&' Text
+'regionCode' Text
+'=' Text
+'eu' Text
+'&' Text
+'rank' Text
+'=' Text
+'7' Text
+'#' Text
+'fr' Text
+' ' Text
+'|' Punctuation
+'url-status' Name.Label
+'=' Operator
+'dead' Text
+' ' Text
+'|' Punctuation
+'archive-url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'web' Text
+'.' Text
+'archive' Text
+'.' Text
+'org' Text
+'/' Text
+'web' Text
+'/' Text
+'20120513121037' Text
+'/' Text
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'cia' Text
+'.' Text
+'gov' Text
+'/' Text
+'library' Text
+'/' Text
+'publications' Text
+'/' Text
+'the' Text
+'-' Text
+'world' Text
+'-' Text
+'factbook' Text
+'/' Text
+'rankorder' Text
+'/' Text
+'2085rank' Text
+'.' Text
+'html' Text
+'?' Text
+'countryName' Text
+'=' Text
+'France' Text
+'&' Text
+'countryCode' Text
+'=' Text
+'fr' Text
+'&' Text
+'regionCode' Text
+'=' Text
+'eu' Text
+'&' Text
+'rank' Text
+'=' Text
+'7' Text
+'#' Text
+'fr' Text
+' ' Text
+'|' Punctuation
+'archive-date' Name.Label
+'=' Operator
+'13' Text
+' ' Text
+'May' Text
+' ' Text
+'2012' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'29' Text
+' ' Text
+'July' Text
+' ' Text
+'2010' Text
+' ' Text
+'|' Punctuation
+'website' Name.Label
+'=' Operator
+'The' Text
+' ' Text
+'World' Text
+' ' Text
+'Factbook' Text
+' ' Text
+'|' Punctuation
+'publisher' Name.Label
+'=' Operator
+'CIA' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'The' Text
+' ' Text
+'Paris' Text
+' ' Text
+'region' Text
+' ' Text
+'is' Text
+' ' Text
+'enveloped' Text
+' ' Text
+'with' Text
+' ' Text
+'the' Text
+' ' Text
+'densest' Text
+' ' Text
+'network' Text
+' ' Text
+'of' Text
+' ' Text
+'roads' Text
+' ' Text
+'and' Text
+' ' Text
+'highways' Text
+',' Text
+' ' Text
+'which' Text
+' ' Text
+'connect' Text
+' ' Text
+'it' Text
+' ' Text
+'with' Text
+' ' Text
+'virtually' Text
+' ' Text
+'all' Text
+' ' Text
+'parts' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'country' Text
+'.' Text
+' ' Text
+'French' Text
+' ' Text
+'roads' Text
+' ' Text
+'also' Text
+' ' Text
+'handle' Text
+' ' Text
+'substantial' Text
+' ' Text
+'international' Text
+' ' Text
+'traffic' Text
+',' Text
+' ' Text
+'connecting' Text
+' ' Text
+'with' Text
+' ' Text
+'cities' Text
+' ' Text
+'in' Text
+' ' Text
+'neighbouring' Text
+' ' Text
+'Belgium' Text
+',' Text
+' ' Text
+'Luxembourg' Text
+',' Text
+' ' Text
+'Germany' Text
+',' Text
+' ' Text
+'Switzerland' Text
+',' Text
+' ' Text
+'Italy' Text
+',' Text
+' ' Text
+'Spain' Text
+',' Text
+' ' Text
+'Andorra' Text
+' ' Text
+'and' Text
+' ' Text
+'Monaco' Text
+'.' Text
+' ' Text
+'There' Text
+' ' Text
+'is' Text
+' ' Text
+'no' Text
+' ' Text
+'annual' Text
+' ' Text
+'registration' Text
+' ' Text
+'fee' Text
+' ' Text
+'or' Text
+' ' Text
+'[[' Punctuation
+'road tax' Name.Tag
+']]' Punctuation
+';' Text
+' ' Text
+'however' Text
+',' Text
+' ' Text
+'usage' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'mostly' Text
+' ' Text
+'privately' Text
+' ' Text
+'owned' Text
+' ' Text
+'motorways' Text
+' ' Text
+'is' Text
+' ' Text
+'through' Text
+' ' Text
+'tolls' Text
+' ' Text
+'except' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'vicinity' Text
+' ' Text
+'of' Text
+' ' Text
+'large' Text
+' ' Text
+'communes' Text
+'.' Text
+' ' Text
+'The' Text
+' ' Text
+'new' Text
+' ' Text
+'car' Text
+' ' Text
+'market' Text
+' ' Text
+'is' Text
+' ' Text
+'dominated' Text
+' ' Text
+'by' Text
+' ' Text
+'domestic' Text
+' ' Text
+'brands' Text
+' ' Text
+'such' Text
+' ' Text
+'as' Text
+' ' Text
+'[[' Punctuation
+'Renault' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'[[' Punctuation
+'Peugeot' Name.Tag
+']]' Punctuation
+' ' Text
+'and' Text
+' ' Text
+'[[' Punctuation
+'Citroën' Name.Tag
+']]' Punctuation
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'In' Name.Tag
+' ' Name.Tag
+'lang' Name.Tag
+'|' Punctuation
+'fr' Text
+'}}' Punctuation
+' ' Text
+'L' Text
+"'" Text
+'automobile' Text
+' ' Text
+'magazine' Text
+',' Text
+' ' Text
+'hors' Text
+'-' Text
+'série' Text
+' ' Text
+'2003' Text
+'/' Text
+'2004' Text
+' ' Text
+'page' Text
+' ' Text
+'294' Text
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'France' Text
+' ' Text
+'possesses' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Millau Viaduct' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'the' Text
+' ' Text
+'world' Text
+"'" Text
+'s' Text
+' ' Text
+'tallest' Text
+' ' Text
+'bridge' Text
+',' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'news' Name.Tag
+' ' Text
+'|' Punctuation
+'last' Name.Label
+'=' Operator
+'Bockman' Text
+' ' Text
+'|' Punctuation
+'first' Name.Label
+'=' Operator
+'Chris' Text
+' ' Text
+'|' Punctuation
+'date' Name.Label
+'=' Operator
+'4' Text
+' ' Text
+'November' Text
+' ' Text
+'2003' Text
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'France' Text
+' ' Text
+'builds' Text
+' ' Text
+'world' Text
+"'" Text
+'s' Text
+' ' Text
+'tallest' Text
+' ' Text
+'bridge' Text
+' ' Text
+'|' Punctuation
+'work' Name.Label
+'=' Operator
+'BBC' Text
+' ' Text
+'News' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'news' Text
+'.' Text
+'bbc' Text
+'.' Text
+'co' Text
+'.' Text
+'uk' Text
+'/' Text
+'2' Text
+'/' Text
+'hi' Text
+'/' Text
+'europe' Text
+'/' Text
+'3237329' Text
+'.' Text
+'stm' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'21' Text
+' ' Text
+'July' Text
+' ' Text
+'2011' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'and' Text
+' ' Text
+'has' Text
+' ' Text
+'built' Text
+' ' Text
+'many' Text
+' ' Text
+'important' Text
+' ' Text
+'bridges' Text
+' ' Text
+'such' Text
+' ' Text
+'as' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Pont de Normandie' Name.Tag
+']]' Punctuation
+'.' Text
+' ' Text
+'[[' Punctuation
+'Diesel fuel' Name.Tag
+'|' Punctuation
+'Diesel' Text
+']]' Punctuation
+' ' Text
+'and' Text
+' ' Text
+'[[' Punctuation
+'gasoline' Name.Tag
+']]' Punctuation
+'-' Text
+'fuelled' Text
+' ' Text
+'cars' Text
+' ' Text
+'and' Text
+' ' Text
+'lorries' Text
+' ' Text
+'cause' Text
+' ' Text
+'a' Text
+' ' Text
+'large' Text
+' ' Text
+'part' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'country' Text
+"'" Text
+'s' Text
+' ' Text
+'[[' Punctuation
+'air pollution' Name.Tag
+']]' Punctuation
+' ' Text
+'and' Text
+' ' Text
+'[[' Punctuation
+'greenhouse gas emissions' Name.Tag
+']]' Punctuation
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'last' Name.Label
+'=' Operator
+'Damiani' Text
+' ' Text
+'|' Punctuation
+'first' Name.Label
+'=' Operator
+'Anne' Text
+' ' Text
+'|' Punctuation
+'date' Name.Label
+'=' Operator
+'15' Text
+' ' Text
+'April' Text
+' ' Text
+'2021' Text
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'First' Text
+' ' Text
+'lockdown' Text
+' ' Text
+'in' Text
+' ' Text
+'France' Text
+' ' Text
+'improved' Text
+' ' Text
+'air' Text
+' ' Text
+'quality' Text
+',' Text
+' ' Text
+'avoided' Text
+' ' Text
+'thousands' Text
+' ' Text
+'of' Text
+' ' Text
+'deaths' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'euractiv' Text
+'.' Text
+'com' Text
+'/' Text
+'section' Text
+'/' Text
+'air' Text
+'-' Text
+'pollution' Text
+'/' Text
+'news' Text
+'/' Text
+'first' Text
+'-' Text
+'lockdown' Text
+'-' Text
+'in' Text
+'-' Text
+'france' Text
+'-' Text
+'improved' Text
+'-' Text
+'air' Text
+'-' Text
+'quality' Text
+'-' Text
+'avoided' Text
+'-' Text
+'thousands' Text
+'-' Text
+'of' Text
+'-' Text
+'deaths' Text
+'/' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'2' Text
+' ' Text
+'June' Text
+' ' Text
+'2021' Text
+' ' Text
+'|' Punctuation
+'website' Name.Label
+'=' Operator
+'euractiv' Text
+'.' Text
+'com' Text
+' ' Text
+'|' Punctuation
+'language' Name.Label
+'=' Operator
+'en' Text
+'-' Text
+'GB' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'last' Name.Label
+'=' Operator
+'Yeung' Text
+' ' Text
+'|' Punctuation
+'first' Name.Label
+'=' Operator
+'Peter' Text
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'How' Text
+' ' Text
+'France' Text
+' ' Text
+'is' Text
+' ' Text
+'testing' Text
+' ' Text
+'free' Text
+' ' Text
+'public' Text
+' ' Text
+'transport' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'bbc' Text
+'.' Text
+'com' Text
+'/' Text
+'worklife' Text
+'/' Text
+'article' Text
+'/' Text
+'20210519' Text
+'-' Text
+'how' Text
+'-' Text
+'france' Text
+'-' Text
+'is' Text
+'-' Text
+'testing' Text
+'-' Text
+'free' Text
+'-' Text
+'public' Text
+'-' Text
+'transport' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'2' Text
+' ' Text
+'June' Text
+' ' Text
+'2021' Text
+' ' Text
+'|' Punctuation
+'website' Name.Label
+'=' Operator
+'bbc' Text
+'.' Text
+'com' Text
+' ' Text
+'|' Punctuation
+'language' Name.Label
+'=' Operator
+'en' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'\n' Text
+
+'\n' Text
+
+'There' Text
+' ' Text
+'are' Text
+' ' Text
+'464' Text
+' ' Text
+'[[' Punctuation
+'List of airports in France' Name.Tag
+'|' Punctuation
+'airports' Text
+']]' Punctuation
+' ' Text
+'in' Text
+' ' Text
+'France' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+' ' Text.Whitespace
+'name' Name.Attribute
+'=' Operator
+'France' Literal.String
+'/>' Punctuation
+' ' Text
+'[[' Punctuation
+'Charles de Gaulle Airport' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'located' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'vicinity' Text
+' ' Text
+'of' Text
+' ' Text
+'Paris' Text
+',' Text
+' ' Text
+'is' Text
+' ' Text
+'the' Text
+' ' Text
+'largest' Text
+' ' Text
+'and' Text
+' ' Text
+'busiest' Text
+' ' Text
+'airport' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'country' Text
+',' Text
+' ' Text
+'handling' Text
+' ' Text
+'the' Text
+' ' Text
+'vast' Text
+' ' Text
+'majority' Text
+' ' Text
+'of' Text
+' ' Text
+'popular' Text
+' ' Text
+'and' Text
+' ' Text
+'commercial' Text
+' ' Text
+'traffic' Text
+' ' Text
+'and' Text
+' ' Text
+'connecting' Text
+' ' Text
+'Paris' Text
+' ' Text
+'with' Text
+' ' Text
+'virtually' Text
+' ' Text
+'all' Text
+' ' Text
+'major' Text
+' ' Text
+'cities' Text
+' ' Text
+'across' Text
+' ' Text
+'the' Text
+' ' Text
+'world' Text
+'.' Text
+' ' Text
+'[[' Punctuation
+'Air France' Name.Tag
+']]' Punctuation
+' ' Text
+'is' Text
+' ' Text
+'the' Text
+' ' Text
+'national' Text
+' ' Text
+'carrier' Text
+' ' Text
+'airline' Text
+',' Text
+' ' Text
+'although' Text
+' ' Text
+'numerous' Text
+' ' Text
+'private' Text
+' ' Text
+'airline' Text
+' ' Text
+'companies' Text
+' ' Text
+'provide' Text
+' ' Text
+'domestic' Text
+' ' Text
+'and' Text
+' ' Text
+'international' Text
+' ' Text
+'travel' Text
+' ' Text
+'services' Text
+'.' Text
+' ' Text
+'There' Text
+' ' Text
+'are' Text
+' ' Text
+'ten' Text
+' ' Text
+'major' Text
+' ' Text
+'ports' Text
+' ' Text
+'in' Text
+' ' Text
+'France' Text
+',' Text
+' ' Text
+'the' Text
+' ' Text
+'largest' Text
+' ' Text
+'of' Text
+' ' Text
+'which' Text
+' ' Text
+'is' Text
+' ' Text
+'in' Text
+' ' Text
+'[[' Punctuation
+'Marseille' Name.Tag
+']]' Punctuation
+',' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'date' Name.Label
+'=' Operator
+'23' Text
+' ' Text
+'April' Text
+' ' Text
+'2008' Text
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Strikes' Text
+' ' Text
+'block' Text
+' ' Text
+'French' Text
+' ' Text
+'ports' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'bdpinternational' Text
+'.' Text
+'com' Text
+'/' Text
+'news' Text
+'/' Text
+'StrikesblockFrenchports' Text
+'.' Text
+'asp' Text
+' ' Text
+'|' Punctuation
+'url-status' Name.Label
+'=' Operator
+'dead' Text
+' ' Text
+'|' Punctuation
+'archive-url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'web' Text
+'.' Text
+'archive' Text
+'.' Text
+'org' Text
+'/' Text
+'web' Text
+'/' Text
+'20080517035156' Text
+'/' Text
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'bdpinternational' Text
+'.' Text
+'com' Text
+'/' Text
+'news' Text
+'/' Text
+'StrikesblockFrenchports' Text
+'.' Text
+'asp' Text
+' ' Text
+'|' Punctuation
+'archive-date' Name.Label
+'=' Operator
+'17' Text
+' ' Text
+'May' Text
+' ' Text
+'2008' Text
+' ' Text
+'|' Punctuation
+'publisher' Name.Label
+'=' Operator
+'The' Text
+' ' Text
+'Journal' Text
+' ' Text
+'of' Text
+' ' Text
+'Commerce' Text
+' ' Text
+'Online' Text
+' ' Text
+'|' Punctuation
+'via' Name.Label
+'=' Operator
+'BDP' Text
+' ' Text
+'International' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'which' Text
+' ' Text
+'also' Text
+' ' Text
+'is' Text
+' ' Text
+'the' Text
+' ' Text
+'largest' Text
+' ' Text
+'bordering' Text
+' ' Text
+'the' Text
+' ' Text
+'Mediterranean' Text
+' ' Text
+'Sea' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'date' Name.Label
+'=' Operator
+'27' Text
+' ' Text
+'June' Text
+' ' Text
+'2009' Text
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Marseille' Text
+' ' Text
+':' Text
+' ' Text
+'un' Text
+' ' Text
+'grand' Text
+' ' Text
+'port' Text
+' ' Text
+'maritime' Text
+' ' Text
+'qui' Text
+' ' Text
+'ne' Text
+' ' Text
+'demande' Text
+' ' Text
+'qu' Text
+"'" Text
+'à' Text
+' ' Text
+'se' Text
+' ' Text
+'montrer' Text
+' ' Text
+'|' Punctuation
+'trans-title' Name.Label
+'=' Operator
+'Marseille' Text
+':' Text
+' ' Text
+'a' Text
+' ' Text
+'grand' Text
+' ' Text
+'seaport' Text
+' ' Text
+'just' Text
+' ' Text
+'waiting' Text
+' ' Text
+'to' Text
+' ' Text
+'show' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'laprovence' Text
+'.' Text
+'com' Text
+'/' Text
+'article' Text
+'/' Text
+'region' Text
+'/' Text
+'marseille' Text
+'-' Text
+'un' Text
+'-' Text
+'grand' Text
+'-' Text
+'port' Text
+'-' Text
+'maritime' Text
+'-' Text
+'qui' Text
+'-' Text
+'ne' Text
+'-' Text
+'demande' Text
+'-' Text
+'qua' Text
+'-' Text
+'se' Text
+'-' Text
+'montrer' Text
+' ' Text
+'|' Punctuation
+'website' Name.Label
+'=' Operator
+'La' Text
+' ' Text
+'Provence' Text
+' ' Text
+'|' Punctuation
+'language' Name.Label
+'=' Operator
+'fr' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'30' Text
+' ' Text
+'July' Text
+' ' Text
+'2010' Text
+' ' Text
+'|' Punctuation
+'archive-date' Name.Label
+'=' Operator
+'14' Text
+' ' Text
+'November' Text
+' ' Text
+'2012' Text
+' ' Text
+'|' Punctuation
+'archive-url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'web' Text
+'.' Text
+'archive' Text
+'.' Text
+'org' Text
+'/' Text
+'web' Text
+'/' Text
+'20121114060851' Text
+'/' Text
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'laprovence' Text
+'.' Text
+'com' Text
+'/' Text
+'article' Text
+'/' Text
+'region' Text
+'/' Text
+'marseille' Text
+'-' Text
+'un' Text
+'-' Text
+'grand' Text
+'-' Text
+'port' Text
+'-' Text
+'maritime' Text
+'-' Text
+'qui' Text
+'-' Text
+'ne' Text
+'-' Text
+'demande' Text
+'-' Text
+'qua' Text
+'-' Text
+'se' Text
+'-' Text
+'montrer' Text
+' ' Text
+'|' Punctuation
+'url-status' Name.Label
+'=' Operator
+'dead' Text
+' ' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Convert' Name.Tag
+'|' Punctuation
+'12261' Text
+'|' Punctuation
+'km' Text
+'|' Punctuation
+'mi' Text
+'|' Punctuation
+'0' Text
+'}}' Punctuation
+' ' Text
+'of' Text
+' ' Text
+'waterways' Text
+' ' Text
+'traverse' Text
+' ' Text
+'France' Text
+' ' Text
+'including' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Canal du Midi' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'which' Text
+' ' Text
+'connects' Text
+' ' Text
+'the' Text
+' ' Text
+'Mediterranean' Text
+' ' Text
+'Sea' Text
+' ' Text
+'to' Text
+' ' Text
+'the' Text
+' ' Text
+'Atlantic' Text
+' ' Text
+'Ocean' Text
+' ' Text
+'through' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Garonne' Name.Tag
+']]' Punctuation
+' ' Text
+'river' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+' ' Text.Whitespace
+'name' Name.Attribute
+'=' Operator
+'France' Literal.String
+'/>' Punctuation
+'\n' Text
+
+'\n' Text
+
+'===' Generic.Subheading
+'Science and technology' Generic.Subheading
+'===' Generic.Subheading
+'\n' Text.Whitespace
+
+'{{' Punctuation
+'Main' Name.Tag
+'|' Punctuation
+'Science' Text
+' ' Text
+'and' Text
+' ' Text
+'technology' Text
+' ' Text
+'in' Text
+' ' Text
+'France' Text
+'|' Punctuation
+'List' Text
+' ' Text
+'of' Text
+' ' Text
+'French' Text
+' ' Text
+'inventions' Text
+' ' Text
+'and' Text
+' ' Text
+'discoveries' Text
+'}}' Punctuation
+'\n' Text
+
+'[[' Punctuation
+'File' Name.Namespace
+':' Punctuation
+'Ariane_5_with_James_Webb_Space_Telescope_Prelaunch_(51773093465).jpg' Name.Tag
+'|' Punctuation
+'thumb' Text
+'|' Punctuation
+'upright' Text
+'|' Punctuation
+'left' Text
+'|' Punctuation
+'alt' Name.Attribute
+'=' Operator
+'Ariane' Text
+' ' Text
+'5' Text
+' ' Text
+'rocket' Text
+'|' Punctuation
+'France' Text
+' ' Text
+'is' Text
+' ' Text
+'in' Text
+' ' Text
+'2020' Text
+' ' Text
+'the' Text
+' ' Text
+'biggest' Text
+' ' Text
+'national' Text
+' ' Text
+'financial' Text
+' ' Text
+'contributor' Text
+' ' Text
+'to' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'European Space Agency' Name.Tag
+']]' Punctuation
+',' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Funding' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'esa' Text
+'.' Text
+'int' Text
+'/' Text
+'About_Us' Text
+'/' Text
+'Corporate_news' Text
+'/' Text
+'Funding' Text
+' ' Text
+'|' Punctuation
+'website' Name.Label
+'=' Operator
+'esa' Text
+'.' Text
+'int' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'which' Text
+' ' Text
+'conceived' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Ariane (rocket family)' Name.Tag
+'|' Punctuation
+'Ariane' Text
+' ' Text
+'rocket' Text
+' ' Text
+'family' Text
+']]' Punctuation
+',' Text
+' ' Text
+'launched' Text
+' ' Text
+'from' Text
+' ' Text
+'[[' Punctuation
+'Guiana Space Centre' Name.Tag
+'|' Punctuation
+'French' Text
+' ' Text
+'Guiana' Text
+']]' Punctuation
+' ' Text
+'(' Text
+'[[' Punctuation
+'Ariane 5' Name.Tag
+']]' Punctuation
+' ' Text
+'pictured' Text
+')' Text
+'.' Text
+']]' Punctuation
+'\n' Text
+
+'Since' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Middle Ages' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'France' Text
+' ' Text
+'has' Text
+' ' Text
+'been' Text
+' ' Text
+'a' Text
+' ' Text
+'major' Text
+' ' Text
+'contributor' Text
+' ' Text
+'to' Text
+' ' Text
+'scientific' Text
+' ' Text
+'and' Text
+' ' Text
+'technological' Text
+' ' Text
+'achievement' Text
+'.' Text
+' ' Text
+'In' Text
+' ' Text
+'the' Text
+' ' Text
+'early' Text
+' ' Text
+'11th' Text
+' ' Text
+'century' Text
+',' Text
+' ' Text
+'the' Text
+' ' Text
+'French' Text
+'-' Text
+'born' Text
+' ' Text
+'[[' Punctuation
+'Pope Sylvester II' Name.Tag
+']]' Punctuation
+' ' Text
+'reintroduced' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'abacus' Name.Tag
+']]' Punctuation
+' ' Text
+'and' Text
+' ' Text
+'[[' Punctuation
+'armillary sphere' Name.Tag
+']]' Punctuation
+' ' Text
+'and' Text
+' ' Text
+'introduced' Text
+' ' Text
+'[[' Punctuation
+'Arabic numerals' Name.Tag
+']]' Punctuation
+' ' Text
+'and' Text
+' ' Text
+'[[' Punctuation
+'clock' Name.Tag
+']]' Punctuation
+'s' Text
+' ' Text
+'to' Text
+' ' Text
+'much' Text
+' ' Text
+'of' Text
+' ' Text
+'Europe' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'last' Name.Label
+'=' Operator
+'William' Text
+' ' Text
+'Godwin' Text
+' ' Text
+'|' Punctuation
+'year' Name.Label
+'=' Operator
+'1876' Text
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Lives' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'Necromancers' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'archive' Text
+'.' Text
+'org' Text
+'/' Text
+'details' Text
+'/' Text
+'livesnecromance04godwgoog' Text
+' ' Text
+'|' Punctuation
+'page' Name.Label
+'=' Operator
+'232' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'The' Text
+' ' Text
+'[[' Punctuation
+'University of Paris' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'founded' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'mid' Text
+'-' Text
+'12th' Text
+' ' Text
+'century' Text
+',' Text
+' ' Text
+'is' Text
+' ' Text
+'still' Text
+' ' Text
+'one' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'most' Text
+' ' Text
+'important' Text
+' ' Text
+'academic' Text
+' ' Text
+'institutions' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'Western' Text
+' ' Text
+'world' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'André' Text
+' ' Text
+'Thuilier' Text
+',' Text
+' ' Text
+'Histoire' Text
+' ' Text
+'de' Text
+' ' Text
+'l' Text
+"'" Text
+'université' Text
+' ' Text
+'de' Text
+' ' Text
+'Paris' Text
+' ' Text
+'et' Text
+' ' Text
+'de' Text
+' ' Text
+'la' Text
+' ' Text
+'Sorbonne' Text
+',' Text
+' ' Text
+'Paris' Text
+',' Text
+' ' Text
+'Nouvelle' Text
+' ' Text
+'librairie' Text
+' ' Text
+'de' Text
+' ' Text
+'France' Text
+',' Text
+' ' Text
+'1994' Text
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'In' Text
+' ' Text
+'the' Text
+' ' Text
+'17th' Text
+' ' Text
+'century' Text
+',' Text
+' ' Text
+'mathematician' Text
+' ' Text
+'[[' Punctuation
+'René Descartes' Name.Tag
+']]' Punctuation
+' ' Text
+'pioneered' Text
+' ' Text
+'[[' Punctuation
+'Rationalism' Name.Tag
+'|' Punctuation
+'rationalism' Text
+' ' Text
+'as' Text
+' ' Text
+'a' Text
+' ' Text
+'method' Text
+' ' Text
+'for' Text
+' ' Text
+'acquiring' Text
+' ' Text
+'scientific' Text
+' ' Text
+'knowledge' Text
+']]' Punctuation
+',' Text
+' ' Text
+'while' Text
+' ' Text
+'[[' Punctuation
+'Blaise Pascal' Name.Tag
+']]' Punctuation
+' ' Text
+'became' Text
+' ' Text
+'famous' Text
+' ' Text
+'for' Text
+' ' Text
+'his' Text
+' ' Text
+'work' Text
+' ' Text
+'on' Text
+' ' Text
+'[[' Punctuation
+'probability' Name.Tag
+']]' Punctuation
+' ' Text
+'and' Text
+' ' Text
+'[[' Punctuation
+'fluid mechanics' Name.Tag
+']]' Punctuation
+';' Text
+' ' Text
+'both' Text
+' ' Text
+'were' Text
+' ' Text
+'key' Text
+' ' Text
+'figures' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Scientific Revolution' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'which' Text
+' ' Text
+'blossomed' Text
+' ' Text
+'in' Text
+' ' Text
+'Europe' Text
+' ' Text
+'during' Text
+' ' Text
+'this' Text
+' ' Text
+'period' Text
+'.' Text
+' ' Text
+'The' Text
+' ' Text
+'[[' Punctuation
+'French Academy of Sciences' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'founded' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'mid' Text
+'-' Text
+'17th' Text
+' ' Text
+'century' Text
+' ' Text
+'by' Text
+' ' Text
+'[[' Punctuation
+'Louis XIV' Name.Tag
+']]' Punctuation
+' ' Text
+'to' Text
+' ' Text
+'encourage' Text
+' ' Text
+'and' Text
+' ' Text
+'protect' Text
+' ' Text
+'French' Text
+' ' Text
+'[[' Punctuation
+'Scientific method' Name.Tag
+'|' Punctuation
+'scientific' Text
+' ' Text
+'research' Text
+']]' Punctuation
+',' Text
+' ' Text
+'was' Text
+' ' Text
+'one' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'earliest' Text
+' ' Text
+'[[' Punctuation
+'Academy of sciences' Name.Tag
+'|' Punctuation
+'national' Text
+' ' Text
+'scientific' Text
+' ' Text
+'institutions' Text
+']]' Punctuation
+' ' Text
+'in' Text
+' ' Text
+'history' Text
+';' Text
+' ' Text
+'it' Text
+' ' Text
+'was' Text
+' ' Text
+'at' Text
+' ' Text
+'the' Text
+' ' Text
+'forefront' Text
+' ' Text
+'of' Text
+' ' Text
+'scientific' Text
+' ' Text
+'developments' Text
+' ' Text
+'in' Text
+' ' Text
+'Europe' Text
+' ' Text
+'for' Text
+' ' Text
+'the' Text
+' ' Text
+'next' Text
+' ' Text
+'two' Text
+' ' Text
+'centuries' Text
+'.' Text
+'\n' Text
+
+'\n' Text
+
+'The' Text
+' ' Text
+'[[' Punctuation
+'Age of Enlightenment' Name.Tag
+']]' Punctuation
+' ' Text
+'was' Text
+' ' Text
+'marked' Text
+' ' Text
+'by' Text
+' ' Text
+'the' Text
+' ' Text
+'work' Text
+' ' Text
+'of' Text
+' ' Text
+'biologist' Text
+' ' Text
+'[[' Punctuation
+'Georges-Louis Leclerc, Comte de Buffon' Name.Tag
+'|' Punctuation
+'Buffon' Text
+']]' Punctuation
+',' Text
+' ' Text
+'one' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'first' Text
+' ' Text
+'naturalists' Text
+' ' Text
+'to' Text
+' ' Text
+'recognise' Text
+' ' Text
+'[[' Punctuation
+'ecological succession' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'and' Text
+' ' Text
+'chemist' Text
+' ' Text
+'[[' Punctuation
+'Antoine Lavoisier' Name.Tag
+'|' Punctuation
+'Lavoisier' Text
+']]' Punctuation
+',' Text
+' ' Text
+'who' Text
+' ' Text
+'discovered' Text
+' ' Text
+'the' Text
+' ' Text
+'role' Text
+' ' Text
+'of' Text
+' ' Text
+'[[' Punctuation
+'oxygen' Name.Tag
+']]' Punctuation
+' ' Text
+'in' Text
+' ' Text
+'[[' Punctuation
+'combustion' Name.Tag
+']]' Punctuation
+'.' Text
+' ' Text
+'[[' Punctuation
+'Denis Diderot' Name.Tag
+'|' Punctuation
+'Diderot' Text
+']]' Punctuation
+' ' Text
+'and' Text
+' ' Text
+'[[' Punctuation
+"Jean le Rond d'Alembert" Name.Tag
+'|' Punctuation
+'D' Text
+"'" Text
+'Alembert' Text
+']]' Punctuation
+' ' Text
+'published' Text
+' ' Text
+'the' Text
+' ' Text
+"''" Generic.Emph
+'[[' Punctuation
+'Encyclopédie' Name.Tag
+']]' Punctuation
+"''" Generic.Emph
+',' Text
+' ' Text
+'which' Text
+' ' Text
+'aimed' Text
+' ' Text
+'to' Text
+' ' Text
+'give' Text
+' ' Text
+'the' Text
+' ' Text
+'public' Text
+' ' Text
+'access' Text
+' ' Text
+'to' Text
+' ' Text
+'"' Text
+'useful' Text
+' ' Text
+'knowledge' Text
+'"' Text
+' ' Text
+'that' Text
+' ' Text
+'could' Text
+' ' Text
+'be' Text
+' ' Text
+'applied' Text
+' ' Text
+'to' Text
+' ' Text
+'everyday' Text
+' ' Text
+'life' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'Burke' Text
+',' Text
+' ' Text
+'Peter' Text
+',' Text
+' ' Text
+'A' Text
+' ' Text
+'social' Text
+' ' Text
+'history' Text
+' ' Text
+'of' Text
+' ' Text
+'knowledge' Text
+':' Text
+' ' Text
+'from' Text
+' ' Text
+'Gutenberg' Text
+' ' Text
+'to' Text
+' ' Text
+'Diderot' Text
+',' Text
+' ' Text
+'Malden' Text
+':' Text
+' ' Text
+'Blackwell' Text
+' ' Text
+'Publishers' Text
+' ' Text
+'Inc' Text
+'.' Text
+',' Text
+' ' Text
+'2000' Text
+',' Text
+' ' Text
+'p' Text
+'.' Text
+' ' Text
+'17' Text
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'The' Text
+' ' Text
+'[[' Punctuation
+'Industrial Revolution' Name.Tag
+']]' Punctuation
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'19th' Text
+' ' Text
+'century' Text
+' ' Text
+'saw' Text
+' ' Text
+'spectacular' Text
+' ' Text
+'scientific' Text
+' ' Text
+'developments' Text
+' ' Text
+'in' Text
+' ' Text
+'France' Text
+',' Text
+' ' Text
+'with' Text
+' ' Text
+'[[' Punctuation
+'Augustin Fresnel' Name.Tag
+']]' Punctuation
+' ' Text
+'founding' Text
+' ' Text
+'modern' Text
+' ' Text
+'[[' Punctuation
+'optics' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'[[' Punctuation
+'Nicolas Léonard Sadi Carnot' Name.Tag
+'|' Punctuation
+'Sadi' Text
+' ' Text
+'Carnot' Text
+']]' Punctuation
+' ' Text
+'laying' Text
+' ' Text
+'the' Text
+' ' Text
+'foundations' Text
+' ' Text
+'of' Text
+' ' Text
+'[[' Punctuation
+'thermodynamics' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'and' Text
+' ' Text
+'[[' Punctuation
+'Louis Pasteur' Name.Tag
+']]' Punctuation
+' ' Text
+'pioneering' Text
+' ' Text
+'[[' Punctuation
+'microbiology' Name.Tag
+']]' Punctuation
+'.' Text
+' ' Text
+'Other' Text
+' ' Text
+'eminent' Text
+' ' Text
+'French' Text
+' ' Text
+'scientists' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'period' Text
+' ' Text
+'have' Text
+' ' Text
+'their' Text
+' ' Text
+'[[' Punctuation
+'List of the 72 names on the Eiffel Tower' Name.Tag
+'|' Punctuation
+'names' Text
+' ' Text
+'inscribed' Text
+' ' Text
+'on' Text
+' ' Text
+'the' Text
+' ' Text
+'Eiffel' Text
+' ' Text
+'Tower' Text
+']]' Punctuation
+'.' Text
+'\n' Text
+
+'\n' Text
+
+'Famous' Text
+' ' Text
+'French' Text
+' ' Text
+'scientists' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'20th' Text
+' ' Text
+'century' Text
+' ' Text
+'include' Text
+' ' Text
+'the' Text
+' ' Text
+'mathematician' Text
+' ' Text
+'and' Text
+' ' Text
+'physicist' Text
+' ' Text
+'[[' Punctuation
+'Henri Poincaré' Name.Tag
+']]' Punctuation
+';' Text
+' ' Text
+'physicists' Text
+' ' Text
+'[[' Punctuation
+'Henri Becquerel' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'[[' Punctuation
+'Pierre Curie' Name.Tag
+'|' Punctuation
+'Pierre' Text
+']]' Punctuation
+' ' Text
+'and' Text
+' ' Text
+'[[' Punctuation
+'Marie Curie' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'who' Text
+' ' Text
+'remain' Text
+' ' Text
+'famous' Text
+' ' Text
+'for' Text
+' ' Text
+'their' Text
+' ' Text
+'work' Text
+' ' Text
+'on' Text
+' ' Text
+'[[' Punctuation
+'radioactivity' Name.Tag
+']]' Punctuation
+';' Text
+' ' Text
+'physicist' Text
+' ' Text
+'[[' Punctuation
+'Paul Langevin' Name.Tag
+']]' Punctuation
+';' Text
+' ' Text
+'and' Text
+' ' Text
+'virologist' Text
+' ' Text
+'[[' Punctuation
+'Luc Montagnier' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'co' Text
+'-' Text
+'discoverer' Text
+' ' Text
+'of' Text
+' ' Text
+'[[' Punctuation
+'HIV AIDS' Name.Tag
+']]' Punctuation
+'.' Text
+' ' Text
+'[[' Punctuation
+'Hand transplantation' Name.Tag
+']]' Punctuation
+' ' Text
+'was' Text
+' ' Text
+'developed' Text
+' ' Text
+'in' Text
+' ' Text
+'[[' Punctuation
+'Lyon, France' Name.Tag
+'|' Punctuation
+'Lyon' Text
+']]' Punctuation
+' ' Text
+'in' Text
+' ' Text
+'1998' Text
+' ' Text
+'by' Text
+' ' Text
+'an' Text
+' ' Text
+'international' Text
+' ' Text
+'team' Text
+' ' Text
+'that' Text
+' ' Text
+'included' Text
+' ' Text
+'[[' Punctuation
+'Jean-Michel Dubernard' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'who' Text
+' ' Text
+'afterward' Text
+' ' Text
+'performed' Text
+' ' Text
+'the' Text
+' ' Text
+'first' Text
+' ' Text
+'successful' Text
+' ' Text
+'double' Text
+' ' Text
+'hand' Text
+' ' Text
+'transplant' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+' ' Text.Whitespace
+'name' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+'dubernard1' Literal.String.Double
+'"' Literal.String.Double
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'journal' Name.Tag
+' ' Text
+'|' Punctuation
+'last1' Name.Label
+'=' Operator
+'Lanzetta' Text
+' ' Text
+'M' Text
+' ' Text
+'|' Punctuation
+'last2' Name.Label
+'=' Operator
+'Petruzzo' Text
+' ' Text
+'P' Text
+' ' Text
+'|' Punctuation
+'last3' Name.Label
+'=' Operator
+'Dubernard' Text
+' ' Text
+'JM' Text
+' ' Text
+'|' Punctuation
+'last4' Name.Label
+'=' Operator
+'Margreiter' Text
+' ' Text
+'|' Punctuation
+'first4' Name.Label
+'=' Operator
+'Raimund' Text
+' ' Text
+'|' Punctuation
+'last5' Name.Label
+'=' Operator
+'Schuind' Text
+' ' Text
+'|' Punctuation
+'first5' Name.Label
+'=' Operator
+'Frederic' Text
+' ' Text
+'|' Punctuation
+'last6' Name.Label
+'=' Operator
+'Breidenbach' Text
+' ' Text
+'|' Punctuation
+'first6' Name.Label
+'=' Operator
+'Warren' Text
+' ' Text
+'|' Punctuation
+'last7' Name.Label
+'=' Operator
+'Nolli' Text
+' ' Text
+'|' Punctuation
+'first7' Name.Label
+'=' Operator
+'Roberta' Text
+' ' Text
+'|' Punctuation
+'last8' Name.Label
+'=' Operator
+'Schneeberger' Text
+' ' Text
+'|' Punctuation
+'first8' Name.Label
+'=' Operator
+'Stephan' Text
+' ' Text
+'|' Punctuation
+'last9' Name.Label
+'=' Operator
+'Van' Text
+' ' Text
+'Holder' Text
+' ' Text
+'|' Punctuation
+'first9' Name.Label
+'=' Operator
+'Carlo' Text
+' ' Text
+'|' Punctuation
+'display-authors' Name.Label
+'=' Operator
+'3' Text
+' ' Text
+'|' Punctuation
+'date' Name.Label
+'=' Operator
+'July' Text
+' ' Text
+'2007' Text
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Second' Text
+' ' Text
+'report' Text
+' ' Text
+'(' Text
+'1998' Text
+'–' Text
+'2006' Text
+')' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'International' Text
+' ' Text
+'Registry' Text
+' ' Text
+'of' Text
+' ' Text
+'Hand' Text
+' ' Text
+'and' Text
+' ' Text
+'Composite' Text
+' ' Text
+'Tissue' Text
+' ' Text
+'Transplantation' Text
+' ' Text
+'|' Punctuation
+'journal' Name.Label
+'=' Operator
+'Transpl' Text
+' ' Text
+'Immunol' Text
+'.' Text
+' ' Text
+'|' Punctuation
+'volume' Name.Label
+'=' Operator
+'18' Text
+' ' Text
+'|' Punctuation
+'issue' Name.Label
+'=' Operator
+'1' Text
+' ' Text
+'|' Punctuation
+'pages' Name.Label
+'=' Operator
+'1' Text
+'–' Text
+'6' Text
+' ' Text
+'|' Punctuation
+'doi' Name.Label
+'=' Operator
+'10' Text
+'.' Text
+'1016' Text
+'/' Text
+'j' Text
+'.' Text
+'trim' Text
+'.' Text
+'2007' Text
+'.' Text
+'03' Text
+'.' Text
+'002' Text
+' ' Text
+'|' Punctuation
+'pmid' Name.Label
+'=' Operator
+'17584595' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'[[' Punctuation
+'Remote surgery' Name.Tag
+'|' Punctuation
+'Telesurgery' Text
+']]' Punctuation
+' ' Text
+'was' Text
+' ' Text
+'[[' Punctuation
+'Lindbergh operation' Name.Tag
+'|' Punctuation
+'first' Text
+' ' Text
+'performed' Text
+']]' Punctuation
+' ' Text
+'by' Text
+' ' Text
+'French' Text
+' ' Text
+'surgeons' Text
+' ' Text
+'led' Text
+' ' Text
+'by' Text
+' ' Text
+'[[' Punctuation
+'Jacques Marescaux' Name.Tag
+']]' Punctuation
+' ' Text
+'on' Text
+' ' Text
+'7' Text
+' ' Text
+'September' Text
+' ' Text
+'2001' Text
+' ' Text
+'across' Text
+' ' Text
+'the' Text
+' ' Text
+'Atlantic' Text
+' ' Text
+'Ocean' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+' ' Text.Whitespace
+'name' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+'istmarescaux' Literal.String.Double
+'"' Literal.String.Double
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'last' Name.Label
+'=' Operator
+'Ghodoussi' Text
+' ' Text
+'|' Punctuation
+'first' Name.Label
+'=' Operator
+'Dr' Text
+'.' Text
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Media' Text
+' ' Text
+'Collection' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'intersurgtech' Text
+'.' Text
+'com' Text
+'/' Text
+'media' Text
+'.' Text
+'html' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'14' Text
+' ' Text
+'November' Text
+' ' Text
+'2011' Text
+' ' Text
+'|' Punctuation
+'publisher' Name.Label
+'=' Operator
+'Interface' Text
+' ' Text
+'Surgical' Text
+' ' Text
+'Technologies' Text
+',' Text
+' ' Text
+'LLC' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'A' Text
+' ' Text
+'[[' Punctuation
+'face transplant' Name.Tag
+']]' Punctuation
+' ' Text
+'was' Text
+' ' Text
+'first' Text
+' ' Text
+'done' Text
+' ' Text
+'on' Text
+' ' Text
+'27' Text
+' ' Text
+'November' Text
+' ' Text
+'2005' Text
+' ' Text
+'by' Text
+' ' Text
+'Dr' Text
+' ' Text
+'[[' Punctuation
+'Bernard Devauchelle' Name.Tag
+']]' Punctuation
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'news' Name.Tag
+' ' Text
+'|' Punctuation
+'last' Name.Label
+'=' Operator
+'Austin' Text
+' ' Text
+'|' Punctuation
+'first' Name.Label
+'=' Operator
+'Naomi' Text
+' ' Text
+'|' Punctuation
+'date' Name.Label
+'=' Operator
+'17' Text
+' ' Text
+'October' Text
+' ' Text
+'2006' Text
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'My' Text
+' ' Text
+'face' Text
+' ' Text
+'transplant' Text
+' ' Text
+'saved' Text
+' ' Text
+'me' Text
+' ' Text
+'|' Punctuation
+'work' Name.Label
+'=' Operator
+'BBC' Text
+' ' Text
+'News' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'news' Text
+'.' Text
+'bbc' Text
+'.' Text
+'co' Text
+'.' Text
+'uk' Text
+'/' Text
+'1' Text
+'/' Text
+'hi' Text
+'/' Text
+'health' Text
+'/' Text
+'6058696' Text
+'.' Text
+'stm' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'25' Text
+' ' Text
+'November' Text
+' ' Text
+'2007' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'news' Name.Tag
+' ' Text
+'|' Punctuation
+'date' Name.Label
+'=' Operator
+'30' Text
+' ' Text
+'November' Text
+' ' Text
+'2005' Text
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Woman' Text
+' ' Text
+'has' Text
+' ' Text
+'first' Text
+' ' Text
+'face' Text
+' ' Text
+'transplant' Text
+' ' Text
+'|' Punctuation
+'work' Name.Label
+'=' Operator
+'BBC' Text
+' ' Text
+'News' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'news' Text
+'.' Text
+'bbc' Text
+'.' Text
+'co' Text
+'.' Text
+'uk' Text
+'/' Text
+'1' Text
+'/' Text
+'hi' Text
+'/' Text
+'health' Text
+'/' Text
+'4484728' Text
+'.' Text
+'stm' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'\n' Text
+
+'\n' Text
+
+'France' Text
+' ' Text
+'was' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Force de dissuasion' Name.Tag
+'|' Punctuation
+'fourth' Text
+' ' Text
+'country' Text
+' ' Text
+'to' Text
+' ' Text
+'achieve' Text
+' ' Text
+'nuclear' Text
+' ' Text
+'capability' Text
+']]' Punctuation
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'book' Name.Tag
+' ' Text
+'|' Punctuation
+'last1' Name.Label
+'=' Operator
+'Pascal' Text
+' ' Text
+'Boniface' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'books' Text
+'.' Text
+'google' Text
+'.' Text
+'com' Text
+'/' Text
+'books' Text
+'?' Text
+'id' Text
+'=' Text
+'JWF7eftCUQwC' Text
+'&' Text
+'pg' Text
+'=' Text
+'PT120' Text
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Le' Text
+' ' Text
+'monde' Text
+' ' Text
+'nucléaire' Text
+':' Text
+' ' Text
+'Arme' Text
+' ' Text
+'nucléaire' Text
+' ' Text
+'et' Text
+' ' Text
+'relations' Text
+' ' Text
+'internationales' Text
+' ' Text
+'depuis' Text
+' ' Text
+'1945' Text
+' ' Text
+'|' Punctuation
+'last2' Name.Label
+'=' Operator
+'Barthélémy' Text
+' ' Text
+'Courmont' Text
+' ' Text
+'|' Punctuation
+'date' Name.Label
+'=' Operator
+'22' Text
+' ' Text
+'November' Text
+' ' Text
+'2006' Text
+' ' Text
+'|' Punctuation
+'publisher' Name.Label
+'=' Operator
+'Armand' Text
+' ' Text
+'Colin' Text
+' ' Text
+'|' Punctuation
+'isbn' Name.Label
+'=' Operator
+'978' Text
+'-' Text
+'2' Text
+'-' Text
+'200' Text
+'-' Text
+'35687' Text
+'-' Text
+'3' Text
+' ' Text
+'|' Punctuation
+'pages' Name.Label
+'=' Operator
+'120' Text
+'–' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'and' Text
+' ' Text
+'has' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'List of states with nuclear weapons' Name.Tag
+'|' Punctuation
+'third' Text
+' ' Text
+'largest' Text
+' ' Text
+'nuclear' Text
+' ' Text
+'weapons' Text
+' ' Text
+'arsenal' Text
+']]' Punctuation
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'world' Text
+';' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Status' Text
+' ' Text
+'of' Text
+' ' Text
+'World' Text
+' ' Text
+'Nuclear' Text
+' ' Text
+'Forces' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'fas' Text
+'.' Text
+'org' Text
+'/' Text
+'issues' Text
+'/' Text
+'nuclear' Text
+'-' Text
+'weapons' Text
+'/' Text
+'status' Text
+'-' Text
+'world' Text
+'-' Text
+'nuclear' Text
+'-' Text
+'forces' Text
+'/' Text
+' ' Text
+'|' Punctuation
+'url-status' Name.Label
+'=' Operator
+'dead' Text
+' ' Text
+'|' Punctuation
+'archive-url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'web' Text
+'.' Text
+'archive' Text
+'.' Text
+'org' Text
+'/' Text
+'web' Text
+'/' Text
+'20150618103342' Text
+'/' Text
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'fas' Text
+'.' Text
+'org' Text
+'/' Text
+'issues' Text
+'/' Text
+'nuclear' Text
+'-' Text
+'weapons' Text
+'/' Text
+'status' Text
+'-' Text
+'world' Text
+'-' Text
+'nuclear' Text
+'-' Text
+'forces' Text
+'/' Text
+' ' Text
+'|' Punctuation
+'archive-date' Name.Label
+'=' Operator
+'18' Text
+' ' Text
+'June' Text
+' ' Text
+'2015' Text
+' ' Text
+'|' Punctuation
+'website' Name.Label
+'=' Operator
+'Federation' Text
+' ' Text
+'Of' Text
+' ' Text
+'American' Text
+' ' Text
+'Scientists' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'it' Text
+' ' Text
+'is' Text
+' ' Text
+'also' Text
+' ' Text
+'a' Text
+' ' Text
+'leader' Text
+' ' Text
+'in' Text
+' ' Text
+'[[' Punctuation
+'Nuclear power in France' Name.Tag
+'|' Punctuation
+'civilian' Text
+' ' Text
+'nuclear' Text
+' ' Text
+'technology' Text
+']]' Punctuation
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Study' Text
+' ' Text
+'France' Text
+"'" Text
+'s' Text
+' ' Text
+'Nuclear' Text
+'-' Text
+'Power' Text
+' ' Text
+'Success' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'theledger' Text
+'.' Text
+'com' Text
+'/' Text
+'article' Text
+'/' Text
+'20080814' Text
+'/' Text
+'COLUMNISTS' Text
+'/' Text
+'808140356' Text
+' ' Text
+'|' Punctuation
+'url-status' Name.Label
+'=' Operator
+'dead' Text
+' ' Text
+'|' Punctuation
+'archive-url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'web' Text
+'.' Text
+'archive' Text
+'.' Text
+'org' Text
+'/' Text
+'web' Text
+'/' Text
+'20150522133650' Text
+'/' Text
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'theledger' Text
+'.' Text
+'com' Text
+'/' Text
+'article' Text
+'/' Text
+'20080814' Text
+'/' Text
+'COLUMNISTS' Text
+'/' Text
+'808140356' Text
+' ' Text
+'|' Punctuation
+'archive-date' Name.Label
+'=' Operator
+'22' Text
+' ' Text
+'May' Text
+' ' Text
+'2015' Text
+' ' Text
+'|' Punctuation
+'website' Name.Label
+'=' Operator
+'TheLedger' Text
+'.' Text
+'com' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Stanford' Text
+' ' Text
+'Journal' Text
+' ' Text
+'of' Text
+' ' Text
+'International' Text
+' ' Text
+'Relations' Text
+',' Text
+' ' Text
+'"' Text
+'The' Text
+' ' Text
+'French' Text
+' ' Text
+'Connection' Text
+':' Text
+' ' Text
+'Comparing' Text
+' ' Text
+'French' Text
+' ' Text
+'and' Text
+' ' Text
+'American' Text
+' ' Text
+'Civilian' Text
+' ' Text
+'Nuclear' Text
+' ' Text
+'Energy' Text
+' ' Text
+'Programs' Text
+'"' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'web' Text
+'.' Text
+'stanford' Text
+'.' Text
+'edu' Text
+'/' Text
+'group' Text
+'/' Text
+'sjir' Text
+'/' Text
+'pdf' Text
+'/' Text
+'Nuclear_11' Text
+'.' Text
+'2' Text
+'.' Text
+'pdf' Text
+' ' Text
+'|' Punctuation
+'url-status' Name.Label
+'=' Operator
+'dead' Text
+' ' Text
+'|' Punctuation
+'archive-url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'web' Text
+'.' Text
+'archive' Text
+'.' Text
+'org' Text
+'/' Text
+'web' Text
+'/' Text
+'20150522131703' Text
+'/' Text
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'web' Text
+'.' Text
+'stanford' Text
+'.' Text
+'edu' Text
+'/' Text
+'group' Text
+'/' Text
+'sjir' Text
+'/' Text
+'pdf' Text
+'/' Text
+'Nuclear_11' Text
+'.' Text
+'2' Text
+'.' Text
+'pdf' Text
+' ' Text
+'|' Punctuation
+'archive-date' Name.Label
+'=' Operator
+'22' Text
+' ' Text
+'May' Text
+' ' Text
+'2015' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'date' Name.Label
+'=' Operator
+'6' Text
+' ' Text
+'March' Text
+' ' Text
+'2014' Text
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Countries' Text
+' ' Text
+'Generating' Text
+' ' Text
+'The' Text
+' ' Text
+'Most' Text
+' ' Text
+'Nuclear' Text
+' ' Text
+'Energy' Text
+'&nbsp;' Name.Entity
+'–' Text
+' ' Text
+'Business' Text
+' ' Text
+'Insider' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'businessinsider' Text
+'.' Text
+'com' Text
+'/' Text
+'countries' Text
+'-' Text
+'generating' Text
+'-' Text
+'the' Text
+'-' Text
+'most' Text
+'-' Text
+'nuclear' Text
+'-' Text
+'energy' Text
+'-' Text
+'2014' Text
+'-' Text
+'3' Text
+'?' Text
+'op' Text
+'=' Text
+'1' Text
+'&' Text
+'IR' Text
+'=' Text
+'T' Text
+' ' Text
+'|' Punctuation
+'website' Name.Label
+'=' Operator
+'Business' Text
+' ' Text
+'Insider' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'France' Text
+' ' Text
+'was' Text
+' ' Text
+'the' Text
+' ' Text
+'third' Text
+' ' Text
+'nation' Text
+',' Text
+' ' Text
+'after' Text
+' ' Text
+'the' Text
+' ' Text
+'Soviet' Text
+' ' Text
+'Union' Text
+' ' Text
+'and' Text
+' ' Text
+'the' Text
+' ' Text
+'United' Text
+' ' Text
+'States' Text
+',' Text
+' ' Text
+'to' Text
+' ' Text
+'launch' Text
+' ' Text
+'its' Text
+' ' Text
+'[[' Punctuation
+'Diamant' Name.Tag
+'|' Punctuation
+'space' Text
+' ' Text
+'satellite' Text
+']]' Punctuation
+' ' Text
+'and' Text
+' ' Text
+'the' Text
+' ' Text
+'first' Text
+' ' Text
+'to' Text
+' ' Text
+'establish' Text
+' ' Text
+'a' Text
+' ' Text
+'commercial' Text
+' ' Text
+'[[' Punctuation
+'launch service provider' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'[[' Punctuation
+'Arianespace' Name.Tag
+']]' Punctuation
+'.' Text
+' ' Text
+'The' Text
+' ' Text
+'French' Text
+' ' Text
+'[[' Punctuation
+'List of government space agencies' Name.Tag
+'|' Punctuation
+'national' Text
+' ' Text
+'space' Text
+' ' Text
+'programme' Text
+']]' Punctuation
+',' Text
+' ' Text
+'[[' Punctuation
+'CNES' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'is' Text
+' ' Text
+'the' Text
+' ' Text
+'third' Text
+' ' Text
+'oldest' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'world' Text
+',' Text
+' ' Text
+'and' Text
+' ' Text
+'the' Text
+' ' Text
+'oldest' Text
+',' Text
+' ' Text
+'largest' Text
+',' Text
+' ' Text
+'and' Text
+' ' Text
+'most' Text
+' ' Text
+'active' Text
+' ' Text
+'in' Text
+' ' Text
+'Europe' Text
+'.' Text
+' ' Text
+'France' Text
+' ' Text
+'is' Text
+' ' Text
+'a' Text
+' ' Text
+'founding' Text
+' ' Text
+'member' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'European Space Agency' Name.Tag
+']]' Punctuation
+' ' Text
+'(' Text
+'ESA' Text
+')' Text
+',' Text
+' ' Text
+'contributing' Text
+' ' Text
+'over' Text
+' ' Text
+'a' Text
+' ' Text
+'quarter' Text
+' ' Text
+'of' Text
+' ' Text
+'its' Text
+' ' Text
+'budget' Text
+',' Text
+' ' Text
+'the' Text
+' ' Text
+'most' Text
+' ' Text
+'of' Text
+' ' Text
+'any' Text
+' ' Text
+'member' Text
+' ' Text
+'state' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Funding' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'esa' Text
+'.' Text
+'int' Text
+'/' Text
+'About_Us' Text
+'/' Text
+'Corporate_news' Text
+'/' Text
+'Funding' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'5' Text
+' ' Text
+'February' Text
+' ' Text
+'2022' Text
+' ' Text
+'|' Punctuation
+'website' Name.Label
+'=' Operator
+'esa' Text
+'.' Text
+'int' Text
+' ' Text
+'|' Punctuation
+'language' Name.Label
+'=' Operator
+'en' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'ESA' Text
+' ' Text
+'is' Text
+' ' Text
+'headquartered' Text
+' ' Text
+'in' Text
+' ' Text
+'Paris' Text
+',' Text
+' ' Text
+'has' Text
+' ' Text
+'its' Text
+' ' Text
+'principal' Text
+' ' Text
+'spaceport' Text
+' ' Text
+'in' Text
+' ' Text
+'French' Text
+' ' Text
+'Guiana' Text
+',' Text
+' ' Text
+'and' Text
+' ' Text
+'utilises' Text
+' ' Text
+'the' Text
+' ' Text
+'French' Text
+'-' Text
+'made' Text
+' ' Text
+'[[' Punctuation
+'Ariane 5' Name.Tag
+']]' Punctuation
+' ' Text
+'as' Text
+' ' Text
+'its' Text
+' ' Text
+'primary' Text
+' ' Text
+'launch' Text
+' ' Text
+'vehicle' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'book' Name.Tag
+' ' Text
+'|' Punctuation
+'last1' Name.Label
+'=' Operator
+'Muriel' Text
+' ' Text
+'Gargaud' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'books' Text
+'.' Text
+'google' Text
+'.' Text
+'com' Text
+'/' Text
+'books' Text
+'?' Text
+'id' Text
+'=' Text
+'oEq1y9GIcr0C' Text
+'&' Text
+'pg' Text
+'=' Text
+'PA322' Text
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Encyclopedia' Text
+' ' Text
+'of' Text
+' ' Text
+'Astrobiology' Text
+' ' Text
+'|' Punctuation
+'last2' Name.Label
+'=' Operator
+'Ricardo' Text
+' ' Text
+'Amils' Text
+' ' Text
+'|' Punctuation
+'last3' Name.Label
+'=' Operator
+'Henderson' Text
+' ' Text
+'James' Text
+' ' Text
+'Cleaves' Text
+' ' Text
+'|' Punctuation
+'publisher' Name.Label
+'=' Operator
+'Springer' Text
+' ' Text
+'Science' Text
+' ' Text
+'&' Text
+' ' Text
+'Business' Text
+' ' Text
+'Media' Text
+' ' Text
+'|' Punctuation
+'year' Name.Label
+'=' Operator
+'2011' Text
+' ' Text
+'|' Punctuation
+'isbn' Name.Label
+'=' Operator
+'978' Text
+'-' Text
+'3' Text
+'-' Text
+'642' Text
+'-' Text
+'11271' Text
+'-' Text
+'3' Text
+' ' Text
+'|' Punctuation
+'pages' Name.Label
+'=' Operator
+'322' Text
+'–' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'France' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'oecd' Text
+'-' Text
+'ilibrary' Text
+'.' Text
+'org' Text
+'/' Text
+'economics' Text
+'/' Text
+'the' Text
+'-' Text
+'space' Text
+'-' Text
+'economy' Text
+'-' Text
+'at' Text
+'-' Text
+'a' Text
+'-' Text
+'glance' Text
+'-' Text
+'2011' Text
+'/' Text
+'france_9789264113565' Text
+'-' Text
+'22' Text
+'-' Text
+'en' Text
+';' Text
+'jsessionid' Text
+'=' Text
+'pgi7a3cfp7p2' Text
+'.' Text
+'x' Text
+'-' Text
+'oecd' Text
+'-' Text
+'live' Text
+'-' Text
+'03' Text
+' ' Text
+'|' Punctuation
+'url-status' Name.Label
+'=' Operator
+'dead' Text
+' ' Text
+'|' Punctuation
+'archive-url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'web' Text
+'.' Text
+'archive' Text
+'.' Text
+'org' Text
+'/' Text
+'web' Text
+'/' Text
+'20151004165922' Text
+'/' Text
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'oecd' Text
+'-' Text
+'ilibrary' Text
+'.' Text
+'org' Text
+'/' Text
+'economics' Text
+'/' Text
+'the' Text
+'-' Text
+'space' Text
+'-' Text
+'economy' Text
+'-' Text
+'at' Text
+'-' Text
+'a' Text
+'-' Text
+'glance' Text
+'-' Text
+'2011' Text
+'/' Text
+'france_9789264113565' Text
+'-' Text
+'22' Text
+'-' Text
+'en' Text
+'%' Text
+'3Bjsessionid' Text
+'%' Text
+'3Dpgi7a3cfp7p2' Text
+'.' Text
+'x' Text
+'-' Text
+'oecd' Text
+'-' Text
+'live' Text
+'-' Text
+'03' Text
+' ' Text
+'|' Punctuation
+'archive-date' Name.Label
+'=' Operator
+'4' Text
+' ' Text
+'October' Text
+' ' Text
+'2015' Text
+' ' Text
+'|' Punctuation
+'website' Name.Label
+'=' Operator
+'oecd' Text
+'-' Text
+'ilibrary' Text
+'.' Text
+'org' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'last' Name.Label
+'=' Operator
+'French' Text
+' ' Text
+'Ministry' Text
+' ' Text
+'of' Text
+' ' Text
+'Foreign' Text
+' ' Text
+'Affairs' Text
+' ' Text
+'and' Text
+' ' Text
+'International' Text
+' ' Text
+'Development' Text
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'France' Text
+' ' Text
+'at' Text
+' ' Text
+'the' Text
+' ' Text
+'heart' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'Rosetta' Text
+' ' Text
+'space' Text
+' ' Text
+'mission' Text
+':' Text
+' ' Text
+'a' Text
+' ' Text
+'unique' Text
+' ' Text
+'technological' Text
+' ' Text
+'challenge' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'diplomatie' Text
+'.' Text
+'gouv' Text
+'.' Text
+'fr' Text
+'/' Text
+'en' Text
+'/' Text
+'french' Text
+'-' Text
+'foreign' Text
+'-' Text
+'policy' Text
+'-' Text
+'1' Text
+'/' Text
+'scientific' Text
+'-' Text
+'diplomacy' Text
+'/' Text
+'events' Text
+'-' Text
+'7867' Text
+'/' Text
+'article' Text
+'/' Text
+'france' Text
+'-' Text
+'at' Text
+'-' Text
+'the' Text
+'-' Text
+'heart' Text
+'-' Text
+'of' Text
+'-' Text
+'the' Text
+'-' Text
+'rosetta' Text
+' ' Text
+'|' Punctuation
+'url-status' Name.Label
+'=' Operator
+'dead' Text
+' ' Text
+'|' Punctuation
+'archive-url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'web' Text
+'.' Text
+'archive' Text
+'.' Text
+'org' Text
+'/' Text
+'web' Text
+'/' Text
+'20150522152217' Text
+'/' Text
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'diplomatie' Text
+'.' Text
+'gouv' Text
+'.' Text
+'fr' Text
+'/' Text
+'en' Text
+'/' Text
+'french' Text
+'-' Text
+'foreign' Text
+'-' Text
+'policy' Text
+'-' Text
+'1' Text
+'/' Text
+'scientific' Text
+'-' Text
+'diplomacy' Text
+'/' Text
+'events' Text
+'-' Text
+'7867' Text
+'/' Text
+'article' Text
+'/' Text
+'france' Text
+'-' Text
+'at' Text
+'-' Text
+'the' Text
+'-' Text
+'heart' Text
+'-' Text
+'of' Text
+'-' Text
+'the' Text
+'-' Text
+'rosetta' Text
+' ' Text
+'|' Punctuation
+'archive-date' Name.Label
+'=' Operator
+'22' Text
+' ' Text
+'May' Text
+' ' Text
+'2015' Text
+' ' Text
+'|' Punctuation
+'publisher' Name.Label
+'=' Operator
+'France' Text
+' ' Text
+'Diplomatie' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'[[' Punctuation
+'Airbus' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'a' Text
+' ' Text
+'leading' Text
+' ' Text
+'aerospace' Text
+' ' Text
+'company' Text
+' ' Text
+'and' Text
+' ' Text
+'the' Text
+' ' Text
+'world' Text
+"'" Text
+'s' Text
+' ' Text
+'largest' Text
+' ' Text
+'airline' Text
+' ' Text
+'manufacturer' Text
+',' Text
+' ' Text
+'was' Text
+' ' Text
+'formed' Text
+' ' Text
+'partly' Text
+' ' Text
+'from' Text
+' ' Text
+'the' Text
+' ' Text
+'French' Text
+' ' Text
+'company' Text
+',' Text
+' ' Text
+'[[' Punctuation
+'Aérospatiale' Name.Tag
+']]' Punctuation
+';' Text
+' ' Text
+'its' Text
+' ' Text
+'main' Text
+' ' Text
+'commercial' Text
+' ' Text
+'airline' Text
+' ' Text
+'business' Text
+' ' Text
+'is' Text
+' ' Text
+'conducted' Text
+' ' Text
+'through' Text
+' ' Text
+'its' Text
+' ' Text
+'French' Text
+' ' Text
+'division' Text
+',' Text
+' ' Text
+'Airbus' Text
+' ' Text
+'S' Text
+'.' Text
+'A' Text
+'.' Text
+'S' Text
+'.' Text
+'\n' Text
+
+'\n' Text
+
+'[[' Punctuation
+'File' Name.Namespace
+':' Punctuation
+'ESRF img 0852.jpg' Name.Tag
+'|' Punctuation
+'thumb' Text
+'|' Punctuation
+'right' Text
+'|' Punctuation
+'alt' Name.Attribute
+'=' Operator
+'Top' Text
+' ' Text
+'view' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'ring' Text
+' ' Text
+'of' Text
+' ' Text
+'European' Text
+' ' Text
+'Synchrotron' Text
+' ' Text
+'Radiation' Text
+' ' Text
+'Facility' Text
+'|' Punctuation
+'The' Text
+' ' Text
+'[[' Punctuation
+'European Synchrotron Radiation Facility' Name.Tag
+']]' Punctuation
+' ' Text
+'in' Text
+' ' Text
+'[[' Punctuation
+'Grenoble' Name.Tag
+']]' Punctuation
+']]' Punctuation
+'France' Text
+' ' Text
+'also' Text
+' ' Text
+'hosts' Text
+' ' Text
+'major' Text
+' ' Text
+'international' Text
+' ' Text
+'research' Text
+' ' Text
+'facilities' Text
+',' Text
+' ' Text
+'including' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'European Synchrotron Radiation Facility' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Institut Laue–Langevin' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'and' Text
+' ' Text
+'[[' Punctuation
+'Minatec' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'Europe' Text
+"'" Text
+'s' Text
+' ' Text
+'leading' Text
+' ' Text
+'[[' Punctuation
+'nanotechnology' Name.Tag
+']]' Punctuation
+' ' Text
+'research' Text
+' ' Text
+'centre' Text
+'.' Text
+' ' Text
+'It' Text
+' ' Text
+'is' Text
+' ' Text
+'also' Text
+' ' Text
+'a' Text
+' ' Text
+'major' Text
+' ' Text
+'member' Text
+' ' Text
+'of' Text
+' ' Text
+'[[' Punctuation
+'CERN' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'which' Text
+' ' Text
+'operates' Text
+' ' Text
+'the' Text
+' ' Text
+'largest' Text
+' ' Text
+'[[' Punctuation
+'particle physics' Name.Tag
+']]' Punctuation
+' ' Text
+'laboratory' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'world' Text
+' ' Text
+'and' Text
+' ' Text
+'is' Text
+' ' Text
+'its' Text
+' ' Text
+'third' Text
+' ' Text
+'largest' Text
+' ' Text
+'contributor' Text
+'.' Text
+' ' Text
+'France' Text
+' ' Text
+'pioneered' Text
+' ' Text
+'and' Text
+' ' Text
+'hosts' Text
+' ' Text
+'[[' Punctuation
+'ITER' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'an' Text
+' ' Text
+'international' Text
+' ' Text
+'effort' Text
+' ' Text
+'to' Text
+' ' Text
+'develop' Text
+' ' Text
+'nuclear' Text
+' ' Text
+'fusion' Text
+' ' Text
+'energy' Text
+',' Text
+' ' Text
+'which' Text
+' ' Text
+'is' Text
+' ' Text
+'the' Text
+' ' Text
+'world' Text
+"'" Text
+'s' Text
+' ' Text
+'biggest' Text
+' ' Text
+'megaproject' Text
+'.' Text
+'\n' Text
+
+'\n' Text
+
+'The' Text
+' ' Text
+'[[' Punctuation
+'TGV' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'developed' Text
+' ' Text
+'by' Text
+' ' Text
+'France' Text
+"'" Text
+'s' Text
+' ' Text
+'national' Text
+' ' Text
+'railway' Text
+' ' Text
+'company' Text
+',' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'SNCF' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'is' Text
+' ' Text
+'a' Text
+' ' Text
+'high' Text
+'-' Text
+'speed' Text
+' ' Text
+'train' Text
+' ' Text
+'that' Text
+' ' Text
+'holds' Text
+' ' Text
+'a' Text
+' ' Text
+'series' Text
+' ' Text
+'of' Text
+' ' Text
+'[[' Punctuation
+'Land speed record for railed vehicles' Name.Tag
+'|' Punctuation
+'world' Text
+' ' Text
+'speed' Text
+' ' Text
+'records' Text
+']]' Punctuation
+';' Text
+' ' Text
+'in' Text
+' ' Text
+'2007' Text
+',' Text
+' ' Text
+'it' Text
+' ' Text
+'became' Text
+' ' Text
+'the' Text
+' ' Text
+'fastest' Text
+' ' Text
+'commercial' Text
+' ' Text
+'wheeled' Text
+' ' Text
+'train' Text
+',' Text
+' ' Text
+'achieving' Text
+' ' Text
+'a' Text
+' ' Text
+'speed' Text
+' ' Text
+'of' Text
+' ' Text
+'{{' Punctuation
+'Convert' Name.Tag
+'|' Punctuation
+'574' Text
+'.' Text
+'8' Text
+'|' Punctuation
+'km' Text
+'/' Text
+'h' Text
+'|' Punctuation
+'abbr' Name.Label
+'=' Operator
+'on' Text
+'}}' Punctuation
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'news' Name.Tag
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'French' Text
+' ' Text
+'set' Text
+' ' Text
+'new' Text
+' ' Text
+'rail' Text
+' ' Text
+'speed' Text
+' ' Text
+'record' Text
+' ' Text
+'|' Punctuation
+'work' Name.Label
+'=' Operator
+'BBC' Text
+' ' Text
+'News' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'news' Text
+'.' Text
+'bbc' Text
+'.' Text
+'co' Text
+'.' Text
+'uk' Text
+'/' Text
+'2' Text
+'/' Text
+'hi' Text
+'/' Text
+'6521295' Text
+'.' Text
+'stm' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'As' Text
+' ' Text
+'of' Text
+' ' Text
+'2021' Text
+',' Text
+' ' Text
+'it' Text
+' ' Text
+'is' Text
+' ' Text
+'the' Text
+' ' Text
+'third' Text
+'-' Text
+'fastest' Text
+' ' Text
+'train' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'world' Text
+',' Text
+' ' Text
+'surpassed' Text
+' ' Text
+'only' Text
+' ' Text
+'by' Text
+' ' Text
+'[[' Punctuation
+'maglev' Name.Tag
+']]' Punctuation
+' ' Text
+'models' Text
+' ' Text
+'that' Text
+' ' Text
+'utilise' Text
+' ' Text
+'magnetic' Text
+' ' Text
+'levitation' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'last' Name.Label
+'=' Operator
+'Wallach' Text
+' ' Text
+'|' Punctuation
+'first' Name.Label
+'=' Operator
+'Omri' Text
+' ' Text
+'|' Punctuation
+'date' Name.Label
+'=' Operator
+'8' Text
+' ' Text
+'October' Text
+' ' Text
+'2021' Text
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Visualizing' Text
+' ' Text
+'the' Text
+' ' Text
+'Fastest' Text
+' ' Text
+'Trains' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'World' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'visualcapitalist' Text
+'.' Text
+'com' Text
+'/' Text
+'visualizing' Text
+'-' Text
+'the' Text
+'-' Text
+'fastest' Text
+'-' Text
+'trains' Text
+'-' Text
+'in' Text
+'-' Text
+'the' Text
+'-' Text
+'world' Text
+'/' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'5' Text
+' ' Text
+'February' Text
+' ' Text
+'2022' Text
+' ' Text
+'|' Punctuation
+'website' Name.Label
+'=' Operator
+'Visual' Text
+' ' Text
+'Capitalist' Text
+' ' Text
+'|' Punctuation
+'language' Name.Label
+'=' Operator
+'en' Text
+'-' Text
+'US' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'Western' Text
+' ' Text
+'Europe' Text
+' ' Text
+'is' Text
+' ' Text
+'now' Text
+' ' Text
+'serviced' Text
+' ' Text
+'by' Text
+' ' Text
+'a' Text
+' ' Text
+'network' Text
+' ' Text
+'of' Text
+' ' Text
+'TGV' Text
+' ' Text
+'lines' Text
+'.' Text
+'\n' Text
+
+'\n' Text
+
+'The' Text
+' ' Text
+"''" Generic.Emph
+'[[' Punctuation
+'French National Centre for Scientific Research' Name.Tag
+'|' Punctuation
+'Centre' Text
+' ' Text
+'National' Text
+' ' Text
+'de' Text
+' ' Text
+'la' Text
+' ' Text
+'Recherche' Text
+' ' Text
+'Scientifique' Text
+']]' Punctuation
+"''" Generic.Emph
+' ' Text
+'(' Text
+'CNRS' Text
+')' Text
+',' Text
+' ' Text
+'the' Text
+' ' Text
+'state' Text
+' ' Text
+'research' Text
+' ' Text
+'agency' Text
+',' Text
+' ' Text
+'is' Text
+' ' Text
+'the' Text
+' ' Text
+'largest' Text
+' ' Text
+'research' Text
+' ' Text
+'institute' Text
+' ' Text
+'in' Text
+' ' Text
+'Europe' Text
+' ' Text
+'and' Text
+' ' Text
+'among' Text
+' ' Text
+'the' Text
+' ' Text
+'most' Text
+' ' Text
+'prominent' Text
+' ' Text
+'internationally' Text
+';' Text
+' ' Text
+'according' Text
+' ' Text
+'to' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Nature Index' Name.Tag
+'|' Punctuation
+'2020' Text
+' ' Text
+'Nature' Text
+' ' Text
+'Index' Text
+']]' Punctuation
+',' Text
+' ' Text
+'it' Text
+' ' Text
+'ranks' Text
+' ' Text
+'fourth' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'share' Text
+' ' Text
+'of' Text
+' ' Text
+'articles' Text
+' ' Text
+'published' Text
+' ' Text
+'in' Text
+' ' Text
+'scientific' Text
+' ' Text
+'journals' Text
+' ' Text
+'worldwide' Text
+',' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'2020' Text
+' ' Text
+'tables' Text
+':' Text
+' ' Text
+'Institutions' Text
+' ' Text
+'{{' Punctuation
+'!' Name.Function
+'}}' Punctuation
+' ' Text
+'2020' Text
+' ' Text
+'tables' Text
+' ' Text
+'{{' Punctuation
+'!' Name.Function
+'}}' Punctuation
+' ' Text
+'Institutions' Text
+' ' Text
+'{{' Punctuation
+'!' Name.Function
+'}}' Punctuation
+' ' Text
+'Nature' Text
+' ' Text
+'Index' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'natureindex' Text
+'.' Text
+'com' Text
+'/' Text
+'annual' Text
+'-' Text
+'tables' Text
+'/' Text
+'2020' Text
+'/' Text
+'institution' Text
+'/' Text
+'all' Text
+'/' Text
+'all' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'11' Text
+' ' Text
+'January' Text
+' ' Text
+'2021' Text
+' ' Text
+'|' Punctuation
+'website' Name.Label
+'=' Operator
+'natureindex' Text
+'.' Text
+'com' Text
+' ' Text
+'|' Punctuation
+'archive-date' Name.Label
+'=' Operator
+'5' Text
+' ' Text
+'March' Text
+' ' Text
+'2021' Text
+' ' Text
+'|' Punctuation
+'archive-url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'web' Text
+'.' Text
+'archive' Text
+'.' Text
+'org' Text
+'/' Text
+'web' Text
+'/' Text
+'20210305183253' Text
+'/' Text
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'natureindex' Text
+'.' Text
+'com' Text
+'/' Text
+'annual' Text
+'-' Text
+'tables' Text
+'/' Text
+'2020' Text
+'/' Text
+'institution' Text
+'/' Text
+'all' Text
+'/' Text
+'all' Text
+' ' Text
+'|' Punctuation
+'url-status' Name.Label
+'=' Operator
+'dead' Text
+' ' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'with' Text
+' ' Text
+'France' Text
+' ' Text
+'as' Text
+' ' Text
+'a' Text
+' ' Text
+'whole' Text
+' ' Text
+'having' Text
+' ' Text
+'the' Text
+' ' Text
+'sixth' Text
+'-' Text
+'highest' Text
+' ' Text
+'share' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'2020' Text
+' ' Text
+'tables' Text
+':' Text
+' ' Text
+'Countries' Text
+'/' Text
+'territories' Text
+' ' Text
+'{{' Punctuation
+'!' Name.Function
+'}}' Punctuation
+' ' Text
+'2020' Text
+' ' Text
+'tables' Text
+' ' Text
+'{{' Punctuation
+'!' Name.Function
+'}}' Punctuation
+' ' Text
+'Countries' Text
+'/' Text
+'territories' Text
+' ' Text
+'{{' Punctuation
+'!' Name.Function
+'}}' Punctuation
+' ' Text
+'Nature' Text
+' ' Text
+'Index' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'natureindex' Text
+'.' Text
+'com' Text
+'/' Text
+'annual' Text
+'-' Text
+'tables' Text
+'/' Text
+'2020' Text
+'/' Text
+'country' Text
+'/' Text
+'all' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'11' Text
+' ' Text
+'January' Text
+' ' Text
+'2021' Text
+' ' Text
+'|' Punctuation
+'website' Name.Label
+'=' Operator
+'natureindex' Text
+'.' Text
+'com' Text
+' ' Text
+'|' Punctuation
+'archive-date' Name.Label
+'=' Operator
+'25' Text
+' ' Text
+'January' Text
+' ' Text
+'2021' Text
+' ' Text
+'|' Punctuation
+'archive-url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'web' Text
+'.' Text
+'archive' Text
+'.' Text
+'org' Text
+'/' Text
+'web' Text
+'/' Text
+'20210125185920' Text
+'/' Text
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'natureindex' Text
+'.' Text
+'com' Text
+'/' Text
+'annual' Text
+'-' Text
+'tables' Text
+'/' Text
+'2020' Text
+'/' Text
+'country' Text
+'/' Text
+'all' Text
+' ' Text
+'|' Punctuation
+'url-status' Name.Label
+'=' Operator
+'dead' Text
+' ' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'\n' Text
+
+'\n' Text
+
+'As' Text
+' ' Text
+'of' Text
+' ' Text
+'2022' Text
+',' Text
+' ' Text
+'France' Text
+' ' Text
+'ranks' Text
+' ' Text
+'fourth' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'number' Text
+' ' Text
+'of' Text
+' ' Text
+'Nobel' Text
+' ' Text
+'laureates' Text
+',' Text
+' ' Text
+'with' Text
+' ' Text
+'[[' Punctuation
+'List of Nobel laureates by country' Name.Tag
+'|' Punctuation
+'70' Text
+' ' Text
+'French' Text
+']]' Punctuation
+' ' Text
+'people' Text
+' ' Text
+'having' Text
+' ' Text
+'been' Text
+' ' Text
+'awarded' Text
+' ' Text
+'a' Text
+' ' Text
+'Nobel' Text
+' ' Text
+'Prize' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'All' Text
+' ' Text
+'Nobel' Text
+' ' Text
+'Prizes' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'nobelprize' Text
+'.' Text
+'org' Text
+'/' Text
+'nobel_prizes' Text
+'/' Text
+'lists' Text
+'/' Text
+'all' Text
+'/' Text
+' ' Text
+'|' Punctuation
+'url-status' Name.Label
+'=' Operator
+'dead' Text
+' ' Text
+'|' Punctuation
+'archive-url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'web' Text
+'.' Text
+'archive' Text
+'.' Text
+'org' Text
+'/' Text
+'web' Text
+'/' Text
+'20131103203731' Text
+'/' Text
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'nobelprize' Text
+'.' Text
+'org' Text
+'/' Text
+'nobel_prizes' Text
+'/' Text
+'lists' Text
+'/' Text
+'all' Text
+'/' Text
+' ' Text
+'|' Punctuation
+'archive-date' Name.Label
+'=' Operator
+'3' Text
+' ' Text
+'November' Text
+' ' Text
+'2013' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'10' Text
+' ' Text
+'October' Text
+' ' Text
+'2012' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'Twelve' Text
+' ' Text
+'French' Text
+' ' Text
+'mathematicians' Text
+' ' Text
+'have' Text
+' ' Text
+'received' Text
+' ' Text
+'a' Text
+' ' Text
+'[[' Punctuation
+'Fields Medal' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'considered' Text
+' ' Text
+'the' Text
+' ' Text
+'most' Text
+' ' Text
+'prestigious' Text
+' ' Text
+'award' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'field' Text
+',' Text
+' ' Text
+'making' Text
+' ' Text
+'up' Text
+' ' Text
+'one' Text
+'-' Text
+'fifth' Text
+' ' Text
+'of' Text
+' ' Text
+'total' Text
+' ' Text
+'recipients' Text
+',' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'List' Text
+' ' Text
+'of' Text
+' ' Text
+'Fields' Text
+' ' Text
+'Medallists' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'mathunion' Text
+'.' Text
+'org' Text
+'/' Text
+'general' Text
+'/' Text
+'prizes' Text
+'/' Text
+'fields' Text
+'/' Text
+'prizewinners' Text
+'/' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'10' Text
+' ' Text
+'October' Text
+' ' Text
+'2012' Text
+' ' Text
+'|' Punctuation
+'publisher' Name.Label
+'=' Operator
+'International' Text
+' ' Text
+'Mathematical' Text
+' ' Text
+'Union' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'and' Text
+' ' Text
+'second' Text
+' ' Text
+'only' Text
+' ' Text
+'to' Text
+' ' Text
+'the' Text
+' ' Text
+'United' Text
+' ' Text
+'States' Text
+'.' Text
+'\n' Text
+
+'\n' Text
+
+'France' Text
+' ' Text
+'ranked' Text
+' ' Text
+'12th' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'2022' Text
+' ' Text
+'[[' Punctuation
+'Global Innovation Index' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'compared' Text
+' ' Text
+'to' Text
+' ' Text
+'12th' Text
+' ' Text
+'in' Text
+' ' Text
+'2020' Text
+' ' Text
+'and' Text
+' ' Text
+'16th' Text
+' ' Text
+'in' Text
+' ' Text
+'2019' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'book' Name.Tag
+' ' Text
+'|' Punctuation
+'last' Name.Label
+'=' Operator
+'WIPO' Text
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Global' Text
+' ' Text
+'Innovation' Text
+' ' Text
+'Index' Text
+' ' Text
+'2022' Text
+',' Text
+' ' Text
+'15th' Text
+' ' Text
+'Edition' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'wipo' Text
+'.' Text
+'int' Text
+'/' Text
+'global_innovation_index' Text
+'/' Text
+'en' Text
+'/' Text
+'2022' Text
+'/' Text
+'index' Text
+'.' Text
+'html' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'2022' Text
+'-' Text
+'11' Text
+'-' Text
+'16' Text
+' ' Text
+'|' Punctuation
+'website' Name.Label
+'=' Operator
+'www' Text
+'.' Text
+'wipo' Text
+'.' Text
+'int' Text
+' ' Text
+'|' Punctuation
+'series' Name.Label
+'=' Operator
+'Global' Text
+' ' Text
+'Innovation' Text
+' ' Text
+'Index' Text
+' ' Text
+'|' Punctuation
+'year' Name.Label
+'=' Operator
+'2022' Text
+' ' Text
+'|' Punctuation
+'publisher' Name.Label
+'=' Operator
+'World' Text
+' ' Text
+'Intellectual' Text
+' ' Text
+'Property' Text
+' ' Text
+'Organization' Text
+' ' Text
+'|' Punctuation
+'doi' Name.Label
+'=' Operator
+'10' Text
+'.' Text
+'34667' Text
+'/' Text
+'tind' Text
+'.' Text
+'46596' Text
+' ' Text
+'|' Punctuation
+'isbn' Name.Label
+'=' Operator
+'9789280534320' Text
+' ' Text
+'|' Punctuation
+'language' Name.Label
+'=' Operator
+'en' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Global' Text
+' ' Text
+'Innovation' Text
+' ' Text
+'Index' Text
+' ' Text
+'2019' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'wipo' Text
+'.' Text
+'int' Text
+'/' Text
+'global_innovation_index' Text
+'/' Text
+'en' Text
+'/' Text
+'2019' Text
+'/' Text
+'index' Text
+'.' Text
+'html' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'2' Text
+' ' Text
+'September' Text
+' ' Text
+'2021' Text
+' ' Text
+'|' Punctuation
+'website' Name.Label
+'=' Operator
+'wipo' Text
+'.' Text
+'int' Text
+' ' Text
+'|' Punctuation
+'language' Name.Label
+'=' Operator
+'en' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'RTD' Text
+' ' Text
+'-' Text
+' ' Text
+'Item' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'ec' Text
+'.' Text
+'europa' Text
+'.' Text
+'eu' Text
+'/' Text
+'newsroom' Text
+'/' Text
+'rtd' Text
+'/' Text
+'items' Text
+'/' Text
+'691898' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'2' Text
+' ' Text
+'September' Text
+' ' Text
+'2021' Text
+' ' Text
+'|' Punctuation
+'website' Name.Label
+'=' Operator
+'ec' Text
+'.' Text
+'europa' Text
+'.' Text
+'eu' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'date' Name.Label
+'=' Operator
+'28' Text
+' ' Text
+'October' Text
+' ' Text
+'2013' Text
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Global' Text
+' ' Text
+'Innovation' Text
+' ' Text
+'Index' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'knowledge' Text
+'.' Text
+'insead' Text
+'.' Text
+'edu' Text
+'/' Text
+'entrepreneurship' Text
+'-' Text
+'innovation' Text
+'/' Text
+'global' Text
+'-' Text
+'innovation' Text
+'-' Text
+'index' Text
+'-' Text
+'2930' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'2' Text
+' ' Text
+'September' Text
+' ' Text
+'2021' Text
+' ' Text
+'|' Punctuation
+'website' Name.Label
+'=' Operator
+'INSEAD' Text
+' ' Text
+'Knowledge' Text
+' ' Text
+'|' Punctuation
+'language' Name.Label
+'=' Operator
+'en' Text
+' ' Text
+'|' Punctuation
+'archive-date' Name.Label
+'=' Operator
+'2' Text
+' ' Text
+'September' Text
+' ' Text
+'2021' Text
+' ' Text
+'|' Punctuation
+'archive-url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'web' Text
+'.' Text
+'archive' Text
+'.' Text
+'org' Text
+'/' Text
+'web' Text
+'/' Text
+'20210902101622' Text
+'/' Text
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'knowledge' Text
+'.' Text
+'insead' Text
+'.' Text
+'edu' Text
+'/' Text
+'entrepreneurship' Text
+'-' Text
+'innovation' Text
+'/' Text
+'global' Text
+'-' Text
+'innovation' Text
+'-' Text
+'index' Text
+'-' Text
+'2930' Text
+' ' Text
+'|' Punctuation
+'url-status' Name.Label
+'=' Operator
+'dead' Text
+' ' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'\n' Text
+
+'\n' Text
+
+'==' Generic.Subheading
+'Demographics' Generic.Subheading
+'==' Generic.Subheading
+'\n' Text.Whitespace
+
+'{{' Punctuation
+'Main' Name.Tag
+'|' Punctuation
+'Demographics' Text
+' ' Text
+'of' Text
+' ' Text
+'France' Text
+'}}' Punctuation
+'\n' Text
+
+'\n' Text
+
+'[[' Punctuation
+'File' Name.Namespace
+':' Punctuation
+'Population density in France.png' Name.Tag
+'|' Punctuation
+'upright' Name.Attribute
+'=' Operator
+'1' Text
+'.' Text
+'2' Text
+'|' Punctuation
+'thumb' Text
+'|' Punctuation
+'Population' Text
+' ' Text
+'density' Text
+' ' Text
+'in' Text
+' ' Text
+'France' Text
+' ' Text
+'by' Text
+' ' Text
+'[[' Punctuation
+'Arrondissements of France' Name.Tag
+'|' Punctuation
+'arrondissement' Text
+']]' Punctuation
+']]' Punctuation
+'\n' Text
+
+'\n' Text
+
+'With' Text
+' ' Text
+'an' Text
+' ' Text
+'estimated' Text
+' ' Text
+'January' Text
+' ' Text
+'2023' Text
+' ' Text
+'population' Text
+' ' Text
+'of' Text
+' ' Text
+'68' Text
+',' Text
+'042' Text
+',' Text
+'591' Text
+' ' Text
+'people' Text
+',' Text
+'<' Punctuation
+'ref' Name.Tag
+' ' Text.Whitespace
+'name' Name.Attribute
+'=' Operator
+'pop_est' Literal.String
+'/>' Punctuation
+' ' Text
+'France' Text
+' ' Text
+'is' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'List of countries by population' Name.Tag
+'#' Punctuation
+'Sovereign states and dependencies by population' Name.Label
+'|' Punctuation
+'20th' Text
+' ' Text
+'most' Text
+' ' Text
+'populous' Text
+' ' Text
+'country' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'world' Text
+']]' Punctuation
+',' Text
+' ' Text
+'the' Text
+' ' Text
+'third' Text
+'-' Text
+'most' Text
+' ' Text
+'populous' Text
+' ' Text
+'in' Text
+' ' Text
+'Europe' Text
+' ' Text
+'(' Text
+'after' Text
+' ' Text
+'[[' Punctuation
+'Russia' Name.Tag
+']]' Punctuation
+' ' Text
+'and' Text
+' ' Text
+'[[' Punctuation
+'Germany' Name.Tag
+']]' Punctuation
+')' Text
+',' Text
+' ' Text
+'and' Text
+' ' Text
+'the' Text
+' ' Text
+'second' Text
+' ' Text
+'most' Text
+' ' Text
+'populous' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'European Union' Name.Tag
+']]' Punctuation
+' ' Text
+'(' Text
+'after' Text
+' ' Text
+'Germany' Text
+')' Text
+'.' Text
+'\n' Text
+
+'\n' Text
+
+'France' Text
+' ' Text
+'is' Text
+' ' Text
+'an' Text
+' ' Text
+'outlier' Text
+' ' Text
+'among' Text
+' ' Text
+'developed' Text
+' ' Text
+'countries' Text
+',' Text
+' ' Text
+'particularly' Text
+' ' Text
+'in' Text
+' ' Text
+'Europe' Text
+',' Text
+' ' Text
+'for' Text
+' ' Text
+'its' Text
+' ' Text
+'relatively' Text
+' ' Text
+'high' Text
+' ' Text
+'rate' Text
+' ' Text
+'of' Text
+' ' Text
+'[[' Punctuation
+'natural population growth' Name.Tag
+']]' Punctuation
+':' Text
+' ' Text
+'By' Text
+' ' Text
+'birth' Text
+' ' Text
+'rates' Text
+' ' Text
+'alone' Text
+',' Text
+' ' Text
+'it' Text
+' ' Text
+'was' Text
+' ' Text
+'responsible' Text
+' ' Text
+'for' Text
+' ' Text
+'almost' Text
+' ' Text
+'all' Text
+' ' Text
+'natural' Text
+' ' Text
+'population' Text
+' ' Text
+'growth' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'European' Text
+' ' Text
+'Union' Text
+' ' Text
+'in' Text
+' ' Text
+'2006' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Bilan' Text
+' ' Text
+'démographique' Text
+' ' Text
+'2006' Text
+':' Text
+' ' Text
+'un' Text
+' ' Text
+'excédent' Text
+' ' Text
+'naturel' Text
+' ' Text
+'record' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'insee' Text
+'.' Text
+'fr' Text
+'/' Text
+'fr' Text
+'/' Text
+'statistiques' Text
+'/' Text
+'1280882' Text
+'#' Text
+'titre' Text
+'-' Text
+'bloc' Text
+'-' Text
+'4' Text
+' ' Text
+'|' Punctuation
+'url-status' Name.Label
+'=' Operator
+'dead' Text
+' ' Text
+'|' Punctuation
+'archive-url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'web' Text
+'.' Text
+'archive' Text
+'.' Text
+'org' Text
+'/' Text
+'web' Text
+'/' Text
+'20170708232900' Text
+'/' Text
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'insee' Text
+'.' Text
+'fr' Text
+'/' Text
+'fr' Text
+'/' Text
+'statistiques' Text
+'/' Text
+'1280882' Text
+'#' Text
+'titre' Text
+'-' Text
+'bloc' Text
+'-' Text
+'4' Text
+' ' Text
+'|' Punctuation
+'archive-date' Name.Label
+'=' Operator
+'8' Text
+' ' Text
+'July' Text
+' ' Text
+'2017' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'22' Text
+' ' Text
+'January' Text
+' ' Text
+'2017' Text
+' ' Text
+'|' Punctuation
+'publisher' Name.Label
+'=' Operator
+'Insee' Text
+' ' Text
+'|' Punctuation
+'language' Name.Label
+'=' Operator
+'fr' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'Between' Text
+' ' Text
+'2006' Text
+' ' Text
+'and' Text
+' ' Text
+'2016' Text
+',' Text
+' ' Text
+'France' Text
+' ' Text
+'saw' Text
+' ' Text
+'the' Text
+' ' Text
+'second' Text
+'-' Text
+'highest' Text
+' ' Text
+'overall' Text
+' ' Text
+'increase' Text
+' ' Text
+'in' Text
+' ' Text
+'population' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'EU' Text
+' ' Text
+'and' Text
+' ' Text
+'was' Text
+' ' Text
+'one' Text
+' ' Text
+'of' Text
+' ' Text
+'only' Text
+' ' Text
+'four' Text
+' ' Text
+'EU' Text
+' ' Text
+'countries' Text
+' ' Text
+'where' Text
+' ' Text
+'natural' Text
+' ' Text
+'births' Text
+' ' Text
+'accounted' Text
+' ' Text
+'for' Text
+' ' Text
+'the' Text
+' ' Text
+'most' Text
+' ' Text
+'population' Text
+' ' Text
+'growth' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'People' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'EU' Text
+' ' Text
+'–' Text
+' ' Text
+'statistics' Text
+' ' Text
+'on' Text
+' ' Text
+'demographic' Text
+' ' Text
+'changes' Text
+' ' Text
+'–' Text
+' ' Text
+'Statistics' Text
+' ' Text
+'Explained' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'ec' Text
+'.' Text
+'europa' Text
+'.' Text
+'eu' Text
+'/' Text
+'eurostat' Text
+'/' Text
+'statistics' Text
+'-' Text
+'explained' Text
+'/' Text
+'index' Text
+'.' Text
+'php' Text
+'/' Text
+'People_in_the_EU_' Text
+'-' Text
+'_statistics_on_demographic_changes' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'21' Text
+' ' Text
+'August' Text
+' ' Text
+'2019' Text
+' ' Text
+'|' Punctuation
+'publisher' Name.Label
+'=' Operator
+'European' Text
+' ' Text
+'Commission' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'This' Text
+' ' Text
+'was' Text
+' ' Text
+'the' Text
+' ' Text
+'highest' Text
+' ' Text
+'rate' Text
+' ' Text
+'since' Text
+' ' Text
+'the' Text
+' ' Text
+'end' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'baby boom' Name.Tag
+']]' Punctuation
+' ' Text
+'in' Text
+' ' Text
+'1973' Text
+' ' Text
+'and' Text
+' ' Text
+'coincides' Text
+' ' Text
+'with' Text
+' ' Text
+'the' Text
+' ' Text
+'rise' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'total fertility rate' Name.Tag
+']]' Punctuation
+' ' Text
+'from' Text
+' ' Text
+'a' Text
+' ' Text
+'nadir' Text
+' ' Text
+'of' Text
+' ' Text
+'1' Text
+'.' Text
+'7' Text
+' ' Text
+'in' Text
+' ' Text
+'1994' Text
+' ' Text
+'to' Text
+' ' Text
+'2' Text
+'.' Text
+'0' Text
+' ' Text
+'in' Text
+' ' Text
+'2010' Text
+'.' Text
+'\n' Text
+
+'\n' Text
+
+'{{' Punctuation
+'As' Name.Tag
+' ' Name.Tag
+'of' Name.Tag
+'|' Punctuation
+'January' Text
+' ' Text
+'2021' Text
+'}}' Punctuation
+',' Text
+' ' Text
+'the' Text
+' ' Text
+'fertility' Text
+' ' Text
+'rate' Text
+' ' Text
+'declined' Text
+' ' Text
+'slightly' Text
+' ' Text
+'to' Text
+' ' Text
+'1' Text
+'.' Text
+'84' Text
+' ' Text
+'children' Text
+' ' Text
+'per' Text
+' ' Text
+'woman' Text
+',' Text
+' ' Text
+'below' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'replacement rate' Name.Tag
+']]' Punctuation
+' ' Text
+'of' Text
+' ' Text
+'2' Text
+'.' Text
+'1' Text
+',' Text
+' ' Text
+'and' Text
+' ' Text
+'considerably' Text
+' ' Text
+'below' Text
+' ' Text
+'the' Text
+' ' Text
+'high' Text
+' ' Text
+'of' Text
+' ' Text
+'4' Text
+'.' Text
+'41' Text
+' ' Text
+'in' Text
+' ' Text
+'1800' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Citation' Name.Tag
+' ' Text
+'|' Punctuation
+'last' Name.Label
+'=' Operator
+'Max' Text
+' ' Text
+'Roser' Text
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Total' Text
+' ' Text
+'Fertility' Text
+' ' Text
+'Rate' Text
+' ' Text
+'around' Text
+' ' Text
+'the' Text
+' ' Text
+'world' Text
+' ' Text
+'over' Text
+' ' Text
+'the' Text
+' ' Text
+'last' Text
+' ' Text
+'centuries' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'ourworldindata' Text
+'.' Text
+'org' Text
+'/' Text
+'grapher' Text
+'/' Text
+'children' Text
+'-' Text
+'born' Text
+'-' Text
+'per' Text
+'-' Text
+'woman' Text
+'?' Text
+'year' Text
+'=' Text
+'1800' Text
+'&' Text
+'country' Text
+'=' Text
+'FRA' Text
+' ' Text
+'|' Punctuation
+'work' Name.Label
+'=' Operator
+'[[' Punctuation
+'Our World in Data' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'[[' Punctuation
+'Gapminder Foundation' Name.Tag
+']]' Punctuation
+' ' Text
+'|' Punctuation
+'year' Name.Label
+'=' Operator
+'2014' Text
+' ' Text
+'|' Punctuation
+'archive-url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'web' Text
+'.' Text
+'archive' Text
+'.' Text
+'org' Text
+'/' Text
+'web' Text
+'/' Text
+'20190708151649' Text
+'/' Text
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'ourworldindata' Text
+'.' Text
+'org' Text
+'/' Text
+'grapher' Text
+'/' Text
+'children' Text
+'-' Text
+'born' Text
+'-' Text
+'per' Text
+'-' Text
+'woman' Text
+'?' Text
+'year' Text
+'=' Text
+'1800' Text
+'&' Text
+'country' Text
+'=' Text
+'FRA' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'7' Text
+' ' Text
+'May' Text
+' ' Text
+'2019' Text
+' ' Text
+'|' Punctuation
+'archive-date' Name.Label
+'=' Operator
+'8' Text
+' ' Text
+'July' Text
+' ' Text
+'2019' Text
+' ' Text
+'|' Punctuation
+'url-status' Name.Label
+'=' Operator
+'dead' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Bilan' Text
+' ' Text
+'démographique' Text
+' ' Text
+'2016' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'insee' Text
+'.' Text
+'fr' Text
+'/' Text
+'fr' Text
+'/' Text
+'statistiques' Text
+'/' Text
+'2554860' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'19' Text
+' ' Text
+'January' Text
+' ' Text
+'2017' Text
+' ' Text
+'|' Punctuation
+'publisher' Name.Label
+'=' Operator
+'Insee' Text
+' ' Text
+'|' Punctuation
+'language' Name.Label
+'=' Operator
+'fr' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'<' Punctuation
+'ref' Name.Tag
+' ' Text.Whitespace
+'name' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+'population' Literal.String.Double
+'"' Literal.String.Double
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Bilan' Text
+' ' Text
+'démographique' Text
+' ' Text
+'2020' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'insee' Text
+'.' Text
+'fr' Text
+'/' Text
+'fr' Text
+'/' Text
+'statistiques' Text
+'/' Text
+'5012724' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'19' Text
+' ' Text
+'January' Text
+' ' Text
+'2021' Text
+' ' Text
+'|' Punctuation
+'publisher' Name.Label
+'=' Operator
+'Insee' Text
+' ' Text
+'|' Punctuation
+'language' Name.Label
+'=' Operator
+'fr' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Tableau' Text
+' ' Text
+'44' Text
+'&nbsp;' Name.Entity
+'–' Text
+' ' Text
+'Taux' Text
+' ' Text
+'de' Text
+' ' Text
+'fécondité' Text
+' ' Text
+'générale' Text
+' ' Text
+'par' Text
+' ' Text
+'âge' Text
+' ' Text
+'de' Text
+' ' Text
+'la' Text
+' ' Text
+'mère' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'insee' Text
+'.' Text
+'fr' Text
+'/' Text
+'fr' Text
+'/' Text
+'ppp' Text
+'/' Text
+'bases' Text
+'-' Text
+'de' Text
+'-' Text
+'donnees' Text
+'/' Text
+'irweb' Text
+'/' Text
+'sd2008' Text
+'/' Text
+'dd' Text
+'/' Text
+'excel' Text
+'/' Text
+'sd2008_t44_fe' Text
+'.' Text
+'xls' Text
+' ' Text
+'|' Punctuation
+'url-status' Name.Label
+'=' Operator
+'dead' Text
+' ' Text
+'|' Punctuation
+'archive-url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'web' Text
+'.' Text
+'archive' Text
+'.' Text
+'org' Text
+'/' Text
+'web' Text
+'/' Text
+'20110427013815' Text
+'/' Text
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'insee' Text
+'.' Text
+'fr' Text
+'/' Text
+'fr' Text
+'/' Text
+'ppp' Text
+'/' Text
+'bases' Text
+'-' Text
+'de' Text
+'-' Text
+'donnees' Text
+'/' Text
+'irweb' Text
+'/' Text
+'sd2008' Text
+'/' Text
+'dd' Text
+'/' Text
+'excel' Text
+'/' Text
+'sd2008_t44_fe' Text
+'.' Text
+'xls' Text
+' ' Text
+'|' Punctuation
+'archive-date' Name.Label
+'=' Operator
+'27' Text
+' ' Text
+'April' Text
+' ' Text
+'2011' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'20' Text
+' ' Text
+'January' Text
+' ' Text
+'2011' Text
+' ' Text
+'|' Punctuation
+'publisher' Name.Label
+'=' Operator
+'Insee' Text
+' ' Text
+'|' Punctuation
+'language' Name.Label
+'=' Operator
+'fr' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'France' Text
+"'" Text
+'s' Text
+' ' Text
+'fertility' Text
+' ' Text
+'rate' Text
+' ' Text
+'and' Text
+' ' Text
+'crude' Text
+' ' Text
+'birth' Text
+' ' Text
+'rate' Text
+' ' Text
+'nonetheless' Text
+' ' Text
+'remain' Text
+' ' Text
+'among' Text
+' ' Text
+'the' Text
+' ' Text
+'highest' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'EU' Text
+'.' Text
+' ' Text
+'However' Text
+',' Text
+' ' Text
+'like' Text
+' ' Text
+'many' Text
+' ' Text
+'developed' Text
+' ' Text
+'nations' Text
+',' Text
+' ' Text
+'the' Text
+' ' Text
+'French' Text
+' ' Text
+'[[' Punctuation
+'Population ageing' Name.Tag
+'|' Punctuation
+'population' Text
+' ' Text
+'is' Text
+' ' Text
+'aging' Text
+']]' Punctuation
+';' Text
+' ' Text
+'the' Text
+' ' Text
+'average' Text
+' ' Text
+'age' Text
+' ' Text
+'is' Text
+' ' Text
+'41' Text
+'.' Text
+'7' Text
+' ' Text
+'years' Text
+',' Text
+' ' Text
+'while' Text
+' ' Text
+'about' Text
+' ' Text
+'a' Text
+' ' Text
+'fifth' Text
+' ' Text
+'of' Text
+' ' Text
+'French' Text
+' ' Text
+'people' Text
+' ' Text
+'is' Text
+' ' Text
+'65' Text
+' ' Text
+'or' Text
+' ' Text
+'over' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Citation' Name.Tag
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'World' Text
+' ' Text
+'Factbook' Text
+' ' Text
+'EUROPE' Text
+' ' Text
+':' Text
+' ' Text
+'FRANCE' Text
+' ' Text
+'|' Punctuation
+'date' Name.Label
+'=' Operator
+'4' Text
+' ' Text
+'February' Text
+' ' Text
+'2021' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'cia' Text
+'.' Text
+'gov' Text
+'/' Text
+'the' Text
+'-' Text
+'world' Text
+'-' Text
+'factbook' Text
+'/' Text
+'countries' Text
+'/' Text
+'france' Text
+'/' Text
+' ' Text
+'|' Punctuation
+'work' Name.Label
+'=' Operator
+'[[' Punctuation
+'The World Factbook' Name.Tag
+']]' Punctuation
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'The' Text
+' ' Text
+'[[' Punctuation
+'List of countries by life expectancy' Name.Tag
+'|' Punctuation
+'average' Text
+' ' Text
+'life' Text
+' ' Text
+'expectancy' Text
+']]' Punctuation
+' ' Text
+'at' Text
+' ' Text
+'birth' Text
+' ' Text
+'is' Text
+' ' Text
+'82' Text
+'.' Text
+'7' Text
+' ' Text
+'years' Text
+',' Text
+' ' Text
+'the' Text
+' ' Text
+'12th' Text
+' ' Text
+'highest' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'world' Text
+'.' Text
+'\n' Text
+
+'\n' Text
+
+'From' Text
+' ' Text
+'2006' Text
+' ' Text
+'to' Text
+' ' Text
+'2011' Text
+',' Text
+' ' Text
+'population' Text
+' ' Text
+'growth' Text
+' ' Text
+'averaged' Text
+' ' Text
+'0' Text
+'.' Text
+'6' Text
+' ' Text
+'percent' Text
+' ' Text
+'per' Text
+' ' Text
+'year' Text
+';' Text
+'<' Punctuation
+'ref' Name.Tag
+' ' Text.Whitespace
+'name' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+'evol' Literal.String.Double
+'"' Literal.String.Double
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Évolution' Text
+' ' Text
+'générale' Text
+' ' Text
+'de' Text
+' ' Text
+'la' Text
+' ' Text
+'situation' Text
+' ' Text
+'démographique' Text
+',' Text
+' ' Text
+'France' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'insee' Text
+'.' Text
+'fr' Text
+'/' Text
+'fr' Text
+'/' Text
+'themes' Text
+'/' Text
+'detail' Text
+'.' Text
+'asp' Text
+'?' Text
+'reg_id' Text
+'=' Text
+'0' Text
+'&' Text
+'ref_id' Text
+'=' Text
+'bilan' Text
+'-' Text
+'demo' Text
+'&' Text
+'page' Text
+'=' Text
+'donnees' Text
+'-' Text
+'detaillees' Text
+'/' Text
+'bilan' Text
+'-' Text
+'demo' Text
+'/' Text
+'pop_age3' Text
+'.' Text
+'htm' Text
+'#' Text
+'evol' Text
+'-' Text
+'gen' Text
+'-' Text
+'sit' Text
+'-' Text
+'demo' Text
+'-' Text
+'fe' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'20' Text
+' ' Text
+'January' Text
+' ' Text
+'2011' Text
+' ' Text
+'|' Punctuation
+'publisher' Name.Label
+'=' Operator
+'Insee' Text
+' ' Text
+'|' Punctuation
+'language' Name.Label
+'=' Operator
+'fr' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'since' Text
+' ' Text
+'2011' Text
+',' Text
+' ' Text
+'annual' Text
+' ' Text
+'growth' Text
+' ' Text
+'has' Text
+' ' Text
+'been' Text
+' ' Text
+'between' Text
+' ' Text
+'0' Text
+'.' Text
+'4' Text
+' ' Text
+'and' Text
+' ' Text
+'0' Text
+'.' Text
+'5' Text
+' ' Text
+'percent' Text
+' ' Text
+'annually' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'WDI' Text
+' ' Text
+'–' Text
+' ' Text
+'Home' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'datatopics' Text
+'.' Text
+'worldbank' Text
+'.' Text
+'org' Text
+'/' Text
+'world' Text
+'-' Text
+'development' Text
+'-' Text
+'indicators' Text
+'/' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'27' Text
+' ' Text
+'August' Text
+' ' Text
+'2019' Text
+' ' Text
+'|' Punctuation
+'publisher' Name.Label
+'=' Operator
+'World' Text
+' ' Text
+'Bank' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'Immigrants' Text
+' ' Text
+'are' Text
+' ' Text
+'major' Text
+' ' Text
+'contributors' Text
+' ' Text
+'to' Text
+' ' Text
+'this' Text
+' ' Text
+'trend' Text
+';' Text
+' ' Text
+'in' Text
+' ' Text
+'2010' Text
+',' Text
+' ' Text
+'27' Text
+' ' Text
+'percent' Text
+' ' Text
+'of' Text
+' ' Text
+'newborns' Text
+' ' Text
+'in' Text
+' ' Text
+'metropolitan' Text
+' ' Text
+'France' Text
+' ' Text
+'had' Text
+' ' Text
+'at' Text
+' ' Text
+'least' Text
+' ' Text
+'one' Text
+' ' Text
+'[[' Punctuation
+'Immigration to France' Name.Tag
+'#' Punctuation
+'Immigration per region' Name.Label
+'|' Punctuation
+'foreign' Text
+'-' Text
+'born' Text
+']]' Punctuation
+' ' Text
+'parent' Text
+' ' Text
+'and' Text
+' ' Text
+'another' Text
+' ' Text
+'24' Text
+' ' Text
+'percent' Text
+' ' Text
+'had' Text
+' ' Text
+'at' Text
+' ' Text
+'least' Text
+' ' Text
+'one' Text
+' ' Text
+'parent' Text
+' ' Text
+'born' Text
+' ' Text
+'outside' Text
+' ' Text
+'Europe' Text
+' ' Text
+'(' Text
+'excluding' Text
+' ' Text
+'French' Text
+' ' Text
+'overseas' Text
+' ' Text
+'territories' Text
+')' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Naissances' Text
+' ' Text
+'selon' Text
+' ' Text
+'le' Text
+' ' Text
+'pays' Text
+' ' Text
+'de' Text
+' ' Text
+'naissance' Text
+' ' Text
+'des' Text
+' ' Text
+'parents' Text
+' ' Text
+'2010' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'insee' Text
+'.' Text
+'fr' Text
+'/' Text
+'fr' Text
+'/' Text
+'themes' Text
+'/' Text
+'detail' Text
+'.' Text
+'asp' Text
+'?' Text
+'ref_id' Text
+'=' Text
+'ir' Text
+'-' Text
+'sd20101' Text
+' ' Text
+'|' Punctuation
+'url-status' Name.Label
+'=' Operator
+'dead' Text
+' ' Text
+'|' Punctuation
+'archive-url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'web' Text
+'.' Text
+'archive' Text
+'.' Text
+'org' Text
+'/' Text
+'web' Text
+'/' Text
+'20130927161644' Text
+'/' Text
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'insee' Text
+'.' Text
+'fr' Text
+'/' Text
+'fr' Text
+'/' Text
+'themes' Text
+'/' Text
+'detail' Text
+'.' Text
+'asp' Text
+'?' Text
+'ref_id' Text
+'=' Text
+'ir' Text
+'-' Text
+'sd20101' Text
+' ' Text
+'|' Punctuation
+'archive-date' Name.Label
+'=' Operator
+'27' Text
+' ' Text
+'September' Text
+' ' Text
+'2013' Text
+' ' Text
+'|' Punctuation
+'publisher' Name.Label
+'=' Operator
+'Insee' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'\n' Text
+
+'\n' Text
+
+'===' Generic.Subheading
+'Ethnic groups' Generic.Subheading
+'===' Generic.Subheading
+'\n' Text.Whitespace
+
+'{{' Punctuation
+'Main' Name.Tag
+'|' Punctuation
+'French' Text
+' ' Text
+'people' Text
+'}}' Punctuation
+'\n' Text
+
+'[[' Punctuation
+'File' Name.Namespace
+':' Punctuation
+'Map_of_the_French_Diaspora_in_the_World.svg' Name.Tag
+'|' Punctuation
+'thumb' Text
+'|' Punctuation
+'upright' Name.Attribute
+'=' Operator
+'1' Text
+'.' Text
+'2' Text
+'|' Punctuation
+'Map' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'French diaspora' Name.Tag
+']]' Punctuation
+' ' Text
+'around' Text
+' ' Text
+'the' Text
+' ' Text
+'world' Text
+']]' Punctuation
+'\n' Text
+
+'Most' Text
+' ' Text
+'[[' Punctuation
+'French people' Name.Tag
+']]' Punctuation
+' ' Text
+'are' Text
+' ' Text
+'of' Text
+' ' Text
+'[[' Punctuation
+'Celtic peoples' Name.Tag
+'|' Punctuation
+'Celtic' Text
+']]' Punctuation
+'-' Text
+'[[' Punctuation
+'Gauls' Name.Tag
+'|' Punctuation
+'Gallic' Text
+']]' Punctuation
+' ' Text
+'origin' Text
+',' Text
+' ' Text
+'with' Text
+' ' Text
+'a' Text
+' ' Text
+'significant' Text
+' ' Text
+'admixture' Text
+' ' Text
+'of' Text
+' ' Text
+'[[' Punctuation
+'Italic peoples' Name.Tag
+'|' Punctuation
+'Italic' Text
+']]' Punctuation
+' ' Text
+'(' Text
+'[[' Punctuation
+'Roman Empire' Name.Tag
+'|' Punctuation
+'Romans' Text
+']]' Punctuation
+')' Text
+' ' Text
+'and' Text
+' ' Text
+'[[' Punctuation
+'Germanic peoples' Name.Tag
+'|' Punctuation
+'Germanic' Text
+']]' Punctuation
+' ' Text
+'(' Text
+'[[' Punctuation
+'Franks' Name.Tag
+']]' Punctuation
+')' Text
+' ' Text
+'groups' Text
+' ' Text
+'reflecting' Text
+' ' Text
+'centuries' Text
+' ' Text
+'of' Text
+' ' Text
+'respective' Text
+' ' Text
+'migration' Text
+' ' Text
+'and' Text
+' ' Text
+'settlement' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'book' Name.Tag
+' ' Text
+'|' Punctuation
+'last' Name.Label
+'=' Operator
+'Jean' Text
+'-' Text
+'Louis' Text
+' ' Text
+'Brunaux' Text
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Nos' Text
+' ' Text
+'ancêtres' Text
+' ' Text
+'les' Text
+' ' Text
+'Gaulois' Text
+' ' Text
+'|' Punctuation
+'date' Name.Label
+'=' Operator
+'2008' Text
+' ' Text
+'|' Punctuation
+'editor-last' Name.Label
+'=' Operator
+'Seuil' Text
+' ' Text
+'|' Punctuation
+'page' Name.Label
+'=' Operator
+'261' Text
+' ' Text
+'|' Punctuation
+'trans-title' Name.Label
+'=' Operator
+'Our' Text
+' ' Text
+'ancestors' Text
+' ' Text
+'the' Text
+' ' Text
+'Gauls' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'Through' Text
+' ' Text
+'the' Text
+' ' Text
+'course' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Middle Ages' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'France' Text
+' ' Text
+'incorporated' Text
+' ' Text
+'various' Text
+' ' Text
+'neighbouring' Text
+' ' Text
+'ethnic' Text
+' ' Text
+'and' Text
+' ' Text
+'linguistic' Text
+' ' Text
+'groups' Text
+',' Text
+' ' Text
+'as' Text
+' ' Text
+'evidenced' Text
+' ' Text
+'by' Text
+' ' Text
+'[[' Punctuation
+'Bretons' Name.Tag
+'|' Punctuation
+'Breton' Text
+']]' Punctuation
+' ' Text
+'elements' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'west' Text
+',' Text
+' ' Text
+'[[' Punctuation
+'Aquitani' Name.Tag
+']]' Punctuation
+'an' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'southwest' Text
+',' Text
+' ' Text
+'[[' Punctuation
+'Scandinavian people' Name.Tag
+'|' Punctuation
+'Scandinavian' Text
+']]' Punctuation
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'northwest' Text
+',' Text
+' ' Text
+'[[' Punctuation
+'Alemanni' Name.Tag
+']]' Punctuation
+'c' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'northeast' Text
+',' Text
+' ' Text
+'and' Text
+' ' Text
+'[[' Punctuation
+'Ligures' Name.Tag
+'|' Punctuation
+'Ligurian' Text
+']]' Punctuation
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'southeast' Text
+'.' Text
+'\n' Text
+
+'\n' Text
+
+'Large' Text
+'-' Text
+'scale' Text
+' ' Text
+'immigration' Text
+' ' Text
+'over' Text
+' ' Text
+'the' Text
+' ' Text
+'last' Text
+' ' Text
+'century' Text
+' ' Text
+'and' Text
+' ' Text
+'a' Text
+' ' Text
+'half' Text
+' ' Text
+'have' Text
+' ' Text
+'led' Text
+' ' Text
+'to' Text
+' ' Text
+'a' Text
+' ' Text
+'more' Text
+' ' Text
+'multicultural' Text
+' ' Text
+'society' Text
+';' Text
+' ' Text
+'beginning' Text
+' ' Text
+'with' Text
+' ' Text
+'the' Text
+' ' Text
+'French' Text
+' ' Text
+'Revolution' Text
+',' Text
+' ' Text
+'and' Text
+' ' Text
+'further' Text
+' ' Text
+'codified' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'French Constitution' Name.Tag
+'|' Punctuation
+'French' Text
+' ' Text
+'Constitution' Text
+' ' Text
+'of' Text
+' ' Text
+'1958' Text
+']]' Punctuation
+',' Text
+' ' Text
+'the' Text
+' ' Text
+'government' Text
+' ' Text
+'is' Text
+' ' Text
+'prohibited' Text
+' ' Text
+'from' Text
+' ' Text
+'collecting' Text
+' ' Text
+'data' Text
+' ' Text
+'on' Text
+' ' Text
+'ethnicity' Text
+' ' Text
+'and' Text
+' ' Text
+'ancestry' Text
+';' Text
+' ' Text
+'most' Text
+' ' Text
+'demographic' Text
+' ' Text
+'information' Text
+' ' Text
+'is' Text
+' ' Text
+'drawn' Text
+' ' Text
+'from' Text
+' ' Text
+'private' Text
+' ' Text
+'sector' Text
+' ' Text
+'organisations' Text
+' ' Text
+'or' Text
+' ' Text
+'academic' Text
+' ' Text
+'institutions' Text
+'.' Text
+' ' Text
+'In' Text
+' ' Text
+'2004' Text
+',' Text
+' ' Text
+'the' Text
+' ' Text
+"''" Generic.Emph
+'Institut' Generic.Emph
+' ' Generic.Emph
+'Montaign' Generic.Emph
+"''" Generic.Emph
+'e' Text
+' ' Text
+'estimated' Text
+' ' Text
+'that' Text
+' ' Text
+'within' Text
+' ' Text
+'Metropolitan' Text
+' ' Text
+'France' Text
+',' Text
+' ' Text
+'51' Text
+'&nbsp;' Name.Entity
+'million' Text
+' ' Text
+'people' Text
+' ' Text
+'were' Text
+' ' Text
+'White' Text
+' ' Text
+'(' Text
+'85' Text
+'%' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'population' Text
+')' Text
+',' Text
+' ' Text
+'6' Text
+'&nbsp;' Name.Entity
+'million' Text
+' ' Text
+'were' Text
+' ' Text
+'Northwest' Text
+' ' Text
+'African' Text
+' ' Text
+'(' Text
+'10' Text
+'%' Text
+')' Text
+',' Text
+' ' Text
+'2' Text
+'&nbsp;' Name.Entity
+'million' Text
+' ' Text
+'were' Text
+' ' Text
+'Black' Text
+' ' Text
+'(' Text
+'3' Text
+'.' Text
+'3' Text
+'%' Text
+')' Text
+',' Text
+' ' Text
+'and' Text
+' ' Text
+'1' Text
+'&nbsp;' Name.Entity
+'million' Text
+' ' Text
+'were' Text
+' ' Text
+'Asian' Text
+' ' Text
+'(' Text
+'1' Text
+'.' Text
+'7' Text
+'%' Text
+')' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'book' Name.Tag
+' ' Text
+'|' Punctuation
+'last1' Name.Label
+'=' Operator
+'Yazid' Text
+' ' Text
+'Sabeg' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'conventioncitoyenne' Text
+'.' Text
+'com' Text
+'/' Text
+'documents' Text
+'/' Text
+'oubliesdelegalite' Text
+'.' Text
+'pdf' Text
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Les' Text
+' ' Text
+'oubliés' Text
+' ' Text
+'de' Text
+' ' Text
+'l' Text
+"'" Text
+'égalité' Text
+' ' Text
+'des' Text
+' ' Text
+'chances' Text
+' ' Text
+'|' Punctuation
+'last2' Name.Label
+'=' Operator
+'Laurence' Text
+' ' Text
+'Méhaignerie' Text
+' ' Text
+'|' Punctuation
+'date' Name.Label
+'=' Operator
+'January' Text
+' ' Text
+'2004' Text
+' ' Text
+'|' Punctuation
+'publisher' Name.Label
+'=' Operator
+'[[' Punctuation
+'Institut Montaigne' Name.Tag
+']]' Punctuation
+' ' Text
+'|' Punctuation
+'language' Name.Label
+'=' Operator
+'fr' Text
+' ' Text
+'|' Punctuation
+'trans-title' Name.Label
+'=' Operator
+'The' Text
+' ' Text
+'forgotten' Text
+' ' Text
+'of' Text
+' ' Text
+'equal' Text
+' ' Text
+'opportunities' Text
+' ' Text
+'|' Punctuation
+'author-link' Name.Label
+'=' Operator
+'Yazid' Text
+' ' Text
+'Sabeg' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'news' Name.Tag
+' ' Text
+'|' Punctuation
+'date' Name.Label
+'=' Operator
+'26' Text
+' ' Text
+'March' Text
+' ' Text
+'2009' Text
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'France' Text
+"'" Text
+'s' Text
+' ' Text
+'ethnic' Text
+' ' Text
+'minorities' Text
+':' Text
+' ' Text
+'To' Text
+' ' Text
+'count' Text
+' ' Text
+'or' Text
+' ' Text
+'not' Text
+' ' Text
+'to' Text
+' ' Text
+'count' Text
+' ' Text
+'|' Punctuation
+'newspaper' Name.Label
+'=' Operator
+'[[' Punctuation
+'The Economist' Name.Tag
+']]' Punctuation
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'economist' Text
+'.' Text
+'com' Text
+'/' Text
+'node' Text
+'/' Text
+'13377324' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'25' Text
+' ' Text
+'April' Text
+' ' Text
+'2013' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'\n' Text
+
+'\n' Text
+
+'A' Text
+' ' Text
+'2008' Text
+' ' Text
+'poll' Text
+' ' Text
+'conducted' Text
+' ' Text
+'jointly' Text
+' ' Text
+'by' Text
+' ' Text
+'[[' Punctuation
+'INED' Name.Tag
+']]' Punctuation
+' ' Text
+'and' Text
+' ' Text
+'[[' Punctuation
+'INSEE' Name.Tag
+'|' Punctuation
+'the' Text
+' ' Text
+'French' Text
+' ' Text
+'National' Text
+' ' Text
+'Institute' Text
+' ' Text
+'of' Text
+' ' Text
+'Statistics' Text
+']]' Punctuation
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'year' Name.Label
+'=' Operator
+'2008' Text
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+"'" Text
+'Trajectories' Text
+' ' Text
+'and' Text
+' ' Text
+'Origins' Text
+"'" Text
+' ' Text
+'Survey' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'teo_english' Text
+'.' Text
+'site' Text
+'.' Text
+'ined' Text
+'.' Text
+'fr' Text
+'/' Text
+' ' Text
+'|' Punctuation
+'url-status' Name.Label
+'=' Operator
+'dead' Text
+' ' Text
+'|' Punctuation
+'archive-url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'web' Text
+'.' Text
+'archive' Text
+'.' Text
+'org' Text
+'/' Text
+'web' Text
+'/' Text
+'20111202054910' Text
+'/' Text
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'teo_english' Text
+'.' Text
+'site' Text
+'.' Text
+'ined' Text
+'.' Text
+'fr' Text
+'/' Text
+' ' Text
+'|' Punctuation
+'archive-date' Name.Label
+'=' Operator
+'2' Text
+' ' Text
+'December' Text
+' ' Text
+'2011' Text
+' ' Text
+'|' Punctuation
+'publisher' Name.Label
+'=' Operator
+'Ined' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'<' Punctuation
+'ref' Name.Tag
+' ' Text.Whitespace
+'name' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+'Oppenheimer' Literal.String.Double
+'"' Literal.String.Double
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'journal' Name.Tag
+' ' Text
+'|' Punctuation
+'last' Name.Label
+'=' Operator
+'Oppenheimer' Text
+' ' Text
+'|' Punctuation
+'first' Name.Label
+'=' Operator
+'David' Text
+' ' Text
+'B' Text
+'.' Text
+' ' Text
+'|' Punctuation
+'year' Name.Label
+'=' Operator
+'2008' Text
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Why' Text
+' ' Text
+'France' Text
+' ' Text
+'needs' Text
+' ' Text
+'to' Text
+' ' Text
+'collect' Text
+' ' Text
+'data' Text
+' ' Text
+'on' Text
+' ' Text
+'racial' Text
+' ' Text
+'identity' Text
+'.' Text
+'.' Text
+'.' Text
+'in' Text
+' ' Text
+'a' Text
+' ' Text
+'French' Text
+' ' Text
+'way' Text
+' ' Text
+'|' Punctuation
+'journal' Name.Label
+'=' Operator
+'Hastings' Text
+' ' Text
+'International' Text
+' ' Text
+'and' Text
+' ' Text
+'Comparative' Text
+' ' Text
+'Law' Text
+' ' Text
+'Review' Text
+' ' Text
+'|' Punctuation
+'volume' Name.Label
+'=' Operator
+'31' Text
+' ' Text
+'|' Punctuation
+'issue' Name.Label
+'=' Operator
+'2' Text
+' ' Text
+'|' Punctuation
+'pages' Name.Label
+'=' Operator
+'735' Text
+'–' Text
+'752' Text
+' ' Text
+'|' Punctuation
+'ssrn' Name.Label
+'=' Operator
+'1236362' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'estimated' Text
+' ' Text
+'that' Text
+' ' Text
+'the' Text
+' ' Text
+'largest' Text
+' ' Text
+'ancestry' Text
+' ' Text
+'groups' Text
+' ' Text
+'were' Text
+' ' Text
+'[[' Punctuation
+'Italians in France' Name.Tag
+'|' Punctuation
+'Italian' Text
+']]' Punctuation
+' ' Text
+'(' Text
+'5' Text
+' ' Text
+'million' Text
+')' Text
+',' Text
+' ' Text
+'followed' Text
+' ' Text
+'by' Text
+' ' Text
+'[[' Punctuation
+'Northwest African' Name.Tag
+']]' Punctuation
+' ' Text
+'(' Text
+'3' Text
+'-' Text
+'6' Text
+' ' Text
+'million' Text
+')' Text
+',' Text
+'<' Punctuation
+'ref' Name.Tag
+' ' Text.Whitespace
+'name' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+'Cohen1995' Literal.String.Double
+'"' Literal.String.Double
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'book' Name.Tag
+' ' Text
+'|' Punctuation
+'last' Name.Label
+'=' Operator
+'Robin' Text
+' ' Text
+'Cohen' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'archive' Text
+'.' Text
+'org' Text
+'/' Text
+'details' Text
+'/' Text
+'cambridgesurveyo00robi' Text
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'The' Text
+' ' Text
+'Cambridge' Text
+' ' Text
+'Survey' Text
+' ' Text
+'of' Text
+' ' Text
+'World' Text
+' ' Text
+'Migration' Text
+' ' Text
+'|' Punctuation
+'publisher' Name.Label
+'=' Operator
+'Cambridge' Text
+' ' Text
+'University' Text
+' ' Text
+'Press' Text
+' ' Text
+'|' Punctuation
+'year' Name.Label
+'=' Operator
+'1995' Text
+' ' Text
+'|' Punctuation
+'isbn' Name.Label
+'=' Operator
+'978' Text
+'-' Text
+'0' Text
+'-' Text
+'521' Text
+'-' Text
+'44405' Text
+'-' Text
+'7' Text
+' ' Text
+'|' Punctuation
+'url-access' Name.Label
+'=' Operator
+'registration' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'news' Name.Tag
+' ' Text
+'|' Punctuation
+'date' Name.Label
+'=' Operator
+'25' Text
+' ' Text
+'November' Text
+' ' Text
+'2009' Text
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'France' Text
+"'" Text
+'s' Text
+' ' Text
+'crisis' Text
+' ' Text
+'of' Text
+' ' Text
+'national' Text
+' ' Text
+'identity' Text
+' ' Text
+'|' Punctuation
+'work' Name.Label
+'=' Operator
+'The' Text
+' ' Text
+'Independent' Text
+' ' Text
+'|' Punctuation
+'location' Name.Label
+'=' Operator
+'London' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'independent' Text
+'.' Text
+'co' Text
+'.' Text
+'uk' Text
+'/' Text
+'news' Text
+'/' Text
+'world' Text
+'/' Text
+'europe' Text
+'/' Text
+'frances' Text
+'-' Text
+'crisis' Text
+'-' Text
+'of' Text
+'-' Text
+'national' Text
+'-' Text
+'identity' Text
+'-' Text
+'1826942' Text
+'.' Text
+'html' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'"' Text
+'Les' Text
+' ' Text
+'personnes' Text
+' ' Text
+'d' Text
+"'" Text
+'origine' Text
+' ' Text
+'maghrébine' Text
+' ' Text
+'y' Text
+' ' Text
+'sont' Text
+' ' Text
+'également' Text
+' ' Text
+'au' Text
+' ' Text
+'nombre' Text
+' ' Text
+'de' Text
+' ' Text
+'5' Text
+' ' Text
+'à' Text
+' ' Text
+'6' Text
+' ' Text
+'millions' Text
+';' Text
+' ' Text
+'3' Text
+',' Text
+'5' Text
+' ' Text
+'millions' Text
+' ' Text
+'ont' Text
+' ' Text
+'la' Text
+' ' Text
+'nationalité' Text
+' ' Text
+'française' Text
+' ' Text
+'(' Text
+'don' Text
+"'" Text
+'t' Text
+' ' Text
+'500' Text
+' ' Text
+'000' Text
+' ' Text
+'harkis' Text
+')' Text
+'"' Text
+',' Text
+' ' Text
+'Évelyne' Text
+' ' Text
+'Perrin' Text
+',' Text
+' ' Text
+"''" Generic.Emph
+'Identité' Generic.Emph
+' ' Generic.Emph
+'Nationale' Generic.Emph
+',' Generic.Emph
+' ' Generic.Emph
+'Amer' Generic.Emph
+' ' Generic.Emph
+'Ministère' Generic.Emph
+"''" Generic.Emph
+',' Text
+' ' Text
+'L' Text
+"'" Text
+'Harmattan' Text
+',' Text
+' ' Text
+'2010' Text
+',' Text
+' ' Text
+'p' Text
+'.' Text
+' ' Text
+'112' Text
+' ' Text
+'{{' Punctuation
+'ISBN' Name.Tag
+'|' Punctuation
+'978' Text
+'-' Text
+'2' Text
+'-' Text
+'296' Text
+'-' Text
+'10839' Text
+'-' Text
+'4' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'[[' Punctuation
+'Afro-French' Name.Tag
+'|' Punctuation
+'Sub' Text
+'-' Text
+'Saharan' Text
+' ' Text
+'African' Text
+']]' Punctuation
+' ' Text
+'(' Text
+'2' Text
+'.' Text
+'5' Text
+'&nbsp;' Name.Entity
+'million' Text
+')' Text
+',' Text
+' ' Text
+'Armenian' Text
+' ' Text
+'(' Text
+'500' Text
+',' Text
+'000' Text
+')' Text
+',' Text
+' ' Text
+'and' Text
+' ' Text
+'Turkish' Text
+' ' Text
+'(' Text
+'200' Text
+',' Text
+'000' Text
+')' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'last' Name.Label
+'=' Operator
+'Falila' Text
+' ' Text
+'Gbadamassi' Text
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Les' Text
+' ' Text
+'personnes' Text
+' ' Text
+'originaires' Text
+' ' Text
+'d' Text
+"'" Text
+'Afrique' Text
+',' Text
+' ' Text
+'des' Text
+' ' Text
+'Dom' Text
+'-' Text
+'Tom' Text
+' ' Text
+'et' Text
+' ' Text
+'de' Text
+' ' Text
+'la' Text
+' ' Text
+'Turquie' Text
+' ' Text
+'sont' Text
+' ' Text
+'5' Text
+',' Text
+'5' Text
+' ' Text
+'millions' Text
+' ' Text
+'dans' Text
+' ' Text
+'l' Text
+"'" Text
+'Hexagone' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'afrik' Text
+'.' Text
+'com' Text
+'/' Text
+'article16248' Text
+'.' Text
+'html' Text
+' ' Text
+'|' Punctuation
+'url-status' Name.Label
+'=' Operator
+'dead' Text
+' ' Text
+'|' Punctuation
+'archive-url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'web' Text
+'.' Text
+'archive' Text
+'.' Text
+'org' Text
+'/' Text
+'web' Text
+'/' Text
+'20131002085632' Text
+'/' Text
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'afrik' Text
+'.' Text
+'com' Text
+'/' Text
+'article16248' Text
+'.' Text
+'html' Text
+' ' Text
+'|' Punctuation
+'archive-date' Name.Label
+'=' Operator
+'2' Text
+' ' Text
+'October' Text
+' ' Text
+'2013' Text
+' ' Text
+'|' Punctuation
+'publisher' Name.Label
+'=' Operator
+'Afrik' Text
+'.' Text
+'com' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'There' Text
+' ' Text
+'are' Text
+' ' Text
+'also' Text
+' ' Text
+'sizeable' Text
+' ' Text
+'minorities' Text
+' ' Text
+'of' Text
+' ' Text
+'other' Text
+' ' Text
+'[[' Punctuation
+'European ethnic groups' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'namely' Text
+' ' Text
+'[[' Punctuation
+'Spaniards' Name.Tag
+'|' Punctuation
+'Spanish' Text
+']]' Punctuation
+',' Text
+' ' Text
+'[[' Punctuation
+'Portuguese people' Name.Tag
+'|' Punctuation
+'Portuguese' Text
+']]' Punctuation
+',' Text
+' ' Text
+'[[' Punctuation
+'Polish people' Name.Tag
+'|' Punctuation
+'Polish' Text
+']]' Punctuation
+',' Text
+' ' Text
+'and' Text
+' ' Text
+'[[' Punctuation
+'Greeks' Name.Tag
+'|' Punctuation
+'Greek' Text
+']]' Punctuation
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+' ' Text.Whitespace
+'name' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+'Cohen1995' Literal.String.Double
+'"' Literal.String.Double
+' ' Text.Whitespace
+'/>' Punctuation
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'news' Name.Tag
+' ' Text
+'|' Punctuation
+'last' Name.Label
+'=' Operator
+'Richburg' Text
+' ' Text
+'|' Punctuation
+'first' Name.Label
+'=' Operator
+'Keith' Text
+' ' Text
+'B' Text
+'.' Text
+' ' Text
+'|' Punctuation
+'date' Name.Label
+'=' Operator
+'24' Text
+' ' Text
+'April' Text
+' ' Text
+'2005' Text
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Europe' Text
+"'" Text
+'s' Text
+' ' Text
+'Minority' Text
+' ' Text
+'Politicians' Text
+' ' Text
+'in' Text
+' ' Text
+'Short' Text
+' ' Text
+'Supply' Text
+' ' Text
+'|' Punctuation
+'newspaper' Name.Label
+'=' Operator
+'The' Text
+' ' Text
+'Washington' Text
+' ' Text
+'Post' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'washingtonpost' Text
+'.' Text
+'com' Text
+'/' Text
+'wp' Text
+'-' Text
+'dyn' Text
+'/' Text
+'articles' Text
+'/' Text
+'A12396' Text
+'-' Text
+'2005Apr23' Text
+'.' Text
+'html' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'news' Name.Tag
+' ' Text
+'|' Punctuation
+'last' Name.Label
+'=' Operator
+'Sachs' Text
+' ' Text
+'|' Punctuation
+'first' Name.Label
+'=' Operator
+'Susan' Text
+' ' Text
+'|' Punctuation
+'date' Name.Label
+'=' Operator
+'12' Text
+' ' Text
+'January' Text
+' ' Text
+'2007' Text
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'In' Text
+' ' Text
+'officially' Text
+' ' Text
+'colorblind' Text
+' ' Text
+'France' Text
+',' Text
+' ' Text
+'blacks' Text
+' ' Text
+'have' Text
+' ' Text
+'a' Text
+' ' Text
+'dream' Text
+'&nbsp;' Name.Entity
+'–' Text
+' ' Text
+'and' Text
+' ' Text
+'now' Text
+' ' Text
+'a' Text
+' ' Text
+'lobby' Text
+' ' Text
+'|' Punctuation
+'work' Name.Label
+'=' Operator
+'The' Text
+' ' Text
+'Christian' Text
+' ' Text
+'Science' Text
+' ' Text
+'Monitor' Text
+' ' Text
+'|' Punctuation
+'location' Name.Label
+'=' Operator
+'Boston' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'csmonitor' Text
+'.' Text
+'com' Text
+'/' Text
+'2007' Text
+'/' Text
+'0112' Text
+'/' Text
+'p01s04' Text
+'-' Text
+'woeu' Text
+'.' Text
+'html' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'France' Text
+' ' Text
+'has' Text
+' ' Text
+'a' Text
+' ' Text
+'significant' Text
+' ' Text
+'[[' Punctuation
+'Romani people in France' Name.Tag
+'|' Punctuation
+'Gitan' Text
+' ' Text
+'(' Text
+'Romani' Text
+')' Text
+']]' Punctuation
+' ' Text
+'population' Text
+',' Text
+' ' Text
+'numbering' Text
+' ' Text
+'between' Text
+' ' Text
+'20' Text
+',' Text
+'000' Text
+' ' Text
+'and' Text
+' ' Text
+'400' Text
+',' Text
+'000' Text
+';' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'National' Text
+' ' Text
+'strategy' Text
+' ' Text
+'for' Text
+' ' Text
+'Roma' Text
+' ' Text
+'integration' Text
+' ' Text
+'–' Text
+' ' Text
+'European' Text
+' ' Text
+'Commission' Text
+' ' Text
+'–' Text
+' ' Text
+'DG' Text
+' ' Text
+'Justiceunknown' Text
+' ' Text
+'label' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'ec' Text
+'.' Text
+'europa' Text
+'.' Text
+'eu' Text
+'/' Text
+'justice' Text
+'/' Text
+'discrimination' Text
+'/' Text
+'roma' Text
+'-' Text
+'integration' Text
+'/' Text
+'france' Text
+'/' Text
+'national' Text
+'-' Text
+'strategy' Text
+'/' Text
+'national_en' Text
+'.' Text
+'htm' Text
+' ' Text
+'|' Punctuation
+'url-status' Name.Label
+'=' Operator
+'dead' Text
+' ' Text
+'|' Punctuation
+'archive-url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'web' Text
+'.' Text
+'archive' Text
+'.' Text
+'org' Text
+'/' Text
+'web' Text
+'/' Text
+'20160306140020' Text
+'/' Text
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'ec' Text
+'.' Text
+'europa' Text
+'.' Text
+'eu' Text
+'/' Text
+'justice' Text
+'/' Text
+'discrimination' Text
+'/' Text
+'roma' Text
+'-' Text
+'integration' Text
+'/' Text
+'france' Text
+'/' Text
+'national' Text
+'-' Text
+'strategy' Text
+'/' Text
+'national_en' Text
+'.' Text
+'htm' Text
+' ' Text
+'|' Punctuation
+'archive-date' Name.Label
+'=' Operator
+'6' Text
+' ' Text
+'March' Text
+' ' Text
+'2016' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'many' Text
+' ' Text
+'foreign' Text
+' ' Text
+'[[' Punctuation
+'Romani people' Name.Tag
+'|' Punctuation
+'Roma' Text
+']]' Punctuation
+' ' Text
+'are' Text
+' ' Text
+'[[' Punctuation
+'Deportation of Roma migrants from France' Name.Tag
+'|' Punctuation
+'expelled' Text
+' ' Text
+'back' Text
+' ' Text
+'to' Text
+' ' Text
+'Bulgaria' Text
+' ' Text
+'and' Text
+' ' Text
+'Romania' Text
+' ' Text
+'frequently' Text
+'.' Text
+']]' Punctuation
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'last' Name.Label
+'=' Operator
+'Astier' Text
+' ' Text
+'|' Punctuation
+'first' Name.Label
+'=' Operator
+'Henri' Text
+' ' Text
+'|' Punctuation
+'date' Name.Label
+'=' Operator
+'13' Text
+' ' Text
+'February' Text
+' ' Text
+'2014' Text
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'France' Text
+"'" Text
+'s' Text
+' ' Text
+'unwanted' Text
+' ' Text
+'Roma' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'bbc' Text
+'.' Text
+'co' Text
+'.' Text
+'uk' Text
+'/' Text
+'news' Text
+'/' Text
+'magazine' Text
+'-' Text
+'25419423' Text
+' ' Text
+'|' Punctuation
+'publisher' Name.Label
+'=' Operator
+'BBC' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'\n' Text
+
+'\n' Text
+
+'===' Generic.Subheading
+' Immigration ' Generic.Subheading
+'===' Generic.Subheading
+'\n' Text.Whitespace
+
+'It' Text
+' ' Text
+'is' Text
+' ' Text
+'currently' Text
+' ' Text
+'estimated' Text
+' ' Text
+'that' Text
+' ' Text
+'40' Text
+'%' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'French' Text
+' ' Text
+'population' Text
+' ' Text
+'is' Text
+' ' Text
+'descended' Text
+' ' Text
+'at' Text
+' ' Text
+'least' Text
+' ' Text
+'partially' Text
+' ' Text
+'from' Text
+' ' Text
+'the' Text
+' ' Text
+'different' Text
+' ' Text
+'waves' Text
+' ' Text
+'of' Text
+' ' Text
+'immigration' Text
+' ' Text
+'since' Text
+' ' Text
+'the' Text
+' ' Text
+'early' Text
+' ' Text
+'20th' Text
+' ' Text
+'century' Text
+';' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'news' Name.Tag
+' ' Text
+'|' Punctuation
+'date' Name.Label
+'=' Operator
+'4' Text
+' ' Text
+'November' Text
+' ' Text
+'2005' Text
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Paris' Text
+' ' Text
+'Riots' Text
+' ' Text
+'in' Text
+' ' Text
+'Perspective' Text
+' ' Text
+'|' Punctuation
+'work' Name.Label
+'=' Operator
+'ABC' Text
+' ' Text
+'News' Text
+' ' Text
+'|' Punctuation
+'location' Name.Label
+'=' Operator
+'New' Text
+' ' Text
+'York' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'abcnews' Text
+'.' Text
+'go' Text
+'.' Text
+'com' Text
+'/' Text
+'International' Text
+'/' Text
+'story' Text
+'?' Text
+'id' Text
+'=' Text
+'1280843' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'between' Text
+' ' Text
+'1921' Text
+' ' Text
+'and' Text
+' ' Text
+'1935' Text
+' ' Text
+'alone' Text
+',' Text
+' ' Text
+'about' Text
+' ' Text
+'1' Text
+'.' Text
+'1' Text
+'&nbsp;' Name.Entity
+'million' Text
+' ' Text
+'net' Text
+' ' Text
+'immigrants' Text
+' ' Text
+'came' Text
+' ' Text
+'to' Text
+' ' Text
+'France' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'book' Name.Tag
+' ' Text
+'|' Punctuation
+'last' Name.Label
+'=' Operator
+'Hassell' Text
+' ' Text
+'|' Punctuation
+'first' Name.Label
+'=' Operator
+'James' Text
+' ' Text
+'E' Text
+'.' Text
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Russian' Text
+' ' Text
+'Refugees' Text
+' ' Text
+'in' Text
+' ' Text
+'France' Text
+' ' Text
+'and' Text
+' ' Text
+'the' Text
+' ' Text
+'United' Text
+' ' Text
+'States' Text
+' ' Text
+'Between' Text
+' ' Text
+'the' Text
+' ' Text
+'World' Text
+' ' Text
+'Wars' Text
+' ' Text
+'|' Punctuation
+'date' Name.Label
+'=' Operator
+'1991' Text
+' ' Text
+'|' Punctuation
+'publisher' Name.Label
+'=' Operator
+'American' Text
+' ' Text
+'Philosophical' Text
+' ' Text
+'Society' Text
+' ' Text
+'|' Punctuation
+'isbn' Name.Label
+'=' Operator
+'978' Text
+'-' Text
+'0' Text
+'-' Text
+'87169' Text
+'-' Text
+'817' Text
+'-' Text
+'9' Text
+' ' Text
+'|' Punctuation
+'series' Name.Label
+'=' Operator
+'Transactions' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'American' Text
+' ' Text
+'Philosophical' Text
+' ' Text
+'Society' Text
+' ' Text
+'|' Punctuation
+'volume' Name.Label
+'=' Operator
+'81' Text
+'/' Text
+'7' Text
+' ' Text
+'|' Punctuation
+'page' Name.Label
+'=' Operator
+'[' Punctuation
+'https://books.google.com/books?id=uUsLAAAAIAAJ&pg=PA22' Name.Label
+' ' Text.Whitespace
+'22' Text
+']' Punctuation
+' ' Text
+'|' Punctuation
+'chapter' Name.Label
+'=' Operator
+'III' Text
+'.' Text
+' ' Text
+'French' Text
+' ' Text
+'Government' Text
+' ' Text
+'and' Text
+' ' Text
+'the' Text
+' ' Text
+'Refugees' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'The' Text
+' ' Text
+'next' Text
+' ' Text
+'largest' Text
+' ' Text
+'wave' Text
+' ' Text
+'came' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'1960s' Text
+' ' Text
+'when' Text
+' ' Text
+'around' Text
+' ' Text
+'1' Text
+'.' Text
+'6' Text
+'&nbsp;' Name.Entity
+'million' Text
+' ' Text
+"''" Generic.Emph
+'[[' Punctuation
+'pieds noirs' Name.Tag
+']]' Punctuation
+"''" Generic.Emph
+' ' Text
+'returned' Text
+' ' Text
+'to' Text
+' ' Text
+'France' Text
+' ' Text
+'following' Text
+' ' Text
+'the' Text
+' ' Text
+'independence' Text
+' ' Text
+'of' Text
+' ' Text
+'its' Text
+' ' Text
+'Northwest' Text
+' ' Text
+'African' Text
+' ' Text
+'possessions' Text
+',' Text
+' ' Text
+'Algeria' Text
+' ' Text
+'and' Text
+' ' Text
+'Morocco' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'news' Name.Tag
+' ' Text
+'|' Punctuation
+'last' Name.Label
+'=' Operator
+'Markham' Text
+' ' Text
+'|' Punctuation
+'first' Name.Label
+'=' Operator
+'James' Text
+' ' Text
+'M' Text
+'.' Text
+' ' Text
+'|' Punctuation
+'date' Name.Label
+'=' Operator
+'6' Text
+' ' Text
+'April' Text
+' ' Text
+'1988' Text
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'For' Text
+' ' Text
+'Pieds' Text
+'-' Text
+'Noirs' Text
+',' Text
+' ' Text
+'the' Text
+' ' Text
+'Anger' Text
+' ' Text
+'Endures' Text
+' ' Text
+'|' Punctuation
+'work' Name.Label
+'=' Operator
+'The' Text
+' ' Text
+'New' Text
+' ' Text
+'York' Text
+' ' Text
+'Times' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'query' Text
+'.' Text
+'nytimes' Text
+'.' Text
+'com' Text
+'/' Text
+'gst' Text
+'/' Text
+'fullpage' Text
+'.' Text
+'html' Text
+'?' Text
+'res' Text
+'=' Text
+'940DEFDE1539F935A35757C0A96E948260' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'book' Name.Tag
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Migration' Text
+' ' Text
+'and' Text
+' ' Text
+'development' Text
+' ' Text
+'co' Text
+'-' Text
+'operation' Text
+' ' Text
+'|' Punctuation
+'date' Name.Label
+'=' Operator
+'1994' Text
+' ' Text
+'|' Punctuation
+'isbn' Name.Label
+'=' Operator
+'978' Text
+'-' Text
+'92' Text
+'-' Text
+'871' Text
+'-' Text
+'2611' Text
+'-' Text
+'5' Text
+' ' Text
+'|' Punctuation
+'editor-last' Name.Label
+'=' Operator
+'Raimondo' Text
+' ' Text
+'Cagiano' Text
+' ' Text
+'De' Text
+' ' Text
+'Azevedo' Text
+' ' Text
+'|' Punctuation
+'page' Name.Label
+'=' Operator
+'[' Punctuation
+'https://books.google.com/books?id=N8VHizsqaH0C&pg=PA25' Name.Label
+' ' Text.Whitespace
+'25' Text
+']' Punctuation
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'They' Text
+' ' Text
+'were' Text
+' ' Text
+'joined' Text
+' ' Text
+'by' Text
+' ' Text
+'numerous' Text
+' ' Text
+'former' Text
+' ' Text
+'colonial' Text
+' ' Text
+'subjects' Text
+' ' Text
+'from' Text
+' ' Text
+'North' Text
+' ' Text
+'and' Text
+' ' Text
+'West' Text
+' ' Text
+'Africa' Text
+',' Text
+' ' Text
+'as' Text
+' ' Text
+'well' Text
+' ' Text
+'as' Text
+' ' Text
+'numerous' Text
+' ' Text
+'European' Text
+' ' Text
+'immigrants' Text
+' ' Text
+'from' Text
+' ' Text
+'Spain' Text
+' ' Text
+'and' Text
+' ' Text
+'Portugal' Text
+'.' Text
+'\n' Text
+
+'[[' Punctuation
+'File' Name.Namespace
+':' Punctuation
+'Calais2015a.jpg' Name.Tag
+'|' Punctuation
+'thumb' Text
+'|' Punctuation
+'The' Text
+' ' Text
+'[[' Punctuation
+'Calais Jungle' Name.Tag
+']]' Punctuation
+' ' Text
+'was' Text
+' ' Text
+'a' Text
+' ' Text
+'[[' Punctuation
+'refugee' Name.Tag
+']]' Punctuation
+' ' Text
+'and' Text
+' ' Text
+'[[' Punctuation
+'Economic migrant' Name.Tag
+'|' Punctuation
+'illegal' Text
+' ' Text
+'migrant' Text
+']]' Punctuation
+' ' Text
+'encampment' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'vicinity' Text
+' ' Text
+'of' Text
+' ' Text
+'[[' Punctuation
+'Calais' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'France' Text
+',' Text
+' ' Text
+'that' Text
+' ' Text
+'existed' Text
+' ' Text
+'from' Text
+' ' Text
+'January' Text
+' ' Text
+'2015' Text
+' ' Text
+'to' Text
+' ' Text
+'October' Text
+' ' Text
+'2016' Text
+'.' Text
+']]' Punctuation
+'\n' Text
+
+'\n' Text
+
+'France' Text
+' ' Text
+'remains' Text
+' ' Text
+'a' Text
+' ' Text
+'major' Text
+' ' Text
+'destination' Text
+' ' Text
+'for' Text
+' ' Text
+'immigrants' Text
+',' Text
+' ' Text
+'accepting' Text
+' ' Text
+'about' Text
+' ' Text
+'200' Text
+',' Text
+'000' Text
+' ' Text
+'legal' Text
+' ' Text
+'immigrants' Text
+' ' Text
+'annually' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'date' Name.Label
+'=' Operator
+'3' Text
+' ' Text
+'November' Text
+' ' Text
+'2010' Text
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Flux' Text
+' ' Text
+'d' Text
+"'" Text
+'immigration' Text
+' ' Text
+'par' Text
+' ' Text
+'continent' Text
+' ' Text
+'d' Text
+"'" Text
+'origine' Text
+' ' Text
+'|' Punctuation
+'trans-title' Name.Label
+'=' Operator
+'Immigration' Text
+' ' Text
+'flow' Text
+' ' Text
+'by' Text
+' ' Text
+'continent' Text
+' ' Text
+'of' Text
+' ' Text
+'origin' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'ined' Text
+'.' Text
+'fr' Text
+'/' Text
+'fr' Text
+'/' Text
+'tout' Text
+'-' Text
+'savoir' Text
+'-' Text
+'population' Text
+'/' Text
+'chiffres' Text
+'/' Text
+'france' Text
+'/' Text
+'flux' Text
+'-' Text
+'immigration' Text
+'/' Text
+'annee' Text
+'-' Text
+'continent' Text
+'/' Text
+' ' Text
+'|' Punctuation
+'url-status' Name.Label
+'=' Operator
+'dead' Text
+' ' Text
+'|' Punctuation
+'archive-url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'web' Text
+'.' Text
+'archive' Text
+'.' Text
+'org' Text
+'/' Text
+'web' Text
+'/' Text
+'20120523053018' Text
+'/' Text
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'ined' Text
+'.' Text
+'fr' Text
+'/' Text
+'fr' Text
+'/' Text
+'pop_chiffres' Text
+'/' Text
+'france' Text
+'/' Text
+'flux_immigration' Text
+'/' Text
+'depuis_1994' Text
+'/' Text
+' ' Text
+'|' Punctuation
+'archive-date' Name.Label
+'=' Operator
+'23' Text
+' ' Text
+'May' Text
+' ' Text
+'2012' Text
+' ' Text
+'|' Punctuation
+'website' Name.Label
+'=' Operator
+'Ined' Text
+' ' Text
+'|' Punctuation
+'language' Name.Label
+'=' Operator
+'fr' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'In' Text
+' ' Text
+'2005' Text
+',' Text
+' ' Text
+'it' Text
+' ' Text
+'was' Text
+' ' Text
+'Western' Text
+' ' Text
+'Europe' Text
+"'" Text
+'s' Text
+' ' Text
+'leading' Text
+' ' Text
+'recipient' Text
+' ' Text
+'of' Text
+' ' Text
+'[[' Punctuation
+'refugee' Name.Tag
+'|' Punctuation
+'asylum' Text
+']]' Punctuation
+' ' Text
+'seekers' Text
+',' Text
+' ' Text
+'with' Text
+' ' Text
+'an' Text
+' ' Text
+'estimated' Text
+' ' Text
+'50' Text
+',' Text
+'000' Text
+' ' Text
+'applications' Text
+' ' Text
+'(' Text
+'albeit' Text
+' ' Text
+'a' Text
+' ' Text
+'15' Text
+'%' Text
+' ' Text
+'decrease' Text
+' ' Text
+'from' Text
+' ' Text
+'2004' Text
+')' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+' ' Text.Whitespace
+'name' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+'UNHCR' Literal.String.Double
+'"' Literal.String.Double
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'book' Name.Tag
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'UNHCR' Text
+' ' Text
+'Global' Text
+' ' Text
+'Report' Text
+' ' Text
+'2005' Text
+' ' Text
+'|' Punctuation
+'publisher' Name.Label
+'=' Operator
+'[[' Punctuation
+'UNHCR' Name.Tag
+']]' Punctuation
+' ' Text
+'|' Punctuation
+'chapter' Name.Label
+'=' Operator
+'Western' Text
+' ' Text
+'Europe' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'14' Text
+' ' Text
+'December' Text
+' ' Text
+'2006' Text
+' ' Text
+'|' Punctuation
+'chapter-url' Name.Label
+'=' Operator
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'unhcr' Text
+'.' Text
+'org' Text
+'/' Text
+'publ' Text
+'/' Text
+'PUBL' Text
+'/' Text
+'4492677f0' Text
+'.' Text
+'pdf' Text
+' ' Text
+'|' Punctuation
+'archive-url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'web' Text
+'.' Text
+'archive' Text
+'.' Text
+'org' Text
+'/' Text
+'web' Text
+'/' Text
+'20070614025835' Text
+'/' Text
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'unhcr' Text
+'.' Text
+'org' Text
+'/' Text
+'publ' Text
+'/' Text
+'PUBL' Text
+'/' Text
+'4492677f0' Text
+'.' Text
+'pdf' Text
+' ' Text
+'|' Punctuation
+'archive-date' Name.Label
+'=' Operator
+'14' Text
+' ' Text
+'June' Text
+' ' Text
+'2007' Text
+' ' Text
+'|' Punctuation
+'url-status' Name.Label
+'=' Operator
+'live' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'In' Text
+' ' Text
+'2010' Text
+',' Text
+' ' Text
+'France' Text
+' ' Text
+'received' Text
+' ' Text
+'about' Text
+' ' Text
+'48' Text
+',' Text
+'100' Text
+' ' Text
+'asylum' Text
+' ' Text
+'applications' Text
+'—' Text
+'placing' Text
+' ' Text
+'it' Text
+' ' Text
+'among' Text
+' ' Text
+'the' Text
+' ' Text
+'top' Text
+' ' Text
+'five' Text
+' ' Text
+'asylum' Text
+' ' Text
+'recipients' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'world' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'journal' Name.Tag
+' ' Text
+'|' Punctuation
+'last1' Name.Label
+'=' Operator
+'Kalt' Text
+' ' Text
+'|' Punctuation
+'first1' Name.Label
+'=' Operator
+'Anne' Text
+' ' Text
+'|' Punctuation
+'last2' Name.Label
+'=' Operator
+'Hossain' Text
+' ' Text
+'|' Punctuation
+'first2' Name.Label
+'=' Operator
+'Mazeda' Text
+' ' Text
+'|' Punctuation
+'last3' Name.Label
+'=' Operator
+'Kiss' Text
+' ' Text
+'|' Punctuation
+'first3' Name.Label
+'=' Operator
+'Ligia' Text
+' ' Text
+'|' Punctuation
+'last4' Name.Label
+'=' Operator
+'Zimmerman' Text
+' ' Text
+'|' Punctuation
+'first4' Name.Label
+'=' Operator
+'Cathy' Text
+' ' Text
+'|' Punctuation
+'date' Name.Label
+'=' Operator
+'March' Text
+' ' Text
+'2013' Text
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Asylum' Text
+' ' Text
+'Seekers' Text
+',' Text
+' ' Text
+'Violence' Text
+' ' Text
+'and' Text
+' ' Text
+'Health' Text
+':' Text
+' ' Text
+'A' Text
+' ' Text
+'Systematic' Text
+' ' Text
+'Review' Text
+' ' Text
+'of' Text
+' ' Text
+'Research' Text
+' ' Text
+'in' Text
+' ' Text
+'High' Text
+'-' Text
+'Income' Text
+' ' Text
+'Host' Text
+' ' Text
+'Countries' Text
+' ' Text
+'|' Punctuation
+'journal' Name.Label
+'=' Operator
+'American' Text
+' ' Text
+'Journal' Text
+' ' Text
+'of' Text
+' ' Text
+'Public' Text
+' ' Text
+'Health' Text
+' ' Text
+'|' Punctuation
+'volume' Name.Label
+'=' Operator
+'103' Text
+' ' Text
+'|' Punctuation
+'issue' Name.Label
+'=' Operator
+'3' Text
+' ' Text
+'|' Punctuation
+'pages' Name.Label
+'=' Operator
+'e30' Text
+'–' Text
+'e42' Text
+' ' Text
+'|' Punctuation
+'doi' Name.Label
+'=' Operator
+'10' Text
+'.' Text
+'2105' Text
+'/' Text
+'AJPH' Text
+'.' Text
+'2012' Text
+'.' Text
+'301136' Text
+' ' Text
+'|' Punctuation
+'issn' Name.Label
+'=' Operator
+'0090' Text
+'-' Text
+'0036' Text
+' ' Text
+'|' Punctuation
+'pmc' Name.Label
+'=' Operator
+'3673512' Text
+' ' Text
+'|' Punctuation
+'pmid' Name.Label
+'=' Operator
+'23327250' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'and' Text
+' ' Text
+'in' Text
+' ' Text
+'subsequent' Text
+' ' Text
+'years' Text
+' ' Text
+'it' Text
+' ' Text
+'saw' Text
+' ' Text
+'the' Text
+' ' Text
+'number' Text
+' ' Text
+'of' Text
+' ' Text
+'applications' Text
+' ' Text
+'increase' Text
+',' Text
+' ' Text
+'ultimately' Text
+' ' Text
+'doubling' Text
+' ' Text
+'to' Text
+' ' Text
+'100' Text
+',' Text
+'412' Text
+' ' Text
+'in' Text
+' ' Text
+'2017' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'year' Name.Label
+'=' Operator
+'2017' Text
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'aida' Text
+' ' Text
+'–' Text
+' ' Text
+'Asylum' Text
+' ' Text
+'Information' Text
+' ' Text
+'Database' Text
+' ' Text
+'–' Text
+' ' Text
+'Country' Text
+' ' Text
+'Report' Text
+':' Text
+' ' Text
+'France' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'asylumineurope' Text
+'.' Text
+'org' Text
+'/' Text
+'sites' Text
+'/' Text
+'default' Text
+'/' Text
+'files' Text
+'/' Text
+'report' Text
+'-' Text
+'download' Text
+'/' Text
+'aida_fr_2017update' Text
+'.' Text
+'pdf' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'The' Text
+' ' Text
+'European' Text
+' ' Text
+'Union' Text
+' ' Text
+'allows' Text
+' ' Text
+'free' Text
+' ' Text
+'movement' Text
+' ' Text
+'between' Text
+' ' Text
+'the' Text
+' ' Text
+'member' Text
+' ' Text
+'states' Text
+',' Text
+' ' Text
+'although' Text
+' ' Text
+'France' Text
+' ' Text
+'established' Text
+' ' Text
+'controls' Text
+' ' Text
+'to' Text
+' ' Text
+'curb' Text
+' ' Text
+'[[' Punctuation
+'Eastern European' Name.Tag
+']]' Punctuation
+' ' Text
+'migration' Text
+',' Text
+'{{' Punctuation
+'Citation' Name.Tag
+' ' Name.Tag
+'needed' Name.Tag
+'|' Punctuation
+'date' Name.Label
+'=' Operator
+'October' Text
+' ' Text
+'2019' Text
+'}}' Punctuation
+' ' Text
+'and' Text
+' ' Text
+'immigration' Text
+' ' Text
+'remains' Text
+' ' Text
+'a' Text
+' ' Text
+'contentious' Text
+' ' Text
+'political' Text
+' ' Text
+'issue' Text
+'.' Text
+'\n' Text
+
+'\n' Text
+
+'In' Text
+' ' Text
+'2008' Text
+',' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'INSEE' Name.Tag
+']]' Punctuation
+' ' Text
+'(' Text
+'National' Text
+' ' Text
+'Institute' Text
+' ' Text
+'of' Text
+' ' Text
+'Statistics' Text
+' ' Text
+'and' Text
+' ' Text
+'Economic' Text
+' ' Text
+'Studies' Text
+')' Text
+' ' Text
+'estimated' Text
+' ' Text
+'that' Text
+' ' Text
+'the' Text
+' ' Text
+'total' Text
+' ' Text
+'number' Text
+' ' Text
+'of' Text
+' ' Text
+'foreign' Text
+'-' Text
+'born' Text
+' ' Text
+'immigrants' Text
+' ' Text
+'was' Text
+' ' Text
+'around' Text
+' ' Text
+'5' Text
+'&nbsp;' Name.Entity
+'million' Text
+' ' Text
+'(' Text
+'8' Text
+'%' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'population' Text
+')' Text
+',' Text
+' ' Text
+'while' Text
+' ' Text
+'their' Text
+' ' Text
+'French' Text
+'-' Text
+'born' Text
+' ' Text
+'descendants' Text
+' ' Text
+'numbered' Text
+' ' Text
+'6' Text
+'.' Text
+'5' Text
+'&nbsp;' Name.Entity
+'million' Text
+',' Text
+' ' Text
+'or' Text
+' ' Text
+'11' Text
+'%' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'population' Text
+'.' Text
+' ' Text
+'Thus' Text
+',' Text
+' ' Text
+'nearly' Text
+' ' Text
+'a' Text
+' ' Text
+'fifth' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'country' Text
+"'" Text
+'s' Text
+' ' Text
+'population' Text
+' ' Text
+'were' Text
+' ' Text
+'either' Text
+' ' Text
+'first' Text
+' ' Text
+'or' Text
+' ' Text
+'second' Text
+'-' Text
+'generation' Text
+' ' Text
+'immigrants' Text
+',' Text
+' ' Text
+'of' Text
+' ' Text
+'which' Text
+' ' Text
+'more' Text
+' ' Text
+'than' Text
+' ' Text
+'5' Text
+'&nbsp;' Name.Entity
+'million' Text
+' ' Text
+'were' Text
+' ' Text
+'of' Text
+' ' Text
+'European' Text
+' ' Text
+'origin' Text
+' ' Text
+'and' Text
+' ' Text
+'4' Text
+'&nbsp;' Name.Entity
+'million' Text
+' ' Text
+'of' Text
+' ' Text
+'[[' Punctuation
+'Maghrebis' Name.Tag
+'|' Punctuation
+'Maghrebi' Text
+']]' Punctuation
+' ' Text
+'ancestry' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'last1' Name.Label
+'=' Operator
+'Catherine' Text
+' ' Text
+'Borrel' Text
+' ' Text
+'|' Punctuation
+'last2' Name.Label
+'=' Operator
+'Bertrand' Text
+' ' Text
+'Lhommeau' Text
+' ' Text
+'|' Punctuation
+'date' Name.Label
+'=' Operator
+'30' Text
+' ' Text
+'March' Text
+' ' Text
+'2010' Text
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Être' Text
+' ' Text
+'né' Text
+' ' Text
+'en' Text
+' ' Text
+'France' Text
+' ' Text
+'d' Text
+"'" Text
+'un' Text
+' ' Text
+'parent' Text
+' ' Text
+'immigré' Text
+' ' Text
+'|' Punctuation
+'trans-title' Name.Label
+'=' Operator
+'To' Text
+' ' Text
+'be' Text
+' ' Text
+'born' Text
+' ' Text
+'in' Text
+' ' Text
+'France' Text
+' ' Text
+'of' Text
+' ' Text
+'an' Text
+' ' Text
+'immigrant' Text
+' ' Text
+'parent' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'insee' Text
+'.' Text
+'fr' Text
+'/' Text
+'fr' Text
+'/' Text
+'themes' Text
+'/' Text
+'document' Text
+'.' Text
+'asp' Text
+'?' Text
+'reg_id' Text
+'=' Text
+'0' Text
+'&' Text
+'ref_id' Text
+'=' Text
+'ip1287' Text
+' ' Text
+'|' Punctuation
+'url-status' Name.Label
+'=' Operator
+'live' Text
+' ' Text
+'|' Punctuation
+'archive-url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'web' Text
+'.' Text
+'archive' Text
+'.' Text
+'org' Text
+'/' Text
+'web' Text
+'/' Text
+'20120203052501' Text
+'/' Text
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'insee' Text
+'.' Text
+'fr' Text
+'/' Text
+'fr' Text
+'/' Text
+'themes' Text
+'/' Text
+'document' Text
+'.' Text
+'asp' Text
+'?' Text
+'reg_id' Text
+'=' Text
+'0' Text
+'&' Text
+'ref_id' Text
+'=' Text
+'ip1287' Text
+' ' Text
+'|' Punctuation
+'archive-date' Name.Label
+'=' Operator
+'3' Text
+' ' Text
+'February' Text
+' ' Text
+'2012' Text
+' ' Text
+'|' Punctuation
+'publisher' Name.Label
+'=' Operator
+'Insee' Text
+' ' Text
+'|' Punctuation
+'language' Name.Label
+'=' Operator
+'fr' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'<' Punctuation
+'ref' Name.Tag
+' ' Text.Whitespace
+'name' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+'Insee_1' Literal.String.Double
+'"' Literal.String.Double
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'year' Name.Label
+'=' Operator
+'2008' Text
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Répartition' Text
+' ' Text
+'des' Text
+' ' Text
+'immigrés' Text
+' ' Text
+'par' Text
+' ' Text
+'pays' Text
+' ' Text
+'de' Text
+' ' Text
+'naissance' Text
+' ' Text
+'|' Punctuation
+'trans-title' Name.Label
+'=' Operator
+'Distribution' Text
+' ' Text
+'of' Text
+' ' Text
+'immigrants' Text
+' ' Text
+'by' Text
+' ' Text
+'country' Text
+' ' Text
+'of' Text
+' ' Text
+'birth' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'insee' Text
+'.' Text
+'fr' Text
+'/' Text
+'fr' Text
+'/' Text
+'themes' Text
+'/' Text
+'tableau' Text
+'.' Text
+'asp' Text
+'?' Text
+'reg_id' Text
+'=' Text
+'0' Text
+'&' Text
+'ref_id' Text
+'=' Text
+'immigrespaysnais' Text
+' ' Text
+'|' Punctuation
+'url-status' Name.Label
+'=' Operator
+'dead' Text
+' ' Text
+'|' Punctuation
+'archive-url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'web' Text
+'.' Text
+'archive' Text
+'.' Text
+'org' Text
+'/' Text
+'web' Text
+'/' Text
+'20111026174732' Text
+'/' Text
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'insee' Text
+'.' Text
+'fr' Text
+'/' Text
+'fr' Text
+'/' Text
+'themes' Text
+'/' Text
+'tableau' Text
+'.' Text
+'asp' Text
+'?' Text
+'reg_id' Text
+'=' Text
+'0' Text
+'&' Text
+'ref_id' Text
+'=' Text
+'immigrespaysnais' Text
+' ' Text
+'|' Punctuation
+'archive-date' Name.Label
+'=' Operator
+'26' Text
+' ' Text
+'October' Text
+' ' Text
+'2011' Text
+' ' Text
+'|' Punctuation
+'publisher' Name.Label
+'=' Operator
+'Insee' Text
+' ' Text
+'|' Punctuation
+'language' Name.Label
+'=' Operator
+'fr' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'<' Punctuation
+'ref' Name.Tag
+' ' Text.Whitespace
+'name' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+'INSEE1' Literal.String.Double
+'"' Literal.String.Double
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'last' Name.Label
+'=' Operator
+'Catherine' Text
+' ' Text
+'Borrel' Text
+' ' Text
+'|' Punctuation
+'date' Name.Label
+'=' Operator
+'August' Text
+' ' Text
+'2006' Text
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Enquêtes' Text
+' ' Text
+'annuelles' Text
+' ' Text
+'de' Text
+' ' Text
+'recensement' Text
+' ' Text
+'2004' Text
+' ' Text
+'et' Text
+' ' Text
+'2005' Text
+' ' Text
+'|' Punctuation
+'trans-title' Name.Label
+'=' Operator
+'Annual' Text
+' ' Text
+'census' Text
+' ' Text
+'surveys' Text
+' ' Text
+'2004' Text
+' ' Text
+'and' Text
+' ' Text
+'2005' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'insee' Text
+'.' Text
+'fr' Text
+'/' Text
+'fr' Text
+'/' Text
+'ffc' Text
+'/' Text
+'ipweb' Text
+'/' Text
+'ip1098' Text
+'/' Text
+'ip1098' Text
+'.' Text
+'html' Text
+'#' Text
+'encadre1' Text
+' ' Text
+'|' Punctuation
+'url-status' Name.Label
+'=' Operator
+'dead' Text
+' ' Text
+'|' Punctuation
+'archive-url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'web' Text
+'.' Text
+'archive' Text
+'.' Text
+'org' Text
+'/' Text
+'web' Text
+'/' Text
+'20061212212050' Text
+'/' Text
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'insee' Text
+'.' Text
+'fr' Text
+'/' Text
+'fr' Text
+'/' Text
+'ffc' Text
+'/' Text
+'ipweb' Text
+'/' Text
+'ip1098' Text
+'/' Text
+'ip1098' Text
+'.' Text
+'html' Text
+' ' Text
+'|' Punctuation
+'archive-date' Name.Label
+'=' Operator
+'12' Text
+' ' Text
+'December' Text
+' ' Text
+'2006' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'14' Text
+' ' Text
+'December' Text
+' ' Text
+'2006' Text
+' ' Text
+'|' Punctuation
+'publisher' Name.Label
+'=' Operator
+'Insee' Text
+' ' Text
+'|' Punctuation
+'language' Name.Label
+'=' Operator
+'fr' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'In' Text
+' ' Text
+'2008' Text
+',' Text
+' ' Text
+'France' Text
+' ' Text
+'granted' Text
+' ' Text
+'[[' Punctuation
+'citizenship' Name.Tag
+']]' Punctuation
+' ' Text
+'to' Text
+' ' Text
+'137' Text
+',' Text
+'000' Text
+' ' Text
+'persons' Text
+',' Text
+' ' Text
+'mostly' Text
+' ' Text
+'from' Text
+' ' Text
+'Morocco' Text
+',' Text
+' ' Text
+'Algeria' Text
+' ' Text
+'and' Text
+' ' Text
+'Turkey' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'news' Name.Tag
+' ' Text
+'|' Punctuation
+'last' Name.Label
+'=' Operator
+'Swalec' Text
+' ' Text
+'|' Punctuation
+'first' Name.Label
+'=' Operator
+'Andrea' Text
+' ' Text
+'|' Punctuation
+'date' Name.Label
+'=' Operator
+'6' Text
+' ' Text
+'July' Text
+' ' Text
+'2010' Text
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Turks' Text
+' ' Text
+'and' Text
+' ' Text
+'Moroccans' Text
+' ' Text
+'top' Text
+' ' Text
+'list' Text
+' ' Text
+'of' Text
+' ' Text
+'new' Text
+' ' Text
+'EU' Text
+' ' Text
+'citizens' Text
+' ' Text
+'|' Punctuation
+'work' Name.Label
+'=' Operator
+'Reuters' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'in' Text
+'.' Text
+'reuters' Text
+'.' Text
+'com' Text
+'/' Text
+'article' Text
+'/' Text
+'idINIndia' Text
+'-' Text
+'49921620100706' Text
+' ' Text
+'|' Punctuation
+'url-status' Name.Label
+'=' Operator
+'live' Text
+' ' Text
+'|' Punctuation
+'archive-url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'web' Text
+'.' Text
+'archive' Text
+'.' Text
+'org' Text
+'/' Text
+'web' Text
+'/' Text
+'20120112223503' Text
+'/' Text
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'in' Text
+'.' Text
+'reuters' Text
+'.' Text
+'com' Text
+'/' Text
+'article' Text
+'/' Text
+'2010' Text
+'/' Text
+'07' Text
+'/' Text
+'06' Text
+'/' Text
+'idINIndia' Text
+'-' Text
+'49921620100706' Text
+' ' Text
+'|' Punctuation
+'archive-date' Name.Label
+'=' Operator
+'12' Text
+' ' Text
+'January' Text
+' ' Text
+'2012' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'\n' Text
+
+'\n' Text
+
+'In' Text
+' ' Text
+'2014' Text
+',' Text
+' ' Text
+'the' Text
+' ' Text
+'INSEE' Text
+' ' Text
+'reported' Text
+' ' Text
+'a' Text
+' ' Text
+'significant' Text
+' ' Text
+'increase' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'number' Text
+' ' Text
+'of' Text
+' ' Text
+'immigrants' Text
+' ' Text
+'coming' Text
+' ' Text
+'from' Text
+' ' Text
+'Spain' Text
+',' Text
+' ' Text
+'Portugal' Text
+' ' Text
+'and' Text
+' ' Text
+'Italy' Text
+' ' Text
+'between' Text
+' ' Text
+'2009' Text
+' ' Text
+'and' Text
+' ' Text
+'2012' Text
+'.' Text
+' ' Text
+'According' Text
+' ' Text
+'to' Text
+' ' Text
+'the' Text
+' ' Text
+'French' Text
+' ' Text
+'Institute' Text
+',' Text
+' ' Text
+'this' Text
+' ' Text
+'increase' Text
+' ' Text
+'resulted' Text
+' ' Text
+'from' Text
+' ' Text
+'the' Text
+' ' Text
+'financial' Text
+' ' Text
+'crisis' Text
+' ' Text
+'that' Text
+' ' Text
+'hit' Text
+' ' Text
+'several' Text
+' ' Text
+'European' Text
+' ' Text
+'countries' Text
+' ' Text
+'in' Text
+' ' Text
+'that' Text
+' ' Text
+'period' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+' ' Text.Whitespace
+'name' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+'sudouest' Literal.String.Double
+'.' Literal.String.Double
+'fr' Literal.String.Double
+'"' Literal.String.Double
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'news' Name.Tag
+' ' Text
+'|' Punctuation
+'date' Name.Label
+'=' Operator
+'2' Text
+' ' Text
+'December' Text
+' ' Text
+'2014' Text
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Qui' Text
+' ' Text
+'sont' Text
+' ' Text
+'les' Text
+' ' Text
+'nouveaux' Text
+' ' Text
+'immigrés' Text
+' ' Text
+'qui' Text
+' ' Text
+'vivent' Text
+' ' Text
+'en' Text
+' ' Text
+'France' Text
+'?' Text
+' ' Text
+'|' Punctuation
+'language' Name.Label
+'=' Operator
+'fr' Text
+' ' Text
+'|' Punctuation
+'trans-title' Name.Label
+'=' Operator
+'Who' Text
+' ' Text
+'are' Text
+' ' Text
+'the' Text
+' ' Text
+'new' Text
+' ' Text
+'immigrants' Text
+' ' Text
+'living' Text
+' ' Text
+'in' Text
+' ' Text
+'France' Text
+'?' Text
+' ' Text
+'|' Punctuation
+'work' Name.Label
+'=' Operator
+'SudOuest' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'sudouest' Text
+'.' Text
+'fr' Text
+'/' Text
+'2014' Text
+'/' Text
+'11' Text
+'/' Text
+'28' Text
+'/' Text
+'qui' Text
+'-' Text
+'sont' Text
+'-' Text
+'les' Text
+'-' Text
+'nouveaux' Text
+'-' Text
+'immigres' Text
+'-' Text
+'qui' Text
+'-' Text
+'vivent' Text
+'-' Text
+'en' Text
+'-' Text
+'france' Text
+'-' Text
+'1751452' Text
+'-' Text
+'705' Text
+'.' Text
+'php' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'Statistics' Text
+' ' Text
+'on' Text
+' ' Text
+'Spanish' Text
+' ' Text
+'immigrants' Text
+' ' Text
+'in' Text
+' ' Text
+'France' Text
+' ' Text
+'show' Text
+' ' Text
+'a' Text
+' ' Text
+'growth' Text
+' ' Text
+'of' Text
+' ' Text
+'107' Text
+' ' Text
+'percent' Text
+' ' Text
+'between' Text
+' ' Text
+'2009' Text
+' ' Text
+'and' Text
+' ' Text
+'2012' Text
+',' Text
+' ' Text
+'with' Text
+' ' Text
+'the' Text
+' ' Text
+'population' Text
+' ' Text
+'growing' Text
+' ' Text
+'from' Text
+' ' Text
+'5' Text
+',' Text
+'300' Text
+' ' Text
+'to' Text
+' ' Text
+'11' Text
+',' Text
+'000' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+' ' Text.Whitespace
+'name' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+'sudouest' Literal.String.Double
+'.' Literal.String.Double
+'fr' Literal.String.Double
+'"' Literal.String.Double
+' ' Text.Whitespace
+'/>' Punctuation
+' ' Text
+'Of' Text
+' ' Text
+'the' Text
+' ' Text
+'total' Text
+' ' Text
+'of' Text
+' ' Text
+'229' Text
+',' Text
+'000' Text
+' ' Text
+'foreigners' Text
+' ' Text
+'who' Text
+' ' Text
+'were' Text
+' ' Text
+'in' Text
+' ' Text
+'France' Text
+' ' Text
+'in' Text
+' ' Text
+'2012' Text
+',' Text
+' ' Text
+'nearly' Text
+' ' Text
+'8' Text
+'%' Text
+' ' Text
+'were' Text
+' ' Text
+'Portuguese' Text
+',' Text
+' ' Text
+'5' Text
+'%' Text
+' ' Text
+'British' Text
+',' Text
+' ' Text
+'5' Text
+'%' Text
+' ' Text
+'Spanish' Text
+',' Text
+' ' Text
+'4' Text
+'%' Text
+' ' Text
+'Italian' Text
+',' Text
+' ' Text
+'4' Text
+'%' Text
+' ' Text
+'German' Text
+',' Text
+' ' Text
+'3' Text
+'%' Text
+' ' Text
+'Romanian' Text
+',' Text
+' ' Text
+'and' Text
+' ' Text
+'3' Text
+'%' Text
+' ' Text
+'Belgian' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+' ' Text.Whitespace
+'name' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+'sudouest' Literal.String.Double
+'.' Literal.String.Double
+'fr' Literal.String.Double
+'"' Literal.String.Double
+' ' Text.Whitespace
+'/>' Punctuation
+'\n' Text
+
+'{|' Punctuation
+' ' Text.Whitespace
+'class' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+'wikitable' Literal.String.Double
+' ' Literal.String.Double
+'sortable' Literal.String.Double
+'"' Literal.String.Double
+' ' Text.Whitespace
+'style' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+'text' Literal.String.Double
+'-' Literal.String.Double
+'align' Literal.String.Double
+':' Literal.String.Double
+' ' Literal.String.Double
+'center' Literal.String.Double
+';' Literal.String.Double
+' ' Literal.String.Double
+'width' Literal.String.Double
+':' Literal.String.Double
+' ' Literal.String.Double
+'540px' Literal.String.Double
+'"' Literal.String.Double
+'\n' Text
+
+'|+' Punctuation
+' Number of immigrants{{Efn-ur|INSEE definition: an immigrant is a person born in a foreign country not having French citizenship at birth. Note that an immigrant may have acquired French citizenship since moving to France, but is still considered an immigrant in French statistics. On the other hand, persons born in France with foreign citizenship (the children of immigrants) are not listed as immigrants. Changes in immigrant numbers result from: arrivals of new immigrants - (departures + deaths in France).}} living in France by region of birth' Generic.Heading
+'\n' Text
+
+'!' Punctuation
+' ' Generic.Subheading
+'UN' Generic.Subheading
+' ' Generic.Subheading
+'SDG' Generic.Subheading
+' ' Generic.Subheading
+'region' Generic.Subheading
+'\n' Text
+
+'!' Punctuation
+' ' Generic.Subheading
+'2019' Generic.Subheading
+' ' Generic.Subheading
+'census' Generic.Subheading
+'\n' Text
+
+'!' Punctuation
+' ' Generic.Subheading
+'2009' Generic.Subheading
+' ' Generic.Subheading
+'census' Generic.Subheading
+'\n' Text
+
+'!' Punctuation
+' ' Generic.Subheading
+'Growth' Generic.Subheading
+'\n' Text
+
+'|-' Punctuation
+'\n' Text
+
+'|' Punctuation
+' ' Text
+'Northern' Text
+' ' Text
+'Africa' Text
+' ' Text
+'and' Text
+' ' Text
+'Western' Text
+' ' Text
+'Asia' Text
+'\n' Text
+
+'|' Punctuation
+' ' Text
+'2' Text
+',' Text
+'425' Text
+',' Text
+'200' Text
+'\n' Text
+
+'|' Punctuation
+' ' Text
+'1' Text
+',' Text
+'983' Text
+',' Text
+'600' Text
+'\n' Text
+
+'|' Punctuation
+' ' Text
+'+' Text
+'22' Text
+'.' Text
+'3' Text
+'%' Text
+'\n' Text
+
+'|-' Punctuation
+'\n' Text
+
+'|' Punctuation
+' ' Text
+'Europe' Text
+'\n' Text
+
+'|' Punctuation
+' ' Text
+'2' Text
+',' Text
+'297' Text
+',' Text
+'400' Text
+'\n' Text
+
+'|' Punctuation
+' ' Text
+'2' Text
+',' Text
+'076' Text
+',' Text
+'200' Text
+'\n' Text
+
+'|' Punctuation
+' ' Text
+'+' Text
+'10' Text
+'.' Text
+'7' Text
+'%' Text
+'\n' Text
+
+'|-' Punctuation
+'\n' Text
+
+'|' Punctuation
+' ' Text
+'Sub' Text
+'-' Text
+'Saharan' Text
+' ' Text
+'Africa' Text
+'\n' Text
+
+'|' Punctuation
+' ' Text
+'1' Text
+',' Text
+'123' Text
+',' Text
+'800' Text
+'\n' Text
+
+'|' Punctuation
+' ' Text
+'667' Text
+',' Text
+'500' Text
+'\n' Text
+
+'|' Punctuation
+' ' Text
+'+' Text
+'68' Text
+'.' Text
+'4' Text
+'%' Text
+'\n' Text
+
+'|-' Punctuation
+'\n' Text
+
+'|' Punctuation
+' ' Text
+'Eastern' Text
+' ' Text
+'and' Text
+' ' Text
+'South' Text
+'-' Text
+'Eastern' Text
+' ' Text
+'Asia' Text
+'\n' Text
+
+'|' Punctuation
+' ' Text
+'311' Text
+',' Text
+'400' Text
+'\n' Text
+
+'|' Punctuation
+' ' Text
+'293' Text
+',' Text
+'100' Text
+'\n' Text
+
+'|' Punctuation
+' ' Text
+'+' Text
+'6' Text
+'.' Text
+'2' Text
+'%' Text
+'\n' Text
+
+'|-' Punctuation
+'\n' Text
+
+'|' Punctuation
+' ' Text
+'Latin' Text
+' ' Text
+'America' Text
+' ' Text
+'and' Text
+' ' Text
+'the' Text
+' ' Text
+'Caribbean' Text
+'\n' Text
+
+'|' Punctuation
+' ' Text
+'307' Text
+',' Text
+'650' Text
+'\n' Text
+
+'|' Punctuation
+' ' Text
+'233' Text
+',' Text
+'900' Text
+'\n' Text
+
+'|' Punctuation
+' ' Text
+'+' Text
+'31' Text
+'.' Text
+'5' Text
+'%' Text
+'\n' Text
+
+'|-' Punctuation
+'\n' Text
+
+'|' Punctuation
+' ' Text
+'Central' Text
+' ' Text
+'and' Text
+' ' Text
+'Southern' Text
+' ' Text
+'Asia' Text
+'\n' Text
+
+'|' Punctuation
+' ' Text
+'205' Text
+',' Text
+'600' Text
+'\n' Text
+
+'|' Punctuation
+' ' Text
+'120' Text
+',' Text
+'100' Text
+'\n' Text
+
+'|' Punctuation
+' ' Text
+'+' Text
+'71' Text
+'.' Text
+'2' Text
+'%' Text
+'\n' Text
+
+'|-' Punctuation
+'\n' Text
+
+'|' Punctuation
+' ' Text
+'Northern' Text
+' ' Text
+'America' Text
+'\n' Text
+
+'|' Punctuation
+' ' Text
+'54' Text
+',' Text
+'600' Text
+'\n' Text
+
+'|' Punctuation
+' ' Text
+'51' Text
+',' Text
+'600' Text
+'\n' Text
+
+'|' Punctuation
+' ' Text
+'+' Text
+'5' Text
+'.' Text
+'8' Text
+'%' Text
+'\n' Text
+
+'|-' Punctuation
+'\n' Text
+
+'|' Punctuation
+' ' Text
+'Australia' Text
+',' Text
+' ' Text
+'NZ' Text
+',' Text
+' ' Text
+'and' Text
+' ' Text
+'Oceania' Text
+'\n' Text
+
+'|' Punctuation
+' ' Text
+'7' Text
+',' Text
+'950' Text
+'\n' Text
+
+'|' Punctuation
+' ' Text
+'6' Text
+',' Text
+'700' Text
+'\n' Text
+
+'|' Punctuation
+' ' Text
+'+' Text
+'18' Text
+'.' Text
+'7' Text
+'%' Text
+'\n' Text
+
+'|-' Punctuation
+'\n' Text
+
+'|-' Punctuation
+'\n' Text
+
+'!' Punctuation
+' ' Generic.Subheading
+'Total' Generic.Subheading
+'\n' Text
+
+'!' Punctuation
+' ' Generic.Subheading
+'6' Generic.Subheading
+',' Generic.Subheading
+'733' Generic.Subheading
+',' Generic.Subheading
+'600' Generic.Subheading
+'\n' Text
+
+'!' Punctuation
+' ' Generic.Subheading
+'5' Generic.Subheading
+',' Generic.Subheading
+'432' Generic.Subheading
+',' Generic.Subheading
+'700' Generic.Subheading
+'\n' Text
+
+'!' Punctuation
+' ' Generic.Subheading
+'+' Generic.Subheading
+'23' Generic.Subheading
+'.' Generic.Subheading
+'9' Generic.Subheading
+'%' Generic.Subheading
+'\n' Text
+
+'|-' Punctuation
+'\n' Text
+
+'|' Punctuation
+' ' Text.Whitespace
+'Colspan' Name.Attribute
+'=' Operator
+'4' Literal.String
+' ' Text.Whitespace
+'style' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+'text' Literal.String.Double
+'-' Literal.String.Double
+'align' Literal.String.Double
+':' Literal.String.Double
+' ' Literal.String.Double
+'left' Literal.String.Double
+'"' Literal.String.Double
+' ' Text.Whitespace
+'|' Punctuation
+' ' Text
+'{{' Punctuation
+'Small' Name.Tag
+'|' Punctuation
+'Sources' Text
+':' Text
+' ' Text
+'INSEE' Text
+' ' Text
+'census' Text
+' ' Text
+'figures' Text
+',' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'last' Name.Label
+'=' Operator
+'[[' Punctuation
+'INSEE' Name.Tag
+']]' Punctuation
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Immigrés' Text
+' ' Text
+'par' Text
+' ' Text
+'pays' Text
+' ' Text
+'de' Text
+' ' Text
+'naissance' Text
+' ' Text
+'détaillé' Text
+' ' Text
+'-' Text
+' ' Text
+'Recensement' Text
+' ' Text
+'de' Text
+' ' Text
+'la' Text
+' ' Text
+'population' Text
+' ' Text
+'2019' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'insee' Text
+'.' Text
+'fr' Text
+'/' Text
+'fr' Text
+'/' Text
+'statistiques' Text
+'/' Text
+'6478089' Text
+'?' Text
+'sommaire' Text
+'=' Text
+'6478362' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'2022' Text
+'-' Text
+'08' Text
+'-' Text
+'14' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'UN' Text
+' ' Text
+'SDG' Text
+' ' Text
+'regions' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'last' Name.Label
+'=' Operator
+'[[' Punctuation
+'United Nations Department of Economic and Social Affairs' Name.Tag
+']]' Punctuation
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'The' Text
+' ' Text
+'Sustainable' Text
+' ' Text
+'Development' Text
+' ' Text
+'Goals' Text
+' ' Text
+'Report' Text
+' ' Text
+'2019' Text
+' ' Text
+'-' Text
+' ' Text
+'Regional' Text
+' ' Text
+'groupings' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'unstats' Text
+'.' Text
+'un' Text
+'.' Text
+'org' Text
+'/' Text
+'sdgs' Text
+'/' Text
+'report' Text
+'/' Text
+'2019' Text
+'/' Text
+'regional' Text
+'-' Text
+'groups' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'2022' Text
+'-' Text
+'08' Text
+'-' Text
+'14' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'Small' Name.Tag
+'|' Punctuation
+'Note' Text
+':' Text
+' ' Text
+'Figures' Text
+' ' Text
+'for' Text
+' ' Text
+'2019' Text
+' ' Text
+'refer' Text
+' ' Text
+'to' Text
+' ' Text
+'[[' Punctuation
+'Metropolitan France' Name.Tag
+']]' Punctuation
+' ' Text
+'and' Text
+' ' Text
+'the' Text
+' ' Text
+'5' Text
+' ' Text
+'[[' Punctuation
+'Overseas departments and regions of France' Name.Tag
+'|' Punctuation
+'overseas' Text
+' ' Text
+'regions' Text
+']]' Punctuation
+' ' Text
+'(' Text
+'[[' Punctuation
+'Mayotte' Name.Tag
+']]' Punctuation
+' ' Text
+'included' Text
+')' Text
+'.' Text
+' ' Text
+'Figures' Text
+' ' Text
+'for' Text
+' ' Text
+'2009' Text
+' ' Text
+'do' Text
+' ' Text
+'not' Text
+' ' Text
+'include' Text
+' ' Text
+'Mayotte' Text
+'.' Text
+' ' Text
+'The' Text
+' ' Text
+'[[' Punctuation
+'overseas collectivity' Name.Tag
+'|' Punctuation
+'overseas' Text
+' ' Text
+'collectivities' Text
+']]' Punctuation
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'Pacific' Text
+' ' Text
+'Ocean' Text
+' ' Text
+'are' Text
+' ' Text
+'included' Text
+' ' Text
+'neither' Text
+' ' Text
+'in' Text
+' ' Text
+'2009' Text
+' ' Text
+'nor' Text
+' ' Text
+'in' Text
+' ' Text
+'2019' Text
+'.' Text
+'}}' Punctuation
+'\n' Text
+
+'|}' Punctuation
+'\n' Text
+
+'\n' Text
+
+'===' Generic.Subheading
+'Major cities' Generic.Subheading
+'===' Generic.Subheading
+'\n' Text.Whitespace
+
+'{{' Punctuation
+'See' Name.Tag
+' ' Name.Tag
+'also' Name.Tag
+'|' Punctuation
+'Functional' Text
+' ' Text
+'area' Text
+' ' Text
+'(' Text
+'France' Text
+')' Text
+'|' Punctuation
+'Urban' Text
+' ' Text
+'unit' Text
+'}}' Punctuation
+'\n' Text
+
+'France' Text
+' ' Text
+'is' Text
+' ' Text
+'a' Text
+' ' Text
+'highly' Text
+' ' Text
+'urbanised' Text
+' ' Text
+'country' Text
+',' Text
+' ' Text
+'with' Text
+' ' Text
+'its' Text
+' ' Text
+'[[' Punctuation
+'List of cities in France over 20,000 population (1999 census)' Name.Tag
+'|' Punctuation
+'largest' Text
+' ' Text
+'cities' Text
+']]' Punctuation
+' ' Text
+'(' Text
+'in' Text
+' ' Text
+'terms' Text
+' ' Text
+'of' Text
+' ' Text
+'[[' Punctuation
+'Functional area (France)' Name.Tag
+'|' Punctuation
+'metropolitan' Text
+' ' Text
+'area' Text
+']]' Punctuation
+' ' Text
+'population' Text
+' ' Text
+'in' Text
+' ' Text
+'2019' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Population' Text
+' ' Text
+'municipale' Text
+' ' Text
+'2019' Text
+' ' Text
+'-' Text
+' ' Text
+'France' Text
+' ' Text
+'par' Text
+' ' Text
+'aire' Text
+' ' Text
+'d' Text
+"'" Text
+'attraction' Text
+' ' Text
+'des' Text
+' ' Text
+'villes' Text
+' ' Text
+'-' Text
+' ' Text
+'Tableau' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'statistiques' Text
+'-' Text
+'locales' Text
+'.' Text
+'insee' Text
+'.' Text
+'fr' Text
+'/' Text
+'#' Text
+'c' Text
+'=' Text
+'indicator' Text
+'&' Text
+'i' Text
+'=' Text
+'pop_legales' Text
+'.' Text
+'popmun' Text
+'&' Text
+'s' Text
+'=' Text
+'2019' Text
+'&' Text
+'t' Text
+'=' Text
+'A01' Text
+'&' Text
+'view' Text
+'=' Text
+'map13' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'2022' Text
+'-' Text
+'08' Text
+'-' Text
+'11' Text
+' ' Text
+'|' Punctuation
+'website' Name.Label
+'=' Operator
+'Insee' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+')' Text
+' ' Text
+'being' Text
+' ' Text
+'Paris' Text
+' ' Text
+'(' Text
+'13' Text
+',' Text
+'114' Text
+',' Text
+'718' Text
+' ' Text
+'inh' Text
+'.' Text
+')' Text
+',' Text
+' ' Text
+'[[' Punctuation
+'Lyon' Name.Tag
+']]' Punctuation
+' ' Text
+'(' Text
+'2' Text
+',' Text
+'280' Text
+',' Text
+'845' Text
+')' Text
+',' Text
+' ' Text
+'[[' Punctuation
+'Marseille' Name.Tag
+']]' Punctuation
+' ' Text
+'(' Text
+'1' Text
+',' Text
+'873' Text
+',' Text
+'270' Text
+')' Text
+',' Text
+' ' Text
+'[[' Punctuation
+'Lille' Name.Tag
+']]' Punctuation
+' ' Text
+'(' Text
+'1' Text
+',' Text
+'510' Text
+',' Text
+'079' Text
+')' Text
+',' Text
+' ' Text
+'[[' Punctuation
+'Toulouse' Name.Tag
+']]' Punctuation
+' ' Text
+'(' Text
+'1' Text
+',' Text
+'454' Text
+',' Text
+'158' Text
+')' Text
+',' Text
+' ' Text
+'[[' Punctuation
+'Bordeaux' Name.Tag
+']]' Punctuation
+' ' Text
+'(' Text
+'1' Text
+',' Text
+'363' Text
+',' Text
+'711' Text
+')' Text
+',' Text
+' ' Text
+'[[' Punctuation
+'Nantes' Name.Tag
+']]' Punctuation
+' ' Text
+'(' Text
+'1' Text
+',' Text
+'011' Text
+',' Text
+'020' Text
+')' Text
+',' Text
+' ' Text
+'[[' Punctuation
+'Strasbourg' Name.Tag
+']]' Punctuation
+' ' Text
+'(' Text
+'853' Text
+',' Text
+'110' Text
+')' Text
+',' Text
+' ' Text
+'[[' Punctuation
+'Montpellier' Name.Tag
+']]' Punctuation
+' ' Text
+'(' Text
+'801' Text
+',' Text
+'595' Text
+')' Text
+',' Text
+' ' Text
+'and' Text
+' ' Text
+'[[' Punctuation
+'Rennes' Name.Tag
+']]' Punctuation
+' ' Text
+'(' Text
+'755' Text
+',' Text
+'668' Text
+')' Text
+'.' Text
+' ' Text
+'(' Text
+'Note' Text
+':' Text
+' ' Text
+'since' Text
+' ' Text
+'its' Text
+' ' Text
+'2020' Text
+' ' Text
+'revision' Text
+' ' Text
+'of' Text
+' ' Text
+'metropolitan' Text
+' ' Text
+'area' Text
+' ' Text
+'borders' Text
+',' Text
+' ' Text
+'[[' Punctuation
+'INSEE' Name.Tag
+']]' Punctuation
+' ' Text
+'considers' Text
+' ' Text
+'that' Text
+' ' Text
+'[[' Punctuation
+'Nice' Name.Tag
+']]' Punctuation
+' ' Text
+'is' Text
+' ' Text
+'a' Text
+' ' Text
+'metropolitan' Text
+' ' Text
+'area' Text
+' ' Text
+'separate' Text
+' ' Text
+'from' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Cannes' Name.Tag
+']]' Punctuation
+'-' Text
+'[[' Punctuation
+'Antibes' Name.Tag
+']]' Punctuation
+' ' Text
+'metropolitan' Text
+' ' Text
+'area' Text
+';' Text
+' ' Text
+'these' Text
+' ' Text
+'two' Text
+' ' Text
+'combined' Text
+' ' Text
+'would' Text
+' ' Text
+'have' Text
+' ' Text
+'a' Text
+' ' Text
+'population' Text
+' ' Text
+'of' Text
+' ' Text
+'1' Text
+',' Text
+'008' Text
+',' Text
+'296' Text
+',' Text
+' ' Text
+'as' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'2019' Text
+' ' Text
+'census' Text
+')' Text
+'.' Text
+' ' Text
+'[[' Punctuation
+'Rural flight' Name.Tag
+']]' Punctuation
+' ' Text
+'was' Text
+' ' Text
+'a' Text
+' ' Text
+'perennial' Text
+' ' Text
+'political' Text
+' ' Text
+'issue' Text
+' ' Text
+'throughout' Text
+' ' Text
+'most' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'20th' Text
+' ' Text
+'century' Text
+'.' Text
+'\n' Text
+
+'{{' Punctuation
+'Largest' Name.Tag
+' ' Name.Tag
+'metropolitan' Name.Tag
+' ' Name.Tag
+'areas' Name.Tag
+' ' Name.Tag
+'of' Name.Tag
+' ' Name.Tag
+'France' Name.Tag
+'}}' Punctuation
+'\n' Text
+
+'\n' Text
+
+'===' Generic.Subheading
+'Language' Generic.Subheading
+'===' Generic.Subheading
+'\n' Text.Whitespace
+
+'{{' Punctuation
+'Main' Name.Tag
+'|' Punctuation
+'French' Text
+' ' Text
+'language' Text
+'|' Punctuation
+'Languages' Text
+' ' Text
+'of' Text
+' ' Text
+'France' Text
+'|' Punctuation
+'Organisation' Text
+' ' Text
+'internationale' Text
+' ' Text
+'de' Text
+' ' Text
+'la' Text
+' ' Text
+'Francophonie' Text
+'}}' Punctuation
+'\n' Text
+
+'[[' Punctuation
+'File' Name.Namespace
+':' Punctuation
+'New-Map-Francophone World.svg' Name.Tag
+'|' Punctuation
+'thumb' Text
+'|' Punctuation
+'upright' Name.Attribute
+'=' Operator
+'1' Text
+'.' Text
+'5' Text
+'|' Punctuation
+'alt' Name.Attribute
+'=' Operator
+'world' Text
+' ' Text
+'map' Text
+' ' Text
+'of' Text
+' ' Text
+'French' Text
+' ' Text
+'speaking' Text
+' ' Text
+'countries' Text
+'|' Punctuation
+'Map' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'List of territorial entities where French is an official language' Name.Tag
+'|' Punctuation
+'Francophone' Text
+']]' Punctuation
+' ' Text
+'world' Text
+':' Text
+'\n' Text
+
+'{{' Punctuation
+'Legend' Name.Tag
+'|' Punctuation
+'#' Text
+'0c5eb1' Text
+'|' Punctuation
+'Native' Text
+' ' Text
+'language' Text
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'Legend' Name.Tag
+'|' Punctuation
+'#' Text
+'0080ff' Text
+'|' Punctuation
+'Administrative' Text
+' ' Text
+'language' Text
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'Legend' Name.Tag
+'|' Punctuation
+'#' Text
+'9fceff' Text
+'|' Punctuation
+'Secondary' Text
+' ' Text
+'or' Text
+' ' Text
+'non' Text
+'-' Text
+'official' Text
+' ' Text
+'language' Text
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'Legend' Name.Tag
+'|' Punctuation
+'#' Text
+'00ff00' Text
+'|' Punctuation
+'Francophone' Text
+' ' Text
+'minorities' Text
+'}}' Punctuation
+']]' Punctuation
+'\n' Text
+
+'The' Text
+' ' Text
+'official' Text
+' ' Text
+'language' Text
+' ' Text
+'of' Text
+' ' Text
+'France' Text
+' ' Text
+'is' Text
+' ' Text
+'French' Text
+',' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'In' Name.Tag
+' ' Name.Tag
+'lang' Name.Tag
+'|' Punctuation
+'fr' Text
+'}}' Punctuation
+' ' Text
+'[' Punctuation
+'https://web.archive.org/web/20110604145028/http://www.legifrance.gouv.fr/html/constitution/constitution2.htm' Name.Label
+' ' Text.Whitespace
+'La' Text
+' ' Text
+'Constitution' Text
+'-' Text
+' ' Text
+'La' Text
+' ' Text
+'Constitution' Text
+' ' Text
+'du' Text
+' ' Text
+'4' Text
+' ' Text
+'Octobre' Text
+' ' Text
+'1958' Text
+']' Punctuation
+'&nbsp;' Name.Entity
+'–' Text
+' ' Text
+'Légifrance' Text
+'.' Text
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'a' Text
+' ' Text
+'[[' Punctuation
+'Romance language' Name.Tag
+']]' Punctuation
+' ' Text
+'derived' Text
+' ' Text
+'from' Text
+' ' Text
+'[[' Punctuation
+'Latin' Name.Tag
+']]' Punctuation
+'.' Text
+' ' Text
+'Since' Text
+' ' Text
+'1635' Text
+',' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Académie française' Name.Tag
+']]' Punctuation
+' ' Text
+'has' Text
+' ' Text
+'been' Text
+' ' Text
+'France' Text
+"'" Text
+'s' Text
+' ' Text
+'official' Text
+' ' Text
+'authority' Text
+' ' Text
+'on' Text
+' ' Text
+'the' Text
+' ' Text
+'French' Text
+' ' Text
+'language' Text
+',' Text
+' ' Text
+'although' Text
+' ' Text
+'its' Text
+' ' Text
+'recommendations' Text
+' ' Text
+'carry' Text
+' ' Text
+'no' Text
+' ' Text
+'legal' Text
+' ' Text
+'weight' Text
+'.' Text
+' ' Text
+'There' Text
+' ' Text
+'are' Text
+' ' Text
+'also' Text
+' ' Text
+'regional' Text
+' ' Text
+'languages' Text
+' ' Text
+'spoken' Text
+' ' Text
+'in' Text
+' ' Text
+'France' Text
+',' Text
+' ' Text
+'such' Text
+' ' Text
+'as' Text
+' ' Text
+'[[' Punctuation
+'Occitan language' Name.Tag
+'|' Punctuation
+'Occitan' Text
+']]' Punctuation
+',' Text
+' ' Text
+'[[' Punctuation
+'Breton language' Name.Tag
+'|' Punctuation
+'Breton' Text
+']]' Punctuation
+',' Text
+' ' Text
+'[[' Punctuation
+'Catalan language' Name.Tag
+'|' Punctuation
+'Catalan' Text
+']]' Punctuation
+',' Text
+' ' Text
+'[[' Punctuation
+'French Flemish' Name.Tag
+'|' Punctuation
+'Flemish' Text
+']]' Punctuation
+' ' Text
+'(' Text
+'[[' Punctuation
+'Dutch language' Name.Tag
+'|' Punctuation
+'Dutch' Text
+']]' Punctuation
+' ' Text
+'dialect' Text
+')' Text
+',' Text
+' ' Text
+'[[' Punctuation
+'Alsatian dialect' Name.Tag
+'|' Punctuation
+'Alsatian' Text
+']]' Punctuation
+' ' Text
+'(' Text
+'German' Text
+' ' Text
+'dialect' Text
+')' Text
+',' Text
+' ' Text
+'[[' Punctuation
+'Basque language' Name.Tag
+'|' Punctuation
+'Basque' Text
+']]' Punctuation
+',' Text
+' ' Text
+'and' Text
+' ' Text
+'[[' Punctuation
+'Corsican language' Name.Tag
+'|' Punctuation
+'Corsican' Text
+']]' Punctuation
+' ' Text
+'(' Text
+'Italian' Text
+' ' Text
+'dialect' Text
+')' Text
+'.' Text
+' ' Text
+'Italian' Text
+' ' Text
+'was' Text
+' ' Text
+'the' Text
+' ' Text
+'official' Text
+' ' Text
+'language' Text
+' ' Text
+'of' Text
+' ' Text
+'Corsica' Text
+' ' Text
+'until' Text
+' ' Text
+'9' Text
+' ' Text
+'May' Text
+' ' Text
+'1859' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'Abalain' Text
+',' Text
+' ' Text
+'Hervé' Text
+',' Text
+' ' Text
+'(' Text
+'2007' Text
+')' Text
+' ' Text
+"''" Generic.Emph
+'Le' Generic.Emph
+' ' Generic.Emph
+'français' Generic.Emph
+' ' Generic.Emph
+'et' Generic.Emph
+' ' Generic.Emph
+'les' Generic.Emph
+' ' Generic.Emph
+'langues' Generic.Emph
+' ' Generic.Emph
+'historiques' Generic.Emph
+' ' Generic.Emph
+'de' Generic.Emph
+' ' Generic.Emph
+'la' Generic.Emph
+' ' Generic.Emph
+'France' Generic.Emph
+"''" Generic.Emph
+',' Text
+' ' Text
+'Éditions' Text
+' ' Text
+'Jean' Text
+'-' Text
+'Paul' Text
+' ' Text
+'Gisserot' Text
+',' Text
+' ' Text
+'p' Text
+'.' Text
+' ' Text
+'113' Text
+'.' Text
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'\n' Text
+
+'\n' Text
+
+'The' Text
+' ' Text
+'Government' Text
+' ' Text
+'of' Text
+' ' Text
+'France' Text
+' ' Text
+'does' Text
+' ' Text
+'not' Text
+' ' Text
+'regulate' Text
+' ' Text
+'the' Text
+' ' Text
+'choice' Text
+' ' Text
+'of' Text
+' ' Text
+'language' Text
+' ' Text
+'in' Text
+' ' Text
+'publications' Text
+' ' Text
+'by' Text
+' ' Text
+'individuals' Text
+',' Text
+' ' Text
+'but' Text
+' ' Text
+'the' Text
+' ' Text
+'use' Text
+' ' Text
+'of' Text
+' ' Text
+'French' Text
+' ' Text
+'is' Text
+' ' Text
+'required' Text
+' ' Text
+'by' Text
+' ' Text
+'law' Text
+' ' Text
+'in' Text
+' ' Text
+'commercial' Text
+' ' Text
+'and' Text
+' ' Text
+'workplace' Text
+' ' Text
+'communications' Text
+'.' Text
+' ' Text
+'In' Text
+' ' Text
+'addition' Text
+' ' Text
+'to' Text
+' ' Text
+'mandating' Text
+' ' Text
+'the' Text
+' ' Text
+'use' Text
+' ' Text
+'of' Text
+' ' Text
+'French' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'territory' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'Republic' Text
+',' Text
+' ' Text
+'the' Text
+' ' Text
+'French' Text
+' ' Text
+'government' Text
+' ' Text
+'tries' Text
+' ' Text
+'to' Text
+' ' Text
+'promote' Text
+' ' Text
+'French' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'European' Text
+' ' Text
+'Union' Text
+' ' Text
+'and' Text
+' ' Text
+'globally' Text
+' ' Text
+'through' Text
+' ' Text
+'institutions' Text
+' ' Text
+'such' Text
+' ' Text
+'as' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Organisation internationale de la Francophonie' Name.Tag
+']]' Punctuation
+'.' Text
+' ' Text
+'The' Text
+' ' Text
+'perceived' Text
+' ' Text
+'threat' Text
+' ' Text
+'from' Text
+' ' Text
+'[[' Punctuation
+'anglicisation' Name.Tag
+']]' Punctuation
+' ' Text
+'has' Text
+' ' Text
+'prompted' Text
+' ' Text
+'efforts' Text
+' ' Text
+'to' Text
+' ' Text
+'safeguard' Text
+' ' Text
+'the' Text
+' ' Text
+'position' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'French' Text
+' ' Text
+'language' Text
+' ' Text
+'in' Text
+' ' Text
+'France' Text
+'.' Text
+' ' Text
+'Besides' Text
+' ' Text
+'French' Text
+',' Text
+' ' Text
+'there' Text
+' ' Text
+'exist' Text
+' ' Text
+'77' Text
+' ' Text
+'vernacular' Text
+' ' Text
+'minority' Text
+' ' Text
+'languages' Text
+' ' Text
+'of' Text
+' ' Text
+'France' Text
+',' Text
+' ' Text
+'eight' Text
+' ' Text
+'spoken' Text
+' ' Text
+'in' Text
+' ' Text
+'French' Text
+' ' Text
+'metropolitan' Text
+' ' Text
+'territory' Text
+' ' Text
+'and' Text
+' ' Text
+'69' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'French' Text
+' ' Text
+'[[' Punctuation
+'Overseas departments and territories of France' Name.Tag
+'|' Punctuation
+'overseas' Text
+' ' Text
+'territories' Text
+']]' Punctuation
+'.' Text
+'\n' Text
+
+'\n' Text
+
+'From' Text
+' ' Text
+'the' Text
+' ' Text
+'17th' Text
+' ' Text
+'to' Text
+' ' Text
+'the' Text
+' ' Text
+'mid' Text
+'-' Text
+'20th' Text
+' ' Text
+'century' Text
+',' Text
+' ' Text
+'French' Text
+' ' Text
+'served' Text
+' ' Text
+'as' Text
+' ' Text
+'the' Text
+' ' Text
+'pre' Text
+'-' Text
+'eminent' Text
+' ' Text
+'international' Text
+' ' Text
+'language' Text
+' ' Text
+'of' Text
+' ' Text
+'diplomacy' Text
+' ' Text
+'and' Text
+' ' Text
+'international' Text
+' ' Text
+'affairs' Text
+' ' Text
+'as' Text
+' ' Text
+'well' Text
+' ' Text
+'as' Text
+' ' Text
+'a' Text
+' ' Text
+'[[' Punctuation
+'lingua franca' Name.Tag
+']]' Punctuation
+' ' Text
+'among' Text
+' ' Text
+'the' Text
+' ' Text
+'educated' Text
+' ' Text
+'classes' Text
+' ' Text
+'of' Text
+' ' Text
+'Europe' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+' ' Text.Whitespace
+'name' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+'exception' Literal.String.Double
+'"' Literal.String.Double
+'>' Punctuation
+'Joffre' Text
+' ' Text
+'Agnes' Text
+' ' Text
+'[' Punctuation
+'http://www.franceinlondon.com/en-Article-335-Is-the-French-obsession-with-cultural-exception-declining-Culture--london-language.html' Name.Label
+' ' Text.Whitespace
+'ls' Text
+' ' Text
+'the' Text
+' ' Text
+'French' Text
+' ' Text
+'obsession' Text
+' ' Text
+'with' Text
+' ' Text
+'"' Text
+'cultural' Text
+' ' Text
+'exception' Text
+'"' Text
+' ' Text
+'declining' Text
+'?' Text
+']' Punctuation
+' ' Text
+'{{' Punctuation
+'Webarchive' Name.Tag
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'web' Text
+'.' Text
+'archive' Text
+'.' Text
+'org' Text
+'/' Text
+'web' Text
+'/' Text
+'20111017023619' Text
+'/' Text
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'franceinlondon' Text
+'.' Text
+'com' Text
+'/' Text
+'en' Text
+'-' Text
+'Article' Text
+'-' Text
+'335' Text
+'-' Text
+'Is' Text
+'-' Text
+'the' Text
+'-' Text
+'French' Text
+'-' Text
+'obsession' Text
+'-' Text
+'with' Text
+'-' Text
+'cultural' Text
+'-' Text
+'exception' Text
+'-' Text
+'declining' Text
+'-' Text
+'Culture' Text
+'-' Text
+'-' Text
+'london' Text
+'-' Text
+'language' Text
+'.' Text
+'html' Text
+'|' Punctuation
+'date' Name.Label
+'=' Operator
+'17' Text
+' ' Text
+'October' Text
+' ' Text
+'2011' Text
+'}}' Punctuation
+'.' Text
+' ' Text
+'France' Text
+' ' Text
+'in' Text
+' ' Text
+'London' Text
+'.' Text
+' ' Text
+'5' Text
+' ' Text
+'October' Text
+' ' Text
+'2008' Text
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'The' Text
+' ' Text
+'dominant' Text
+' ' Text
+'position' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'French' Text
+' ' Text
+'language' Text
+' ' Text
+'in' Text
+' ' Text
+'international' Text
+' ' Text
+'affairs' Text
+' ' Text
+'was' Text
+' ' Text
+'overtaken' Text
+' ' Text
+'by' Text
+' ' Text
+'English' Text
+' ' Text
+'since' Text
+' ' Text
+'the' Text
+' ' Text
+'emergence' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'United' Text
+' ' Text
+'States' Text
+' ' Text
+'as' Text
+' ' Text
+'a' Text
+' ' Text
+'major' Text
+' ' Text
+'power' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+' ' Text.Whitespace
+'name' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+'Language' Literal.String.Double
+' ' Literal.String.Double
+'and' Literal.String.Double
+' ' Literal.String.Double
+'Diplomacy' Literal.String.Double
+'"' Literal.String.Double
+'/>' Punctuation
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Language' Text
+' ' Text
+'and' Text
+' ' Text
+'Diplomacy' Text
+'&nbsp;' Name.Entity
+'–' Text
+' ' Text
+'Translation' Text
+' ' Text
+'and' Text
+' ' Text
+'Interpretation' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'diplomacy' Text
+'.' Text
+'edu' Text
+'/' Text
+'language' Text
+'/' Text
+'Translation' Text
+'/' Text
+'default' Text
+'.' Text
+'htm' Text
+' ' Text
+'|' Punctuation
+'archive-url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'web' Text
+'.' Text
+'archive' Text
+'.' Text
+'org' Text
+'/' Text
+'web' Text
+'/' Text
+'20110719183516' Text
+'/' Text
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'diplomacy' Text
+'.' Text
+'edu' Text
+'/' Text
+'language' Text
+'/' Text
+'Translation' Text
+'/' Text
+'default' Text
+'.' Text
+'htm' Text
+' ' Text
+'|' Punctuation
+'archive-date' Name.Label
+'=' Operator
+'19' Text
+' ' Text
+'July' Text
+' ' Text
+'2011' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'10' Text
+' ' Text
+'September' Text
+' ' Text
+'2010' Text
+' ' Text
+'|' Punctuation
+'publisher' Name.Label
+'=' Operator
+'Diplomacy' Text
+'.' Text
+'edu' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Why' Text
+' ' Text
+'Is' Text
+' ' Text
+'French' Text
+' ' Text
+'Considered' Text
+' ' Text
+'the' Text
+' ' Text
+'Language' Text
+' ' Text
+'of' Text
+' ' Text
+'Diplomacy' Text
+'?' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'legallanguage' Text
+'.' Text
+'com' Text
+'/' Text
+'legal' Text
+'-' Text
+'articles' Text
+'/' Text
+'language' Text
+'-' Text
+'of' Text
+'-' Text
+'diplomacy' Text
+'/' Text
+' ' Text
+'|' Punctuation
+'url-status' Name.Label
+'=' Operator
+'dead' Text
+' ' Text
+'|' Punctuation
+'archive-url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'web' Text
+'.' Text
+'archive' Text
+'.' Text
+'org' Text
+'/' Text
+'web' Text
+'/' Text
+'20101230232848' Text
+'/' Text
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'legallanguage' Text
+'.' Text
+'com' Text
+'/' Text
+'legal' Text
+'-' Text
+'articles' Text
+'/' Text
+'language' Text
+'-' Text
+'of' Text
+'-' Text
+'diplomacy' Text
+'/' Text
+' ' Text
+'|' Punctuation
+'archive-date' Name.Label
+'=' Operator
+'30' Text
+' ' Text
+'December' Text
+' ' Text
+'2010' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'23' Text
+' ' Text
+'January' Text
+' ' Text
+'2011' Text
+' ' Text
+'|' Punctuation
+'publisher' Name.Label
+'=' Operator
+'Legallanguage' Text
+'.' Text
+'com' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'\n' Text
+
+'\n' Text
+
+'For' Text
+' ' Text
+'most' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'time' Text
+' ' Text
+'in' Text
+' ' Text
+'which' Text
+' ' Text
+'French' Text
+' ' Text
+'served' Text
+' ' Text
+'as' Text
+' ' Text
+'an' Text
+' ' Text
+'international' Text
+' ' Text
+'lingua' Text
+' ' Text
+'franca' Text
+',' Text
+' ' Text
+'it' Text
+' ' Text
+'was' Text
+' ' Text
+'not' Text
+' ' Text
+'the' Text
+' ' Text
+'native' Text
+' ' Text
+'language' Text
+' ' Text
+'of' Text
+' ' Text
+'most' Text
+' ' Text
+'Frenchmen' Text
+':' Text
+' ' Text
+'a' Text
+' ' Text
+'report' Text
+' ' Text
+'in' Text
+' ' Text
+'1794' Text
+' ' Text
+'conducted' Text
+' ' Text
+'by' Text
+' ' Text
+'[[' Punctuation
+'Henri Grégoire' Name.Tag
+']]' Punctuation
+' ' Text
+'found' Text
+' ' Text
+'that' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'country' Text
+"'" Text
+'s' Text
+' ' Text
+'25' Text
+'&nbsp;' Name.Entity
+'million' Text
+' ' Text
+'people' Text
+',' Text
+' ' Text
+'only' Text
+' ' Text
+'three' Text
+' ' Text
+'million' Text
+' ' Text
+'spoke' Text
+' ' Text
+'French' Text
+' ' Text
+'natively' Text
+';' Text
+' ' Text
+'the' Text
+' ' Text
+'rest' Text
+' ' Text
+'spoke' Text
+' ' Text
+'one' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'country' Text
+"'" Text
+'s' Text
+' ' Text
+'many' Text
+' ' Text
+'regional' Text
+' ' Text
+'languages' Text
+',' Text
+' ' Text
+'such' Text
+' ' Text
+'as' Text
+' ' Text
+'[[' Punctuation
+'Alsatian language' Name.Tag
+'|' Punctuation
+'Alsatian' Text
+']]' Punctuation
+',' Text
+' ' Text
+'[[' Punctuation
+'Breton language' Name.Tag
+'|' Punctuation
+'Breton' Text
+']]' Punctuation
+' ' Text
+'or' Text
+' ' Text
+'[[' Punctuation
+'Occitan language' Name.Tag
+'|' Punctuation
+'Occitan' Text
+']]' Punctuation
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Rapport' Text
+' ' Text
+'Grégoire' Text
+' ' Text
+'an' Text
+' ' Text
+'II' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'languefrancaise' Text
+'.' Text
+'net' Text
+'/' Text
+'dossiers' Text
+'/' Text
+'dossiers' Text
+'.' Text
+'php' Text
+'?' Text
+'id_dossier' Text
+'=' Text
+'66' Text
+' ' Text
+'|' Punctuation
+'url-status' Name.Label
+'=' Operator
+'dead' Text
+' ' Text
+'|' Punctuation
+'archive-url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'web' Text
+'.' Text
+'archive' Text
+'.' Text
+'org' Text
+'/' Text
+'web' Text
+'/' Text
+'20080405022802' Text
+'/' Text
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'languefrancaise' Text
+'.' Text
+'net' Text
+'/' Text
+'dossiers' Text
+'/' Text
+'dossiers' Text
+'.' Text
+'php' Text
+'?' Text
+'id_dossier' Text
+'=' Text
+'66' Text
+' ' Text
+'|' Punctuation
+'archive-date' Name.Label
+'=' Operator
+'5' Text
+' ' Text
+'April' Text
+' ' Text
+'2008' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'Through' Text
+' ' Text
+'the' Text
+' ' Text
+'expansion' Text
+' ' Text
+'of' Text
+' ' Text
+'public' Text
+' ' Text
+'education' Text
+',' Text
+' ' Text
+'in' Text
+' ' Text
+'which' Text
+' ' Text
+'French' Text
+' ' Text
+'was' Text
+' ' Text
+'the' Text
+' ' Text
+'sole' Text
+' ' Text
+'language' Text
+' ' Text
+'of' Text
+' ' Text
+'instruction' Text
+',' Text
+' ' Text
+'as' Text
+' ' Text
+'well' Text
+' ' Text
+'as' Text
+' ' Text
+'other' Text
+' ' Text
+'factors' Text
+' ' Text
+'such' Text
+' ' Text
+'as' Text
+' ' Text
+'increased' Text
+' ' Text
+'urbanisation' Text
+' ' Text
+'and' Text
+' ' Text
+'the' Text
+' ' Text
+'rise' Text
+' ' Text
+'of' Text
+' ' Text
+'mass' Text
+' ' Text
+'communication' Text
+',' Text
+' ' Text
+'French' Text
+' ' Text
+'gradually' Text
+' ' Text
+'came' Text
+' ' Text
+'to' Text
+' ' Text
+'be' Text
+' ' Text
+'adopted' Text
+' ' Text
+'by' Text
+' ' Text
+'virtually' Text
+' ' Text
+'the' Text
+' ' Text
+'entire' Text
+' ' Text
+'population' Text
+',' Text
+' ' Text
+'a' Text
+' ' Text
+'process' Text
+' ' Text
+'not' Text
+' ' Text
+'completed' Text
+' ' Text
+'until' Text
+' ' Text
+'the' Text
+' ' Text
+'20th' Text
+' ' Text
+'century' Text
+'.' Text
+'\n' Text
+
+'\n' Text
+
+'As' Text
+' ' Text
+'a' Text
+' ' Text
+'result' Text
+' ' Text
+'of' Text
+' ' Text
+'France' Text
+"'" Text
+'s' Text
+' ' Text
+'extensive' Text
+' ' Text
+'[[' Punctuation
+'French colonial empire' Name.Tag
+'|' Punctuation
+'colonial' Text
+' ' Text
+'ambitions' Text
+']]' Punctuation
+' ' Text
+'between' Text
+' ' Text
+'the' Text
+' ' Text
+'17th' Text
+' ' Text
+'and' Text
+' ' Text
+'20th' Text
+' ' Text
+'centuries' Text
+',' Text
+' ' Text
+'French' Text
+' ' Text
+'was' Text
+' ' Text
+'introduced' Text
+' ' Text
+'to' Text
+' ' Text
+'the' Text
+' ' Text
+'Americas' Text
+',' Text
+' ' Text
+'Africa' Text
+',' Text
+' ' Text
+'Polynesia' Text
+',' Text
+' ' Text
+'South' Text
+'-' Text
+'East' Text
+' ' Text
+'Asia' Text
+',' Text
+' ' Text
+'as' Text
+' ' Text
+'well' Text
+' ' Text
+'as' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Caribbean' Name.Tag
+']]' Punctuation
+'.' Text
+' ' Text
+'French' Text
+' ' Text
+'is' Text
+' ' Text
+'the' Text
+' ' Text
+'second' Text
+' ' Text
+'most' Text
+' ' Text
+'studied' Text
+' ' Text
+'foreign' Text
+' ' Text
+'language' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'world' Text
+' ' Text
+'after' Text
+' ' Text
+'English' Text
+',' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'The' Text
+' ' Text
+'International' Text
+' ' Text
+'Education' Text
+' ' Text
+'Site' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'intstudy' Text
+'.' Text
+'com' Text
+'/' Text
+'articles' Text
+'/' Text
+'practicalfrench' Text
+'.' Text
+'htm' Text
+' ' Text
+'|' Punctuation
+'url-status' Name.Label
+'=' Operator
+'dead' Text
+' ' Text
+'|' Punctuation
+'archive-url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'web' Text
+'.' Text
+'archive' Text
+'.' Text
+'org' Text
+'/' Text
+'web' Text
+'/' Text
+'20110227075911' Text
+'/' Text
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'intstudy' Text
+'.' Text
+'com' Text
+'/' Text
+'articles' Text
+'/' Text
+'practicalfrench' Text
+'.' Text
+'htm' Text
+' ' Text
+'|' Punctuation
+'archive-date' Name.Label
+'=' Operator
+'27' Text
+' ' Text
+'February' Text
+' ' Text
+'2011' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'23' Text
+' ' Text
+'January' Text
+' ' Text
+'2011' Text
+' ' Text
+'|' Punctuation
+'publisher' Name.Label
+'=' Operator
+'Intstudy' Text
+'.' Text
+'com' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'and' Text
+' ' Text
+'is' Text
+' ' Text
+'a' Text
+' ' Text
+'lingua' Text
+' ' Text
+'franca' Text
+' ' Text
+'in' Text
+' ' Text
+'some' Text
+' ' Text
+'regions' Text
+',' Text
+' ' Text
+'notably' Text
+' ' Text
+'in' Text
+' ' Text
+'Africa' Text
+'.' Text
+' ' Text
+'The' Text
+' ' Text
+'legacy' Text
+' ' Text
+'of' Text
+' ' Text
+'French' Text
+' ' Text
+'as' Text
+' ' Text
+'a' Text
+' ' Text
+'living' Text
+' ' Text
+'language' Text
+' ' Text
+'outside' Text
+' ' Text
+'Europe' Text
+' ' Text
+'is' Text
+' ' Text
+'mixed' Text
+':' Text
+' ' Text
+'it' Text
+' ' Text
+'is' Text
+' ' Text
+'nearly' Text
+' ' Text
+'extinct' Text
+' ' Text
+'in' Text
+' ' Text
+'some' Text
+' ' Text
+'former' Text
+' ' Text
+'French' Text
+' ' Text
+'colonies' Text
+' ' Text
+'(' Text
+'The' Text
+' ' Text
+'Levant' Text
+',' Text
+' ' Text
+'South' Text
+' ' Text
+'and' Text
+' ' Text
+'Southeast' Text
+' ' Text
+'Asia' Text
+')' Text
+',' Text
+' ' Text
+'while' Text
+' ' Text
+'creoles' Text
+' ' Text
+'and' Text
+' ' Text
+'pidgins' Text
+' ' Text
+'based' Text
+' ' Text
+'on' Text
+' ' Text
+'French' Text
+' ' Text
+'have' Text
+' ' Text
+'emerged' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'French' Text
+' ' Text
+'departments' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'West Indies' Name.Tag
+']]' Punctuation
+' ' Text
+'and' Text
+' ' Text
+'the' Text
+' ' Text
+'South' Text
+' ' Text
+'Pacific' Text
+' ' Text
+'(' Text
+'[[' Punctuation
+'French Polynesia' Name.Tag
+']]' Punctuation
+')' Text
+'.' Text
+' ' Text
+'On' Text
+' ' Text
+'the' Text
+' ' Text
+'other' Text
+' ' Text
+'hand' Text
+',' Text
+' ' Text
+'many' Text
+' ' Text
+'former' Text
+' ' Text
+'French' Text
+' ' Text
+'colonies' Text
+' ' Text
+'have' Text
+' ' Text
+'adopted' Text
+' ' Text
+'French' Text
+' ' Text
+'as' Text
+' ' Text
+'an' Text
+' ' Text
+'official' Text
+' ' Text
+'language' Text
+',' Text
+' ' Text
+'and' Text
+' ' Text
+'the' Text
+' ' Text
+'total' Text
+' ' Text
+'number' Text
+' ' Text
+'of' Text
+' ' Text
+'French' Text
+' ' Text
+'speakers' Text
+' ' Text
+'is' Text
+' ' Text
+'increasing' Text
+',' Text
+' ' Text
+'especially' Text
+' ' Text
+'in' Text
+' ' Text
+'Africa' Text
+'.' Text
+'\n' Text
+
+'\n' Text
+
+'It' Text
+' ' Text
+'is' Text
+' ' Text
+'estimated' Text
+' ' Text
+'that' Text
+' ' Text
+'between' Text
+' ' Text
+'300' Text
+'&nbsp;' Name.Entity
+'million' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'French' Text
+':' Text
+' ' Text
+'one' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'world' Text
+"'" Text
+'s' Text
+' ' Text
+'main' Text
+' ' Text
+'languages' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'about' Text
+'-' Text
+'france' Text
+'.' Text
+'com' Text
+'/' Text
+'french' Text
+'/' Text
+'french' Text
+'-' Text
+'language' Text
+'.' Text
+'htm' Text
+' ' Text
+'|' Punctuation
+'url-status' Name.Label
+'=' Operator
+'dead' Text
+' ' Text
+'|' Punctuation
+'archive-url' Name.Label
+'=' Operator
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'arquivo' Text
+'.' Text
+'pt' Text
+'/' Text
+'wayback' Text
+'/' Text
+'20160516223437' Text
+'/' Text
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'about' Text
+'-' Text
+'france' Text
+'.' Text
+'com' Text
+'/' Text
+'french' Text
+'/' Text
+'french' Text
+'-' Text
+'language' Text
+'.' Text
+'htm' Text
+' ' Text
+'|' Punctuation
+'archive-date' Name.Label
+'=' Operator
+'16' Text
+' ' Text
+'May' Text
+' ' Text
+'2016' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'21' Text
+' ' Text
+'July' Text
+' ' Text
+'2011' Text
+' ' Text
+'|' Punctuation
+'publisher' Name.Label
+'=' Operator
+'About' Text
+'-' Text
+'france' Text
+'.' Text
+'com' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'and' Text
+' ' Text
+'500' Text
+'&nbsp;' Name.Entity
+'million' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'In' Name.Tag
+' ' Name.Tag
+'lang' Name.Tag
+'|' Punctuation
+'fr' Text
+'}}' Punctuation
+' ' Text
+'[' Punctuation
+'http://www.tlfq.ulaval.ca/axl/francophonie/francophonie.htm' Name.Label
+' ' Text.Whitespace
+'Qu' Text
+"'" Text
+'est' Text
+'-' Text
+'ce' Text
+' ' Text
+'que' Text
+' ' Text
+'la' Text
+' ' Text
+'Francophonie' Text
+' ' Text
+'?' Text
+']' Punctuation
+' ' Text
+'{{' Punctuation
+'Webarchive' Name.Tag
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'web' Text
+'.' Text
+'archive' Text
+'.' Text
+'org' Text
+'/' Text
+'web' Text
+'/' Text
+'20110623113030' Text
+'/' Text
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'tlfq' Text
+'.' Text
+'ulaval' Text
+'.' Text
+'ca' Text
+'/' Text
+'axl' Text
+'/' Text
+'francophonie' Text
+'/' Text
+'francophonie' Text
+'.' Text
+'htm' Text
+'|' Punctuation
+'date' Name.Label
+'=' Operator
+'23' Text
+' ' Text
+'June' Text
+' ' Text
+'2011' Text
+'}}' Punctuation
+'&nbsp;' Name.Entity
+'–' Text
+' ' Text
+'[[' Punctuation
+'Organisation internationale de la Francophonie' Name.Tag
+']]' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'people' Text
+' ' Text
+'worldwide' Text
+' ' Text
+'can' Text
+' ' Text
+'speak' Text
+' ' Text
+'French' Text
+',' Text
+' ' Text
+'either' Text
+' ' Text
+'as' Text
+' ' Text
+'a' Text
+' ' Text
+'mother' Text
+' ' Text
+'tongue' Text
+' ' Text
+'or' Text
+' ' Text
+'as' Text
+' ' Text
+'a' Text
+' ' Text
+'second' Text
+' ' Text
+'language' Text
+'.' Text
+'\n' Text
+
+'\n' Text
+
+'According' Text
+' ' Text
+'to' Text
+' ' Text
+'the' Text
+' ' Text
+'2007' Text
+' ' Text
+'Adult' Text
+' ' Text
+'Education' Text
+' ' Text
+'survey' Text
+',' Text
+' ' Text
+'part' Text
+' ' Text
+'of' Text
+' ' Text
+'a' Text
+' ' Text
+'project' Text
+' ' Text
+'by' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'European Union' Name.Tag
+']]' Punctuation
+' ' Text
+'and' Text
+' ' Text
+'carried' Text
+' ' Text
+'out' Text
+' ' Text
+'in' Text
+' ' Text
+'France' Text
+' ' Text
+'by' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'INSEE' Name.Tag
+']]' Punctuation
+' ' Text
+'and' Text
+' ' Text
+'based' Text
+' ' Text
+'on' Text
+' ' Text
+'a' Text
+' ' Text
+'sample' Text
+' ' Text
+'of' Text
+' ' Text
+'15' Text
+',' Text
+'350' Text
+' ' Text
+'persons' Text
+',' Text
+' ' Text
+'French' Text
+' ' Text
+'was' Text
+' ' Text
+'the' Text
+' ' Text
+'native' Text
+' ' Text
+'language' Text
+' ' Text
+'of' Text
+' ' Text
+'87' Text
+'.' Text
+'2' Text
+'%' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'total' Text
+' ' Text
+'population' Text
+',' Text
+' ' Text
+'or' Text
+' ' Text
+'roughly' Text
+' ' Text
+'55' Text
+'.' Text
+'81' Text
+'&nbsp;' Name.Entity
+'million' Text
+' ' Text
+'people' Text
+',' Text
+' ' Text
+'followed' Text
+' ' Text
+'by' Text
+' ' Text
+'Arabic' Text
+' ' Text
+'(' Text
+'3' Text
+'.' Text
+'6' Text
+'%' Text
+',' Text
+' ' Text
+'2' Text
+'.' Text
+'3' Text
+'&nbsp;' Name.Entity
+'million' Text
+')' Text
+',' Text
+' ' Text
+'Portuguese' Text
+' ' Text
+'(' Text
+'1' Text
+'.' Text
+'5' Text
+'%' Text
+',' Text
+' ' Text
+'960' Text
+',' Text
+'000' Text
+')' Text
+',' Text
+' ' Text
+'Spanish' Text
+' ' Text
+'(' Text
+'1' Text
+'.' Text
+'2' Text
+'%' Text
+',' Text
+' ' Text
+'770' Text
+',' Text
+'000' Text
+')' Text
+' ' Text
+'and' Text
+' ' Text
+'Italian' Text
+' ' Text
+'(' Text
+'1' Text
+'.' Text
+'0' Text
+'%' Text
+',' Text
+' ' Text
+'640' Text
+',' Text
+'000' Text
+')' Text
+'.' Text
+' ' Text
+'Native' Text
+' ' Text
+'speakers' Text
+' ' Text
+'of' Text
+' ' Text
+'other' Text
+' ' Text
+'languages' Text
+' ' Text
+'made' Text
+' ' Text
+'up' Text
+' ' Text
+'the' Text
+' ' Text
+'remaining' Text
+' ' Text
+'5' Text
+'.' Text
+'2' Text
+'%' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'population' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'GESIS' Text
+' ' Text
+'–' Text
+' ' Text
+'Leibniz' Text
+' ' Text
+'Institute' Text
+' ' Text
+'for' Text
+' ' Text
+'the' Text
+' ' Text
+'Social' Text
+' ' Text
+'Sciences' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'gesis' Text
+'.' Text
+'org' Text
+'/' Text
+'en' Text
+'/' Text
+'missy' Text
+'/' Text
+'metadata' Text
+'/' Text
+'AES' Text
+'/' Text
+'2007' Text
+'/' Text
+'Cross' Text
+'-' Text
+'sectional' Text
+'/' Text
+'original' Text
+'#' Text
+'2007' Text
+'-' Text
+'Cross' Text
+'-' Text
+'sectional' Text
+'-' Text
+'MOTHTONG1' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'24' Text
+' ' Text
+'April' Text
+' ' Text
+'2018' Text
+' ' Text
+'|' Punctuation
+'website' Name.Label
+'=' Operator
+'gesis' Text
+'.' Text
+'org' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'\n' Text
+
+'\n' Text
+
+'===' Generic.Subheading
+'Religion' Generic.Subheading
+'===' Generic.Subheading
+'\n' Text.Whitespace
+
+'{{' Punctuation
+'Main' Name.Tag
+'|' Punctuation
+'Religion' Text
+' ' Text
+'in' Text
+' ' Text
+'France' Text
+'}}' Punctuation
+'\n' Text
+
+'[[' Punctuation
+'File' Name.Namespace
+':' Punctuation
+'Reims Cathédrale Notre-Dame 5002 (fixed angles).jpg' Name.Tag
+'|' Punctuation
+'thumb' Text
+'|' Punctuation
+'left' Text
+'|' Punctuation
+'180px' Text
+'|' Punctuation
+'alt' Name.Attribute
+'=' Operator
+'Notre' Text
+'-' Text
+'Dame' Text
+' ' Text
+'de' Text
+' ' Text
+'Reims' Text
+' ' Text
+'façade' Text
+',' Text
+' ' Text
+'gothic' Text
+' ' Text
+'stone' Text
+' ' Text
+'cathedral' Text
+' ' Text
+'against' Text
+' ' Text
+'blue' Text
+' ' Text
+'sky' Text
+'|' Punctuation
+'[[' Punctuation
+'Reims Cathedral' Name.Tag
+'|' Punctuation
+'Notre' Text
+'-' Text
+'Dame' Text
+' ' Text
+'de' Text
+' ' Text
+'Reims' Text
+']]' Punctuation
+' ' Text
+'is' Text
+' ' Text
+'the' Text
+' ' Text
+'Roman' Text
+' ' Text
+'Catholic' Text
+' ' Text
+'cathedral' Text
+' ' Text
+'where' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Coronation of the French monarch' Name.Tag
+'|' Punctuation
+'Kings' Text
+' ' Text
+'of' Text
+' ' Text
+'France' Text
+' ' Text
+'were' Text
+' ' Text
+'crowned' Text
+']]' Punctuation
+' ' Text
+'until' Text
+' ' Text
+'1825' Text
+'.' Text
+'{{' Punctuation
+'Efn' Name.Tag
+'-' Name.Tag
+'ur' Name.Tag
+'|' Punctuation
+'The' Text
+' ' Text
+'last' Text
+' ' Text
+"''" Generic.Emph
+'sacre' Generic.Emph
+"''" Generic.Emph
+' ' Text
+'was' Text
+' ' Text
+'that' Text
+' ' Text
+'of' Text
+' ' Text
+'[[' Punctuation
+'Charles X of France' Name.Tag
+'|' Punctuation
+'Charles' Text
+' ' Text
+'X' Text
+']]' Punctuation
+',' Text
+' ' Text
+'29' Text
+' ' Text
+'May' Text
+' ' Text
+'1825' Text
+'.' Text
+'}}' Punctuation
+']]' Punctuation
+'\n' Text
+
+'France' Text
+' ' Text
+'is' Text
+' ' Text
+'a' Text
+' ' Text
+'secular' Text
+' ' Text
+'country' Text
+' ' Text
+'in' Text
+' ' Text
+'which' Text
+' ' Text
+'[[' Punctuation
+'freedom of religion' Name.Tag
+']]' Punctuation
+' ' Text
+'is' Text
+' ' Text
+'a' Text
+' ' Text
+'constitutional' Text
+' ' Text
+'right' Text
+'.' Text
+' ' Text
+'French' Text
+' ' Text
+'religious' Text
+' ' Text
+'policy' Text
+' ' Text
+'is' Text
+' ' Text
+'based' Text
+' ' Text
+'on' Text
+' ' Text
+'the' Text
+' ' Text
+'concept' Text
+' ' Text
+'of' Text
+' ' Text
+"''" Generic.Emph
+'[[' Punctuation
+'laïcité' Name.Tag
+']]' Punctuation
+"''" Generic.Emph
+',' Text
+' ' Text
+'a' Text
+' ' Text
+'strict' Text
+' ' Text
+'[[' Punctuation
+'separation of church and state' Name.Tag
+']]' Punctuation
+' ' Text
+'under' Text
+' ' Text
+'which' Text
+' ' Text
+'public' Text
+' ' Text
+'life' Text
+' ' Text
+'is' Text
+' ' Text
+'kept' Text
+' ' Text
+'completely' Text
+' ' Text
+'secular' Text
+'.' Text
+' ' Text
+'The' Text
+' ' Text
+'exception' Text
+' ' Text
+'to' Text
+' ' Text
+'this' Text
+' ' Text
+'is' Text
+' ' Text
+'the' Text
+' ' Text
+'region' Text
+' ' Text
+'of' Text
+' ' Text
+'[[' Punctuation
+'Alsace' Name.Tag
+']]' Punctuation
+' ' Text
+'and' Text
+' ' Text
+'[[' Punctuation
+'Moselle' Name.Tag
+']]' Punctuation
+' ' Text
+'where' Text
+' ' Text
+'Lutheranism' Text
+',' Text
+' ' Text
+'Catholicism' Text
+' ' Text
+'and' Text
+' ' Text
+'Judaism' Text
+' ' Text
+'enjoy' Text
+' ' Text
+'official' Text
+' ' Text
+'status' Text
+' ' Text
+'and' Text
+' ' Text
+'state' Text
+' ' Text
+'funding' Text
+'.' Text
+'\n' Text
+
+'\n' Text
+
+'According' Text
+' ' Text
+'to' Text
+' ' Text
+'a' Text
+' ' Text
+'survey' Text
+' ' Text
+'held' Text
+' ' Text
+'in' Text
+' ' Text
+'2016' Text
+' ' Text
+'by' Text
+' ' Text
+'[[' Punctuation
+'Institut Montaigne' Name.Tag
+']]' Punctuation
+' ' Text
+'and' Text
+' ' Text
+'[[' Punctuation
+"Institut français d'opinion publique" Name.Tag
+']]' Punctuation
+' ' Text
+'(' Text
+'IFOP' Text
+')' Text
+',' Text
+' ' Text
+'51' Text
+'.' Text
+'1' Text
+'%' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'total' Text
+' ' Text
+'population' Text
+' ' Text
+'of' Text
+' ' Text
+'France' Text
+' ' Text
+'was' Text
+' ' Text
+'Christian' Text
+',' Text
+' ' Text
+'39' Text
+'.' Text
+'6' Text
+'%' Text
+' ' Text
+'had' Text
+' ' Text
+'no' Text
+' ' Text
+'religion' Text
+' ' Text
+'(' Text
+'[[' Punctuation
+'atheism' Name.Tag
+']]' Punctuation
+' ' Text
+'or' Text
+' ' Text
+'agnosticism' Text
+')' Text
+',' Text
+' ' Text
+'5' Text
+'.' Text
+'6' Text
+'%' Text
+' ' Text
+'were' Text
+' ' Text
+'[[' Punctuation
+'Muslim' Name.Tag
+']]' Punctuation
+'s' Text
+',' Text
+' ' Text
+'2' Text
+'.' Text
+'5' Text
+'%' Text
+' ' Text
+'were' Text
+' ' Text
+'followers' Text
+' ' Text
+'of' Text
+' ' Text
+'other' Text
+' ' Text
+'faiths' Text
+',' Text
+' ' Text
+'and' Text
+' ' Text
+'the' Text
+' ' Text
+'remaining' Text
+' ' Text
+'0' Text
+'.' Text
+'4' Text
+'%' Text
+' ' Text
+'were' Text
+' ' Text
+'undecided' Text
+' ' Text
+'about' Text
+' ' Text
+'their' Text
+' ' Text
+'faith' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+' ' Text.Whitespace
+'name' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+'2016Montaigne' Literal.String.Double
+'-' Literal.String.Double
+'IFOP' Literal.String.Double
+'"' Literal.String.Double
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'year' Name.Label
+'=' Operator
+'2016' Text
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'A' Text
+' ' Text
+'French' Text
+' ' Text
+'Islam' Text
+' ' Text
+'is' Text
+' ' Text
+'possible' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'institutmontaigne' Text
+'.' Text
+'org' Text
+'/' Text
+'res' Text
+'/' Text
+'files' Text
+'/' Text
+'publications' Text
+'/' Text
+'a' Text
+'-' Text
+'french' Text
+'-' Text
+'islam' Text
+'-' Text
+'is' Text
+'-' Text
+'possible' Text
+'-' Text
+'report' Text
+'.' Text
+'pdf' Text
+' ' Text
+'|' Punctuation
+'archive-url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'web' Text
+'.' Text
+'archive' Text
+'.' Text
+'org' Text
+'/' Text
+'web' Text
+'/' Text
+'20170915201551' Text
+'/' Text
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'institutmontaigne' Text
+'.' Text
+'org' Text
+'/' Text
+'res' Text
+'/' Text
+'files' Text
+'/' Text
+'publications' Text
+'/' Text
+'a' Text
+'-' Text
+'french' Text
+'-' Text
+'islam' Text
+'-' Text
+'is' Text
+'-' Text
+'possible' Text
+'-' Text
+'report' Text
+'.' Text
+'pdf' Text
+' ' Text
+'|' Punctuation
+'archive-date' Name.Label
+'=' Operator
+'15' Text
+' ' Text
+'September' Text
+' ' Text
+'2017' Text
+' ' Text
+'|' Punctuation
+'publisher' Name.Label
+'=' Operator
+'Institut' Text
+' ' Text
+'Montaigne' Text
+' ' Text
+'|' Punctuation
+'page' Name.Label
+'=' Operator
+'13' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'Estimates' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'number' Text
+' ' Text
+'of' Text
+' ' Text
+'[[' Punctuation
+'Islam in France' Name.Tag
+'|' Punctuation
+'Muslims' Text
+' ' Text
+'in' Text
+' ' Text
+'France' Text
+']]' Punctuation
+' ' Text
+'vary' Text
+' ' Text
+'widely' Text
+'.' Text
+' ' Text
+'In' Text
+' ' Text
+'2003' Text
+',' Text
+' ' Text
+'the' Text
+' ' Text
+'French' Text
+' ' Text
+'Ministry' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'Interior' Text
+' ' Text
+'estimated' Text
+' ' Text
+'the' Text
+' ' Text
+'total' Text
+' ' Text
+'number' Text
+' ' Text
+'of' Text
+' ' Text
+'people' Text
+' ' Text
+'of' Text
+' ' Text
+'Muslim' Text
+' ' Text
+'background' Text
+' ' Text
+'to' Text
+' ' Text
+'be' Text
+' ' Text
+'between' Text
+' ' Text
+'5' Text
+' ' Text
+'and' Text
+' ' Text
+'6' Text
+'&nbsp;' Name.Entity
+'million' Text
+' ' Text
+'(' Text
+'8' Text
+'–' Text
+'10' Text
+'%' Text
+')' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'news' Name.Tag
+' ' Text
+'|' Punctuation
+'last' Name.Label
+'=' Operator
+'Jon' Text
+' ' Text
+'Henley' Text
+' ' Text
+'|' Punctuation
+'date' Name.Label
+'=' Operator
+'22' Text
+' ' Text
+'April' Text
+' ' Text
+'2004' Text
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'France' Text
+' ' Text
+'to' Text
+' ' Text
+'train' Text
+' ' Text
+'imams' Text
+' ' Text
+'in' Text
+' ' Text
+"'" Text
+'French' Text
+' ' Text
+'Islam' Text
+"'" Text
+' ' Text
+'|' Punctuation
+'work' Name.Label
+'=' Operator
+'The' Text
+' ' Text
+'Guardian' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'theguardian' Text
+'.' Text
+'com' Text
+'/' Text
+'world' Text
+'/' Text
+'2004' Text
+'/' Text
+'apr' Text
+'/' Text
+'23' Text
+'/' Text
+'france' Text
+'.' Text
+'islam' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'France' Text
+'&nbsp;' Name.Entity
+'–' Text
+' ' Text
+'International' Text
+' ' Text
+'Religious' Text
+' ' Text
+'Freedom' Text
+' ' Text
+'Report' Text
+' ' Text
+'2005' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'2001' Text
+'-' Text
+'2009' Text
+'.' Text
+'state' Text
+'.' Text
+'gov' Text
+'/' Text
+'g' Text
+'/' Text
+'drl' Text
+'/' Text
+'rls' Text
+'/' Text
+'irf' Text
+'/' Text
+'2005' Text
+'/' Text
+'51552' Text
+'.' Text
+'htm' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'30' Text
+' ' Text
+'October' Text
+' ' Text
+'2010' Text
+' ' Text
+'|' Punctuation
+'publisher' Name.Label
+'=' Operator
+'U' Text
+'.' Text
+'S' Text
+'.' Text
+' ' Text
+'State' Text
+' ' Text
+'Department' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'The' Text
+' ' Text
+'current' Text
+' ' Text
+'[[' Punctuation
+'Jews in France' Name.Tag
+'|' Punctuation
+'Jewish' Text
+' ' Text
+'community' Text
+' ' Text
+'in' Text
+' ' Text
+'France' Text
+']]' Punctuation
+' ' Text
+'is' Text
+' ' Text
+'the' Text
+' ' Text
+'largest' Text
+' ' Text
+'in' Text
+' ' Text
+'Europe' Text
+' ' Text
+'and' Text
+' ' Text
+'the' Text
+' ' Text
+'third' Text
+' ' Text
+'largest' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'world' Text
+' ' Text
+'after' Text
+' ' Text
+'Israel' Text
+' ' Text
+'and' Text
+' ' Text
+'the' Text
+' ' Text
+'United' Text
+' ' Text
+'States' Text
+',' Text
+' ' Text
+'ranging' Text
+' ' Text
+'between' Text
+' ' Text
+'480' Text
+',' Text
+'000' Text
+' ' Text
+'and' Text
+' ' Text
+'600' Text
+',' Text
+'000' Text
+',' Text
+' ' Text
+'about' Text
+' ' Text
+'0' Text
+'.' Text
+'8' Text
+'%' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'population' Text
+' ' Text
+'as' Text
+' ' Text
+'of' Text
+' ' Text
+'2016' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+' ' Text.Whitespace
+'name' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+'2016Montaigne' Literal.String.Double
+'-' Literal.String.Double
+'IFOP' Literal.String.Double
+'"' Literal.String.Double
+' ' Text.Whitespace
+'/>' Punctuation
+'\n' Text
+
+'\n' Text
+
+'[[' Punctuation
+'Catholicism' Name.Tag
+']]' Punctuation
+' ' Text
+'has' Text
+' ' Text
+'been' Text
+' ' Text
+'the' Text
+' ' Text
+'predominant' Text
+' ' Text
+'religion' Text
+' ' Text
+'in' Text
+' ' Text
+'France' Text
+' ' Text
+'for' Text
+' ' Text
+'more' Text
+' ' Text
+'than' Text
+' ' Text
+'a' Text
+' ' Text
+'millennium' Text
+',' Text
+' ' Text
+'though' Text
+' ' Text
+'it' Text
+' ' Text
+'is' Text
+' ' Text
+'not' Text
+' ' Text
+'as' Text
+' ' Text
+'actively' Text
+' ' Text
+'practised' Text
+' ' Text
+'today' Text
+' ' Text
+'as' Text
+' ' Text
+'it' Text
+' ' Text
+'was' Text
+'.' Text
+' ' Text
+'Among' Text
+' ' Text
+'the' Text
+' ' Text
+'47' Text
+',' Text
+'000' Text
+' ' Text
+'religious' Text
+' ' Text
+'buildings' Text
+' ' Text
+'in' Text
+' ' Text
+'France' Text
+',' Text
+' ' Text
+'94' Text
+'%' Text
+' ' Text
+'are' Text
+' ' Text
+'[[' Punctuation
+'Catholic Church' Name.Tag
+'|' Punctuation
+'Roman' Text
+' ' Text
+'Catholic' Text
+']]' Punctuation
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'date' Name.Label
+'=' Operator
+'1' Text
+' ' Text
+'February' Text
+' ' Text
+'2012' Text
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Observatoire' Text
+' ' Text
+'du' Text
+' ' Text
+'patrimoine' Text
+' ' Text
+'religieux' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'patrimoine' Text
+'-' Text
+'religieux' Text
+'.' Text
+'fr' Text
+'/' Text
+'rubriques' Text
+'/' Text
+'gauche' Text
+'/' Text
+'actualites' Text
+'/' Text
+'actualites' Text
+'-' Text
+'de' Text
+'-' Text
+'la' Text
+'-' Text
+'base' Text
+'-' Text
+'de' Text
+'-' Text
+'donnees' Text
+' ' Text
+'|' Punctuation
+'url-status' Name.Label
+'=' Operator
+'dead' Text
+' ' Text
+'|' Punctuation
+'archive-url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'web' Text
+'.' Text
+'archive' Text
+'.' Text
+'org' Text
+'/' Text
+'web' Text
+'/' Text
+'20131126171213' Text
+'/' Text
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'patrimoine' Text
+'-' Text
+'religieux' Text
+'.' Text
+'fr' Text
+'/' Text
+'rubriques' Text
+'/' Text
+'gauche' Text
+'/' Text
+'actualites' Text
+'/' Text
+'actualites' Text
+'-' Text
+'de' Text
+'-' Text
+'la' Text
+'-' Text
+'base' Text
+'-' Text
+'de' Text
+'-' Text
+'donnees' Text
+' ' Text
+'|' Punctuation
+'archive-date' Name.Label
+'=' Operator
+'26' Text
+' ' Text
+'November' Text
+' ' Text
+'2013' Text
+' ' Text
+'|' Punctuation
+'quote' Name.Label
+'=' Operator
+'94' Text
+'%' Text
+' ' Text
+'des' Text
+' ' Text
+'édifices' Text
+' ' Text
+'sont' Text
+' ' Text
+'catholiques' Text
+' ' Text
+'(' Text
+'dont' Text
+' ' Text
+'50' Text
+'%' Text
+' ' Text
+'églises' Text
+' ' Text
+'paroissiales' Text
+',' Text
+' ' Text
+'25' Text
+'%' Text
+' ' Text
+'chapelles' Text
+',' Text
+' ' Text
+'25' Text
+'%' Text
+' ' Text
+'édifices' Text
+' ' Text
+'appartenant' Text
+' ' Text
+'au' Text
+' ' Text
+'clergé' Text
+' ' Text
+'régulier' Text
+')' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'During' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'French Revolution' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'activists' Text
+' ' Text
+'conducted' Text
+' ' Text
+'a' Text
+' ' Text
+'brutal' Text
+' ' Text
+'[[' Punctuation
+'dechristianisation of France during the French Revolution' Name.Tag
+'|' Punctuation
+'campaign' Text
+' ' Text
+'of' Text
+' ' Text
+'de' Text
+'-' Text
+'Christianisation' Text
+']]' Punctuation
+',' Text
+' ' Text
+'ending' Text
+' ' Text
+'the' Text
+' ' Text
+'Catholic' Text
+' ' Text
+'Church' Text
+' ' Text
+'as' Text
+' ' Text
+'the' Text
+' ' Text
+'state' Text
+' ' Text
+'religion' Text
+'.' Text
+' ' Text
+'In' Text
+' ' Text
+'some' Text
+' ' Text
+'cases' Text
+',' Text
+' ' Text
+'clergy' Text
+' ' Text
+'and' Text
+' ' Text
+'churches' Text
+' ' Text
+'were' Text
+' ' Text
+'attacked' Text
+',' Text
+' ' Text
+'with' Text
+' ' Text
+'iconoclasm' Text
+' ' Text
+'stripping' Text
+' ' Text
+'the' Text
+' ' Text
+'churches' Text
+' ' Text
+'of' Text
+' ' Text
+'statues' Text
+' ' Text
+'and' Text
+' ' Text
+'ornaments' Text
+'.' Text
+' ' Text
+'After' Text
+' ' Text
+'alternating' Text
+' ' Text
+'between' Text
+' ' Text
+'royal' Text
+' ' Text
+'and' Text
+' ' Text
+'secular' Text
+' ' Text
+'republican' Text
+' ' Text
+'governments' Text
+' ' Text
+'during' Text
+' ' Text
+'the' Text
+' ' Text
+'19th' Text
+' ' Text
+'century' Text
+',' Text
+' ' Text
+'in' Text
+' ' Text
+'1905' Text
+' ' Text
+'France' Text
+' ' Text
+'passed' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'1905 French law on the Separation of the Churches and the State' Name.Tag
+'|' Punctuation
+'1905' Text
+' ' Text
+'law' Text
+' ' Text
+'on' Text
+' ' Text
+'the' Text
+' ' Text
+'Separation' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'Churches' Text
+' ' Text
+'and' Text
+' ' Text
+'the' Text
+' ' Text
+'State' Text
+']]' Punctuation
+',' Text
+' ' Text
+'which' Text
+' ' Text
+'established' Text
+' ' Text
+'the' Text
+' ' Text
+'principle' Text
+' ' Text
+'of' Text
+' ' Text
+"''" Generic.Emph
+'[[' Punctuation
+'laïcité' Name.Tag
+']]' Punctuation
+"''" Generic.Emph
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+' ' Text.Whitespace
+'name' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+'georgetown2' Literal.String.Double
+'"' Literal.String.Double
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'France' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'berkleycenter' Text
+'.' Text
+'georgetown' Text
+'.' Text
+'edu' Text
+'/' Text
+'resources' Text
+'/' Text
+'countries' Text
+'/' Text
+'france' Text
+' ' Text
+'|' Punctuation
+'url-status' Name.Label
+'=' Operator
+'dead' Text
+' ' Text
+'|' Punctuation
+'archive-url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'web' Text
+'.' Text
+'archive' Text
+'.' Text
+'org' Text
+'/' Text
+'web' Text
+'/' Text
+'20110206213909' Text
+'/' Text
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'berkleycenter' Text
+'.' Text
+'georgetown' Text
+'.' Text
+'edu' Text
+'/' Text
+'resources' Text
+'/' Text
+'countries' Text
+'/' Text
+'france' Text
+' ' Text
+'|' Punctuation
+'archive-date' Name.Label
+'=' Operator
+'6' Text
+' ' Text
+'February' Text
+' ' Text
+'2011' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'14' Text
+' ' Text
+'December' Text
+' ' Text
+'2011' Text
+' ' Text
+'|' Punctuation
+'publisher' Name.Label
+'=' Operator
+'[[' Punctuation
+'Berkley Center for Religion, Peace, and World Affairs' Name.Tag
+']]' Punctuation
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'\n' Text
+
+'\n' Text
+
+'To' Text
+' ' Text
+'this' Text
+' ' Text
+'day' Text
+',' Text
+' ' Text
+'the' Text
+' ' Text
+'government' Text
+' ' Text
+'is' Text
+' ' Text
+'prohibited' Text
+' ' Text
+'from' Text
+' ' Text
+'recognising' Text
+' ' Text
+'any' Text
+' ' Text
+'specific' Text
+' ' Text
+'right' Text
+' ' Text
+'to' Text
+' ' Text
+'a' Text
+' ' Text
+'religious' Text
+' ' Text
+'community' Text
+' ' Text
+'(' Text
+'except' Text
+' ' Text
+'for' Text
+' ' Text
+'legacy' Text
+' ' Text
+'statutes' Text
+' ' Text
+'like' Text
+' ' Text
+'those' Text
+' ' Text
+'of' Text
+' ' Text
+'military' Text
+' ' Text
+'chaplains' Text
+' ' Text
+'and' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'local law in Alsace-Moselle' Name.Tag
+']]' Punctuation
+')' Text
+'.' Text
+' ' Text
+'It' Text
+' ' Text
+'recognises' Text
+' ' Text
+'religious' Text
+' ' Text
+'organisations' Text
+' ' Text
+'according' Text
+' ' Text
+'to' Text
+' ' Text
+'formal' Text
+' ' Text
+'legal' Text
+' ' Text
+'criteria' Text
+' ' Text
+'that' Text
+' ' Text
+'do' Text
+' ' Text
+'not' Text
+' ' Text
+'address' Text
+' ' Text
+'religious' Text
+' ' Text
+'doctrine' Text
+'.' Text
+' ' Text
+'Conversely' Text
+',' Text
+' ' Text
+'religious' Text
+' ' Text
+'organisations' Text
+' ' Text
+'are' Text
+' ' Text
+'expected' Text
+' ' Text
+'to' Text
+' ' Text
+'refrain' Text
+' ' Text
+'from' Text
+' ' Text
+'intervening' Text
+' ' Text
+'in' Text
+' ' Text
+'policymaking' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+"''" Generic.Emph
+'Joy' Generic.Emph
+' ' Generic.Emph
+'of' Generic.Emph
+' ' Generic.Emph
+'Sects' Generic.Emph
+"''" Generic.Emph
+',' Text
+' ' Text
+'Sam' Text
+' ' Text
+'Jordison' Text
+',' Text
+' ' Text
+'2006' Text
+',' Text
+' ' Text
+'p' Text
+'.' Text
+' ' Text
+'166' Text
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'\n' Text
+
+'\n' Text
+
+'Certain' Text
+' ' Text
+'groups' Text
+',' Text
+' ' Text
+'such' Text
+' ' Text
+'as' Text
+' ' Text
+'[[' Punctuation
+'Scientology' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'[[' Punctuation
+'Children of God (New Religious Movement)' Name.Tag
+'|' Punctuation
+'Children' Text
+' ' Text
+'of' Text
+' ' Text
+'God' Text
+']]' Punctuation
+',' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Unification Church' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'or' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Order of the Solar Temple' Name.Tag
+']]' Punctuation
+' ' Text
+'are' Text
+' ' Text
+'considered' Text
+' ' Text
+'[[' Punctuation
+'cult' Name.Tag
+']]' Punctuation
+'s' Text
+' ' Text
+'(' Text
+'"' Text
+"''" Generic.Emph
+'[[' Punctuation
+'sect' Name.Tag
+']]' Punctuation
+'es' Generic.Emph
+"''" Generic.Emph
+'"' Text
+' ' Text
+'in' Text
+' ' Text
+'French' Text
+')' Text
+';' Text
+' ' Text
+'therefore' Text
+' ' Text
+'they' Text
+' ' Text
+'do' Text
+' ' Text
+'not' Text
+' ' Text
+'have' Text
+' ' Text
+'the' Text
+' ' Text
+'same' Text
+' ' Text
+'status' Text
+' ' Text
+'as' Text
+' ' Text
+'recognised' Text
+' ' Text
+'religions' Text
+' ' Text
+'in' Text
+' ' Text
+'France' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Commission' Text
+' ' Text
+'d' Text
+"'" Text
+'enquête' Text
+' ' Text
+'sur' Text
+' ' Text
+'les' Text
+' ' Text
+'sectes' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'assemblee' Text
+'-' Text
+'nationale' Text
+'.' Text
+'fr' Text
+'/' Text
+'rap' Text
+'-' Text
+'enq' Text
+'/' Text
+'r2468' Text
+'.' Text
+'asp' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'30' Text
+' ' Text
+'October' Text
+' ' Text
+'2010' Text
+' ' Text
+'|' Punctuation
+'publisher' Name.Label
+'=' Operator
+'Assemblee' Text
+'-' Text
+'nationale' Text
+'.' Text
+'fr' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+"''" Generic.Emph
+'Secte' Generic.Emph
+"''" Generic.Emph
+' ' Text
+'is' Text
+' ' Text
+'considered' Text
+' ' Text
+'a' Text
+' ' Text
+'pejorative' Text
+' ' Text
+'term' Text
+' ' Text
+'in' Text
+' ' Text
+'France' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Society2' Text
+';' Text
+' ' Text
+'religion' Text
+' ' Text
+'in' Text
+' ' Text
+'France' Text
+';' Text
+' ' Text
+'beliefs' Text
+';' Text
+' ' Text
+'secularism' Text
+' ' Text
+'(' Text
+'laicité' Text
+')' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'understandfrance' Text
+'.' Text
+'org' Text
+'/' Text
+'France' Text
+'/' Text
+'Society2' Text
+'.' Text
+'html' Text
+' ' Text
+'|' Punctuation
+'url-status' Name.Label
+'=' Operator
+'dead' Text
+' ' Text
+'|' Punctuation
+'archive-url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'web' Text
+'.' Text
+'archive' Text
+'.' Text
+'org' Text
+'/' Text
+'web' Text
+'/' Text
+'20090916220047' Text
+'/' Text
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'understandfrance' Text
+'.' Text
+'org' Text
+'/' Text
+'France' Text
+'/' Text
+'Society2' Text
+'.' Text
+'html' Text
+' ' Text
+'|' Punctuation
+'archive-date' Name.Label
+'=' Operator
+'16' Text
+' ' Text
+'September' Text
+' ' Text
+'2009' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'20' Text
+' ' Text
+'September' Text
+' ' Text
+'2009' Text
+' ' Text
+'|' Punctuation
+'publisher' Name.Label
+'=' Operator
+'Understandfrance' Text
+'.' Text
+'org' Text
+'}}' Punctuation
+'{{' Punctuation
+'Self' Name.Tag
+'-' Name.Tag
+'published' Name.Tag
+' ' Name.Tag
+'source' Name.Tag
+'|' Punctuation
+'date' Name.Label
+'=' Operator
+'June' Text
+' ' Text
+'2016' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'\n' Text
+
+'\n' Text
+
+'===' Generic.Subheading
+'Health' Generic.Subheading
+'===' Generic.Subheading
+'\n' Text.Whitespace
+
+'{{' Punctuation
+'Main' Name.Tag
+'|' Punctuation
+'Health' Text
+' ' Text
+'in' Text
+' ' Text
+'France' Text
+'}}' Punctuation
+'\n' Text
+
+'[[' Punctuation
+'File' Name.Namespace
+':' Punctuation
+'P1000513_Paris_XIII_Salpetrière_reductwk.JPG' Name.Tag
+'|' Punctuation
+'thumb' Text
+'|' Punctuation
+'alt' Name.Attribute
+'=' Operator
+'Pitié' Text
+'-' Text
+'Salpêtrière' Text
+' ' Text
+'Hospital' Text
+' ' Text
+'in' Text
+' ' Text
+'Paris' Text
+',' Text
+' ' Text
+'stone' Text
+' ' Text
+'building' Text
+' ' Text
+'with' Text
+' ' Text
+'slate' Text
+' ' Text
+'dome' Text
+'|' Punctuation
+'The' Text
+' ' Text
+'[[' Punctuation
+'Pitié-Salpêtrière Hospital' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'a' Text
+' ' Text
+'teaching' Text
+' ' Text
+'hospital' Text
+' ' Text
+'in' Text
+' ' Text
+'Paris' Text
+',' Text
+' ' Text
+'is' Text
+' ' Text
+'one' Text
+' ' Text
+'of' Text
+' ' Text
+'Europe' Text
+"'" Text
+'s' Text
+' ' Text
+'largest' Text
+' ' Text
+'hospitals' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'[' Punctuation
+'https://web.archive.org/web/20070117112822/http://www.paris-region.com/ard_uk/upload/document/D176.pdf' Name.Label
+' ' Text.Whitespace
+'How' Text
+' ' Text
+'to' Text
+' ' Text
+'conduct' Text
+' ' Text
+'European' Text
+' ' Text
+'clinical' Text
+' ' Text
+'trials' Text
+' ' Text
+'from' Text
+' ' Text
+'the' Text
+' ' Text
+'Paris' Text
+' ' Text
+'Region' Text
+' ' Text
+'?' Text
+']' Punctuation
+' ' Text
+'Clinical' Text
+' ' Text
+'Trials' Text
+'.' Text
+' ' Text
+'Paris' Text
+'.' Text
+' ' Text
+'February' Text
+' ' Text
+'2003' Text
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+']]' Punctuation
+'\n' Text
+
+'The' Text
+' ' Text
+'[[' Punctuation
+'Health in France' Name.Tag
+'|' Punctuation
+'French' Text
+' ' Text
+'health' Text
+' ' Text
+'care' Text
+' ' Text
+'system' Text
+']]' Punctuation
+' ' Text
+'is' Text
+' ' Text
+'one' Text
+' ' Text
+'of' Text
+' ' Text
+'[[' Punctuation
+'universal health care' Name.Tag
+']]' Punctuation
+' ' Text
+'largely' Text
+' ' Text
+'financed' Text
+' ' Text
+'by' Text
+' ' Text
+'government' Text
+' ' Text
+'[[' Punctuation
+'national health insurance' Name.Tag
+']]' Punctuation
+'.' Text
+' ' Text
+'In' Text
+' ' Text
+'its' Text
+' ' Text
+'2000' Text
+' ' Text
+'assessment' Text
+' ' Text
+'of' Text
+' ' Text
+'world' Text
+' ' Text
+'healthcare' Text
+' ' Text
+'systems' Text
+',' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'World Health Organization' Name.Tag
+']]' Punctuation
+' ' Text
+'found' Text
+' ' Text
+'that' Text
+' ' Text
+'France' Text
+' ' Text
+'provided' Text
+' ' Text
+'the' Text
+' ' Text
+'"' Text
+'close' Text
+' ' Text
+'to' Text
+' ' Text
+'best' Text
+' ' Text
+'overall' Text
+' ' Text
+'health' Text
+' ' Text
+'care' Text
+'"' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'world' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+' ' Text.Whitespace
+'name' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+'who' Literal.String.Double
+'.' Literal.String.Double
+'int' Literal.String.Double
+'"' Literal.String.Double
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'date' Name.Label
+'=' Operator
+'8' Text
+' ' Text
+'December' Text
+' ' Text
+'2010' Text
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'World' Text
+' ' Text
+'Health' Text
+' ' Text
+'Organization' Text
+' ' Text
+'Assesses' Text
+' ' Text
+'the' Text
+' ' Text
+'World' Text
+"'" Text
+'s' Text
+' ' Text
+'Health' Text
+' ' Text
+'Systems' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'who' Text
+'.' Text
+'int' Text
+'/' Text
+'whr' Text
+'/' Text
+'2000' Text
+'/' Text
+'media_centre' Text
+'/' Text
+'press_release' Text
+'/' Text
+'en' Text
+'/' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'6' Text
+' ' Text
+'January' Text
+' ' Text
+'2012' Text
+' ' Text
+'|' Punctuation
+'publisher' Name.Label
+'=' Operator
+'Who' Text
+'.' Text
+'int' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'The' Text
+' ' Text
+'French' Text
+' ' Text
+'healthcare' Text
+' ' Text
+'system' Text
+' ' Text
+'was' Text
+' ' Text
+'ranked' Text
+' ' Text
+'first' Text
+' ' Text
+'worldwide' Text
+' ' Text
+'by' Text
+' ' Text
+'the' Text
+' ' Text
+'World' Text
+' ' Text
+'Health' Text
+' ' Text
+'Organization' Text
+' ' Text
+'in' Text
+' ' Text
+'1997' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'[' Punctuation
+'http://www.photius.com/rankings/healthranks.html' Name.Label
+' ' Text.Whitespace
+'The' Text
+' ' Text
+'ranking' Text
+',' Text
+' ' Text
+'see' Text
+' ' Text
+'spreadsheet' Text
+' ' Text
+'details' Text
+' ' Text
+'for' Text
+' ' Text
+'a' Text
+' ' Text
+'whole' Text
+' ' Text
+'analysis' Text
+']' Punctuation
+' ' Text
+'photius' Text
+'.' Text
+'com' Text
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Measuring' Text
+' ' Text
+'Overall' Text
+' ' Text
+'Health' Text
+' ' Text
+'System' Text
+' ' Text
+'Performance' Text
+' ' Text
+'for' Text
+' ' Text
+'191' Text
+' ' Text
+'Countries' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'who' Text
+'.' Text
+'int' Text
+'/' Text
+'healthinfo' Text
+'/' Text
+'paper30' Text
+'.' Text
+'pdf' Text
+' ' Text
+'|' Punctuation
+'url-status' Name.Label
+'=' Operator
+'dead' Text
+' ' Text
+'|' Punctuation
+'archive-url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'web' Text
+'.' Text
+'archive' Text
+'.' Text
+'org' Text
+'/' Text
+'web' Text
+'/' Text
+'20110805022057' Text
+'/' Text
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'who' Text
+'.' Text
+'int' Text
+'/' Text
+'healthinfo' Text
+'/' Text
+'paper30' Text
+'.' Text
+'pdf' Text
+' ' Text
+'|' Punctuation
+'archive-date' Name.Label
+'=' Operator
+'5' Text
+' ' Text
+'August' Text
+' ' Text
+'2011' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'21' Text
+' ' Text
+'July' Text
+' ' Text
+'2011' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'In' Text
+' ' Text
+'2011' Text
+',' Text
+' ' Text
+'France' Text
+' ' Text
+'spent' Text
+' ' Text
+'11' Text
+'.' Text
+'6' Text
+'%' Text
+' ' Text
+'of' Text
+' ' Text
+'its' Text
+' ' Text
+'GDP' Text
+' ' Text
+'on' Text
+' ' Text
+'health' Text
+' ' Text
+'care' Text
+',' Text
+' ' Text
+'or' Text
+' ' Text
+'US' Text
+'$' Text
+'4' Text
+',' Text
+'086' Text
+' ' Text
+'per' Text
+' ' Text
+'capita' Text
+',' Text
+'<' Punctuation
+'ref' Name.Tag
+' ' Text.Whitespace
+'name' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+'WHO' Literal.String.Double
+' ' Literal.String.Double
+'country' Literal.String.Double
+' ' Literal.String.Double
+'facts' Literal.String.Double
+':' Literal.String.Double
+' ' Literal.String.Double
+'France' Literal.String.Double
+'"' Literal.String.Double
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'WHO' Text
+' ' Text
+'country' Text
+' ' Text
+'facts' Text
+':' Text
+' ' Text
+'France' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'who' Text
+'.' Text
+'int' Text
+'/' Text
+'countries' Text
+'/' Text
+'fra' Text
+'/' Text
+'en' Text
+'/' Text
+' ' Text
+'|' Punctuation
+'url-status' Name.Label
+'=' Operator
+'dead' Text
+' ' Text
+'|' Punctuation
+'archive-url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'web' Text
+'.' Text
+'archive' Text
+'.' Text
+'org' Text
+'/' Text
+'web' Text
+'/' Text
+'20131111212445' Text
+'/' Text
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'who' Text
+'.' Text
+'int' Text
+'/' Text
+'countries' Text
+'/' Text
+'fra' Text
+'/' Text
+'en' Text
+'/' Text
+' ' Text
+'|' Punctuation
+'archive-date' Name.Label
+'=' Operator
+'11' Text
+' ' Text
+'November' Text
+' ' Text
+'2013' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'11' Text
+' ' Text
+'November' Text
+' ' Text
+'2013' Text
+' ' Text
+'|' Punctuation
+'publisher' Name.Label
+'=' Operator
+'Who' Text
+'.' Text
+'int' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'a' Text
+' ' Text
+'figure' Text
+' ' Text
+'much' Text
+' ' Text
+'higher' Text
+' ' Text
+'than' Text
+' ' Text
+'the' Text
+' ' Text
+'average' Text
+' ' Text
+'spent' Text
+' ' Text
+'by' Text
+' ' Text
+'countries' Text
+' ' Text
+'in' Text
+' ' Text
+'Europe' Text
+' ' Text
+'but' Text
+' ' Text
+'[[' Punctuation
+'Health care compared' Name.Tag
+'|' Punctuation
+'less' Text
+' ' Text
+'than' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'United' Text
+' ' Text
+'States' Text
+']]' Punctuation
+'.' Text
+' ' Text
+'Approximately' Text
+' ' Text
+'77' Text
+'%' Text
+' ' Text
+'of' Text
+' ' Text
+'health' Text
+' ' Text
+'expenditures' Text
+' ' Text
+'are' Text
+' ' Text
+'covered' Text
+' ' Text
+'by' Text
+' ' Text
+'government' Text
+'-' Text
+'funded' Text
+' ' Text
+'agencies' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'The' Text
+' ' Text
+'World' Text
+' ' Text
+'Health' Text
+' ' Text
+'Report' Text
+' ' Text
+'2000' Text
+':' Text
+' ' Text
+'WHO' Text
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'\n' Text
+
+'\n' Text
+
+'Care' Text
+' ' Text
+'is' Text
+' ' Text
+'generally' Text
+' ' Text
+'free' Text
+' ' Text
+'for' Text
+' ' Text
+'people' Text
+' ' Text
+'affected' Text
+' ' Text
+'by' Text
+' ' Text
+'[[' Punctuation
+'chronic disease' Name.Tag
+']]' Punctuation
+'s' Text
+' ' Text
+'(' Text
+"''" Generic.Emph
+'affections' Generic.Emph
+' ' Generic.Emph
+'de' Generic.Emph
+' ' Generic.Emph
+'longues' Generic.Emph
+' ' Generic.Emph
+'durées' Generic.Emph
+"''" Generic.Emph
+')' Text
+' ' Text
+'such' Text
+' ' Text
+'as' Text
+' ' Text
+'cancer' Text
+',' Text
+' ' Text
+'AIDS' Text
+' ' Text
+'or' Text
+' ' Text
+'[[' Punctuation
+'cystic fibrosis' Name.Tag
+']]' Punctuation
+'.' Text
+' ' Text
+'Average' Text
+' ' Text
+'life' Text
+' ' Text
+'expectancy' Text
+' ' Text
+'at' Text
+' ' Text
+'birth' Text
+' ' Text
+'is' Text
+' ' Text
+'78' Text
+' ' Text
+'years' Text
+' ' Text
+'for' Text
+' ' Text
+'men' Text
+' ' Text
+'and' Text
+' ' Text
+'85' Text
+' ' Text
+'years' Text
+' ' Text
+'for' Text
+' ' Text
+'women' Text
+',' Text
+' ' Text
+'one' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'highest' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'European' Text
+' ' Text
+'Union' Text
+' ' Text
+'and' Text
+' ' Text
+'the' Text
+' ' Text
+'World' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Espérance' Text
+' ' Text
+'de' Text
+' ' Text
+'vie' Text
+',' Text
+' ' Text
+'taux' Text
+' ' Text
+'de' Text
+' ' Text
+'mortalité' Text
+' ' Text
+'et' Text
+' ' Text
+'taux' Text
+' ' Text
+'de' Text
+' ' Text
+'mortalité' Text
+' ' Text
+'infantile' Text
+' ' Text
+'dans' Text
+' ' Text
+'le' Text
+' ' Text
+'monde' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'insee' Text
+'.' Text
+'fr' Text
+'/' Text
+'fr' Text
+'/' Text
+'themes' Text
+'/' Text
+'tableau' Text
+'.' Text
+'asp' Text
+'?' Text
+'reg_id' Text
+'=' Text
+'98' Text
+'&' Text
+'ref_id' Text
+'=' Text
+'CMPTEF02216' Text
+' ' Text
+'|' Punctuation
+'publisher' Name.Label
+'=' Operator
+'Insee' Text
+' ' Text
+'|' Punctuation
+'language' Name.Label
+'=' Operator
+'fr' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Evolution' Text
+' ' Text
+'de' Text
+' ' Text
+'l' Text
+"'" Text
+'espérance' Text
+' ' Text
+'de' Text
+' ' Text
+'vie' Text
+' ' Text
+'à' Text
+' ' Text
+'divers' Text
+' ' Text
+'âges' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'insee' Text
+'.' Text
+'fr' Text
+'/' Text
+'fr' Text
+'/' Text
+'themes' Text
+'/' Text
+'tableau' Text
+'.' Text
+'asp' Text
+'?' Text
+'reg_id' Text
+'=' Text
+'0' Text
+'&' Text
+'ref_id' Text
+'=' Text
+'NATnon02229' Text
+' ' Text
+'|' Punctuation
+'publisher' Name.Label
+'=' Operator
+'Insee' Text
+' ' Text
+'|' Punctuation
+'language' Name.Label
+'=' Operator
+'fr' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'There' Text
+' ' Text
+'are' Text
+' ' Text
+'3' Text
+'.' Text
+'22' Text
+' ' Text
+'physicians' Text
+' ' Text
+'for' Text
+' ' Text
+'every' Text
+' ' Text
+'1000' Text
+' ' Text
+'inhabitants' Text
+' ' Text
+'in' Text
+' ' Text
+'France' Text
+',' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Nombre' Text
+' ' Text
+'de' Text
+' ' Text
+'médecins' Text
+' ' Text
+'pour' Text
+' ' Text
+'1000' Text
+' ' Text
+'habitants' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'statistiques' Text
+'-' Text
+'mondiales' Text
+'.' Text
+'com' Text
+'/' Text
+'medecins' Text
+'.' Text
+'htm' Text
+' ' Text
+'|' Punctuation
+'archive-url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'web' Text
+'.' Text
+'archive' Text
+'.' Text
+'org' Text
+'/' Text
+'web' Text
+'/' Text
+'20100305131215' Text
+'/' Text
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'statistiques' Text
+'-' Text
+'mondiales' Text
+'.' Text
+'com' Text
+'/' Text
+'medecins' Text
+'.' Text
+'htm' Text
+' ' Text
+'|' Punctuation
+'archive-date' Name.Label
+'=' Operator
+'5' Text
+' ' Text
+'March' Text
+' ' Text
+'2010' Text
+' ' Text
+'|' Punctuation
+'publisher' Name.Label
+'=' Operator
+'Statistiques' Text
+' ' Text
+'mondiales' Text
+' ' Text
+'|' Punctuation
+'language' Name.Label
+'=' Operator
+'fr' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'and' Text
+' ' Text
+'average' Text
+' ' Text
+'healthcare' Text
+' ' Text
+'spending' Text
+' ' Text
+'per' Text
+' ' Text
+'capita' Text
+' ' Text
+'was' Text
+' ' Text
+'US' Text
+'$' Text
+'4' Text
+',' Text
+'719' Text
+' ' Text
+'in' Text
+' ' Text
+'2008' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Dépenses' Text
+' ' Text
+'de' Text
+' ' Text
+'santé' Text
+' ' Text
+'par' Text
+' ' Text
+'habitants' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'statistiques' Text
+'-' Text
+'mondiales' Text
+'.' Text
+'com' Text
+'/' Text
+'sante' Text
+'.' Text
+'htm' Text
+' ' Text
+'|' Punctuation
+'archive-url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'web' Text
+'.' Text
+'archive' Text
+'.' Text
+'org' Text
+'/' Text
+'web' Text
+'/' Text
+'20091212061623' Text
+'/' Text
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'statistiques' Text
+'-' Text
+'mondiales' Text
+'.' Text
+'com' Text
+'/' Text
+'sante' Text
+'.' Text
+'htm' Text
+' ' Text
+'|' Punctuation
+'archive-date' Name.Label
+'=' Operator
+'12' Text
+' ' Text
+'December' Text
+' ' Text
+'2009' Text
+' ' Text
+'|' Punctuation
+'publisher' Name.Label
+'=' Operator
+'Statistiques' Text
+' ' Text
+'mondiales' Text
+' ' Text
+'|' Punctuation
+'language' Name.Label
+'=' Operator
+'fr' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'As' Name.Tag
+' ' Name.Tag
+'of' Name.Tag
+'|' Punctuation
+'2007' Text
+'}}' Punctuation
+',' Text
+' ' Text
+'approximately' Text
+' ' Text
+'140' Text
+',' Text
+'000' Text
+' ' Text
+'inhabitants' Text
+' ' Text
+'(' Text
+'0' Text
+'.' Text
+'4' Text
+'%' Text
+')' Text
+' ' Text
+'of' Text
+' ' Text
+'France' Text
+' ' Text
+'are' Text
+' ' Text
+'living' Text
+' ' Text
+'with' Text
+' ' Text
+'HIV' Text
+'/' Text
+'AIDS' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+' ' Text.Whitespace
+'name' Name.Attribute
+' ' Text.Whitespace
+'=' Operator
+'France' Literal.String
+'/>' Punctuation
+'\n' Text
+
+'\n' Text
+
+'Even' Text
+' ' Text
+'if' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Frenchmen' Name.Tag
+'|' Punctuation
+'French' Text
+']]' Punctuation
+' ' Text
+'have' Text
+' ' Text
+'the' Text
+' ' Text
+'reputation' Text
+' ' Text
+'of' Text
+' ' Text
+'being' Text
+' ' Text
+'one' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'thinnest' Text
+' ' Text
+'people' Text
+' ' Text
+'in' Text
+' ' Text
+'developed' Text
+' ' Text
+'countries' Text
+',' Text
+'<' Punctuation
+'ref' Name.Tag
+' ' Text.Whitespace
+'name' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+'obesity' Literal.String.Double
+'"' Literal.String.Double
+'>' Punctuation
+'[' Punctuation
+'https://www.nytimes.com/2005/05/03/world/europe/03iht-obese.html' Name.Label
+' ' Text.Whitespace
+'Even' Text
+' ' Text
+'the' Text
+' ' Text
+'French' Text
+' ' Text
+'are' Text
+' ' Text
+'fighting' Text
+' ' Text
+'obesity' Text
+']' Punctuation
+'&nbsp;' Name.Entity
+'–' Text
+' ' Text
+"''" Generic.Emph
+'The' Generic.Emph
+' ' Generic.Emph
+'New' Generic.Emph
+' ' Generic.Emph
+'York' Generic.Emph
+' ' Generic.Emph
+'Times' Generic.Emph
+"''" Generic.Emph
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'<' Punctuation
+'ref' Name.Tag
+' ' Text.Whitespace
+'name' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+'daily' Literal.String.Double
+'"' Literal.String.Double
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'last' Name.Label
+'=' Operator
+'Wahlgren' Text
+' ' Text
+'|' Punctuation
+'first' Name.Label
+'=' Operator
+'Eric' Text
+' ' Text
+'|' Punctuation
+'date' Name.Label
+'=' Operator
+'14' Text
+' ' Text
+'November' Text
+' ' Text
+'2009' Text
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'France' Text
+"'" Text
+'s' Text
+' ' Text
+'obesity' Text
+' ' Text
+'crisis' Text
+':' Text
+' ' Text
+'All' Text
+' ' Text
+'those' Text
+' ' Text
+'croissants' Text
+' ' Text
+'really' Text
+' ' Text
+'do' Text
+' ' Text
+'add' Text
+' ' Text
+'up' Text
+',' Text
+' ' Text
+'after' Text
+' ' Text
+'all' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'dailyfinance' Text
+'.' Text
+'com' Text
+'/' Text
+'2009' Text
+'/' Text
+'11' Text
+'/' Text
+'14' Text
+'/' Text
+'frances' Text
+'-' Text
+'obesity' Text
+'-' Text
+'crisis' Text
+'-' Text
+'all' Text
+'-' Text
+'those' Text
+'-' Text
+'croissants' Text
+'-' Text
+'really' Text
+'-' Text
+'do' Text
+'-' Text
+'add' Text
+'-' Text
+'up' Text
+'/' Text
+' ' Text
+'|' Punctuation
+'url-status' Name.Label
+'=' Operator
+'dead' Text
+' ' Text
+'|' Punctuation
+'archive-url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'web' Text
+'.' Text
+'archive' Text
+'.' Text
+'org' Text
+'/' Text
+'web' Text
+'/' Text
+'20110708221117' Text
+'/' Text
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'dailyfinance' Text
+'.' Text
+'com' Text
+'/' Text
+'2009' Text
+'/' Text
+'11' Text
+'/' Text
+'14' Text
+'/' Text
+'frances' Text
+'-' Text
+'obesity' Text
+'-' Text
+'crisis' Text
+'-' Text
+'all' Text
+'-' Text
+'those' Text
+'-' Text
+'croissants' Text
+'-' Text
+'really' Text
+'-' Text
+'do' Text
+'-' Text
+'add' Text
+'-' Text
+'up' Text
+'/' Text
+' ' Text
+'|' Punctuation
+'archive-date' Name.Label
+'=' Operator
+'8' Text
+' ' Text
+'July' Text
+' ' Text
+'2011' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'21' Text
+' ' Text
+'July' Text
+' ' Text
+'2011' Text
+' ' Text
+'|' Punctuation
+'publisher' Name.Label
+'=' Operator
+'Dailyfinance' Text
+'.' Text
+'com' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'<' Punctuation
+'ref' Name.Tag
+' ' Text.Whitespace
+'name' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+'Telegraph' Literal.String.Double
+'"' Literal.String.Double
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'news' Name.Tag
+' ' Text
+'|' Punctuation
+'last' Name.Label
+'=' Operator
+'Lambert' Text
+' ' Text
+'|' Punctuation
+'first' Name.Label
+'=' Operator
+'Victoria' Text
+' ' Text
+'|' Punctuation
+'date' Name.Label
+'=' Operator
+'8' Text
+' ' Text
+'March' Text
+' ' Text
+'2008' Text
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'The' Text
+' ' Text
+'French' Text
+' ' Text
+'children' Text
+' ' Text
+'learning' Text
+' ' Text
+'to' Text
+' ' Text
+'fight' Text
+' ' Text
+'obesity' Text
+' ' Text
+'|' Punctuation
+'work' Name.Label
+'=' Operator
+'The' Text
+' ' Text
+'Daily' Text
+' ' Text
+'Telegraph' Text
+' ' Text
+'|' Punctuation
+'location' Name.Label
+'=' Operator
+'London' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'telegraph' Text
+'.' Text
+'co' Text
+'.' Text
+'uk' Text
+'/' Text
+'health' Text
+'/' Text
+'dietandfitness' Text
+'/' Text
+'3353715' Text
+'/' Text
+'The' Text
+'-' Text
+'French' Text
+'-' Text
+'children' Text
+'-' Text
+'learning' Text
+'-' Text
+'to' Text
+'-' Text
+'fight' Text
+'-' Text
+'obesity' Text
+'.' Text
+'html' Text
+' ' Text
+'|' Punctuation
+'url-status' Name.Label
+'=' Operator
+'dead' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'9' Text
+' ' Text
+'August' Text
+' ' Text
+'2010' Text
+' ' Text
+'|' Punctuation
+'archive-url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'web' Text
+'.' Text
+'archive' Text
+'.' Text
+'org' Text
+'/' Text
+'web' Text
+'/' Text
+'20090730205839' Text
+'/' Text
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'telegraph' Text
+'.' Text
+'co' Text
+'.' Text
+'uk' Text
+'/' Text
+'health' Text
+'/' Text
+'dietandfitness' Text
+'/' Text
+'3353715' Text
+'/' Text
+'The' Text
+'-' Text
+'French' Text
+'-' Text
+'children' Text
+'-' Text
+'learning' Text
+'-' Text
+'to' Text
+'-' Text
+'fight' Text
+'-' Text
+'obesity' Text
+'.' Text
+'html' Text
+' ' Text
+'|' Punctuation
+'archive-date' Name.Label
+'=' Operator
+'30' Text
+' ' Text
+'July' Text
+' ' Text
+'2009' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'<' Punctuation
+'ref' Name.Tag
+' ' Text.Whitespace
+'name' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+'bloomberg' Literal.String.Double
+'"' Literal.String.Double
+'>' Punctuation
+'[' Punctuation
+'http://www.businessweek.com/bwdaily/dnflash/jul2001/nf2001073_981.htm' Name.Label
+' ' Text.Whitespace
+'Why' Text
+' ' Text
+'So' Text
+' ' Text
+'Few' Text
+' ' Text
+'French' Text
+' ' Text
+'Are' Text
+' ' Text
+'Fat' Text
+']' Punctuation
+' ' Text
+'{{' Punctuation
+'Webarchive' Name.Tag
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'web' Text
+'.' Text
+'archive' Text
+'.' Text
+'org' Text
+'/' Text
+'web' Text
+'/' Text
+'20100125084124' Text
+'/' Text
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'businessweek' Text
+'.' Text
+'com' Text
+'/' Text
+'bwdaily' Text
+'/' Text
+'dnflash' Text
+'/' Text
+'jul2001' Text
+'/' Text
+'nf2001073_981' Text
+'.' Text
+'htm' Text
+'|' Punctuation
+'date' Name.Label
+'=' Operator
+'25' Text
+' ' Text
+'January' Text
+' ' Text
+'2010' Text
+'}}' Punctuation
+'&nbsp;' Name.Entity
+'–' Text
+' ' Text
+'Bloomberg' Text
+' ' Text
+'Businessweek' Text
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'The' Text
+' ' Text
+'French' Text
+' ' Text
+'Diet' Text
+' ' Text
+'–' Text
+' ' Text
+'Eat' Text
+',' Text
+' ' Text
+'Drink' Text
+',' Text
+' ' Text
+'and' Text
+' ' Text
+'be' Text
+' ' Text
+'Thin' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'streetdirectory' Text
+'.' Text
+'com' Text
+'/' Text
+'travel_guide' Text
+'/' Text
+'24041' Text
+'/' Text
+'e_diet' Text
+'/' Text
+'the_french_diet___eat_drink_and_be_thin' Text
+'.' Text
+'html' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'9' Text
+' ' Text
+'August' Text
+' ' Text
+'2010' Text
+' ' Text
+'|' Punctuation
+'publisher' Name.Label
+'=' Operator
+'Streetdirectory' Text
+'.' Text
+'com' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Excessive' Name.Tag
+' ' Name.Tag
+'citations' Name.Tag
+' ' Name.Tag
+'inline' Name.Tag
+'|' Punctuation
+'date' Name.Label
+'=' Operator
+'September' Text
+' ' Text
+'2021' Text
+'}}' Punctuation
+' ' Text
+'France' Text
+'—' Text
+'like' Text
+' ' Text
+'other' Text
+' ' Text
+'rich' Text
+' ' Text
+'countries' Text
+'—' Text
+'faces' Text
+' ' Text
+'an' Text
+' ' Text
+'increasing' Text
+' ' Text
+'and' Text
+' ' Text
+'recent' Text
+' ' Text
+'epidemic' Text
+' ' Text
+'of' Text
+' ' Text
+'[[' Punctuation
+'obesity' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'due' Text
+' ' Text
+'mostly' Text
+' ' Text
+'to' Text
+' ' Text
+'the' Text
+' ' Text
+'replacement' Text
+' ' Text
+'in' Text
+' ' Text
+'French' Text
+' ' Text
+'eating' Text
+' ' Text
+'habits' Text
+' ' Text
+'of' Text
+' ' Text
+'traditional' Text
+' ' Text
+'healthy' Text
+' ' Text
+'French' Text
+' ' Text
+'cuisine' Text
+' ' Text
+'by' Text
+' ' Text
+'[[' Punctuation
+'junk food' Name.Tag
+']]' Punctuation
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'news' Name.Tag
+' ' Text
+'|' Punctuation
+'last' Name.Label
+'=' Operator
+'Mimi' Text
+' ' Text
+'Spencer' Text
+' ' Text
+'|' Punctuation
+'date' Name.Label
+'=' Operator
+'7' Text
+' ' Text
+'November' Text
+' ' Text
+'2004' Text
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Let' Text
+' ' Text
+'them' Text
+' ' Text
+'eat' Text
+' ' Text
+'cake' Text
+' ' Text
+'|' Punctuation
+'work' Name.Label
+'=' Operator
+'The' Text
+' ' Text
+'Guardian' Text
+' ' Text
+'|' Punctuation
+'location' Name.Label
+'=' Operator
+'London' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'theguardian' Text
+'.' Text
+'com' Text
+'/' Text
+'lifeandstyle' Text
+'/' Text
+'2004' Text
+'/' Text
+'nov' Text
+'/' Text
+'07' Text
+'/' Text
+'foodanddrink' Text
+'.' Text
+'features11' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'21' Text
+' ' Text
+'July' Text
+' ' Text
+'2011' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'<' Punctuation
+'ref' Name.Tag
+' ' Text.Whitespace
+'name' Name.Attribute
+'=' Operator
+'obesity' Literal.String
+'/>' Punctuation
+'<' Punctuation
+'ref' Name.Tag
+' ' Text.Whitespace
+'name' Name.Attribute
+'=' Operator
+'daily' Literal.String
+'/>' Punctuation
+'<' Punctuation
+'ref' Name.Tag
+' ' Text.Whitespace
+'name' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+'obesity2' Literal.String.Double
+'"' Literal.String.Double
+'>' Punctuation
+'[' Punctuation
+'http://www.foodnavigator.com/Science-Nutrition/France-heading-for-US-obesity-levels-says-study' Name.Label
+' ' Text.Whitespace
+'France' Text
+' ' Text
+'heading' Text
+' ' Text
+'for' Text
+' ' Text
+'US' Text
+' ' Text
+'obesity' Text
+' ' Text
+'levels' Text
+' ' Text
+'says' Text
+' ' Text
+'study' Text
+']' Punctuation
+'&nbsp;' Name.Entity
+'–' Text
+' ' Text
+'Food' Text
+' ' Text
+'Navigator' Text
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Excessive' Name.Tag
+' ' Name.Tag
+'citations' Name.Tag
+' ' Name.Tag
+'inline' Name.Tag
+'|' Punctuation
+'date' Name.Label
+'=' Operator
+'September' Text
+' ' Text
+'2021' Text
+'}}' Punctuation
+' ' Text
+'The' Text
+' ' Text
+'French' Text
+' ' Text
+'obesity' Text
+' ' Text
+'rate' Text
+' ' Text
+'is' Text
+' ' Text
+'still' Text
+' ' Text
+'far' Text
+' ' Text
+'below' Text
+' ' Text
+'that' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'United' Text
+' ' Text
+'States' Text
+'—' Text
+'currently' Text
+' ' Text
+'equal' Text
+' ' Text
+'to' Text
+' ' Text
+'the' Text
+' ' Text
+'American' Text
+' ' Text
+'rate' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'1970s' Text
+'—' Text
+'and' Text
+' ' Text
+'is' Text
+' ' Text
+'still' Text
+' ' Text
+'the' Text
+' ' Text
+'lowest' Text
+' ' Text
+'in' Text
+' ' Text
+'Europe' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+' ' Text.Whitespace
+'name' Name.Attribute
+' ' Text.Whitespace
+'=' Operator
+' ' Text.Whitespace
+'daily' Literal.String
+'/>' Punctuation
+'<' Punctuation
+'ref' Name.Tag
+' ' Text.Whitespace
+'name' Name.Attribute
+' ' Text.Whitespace
+'=' Operator
+' ' Text.Whitespace
+'bloomberg' Literal.String
+'/>' Punctuation
+'<' Punctuation
+'ref' Name.Tag
+' ' Text.Whitespace
+'name' Name.Attribute
+' ' Text.Whitespace
+'=' Operator
+' ' Text.Whitespace
+'obesity2' Literal.String
+'/>' Punctuation
+' ' Text
+'Authorities' Text
+' ' Text
+'now' Text
+' ' Text
+'regard' Text
+' ' Text
+'obesity' Text
+' ' Text
+'as' Text
+' ' Text
+'one' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'main' Text
+' ' Text
+'public' Text
+' ' Text
+'health' Text
+' ' Text
+'issues' Text
+' ' Text
+'and' Text
+' ' Text
+'fight' Text
+' ' Text
+'it' Text
+' ' Text
+'fiercely' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'date' Name.Label
+'=' Operator
+'14' Text
+' ' Text
+'September' Text
+' ' Text
+'2006' Text
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'New' Text
+' ' Text
+'French' Text
+' ' Text
+'food' Text
+' ' Text
+'guidelines' Text
+' ' Text
+'aimed' Text
+' ' Text
+'at' Text
+' ' Text
+'tackling' Text
+' ' Text
+'obesity' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'nutraingredients' Text
+'.' Text
+'com' Text
+'/' Text
+'Regulation' Text
+'/' Text
+'New' Text
+'-' Text
+'French' Text
+'-' Text
+'food' Text
+'-' Text
+'guidelines' Text
+'-' Text
+'aimed' Text
+'-' Text
+'at' Text
+'-' Text
+'tackling' Text
+'-' Text
+'obesity' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'9' Text
+' ' Text
+'August' Text
+' ' Text
+'2010' Text
+' ' Text
+'|' Punctuation
+'publisher' Name.Label
+'=' Operator
+'Nutraingredients' Text
+'.' Text
+'com' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'Rates' Text
+' ' Text
+'of' Text
+' ' Text
+'[[' Punctuation
+'childhood obesity' Name.Tag
+']]' Punctuation
+' ' Text
+'are' Text
+' ' Text
+'slowing' Text
+' ' Text
+'in' Text
+' ' Text
+'France' Text
+' ' Text
+'while' Text
+' ' Text
+'continuing' Text
+' ' Text
+'to' Text
+' ' Text
+'grow' Text
+' ' Text
+'in' Text
+' ' Text
+'other' Text
+' ' Text
+'countries' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'last' Name.Label
+'=' Operator
+'Petah' Text
+' ' Text
+'Marian' Text
+' ' Text
+'|' Punctuation
+'date' Name.Label
+'=' Operator
+'23' Text
+' ' Text
+'May' Text
+' ' Text
+'2008' Text
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'France' Text
+' ' Text
+'urged' Text
+' ' Text
+'to' Text
+' ' Text
+'get' Text
+' ' Text
+'tough' Text
+' ' Text
+'on' Text
+' ' Text
+'child' Text
+' ' Text
+'obesity' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'just' Text
+'-' Text
+'food' Text
+'.' Text
+'com' Text
+'/' Text
+'analysis' Text
+'/' Text
+'france' Text
+'-' Text
+'urged' Text
+'-' Text
+'to' Text
+'-' Text
+'get' Text
+'-' Text
+'tough' Text
+'-' Text
+'on' Text
+'-' Text
+'child' Text
+'-' Text
+'obesity_id102509' Text
+'.' Text
+'aspx' Text
+' ' Text
+'|' Punctuation
+'url-status' Name.Label
+'=' Operator
+'dead' Text
+' ' Text
+'|' Punctuation
+'archive-url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'web' Text
+'.' Text
+'archive' Text
+'.' Text
+'org' Text
+'/' Text
+'web' Text
+'/' Text
+'20101226205551' Text
+'/' Text
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'just' Text
+'-' Text
+'food' Text
+'.' Text
+'com' Text
+'/' Text
+'analysis' Text
+'/' Text
+'france' Text
+'-' Text
+'urged' Text
+'-' Text
+'to' Text
+'-' Text
+'get' Text
+'-' Text
+'tough' Text
+'-' Text
+'on' Text
+'-' Text
+'child' Text
+'-' Text
+'obesity_id102509' Text
+'.' Text
+'aspx' Text
+' ' Text
+'|' Punctuation
+'archive-date' Name.Label
+'=' Operator
+'26' Text
+' ' Text
+'December' Text
+' ' Text
+'2010' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'9' Text
+' ' Text
+'August' Text
+' ' Text
+'2010' Text
+' ' Text
+'|' Punctuation
+'publisher' Name.Label
+'=' Operator
+'Just' Text
+'-' Text
+'food' Text
+'.' Text
+'com' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'\n' Text
+
+'\n' Text
+
+'===' Generic.Subheading
+'Education' Generic.Subheading
+'===' Generic.Subheading
+'\n' Text.Whitespace
+
+'{{' Punctuation
+'Main' Name.Tag
+'|' Punctuation
+'Education' Text
+' ' Text
+'in' Text
+' ' Text
+'France' Text
+'}}' Punctuation
+'\n' Text
+
+'[[' Punctuation
+'File' Name.Namespace
+':' Punctuation
+'École normale supérieure de Paris, 26 January 2013.jpg' Name.Tag
+'|' Punctuation
+'thumb' Text
+'|' Punctuation
+'upright' Text
+'|' Punctuation
+'left' Text
+'|' Punctuation
+'The' Text
+' ' Text
+'[[' Punctuation
+'École normale supérieure (Paris)' Name.Tag
+'|' Punctuation
+'École' Text
+' ' Text
+'normale' Text
+' ' Text
+'supérieure' Text
+']]' Punctuation
+' ' Text
+'(' Text
+'ENS' Text
+')' Text
+' ' Text
+'in' Text
+' ' Text
+'Paris' Text
+',' Text
+' ' Text
+'established' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'end' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'18th' Text
+' ' Text
+'century' Text
+',' Text
+' ' Text
+'produces' Text
+' ' Text
+'more' Text
+' ' Text
+'[[' Punctuation
+'Nobel Prize' Name.Tag
+']]' Punctuation
+' ' Text
+'laureates' Text
+' ' Text
+'[[' Punctuation
+'per capita' Name.Tag
+']]' Punctuation
+' ' Text
+'than' Text
+' ' Text
+'any' Text
+' ' Text
+'other' Text
+' ' Text
+'institution' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'world' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'Tom' Text
+' ' Text
+'Clynes' Text
+',' Text
+' ' Text
+'[' Punctuation
+'https://www.nature.com/news/where-nobel-winners-get-their-start-1.20757' Name.Label
+' ' Text.Whitespace
+'Where' Text
+' ' Text
+'Nobel' Text
+' ' Text
+'winners' Text
+' ' Text
+'get' Text
+' ' Text
+'their' Text
+' ' Text
+'start' Text
+']' Punctuation
+',' Text
+' ' Text
+'[[' Punctuation
+'Nature (journal)' Name.Tag
+'|' Punctuation
+'Nature' Text
+']]' Punctuation
+',' Text
+' ' Text
+'7' Text
+' ' Text
+'October' Text
+' ' Text
+'2016' Text
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+']]' Punctuation
+'\n' Text
+
+'In' Text
+' ' Text
+'1802' Text
+',' Text
+' ' Text
+'[[' Punctuation
+'Napoleon' Name.Tag
+']]' Punctuation
+' ' Text
+'created' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'lycée' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'the' Text
+' ' Text
+'second' Text
+' ' Text
+'and' Text
+' ' Text
+'final' Text
+' ' Text
+'stage' Text
+' ' Text
+'of' Text
+' ' Text
+'secondary' Text
+' ' Text
+'education' Text
+' ' Text
+'that' Text
+' ' Text
+'prepares' Text
+' ' Text
+'students' Text
+' ' Text
+'for' Text
+' ' Text
+'higher' Text
+' ' Text
+'education' Text
+' ' Text
+'studies' Text
+' ' Text
+'or' Text
+' ' Text
+'a' Text
+' ' Text
+'profession' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'encyclopedia' Name.Tag
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Lycée' Text
+' ' Text
+'|' Punctuation
+'encyclopedia' Name.Label
+'=' Operator
+'Encyclopædia' Text
+' ' Text
+'Britannica' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'britannica' Text
+'.' Text
+'com' Text
+'/' Text
+'EBchecked' Text
+'/' Text
+'topic' Text
+'/' Text
+'352505' Text
+'/' Text
+'lycee' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'22' Text
+' ' Text
+'July' Text
+' ' Text
+'2011' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'Nevertheless' Text
+',' Text
+' ' Text
+'[[' Punctuation
+'Jules Ferry' Name.Tag
+']]' Punctuation
+' ' Text
+'is' Text
+' ' Text
+'considered' Text
+' ' Text
+'the' Text
+' ' Text
+'father' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'French' Text
+' ' Text
+'modern' Text
+' ' Text
+'school' Text
+',' Text
+' ' Text
+'leading' Text
+' ' Text
+'reforms' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'late' Text
+' ' Text
+'19th' Text
+' ' Text
+'century' Text
+' ' Text
+'that' Text
+' ' Text
+'established' Text
+' ' Text
+'free' Text
+',' Text
+' ' Text
+'secular' Text
+' ' Text
+'and' Text
+' ' Text
+'compulsory' Text
+' ' Text
+'education' Text
+' ' Text
+'(' Text
+'currently' Text
+' ' Text
+'mandatory' Text
+' ' Text
+'until' Text
+' ' Text
+'the' Text
+' ' Text
+'age' Text
+' ' Text
+'of' Text
+' ' Text
+'16' Text
+')' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'In' Name.Tag
+' ' Name.Tag
+'lang' Name.Tag
+'|' Punctuation
+'fr' Text
+'}}' Punctuation
+' ' Text
+'[' Punctuation
+'http://www.senat.fr/rap/l97-504/l97-5041.html' Name.Label
+' ' Text.Whitespace
+'II' Text
+'.' Text
+' ' Text
+'L' Text
+"'" Text
+'évolution' Text
+' ' Text
+'du' Text
+' ' Text
+'contenu' Text
+' ' Text
+'de' Text
+' ' Text
+'l' Text
+"'" Text
+'obligation' Text
+' ' Text
+'scolaire' Text
+']' Punctuation
+'.' Text
+' ' Text
+'Sénat' Text
+'.' Text
+'fr' Text
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'In' Name.Tag
+' ' Name.Tag
+'lang' Name.Tag
+'|' Punctuation
+'fr' Text
+'}}' Punctuation
+' ' Text
+'[' Punctuation
+'https://web.archive.org/web/20110605080546/http://www.assemblee-nationale.fr/site-jeunes/laicite/fiche-dates/fiche-1881-1882/fiche.pdf' Name.Label
+' ' Text.Whitespace
+'1881' Text
+'–' Text
+'1882' Text
+' ' Text
+':' Text
+' ' Text
+'Lois' Text
+' ' Text
+'Ferry' Text
+' ' Text
+'École' Text
+' ' Text
+'publique' Text
+' ' Text
+'gratuite' Text
+',' Text
+' ' Text
+'laïque' Text
+' ' Text
+'et' Text
+' ' Text
+'obligatoire' Text
+']' Punctuation
+'.' Text
+' ' Text
+'Assemblé' Text
+' ' Text
+'Nationale' Text
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'\n' Text
+
+'\n' Text
+
+'French' Text
+' ' Text
+'education' Text
+' ' Text
+'is' Text
+' ' Text
+'centralised' Text
+' ' Text
+'and' Text
+' ' Text
+'divided' Text
+' ' Text
+'into' Text
+' ' Text
+'three' Text
+' ' Text
+'stages' Text
+':' Text
+' ' Text
+'Primary' Text
+',' Text
+' ' Text
+'secondary' Text
+',' Text
+' ' Text
+'and' Text
+' ' Text
+'higher' Text
+' ' Text
+'education' Text
+'.' Text
+' ' Text
+'The' Text
+' ' Text
+'[[' Punctuation
+'Programme for International Student Assessment' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'coordinated' Text
+' ' Text
+'by' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'OECD' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'ranked' Text
+' ' Text
+'France' Text
+"'" Text
+'s' Text
+' ' Text
+'education' Text
+' ' Text
+'as' Text
+' ' Text
+'near' Text
+' ' Text
+'the' Text
+' ' Text
+'OECD' Text
+' ' Text
+'average' Text
+' ' Text
+'in' Text
+' ' Text
+'2018' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Compare' Text
+' ' Text
+'your' Text
+' ' Text
+'country' Text
+' ' Text
+'-' Text
+' ' Text
+'PISA' Text
+' ' Text
+'2018' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'www2' Text
+'.' Text
+'compareyourcountry' Text
+'.' Text
+'org' Text
+'/' Text
+'pisa' Text
+'/' Text
+'country' Text
+'/' Text
+'FRA' Text
+'?' Text
+'lg' Text
+'=' Text
+'en' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'4' Text
+' ' Text
+'October' Text
+' ' Text
+'2021' Text
+' ' Text
+'|' Punctuation
+'website' Name.Label
+'=' Operator
+'www2' Text
+'.' Text
+'compareyourcountry' Text
+'.' Text
+'org' Text
+' ' Text
+'|' Punctuation
+'language' Name.Label
+'=' Operator
+'en' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'<' Punctuation
+'ref' Name.Tag
+' ' Text.Whitespace
+'name' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+':' Literal.String.Double
+'2' Literal.String.Double
+'"' Literal.String.Double
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Programme' Text
+' ' Text
+'for' Text
+' ' Text
+'International' Text
+' ' Text
+'Student' Text
+' ' Text
+'Assessment' Text
+' ' Text
+'(' Text
+'PISA' Text
+')' Text
+' ' Text
+'France' Text
+' ' Text
+'report' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'oecd' Text
+'.' Text
+'org' Text
+'/' Text
+'pisa' Text
+'/' Text
+'publications' Text
+'/' Text
+'PISA2018_CN_FRA' Text
+'.' Text
+'pdf' Text
+' ' Text
+'|' Punctuation
+'website' Name.Label
+'=' Operator
+'oecd' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'France' Text
+' ' Text
+'was' Text
+' ' Text
+'one' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'PISA' Text
+'-' Text
+'participating' Text
+' ' Text
+'countries' Text
+' ' Text
+'where' Text
+' ' Text
+'school' Text
+' ' Text
+'children' Text
+' ' Text
+'perceived' Text
+' ' Text
+'some' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'lowest' Text
+' ' Text
+'levels' Text
+' ' Text
+'of' Text
+' ' Text
+'support' Text
+' ' Text
+'and' Text
+' ' Text
+'feedback' Text
+' ' Text
+'from' Text
+' ' Text
+'their' Text
+' ' Text
+'teachers' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+' ' Text.Whitespace
+'name' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+':' Literal.String.Double
+'2' Literal.String.Double
+'"' Literal.String.Double
+' ' Text.Whitespace
+'/>' Punctuation
+' ' Text
+'Schoolchildren' Text
+' ' Text
+'in' Text
+' ' Text
+'France' Text
+' ' Text
+'reported' Text
+' ' Text
+'greater' Text
+' ' Text
+'concern' Text
+' ' Text
+'about' Text
+' ' Text
+'the' Text
+' ' Text
+'disciplinary' Text
+' ' Text
+'climate' Text
+' ' Text
+'and' Text
+' ' Text
+'behaviour' Text
+' ' Text
+'in' Text
+' ' Text
+'classrooms' Text
+' ' Text
+'compared' Text
+' ' Text
+'to' Text
+' ' Text
+'other' Text
+' ' Text
+'[[' Punctuation
+'OECD' Name.Tag
+']]' Punctuation
+' ' Text
+'countries' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+' ' Text.Whitespace
+'name' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+':' Literal.String.Double
+'2' Literal.String.Double
+'"' Literal.String.Double
+' ' Text.Whitespace
+'/>' Punctuation
+'\n' Text
+
+'\n' Text
+
+'Primary' Text
+' ' Text
+'and' Text
+' ' Text
+'secondary' Text
+' ' Text
+'education' Text
+' ' Text
+'are' Text
+' ' Text
+'predominantly' Text
+' ' Text
+'public' Text
+',' Text
+' ' Text
+'and' Text
+' ' Text
+'run' Text
+' ' Text
+'by' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Ministry of National Education (France)' Name.Tag
+'|' Punctuation
+'Ministry' Text
+' ' Text
+'of' Text
+' ' Text
+'National' Text
+' ' Text
+'Education' Text
+']]' Punctuation
+'.' Text
+' ' Text
+'While' Text
+' ' Text
+'training' Text
+' ' Text
+'and' Text
+' ' Text
+'remuneration' Text
+' ' Text
+'of' Text
+' ' Text
+'teachers' Text
+' ' Text
+'and' Text
+' ' Text
+'the' Text
+' ' Text
+'curriculum' Text
+' ' Text
+'are' Text
+' ' Text
+'the' Text
+' ' Text
+'responsibility' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'state' Text
+' ' Text
+'centrally' Text
+',' Text
+' ' Text
+'the' Text
+' ' Text
+'management' Text
+' ' Text
+'of' Text
+' ' Text
+'primary' Text
+' ' Text
+'and' Text
+' ' Text
+'secondary' Text
+' ' Text
+'schools' Text
+' ' Text
+'is' Text
+' ' Text
+'overseen' Text
+' ' Text
+'by' Text
+' ' Text
+'local' Text
+' ' Text
+'authorities' Text
+'.' Text
+' ' Text
+'Primary' Text
+' ' Text
+'education' Text
+' ' Text
+'comprises' Text
+' ' Text
+'two' Text
+' ' Text
+'phases' Text
+',' Text
+' ' Text
+'nursery' Text
+' ' Text
+'school' Text
+' ' Text
+'(' Text
+"''" Generic.Emph
+'école' Generic.Emph
+' ' Generic.Emph
+'maternelle' Generic.Emph
+"''" Generic.Emph
+')' Text
+' ' Text
+'and' Text
+' ' Text
+'elementary' Text
+' ' Text
+'school' Text
+' ' Text
+'(' Text
+"''" Generic.Emph
+'école' Generic.Emph
+' ' Generic.Emph
+'élémentaire' Generic.Emph
+"''" Generic.Emph
+')' Text
+'.' Text
+' ' Text
+'Nursery' Text
+' ' Text
+'school' Text
+' ' Text
+'aims' Text
+' ' Text
+'to' Text
+' ' Text
+'stimulate' Text
+' ' Text
+'the' Text
+' ' Text
+'minds' Text
+' ' Text
+'of' Text
+' ' Text
+'very' Text
+' ' Text
+'young' Text
+' ' Text
+'children' Text
+' ' Text
+'and' Text
+' ' Text
+'promote' Text
+' ' Text
+'their' Text
+' ' Text
+'socialisation' Text
+' ' Text
+'and' Text
+' ' Text
+'development' Text
+' ' Text
+'of' Text
+' ' Text
+'a' Text
+' ' Text
+'basic' Text
+' ' Text
+'grasp' Text
+' ' Text
+'of' Text
+' ' Text
+'language' Text
+' ' Text
+'and' Text
+' ' Text
+'numbers' Text
+'.' Text
+' ' Text
+'Around' Text
+' ' Text
+'the' Text
+' ' Text
+'age' Text
+' ' Text
+'of' Text
+' ' Text
+'six' Text
+',' Text
+' ' Text
+'children' Text
+' ' Text
+'transfer' Text
+' ' Text
+'to' Text
+' ' Text
+'elementary' Text
+' ' Text
+'school' Text
+',' Text
+' ' Text
+'whose' Text
+' ' Text
+'primary' Text
+' ' Text
+'objectives' Text
+' ' Text
+'are' Text
+' ' Text
+'learning' Text
+' ' Text
+'about' Text
+' ' Text
+'writing' Text
+',' Text
+' ' Text
+'arithmetic' Text
+' ' Text
+'and' Text
+' ' Text
+'citizenship' Text
+'.' Text
+' ' Text
+'Secondary' Text
+' ' Text
+'education' Text
+' ' Text
+'also' Text
+' ' Text
+'consists' Text
+' ' Text
+'of' Text
+' ' Text
+'two' Text
+' ' Text
+'phases' Text
+'.' Text
+' ' Text
+'The' Text
+' ' Text
+'first' Text
+' ' Text
+'is' Text
+' ' Text
+'delivered' Text
+' ' Text
+'through' Text
+' ' Text
+'colleges' Text
+' ' Text
+'(' Text
+"''" Generic.Emph
+'collège' Generic.Emph
+"''" Generic.Emph
+')' Text
+' ' Text
+'and' Text
+' ' Text
+'leads' Text
+' ' Text
+'to' Text
+' ' Text
+'the' Text
+' ' Text
+'national' Text
+' ' Text
+'certificate' Text
+' ' Text
+'(' Text
+'[[' Punctuation
+'Diplôme national du brevet' Name.Tag
+']]' Punctuation
+')' Text
+'.' Text
+' ' Text
+'The' Text
+' ' Text
+'second' Text
+' ' Text
+'is' Text
+' ' Text
+'offered' Text
+' ' Text
+'in' Text
+' ' Text
+'high' Text
+' ' Text
+'schools' Text
+' ' Text
+'(' Text
+"''" Generic.Emph
+'lycée' Generic.Emph
+"''" Generic.Emph
+')' Text
+' ' Text
+'and' Text
+' ' Text
+'finishes' Text
+' ' Text
+'in' Text
+' ' Text
+'national' Text
+' ' Text
+'exams' Text
+' ' Text
+'leading' Text
+' ' Text
+'to' Text
+' ' Text
+'a' Text
+' ' Text
+'baccalaureate' Text
+' ' Text
+'(' Text
+"''" Generic.Emph
+'baccalauréat' Generic.Emph
+"''" Generic.Emph
+',' Text
+' ' Text
+'available' Text
+' ' Text
+'in' Text
+' ' Text
+'professional' Text
+',' Text
+' ' Text
+'technical' Text
+' ' Text
+'or' Text
+' ' Text
+'general' Text
+' ' Text
+'flavours' Text
+')' Text
+' ' Text
+'or' Text
+' ' Text
+'certificate' Text
+' ' Text
+'of' Text
+' ' Text
+'professional' Text
+' ' Text
+'competence' Text
+' ' Text
+'(' Text
+"''" Generic.Emph
+'certificat' Generic.Emph
+' ' Generic.Emph
+'d' Generic.Emph
+"'" Generic.Emph
+'aptitude' Generic.Emph
+' ' Generic.Emph
+'professionelle' Generic.Emph
+"''" Generic.Emph
+')' Text
+'.' Text
+'\n' Text
+
+'\n' Text
+
+'Higher' Text
+' ' Text
+'education' Text
+' ' Text
+'is' Text
+' ' Text
+'divided' Text
+' ' Text
+'between' Text
+' ' Text
+'[[' Punctuation
+'Universities in France' Name.Tag
+'|' Punctuation
+'public' Text
+' ' Text
+'universities' Text
+']]' Punctuation
+' ' Text
+'and' Text
+' ' Text
+'the' Text
+' ' Text
+'prestigious' Text
+' ' Text
+'and' Text
+' ' Text
+'selective' Text
+' ' Text
+"''" Generic.Emph
+'[[' Punctuation
+'Grande école' Name.Tag
+'|' Punctuation
+'Grandes' Text
+' ' Text
+'écoles' Text
+']]' Punctuation
+"''" Generic.Emph
+',' Text
+' ' Text
+'such' Text
+' ' Text
+'as' Text
+' ' Text
+'[[' Punctuation
+'Sciences Po' Name.Tag
+'|' Punctuation
+'Sciences' Text
+' ' Text
+'Po' Text
+' ' Text
+'Paris' Text
+']]' Punctuation
+' ' Text
+'for' Text
+' ' Text
+'Political' Text
+' ' Text
+'studies' Text
+',' Text
+' ' Text
+'[[' Punctuation
+'HEC Paris' Name.Tag
+']]' Punctuation
+' ' Text
+'for' Text
+' ' Text
+'Economics' Text
+',' Text
+' ' Text
+'[[' Punctuation
+'École Polytechnique' Name.Tag
+'|' Punctuation
+'Polytechnique' Text
+']]' Punctuation
+',' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'École des hautes études en sciences sociales' Name.Tag
+']]' Punctuation
+' ' Text
+'for' Text
+' ' Text
+'Social' Text
+' ' Text
+'studies' Text
+' ' Text
+'and' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'École nationale supérieure des mines de Paris' Name.Tag
+']]' Punctuation
+' ' Text
+'that' Text
+' ' Text
+'produce' Text
+' ' Text
+'high' Text
+'-' Text
+'profile' Text
+' ' Text
+'engineers' Text
+',' Text
+' ' Text
+'or' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+"École nationale d'administration" Name.Tag
+']]' Punctuation
+' ' Text
+'for' Text
+' ' Text
+'careers' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+"Grands corps de l'État" Name.Tag
+'|' Punctuation
+'Grands' Text
+' ' Text
+'Corps' Text
+']]' Punctuation
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'state' Text
+'.' Text
+' ' Text
+'The' Text
+' ' Text
+"''" Generic.Emph
+'Grandes' Generic.Emph
+' ' Generic.Emph
+'écoles' Generic.Emph
+"''" Generic.Emph
+' ' Text
+'have' Text
+' ' Text
+'been' Text
+' ' Text
+'criticised' Text
+' ' Text
+'for' Text
+' ' Text
+'alleged' Text
+' ' Text
+'[[' Punctuation
+'elitism' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'producing' Text
+' ' Text
+'many' Text
+' ' Text
+'if' Text
+' ' Text
+'not' Text
+' ' Text
+'most' Text
+' ' Text
+'of' Text
+' ' Text
+'France' Text
+"'" Text
+'s' Text
+' ' Text
+'high' Text
+'-' Text
+'ranking' Text
+' ' Text
+'civil' Text
+' ' Text
+'servants' Text
+',' Text
+' ' Text
+'CEOs' Text
+' ' Text
+'and' Text
+' ' Text
+'politicians' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+' ' Text.Whitespace
+'name' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+'gécoles' Literal.String.Double
+'"' Literal.String.Double
+'>' Punctuation
+'{{' Punctuation
+'In' Name.Tag
+' ' Name.Tag
+'lang' Name.Tag
+'|' Punctuation
+'fr' Text
+'}}' Punctuation
+' ' Text
+'[' Punctuation
+'http://www.lefigaro.fr/formation/2010/01/08/01015-20100108ARTFIG00525-les-grandes-ecoles-dans-la-tourmente-.php' Name.Label
+' ' Text.Whitespace
+'Les' Text
+' ' Text
+'grandes' Text
+' ' Text
+'écoles' Text
+' ' Text
+'dans' Text
+' ' Text
+'la' Text
+' ' Text
+'tourmente' Text
+']' Punctuation
+'&nbsp;' Name.Entity
+'–' Text
+' ' Text
+'[[' Punctuation
+'Le Figaro' Name.Tag
+']]' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'\n' Text
+
+'\n' Text
+
+'==' Generic.Subheading
+'Culture' Generic.Subheading
+'==' Generic.Subheading
+'\n' Text.Whitespace
+
+'{{' Punctuation
+'Main' Name.Tag
+'|' Punctuation
+'Culture' Text
+' ' Text
+'of' Text
+' ' Text
+'France' Text
+'}}' Punctuation
+'\n' Text
+
+'[[' Punctuation
+'File' Name.Namespace
+':' Punctuation
+'Eugène Delacroix - La liberté guidant le peuple.jpg' Name.Tag
+'|' Punctuation
+'thumb' Text
+'|' Punctuation
+'[[' Punctuation
+'Eugène Delacroix' Name.Tag
+']]' Punctuation
+"'" Text
+'s' Text
+' ' Text
+"''" Generic.Emph
+'[[' Punctuation
+'Liberty Leading the People' Name.Tag
+']]' Punctuation
+"''" Generic.Emph
+' ' Text
+'(' Text
+'1830' Text
+')' Text
+' ' Text
+'portrays' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'July Revolution' Name.Tag
+']]' Punctuation
+' ' Text
+'using' Text
+' ' Text
+'the' Text
+' ' Text
+'stylistic' Text
+' ' Text
+'views' Text
+' ' Text
+'of' Text
+' ' Text
+'[[' Punctuation
+'Romanticism' Name.Tag
+']]' Punctuation
+'.' Text
+' ' Text
+'Since' Text
+' ' Text
+'Liberty' Text
+' ' Text
+'is' Text
+' ' Text
+'part' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'motto' Text
+' ' Text
+'"' Text
+'[[' Punctuation
+'Liberté, égalité, fraternité' Name.Tag
+']]' Punctuation
+'"' Text
+',' Text
+' ' Text
+'as' Text
+' ' Text
+'the' Text
+' ' Text
+'French' Text
+' ' Text
+'put' Text
+' ' Text
+'it' Text
+',' Text
+' ' Text
+'this' Text
+' ' Text
+'painting' Text
+' ' Text
+'has' Text
+' ' Text
+'become' Text
+' ' Text
+'the' Text
+' ' Text
+'primary' Text
+' ' Text
+'symbol' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'French' Text
+' ' Text
+'Republic' Text
+'.' Text
+']]' Punctuation
+'\n' Text
+
+'\n' Text
+
+'The' Text
+' ' Text
+'creation' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Ministry of Culture (France)' Name.Tag
+'|' Punctuation
+'Ministry' Text
+' ' Text
+'of' Text
+' ' Text
+'Culture' Text
+']]' Punctuation
+' ' Text
+'in' Text
+' ' Text
+'1959' Text
+' ' Text
+'helped' Text
+' ' Text
+'preserve' Text
+' ' Text
+'the' Text
+' ' Text
+'cultural' Text
+' ' Text
+'heritage' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'country' Text
+' ' Text
+'and' Text
+' ' Text
+'make' Text
+' ' Text
+'it' Text
+' ' Text
+'available' Text
+' ' Text
+'to' Text
+' ' Text
+'the' Text
+' ' Text
+'public' Text
+' ' Text
+'by' Text
+' ' Text
+'granting' Text
+' ' Text
+'subsidies' Text
+' ' Text
+'to' Text
+' ' Text
+'artists' Text
+',' Text
+' ' Text
+'promoting' Text
+' ' Text
+'French' Text
+' ' Text
+'culture' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'world' Text
+',' Text
+' ' Text
+'supporting' Text
+' ' Text
+'festivals' Text
+' ' Text
+'and' Text
+' ' Text
+'cultural' Text
+' ' Text
+'events' Text
+',' Text
+' ' Text
+'and' Text
+' ' Text
+'protecting' Text
+' ' Text
+'[[' Punctuation
+'Monument historique' Name.Tag
+'|' Punctuation
+'historical' Text
+' ' Text
+'monuments' Text
+']]' Punctuation
+'.' Text
+' ' Text
+'The' Text
+' ' Text
+'French' Text
+' ' Text
+'government' Text
+' ' Text
+'also' Text
+' ' Text
+'succeeded' Text
+' ' Text
+'in' Text
+' ' Text
+'maintaining' Text
+' ' Text
+'a' Text
+' ' Text
+'[[' Punctuation
+'cultural exception' Name.Tag
+']]' Punctuation
+' ' Text
+'to' Text
+' ' Text
+'defend' Text
+' ' Text
+'audiovisual' Text
+' ' Text
+'products' Text
+' ' Text
+'made' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'country' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'Geneviève' Text
+' ' Text
+'Poujol' Text
+',' Text
+' ' Text
+'and' Text
+' ' Text
+'Michael' Text
+' ' Text
+'Kelly' Text
+',' Text
+' ' Text
+'"' Text
+'The' Text
+' ' Text
+'creation' Text
+' ' Text
+'of' Text
+' ' Text
+'a' Text
+' ' Text
+'Ministry' Text
+' ' Text
+'of' Text
+' ' Text
+'Culture' Text
+' ' Text
+'in' Text
+' ' Text
+'France' Text
+'.' Text
+'"' Text
+' ' Text
+"''" Generic.Emph
+'French' Generic.Emph
+' ' Generic.Emph
+'Cultural' Generic.Emph
+' ' Generic.Emph
+'Studies' Generic.Emph
+"''" Generic.Emph
+' ' Text
+'2' Text
+'.' Text
+'6' Text
+' ' Text
+'(' Text
+'1991' Text
+')' Text
+':' Text
+' ' Text
+'251' Text
+'-' Text
+'260' Text
+'.' Text
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'\n' Text
+
+'\n' Text
+
+'France' Text
+' ' Text
+'has' Text
+' ' Text
+'1' Text
+',' Text
+'200' Text
+' ' Text
+'[[' Punctuation
+'List of museums in France' Name.Tag
+'|' Punctuation
+'museums' Text
+']]' Punctuation
+',' Text
+' ' Text
+'visited' Text
+' ' Text
+'by' Text
+' ' Text
+'more' Text
+' ' Text
+'than' Text
+' ' Text
+'50' Text
+'&nbsp;' Name.Entity
+'million' Text
+' ' Text
+'people' Text
+' ' Text
+'annually' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'Ministère' Text
+' ' Text
+'de' Text
+' ' Text
+'la' Text
+' ' Text
+'Culture' Text
+' ' Text
+'et' Text
+' ' Text
+'de' Text
+' ' Text
+'la' Text
+' ' Text
+'Communication' Text
+',' Text
+' ' Text
+'"' Text
+'Cultura' Text
+' ' Text
+'statistics' Text
+'"' Text
+',' Text
+' ' Text
+'[' Punctuation
+'http://www2.culture.gouv.fr/culture/deps/2008/pdf/minichiffrescles2010-en.pdf' Name.Label
+' ' Text.Whitespace
+'Key' Text
+' ' Text
+'figures' Text
+']' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'The' Text
+' ' Text
+'most' Text
+' ' Text
+'important' Text
+' ' Text
+'cultural' Text
+' ' Text
+'sites' Text
+' ' Text
+'are' Text
+' ' Text
+'run' Text
+' ' Text
+'by' Text
+' ' Text
+'the' Text
+' ' Text
+'government' Text
+',' Text
+' ' Text
+'for' Text
+' ' Text
+'instance' Text
+' ' Text
+'through' Text
+' ' Text
+'the' Text
+' ' Text
+'public' Text
+' ' Text
+'agency' Text
+' ' Text
+'[[' Punctuation
+'Centre des monuments nationaux' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'which' Text
+' ' Text
+'is' Text
+' ' Text
+'responsible' Text
+' ' Text
+'for' Text
+' ' Text
+'approximately' Text
+' ' Text
+'85' Text
+' ' Text
+'historical' Text
+' ' Text
+'monuments' Text
+'.' Text
+' ' Text
+'The' Text
+' ' Text
+'43' Text
+',' Text
+'180' Text
+' ' Text
+'buildings' Text
+' ' Text
+'protected' Text
+' ' Text
+'as' Text
+' ' Text
+'historical' Text
+' ' Text
+'monuments' Text
+' ' Text
+'include' Text
+' ' Text
+'mainly' Text
+' ' Text
+'residences' Text
+' ' Text
+'(' Text
+'many' Text
+' ' Text
+'[[' Punctuation
+'List of castles in France' Name.Tag
+'|' Punctuation
+'castles' Text
+']]' Punctuation
+')' Text
+' ' Text
+'and' Text
+' ' Text
+'religious' Text
+' ' Text
+'buildings' Text
+' ' Text
+'(' Text
+'[[' Punctuation
+'List of cathedrals in France' Name.Tag
+'|' Punctuation
+'cathedrals' Text
+']]' Punctuation
+',' Text
+' ' Text
+'[[' Punctuation
+'List of basilicas in France' Name.Tag
+'|' Punctuation
+'basilicas' Text
+']]' Punctuation
+',' Text
+' ' Text
+'[[' Punctuation
+'Church (building)' Name.Tag
+'|' Punctuation
+'churches' Text
+']]' Punctuation
+')' Text
+',' Text
+' ' Text
+'but' Text
+' ' Text
+'also' Text
+' ' Text
+'statues' Text
+',' Text
+' ' Text
+'memorials' Text
+' ' Text
+'and' Text
+' ' Text
+'[[' Punctuation
+'Gardens of France' Name.Tag
+'|' Punctuation
+'gardens' Text
+']]' Punctuation
+'.' Text
+' ' Text
+'[[' Punctuation
+'UNESCO' Name.Tag
+']]' Punctuation
+' ' Text
+'inscribed' Text
+' ' Text
+'45' Text
+' ' Text
+'sites' Text
+' ' Text
+'in' Text
+' ' Text
+'[[' Punctuation
+'Table of World Heritage Sites by country' Name.Tag
+'|' Punctuation
+'France' Text
+' ' Text
+'on' Text
+' ' Text
+'the' Text
+' ' Text
+'World' Text
+' ' Text
+'Heritage' Text
+' ' Text
+'List' Text
+']]' Punctuation
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Official' Text
+' ' Text
+'properties' Text
+' ' Text
+'inscribed' Text
+' ' Text
+'on' Text
+' ' Text
+'the' Text
+' ' Text
+'UNESCO' Text
+' ' Text
+'World' Text
+' ' Text
+'Heritage' Text
+' ' Text
+'List' Text
+' ' Text
+'in' Text
+' ' Text
+'France' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'whc' Text
+'.' Text
+'unesco' Text
+'.' Text
+'org' Text
+'/' Text
+'en' Text
+'/' Text
+'statesparties' Text
+'/' Text
+'fr' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'9' Text
+' ' Text
+'July' Text
+' ' Text
+'2015' Text
+' ' Text
+'|' Punctuation
+'publisher' Name.Label
+'=' Operator
+'UNESCO' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'\n' Text
+
+'\n' Text
+
+'===' Generic.Subheading
+'Art' Generic.Subheading
+'===' Generic.Subheading
+'\n' Text.Whitespace
+
+'{{' Punctuation
+'Main' Name.Tag
+'|' Punctuation
+'French' Text
+' ' Text
+'art' Text
+'}}' Punctuation
+'\n' Text
+
+'[[' Punctuation
+'File' Name.Namespace
+':' Punctuation
+'Louvre Museum Wikimedia Commons.jpg' Name.Tag
+'|' Punctuation
+'thumb' Text
+'|' Punctuation
+'left' Text
+'|' Punctuation
+'upright' Name.Attribute
+'=' Operator
+'1' Text
+'.' Text
+'2' Text
+'|' Punctuation
+'The' Text
+' ' Text
+'[[' Punctuation
+'Louvre' Name.Tag
+'|' Punctuation
+'Louvre' Text
+' ' Text
+'Museum' Text
+']]' Punctuation
+',' Text
+' ' Text
+'widely' Text
+' ' Text
+'recognised' Text
+' ' Text
+'as' Text
+' ' Text
+'one' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'finest' Text
+' ' Text
+'[[' Punctuation
+'art museum' Name.Tag
+']]' Punctuation
+'s' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'world' Text
+',' Text
+' ' Text
+'was' Text
+' ' Text
+'in' Text
+' ' Text
+'2019' Text
+' ' Text
+'both' Text
+' ' Text
+'[[' Punctuation
+'List of largest art museums' Name.Tag
+'|' Punctuation
+'the' Text
+' ' Text
+'largest' Text
+']]' Punctuation
+' ' Text
+'and' Text
+' ' Text
+'[[' Punctuation
+'List of most-visited museums' Name.Tag
+'|' Punctuation
+'the' Text
+' ' Text
+'most' Text
+'-' Text
+'visited' Text
+' ' Text
+'museum' Text
+']]' Punctuation
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+' ' Text.Whitespace
+'name' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+'ArtNewspaper2019' Literal.String.Double
+'"' Literal.String.Double
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'date' Name.Label
+'=' Operator
+'31' Text
+' ' Text
+'March' Text
+' ' Text
+'2020' Text
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Art' Text
+"'" Text
+'s' Text
+' ' Text
+'Most' Text
+' ' Text
+'Popular' Text
+':' Text
+' ' Text
+'here' Text
+' ' Text
+'are' Text
+' ' Text
+'2019' Text
+"'" Text
+'s' Text
+' ' Text
+'most' Text
+' ' Text
+'visited' Text
+' ' Text
+'shows' Text
+' ' Text
+'and' Text
+' ' Text
+'museums' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'theartnewspaper' Text
+'.' Text
+'com' Text
+'/' Text
+'analysis' Text
+'/' Text
+'art' Text
+'-' Text
+'s' Text
+'-' Text
+'most' Text
+'-' Text
+'popular' Text
+'-' Text
+'here' Text
+'-' Text
+'are' Text
+'-' Text
+'2019' Text
+'-' Text
+'s' Text
+'-' Text
+'most' Text
+'-' Text
+'visited' Text
+'-' Text
+'shows' Text
+'-' Text
+'and' Text
+'-' Text
+'museums' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'25' Text
+' ' Text
+'June' Text
+' ' Text
+'2020' Text
+' ' Text
+'|' Punctuation
+'publisher' Name.Label
+'=' Operator
+'The' Text
+' ' Text
+'Art' Text
+' ' Text
+'Newspaper' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+']]' Punctuation
+'\n' Text
+
+'The' Text
+' ' Text
+'origins' Text
+' ' Text
+'of' Text
+' ' Text
+'French' Text
+' ' Text
+'art' Text
+' ' Text
+'were' Text
+' ' Text
+'very' Text
+' ' Text
+'much' Text
+' ' Text
+'influenced' Text
+' ' Text
+'by' Text
+' ' Text
+'[[' Punctuation
+'Flemish art' Name.Tag
+']]' Punctuation
+' ' Text
+'and' Text
+' ' Text
+'by' Text
+' ' Text
+'[[' Punctuation
+'Italian art' Name.Tag
+']]' Punctuation
+' ' Text
+'at' Text
+' ' Text
+'the' Text
+' ' Text
+'time' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Renaissance' Name.Tag
+']]' Punctuation
+'.' Text
+' ' Text
+'[[' Punctuation
+'Jean Fouquet' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'the' Text
+' ' Text
+'most' Text
+' ' Text
+'famous' Text
+' ' Text
+'medieval' Text
+' ' Text
+'French' Text
+' ' Text
+'painter' Text
+',' Text
+' ' Text
+'is' Text
+' ' Text
+'said' Text
+' ' Text
+'to' Text
+' ' Text
+'have' Text
+' ' Text
+'been' Text
+' ' Text
+'the' Text
+' ' Text
+'first' Text
+' ' Text
+'to' Text
+' ' Text
+'travel' Text
+' ' Text
+'to' Text
+' ' Text
+'Italy' Text
+' ' Text
+'and' Text
+' ' Text
+'experience' Text
+' ' Text
+'the' Text
+' ' Text
+'Early' Text
+' ' Text
+'Renaissance' Text
+' ' Text
+'firsthand' Text
+'.' Text
+' ' Text
+'The' Text
+' ' Text
+'Renaissance' Text
+' ' Text
+'painting' Text
+' ' Text
+'[[' Punctuation
+'School of Fontainebleau' Name.Tag
+']]' Punctuation
+' ' Text
+'was' Text
+' ' Text
+'directly' Text
+' ' Text
+'inspired' Text
+' ' Text
+'by' Text
+' ' Text
+'Italian' Text
+' ' Text
+'painters' Text
+' ' Text
+'such' Text
+' ' Text
+'as' Text
+' ' Text
+'[[' Punctuation
+'Primaticcio' Name.Tag
+']]' Punctuation
+' ' Text
+'and' Text
+' ' Text
+'[[' Punctuation
+'Rosso Fiorentino' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'who' Text
+' ' Text
+'both' Text
+' ' Text
+'worked' Text
+' ' Text
+'in' Text
+' ' Text
+'France' Text
+'.' Text
+' ' Text
+'Two' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'most' Text
+' ' Text
+'famous' Text
+' ' Text
+'French' Text
+' ' Text
+'artists' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'time' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Baroque era' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'[[' Punctuation
+'Nicolas Poussin' Name.Tag
+']]' Punctuation
+' ' Text
+'and' Text
+' ' Text
+'[[' Punctuation
+'Claude Lorrain' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'lived' Text
+' ' Text
+'in' Text
+' ' Text
+'Italy' Text
+'.' Text
+' ' Text
+'The' Text
+' ' Text
+'17th' Text
+' ' Text
+'century' Text
+' ' Text
+'was' Text
+' ' Text
+'the' Text
+' ' Text
+'period' Text
+' ' Text
+'when' Text
+' ' Text
+'French' Text
+' ' Text
+'painting' Text
+' ' Text
+'became' Text
+' ' Text
+'prominent' Text
+' ' Text
+'and' Text
+' ' Text
+'individualised' Text
+' ' Text
+'itself' Text
+' ' Text
+'through' Text
+' ' Text
+'classicism' Text
+'.' Text
+' ' Text
+'Prime' Text
+' ' Text
+'Minister' Text
+' ' Text
+'[[' Punctuation
+'Jean-Baptiste Colbert' Name.Tag
+']]' Punctuation
+' ' Text
+'founded' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Royal Academy of Painting and Sculpture' Name.Tag
+']]' Punctuation
+' ' Text
+'in' Text
+' ' Text
+'1648' Text
+' ' Text
+'under' Text
+' ' Text
+'Louis' Text
+' ' Text
+'XIV' Text
+' ' Text
+'to' Text
+' ' Text
+'protect' Text
+' ' Text
+'these' Text
+' ' Text
+'artists' Text
+';' Text
+' ' Text
+'in' Text
+' ' Text
+'1666' Text
+' ' Text
+'he' Text
+' ' Text
+'also' Text
+' ' Text
+'created' Text
+' ' Text
+'the' Text
+' ' Text
+'still' Text
+'-' Text
+'active' Text
+' ' Text
+'[[' Punctuation
+'French Academy in Rome' Name.Tag
+']]' Punctuation
+' ' Text
+'to' Text
+' ' Text
+'have' Text
+' ' Text
+'direct' Text
+' ' Text
+'relations' Text
+' ' Text
+'with' Text
+' ' Text
+'Italian' Text
+' ' Text
+'artists' Text
+'.' Text
+'\n' Text
+
+'\n' Text
+
+'French' Text
+' ' Text
+'artists' Text
+' ' Text
+'developed' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'rococo' Name.Tag
+']]' Punctuation
+' ' Text
+'style' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'18th' Text
+' ' Text
+'century' Text
+',' Text
+' ' Text
+'as' Text
+' ' Text
+'a' Text
+' ' Text
+'more' Text
+' ' Text
+'intimate' Text
+' ' Text
+'imitation' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'old' Text
+' ' Text
+'baroque' Text
+' ' Text
+'style' Text
+',' Text
+' ' Text
+'the' Text
+' ' Text
+'works' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'court' Text
+'-' Text
+'endorsed' Text
+' ' Text
+'artists' Text
+' ' Text
+'[[' Punctuation
+'Antoine Watteau' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'[[' Punctuation
+'François Boucher' Name.Tag
+']]' Punctuation
+' ' Text
+'and' Text
+' ' Text
+'[[' Punctuation
+'Jean-Honoré Fragonard' Name.Tag
+']]' Punctuation
+' ' Text
+'being' Text
+' ' Text
+'the' Text
+' ' Text
+'most' Text
+' ' Text
+'representative' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'country' Text
+'.' Text
+' ' Text
+'The' Text
+' ' Text
+'French' Text
+' ' Text
+'Revolution' Text
+' ' Text
+'brought' Text
+' ' Text
+'great' Text
+' ' Text
+'changes' Text
+',' Text
+' ' Text
+'as' Text
+' ' Text
+'[[' Punctuation
+'Napoleon' Name.Tag
+']]' Punctuation
+' ' Text
+'favoured' Text
+' ' Text
+'artists' Text
+' ' Text
+'of' Text
+' ' Text
+'[[' Punctuation
+'Neoclassicism' Name.Tag
+'|' Punctuation
+'neoclassic' Text
+' ' Text
+'style' Text
+']]' Punctuation
+' ' Text
+'such' Text
+' ' Text
+'as' Text
+' ' Text
+'[[' Punctuation
+'Jacques-Louis David' Name.Tag
+']]' Punctuation
+' ' Text
+'and' Text
+' ' Text
+'the' Text
+' ' Text
+'highly' Text
+' ' Text
+'influential' Text
+' ' Text
+'[[' Punctuation
+'Académie des Beaux-Arts' Name.Tag
+']]' Punctuation
+' ' Text
+'defined' Text
+' ' Text
+'the' Text
+' ' Text
+'style' Text
+' ' Text
+'known' Text
+' ' Text
+'as' Text
+' ' Text
+'[[' Punctuation
+'Academism' Name.Tag
+']]' Punctuation
+'.' Text
+' ' Text
+'At' Text
+' ' Text
+'this' Text
+' ' Text
+'time' Text
+' ' Text
+'France' Text
+' ' Text
+'had' Text
+' ' Text
+'become' Text
+' ' Text
+'a' Text
+' ' Text
+'centre' Text
+' ' Text
+'of' Text
+' ' Text
+'artistic' Text
+' ' Text
+'creation' Text
+',' Text
+' ' Text
+'the' Text
+' ' Text
+'first' Text
+' ' Text
+'half' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'19th' Text
+' ' Text
+'century' Text
+' ' Text
+'being' Text
+' ' Text
+'dominated' Text
+' ' Text
+'by' Text
+' ' Text
+'two' Text
+' ' Text
+'successive' Text
+' ' Text
+'movements' Text
+',' Text
+' ' Text
+'at' Text
+' ' Text
+'first' Text
+' ' Text
+'[[' Punctuation
+'Romanticism' Name.Tag
+']]' Punctuation
+' ' Text
+'with' Text
+' ' Text
+'[[' Punctuation
+'Théodore Géricault' Name.Tag
+']]' Punctuation
+' ' Text
+'and' Text
+' ' Text
+'[[' Punctuation
+'Eugène Delacroix' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'then' Text
+' ' Text
+'[[' Punctuation
+'Realism (arts)' Name.Tag
+'|' Punctuation
+'Realism' Text
+']]' Punctuation
+' ' Text
+'with' Text
+' ' Text
+'[[' Punctuation
+'Camille Corot' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'[[' Punctuation
+'Gustave Courbet' Name.Tag
+']]' Punctuation
+' ' Text
+'and' Text
+' ' Text
+'[[' Punctuation
+'Jean-François Millet' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'a' Text
+' ' Text
+'style' Text
+' ' Text
+'that' Text
+' ' Text
+'eventually' Text
+' ' Text
+'evolved' Text
+' ' Text
+'into' Text
+' ' Text
+'[[' Punctuation
+'Naturalism (arts)' Name.Tag
+'|' Punctuation
+'Naturalism' Text
+']]' Punctuation
+'.' Text
+'\n' Text
+
+'\n' Text
+
+'In' Text
+' ' Text
+'the' Text
+' ' Text
+'second' Text
+' ' Text
+'part' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'19th' Text
+' ' Text
+'century' Text
+',' Text
+' ' Text
+'France' Text
+"'" Text
+'s' Text
+' ' Text
+'influence' Text
+' ' Text
+'over' Text
+' ' Text
+'painting' Text
+' ' Text
+'grew' Text
+',' Text
+' ' Text
+'with' Text
+' ' Text
+'the' Text
+' ' Text
+'development' Text
+' ' Text
+'of' Text
+' ' Text
+'new' Text
+' ' Text
+'styles' Text
+' ' Text
+'of' Text
+' ' Text
+'painting' Text
+' ' Text
+'such' Text
+' ' Text
+'as' Text
+' ' Text
+'[[' Punctuation
+'Impressionism' Name.Tag
+']]' Punctuation
+' ' Text
+'and' Text
+' ' Text
+'[[' Punctuation
+'Symbolism (arts)' Name.Tag
+'|' Punctuation
+'Symbolism' Text
+']]' Punctuation
+'.' Text
+' ' Text
+'The' Text
+' ' Text
+'most' Text
+' ' Text
+'famous' Text
+' ' Text
+'impressionist' Text
+' ' Text
+'painters' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'period' Text
+' ' Text
+'were' Text
+' ' Text
+'[[' Punctuation
+'Camille Pissarro' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'[[' Punctuation
+'Édouard Manet' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'[[' Punctuation
+'Edgar Degas' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'[[' Punctuation
+'Claude Monet' Name.Tag
+']]' Punctuation
+' ' Text
+'and' Text
+' ' Text
+'[[' Punctuation
+'Auguste Renoir' Name.Tag
+']]' Punctuation
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Guide' Text
+' ' Text
+'to' Text
+' ' Text
+'Impressionism' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'nationalgallery' Text
+'.' Text
+'org' Text
+'.' Text
+'uk' Text
+'/' Text
+'paintings' Text
+'/' Text
+'learn' Text
+'-' Text
+'about' Text
+'-' Text
+'art' Text
+'/' Text
+'guide' Text
+'-' Text
+'to' Text
+'-' Text
+'impressionism' Text
+'/' Text
+'guide' Text
+'-' Text
+'to' Text
+'-' Text
+'impressionism' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'22' Text
+' ' Text
+'July' Text
+' ' Text
+'2011' Text
+' ' Text
+'|' Punctuation
+'publisher' Name.Label
+'=' Operator
+'National' Text
+' ' Text
+'Gallery' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'The' Text
+' ' Text
+'second' Text
+' ' Text
+'generation' Text
+' ' Text
+'of' Text
+' ' Text
+'impressionist' Text
+'-' Text
+'style' Text
+' ' Text
+'painters' Text
+',' Text
+' ' Text
+'[[' Punctuation
+'Paul Cézanne' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'[[' Punctuation
+'Paul Gauguin' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'[[' Punctuation
+'Toulouse-Lautrec' Name.Tag
+']]' Punctuation
+' ' Text
+'and' Text
+' ' Text
+'[[' Punctuation
+'Georges Seurat' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'were' Text
+' ' Text
+'also' Text
+' ' Text
+'at' Text
+' ' Text
+'the' Text
+' ' Text
+'avant' Text
+'-' Text
+'garde' Text
+' ' Text
+'of' Text
+' ' Text
+'artistic' Text
+' ' Text
+'evolutions' Text
+',' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'In' Name.Tag
+' ' Name.Tag
+'lang' Name.Tag
+'|' Punctuation
+'fr' Text
+'}}' Punctuation
+' ' Text
+'RFI' Text
+',' Text
+' ' Text
+'[' Punctuation
+'http://www.rfi.fr/actufr/articles/063/article_34792.asp' Name.Label
+' ' Text.Whitespace
+'Le' Text
+' ' Text
+'néo' Text
+'-' Text
+'impressionnisme' Text
+' ' Text
+'de' Text
+' ' Text
+'Seurat' Text
+' ' Text
+'à' Text
+' ' Text
+'Paul' Text
+' ' Text
+'Klee' Text
+']' Punctuation
+' ' Text
+'15' Text
+' ' Text
+'March' Text
+' ' Text
+'2005' Text
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'as' Text
+' ' Text
+'well' Text
+' ' Text
+'as' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Fauvism' Name.Tag
+'|' Punctuation
+'fauvist' Text
+']]' Punctuation
+' ' Text
+'artists' Text
+' ' Text
+'[[' Punctuation
+'Henri Matisse' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'[[' Punctuation
+'André Derain' Name.Tag
+']]' Punctuation
+' ' Text
+'and' Text
+' ' Text
+'[[' Punctuation
+'Maurice de Vlaminck' Name.Tag
+']]' Punctuation
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'National' Text
+' ' Text
+'Gallery' Text
+' ' Text
+'of' Text
+' ' Text
+'Art' Text
+' ' Text
+'(' Text
+'United' Text
+' ' Text
+'States' Text
+')' Text
+',' Text
+' ' Text
+'[' Punctuation
+'http://www.nga.gov/feature/artnation/fauve/index.shtm' Name.Label
+' ' Text.Whitespace
+'The' Text
+' ' Text
+'Fauves' Text
+' ' Text
+'(' Text
+'dossier' Text
+')' Text
+']' Punctuation
+' ' Text
+'{{' Punctuation
+'Webarchive' Name.Tag
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'web' Text
+'.' Text
+'archive' Text
+'.' Text
+'org' Text
+'/' Text
+'web' Text
+'/' Text
+'20101105195501' Text
+'/' Text
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'nga' Text
+'.' Text
+'gov' Text
+'/' Text
+'feature' Text
+'/' Text
+'artnation' Text
+'/' Text
+'fauve' Text
+'/' Text
+'index' Text
+'.' Text
+'shtm' Text
+'|' Punctuation
+'date' Name.Label
+'=' Operator
+'5' Text
+' ' Text
+'November' Text
+' ' Text
+'2010' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'In' Name.Tag
+' ' Name.Tag
+'lang' Name.Tag
+'|' Punctuation
+'fr' Text
+'}}' Punctuation
+' ' Text
+'RFI' Text
+',' Text
+' ' Text
+'[' Punctuation
+'http://www.rfi.fr/culturefr/articles/098/article_63189.asp' Name.Label
+' ' Text.Whitespace
+'Vlaminck' Text
+',' Text
+' ' Text
+'version' Text
+' ' Text
+'fauve' Text
+']' Punctuation
+' ' Text
+'{{' Punctuation
+'Webarchive' Name.Tag
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'web' Text
+'.' Text
+'archive' Text
+'.' Text
+'org' Text
+'/' Text
+'web' Text
+'/' Text
+'20171010120345' Text
+'/' Text
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'rfi' Text
+'.' Text
+'fr' Text
+'/' Text
+'culturefr' Text
+'/' Text
+'articles' Text
+'/' Text
+'098' Text
+'/' Text
+'article_63189' Text
+'.' Text
+'asp' Text
+'|' Punctuation
+'date' Name.Label
+'=' Operator
+'10' Text
+' ' Text
+'October' Text
+' ' Text
+'2017' Text
+'}}' Punctuation
+',' Text
+' ' Text
+'25' Text
+' ' Text
+'February' Text
+' ' Text
+'2008' Text
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'\n' Text
+
+'[[' Punctuation
+'File' Name.Namespace
+':' Punctuation
+'Claude Monet 1899 Nadar crop.jpg' Name.Tag
+'|' Punctuation
+'thumb' Text
+'|' Punctuation
+'upright' Text
+'|' Punctuation
+'[[' Punctuation
+'Claude Monet' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'founder' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Impressionism' Name.Tag
+'|' Punctuation
+'Impressionist' Text
+']]' Punctuation
+' ' Text
+'movement' Text
+']]' Punctuation
+'\n' Text
+
+'\n' Text
+
+'At' Text
+' ' Text
+'the' Text
+' ' Text
+'beginning' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'20th' Text
+' ' Text
+'century' Text
+',' Text
+' ' Text
+'Cubism' Text
+' ' Text
+'was' Text
+' ' Text
+'developed' Text
+' ' Text
+'by' Text
+' ' Text
+'[[' Punctuation
+'Georges Braque' Name.Tag
+']]' Punctuation
+' ' Text
+'and' Text
+' ' Text
+'the' Text
+' ' Text
+'Spanish' Text
+' ' Text
+'painter' Text
+' ' Text
+'[[' Punctuation
+'Pablo Picasso' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'living' Text
+' ' Text
+'in' Text
+' ' Text
+'Paris' Text
+'.' Text
+' ' Text
+'Other' Text
+' ' Text
+'foreign' Text
+' ' Text
+'artists' Text
+' ' Text
+'also' Text
+' ' Text
+'settled' Text
+' ' Text
+'and' Text
+' ' Text
+'worked' Text
+' ' Text
+'in' Text
+' ' Text
+'or' Text
+' ' Text
+'near' Text
+' ' Text
+'Paris' Text
+',' Text
+' ' Text
+'such' Text
+' ' Text
+'as' Text
+' ' Text
+'[[' Punctuation
+'Vincent van Gogh' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'[[' Punctuation
+'Marc Chagall' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'[[' Punctuation
+'Amedeo Modigliani' Name.Tag
+']]' Punctuation
+' ' Text
+'and' Text
+' ' Text
+'[[' Punctuation
+'Wassily Kandinsky' Name.Tag
+']]' Punctuation
+'.' Text
+'\n' Text
+
+'\n' Text
+
+'There' Text
+' ' Text
+'are' Text
+' ' Text
+'many' Text
+' ' Text
+'art' Text
+' ' Text
+'museums' Text
+' ' Text
+'in' Text
+' ' Text
+'France' Text
+',' Text
+' ' Text
+'the' Text
+' ' Text
+'most' Text
+' ' Text
+'famous' Text
+' ' Text
+'of' Text
+' ' Text
+'which' Text
+' ' Text
+'being' Text
+' ' Text
+'the' Text
+' ' Text
+'state' Text
+'-' Text
+'owned' Text
+' ' Text
+'[[' Punctuation
+'Louvre' Name.Tag
+'|' Punctuation
+'Musée' Text
+' ' Text
+'du' Text
+' ' Text
+'Louvre' Text
+']]' Punctuation
+',' Text
+' ' Text
+'which' Text
+' ' Text
+'collects' Text
+' ' Text
+'artwork' Text
+' ' Text
+'from' Text
+' ' Text
+'the' Text
+' ' Text
+'18th' Text
+' ' Text
+'century' Text
+' ' Text
+'and' Text
+' ' Text
+'earlier' Text
+'.' Text
+' ' Text
+'The' Text
+' ' Text
+'[[' Punctuation
+"Musée d'Orsay" Name.Tag
+']]' Punctuation
+' ' Text
+'was' Text
+' ' Text
+'inaugurated' Text
+' ' Text
+'in' Text
+' ' Text
+'1986' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'old' Text
+' ' Text
+'railway' Text
+' ' Text
+'station' Text
+' ' Text
+'[[' Punctuation
+"Gare d'Orsay" Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'in' Text
+' ' Text
+'a' Text
+' ' Text
+'major' Text
+' ' Text
+'reorganisation' Text
+' ' Text
+'of' Text
+' ' Text
+'national' Text
+' ' Text
+'art' Text
+' ' Text
+'collections' Text
+',' Text
+' ' Text
+'to' Text
+' ' Text
+'gather' Text
+' ' Text
+'French' Text
+' ' Text
+'paintings' Text
+' ' Text
+'from' Text
+' ' Text
+'the' Text
+' ' Text
+'second' Text
+' ' Text
+'part' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'19th' Text
+' ' Text
+'century' Text
+' ' Text
+'(' Text
+'mainly' Text
+' ' Text
+'Impressionism' Text
+' ' Text
+'and' Text
+' ' Text
+'Fauvism' Text
+' ' Text
+'movements' Text
+')' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'Musée' Text
+' ' Text
+'d' Text
+"'" Text
+'Orsay' Text
+' ' Text
+'(' Text
+'official' Text
+' ' Text
+'website' Text
+')' Text
+',' Text
+' ' Text
+'History' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'museum' Text
+'&nbsp;' Name.Entity
+'–' Text
+' ' Text
+'[' Punctuation
+'http://www.musee-orsay.fr/en/collections/history-of-the-museum/home.html' Name.Label
+' ' Text.Whitespace
+'From' Text
+' ' Text
+'station' Text
+' ' Text
+'to' Text
+' ' Text
+'museum' Text
+']' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'date' Name.Label
+'=' Operator
+'31' Text
+' ' Text
+'July' Text
+' ' Text
+'2007' Text
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'History' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'painting' Text
+' ' Text
+'collection' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'musee' Text
+'-' Text
+'orsay' Text
+'.' Text
+'fr' Text
+'/' Text
+'en' Text
+'/' Text
+'collections' Text
+'/' Text
+'history' Text
+'-' Text
+'of' Text
+'-' Text
+'the' Text
+'-' Text
+'collections' Text
+'/' Text
+'painting' Text
+'.' Text
+'html' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'22' Text
+' ' Text
+'July' Text
+' ' Text
+'2011' Text
+' ' Text
+'|' Punctuation
+'publisher' Name.Label
+'=' Operator
+'Musee' Text
+'-' Text
+'orsay' Text
+'.' Text
+'fr' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'It' Text
+' ' Text
+'was' Text
+' ' Text
+'voted' Text
+' ' Text
+'the' Text
+' ' Text
+'best' Text
+' ' Text
+'museum' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'world' Text
+' ' Text
+'in' Text
+' ' Text
+'2018' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'[' Punctuation
+'https://www.independent.co.uk/travel/news-and-advice/best-museums-world-2018-musee-dorsay-paris-911-new-york-tripadvisor-a8525151.html' Name.Label
+' ' Text.Whitespace
+'The' Text
+' ' Text
+'top' Text
+' ' Text
+'10' Text
+' ' Text
+'museums' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'world' Text
+']' Punctuation
+',' Text
+' ' Text
+'[[' Punctuation
+'The Independent' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'6' Text
+' ' Text
+'September' Text
+' ' Text
+'2018' Text
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'Modern' Text
+' ' Text
+'works' Text
+' ' Text
+'are' Text
+' ' Text
+'presented' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+"Musée National d'Art Moderne" Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'which' Text
+' ' Text
+'moved' Text
+' ' Text
+'in' Text
+' ' Text
+'1976' Text
+' ' Text
+'to' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Centre Georges Pompidou' Name.Tag
+']]' Punctuation
+'.' Text
+' ' Text
+'These' Text
+' ' Text
+'three' Text
+' ' Text
+'state' Text
+'-' Text
+'owned' Text
+' ' Text
+'museums' Text
+' ' Text
+'are' Text
+' ' Text
+'visited' Text
+' ' Text
+'by' Text
+' ' Text
+'close' Text
+' ' Text
+'to' Text
+' ' Text
+'17' Text
+'&nbsp;' Name.Entity
+'million' Text
+' ' Text
+'people' Text
+' ' Text
+'a' Text
+' ' Text
+'year' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+' ' Text.Whitespace
+'name' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+'sites' Literal.String.Double
+'"' Literal.String.Double
+'>' Punctuation
+'{{' Punctuation
+'In' Name.Tag
+' ' Name.Tag
+'lang' Name.Tag
+'|' Punctuation
+'fr' Text
+'}}' Punctuation
+' ' Text
+'Ministry' Text
+' ' Text
+'of' Text
+' ' Text
+'Tourism' Text
+',' Text
+' ' Text
+'[' Punctuation
+'http://www.tourisme.gouv.fr/stat_etudes/memento/2009/sites.pdf' Name.Label
+' ' Text.Whitespace
+'Sites' Text
+' ' Text
+'touristiques' Text
+' ' Text
+'en' Text
+' ' Text
+'France' Text
+']' Punctuation
+' ' Text
+'{{' Punctuation
+'Webarchive' Name.Tag
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'web' Text
+'.' Text
+'archive' Text
+'.' Text
+'org' Text
+'/' Text
+'web' Text
+'/' Text
+'20110511093631' Text
+'/' Text
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'tourisme' Text
+'.' Text
+'gouv' Text
+'.' Text
+'fr' Text
+'/' Text
+'stat_etudes' Text
+'/' Text
+'memento' Text
+'/' Text
+'2009' Text
+'/' Text
+'sites' Text
+'.' Text
+'pdf' Text
+'|' Punctuation
+'date' Name.Label
+'=' Operator
+'11' Text
+' ' Text
+'May' Text
+' ' Text
+'2011' Text
+'}}' Punctuation
+' ' Text
+'page' Text
+' ' Text
+'2' Text
+' ' Text
+'"' Text
+'Palmarès' Text
+' ' Text
+'des' Text
+' ' Text
+'30' Text
+' ' Text
+'premiers' Text
+' ' Text
+'sites' Text
+' ' Text
+'culturels' Text
+' ' Text
+'(' Text
+'entrées' Text
+' ' Text
+'comptabilisées' Text
+')' Text
+'"' Text
+' ' Text
+'[' Text
+'Ranking' Text
+' ' Text
+'of' Text
+' ' Text
+'30' Text
+' ' Text
+'most' Text
+' ' Text
+'visited' Text
+' ' Text
+'cultural' Text
+' ' Text
+'sites' Text
+' ' Text
+'in' Text
+' ' Text
+'France' Text
+']' Text
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'\n' Text
+
+'\n' Text
+
+'Other' Text
+' ' Text
+'national' Text
+' ' Text
+'museums' Text
+' ' Text
+'hosting' Text
+' ' Text
+'paintings' Text
+' ' Text
+'include' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Grand Palais' Name.Tag
+']]' Punctuation
+' ' Text
+'(' Text
+'1' Text
+'.' Text
+'3' Text
+'&nbsp;' Name.Entity
+'million' Text
+' ' Text
+'visitors' Text
+' ' Text
+'in' Text
+' ' Text
+'2008' Text
+')' Text
+',' Text
+' ' Text
+'but' Text
+' ' Text
+'there' Text
+' ' Text
+'are' Text
+' ' Text
+'also' Text
+' ' Text
+'many' Text
+' ' Text
+'museums' Text
+' ' Text
+'owned' Text
+' ' Text
+'by' Text
+' ' Text
+'cities' Text
+',' Text
+' ' Text
+'the' Text
+' ' Text
+'most' Text
+' ' Text
+'visited' Text
+' ' Text
+'being' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+"Musée d'Art Moderne de la Ville de Paris" Name.Tag
+']]' Punctuation
+' ' Text
+'(' Text
+'0' Text
+'.' Text
+'8' Text
+'&nbsp;' Name.Entity
+'million' Text
+' ' Text
+'entries' Text
+' ' Text
+'in' Text
+' ' Text
+'2008' Text
+')' Text
+',' Text
+' ' Text
+'which' Text
+' ' Text
+'hosts' Text
+' ' Text
+'contemporary' Text
+' ' Text
+'works' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+' ' Text.Whitespace
+'name' Name.Attribute
+'=' Operator
+'sites' Literal.String
+'/>' Punctuation
+' ' Text
+'Outside' Text
+' ' Text
+'Paris' Text
+',' Text
+' ' Text
+'all' Text
+' ' Text
+'the' Text
+' ' Text
+'large' Text
+' ' Text
+'cities' Text
+' ' Text
+'have' Text
+' ' Text
+'a' Text
+' ' Text
+'Museum' Text
+' ' Text
+'of' Text
+' ' Text
+'Fine' Text
+' ' Text
+'Arts' Text
+' ' Text
+'with' Text
+' ' Text
+'a' Text
+' ' Text
+'section' Text
+' ' Text
+'dedicated' Text
+' ' Text
+'to' Text
+' ' Text
+'European' Text
+' ' Text
+'and' Text
+' ' Text
+'French' Text
+' ' Text
+'painting' Text
+'.' Text
+' ' Text
+'Some' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'finest' Text
+' ' Text
+'collections' Text
+' ' Text
+'are' Text
+' ' Text
+'in' Text
+' ' Text
+'[[' Punctuation
+'Musée des Beaux-Arts de Lyon' Name.Tag
+'|' Punctuation
+'Lyon' Text
+']]' Punctuation
+',' Text
+' ' Text
+'[[' Punctuation
+'Palais des Beaux-Arts de Lille' Name.Tag
+'|' Punctuation
+'Lille' Text
+']]' Punctuation
+',' Text
+' ' Text
+'[[' Punctuation
+'Musée des Beaux-Arts de Rouen' Name.Tag
+'|' Punctuation
+'Rouen' Text
+']]' Punctuation
+',' Text
+' ' Text
+'[[' Punctuation
+'Musée des Beaux-Arts de Dijon' Name.Tag
+'|' Punctuation
+'Dijon' Text
+']]' Punctuation
+',' Text
+' ' Text
+'[[' Punctuation
+'Musée des Beaux-Arts de Rennes' Name.Tag
+'|' Punctuation
+'Rennes' Text
+']]' Punctuation
+' ' Text
+'and' Text
+' ' Text
+'[[' Punctuation
+'Museum of Grenoble' Name.Tag
+'|' Punctuation
+'Grenoble' Text
+']]' Punctuation
+'.' Text
+'\n' Text
+
+'\n' Text
+
+'===' Generic.Subheading
+'Architecture' Generic.Subheading
+'===' Generic.Subheading
+'\n' Text.Whitespace
+
+'{{' Punctuation
+'Main' Name.Tag
+'|' Punctuation
+'French' Text
+' ' Text
+'architecture' Text
+'}}' Punctuation
+'\n' Text
+
+'[[' Punctuation
+'File' Name.Namespace
+':' Punctuation
+'Sainte Chapelle - Upper level 1.jpg' Name.Tag
+'|' Punctuation
+'thumb' Text
+'|' Punctuation
+'left' Text
+'|' Punctuation
+'upright' Text
+'|' Punctuation
+'alt' Name.Attribute
+'=' Operator
+'Sainte' Text
+' ' Text
+'Chapelle' Text
+' ' Text
+'interior' Text
+' ' Text
+'showing' Text
+' ' Text
+'painted' Text
+' ' Text
+'stonework' Text
+' ' Text
+'vaulting' Text
+' ' Text
+'and' Text
+' ' Text
+'stained' Text
+' ' Text
+'glass' Text
+'|' Punctuation
+'[[' Punctuation
+'Louis IX of France' Name.Tag
+'|' Punctuation
+'Saint' Text
+' ' Text
+'Louis' Text
+']]' Punctuation
+"'" Text
+'s' Text
+' ' Text
+'[[' Punctuation
+'Sainte-Chapelle' Name.Tag
+']]' Punctuation
+' ' Text
+'represents' Text
+' ' Text
+'the' Text
+' ' Text
+'French' Text
+' ' Text
+'impact' Text
+' ' Text
+'on' Text
+' ' Text
+'religious' Text
+' ' Text
+'architecture' Text
+'.' Text
+']]' Punctuation
+'\n' Text
+
+'During' Text
+' ' Text
+'the' Text
+' ' Text
+'Middle' Text
+' ' Text
+'Ages' Text
+',' Text
+' ' Text
+'many' Text
+' ' Text
+'fortified' Text
+' ' Text
+'castles' Text
+' ' Text
+'were' Text
+' ' Text
+'built' Text
+' ' Text
+'by' Text
+' ' Text
+'feudal' Text
+' ' Text
+'nobles' Text
+' ' Text
+'to' Text
+' ' Text
+'mark' Text
+' ' Text
+'their' Text
+' ' Text
+'powers' Text
+'.' Text
+' ' Text
+'Some' Text
+' ' Text
+'French' Text
+' ' Text
+'castles' Text
+' ' Text
+'that' Text
+' ' Text
+'survived' Text
+' ' Text
+'are' Text
+' ' Text
+'[[' Punctuation
+'Chinon (castle)' Name.Tag
+'|' Punctuation
+'Chinon' Text
+']]' Punctuation
+',' Text
+' ' Text
+'[[' Punctuation
+"Château d'Angers" Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'the' Text
+' ' Text
+'massive' Text
+' ' Text
+'[[' Punctuation
+'Château de Vincennes' Name.Tag
+']]' Punctuation
+' ' Text
+'and' Text
+' ' Text
+'the' Text
+' ' Text
+'so' Text
+'-' Text
+'called' Text
+' ' Text
+'[[' Punctuation
+'Cathar castles' Name.Tag
+']]' Punctuation
+'.' Text
+' ' Text
+'During' Text
+' ' Text
+'this' Text
+' ' Text
+'era' Text
+',' Text
+' ' Text
+'France' Text
+' ' Text
+'had' Text
+' ' Text
+'been' Text
+' ' Text
+'using' Text
+' ' Text
+'[[' Punctuation
+'Romanesque architecture' Name.Tag
+']]' Punctuation
+' ' Text
+'like' Text
+' ' Text
+'most' Text
+' ' Text
+'of' Text
+' ' Text
+'Western' Text
+' ' Text
+'Europe' Text
+'.' Text
+' ' Text
+'Some' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'greatest' Text
+' ' Text
+'examples' Text
+' ' Text
+'of' Text
+' ' Text
+'Romanesque' Text
+' ' Text
+'churches' Text
+' ' Text
+'in' Text
+' ' Text
+'France' Text
+' ' Text
+'are' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Basilique de Saint-Sernin, Toulouse' Name.Tag
+'|' Punctuation
+'Saint' Text
+' ' Text
+'Sernin' Text
+' ' Text
+'Basilica' Text
+']]' Punctuation
+' ' Text
+'in' Text
+' ' Text
+'[[' Punctuation
+'Toulouse, France' Name.Tag
+'|' Punctuation
+'Toulouse' Text
+']]' Punctuation
+',' Text
+' ' Text
+'the' Text
+' ' Text
+'largest' Text
+' ' Text
+'Romanesque' Text
+' ' Text
+'church' Text
+' ' Text
+'in' Text
+' ' Text
+'Europe' Text
+',' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'date' Name.Label
+'=' Operator
+'22' Text
+' ' Text
+'February' Text
+' ' Text
+'1999' Text
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Toulouse' Text
+"'" Text
+'s' Text
+' ' Text
+'Saint' Text
+' ' Text
+'Sernin' Text
+',' Text
+' ' Text
+'Largest' Text
+' ' Text
+'Romanesque' Text
+' ' Text
+'Church' Text
+' ' Text
+'in' Text
+' ' Text
+'Europe' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'europeupclose' Text
+'.' Text
+'com' Text
+'/' Text
+'article' Text
+'/' Text
+'toulouses' Text
+'-' Text
+'saint' Text
+'-' Text
+'sernin' Text
+'-' Text
+'largest' Text
+'-' Text
+'romanesque' Text
+'-' Text
+'church' Text
+'-' Text
+'in' Text
+'-' Text
+'europe' Text
+'/' Text
+' ' Text
+'|' Punctuation
+'url-status' Name.Label
+'=' Operator
+'dead' Text
+' ' Text
+'|' Punctuation
+'archive-url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'web' Text
+'.' Text
+'archive' Text
+'.' Text
+'org' Text
+'/' Text
+'web' Text
+'/' Text
+'20110710204930' Text
+'/' Text
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'europeupclose' Text
+'.' Text
+'com' Text
+'/' Text
+'article' Text
+'/' Text
+'toulouses' Text
+'-' Text
+'saint' Text
+'-' Text
+'sernin' Text
+'-' Text
+'largest' Text
+'-' Text
+'romanesque' Text
+'-' Text
+'church' Text
+'-' Text
+'in' Text
+'-' Text
+'europe' Text
+'/' Text
+' ' Text
+'|' Punctuation
+'archive-date' Name.Label
+'=' Operator
+'10' Text
+' ' Text
+'July' Text
+' ' Text
+'2011' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'22' Text
+' ' Text
+'July' Text
+' ' Text
+'2011' Text
+' ' Text
+'|' Punctuation
+'publisher' Name.Label
+'=' Operator
+'Europeupclose' Text
+'.' Text
+'com' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'and' Text
+' ' Text
+'the' Text
+' ' Text
+'remains' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Cluny Abbey' Name.Tag
+']]' Punctuation
+'.' Text
+'\n' Text
+
+'\n' Text
+
+'[[' Punctuation
+'Gothic architecture' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'originally' Text
+' ' Text
+'named' Text
+' ' Text
+"''" Generic.Emph
+'Opus' Generic.Emph
+' ' Generic.Emph
+'Francigenum' Generic.Emph
+"''" Generic.Emph
+' ' Text
+'meaning' Text
+' ' Text
+'"' Text
+'French' Text
+' ' Text
+'work' Text
+'"' Text
+',' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'book' Name.Tag
+' ' Text
+'|' Punctuation
+'last' Name.Label
+'=' Operator
+'Brodie' Text
+' ' Text
+'|' Punctuation
+'first' Name.Label
+'=' Operator
+'Allan' Text
+' ' Text
+'M' Text
+'.' Text
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Oxford' Text
+' ' Text
+'Art' Text
+' ' Text
+'Online' Text
+' ' Text
+'|' Punctuation
+'publisher' Name.Label
+'=' Operator
+'Oxford' Text
+' ' Text
+'University' Text
+' ' Text
+'Press' Text
+' ' Text
+'|' Punctuation
+'year' Name.Label
+'=' Operator
+'2003' Text
+' ' Text
+'|' Punctuation
+'isbn' Name.Label
+'=' Operator
+'978' Text
+'-' Text
+'1' Text
+'-' Text
+'884446' Text
+'-' Text
+'05' Text
+'-' Text
+'4' Text
+' ' Text
+'|' Punctuation
+'chapter' Name.Label
+'=' Operator
+'Opus' Text
+' ' Text
+'francigenum' Text
+' ' Text
+'|' Punctuation
+'doi' Name.Label
+'=' Operator
+'10' Text
+'.' Text
+'1093' Text
+'/' Text
+'gao' Text
+'/' Text
+'9781884446054' Text
+'.' Text
+'article' Text
+'.' Text
+'t063666' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'13' Text
+' ' Text
+'January' Text
+' ' Text
+'2019' Text
+' ' Text
+'|' Punctuation
+'chapter-url' Name.Label
+'=' Operator
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'oxfordartonline' Text
+'.' Text
+'com' Text
+'/' Text
+'view' Text
+'/' Text
+'10' Text
+'.' Text
+'1093' Text
+'/' Text
+'gao' Text
+'/' Text
+'9781884446054' Text
+'.' Text
+'001' Text
+'.' Text
+'0001' Text
+'/' Text
+'oao' Text
+'-' Text
+'9781884446054' Text
+'-' Text
+'e' Text
+'-' Text
+'7000063666' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'was' Text
+' ' Text
+'born' Text
+' ' Text
+'in' Text
+' ' Text
+'[[' Punctuation
+'Île-de-France' Name.Tag
+']]' Punctuation
+' ' Text
+'and' Text
+' ' Text
+'was' Text
+' ' Text
+'the' Text
+' ' Text
+'first' Text
+' ' Text
+'French' Text
+' ' Text
+'style' Text
+' ' Text
+'of' Text
+' ' Text
+'architecture' Text
+' ' Text
+'to' Text
+' ' Text
+'be' Text
+' ' Text
+'copied' Text
+' ' Text
+'in' Text
+' ' Text
+'all' Text
+' ' Text
+'of' Text
+' ' Text
+'Europe' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'The' Text
+' ' Text
+'Gothic' Text
+' ' Text
+'Period' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'justfrance' Text
+'.' Text
+'org' Text
+'/' Text
+'france' Text
+'/' Text
+'architecture' Text
+'/' Text
+'001' Text
+'.' Text
+'asp' Text
+' ' Text
+'|' Punctuation
+'url-status' Name.Label
+'=' Operator
+'dead' Text
+' ' Text
+'|' Punctuation
+'archive-url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'web' Text
+'.' Text
+'archive' Text
+'.' Text
+'org' Text
+'/' Text
+'web' Text
+'/' Text
+'20110718181401' Text
+'/' Text
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'justfrance' Text
+'.' Text
+'org' Text
+'/' Text
+'france' Text
+'/' Text
+'architecture' Text
+'/' Text
+'001' Text
+'.' Text
+'asp' Text
+' ' Text
+'|' Punctuation
+'archive-date' Name.Label
+'=' Operator
+'18' Text
+' ' Text
+'July' Text
+' ' Text
+'2011' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'22' Text
+' ' Text
+'July' Text
+' ' Text
+'2011' Text
+' ' Text
+'|' Punctuation
+'publisher' Name.Label
+'=' Operator
+'Justfrance' Text
+'.' Text
+'org' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'Northern' Text
+' ' Text
+'France' Text
+' ' Text
+'is' Text
+' ' Text
+'the' Text
+' ' Text
+'home' Text
+' ' Text
+'of' Text
+' ' Text
+'some' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'most' Text
+' ' Text
+'important' Text
+' ' Text
+'Gothic' Text
+' ' Text
+'cathedrals' Text
+' ' Text
+'and' Text
+' ' Text
+'basilicas' Text
+',' Text
+' ' Text
+'the' Text
+' ' Text
+'first' Text
+' ' Text
+'of' Text
+' ' Text
+'these' Text
+' ' Text
+'being' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Saint Denis Basilica' Name.Tag
+']]' Punctuation
+' ' Text
+'(' Text
+'used' Text
+' ' Text
+'as' Text
+' ' Text
+'the' Text
+' ' Text
+'royal' Text
+' ' Text
+'necropolis' Text
+')' Text
+';' Text
+' ' Text
+'other' Text
+' ' Text
+'important' Text
+' ' Text
+'French' Text
+' ' Text
+'Gothic' Text
+' ' Text
+'cathedrals' Text
+' ' Text
+'are' Text
+' ' Text
+'[[' Punctuation
+'Cathedral of Chartres' Name.Tag
+'|' Punctuation
+'Notre' Text
+'-' Text
+'Dame' Text
+' ' Text
+'de' Text
+' ' Text
+'Chartres' Text
+']]' Punctuation
+' ' Text
+'and' Text
+' ' Text
+'[[' Punctuation
+'Amiens Cathedral' Name.Tag
+'|' Punctuation
+'Notre' Text
+'-' Text
+'Dame' Text
+' ' Text
+'d' Text
+"'" Text
+'Amiens' Text
+']]' Punctuation
+'.' Text
+' ' Text
+'The' Text
+' ' Text
+'kings' Text
+' ' Text
+'were' Text
+' ' Text
+'crowned' Text
+' ' Text
+'in' Text
+' ' Text
+'another' Text
+' ' Text
+'important' Text
+' ' Text
+'Gothic' Text
+' ' Text
+'church' Text
+':' Text
+' ' Text
+'[[' Punctuation
+'Notre-Dame de Reims' Name.Tag
+']]' Punctuation
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'In' Name.Tag
+' ' Name.Tag
+'lang' Name.Tag
+'|' Punctuation
+'fr' Text
+'}}' Punctuation
+' ' Text
+'[' Punctuation
+'http://www.cathedrale-reims.culture.fr/histoire.html' Name.Label
+' ' Text.Whitespace
+'Histoire' Text
+' ' Text
+'et' Text
+' ' Text
+'Architecture' Text
+']' Punctuation
+'&nbsp;' Name.Entity
+'–' Text
+' ' Text
+'[' Punctuation
+'http://www.cathedrale-reims.culture.fr' Name.Label
+' ' Text.Whitespace
+'Site' Text
+' ' Text
+'officiel' Text
+' ' Text
+'de' Text
+' ' Text
+'la' Text
+' ' Text
+'Cathedrale' Text
+' ' Text
+'de' Text
+' ' Text
+'Notre' Text
+'-' Text
+'Dame' Text
+' ' Text
+'de' Text
+' ' Text
+'Reims' Text
+']' Punctuation
+' ' Text
+'{{' Punctuation
+'Webarchive' Name.Tag
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'web' Text
+'.' Text
+'archive' Text
+'.' Text
+'org' Text
+'/' Text
+'web' Text
+'/' Text
+'20160717234437' Text
+'/' Text
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'cathedrale' Text
+'-' Text
+'reims' Text
+'.' Text
+'culture' Text
+'.' Text
+'fr' Text
+'/' Text
+'|' Punctuation
+'date' Name.Label
+'=' Operator
+'17' Text
+' ' Text
+'July' Text
+' ' Text
+'2016' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'Aside' Text
+' ' Text
+'from' Text
+' ' Text
+'churches' Text
+',' Text
+' ' Text
+'Gothic' Text
+' ' Text
+'Architecture' Text
+' ' Text
+'had' Text
+' ' Text
+'been' Text
+' ' Text
+'used' Text
+' ' Text
+'for' Text
+' ' Text
+'many' Text
+' ' Text
+'religious' Text
+' ' Text
+'palaces' Text
+',' Text
+' ' Text
+'the' Text
+' ' Text
+'most' Text
+' ' Text
+'important' Text
+' ' Text
+'one' Text
+' ' Text
+'being' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Palais des Papes' Name.Tag
+']]' Punctuation
+' ' Text
+'in' Text
+' ' Text
+'[[' Punctuation
+'Avignon' Name.Tag
+']]' Punctuation
+'.' Text
+'\n' Text
+
+'\n' Text
+
+'The' Text
+' ' Text
+'final' Text
+' ' Text
+'victory' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'Hundred' Text
+' ' Text
+'Years' Text
+"'" Text
+' ' Text
+'War' Text
+' ' Text
+'marked' Text
+' ' Text
+'an' Text
+' ' Text
+'important' Text
+' ' Text
+'stage' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'evolution' Text
+' ' Text
+'of' Text
+' ' Text
+'French' Text
+' ' Text
+'architecture' Text
+'.' Text
+' ' Text
+'It' Text
+' ' Text
+'was' Text
+' ' Text
+'the' Text
+' ' Text
+'time' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'French Renaissance' Name.Tag
+']]' Punctuation
+' ' Text
+'and' Text
+' ' Text
+'several' Text
+' ' Text
+'artists' Text
+' ' Text
+'from' Text
+' ' Text
+'Italy' Text
+' ' Text
+'were' Text
+' ' Text
+'invited' Text
+' ' Text
+'to' Text
+' ' Text
+'the' Text
+' ' Text
+'French' Text
+' ' Text
+'court' Text
+';' Text
+' ' Text
+'many' Text
+' ' Text
+'residential' Text
+' ' Text
+'palaces' Text
+' ' Text
+'were' Text
+' ' Text
+'built' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Loire Valley' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'from' Text
+' ' Text
+'1450' Text
+' ' Text
+'as' Text
+' ' Text
+'a' Text
+' ' Text
+'first' Text
+' ' Text
+'reference' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Château de Montsoreau' Name.Tag
+']]' Punctuation
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'last' Name.Label
+'=' Operator
+'Loire' Text
+' ' Text
+'|' Punctuation
+'first' Name.Label
+'=' Operator
+'Mission' Text
+' ' Text
+'Val' Text
+' ' Text
+'de' Text
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Charles' Text
+' ' Text
+'VII' Text
+' ' Text
+'et' Text
+' ' Text
+'Louis' Text
+' ' Text
+'XI' Text
+' ' Text
+'-' Text
+'Know' Text
+' ' Text
+'-' Text
+'Val' Text
+' ' Text
+'de' Text
+' ' Text
+'Loire' Text
+' ' Text
+'patrimoine' Text
+' ' Text
+'mondial' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'valdeloire' Text
+'.' Text
+'org' Text
+'/' Text
+'Connaitre' Text
+'/' Text
+'Au' Text
+'-' Text
+'fil' Text
+'-' Text
+'de' Text
+'-' Text
+'l' Text
+'-' Text
+'histoire' Text
+'/' Text
+'Le' Text
+'-' Text
+'Val' Text
+'-' Text
+'de' Text
+'-' Text
+'Loire' Text
+'-' Text
+'siege' Text
+'-' Text
+'du' Text
+'-' Text
+'pouvoir' Text
+'-' Text
+'royal' Text
+'/' Text
+'Charles' Text
+'-' Text
+'VII' Text
+'-' Text
+'et' Text
+'-' Text
+'Louis' Text
+'-' Text
+'XI' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'10' Text
+' ' Text
+'October' Text
+' ' Text
+'2018' Text
+' ' Text
+'|' Punctuation
+'website' Name.Label
+'=' Operator
+'loirevalley' Text
+'-' Text
+'worldheritage' Text
+'.' Text
+'org' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'Such' Text
+' ' Text
+'residential' Text
+' ' Text
+'castles' Text
+' ' Text
+'were' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Château de Chambord' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Château de Chenonceau' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'or' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+"Château d'Amboise" Name.Tag
+']]' Punctuation
+'.' Text
+'\n' Text
+
+'\n' Text
+
+'Following' Text
+' ' Text
+'the' Text
+' ' Text
+'renaissance' Text
+' ' Text
+'and' Text
+' ' Text
+'the' Text
+' ' Text
+'end' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'Middle' Text
+' ' Text
+'Ages' Text
+',' Text
+' ' Text
+'[[' Punctuation
+'French Baroque architecture' Name.Tag
+'|' Punctuation
+'Baroque' Text
+' ' Text
+'architecture' Text
+']]' Punctuation
+' ' Text
+'replaced' Text
+' ' Text
+'the' Text
+' ' Text
+'traditional' Text
+' ' Text
+'Gothic' Text
+' ' Text
+'style' Text
+'.' Text
+' ' Text
+'However' Text
+',' Text
+' ' Text
+'in' Text
+' ' Text
+'France' Text
+',' Text
+' ' Text
+'baroque' Text
+' ' Text
+'architecture' Text
+' ' Text
+'found' Text
+' ' Text
+'greater' Text
+' ' Text
+'success' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'secular' Text
+' ' Text
+'domain' Text
+' ' Text
+'than' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'religious' Text
+' ' Text
+'one' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'In' Name.Tag
+' ' Name.Tag
+'lang' Name.Tag
+'|' Punctuation
+'fr' Text
+'}}' Punctuation
+' ' Text
+'Claude' Text
+' ' Text
+'Lébedel' Text
+'&nbsp;' Name.Entity
+'–' Text
+' ' Text
+'Les' Text
+' ' Text
+'Splendeurs' Text
+' ' Text
+'du' Text
+' ' Text
+'Baroque' Text
+' ' Text
+'en' Text
+' ' Text
+'France' Text
+':' Text
+' ' Text
+"''" Generic.Emph
+'Histoire' Generic.Emph
+' ' Generic.Emph
+'et' Generic.Emph
+' ' Generic.Emph
+'splendeurs' Generic.Emph
+' ' Generic.Emph
+'du' Generic.Emph
+' ' Generic.Emph
+'baroque' Generic.Emph
+' ' Generic.Emph
+'en' Generic.Emph
+' ' Generic.Emph
+'France' Generic.Emph
+"''" Generic.Emph
+' ' Text
+'page' Text
+' ' Text
+'9' Text
+':' Text
+' ' Text
+'"' Text
+'Si' Text
+' ' Text
+'en' Text
+' ' Text
+'allant' Text
+' ' Text
+'plus' Text
+' ' Text
+'loin' Text
+',' Text
+' ' Text
+'on' Text
+' ' Text
+'prononce' Text
+' ' Text
+'les' Text
+' ' Text
+'mots' Text
+' ' Text
+"'" Text
+'art' Text
+' ' Text
+'baroque' Text
+' ' Text
+'en' Text
+' ' Text
+'France' Text
+"'" Text
+',' Text
+' ' Text
+'on' Text
+' ' Text
+'provoque' Text
+' ' Text
+'alors' Text
+' ' Text
+'le' Text
+' ' Text
+'plus' Text
+' ' Text
+'souvent' Text
+' ' Text
+'une' Text
+' ' Text
+'moue' Text
+' ' Text
+'interrogative' Text
+',' Text
+' ' Text
+'parfois' Text
+' ' Text
+'seulement' Text
+' ' Text
+'étonnée' Text
+',' Text
+' ' Text
+'parfois' Text
+' ' Text
+'franchement' Text
+' ' Text
+'réprobatrice' Text
+':' Text
+' ' Text
+'Mais' Text
+' ' Text
+'voyons' Text
+',' Text
+' ' Text
+'l' Text
+"'" Text
+'art' Text
+' ' Text
+'baroque' Text
+' ' Text
+'n' Text
+"'" Text
+'existe' Text
+' ' Text
+'pas' Text
+' ' Text
+'en' Text
+' ' Text
+'France' Text
+'!' Text
+'"' Text
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'In' Text
+' ' Text
+'the' Text
+' ' Text
+'secular' Text
+' ' Text
+'domain' Text
+',' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Palace of Versailles' Name.Tag
+']]' Punctuation
+' ' Text
+'has' Text
+' ' Text
+'many' Text
+' ' Text
+'baroque' Text
+' ' Text
+'features' Text
+'.' Text
+' ' Text
+'[[' Punctuation
+'Jules Hardouin Mansart' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'who' Text
+' ' Text
+'designed' Text
+' ' Text
+'the' Text
+' ' Text
+'extensions' Text
+' ' Text
+'to' Text
+' ' Text
+'Versailles' Text
+',' Text
+' ' Text
+'was' Text
+' ' Text
+'one' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'most' Text
+' ' Text
+'influential' Text
+' ' Text
+'French' Text
+' ' Text
+'architects' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'baroque' Text
+' ' Text
+'era' Text
+';' Text
+' ' Text
+'he' Text
+' ' Text
+'is' Text
+' ' Text
+'famous' Text
+' ' Text
+'for' Text
+' ' Text
+'his' Text
+' ' Text
+'dome' Text
+' ' Text
+'at' Text
+' ' Text
+'[[' Punctuation
+'Les Invalides' Name.Tag
+']]' Punctuation
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'book' Name.Tag
+' ' Text
+'|' Punctuation
+'last' Name.Label
+'=' Operator
+'Hills' Text
+' ' Text
+'|' Punctuation
+'first' Name.Label
+'=' Operator
+'Helen' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'books' Text
+'.' Text
+'google' Text
+'.' Text
+'com' Text
+'/' Text
+'books' Text
+'?' Text
+'id' Text
+'=' Text
+'jLmFbEdqBDUC' Text
+'&' Text
+'pg' Text
+'=' Text
+'PA86' Text
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Architecture' Text
+' ' Text
+'and' Text
+' ' Text
+'the' Text
+' ' Text
+'Politics' Text
+' ' Text
+'of' Text
+' ' Text
+'Gender' Text
+' ' Text
+'in' Text
+' ' Text
+'Early' Text
+' ' Text
+'Modern' Text
+' ' Text
+'Europe' Text
+' ' Text
+'|' Punctuation
+'publisher' Name.Label
+'=' Operator
+'Ashgate' Text
+' ' Text
+'Publishing' Text
+' ' Text
+'|' Punctuation
+'year' Name.Label
+'=' Operator
+'2003' Text
+' ' Text
+'|' Punctuation
+'isbn' Name.Label
+'=' Operator
+'978' Text
+'-' Text
+'0' Text
+'-' Text
+'7546' Text
+'-' Text
+'0309' Text
+'-' Text
+'2' Text
+' ' Text
+'|' Punctuation
+'page' Name.Label
+'=' Operator
+'86' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'Some' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'most' Text
+' ' Text
+'impressive' Text
+' ' Text
+'provincial' Text
+' ' Text
+'baroque' Text
+' ' Text
+'architecture' Text
+' ' Text
+'is' Text
+' ' Text
+'found' Text
+' ' Text
+'in' Text
+' ' Text
+'places' Text
+' ' Text
+'that' Text
+' ' Text
+'were' Text
+' ' Text
+'not' Text
+' ' Text
+'yet' Text
+' ' Text
+'French' Text
+' ' Text
+'such' Text
+' ' Text
+'as' Text
+' ' Text
+'[[' Punctuation
+'Place Stanislas' Name.Tag
+']]' Punctuation
+' ' Text
+'in' Text
+' ' Text
+'[[' Punctuation
+'Nancy, France' Name.Tag
+'|' Punctuation
+'Nancy' Text
+']]' Punctuation
+'.' Text
+' ' Text
+'On' Text
+' ' Text
+'the' Text
+' ' Text
+'military' Text
+' ' Text
+'architectural' Text
+' ' Text
+'side' Text
+',' Text
+' ' Text
+'[[' Punctuation
+'Sébastien Le Prestre de Vauban' Name.Tag
+'|' Punctuation
+'Vauban' Text
+']]' Punctuation
+' ' Text
+'designed' Text
+' ' Text
+'some' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'most' Text
+' ' Text
+'efficient' Text
+' ' Text
+'fortresses' Text
+' ' Text
+'in' Text
+' ' Text
+'Europe' Text
+' ' Text
+'and' Text
+' ' Text
+'became' Text
+' ' Text
+'an' Text
+' ' Text
+'influential' Text
+' ' Text
+'military' Text
+' ' Text
+'architect' Text
+';' Text
+' ' Text
+'as' Text
+' ' Text
+'a' Text
+' ' Text
+'result' Text
+',' Text
+' ' Text
+'imitations' Text
+' ' Text
+'of' Text
+' ' Text
+'his' Text
+' ' Text
+'works' Text
+' ' Text
+'can' Text
+' ' Text
+'be' Text
+' ' Text
+'found' Text
+' ' Text
+'all' Text
+' ' Text
+'over' Text
+' ' Text
+'Europe' Text
+',' Text
+' ' Text
+'the' Text
+' ' Text
+'Americas' Text
+',' Text
+' ' Text
+'Russia' Text
+' ' Text
+'and' Text
+' ' Text
+'Turkey' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'date' Name.Label
+'=' Operator
+'8' Text
+' ' Text
+'July' Text
+' ' Text
+'2008' Text
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Fortifications' Text
+' ' Text
+'of' Text
+' ' Text
+'Vauban' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'whc' Text
+'.' Text
+'unesco' Text
+'.' Text
+'org' Text
+'/' Text
+'en' Text
+'/' Text
+'list' Text
+'/' Text
+'1283' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'9' Text
+' ' Text
+'August' Text
+' ' Text
+'2010' Text
+' ' Text
+'|' Punctuation
+'publisher' Name.Label
+'=' Operator
+'UNESCO' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Official' Text
+' ' Text
+'site' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'UNESCO' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'en' Text
+'.' Text
+'unesco' Text
+'.' Text
+'org' Text
+'/' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'9' Text
+' ' Text
+'August' Text
+' ' Text
+'2010' Text
+' ' Text
+'|' Punctuation
+'publisher' Name.Label
+'=' Operator
+'UNESCO' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'\n' Text
+
+'\n' Text
+
+'After' Text
+' ' Text
+'the' Text
+' ' Text
+'Revolution' Text
+',' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Republicanism' Name.Tag
+'|' Punctuation
+'Republicans' Text
+']]' Punctuation
+' ' Text
+'favoured' Text
+' ' Text
+'[[' Punctuation
+'Neoclassicism' Name.Tag
+']]' Punctuation
+' ' Text
+'although' Text
+' ' Text
+'it' Text
+' ' Text
+'was' Text
+' ' Text
+'introduced' Text
+' ' Text
+'in' Text
+' ' Text
+'France' Text
+' ' Text
+'before' Text
+' ' Text
+'the' Text
+' ' Text
+'revolution' Text
+' ' Text
+'with' Text
+' ' Text
+'such' Text
+' ' Text
+'buildings' Text
+' ' Text
+'as' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Panthéon' Name.Tag
+'|' Punctuation
+'Parisian' Text
+' ' Text
+'Pantheon' Text
+']]' Punctuation
+' ' Text
+'or' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Capitole de Toulouse' Name.Tag
+']]' Punctuation
+'.' Text
+' ' Text
+'Built' Text
+' ' Text
+'during' Text
+' ' Text
+'the' Text
+' ' Text
+'first' Text
+' ' Text
+'French' Text
+' ' Text
+'Empire' Text
+',' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Arc de Triomphe' Name.Tag
+']]' Punctuation
+' ' Text
+'and' Text
+' ' Text
+'[[' Punctuation
+'Église de la Madeleine' Name.Tag
+'|' Punctuation
+'Sainte' Text
+' ' Text
+'Marie' Text
+'-' Text
+'Madeleine' Text
+']]' Punctuation
+' ' Text
+'represent' Text
+' ' Text
+'the' Text
+' ' Text
+'best' Text
+' ' Text
+'example' Text
+' ' Text
+'of' Text
+' ' Text
+'[[' Punctuation
+'Empire style' Name.Tag
+'|' Punctuation
+'Empire' Text
+'-' Text
+'style' Text
+']]' Punctuation
+' ' Text
+'architecture' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'book' Name.Tag
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'books' Text
+'.' Text
+'google' Text
+'.' Text
+'com' Text
+'/' Text
+'books' Text
+'?' Text
+'id' Text
+'=' Text
+'OtabdzMdbboC' Text
+'&' Text
+'pg' Text
+'=' Text
+'PA48' Text
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Paris' Text
+':' Text
+' ' Text
+'City' Text
+' ' Text
+'Guide' Text
+' ' Text
+'|' Punctuation
+'publisher' Name.Label
+'=' Operator
+'Lonely' Text
+' ' Text
+'Planet' Text
+' ' Text
+'|' Punctuation
+'year' Name.Label
+'=' Operator
+'2008' Text
+' ' Text
+'|' Punctuation
+'isbn' Name.Label
+'=' Operator
+'978' Text
+'-' Text
+'1' Text
+'-' Text
+'74059' Text
+'-' Text
+'850' Text
+'-' Text
+'7' Text
+' ' Text
+'|' Punctuation
+'page' Name.Label
+'=' Operator
+'48' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'\n' Text
+
+'[[' Punctuation
+'File' Name.Namespace
+':' Punctuation
+'Bordeaux place de la bourse with tram.JPG' Name.Tag
+'|' Punctuation
+'thumb' Text
+'|' Punctuation
+'[[' Punctuation
+'Place de la Bourse' Name.Tag
+']]' Punctuation
+' ' Text
+'in' Text
+' ' Text
+'[[' Punctuation
+'Bordeaux' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'an' Text
+' ' Text
+'example' Text
+' ' Text
+'of' Text
+' ' Text
+'[[' Punctuation
+'French baroque architecture' Name.Tag
+']]' Punctuation
+']]' Punctuation
+'\n' Text
+
+'\n' Text
+
+'Under' Text
+' ' Text
+'[[' Punctuation
+'Napoleon III' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'a' Text
+' ' Text
+'new' Text
+' ' Text
+'wave' Text
+' ' Text
+'of' Text
+' ' Text
+'urbanism' Text
+' ' Text
+'and' Text
+' ' Text
+'architecture' Text
+' ' Text
+'was' Text
+' ' Text
+'given' Text
+' ' Text
+'birth' Text
+';' Text
+' ' Text
+'extravagant' Text
+' ' Text
+'buildings' Text
+' ' Text
+'such' Text
+' ' Text
+'as' Text
+' ' Text
+'the' Text
+' ' Text
+'neo' Text
+'-' Text
+'baroque' Text
+' ' Text
+'[[' Punctuation
+'Palais Garnier' Name.Tag
+']]' Punctuation
+' ' Text
+'were' Text
+' ' Text
+'built' Text
+'.' Text
+' ' Text
+'The' Text
+' ' Text
+'urban' Text
+' ' Text
+'planning' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'time' Text
+' ' Text
+'was' Text
+' ' Text
+'very' Text
+' ' Text
+'organised' Text
+' ' Text
+'and' Text
+' ' Text
+'rigorous' Text
+';' Text
+' ' Text
+'most' Text
+' ' Text
+'notably' Text
+',' Text
+' ' Text
+'[[' Punctuation
+"Haussmann's renovation of Paris" Name.Tag
+']]' Punctuation
+'.' Text
+' ' Text
+'The' Text
+' ' Text
+'architecture' Text
+' ' Text
+'associated' Text
+' ' Text
+'with' Text
+' ' Text
+'this' Text
+' ' Text
+'era' Text
+' ' Text
+'is' Text
+' ' Text
+'named' Text
+' ' Text
+'[[' Punctuation
+'Second Empire (architecture)' Name.Tag
+'|' Punctuation
+'Second' Text
+' ' Text
+'Empire' Text
+']]' Punctuation
+' ' Text
+'in' Text
+' ' Text
+'English' Text
+',' Text
+' ' Text
+'the' Text
+' ' Text
+'term' Text
+' ' Text
+'being' Text
+' ' Text
+'taken' Text
+' ' Text
+'from' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Second French Empire' Name.Tag
+']]' Punctuation
+'.' Text
+' ' Text
+'At' Text
+' ' Text
+'this' Text
+' ' Text
+'time' Text
+' ' Text
+'there' Text
+' ' Text
+'was' Text
+' ' Text
+'a' Text
+' ' Text
+'strong' Text
+' ' Text
+'Gothic' Text
+' ' Text
+'resurgence' Text
+' ' Text
+'across' Text
+' ' Text
+'Europe' Text
+' ' Text
+'and' Text
+' ' Text
+'in' Text
+' ' Text
+'France' Text
+';' Text
+' ' Text
+'the' Text
+' ' Text
+'associated' Text
+' ' Text
+'architect' Text
+' ' Text
+'was' Text
+' ' Text
+'[[' Punctuation
+'Eugène Viollet-le-Duc' Name.Tag
+']]' Punctuation
+'.' Text
+' ' Text
+'In' Text
+' ' Text
+'the' Text
+' ' Text
+'late' Text
+' ' Text
+'19th' Text
+' ' Text
+'century' Text
+',' Text
+' ' Text
+'[[' Punctuation
+'Gustave Eiffel' Name.Tag
+']]' Punctuation
+' ' Text
+'designed' Text
+' ' Text
+'many' Text
+' ' Text
+'bridges' Text
+',' Text
+' ' Text
+'such' Text
+' ' Text
+'as' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Garabit viaduct' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'and' Text
+' ' Text
+'remains' Text
+' ' Text
+'one' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'most' Text
+' ' Text
+'influential' Text
+' ' Text
+'bridge' Text
+' ' Text
+'designers' Text
+' ' Text
+'of' Text
+' ' Text
+'his' Text
+' ' Text
+'time' Text
+',' Text
+' ' Text
+'although' Text
+' ' Text
+'he' Text
+' ' Text
+'is' Text
+' ' Text
+'best' Text
+' ' Text
+'remembered' Text
+' ' Text
+'for' Text
+' ' Text
+'the' Text
+' ' Text
+'iconic' Text
+' ' Text
+'[[' Punctuation
+'Eiffel Tower' Name.Tag
+']]' Punctuation
+'.' Text
+'\n' Text
+
+'\n' Text
+
+'In' Text
+' ' Text
+'the' Text
+' ' Text
+'20th' Text
+' ' Text
+'century' Text
+',' Text
+' ' Text
+'French' Text
+'-' Text
+'Swiss' Text
+' ' Text
+'architect' Text
+' ' Text
+'[[' Punctuation
+'Le Corbusier' Name.Tag
+']]' Punctuation
+' ' Text
+'designed' Text
+' ' Text
+'several' Text
+' ' Text
+'buildings' Text
+' ' Text
+'in' Text
+' ' Text
+'France' Text
+'.' Text
+' ' Text
+'More' Text
+' ' Text
+'recently' Text
+',' Text
+' ' Text
+'French' Text
+' ' Text
+'architects' Text
+' ' Text
+'have' Text
+' ' Text
+'combined' Text
+' ' Text
+'both' Text
+' ' Text
+'modern' Text
+' ' Text
+'and' Text
+' ' Text
+'old' Text
+' ' Text
+'architectural' Text
+' ' Text
+'styles' Text
+'.' Text
+' ' Text
+'The' Text
+' ' Text
+'[[' Punctuation
+'Louvre Pyramid' Name.Tag
+']]' Punctuation
+' ' Text
+'is' Text
+' ' Text
+'an' Text
+' ' Text
+'example' Text
+' ' Text
+'of' Text
+' ' Text
+'modern' Text
+' ' Text
+'architecture' Text
+' ' Text
+'added' Text
+' ' Text
+'to' Text
+' ' Text
+'an' Text
+' ' Text
+'older' Text
+' ' Text
+'building' Text
+'.' Text
+' ' Text
+'The' Text
+' ' Text
+'most' Text
+' ' Text
+'difficult' Text
+' ' Text
+'buildings' Text
+' ' Text
+'to' Text
+' ' Text
+'integrate' Text
+' ' Text
+'within' Text
+' ' Text
+'French' Text
+' ' Text
+'cities' Text
+' ' Text
+'are' Text
+' ' Text
+'skyscrapers' Text
+',' Text
+' ' Text
+'as' Text
+' ' Text
+'they' Text
+' ' Text
+'are' Text
+' ' Text
+'visible' Text
+' ' Text
+'from' Text
+' ' Text
+'afar' Text
+'.' Text
+' ' Text
+'For' Text
+' ' Text
+'instance' Text
+',' Text
+' ' Text
+'in' Text
+' ' Text
+'Paris' Text
+',' Text
+' ' Text
+'since' Text
+' ' Text
+'1977' Text
+',' Text
+' ' Text
+'new' Text
+' ' Text
+'buildings' Text
+' ' Text
+'had' Text
+' ' Text
+'to' Text
+' ' Text
+'be' Text
+' ' Text
+'under' Text
+' ' Text
+'{{' Punctuation
+'Convert' Name.Tag
+'|' Punctuation
+' ' Text
+'37' Text
+'|' Punctuation
+' ' Text
+'m' Text
+'}}' Punctuation
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'last' Name.Label
+'=' Operator
+'Henri' Text
+' ' Text
+'SECKEL' Text
+' ' Text
+'|' Punctuation
+'date' Name.Label
+'=' Operator
+'8' Text
+' ' Text
+'July' Text
+' ' Text
+'2008' Text
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Urbanisme' Text
+' ' Text
+':' Text
+' ' Text
+'Des' Text
+' ' Text
+'gratte' Text
+'-' Text
+'ciel' Text
+' ' Text
+'à' Text
+' ' Text
+'Paris' Text
+' ' Text
+':' Text
+' ' Text
+'qu' Text
+"'" Text
+'en' Text
+' ' Text
+'pensez' Text
+'-' Text
+'vous' Text
+' ' Text
+'&nbsp;' Name.Entity
+'–' Text
+' ' Text
+'Posez' Text
+' ' Text
+'vos' Text
+' ' Text
+'questions' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'lci' Text
+'.' Text
+'tf1' Text
+'.' Text
+'fr' Text
+'/' Text
+'posez' Text
+'-' Text
+'vos' Text
+'-' Text
+'questions' Text
+'/' Text
+'2008' Text
+'-' Text
+'07' Text
+'/' Text
+'gratte' Text
+'-' Text
+'ciel' Text
+'-' Text
+'paris' Text
+'-' Text
+'pensez' Text
+'-' Text
+'vous' Text
+'-' Text
+'4872555' Text
+'.' Text
+'html' Text
+' ' Text
+'|' Punctuation
+'url-status' Name.Label
+'=' Operator
+'dead' Text
+' ' Text
+'|' Punctuation
+'archive-url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'web' Text
+'.' Text
+'archive' Text
+'.' Text
+'org' Text
+'/' Text
+'web' Text
+'/' Text
+'20101029152433' Text
+'/' Text
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'lci' Text
+'.' Text
+'tf1' Text
+'.' Text
+'fr' Text
+'/' Text
+'posez' Text
+'-' Text
+'vos' Text
+'-' Text
+'questions' Text
+'/' Text
+'2008' Text
+'-' Text
+'07' Text
+'/' Text
+'gratte' Text
+'-' Text
+'ciel' Text
+'-' Text
+'paris' Text
+'-' Text
+'pensez' Text
+'-' Text
+'vous' Text
+'-' Text
+'4872555' Text
+'.' Text
+'html' Text
+' ' Text
+'|' Punctuation
+'archive-date' Name.Label
+'=' Operator
+'29' Text
+' ' Text
+'October' Text
+' ' Text
+'2010' Text
+' ' Text
+'|' Punctuation
+'publisher' Name.Label
+'=' Operator
+'MYTF1News' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'France' Text
+"'" Text
+'s' Text
+' ' Text
+'largest' Text
+' ' Text
+'financial' Text
+' ' Text
+'district' Text
+' ' Text
+'is' Text
+' ' Text
+'[[' Punctuation
+'La Défense' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'where' Text
+' ' Text
+'a' Text
+' ' Text
+'significant' Text
+' ' Text
+'number' Text
+' ' Text
+'of' Text
+' ' Text
+'skyscrapers' Text
+' ' Text
+'are' Text
+' ' Text
+'located' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'[' Punctuation
+'http://www.groupenci.com/uk/ile-de-france/defense.com-square.html' Name.Label
+' ' Text.Whitespace
+'In' Text
+' ' Text
+'the' Text
+' ' Text
+'heart' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'main' Text
+' ' Text
+'European' Text
+' ' Text
+'Business' Text
+' ' Text
+'area' Text
+']' Punctuation
+' ' Text
+'{{' Punctuation
+'Webarchive' Name.Tag
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'web' Text
+'.' Text
+'archive' Text
+'.' Text
+'org' Text
+'/' Text
+'web' Text
+'/' Text
+'20100729154317' Text
+'/' Text
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'groupenci' Text
+'.' Text
+'com' Text
+'/' Text
+'uk' Text
+'/' Text
+'ile' Text
+'-' Text
+'de' Text
+'-' Text
+'france' Text
+'/' Text
+'defense' Text
+'.' Text
+'com' Text
+'-' Text
+'square' Text
+'.' Text
+'html' Text
+'|' Punctuation
+'date' Name.Label
+'=' Operator
+'29' Text
+' ' Text
+'July' Text
+' ' Text
+'2010' Text
+'}}' Punctuation
+'&nbsp;' Name.Entity
+'–' Text
+' ' Text
+'NCI' Text
+' ' Text
+'Business' Text
+' ' Text
+'Center' Text
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'Other' Text
+' ' Text
+'massive' Text
+' ' Text
+'buildings' Text
+' ' Text
+'that' Text
+' ' Text
+'are' Text
+' ' Text
+'a' Text
+' ' Text
+'challenge' Text
+' ' Text
+'to' Text
+' ' Text
+'integrate' Text
+' ' Text
+'into' Text
+' ' Text
+'their' Text
+' ' Text
+'environment' Text
+' ' Text
+'are' Text
+' ' Text
+'large' Text
+' ' Text
+'bridges' Text
+';' Text
+' ' Text
+'an' Text
+' ' Text
+'example' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'way' Text
+' ' Text
+'this' Text
+' ' Text
+'has' Text
+' ' Text
+'been' Text
+' ' Text
+'done' Text
+' ' Text
+'is' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Millau Viaduct' Name.Tag
+']]' Punctuation
+'.' Text
+' ' Text
+'Some' Text
+' ' Text
+'famous' Text
+' ' Text
+'modern' Text
+' ' Text
+'French' Text
+' ' Text
+'architects' Text
+' ' Text
+'include' Text
+' ' Text
+'[[' Punctuation
+'Jean Nouvel' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'[[' Punctuation
+'Dominique Perrault' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'[[' Punctuation
+'Christian de Portzamparc' Name.Tag
+']]' Punctuation
+' ' Text
+'and' Text
+' ' Text
+'[[' Punctuation
+'Paul Andreu' Name.Tag
+']]' Punctuation
+'.' Text
+'\n' Text
+
+'\n' Text
+
+'===' Generic.Subheading
+'Literature' Generic.Subheading
+'===' Generic.Subheading
+'\n' Text.Whitespace
+
+'{{' Punctuation
+'Main' Name.Tag
+'|' Punctuation
+'French' Text
+' ' Text
+'literature' Text
+'}}' Punctuation
+'\n' Text
+
+'The' Text
+' ' Text
+'earliest' Text
+' ' Text
+'French' Text
+' ' Text
+'literature' Text
+' ' Text
+'dates' Text
+' ' Text
+'from' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Middle Age' Name.Tag
+']]' Punctuation
+'s' Text
+' ' Text
+'when' Text
+' ' Text
+'what' Text
+' ' Text
+'is' Text
+' ' Text
+'now' Text
+' ' Text
+'known' Text
+' ' Text
+'as' Text
+' ' Text
+'modern' Text
+' ' Text
+'France' Text
+' ' Text
+'did' Text
+' ' Text
+'not' Text
+' ' Text
+'have' Text
+' ' Text
+'a' Text
+' ' Text
+'single' Text
+',' Text
+' ' Text
+'uniform' Text
+' ' Text
+'language' Text
+'.' Text
+' ' Text
+'There' Text
+' ' Text
+'were' Text
+' ' Text
+'several' Text
+' ' Text
+'languages' Text
+' ' Text
+'and' Text
+' ' Text
+'dialects' Text
+',' Text
+' ' Text
+'and' Text
+' ' Text
+'writers' Text
+' ' Text
+'used' Text
+' ' Text
+'their' Text
+' ' Text
+'own' Text
+' ' Text
+'spelling' Text
+' ' Text
+'and' Text
+' ' Text
+'grammar' Text
+'.' Text
+' ' Text
+'Some' Text
+' ' Text
+'authors' Text
+' ' Text
+'of' Text
+' ' Text
+'French' Text
+' ' Text
+'medieval' Text
+' ' Text
+'texts' Text
+',' Text
+' ' Text
+'such' Text
+' ' Text
+'as' Text
+' ' Text
+"''" Generic.Emph
+'[[' Punctuation
+'Tristan and Iseult' Name.Tag
+']]' Punctuation
+"''" Generic.Emph
+' ' Text
+'and' Text
+' ' Text
+"''" Generic.Emph
+'[[' Punctuation
+'Lancelot-Grail' Name.Tag
+']]' Punctuation
+"''" Generic.Emph
+' ' Text
+'are' Text
+' ' Text
+'unknown' Text
+'.' Text
+' ' Text
+'Three' Text
+' ' Text
+'famous' Text
+' ' Text
+'medieval' Text
+' ' Text
+'authors' Text
+' ' Text
+'are' Text
+' ' Text
+'[[' Punctuation
+'Chrétien de Troyes' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'[[' Punctuation
+'Christine de Pizan' Name.Tag
+']]' Punctuation
+' ' Text
+'(' Text
+'[[' Punctuation
+"Langues d'oïl" Name.Tag
+'|' Punctuation
+'langue' Text
+' ' Text
+'d' Text
+"'" Text
+'oïl' Text
+']]' Punctuation
+')' Text
+',' Text
+' ' Text
+'and' Text
+' ' Text
+'[[' Punctuation
+'William IX of Aquitaine' Name.Tag
+'|' Punctuation
+'Duke' Text
+' ' Text
+'William' Text
+' ' Text
+'IX' Text
+' ' Text
+'of' Text
+' ' Text
+'Aquitaine' Text
+']]' Punctuation
+' ' Text
+'(' Text
+'[[' Punctuation
+'Occitan language' Name.Tag
+'|' Punctuation
+'langue' Text
+' ' Text
+'d' Text
+"'" Text
+'oc' Text
+']]' Punctuation
+')' Text
+'.' Text
+' ' Text
+'Much' Text
+' ' Text
+'medieval' Text
+' ' Text
+'French' Text
+' ' Text
+'poetry' Text
+' ' Text
+'and' Text
+' ' Text
+'literature' Text
+' ' Text
+'was' Text
+' ' Text
+'inspired' Text
+' ' Text
+'by' Text
+' ' Text
+'the' Text
+' ' Text
+'legends' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Matter of France' Name.Tag
+'|' Punctuation
+'Carolingian' Text
+' ' Text
+'cycle' Text
+']]' Punctuation
+',' Text
+' ' Text
+'such' Text
+' ' Text
+'as' Text
+' ' Text
+"''" Generic.Emph
+'[[' Punctuation
+'The Song of Roland' Name.Tag
+']]' Punctuation
+"''" Generic.Emph
+' ' Text
+'and' Text
+' ' Text
+'the' Text
+' ' Text
+'various' Text
+' ' Text
+'[[' Punctuation
+'chansons de geste' Name.Tag
+']]' Punctuation
+'.' Text
+' ' Text
+'The' Text
+' ' Text
+"''" Generic.Emph
+'Roman' Generic.Emph
+' ' Generic.Emph
+'de' Generic.Emph
+' ' Generic.Emph
+'Renart' Generic.Emph
+"''" Generic.Emph
+',' Text
+' ' Text
+'written' Text
+' ' Text
+'in' Text
+' ' Text
+'1175' Text
+' ' Text
+'by' Text
+' ' Text
+'Perrout' Text
+' ' Text
+'de' Text
+' ' Text
+'Saint' Text
+' ' Text
+'Cloude' Text
+',' Text
+' ' Text
+'tells' Text
+' ' Text
+'the' Text
+' ' Text
+'story' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'medieval' Text
+' ' Text
+'character' Text
+' ' Text
+'[[' Punctuation
+'Reynard' Name.Tag
+']]' Punctuation
+' ' Text
+'(' Text
+"'" Text
+'the' Text
+' ' Text
+'Fox' Text
+"'" Text
+')' Text
+' ' Text
+'and' Text
+' ' Text
+'is' Text
+' ' Text
+'another' Text
+' ' Text
+'example' Text
+' ' Text
+'of' Text
+' ' Text
+'early' Text
+' ' Text
+'French' Text
+' ' Text
+'writing' Text
+'.' Text
+'\n' Text
+
+'\n' Text
+
+'An' Text
+' ' Text
+'important' Text
+' ' Text
+'16th' Text
+'-' Text
+'century' Text
+' ' Text
+'writer' Text
+' ' Text
+'was' Text
+' ' Text
+'[[' Punctuation
+'François Rabelais' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'who' Text
+' ' Text
+'wrote' Text
+' ' Text
+'five' Text
+' ' Text
+'popular' Text
+' ' Text
+'early' Text
+' ' Text
+'[[' Punctuation
+'picaresque' Name.Tag
+']]' Punctuation
+' ' Text
+'novels' Text
+'.' Text
+' ' Text
+'Rabelais' Text
+' ' Text
+'was' Text
+' ' Text
+'also' Text
+' ' Text
+'in' Text
+' ' Text
+'regular' Text
+' ' Text
+'communication' Text
+' ' Text
+'with' Text
+' ' Text
+'[[' Punctuation
+'Marguerite de Navarre' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'author' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+"''" Generic.Emph
+'[[' Punctuation
+'Heptameron' Name.Tag
+']]' Punctuation
+"''" Generic.Emph
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'cite' Name.Tag
+' ' Name.Tag
+'journal' Name.Tag
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Rabelais' Text
+' ' Text
+'and' Text
+' ' Text
+'Marguerite' Text
+' ' Text
+'de' Text
+' ' Text
+'Navarre' Text
+' ' Text
+'on' Text
+' ' Text
+'Sixteenth' Text
+'-' Text
+'Century' Text
+' ' Text
+'Views' Text
+' ' Text
+'of' Text
+' ' Text
+'Clandestine' Text
+' ' Text
+'Marriage' Text
+' ' Text
+'|' Punctuation
+' first' Name.Label
+'=' Operator
+' ' Text
+'Cathleen' Text
+' ' Text
+'M' Text
+'.' Text
+' ' Text
+'|' Punctuation
+'last' Name.Label
+'=' Operator
+' ' Text
+'Bauschatz' Text
+' ' Text
+'|' Punctuation
+' journal ' Name.Label
+'=' Operator
+' ' Text
+'Sixteenth' Text
+' ' Text
+'Century' Text
+' ' Text
+'Journal' Text
+' ' Text
+'|' Punctuation
+' volume ' Name.Label
+'=' Operator
+' ' Text
+'34' Text
+' ' Text
+'|' Punctuation
+' issue ' Name.Label
+'=' Operator
+' ' Text
+'2' Text
+' ' Text
+'|' Punctuation
+' pages ' Name.Label
+'=' Operator
+' ' Text
+'395' Text
+'–' Text
+'408' Text
+' ' Text
+'|' Punctuation
+' date ' Name.Label
+'=' Operator
+' ' Text
+'2003' Text
+'|' Punctuation
+' doi ' Name.Label
+'=' Operator
+' ' Text
+'10' Text
+'.' Text
+'2307' Text
+'/' Text
+'20061415' Text
+' ' Text
+'|' Punctuation
+' jstor ' Name.Label
+'=' Operator
+' ' Text
+'20061415' Text
+' ' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'Another' Text
+' ' Text
+'16th' Text
+'-' Text
+'century' Text
+' ' Text
+'author' Text
+' ' Text
+'was' Text
+' ' Text
+'[[' Punctuation
+'Michel de Montaigne' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'whose' Text
+' ' Text
+'most' Text
+' ' Text
+'famous' Text
+' ' Text
+'work' Text
+',' Text
+' ' Text
+"''" Generic.Emph
+'[[' Punctuation
+'Essays (Montaigne)' Name.Tag
+'|' Punctuation
+'Essais' Text
+']]' Punctuation
+"''" Generic.Emph
+',' Text
+' ' Text
+'started' Text
+' ' Text
+'a' Text
+' ' Text
+'literary' Text
+' ' Text
+'genre' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Montaigne' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'humanistictexts' Text
+'.' Text
+'org' Text
+'/' Text
+'montaigne' Text
+'.' Text
+'htm' Text
+' ' Text
+'|' Punctuation
+'url-status' Name.Label
+'=' Operator
+'dead' Text
+' ' Text
+'|' Punctuation
+'archive-url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'web' Text
+'.' Text
+'archive' Text
+'.' Text
+'org' Text
+'/' Text
+'web' Text
+'/' Text
+'20110525201508' Text
+'/' Text
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'humanistictexts' Text
+'.' Text
+'org' Text
+'/' Text
+'montaigne' Text
+'.' Text
+'htm' Text
+' ' Text
+'|' Punctuation
+'archive-date' Name.Label
+'=' Operator
+'25' Text
+' ' Text
+'May' Text
+' ' Text
+'2011' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'22' Text
+' ' Text
+'July' Text
+' ' Text
+'2011' Text
+' ' Text
+'|' Punctuation
+'publisher' Name.Label
+'=' Operator
+'Humanistictexts' Text
+'.' Text
+'org' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'[[' Punctuation
+'Pierre de Ronsard' Name.Tag
+']]' Punctuation
+' ' Text
+'and' Text
+' ' Text
+'[[' Punctuation
+'Joachim du Bellay' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'were' Text
+' ' Text
+'the' Text
+' ' Text
+'founders' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'La Pléiade' Name.Tag
+']]' Punctuation
+' ' Text
+'poetic' Text
+' ' Text
+'movement' Text
+'.' Text
+'\n' Text
+
+'\n' Text
+
+'In' Text
+' ' Text
+'1678' Text
+',' Text
+' ' Text
+'[[' Punctuation
+'Madame de La Fayette' Name.Tag
+']]' Punctuation
+' ' Text
+'anonymously' Text
+' ' Text
+'published' Text
+' ' Text
+"''" Generic.Emph
+'[[' Punctuation
+'La Princesse de Clèves' Name.Tag
+']]' Punctuation
+"''" Generic.Emph
+',' Text
+' ' Text
+'a' Text
+' ' Text
+'widely' Text
+' ' Text
+'praised' Text
+' ' Text
+'[[' Punctuation
+'psychological novel' Name.Tag
+']]' Punctuation
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'date' Name.Label
+'=' Operator
+'28' Text
+' ' Text
+'February' Text
+' ' Text
+'2010' Text
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'La' Text
+' ' Text
+'Princesse' Text
+' ' Text
+'de' Text
+' ' Text
+'Cleves' Text
+' ' Text
+'by' Text
+' ' Text
+'Madame' Text
+' ' Text
+'de' Text
+' ' Text
+'Lafayette' Text
+',' Text
+' ' Text
+'adapted' Text
+' ' Text
+'by' Text
+' ' Text
+'Jo' Text
+' ' Text
+'Clifford' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'radiodramareviews' Text
+'.' Text
+'com' Text
+'/' Text
+'id438' Text
+'.' Text
+'html' Text
+' ' Text
+'|' Punctuation
+'url-status' Name.Label
+'=' Operator
+'dead' Text
+' ' Text
+'|' Punctuation
+'archive-url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'web' Text
+'.' Text
+'archive' Text
+'.' Text
+'org' Text
+'/' Text
+'web' Text
+'/' Text
+'20110810091607' Text
+'/' Text
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'radiodramareviews' Text
+'.' Text
+'com' Text
+'/' Text
+'id438' Text
+'.' Text
+'html' Text
+' ' Text
+'|' Punctuation
+'archive-date' Name.Label
+'=' Operator
+'10' Text
+' ' Text
+'August' Text
+' ' Text
+'2011' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'22' Text
+' ' Text
+'July' Text
+' ' Text
+'2011' Text
+' ' Text
+'|' Punctuation
+'publisher' Name.Label
+'=' Operator
+'Radiodramareviews' Text
+'.' Text
+'com' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'[[' Punctuation
+'Jean de La Fontaine' Name.Tag
+']]' Punctuation
+' ' Text
+'is' Text
+' ' Text
+'a' Text
+' ' Text
+'famous' Text
+' ' Text
+'17th' Text
+' ' Text
+'century' Text
+' ' Text
+'[[' Punctuation
+'fabulist' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'who' Text
+' ' Text
+'borrowed' Text
+' ' Text
+'from' Text
+' ' Text
+'[[' Punctuation
+'Aesop' Name.Tag
+']]' Punctuation
+'.' Text
+' ' Text
+'Generations' Text
+' ' Text
+'of' Text
+' ' Text
+'French' Text
+' ' Text
+'schoolchildren' Text
+' ' Text
+'had' Text
+' ' Text
+'to' Text
+' ' Text
+'learn' Text
+' ' Text
+'his' Text
+' ' Text
+'fables' Text
+' ' Text
+'by' Text
+' ' Text
+'heart' Text
+',' Text
+' ' Text
+'as' Text
+' ' Text
+'they' Text
+' ' Text
+'were' Text
+' ' Text
+'thought' Text
+' ' Text
+'to' Text
+' ' Text
+'teach' Text
+' ' Text
+'[[' Punctuation
+'wisdom' Name.Tag
+']]' Punctuation
+' ' Text
+'and' Text
+' ' Text
+'[[' Punctuation
+'common sense' Name.Tag
+']]' Punctuation
+'.' Text
+' ' Text
+'Some' Text
+' ' Text
+'of' Text
+' ' Text
+'his' Text
+' ' Text
+'verses' Text
+' ' Text
+'have' Text
+' ' Text
+'entered' Text
+' ' Text
+'the' Text
+' ' Text
+'popular' Text
+' ' Text
+'language' Text
+' ' Text
+'to' Text
+' ' Text
+'become' Text
+' ' Text
+'proverbs' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'[[' Punctuation
+'Jean de La Fontaine' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+"''" Generic.Emph
+'Fables' Generic.Emph
+"''" Generic.Emph
+' ' Text
+'(' Text
+'1668' Text
+'–' Text
+'1679' Text
+')' Text
+',' Text
+' ' Text
+'I' Text
+'.' Text
+',' Text
+' ' Text
+'21' Text
+',' Text
+' ' Text
+"''" Generic.Emph
+'Les' Generic.Emph
+' ' Generic.Emph
+'Frelons' Generic.Emph
+' ' Generic.Emph
+'et' Generic.Emph
+' ' Generic.Emph
+'les' Generic.Emph
+' ' Generic.Emph
+'Mouches' Generic.Emph
+' ' Generic.Emph
+'à' Generic.Emph
+' ' Generic.Emph
+'miel' Generic.Emph
+"''" Generic.Emph
+';' Text
+' ' Text
+'reported' Text
+' ' Text
+'in' Text
+' ' Text
+'Thomas' Text
+' ' Text
+'Benfield' Text
+' ' Text
+'Harbottle' Text
+' ' Text
+'and' Text
+' ' Text
+'Philip' Text
+' ' Text
+'Hugh' Text
+' ' Text
+'Dalbiac' Text
+',' Text
+' ' Text
+"''" Generic.Emph
+'Dictionary' Generic.Emph
+' ' Generic.Emph
+'of' Generic.Emph
+' ' Generic.Emph
+'Quotations' Generic.Emph
+' ' Generic.Emph
+'(' Generic.Emph
+'French' Generic.Emph
+' ' Generic.Emph
+'and' Generic.Emph
+' ' Generic.Emph
+'Italian' Generic.Emph
+')' Generic.Emph
+"''" Generic.Emph
+' ' Text
+'(' Text
+'1904' Text
+')' Text
+',' Text
+' ' Text
+'p' Text
+'.' Text
+' ' Text
+'1' Text
+'.' Text
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'\n' Text
+
+'\n' Text
+
+'[[' Punctuation
+'File' Name.Namespace
+':' Punctuation
+'French literary figures.jpg' Name.Tag
+'|' Punctuation
+'thumb' Text
+'|' Punctuation
+'alt' Name.Attribute
+'=' Operator
+'see' Text
+' ' Text
+'description' Text
+'|' Punctuation
+'left' Text
+'|' Punctuation
+'French' Text
+' ' Text
+'literary' Text
+' ' Text
+'figures' Text
+'.' Text
+' ' Text
+'Clockwise' Text
+' ' Text
+'from' Text
+' ' Text
+'top' Text
+' ' Text
+'left' Text
+':' Text
+' ' Text
+'[[' Punctuation
+'Molière' Name.Tag
+']]' Punctuation
+' ' Text
+'is' Text
+' ' Text
+'the' Text
+' ' Text
+'most' Text
+' ' Text
+'played' Text
+' ' Text
+'author' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Comédie-Française' Name.Tag
+']]' Punctuation
+';' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'In' Name.Tag
+' ' Name.Tag
+'lang' Name.Tag
+'|' Punctuation
+'fr' Text
+'}}' Punctuation
+' ' Text
+'[' Punctuation
+'http://www.comedie-francaise.fr/histoire-et-patrimoine?id=525' Name.Label
+' ' Text.Whitespace
+'Auteurs' Text
+' ' Text
+'et' Text
+' ' Text
+'répertoires' Text
+']' Punctuation
+' ' Text
+'{{' Punctuation
+'Webarchive' Name.Tag
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'web' Text
+'.' Text
+'archive' Text
+'.' Text
+'org' Text
+'/' Text
+'web' Text
+'/' Text
+'20100919234251' Text
+'/' Text
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'comedie' Text
+'-' Text
+'francaise' Text
+'.' Text
+'fr' Text
+'/' Text
+'histoire' Text
+'-' Text
+'et' Text
+'-' Text
+'patrimoine' Text
+'?' Text
+'id' Text
+'=' Text
+'525' Text
+'|' Punctuation
+'date' Name.Label
+'=' Operator
+'19' Text
+' ' Text
+'September' Text
+' ' Text
+'2010' Text
+'}}' Punctuation
+'&nbsp;' Name.Entity
+'–' Text
+' ' Text
+'Official' Text
+' ' Text
+'site' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'Comédie' Text
+' ' Text
+'Française' Text
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'[[' Punctuation
+'Victor Hugo' Name.Tag
+']]' Punctuation
+' ' Text
+'is' Text
+' ' Text
+'one' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'most' Text
+' ' Text
+'important' Text
+' ' Text
+'French' Text
+' ' Text
+'novelist' Text
+' ' Text
+'and' Text
+' ' Text
+'poet' Text
+';' Text
+' ' Text
+'19th' Text
+'-' Text
+'century' Text
+' ' Text
+'poet' Text
+',' Text
+' ' Text
+'writer' Text
+' ' Text
+'and' Text
+' ' Text
+'translator' Text
+' ' Text
+'[[' Punctuation
+'Charles Baudelaire' Name.Tag
+']]' Punctuation
+';' Text
+' ' Text
+'20th' Text
+'-' Text
+'century' Text
+' ' Text
+'philosopher' Text
+' ' Text
+'and' Text
+' ' Text
+'novelist' Text
+' ' Text
+'[[' Punctuation
+'Jean-Paul Sartre' Name.Tag
+']]' Punctuation
+']]' Punctuation
+'\n' Text
+
+'\n' Text
+
+'[[' Punctuation
+'Jean Racine' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'who' Text
+' ' Text
+'wrote' Text
+' ' Text
+'plays' Text
+' ' Text
+'such' Text
+' ' Text
+'as' Text
+' ' Text
+"''" Generic.Emph
+'[[' Punctuation
+'Phèdre' Name.Tag
+']]' Punctuation
+"''" Generic.Emph
+' ' Text
+'or' Text
+' ' Text
+"''" Generic.Emph
+'[[' Punctuation
+'Britannicus' Name.Tag
+']]' Punctuation
+"''" Generic.Emph
+' ' Text
+'using' Text
+' ' Text
+'[[' Punctuation
+'French Alexandrine' Name.Tag
+'|' Punctuation
+'alexandrine' Text
+']]' Punctuation
+'s' Text
+',' Text
+' ' Text
+'is' Text
+' ' Text
+'considered' Text
+' ' Text
+'one' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'three' Text
+' ' Text
+'great' Text
+' ' Text
+'dramatists' Text
+' ' Text
+'of' Text
+' ' Text
+'France' Text
+"'" Text
+'s' Text
+' ' Text
+'golden' Text
+' ' Text
+'age' Text
+' ' Text
+'along' Text
+' ' Text
+'with' Text
+' ' Text
+'[[' Punctuation
+'Pierre Corneille' Name.Tag
+']]' Punctuation
+' ' Text
+'(' Text
+"''" Generic.Emph
+'[[' Punctuation
+'Le Cid' Name.Tag
+']]' Punctuation
+"''" Generic.Emph
+')' Text
+' ' Text
+'and' Text
+' ' Text
+'[[' Punctuation
+'Molière' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'who' Text
+' ' Text
+'wrote' Text
+' ' Text
+'dozens' Text
+' ' Text
+'of' Text
+' ' Text
+'plays' Text
+',' Text
+' ' Text
+'including' Text
+' ' Text
+"''" Generic.Emph
+'[[' Punctuation
+'Le Misanthrope' Name.Tag
+']]' Punctuation
+"''" Generic.Emph
+',' Text
+' ' Text
+"''" Generic.Emph
+'[[' Punctuation
+"L'Avare" Name.Tag
+']]' Punctuation
+"''" Generic.Emph
+',' Text
+' ' Text
+"''" Generic.Emph
+'[[' Punctuation
+'Le Malade imaginaire' Name.Tag
+']]' Punctuation
+"''" Generic.Emph
+',' Text
+' ' Text
+'and' Text
+' ' Text
+"''" Generic.Emph
+'[[' Punctuation
+'Le Bourgeois gentilhomme' Name.Tag
+']]' Punctuation
+"''" Generic.Emph
+'.' Text
+' ' Text
+'French' Text
+' ' Text
+'is' Text
+' ' Text
+'sometimes' Text
+' ' Text
+'referred' Text
+' ' Text
+'to' Text
+' ' Text
+'as' Text
+' ' Text
+'"' Text
+'the' Text
+' ' Text
+'language' Text
+' ' Text
+'of' Text
+' ' Text
+'Molière' Text
+'"' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'news' Name.Tag
+' ' Text
+'|' Punctuation
+'last' Name.Label
+'=' Operator
+'Randall' Text
+' ' Text
+'|' Punctuation
+'first' Name.Label
+'=' Operator
+'Colin' Text
+' ' Text
+'|' Punctuation
+'date' Name.Label
+'=' Operator
+'25' Text
+' ' Text
+'October' Text
+' ' Text
+'2004' Text
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'France' Text
+' ' Text
+'looks' Text
+' ' Text
+'to' Text
+' ' Text
+'the' Text
+' ' Text
+'law' Text
+' ' Text
+'to' Text
+' ' Text
+'save' Text
+' ' Text
+'the' Text
+' ' Text
+'language' Text
+' ' Text
+'of' Text
+' ' Text
+'Molière' Text
+' ' Text
+'|' Punctuation
+'work' Name.Label
+'=' Operator
+'The' Text
+' ' Text
+'Daily' Text
+' ' Text
+'Telegraph' Text
+' ' Text
+'|' Punctuation
+'location' Name.Label
+'=' Operator
+'London' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'telegraph' Text
+'.' Text
+'co' Text
+'.' Text
+'uk' Text
+'/' Text
+'news' Text
+'/' Text
+'worldnews' Text
+'/' Text
+'europe' Text
+'/' Text
+'france' Text
+'/' Text
+'1475046' Text
+'/' Text
+'France' Text
+'-' Text
+'looks' Text
+'-' Text
+'to' Text
+'-' Text
+'the' Text
+'-' Text
+'law' Text
+'-' Text
+'to' Text
+'-' Text
+'save' Text
+'-' Text
+'the' Text
+'-' Text
+'language' Text
+'-' Text
+'of' Text
+'-' Text
+'Moliere' Text
+'.' Text
+'html' Text
+' ' Text
+'|' Punctuation
+'url-status' Name.Label
+'=' Operator
+'live' Text
+' ' Text
+'|' Punctuation
+'url-access' Name.Label
+'=' Operator
+'subscription' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'22' Text
+' ' Text
+'July' Text
+' ' Text
+'2011' Text
+' ' Text
+'|' Punctuation
+'archive-url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'ghostarchive' Text
+'.' Text
+'org' Text
+'/' Text
+'archive' Text
+'/' Text
+'20220110' Text
+'/' Text
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'telegraph' Text
+'.' Text
+'co' Text
+'.' Text
+'uk' Text
+'/' Text
+'news' Text
+'/' Text
+'worldnews' Text
+'/' Text
+'europe' Text
+'/' Text
+'france' Text
+'/' Text
+'1475046' Text
+'/' Text
+'France' Text
+'-' Text
+'looks' Text
+'-' Text
+'to' Text
+'-' Text
+'the' Text
+'-' Text
+'law' Text
+'-' Text
+'to' Text
+'-' Text
+'save' Text
+'-' Text
+'the' Text
+'-' Text
+'language' Text
+'-' Text
+'of' Text
+'-' Text
+'Moliere' Text
+'.' Text
+'html' Text
+' ' Text
+'|' Punctuation
+'archive-date' Name.Label
+'=' Operator
+'10' Text
+' ' Text
+'January' Text
+' ' Text
+'2022' Text
+'}}' Punctuation
+'{{' Punctuation
+'Cbignore' Name.Tag
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'\n' Text
+
+'\n' Text
+
+'French' Text
+' ' Text
+'literature' Text
+' ' Text
+'and' Text
+' ' Text
+'poetry' Text
+' ' Text
+'flourished' Text
+' ' Text
+'during' Text
+' ' Text
+'the' Text
+' ' Text
+'18th' Text
+' ' Text
+'and' Text
+' ' Text
+'19th' Text
+' ' Text
+'centuries' Text
+'.' Text
+' ' Text
+'[[' Punctuation
+'Denis Diderot' Name.Tag
+']]' Punctuation
+"'" Text
+'s' Text
+' ' Text
+'best' Text
+'-' Text
+'known' Text
+' ' Text
+'works' Text
+' ' Text
+'are' Text
+' ' Text
+"''" Generic.Emph
+'[[' Punctuation
+'Jacques the Fatalist' Name.Tag
+']]' Punctuation
+"''" Generic.Emph
+' ' Text
+'and' Text
+' ' Text
+"''" Generic.Emph
+'[[' Punctuation
+"Rameau's Nephew" Name.Tag
+']]' Punctuation
+"''" Generic.Emph
+'.' Text
+' ' Text
+'He' Text
+' ' Text
+'is' Text
+' ' Text
+'best' Text
+' ' Text
+'known' Text
+',' Text
+' ' Text
+'however' Text
+',' Text
+' ' Text
+'as' Text
+' ' Text
+'the' Text
+' ' Text
+'main' Text
+' ' Text
+'editor' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+"''" Generic.Emph
+'[[' Punctuation
+'Encyclopédie' Name.Tag
+']]' Punctuation
+"''" Generic.Emph
+',' Text
+' ' Text
+'whose' Text
+' ' Text
+'aim' Text
+' ' Text
+'was' Text
+',' Text
+' ' Text
+'to' Text
+' ' Text
+'sum' Text
+' ' Text
+'up' Text
+' ' Text
+'all' Text
+' ' Text
+'the' Text
+' ' Text
+'knowledge' Text
+' ' Text
+'of' Text
+' ' Text
+'his' Text
+' ' Text
+'century' Text
+' ' Text
+'(' Text
+'in' Text
+' ' Text
+'fields' Text
+' ' Text
+'such' Text
+' ' Text
+'as' Text
+' ' Text
+'arts' Text
+',' Text
+' ' Text
+'sciences' Text
+',' Text
+' ' Text
+'languages' Text
+',' Text
+' ' Text
+'and' Text
+' ' Text
+'philosophy' Text
+')' Text
+' ' Text
+'and' Text
+' ' Text
+'to' Text
+' ' Text
+'fight' Text
+' ' Text
+'ignorance' Text
+' ' Text
+'and' Text
+' ' Text
+'[[' Punctuation
+'obscurantism' Name.Tag
+']]' Punctuation
+'.' Text
+' ' Text
+'During' Text
+' ' Text
+'that' Text
+' ' Text
+'same' Text
+' ' Text
+'century' Text
+',' Text
+' ' Text
+'[[' Punctuation
+'Charles Perrault' Name.Tag
+']]' Punctuation
+' ' Text
+'was' Text
+' ' Text
+'a' Text
+' ' Text
+'prolific' Text
+' ' Text
+'writer' Text
+' ' Text
+'of' Text
+' ' Text
+'children' Text
+"'" Text
+'s' Text
+' ' Text
+'fairy' Text
+' ' Text
+'tales' Text
+' ' Text
+'including' Text
+' ' Text
+"''" Generic.Emph
+'[[' Punctuation
+'Puss in Boots' Name.Tag
+']]' Punctuation
+"''" Generic.Emph
+',' Text
+' ' Text
+"''" Generic.Emph
+'[[' Punctuation
+'Cinderella' Name.Tag
+']]' Punctuation
+"''" Generic.Emph
+',' Text
+' ' Text
+"''" Generic.Emph
+'[[' Punctuation
+'Sleeping Beauty' Name.Tag
+']]' Punctuation
+"''" Generic.Emph
+' ' Text
+'and' Text
+' ' Text
+"''" Generic.Emph
+'[[' Punctuation
+'Bluebeard' Name.Tag
+']]' Punctuation
+"''" Generic.Emph
+'.' Text
+' ' Text
+'At' Text
+' ' Text
+'the' Text
+' ' Text
+'start' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'19th' Text
+' ' Text
+'century' Text
+',' Text
+' ' Text
+'[[' Punctuation
+'symbolist poetry' Name.Tag
+']]' Punctuation
+' ' Text
+'was' Text
+' ' Text
+'an' Text
+' ' Text
+'important' Text
+' ' Text
+'movement' Text
+' ' Text
+'in' Text
+' ' Text
+'French' Text
+' ' Text
+'literature' Text
+',' Text
+' ' Text
+'with' Text
+' ' Text
+'poets' Text
+' ' Text
+'such' Text
+' ' Text
+'as' Text
+' ' Text
+'Charles' Text
+' ' Text
+'Baudelaire' Text
+',' Text
+' ' Text
+'[[' Punctuation
+'Paul Verlaine' Name.Tag
+']]' Punctuation
+' ' Text
+'and' Text
+' ' Text
+'[[' Punctuation
+'Stéphane Mallarmé' Name.Tag
+']]' Punctuation
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Le' Text
+' ' Text
+'Symbolisme' Text
+' ' Text
+'français' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'users' Text
+'.' Text
+'skynet' Text
+'.' Text
+'be' Text
+'/' Text
+'litterature' Text
+'/' Text
+'symbolisme' Text
+'/' Text
+'symbolismefrancais' Text
+'.' Text
+'htm' Text
+' ' Text
+'|' Punctuation
+'url-status' Name.Label
+'=' Operator
+'dead' Text
+' ' Text
+'|' Punctuation
+'archive-url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'web' Text
+'.' Text
+'archive' Text
+'.' Text
+'org' Text
+'/' Text
+'web' Text
+'/' Text
+'20180307192737' Text
+'/' Text
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'users' Text
+'.' Text
+'skynet' Text
+'.' Text
+'be' Text
+'/' Text
+'litterature' Text
+'/' Text
+'symbolisme' Text
+'/' Text
+'symbolismefrancais' Text
+'.' Text
+'htm' Text
+' ' Text
+'|' Punctuation
+'archive-date' Name.Label
+'=' Operator
+'7' Text
+' ' Text
+'March' Text
+' ' Text
+'2018' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'29' Text
+' ' Text
+'July' Text
+' ' Text
+'2010' Text
+' ' Text
+'|' Punctuation
+'website' Name.Label
+'=' Operator
+'users' Text
+'.' Text
+'skynet' Text
+'.' Text
+'be' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'\n' Text
+
+'\n' Text
+
+'The' Text
+' ' Text
+'19th' Text
+' ' Text
+'century' Text
+' ' Text
+'saw' Text
+' ' Text
+'the' Text
+' ' Text
+'writings' Text
+' ' Text
+'of' Text
+' ' Text
+'many' Text
+' ' Text
+'renowned' Text
+' ' Text
+'French' Text
+' ' Text
+'authors' Text
+'.' Text
+' ' Text
+'Victor' Text
+' ' Text
+'Hugo' Text
+' ' Text
+'is' Text
+' ' Text
+'sometimes' Text
+' ' Text
+'seen' Text
+' ' Text
+'as' Text
+' ' Text
+'"' Text
+'the' Text
+' ' Text
+'greatest' Text
+' ' Text
+'French' Text
+' ' Text
+'writer' Text
+' ' Text
+'of' Text
+' ' Text
+'all' Text
+' ' Text
+'time' Text
+'"' Text
+'<' Punctuation
+'ref' Name.Tag
+' ' Text.Whitespace
+'name' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+'victor' Literal.String.Double
+'"' Literal.String.Double
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Victor' Text
+' ' Text
+'Hugo' Text
+' ' Text
+'est' Text
+' ' Text
+'le' Text
+' ' Text
+'plus' Text
+' ' Text
+'grand' Text
+' ' Text
+'écrivain' Text
+' ' Text
+'français' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'lecavalierbleu' Text
+'.' Text
+'com' Text
+'/' Text
+'images' Text
+'/' Text
+'30' Text
+'/' Text
+'extrait_75' Text
+'.' Text
+'pdf' Text
+' ' Text
+'|' Punctuation
+'url-status' Name.Label
+'=' Operator
+'dead' Text
+' ' Text
+'|' Punctuation
+'archive-url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'web' Text
+'.' Text
+'archive' Text
+'.' Text
+'org' Text
+'/' Text
+'web' Text
+'/' Text
+'20130723121408' Text
+'/' Text
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'lecavalierbleu' Text
+'.' Text
+'com' Text
+'/' Text
+'images' Text
+'/' Text
+'30' Text
+'/' Text
+'extrait_75' Text
+'.' Text
+'pdf' Text
+' ' Text
+'|' Punctuation
+'archive-date' Name.Label
+'=' Operator
+'23' Text
+' ' Text
+'July' Text
+' ' Text
+'2013' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'for' Text
+' ' Text
+'excelling' Text
+' ' Text
+'in' Text
+' ' Text
+'all' Text
+' ' Text
+'[[' Punctuation
+'literary genre' Name.Tag
+']]' Punctuation
+'s' Text
+'.' Text
+' ' Text
+'The' Text
+' ' Text
+'preface' Text
+' ' Text
+'of' Text
+' ' Text
+'his' Text
+' ' Text
+'play' Text
+' ' Text
+"''" Generic.Emph
+'[[' Punctuation
+'Cromwell (play)' Name.Tag
+'|' Punctuation
+'Cromwell' Text
+']]' Punctuation
+"''" Generic.Emph
+' ' Text
+'is' Text
+' ' Text
+'considered' Text
+' ' Text
+'to' Text
+' ' Text
+'be' Text
+' ' Text
+'the' Text
+' ' Text
+'manifesto' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Romanticism' Name.Tag
+'|' Punctuation
+'Romantic' Text
+' ' Text
+'movement' Text
+']]' Punctuation
+'.' Text
+' ' Text
+"''" Generic.Emph
+'[[' Punctuation
+'Les Contemplations' Name.Tag
+']]' Punctuation
+"''" Generic.Emph
+' ' Text
+'and' Text
+' ' Text
+"''" Generic.Emph
+'[[' Punctuation
+'La Légende des siècles' Name.Tag
+']]' Punctuation
+"''" Generic.Emph
+' ' Text
+'are' Text
+' ' Text
+'considered' Text
+' ' Text
+'"' Text
+'poetic' Text
+' ' Text
+'masterpieces' Text
+'"' Text
+',' Text
+'<' Punctuation
+'ref' Name.Tag
+' ' Text.Whitespace
+'name' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+'hugo' Literal.String.Double
+'"' Literal.String.Double
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Victor' Text
+' ' Text
+'Hugo' Text
+' ' Text
+'1802' Text
+'–' Text
+'1885' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'enotes' Text
+'.' Text
+'com' Text
+'/' Text
+'victor' Text
+'-' Text
+'hugo' Text
+'-' Text
+'criticism' Text
+'/' Text
+'hugo' Text
+'-' Text
+'victor' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'16' Text
+' ' Text
+'July' Text
+' ' Text
+'2011' Text
+' ' Text
+'|' Punctuation
+'publisher' Name.Label
+'=' Operator
+'Enotes' Text
+'.' Text
+'com' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'Hugo' Text
+"'" Text
+'s' Text
+' ' Text
+'verse' Text
+' ' Text
+'has' Text
+' ' Text
+'been' Text
+' ' Text
+'compared' Text
+' ' Text
+'to' Text
+' ' Text
+'that' Text
+' ' Text
+'of' Text
+' ' Text
+'Shakespeare' Text
+',' Text
+' ' Text
+'[[' Punctuation
+'Dante' Name.Tag
+']]' Punctuation
+' ' Text
+'and' Text
+' ' Text
+'[[' Punctuation
+'Homer' Name.Tag
+']]' Punctuation
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+' ' Text.Whitespace
+'name' Name.Attribute
+' ' Text.Whitespace
+'=' Operator
+' ' Text.Whitespace
+'hugo' Literal.String
+'/>' Punctuation
+' ' Text
+'His' Text
+' ' Text
+'novel' Text
+' ' Text
+"''" Generic.Emph
+'[[' Punctuation
+'Les Misérables' Name.Tag
+']]' Punctuation
+"''" Generic.Emph
+' ' Text
+'is' Text
+' ' Text
+'widely' Text
+' ' Text
+'seen' Text
+' ' Text
+'as' Text
+' ' Text
+'one' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'greatest' Text
+' ' Text
+'novels' Text
+' ' Text
+'ever' Text
+' ' Text
+'written' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'All' Text
+'-' Text
+'Time' Text
+' ' Text
+'100' Text
+' ' Text
+'Best' Text
+' ' Text
+'Novels' Text
+' ' Text
+'List' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'adherents' Text
+'.' Text
+'com' Text
+'/' Text
+'people' Text
+'/' Text
+'100_novel' Text
+'.' Text
+'html' Text
+' ' Text
+'|' Punctuation
+'url-status' Name.Label
+'=' Operator
+'usurped' Text
+' ' Text
+'|' Punctuation
+'archive-url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'web' Text
+'.' Text
+'archive' Text
+'.' Text
+'org' Text
+'/' Text
+'web' Text
+'/' Text
+'20051128235020' Text
+'/' Text
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'adherents' Text
+'.' Text
+'com' Text
+'/' Text
+'people' Text
+'/' Text
+'100_novel' Text
+'.' Text
+'html' Text
+' ' Text
+'|' Punctuation
+'archive-date' Name.Label
+'=' Operator
+'28' Text
+' ' Text
+'November' Text
+' ' Text
+'2005' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'22' Text
+' ' Text
+'July' Text
+' ' Text
+'2011' Text
+' ' Text
+'|' Punctuation
+'publisher' Name.Label
+'=' Operator
+'Adherents' Text
+'.' Text
+'com' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'and' Text
+' ' Text
+"''" Generic.Emph
+'[[' Punctuation
+'The Hunchback of Notre-Dame' Name.Tag
+'|' Punctuation
+'The' Text
+' ' Text
+'Hunchback' Text
+' ' Text
+'of' Text
+' ' Text
+'Notre' Text
+' ' Text
+'Dame' Text
+']]' Punctuation
+"''" Generic.Emph
+' ' Text
+'has' Text
+' ' Text
+'remained' Text
+' ' Text
+'immensely' Text
+' ' Text
+'popular' Text
+'.' Text
+' ' Text
+'Other' Text
+' ' Text
+'major' Text
+' ' Text
+'authors' Text
+' ' Text
+'of' Text
+' ' Text
+'that' Text
+' ' Text
+'century' Text
+' ' Text
+'include' Text
+' ' Text
+'[[' Punctuation
+'Alexandre Dumas' Name.Tag
+']]' Punctuation
+' ' Text
+'(' Text
+"''" Generic.Emph
+'[[' Punctuation
+'The Three Musketeers' Name.Tag
+']]' Punctuation
+"''" Generic.Emph
+' ' Text
+'and' Text
+' ' Text
+"''" Generic.Emph
+'[[' Punctuation
+'The Count of Monte-Cristo' Name.Tag
+']]' Punctuation
+"''" Generic.Emph
+')' Text
+',' Text
+' ' Text
+'[[' Punctuation
+'Jules Verne' Name.Tag
+']]' Punctuation
+' ' Text
+'(' Text
+"''" Generic.Emph
+'[[' Punctuation
+'Twenty Thousand Leagues Under the Sea' Name.Tag
+']]' Punctuation
+"''" Generic.Emph
+')' Text
+',' Text
+' ' Text
+'[[' Punctuation
+'Émile Zola' Name.Tag
+']]' Punctuation
+' ' Text
+'(' Text
+"''" Generic.Emph
+'[[' Punctuation
+'Les Rougon-Macquart' Name.Tag
+']]' Punctuation
+"''" Generic.Emph
+')' Text
+',' Text
+' ' Text
+'[[' Punctuation
+'Honoré de Balzac' Name.Tag
+']]' Punctuation
+' ' Text
+'(' Text
+"''" Generic.Emph
+'[[' Punctuation
+'La Comédie humaine' Name.Tag
+']]' Punctuation
+"''" Generic.Emph
+')' Text
+',' Text
+' ' Text
+'[[' Punctuation
+'Guy de Maupassant' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'[[' Punctuation
+'Théophile Gautier' Name.Tag
+']]' Punctuation
+' ' Text
+'and' Text
+' ' Text
+'[[' Punctuation
+'Stendhal' Name.Tag
+']]' Punctuation
+' ' Text
+'(' Text
+"''" Generic.Emph
+'[[' Punctuation
+'The Red and the Black' Name.Tag
+']]' Punctuation
+"''" Generic.Emph
+',' Text
+' ' Text
+"''" Generic.Emph
+'[[' Punctuation
+'The Charterhouse of Parma' Name.Tag
+']]' Punctuation
+"''" Generic.Emph
+')' Text
+',' Text
+' ' Text
+'whose' Text
+' ' Text
+'works' Text
+' ' Text
+'are' Text
+' ' Text
+'among' Text
+' ' Text
+'the' Text
+' ' Text
+'most' Text
+' ' Text
+'well' Text
+' ' Text
+'known' Text
+' ' Text
+'in' Text
+' ' Text
+'France' Text
+' ' Text
+'and' Text
+' ' Text
+'the' Text
+' ' Text
+'world' Text
+'.' Text
+'\n' Text
+
+'\n' Text
+
+'The' Text
+' ' Text
+'[[' Punctuation
+'Prix Goncourt' Name.Tag
+']]' Punctuation
+' ' Text
+'is' Text
+' ' Text
+'a' Text
+' ' Text
+'French' Text
+' ' Text
+'literary' Text
+' ' Text
+'prize' Text
+' ' Text
+'first' Text
+' ' Text
+'awarded' Text
+' ' Text
+'in' Text
+' ' Text
+'1903' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'In' Name.Tag
+' ' Name.Tag
+'lang' Name.Tag
+'|' Punctuation
+'fr' Text
+'}}' Punctuation
+' ' Text
+'[' Punctuation
+'http://www.academie-goncourt.fr/?article=1229174089' Name.Label
+' ' Text.Whitespace
+'La' Text
+' ' Text
+'première' Text
+' ' Text
+'Académie' Text
+' ' Text
+'Goncourt' Text
+']' Punctuation
+' ' Text
+'{{' Punctuation
+'Webarchive' Name.Tag
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'web' Text
+'.' Text
+'archive' Text
+'.' Text
+'org' Text
+'/' Text
+'web' Text
+'/' Text
+'20110425100025' Text
+'/' Text
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'academie' Text
+'-' Text
+'goncourt' Text
+'.' Text
+'fr' Text
+'/' Text
+'?' Text
+'article' Text
+'=' Text
+'1229174089' Text
+'|' Punctuation
+'date' Name.Label
+'=' Operator
+'25' Text
+' ' Text
+'April' Text
+' ' Text
+'2011' Text
+'}}' Punctuation
+'&nbsp;' Name.Entity
+'–' Text
+' ' Text
+'[' Punctuation
+'http://www.academie-goncourt.fr' Name.Label
+' ' Text.Whitespace
+'Site' Text
+' ' Text
+'officiel' Text
+' ' Text
+'de' Text
+' ' Text
+'l' Text
+"'" Text
+'Académie' Text
+' ' Text
+'Goncourt' Text
+']' Punctuation
+' ' Text
+'{{' Punctuation
+'Webarchive' Name.Tag
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'web' Text
+'.' Text
+'archive' Text
+'.' Text
+'org' Text
+'/' Text
+'web' Text
+'/' Text
+'20081119231954' Text
+'/' Text
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'academie' Text
+'-' Text
+'goncourt' Text
+'.' Text
+'fr' Text
+'/' Text
+'|' Punctuation
+'date' Name.Label
+'=' Operator
+'19' Text
+' ' Text
+'November' Text
+' ' Text
+'2008' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'\n' Text
+
+'\n' Text
+
+'In' Text
+' ' Text
+'the' Text
+' ' Text
+'early' Text
+' ' Text
+'20th' Text
+' ' Text
+'century' Text
+' ' Text
+'France' Text
+' ' Text
+'was' Text
+' ' Text
+'a' Text
+' ' Text
+'haven' Text
+' ' Text
+'for' Text
+' ' Text
+'literary' Text
+' ' Text
+'freedom' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+' ' Text.Whitespace
+'name' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+'Beat' Literal.String.Double
+' ' Literal.String.Double
+'censors' Literal.String.Double
+'"' Literal.String.Double
+' ' Text.Whitespace
+'/>' Punctuation
+' ' Text
+'Works' Text
+' ' Text
+'banned' Text
+' ' Text
+'for' Text
+' ' Text
+'obscenity' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'US' Text
+',' Text
+' ' Text
+'the' Text
+' ' Text
+'UK' Text
+' ' Text
+'and' Text
+' ' Text
+'other' Text
+' ' Text
+'Anglophone' Text
+' ' Text
+'nations' Text
+' ' Text
+'were' Text
+' ' Text
+'published' Text
+' ' Text
+'in' Text
+' ' Text
+'France' Text
+' ' Text
+'decades' Text
+' ' Text
+'before' Text
+' ' Text
+'they' Text
+' ' Text
+'were' Text
+' ' Text
+'available' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'respective' Text
+' ' Text
+'authors' Text
+"'" Text
+' ' Text
+'home' Text
+' ' Text
+'countries' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+' ' Text.Whitespace
+'name' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+'Beat' Literal.String.Double
+' ' Literal.String.Double
+'censors' Literal.String.Double
+'"' Literal.String.Double
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'news' Name.Tag
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Dirty' Text
+' ' Text
+'books' Text
+' ' Text
+'and' Text
+' ' Text
+'literary' Text
+' ' Text
+'freedom' Text
+':' Text
+' ' Text
+'The' Text
+' ' Text
+'Lady' Text
+' ' Text
+'Chatterley' Text
+' ' Text
+'publisher' Text
+' ' Text
+'who' Text
+' ' Text
+'beat' Text
+' ' Text
+'the' Text
+' ' Text
+'censors' Text
+' ' Text
+'|' Punctuation
+'agency' Name.Label
+'=' Operator
+'BBC' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'bbc' Text
+'.' Text
+'co' Text
+'.' Text
+'uk' Text
+'/' Text
+'programmes' Text
+'/' Text
+'articles' Text
+'/' Text
+'25GtYStZ3wsmZHBt6BCP51p' Text
+'/' Text
+'dirty' Text
+'-' Text
+'books' Text
+'-' Text
+'and' Text
+'-' Text
+'literary' Text
+'-' Text
+'freedom' Text
+'-' Text
+'the' Text
+'-' Text
+'lady' Text
+'-' Text
+'chatterley' Text
+'-' Text
+'publisher' Text
+'-' Text
+'who' Text
+'-' Text
+'beat' Text
+'-' Text
+'the' Text
+'-' Text
+'censors' Text
+' ' Text
+'|' Punctuation
+'url-status' Name.Label
+'=' Operator
+'live' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'28' Text
+' ' Text
+'August' Text
+' ' Text
+'2022' Text
+' ' Text
+'|' Punctuation
+'archive-url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'web' Text
+'.' Text
+'archive' Text
+'.' Text
+'org' Text
+'/' Text
+'web' Text
+'/' Text
+'20211117185434' Text
+'/' Text
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'bbc' Text
+'.' Text
+'co' Text
+'.' Text
+'uk' Text
+'/' Text
+'programmes' Text
+'/' Text
+'articles' Text
+'/' Text
+'25GtYStZ3wsmZHBt6BCP51p' Text
+'/' Text
+'dirty' Text
+'-' Text
+'books' Text
+'-' Text
+'and' Text
+'-' Text
+'literary' Text
+'-' Text
+'freedom' Text
+'-' Text
+'the' Text
+'-' Text
+'lady' Text
+'-' Text
+'chatterley' Text
+'-' Text
+'publisher' Text
+'-' Text
+'who' Text
+'-' Text
+'beat' Text
+'-' Text
+'the' Text
+'-' Text
+'censors' Text
+' ' Text
+'|' Punctuation
+'archive-date' Name.Label
+'=' Operator
+'17' Text
+' ' Text
+'November' Text
+' ' Text
+'2021' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'The' Text
+' ' Text
+'innate' Text
+' ' Text
+'French' Text
+' ' Text
+'regard' Text
+' ' Text
+'for' Text
+' ' Text
+'the' Text
+' ' Text
+'mind' Text
+' ' Text
+'meant' Text
+' ' Text
+'that' Text
+' ' Text
+'France' Text
+' ' Text
+'was' Text
+' ' Text
+'disinclined' Text
+' ' Text
+'to' Text
+' ' Text
+'punish' Text
+' ' Text
+'literary' Text
+' ' Text
+'figures' Text
+' ' Text
+'for' Text
+' ' Text
+'their' Text
+' ' Text
+'writing' Text
+',' Text
+' ' Text
+'and' Text
+' ' Text
+'prosecutions' Text
+' ' Text
+'were' Text
+' ' Text
+'rare' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+' ' Text.Whitespace
+'name' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+'Beat' Literal.String.Double
+' ' Literal.String.Double
+'censors' Literal.String.Double
+'"' Literal.String.Double
+' ' Text.Whitespace
+'/>' Punctuation
+' ' Text
+'Important' Text
+' ' Text
+'writers' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'20th' Text
+' ' Text
+'century' Text
+' ' Text
+'include' Text
+' ' Text
+'[[' Punctuation
+'Marcel Proust' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'[[' Punctuation
+'Louis-Ferdinand Céline' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'[[' Punctuation
+'Albert Camus' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'and' Text
+' ' Text
+'[[' Punctuation
+'Jean-Paul Sartre' Name.Tag
+']]' Punctuation
+'.' Text
+' ' Text
+'[[' Punctuation
+'Antoine de Saint Exupéry' Name.Tag
+']]' Punctuation
+' ' Text
+'wrote' Text
+' ' Text
+"''" Generic.Emph
+'[[' Punctuation
+'The Little Prince' Name.Tag
+'|' Punctuation
+'Little' Text
+' ' Text
+'Prince' Text
+']]' Punctuation
+"''" Generic.Emph
+',' Text
+' ' Text
+'which' Text
+' ' Text
+'has' Text
+' ' Text
+'remained' Text
+' ' Text
+'popular' Text
+' ' Text
+'for' Text
+' ' Text
+'decades' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'The' Text
+' ' Text
+'Little' Text
+' ' Text
+'Prince' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'completelynovel' Text
+'.' Text
+'com' Text
+'/' Text
+'books' Text
+'/' Text
+'50599' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'22' Text
+' ' Text
+'July' Text
+' ' Text
+'2011' Text
+' ' Text
+'|' Punctuation
+'publisher' Name.Label
+'=' Operator
+'Completelynovel' Text
+'.' Text
+'com' Text
+' ' Text
+'|' Punctuation
+'archive-date' Name.Label
+'=' Operator
+'30' Text
+' ' Text
+'September' Text
+' ' Text
+'2018' Text
+' ' Text
+'|' Punctuation
+'archive-url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'web' Text
+'.' Text
+'archive' Text
+'.' Text
+'org' Text
+'/' Text
+'web' Text
+'/' Text
+'20180930232031' Text
+'/' Text
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'completelynovel' Text
+'.' Text
+'com' Text
+'/' Text
+'books' Text
+'/' Text
+'50599' Text
+' ' Text
+'|' Punctuation
+'url-status' Name.Label
+'=' Operator
+'dead' Text
+' ' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'{{' Punctuation
+'As' Name.Tag
+' ' Name.Tag
+'of' Name.Tag
+'|' Punctuation
+'2014' Text
+'}}' Punctuation
+',' Text
+' ' Text
+'French' Text
+' ' Text
+'authors' Text
+' ' Text
+'had' Text
+' ' Text
+'more' Text
+' ' Text
+'[[' Punctuation
+'Nobel Prize in Literature' Name.Tag
+'|' Punctuation
+'Literature' Text
+' ' Text
+'Nobel' Text
+' ' Text
+'Prizes' Text
+']]' Punctuation
+' ' Text
+'than' Text
+' ' Text
+'[[' Punctuation
+'List of Nobel laureates in Literature' Name.Tag
+'|' Punctuation
+'those' Text
+' ' Text
+'of' Text
+' ' Text
+'any' Text
+' ' Text
+'other' Text
+' ' Text
+'nation' Text
+']]' Punctuation
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+' ' Text.Whitespace
+'name' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+'Patrick' Literal.String.Double
+' ' Literal.String.Double
+'Modiano' Literal.String.Double
+'"' Literal.String.Double
+'>' Punctuation
+'[' Punctuation
+'http://www.globalpost.com/dispatch/news/afp/141009/modiano-strengthens-frances-literature-nobel-dominance' Name.Label
+' ' Text.Whitespace
+'Modiano' Text
+' ' Text
+'strengthens' Text
+' ' Text
+'France' Text
+"'" Text
+'s' Text
+' ' Text
+'literature' Text
+' ' Text
+'Nobel' Text
+' ' Text
+'dominance' Text
+']' Punctuation
+' ' Text
+'{{' Punctuation
+'Webarchive' Name.Tag
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'web' Text
+'.' Text
+'archive' Text
+'.' Text
+'org' Text
+'/' Text
+'web' Text
+'/' Text
+'20141018105721' Text
+'/' Text
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'globalpost' Text
+'.' Text
+'com' Text
+'/' Text
+'dispatch' Text
+'/' Text
+'news' Text
+'/' Text
+'afp' Text
+'/' Text
+'141009' Text
+'/' Text
+'modiano' Text
+'-' Text
+'strengthens' Text
+'-' Text
+'frances' Text
+'-' Text
+'literature' Text
+'-' Text
+'nobel' Text
+'-' Text
+'dominance' Text
+'|' Punctuation
+'date' Name.Label
+'=' Operator
+'18' Text
+' ' Text
+'October' Text
+' ' Text
+'2014' Text
+'}}' Punctuation
+',' Text
+' ' Text
+'[[' Punctuation
+'Global Post' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'9' Text
+' ' Text
+'October' Text
+' ' Text
+'2014' Text
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'The' Text
+' ' Text
+'first' Text
+' ' Text
+'Nobel' Text
+' ' Text
+'Prize' Text
+' ' Text
+'in' Text
+' ' Text
+'Literature' Text
+' ' Text
+'was' Text
+' ' Text
+'for' Text
+' ' Text
+'a' Text
+' ' Text
+'French' Text
+' ' Text
+'author' Text
+',' Text
+' ' Text
+'while' Text
+' ' Text
+'France' Text
+"'" Text
+'s' Text
+' ' Text
+'latest' Text
+' ' Text
+'Nobel' Text
+' ' Text
+'prize' Text
+' ' Text
+'in' Text
+' ' Text
+'literature' Text
+' ' Text
+'was' Text
+' ' Text
+'for' Text
+' ' Text
+'[[' Punctuation
+'Patrick Modiano' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'who' Text
+' ' Text
+'was' Text
+' ' Text
+'awarded' Text
+' ' Text
+'the' Text
+' ' Text
+'prize' Text
+' ' Text
+'in' Text
+' ' Text
+'2014' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+' ' Text.Whitespace
+'name' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+'Patrick' Literal.String.Double
+' ' Literal.String.Double
+'Modiano' Literal.String.Double
+'"' Literal.String.Double
+' ' Text.Whitespace
+'/>' Punctuation
+' ' Text
+'Jean' Text
+'-' Text
+'Paul' Text
+' ' Text
+'Sartre' Text
+' ' Text
+'was' Text
+' ' Text
+'also' Text
+' ' Text
+'the' Text
+' ' Text
+'first' Text
+' ' Text
+'nominee' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'committee' Text
+"'" Text
+'s' Text
+' ' Text
+'history' Text
+' ' Text
+'to' Text
+' ' Text
+'refuse' Text
+' ' Text
+'the' Text
+' ' Text
+'prize' Text
+' ' Text
+'in' Text
+' ' Text
+'1964' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+' ' Text.Whitespace
+'name' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+'Patrick' Literal.String.Double
+' ' Literal.String.Double
+'Modiano' Literal.String.Double
+'"' Literal.String.Double
+' ' Text.Whitespace
+'/>' Punctuation
+'\n' Text
+
+'\n' Text
+
+'===' Generic.Subheading
+'Philosophy' Generic.Subheading
+'===' Generic.Subheading
+'\n' Text.Whitespace
+
+'{{' Punctuation
+'Main' Name.Tag
+'|' Punctuation
+'French' Text
+' ' Text
+'philosophy' Text
+'}}' Punctuation
+'\n' Text
+
+'Medieval' Text
+' ' Text
+'philosophy' Text
+' ' Text
+'was' Text
+' ' Text
+'dominated' Text
+' ' Text
+'by' Text
+' ' Text
+'[[' Punctuation
+'Scholasticism' Name.Tag
+']]' Punctuation
+' ' Text
+'until' Text
+' ' Text
+'the' Text
+' ' Text
+'emergence' Text
+' ' Text
+'of' Text
+' ' Text
+'[[' Punctuation
+'Humanism in France' Name.Tag
+'|' Punctuation
+'Humanism' Text
+']]' Punctuation
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'Renaissance' Text
+'.' Text
+' ' Text
+'[[' Punctuation
+'Modern philosophy' Name.Tag
+']]' Punctuation
+' ' Text
+'began' Text
+' ' Text
+'in' Text
+' ' Text
+'France' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'17th' Text
+' ' Text
+'century' Text
+' ' Text
+'with' Text
+' ' Text
+'the' Text
+' ' Text
+'philosophy' Text
+' ' Text
+'of' Text
+' ' Text
+'[[' Punctuation
+'René Descartes' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'[[' Punctuation
+'Blaise Pascal' Name.Tag
+']]' Punctuation
+' ' Text
+'and' Text
+' ' Text
+'[[' Punctuation
+'Nicolas Malebranche' Name.Tag
+']]' Punctuation
+'.' Text
+' ' Text
+'Descartes' Text
+' ' Text
+'was' Text
+' ' Text
+'the' Text
+' ' Text
+'first' Text
+' ' Text
+'[[' Punctuation
+'Western philosophy' Name.Tag
+'|' Punctuation
+'Western' Text
+' ' Text
+'philosopher' Text
+']]' Punctuation
+' ' Text
+'since' Text
+' ' Text
+'ancient' Text
+' ' Text
+'times' Text
+' ' Text
+'to' Text
+' ' Text
+'attempt' Text
+' ' Text
+'to' Text
+' ' Text
+'build' Text
+' ' Text
+'a' Text
+' ' Text
+'philosophical' Text
+' ' Text
+'system' Text
+' ' Text
+'from' Text
+' ' Text
+'the' Text
+' ' Text
+'ground' Text
+' ' Text
+'up' Text
+' ' Text
+'rather' Text
+' ' Text
+'than' Text
+' ' Text
+'building' Text
+' ' Text
+'on' Text
+' ' Text
+'the' Text
+' ' Text
+'work' Text
+' ' Text
+'of' Text
+' ' Text
+'predecessors' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'Russell' Text
+',' Text
+' ' Text
+'Bertrand' Text
+' ' Text
+'(' Text
+'2004' Text
+')' Text
+' ' Text
+'[' Text
+'1945' Text
+']' Text
+'.' Text
+' ' Text
+"''" Generic.Emph
+'A' Generic.Emph
+' ' Generic.Emph
+'History' Generic.Emph
+' ' Generic.Emph
+'of' Generic.Emph
+' ' Generic.Emph
+'Western' Generic.Emph
+' ' Generic.Emph
+'Philosophy' Generic.Emph
+"''" Generic.Emph
+'.' Text
+' ' Text
+'Routledge' Text
+'.' Text
+' ' Text
+'p' Text
+'.' Text
+' ' Text
+'511' Text
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'Kenny' Text
+',' Text
+' ' Text
+'Anthony' Text
+' ' Text
+'(' Text
+'2006' Text
+')' Text
+'.' Text
+' ' Text
+"''" Generic.Emph
+'The' Generic.Emph
+' ' Generic.Emph
+'Rise' Generic.Emph
+' ' Generic.Emph
+'of' Generic.Emph
+' ' Generic.Emph
+'Modern' Generic.Emph
+' ' Generic.Emph
+'Philosophy' Generic.Emph
+':' Generic.Emph
+' ' Generic.Emph
+'A' Generic.Emph
+' ' Generic.Emph
+'New' Generic.Emph
+' ' Generic.Emph
+'History' Generic.Emph
+' ' Generic.Emph
+'of' Generic.Emph
+' ' Generic.Emph
+'Western' Generic.Emph
+' ' Generic.Emph
+'Philosophy' Generic.Emph
+',' Generic.Emph
+' ' Generic.Emph
+'vol' Generic.Emph
+'.' Generic.Emph
+' ' Generic.Emph
+'3' Generic.Emph
+"''" Generic.Emph
+'.' Text
+' ' Text
+'Oxford' Text
+' ' Text
+'University' Text
+' ' Text
+'Press' Text
+'.' Text
+' ' Text
+'pp' Text
+'.' Text
+' ' Text
+'40' Text
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'His' Text
+' ' Text
+"''" Generic.Emph
+'[[' Punctuation
+'Meditations on First Philosophy' Name.Tag
+']]' Punctuation
+"''" Generic.Emph
+' ' Text
+'changed' Text
+' ' Text
+'the' Text
+' ' Text
+'primary' Text
+' ' Text
+'object' Text
+' ' Text
+'of' Text
+' ' Text
+'philosophical' Text
+' ' Text
+'thought' Text
+' ' Text
+'and' Text
+' ' Text
+'raised' Text
+' ' Text
+'some' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'most' Text
+' ' Text
+'fundamental' Text
+' ' Text
+'problems' Text
+' ' Text
+'for' Text
+' ' Text
+'foreigners' Text
+' ' Text
+'such' Text
+' ' Text
+'as' Text
+' ' Text
+'[[' Punctuation
+'Spinoza' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'[[' Punctuation
+'Gottfried Wilhelm Leibniz' Name.Tag
+'|' Punctuation
+'Leibniz' Text
+']]' Punctuation
+',' Text
+' ' Text
+'[[' Punctuation
+'David Hume' Name.Tag
+'|' Punctuation
+'Hume' Text
+']]' Punctuation
+',' Text
+' ' Text
+'[[' Punctuation
+'George Berkeley' Name.Tag
+'|' Punctuation
+'Berkeley' Text
+']]' Punctuation
+',' Text
+' ' Text
+'and' Text
+' ' Text
+'[[' Punctuation
+'Immanuel Kant' Name.Tag
+'|' Punctuation
+'Kant' Text
+']]' Punctuation
+'.' Text
+'\n' Text
+
+'[[' Punctuation
+'File' Name.Namespace
+':' Punctuation
+'Frans Hals - Portret van René Descartes.jpg' Name.Tag
+'|' Punctuation
+'thumb' Text
+'|' Punctuation
+'upright' Text
+'|' Punctuation
+'alt' Name.Attribute
+'=' Operator
+'Frans' Text
+' ' Text
+'Hals' Text
+' ' Text
+'painting' Text
+' ' Text
+'of' Text
+' ' Text
+'René' Text
+' ' Text
+'Descartes' Text
+' ' Text
+'facing' Text
+' ' Text
+'right' Text
+' ' Text
+'in' Text
+' ' Text
+'black' Text
+' ' Text
+'coat' Text
+' ' Text
+'and' Text
+' ' Text
+'white' Text
+' ' Text
+'collar' Text
+'|' Punctuation
+'[[' Punctuation
+'René Descartes' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'founder' Text
+' ' Text
+'of' Text
+' ' Text
+'modern' Text
+' ' Text
+'[[' Punctuation
+'Western philosophy' Name.Tag
+']]' Punctuation
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'[' Punctuation
+'https://www.britannica.com/biography/Rene-Descartes' Name.Label
+' ' Text.Whitespace
+'René' Text
+' ' Text
+'Descartes' Text
+']' Punctuation
+',' Text
+' ' Text
+'[[' Punctuation
+'Encyclopædia Britannica' Name.Tag
+']]' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+']]' Punctuation
+'\n' Text
+
+'\n' Text
+
+'French' Text
+' ' Text
+'philosophers' Text
+' ' Text
+'produced' Text
+' ' Text
+'some' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'most' Text
+' ' Text
+'important' Text
+' ' Text
+'political' Text
+' ' Text
+'works' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Age of Enlightenment' Name.Tag
+']]' Punctuation
+'.' Text
+' ' Text
+'In' Text
+' ' Text
+"''" Generic.Emph
+'[[' Punctuation
+'The Spirit of the Laws' Name.Tag
+']]' Punctuation
+"''" Generic.Emph
+',' Text
+' ' Text
+'[[' Punctuation
+'Baron de Montesquieu' Name.Tag
+']]' Punctuation
+' ' Text
+'theorised' Text
+' ' Text
+'the' Text
+' ' Text
+'principle' Text
+' ' Text
+'of' Text
+' ' Text
+'[[' Punctuation
+'separation of powers' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'which' Text
+' ' Text
+'has' Text
+' ' Text
+'been' Text
+' ' Text
+'implemented' Text
+' ' Text
+'in' Text
+' ' Text
+'all' Text
+' ' Text
+'[[' Punctuation
+'liberal democracy' Name.Tag
+'|' Punctuation
+'liberal' Text
+' ' Text
+'democracies' Text
+']]' Punctuation
+' ' Text
+'since' Text
+' ' Text
+'[[' Punctuation
+'Separation of powers under the United States Constitution' Name.Tag
+'|' Punctuation
+'it' Text
+' ' Text
+'was' Text
+' ' Text
+'first' Text
+' ' Text
+'applied' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'United' Text
+' ' Text
+'States' Text
+']]' Punctuation
+'.' Text
+' ' Text
+'[[' Punctuation
+'Voltaire' Name.Tag
+']]' Punctuation
+' ' Text
+'came' Text
+' ' Text
+'to' Text
+' ' Text
+'embody' Text
+' ' Text
+'the' Text
+' ' Text
+'Enlightenment' Text
+' ' Text
+'with' Text
+' ' Text
+'his' Text
+' ' Text
+'defence' Text
+' ' Text
+'of' Text
+' ' Text
+'civil' Text
+' ' Text
+'liberties' Text
+',' Text
+' ' Text
+'such' Text
+' ' Text
+'as' Text
+' ' Text
+'the' Text
+' ' Text
+'right' Text
+' ' Text
+'to' Text
+' ' Text
+'a' Text
+' ' Text
+'free' Text
+' ' Text
+'trial' Text
+' ' Text
+'and' Text
+' ' Text
+'freedom' Text
+' ' Text
+'of' Text
+' ' Text
+'religion' Text
+'.' Text
+'\n' Text
+
+'\n' Text
+
+'19th' Text
+'-' Text
+'century' Text
+' ' Text
+'French' Text
+' ' Text
+'thought' Text
+' ' Text
+'was' Text
+' ' Text
+'targeted' Text
+' ' Text
+'at' Text
+' ' Text
+'responding' Text
+' ' Text
+'to' Text
+' ' Text
+'the' Text
+' ' Text
+'social' Text
+' ' Text
+'malaise' Text
+' ' Text
+'following' Text
+' ' Text
+'the' Text
+' ' Text
+'French' Text
+' ' Text
+'Revolution' Text
+'.' Text
+' ' Text
+'Rationalist' Text
+' ' Text
+'philosophers' Text
+' ' Text
+'such' Text
+' ' Text
+'as' Text
+' ' Text
+'[[' Punctuation
+'Victor Cousin' Name.Tag
+']]' Punctuation
+' ' Text
+'and' Text
+' ' Text
+'[[' Punctuation
+'Auguste Comte' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'who' Text
+' ' Text
+'called' Text
+' ' Text
+'for' Text
+' ' Text
+'a' Text
+' ' Text
+'new' Text
+' ' Text
+'social' Text
+' ' Text
+'doctrine' Text
+',' Text
+' ' Text
+'were' Text
+' ' Text
+'opposed' Text
+' ' Text
+'by' Text
+' ' Text
+'reactionary' Text
+' ' Text
+'thinkers' Text
+' ' Text
+'such' Text
+' ' Text
+'as' Text
+' ' Text
+'[[' Punctuation
+'Joseph de Maistre' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'[[' Punctuation
+'Louis de Bonald' Name.Tag
+']]' Punctuation
+' ' Text
+'and' Text
+' ' Text
+'[[' Punctuation
+'Hugues Felicité Robert de Lamennais' Name.Tag
+'|' Punctuation
+'Félicité' Text
+' ' Text
+'Robert' Text
+' ' Text
+'de' Text
+' ' Text
+'Lamennais' Text
+']]' Punctuation
+',' Text
+' ' Text
+'who' Text
+' ' Text
+'blamed' Text
+' ' Text
+'the' Text
+' ' Text
+'rationalist' Text
+' ' Text
+'rejection' Text
+' ' Text
+'of' Text
+' ' Text
+'traditional' Text
+' ' Text
+'order' Text
+'.' Text
+' ' Text
+'De' Text
+' ' Text
+'Maistre' Text
+',' Text
+' ' Text
+'together' Text
+' ' Text
+'with' Text
+' ' Text
+'the' Text
+' ' Text
+'Englishman' Text
+' ' Text
+'[[' Punctuation
+'Edmund Burke' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'was' Text
+' ' Text
+'one' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'founders' Text
+' ' Text
+'of' Text
+' ' Text
+'European' Text
+' ' Text
+'conservatism' Text
+'.' Text
+' ' Text
+'Comte' Text
+' ' Text
+'was' Text
+' ' Text
+'the' Text
+' ' Text
+'founder' Text
+' ' Text
+'of' Text
+' ' Text
+'[[' Punctuation
+'positivism' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'which' Text
+' ' Text
+'[[' Punctuation
+'Émile Durkheim' Name.Tag
+']]' Punctuation
+' ' Text
+'reformulated' Text
+' ' Text
+'as' Text
+' ' Text
+'a' Text
+' ' Text
+'basis' Text
+' ' Text
+'for' Text
+' ' Text
+'social' Text
+' ' Text
+'research' Text
+'.' Text
+'\n' Text
+
+'\n' Text
+
+'In' Text
+' ' Text
+'the' Text
+' ' Text
+'20th' Text
+' ' Text
+'century' Text
+',' Text
+' ' Text
+'partly' Text
+' ' Text
+'as' Text
+' ' Text
+'a' Text
+' ' Text
+'reaction' Text
+' ' Text
+'to' Text
+' ' Text
+'the' Text
+' ' Text
+'perceived' Text
+' ' Text
+'excesses' Text
+' ' Text
+'of' Text
+' ' Text
+'positivism' Text
+',' Text
+' ' Text
+'French' Text
+' ' Text
+'[[' Punctuation
+'Spiritualism (philosophy)' Name.Tag
+'|' Punctuation
+'spiritualism' Text
+']]' Punctuation
+' ' Text
+'thrived' Text
+' ' Text
+'with' Text
+' ' Text
+'thinkers' Text
+' ' Text
+'such' Text
+' ' Text
+'as' Text
+' ' Text
+'[[' Punctuation
+'Henri Bergson' Name.Tag
+']]' Punctuation
+' ' Text
+'and' Text
+' ' Text
+'it' Text
+' ' Text
+'influenced' Text
+' ' Text
+'American' Text
+' ' Text
+'[[' Punctuation
+'pragmatism' Name.Tag
+']]' Punctuation
+' ' Text
+'and' Text
+' ' Text
+'[[' Punctuation
+'Alfred North Whitehead' Name.Tag
+'|' Punctuation
+'Whitehead' Text
+']]' Punctuation
+"'" Text
+'s' Text
+' ' Text
+'version' Text
+' ' Text
+'of' Text
+' ' Text
+'[[' Punctuation
+'process philosophy' Name.Tag
+']]' Punctuation
+'.' Text
+' ' Text
+'Meanwhile' Text
+',' Text
+' ' Text
+'French' Text
+' ' Text
+'epistemology' Text
+' ' Text
+'became' Text
+' ' Text
+'a' Text
+' ' Text
+'prominent' Text
+' ' Text
+'school' Text
+' ' Text
+'of' Text
+' ' Text
+'thought' Text
+' ' Text
+'with' Text
+' ' Text
+'[[' Punctuation
+'Jules Henri Poincaré' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'[[' Punctuation
+'Gaston Bachelard' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'[[' Punctuation
+'Jean Cavaillès' Name.Tag
+']]' Punctuation
+' ' Text
+'and' Text
+' ' Text
+'[[' Punctuation
+'Jules Vuillemin' Name.Tag
+']]' Punctuation
+'.' Text
+' ' Text
+'Influenced' Text
+' ' Text
+'by' Text
+' ' Text
+'German' Text
+' ' Text
+'[[' Punctuation
+'Phenomenology (philosophy)' Name.Tag
+'|' Punctuation
+'phenomenology' Text
+']]' Punctuation
+' ' Text
+'and' Text
+' ' Text
+'[[' Punctuation
+'existentialism' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'the' Text
+' ' Text
+'philosophy' Text
+' ' Text
+'of' Text
+' ' Text
+'[[' Punctuation
+'Jean-Paul Sartre' Name.Tag
+']]' Punctuation
+' ' Text
+'gained' Text
+' ' Text
+'a' Text
+' ' Text
+'strong' Text
+' ' Text
+'influence' Text
+' ' Text
+'after' Text
+' ' Text
+'World' Text
+' ' Text
+'War' Text
+' ' Text
+'II' Text
+',' Text
+' ' Text
+'and' Text
+' ' Text
+'late' Text
+'-' Text
+'20th' Text
+'-' Text
+'century' Text
+'-' Text
+'France' Text
+' ' Text
+'became' Text
+' ' Text
+'the' Text
+' ' Text
+'cradle' Text
+' ' Text
+'of' Text
+' ' Text
+'[[' Punctuation
+'postmodern philosophy' Name.Tag
+']]' Punctuation
+' ' Text
+'with' Text
+' ' Text
+'[[' Punctuation
+'Jean-François Lyotard' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'[[' Punctuation
+'Jean Baudrillard' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'[[' Punctuation
+'Jacques Derrida' Name.Tag
+']]' Punctuation
+' ' Text
+'and' Text
+' ' Text
+'[[' Punctuation
+'Michel Foucault' Name.Tag
+']]' Punctuation
+'.' Text
+'\n' Text
+
+'\n' Text
+
+'===' Generic.Subheading
+'Music' Generic.Subheading
+'===' Generic.Subheading
+'\n' Text.Whitespace
+
+'{{' Punctuation
+'Main' Name.Tag
+'|' Punctuation
+'Music' Text
+' ' Text
+'of' Text
+' ' Text
+'France' Text
+'}}' Punctuation
+'\n' Text
+
+'[[' Punctuation
+'File' Name.Namespace
+':' Punctuation
+'Claude Debussy atelier Nadar.jpg' Name.Tag
+'|' Punctuation
+'thumb' Text
+'|' Punctuation
+'upright' Text
+'|' Punctuation
+'left' Text
+'|' Punctuation
+'[[' Punctuation
+'Claude Debussy' Name.Tag
+']]' Punctuation
+']]' Punctuation
+'\n' Text
+
+'France' Text
+' ' Text
+'has' Text
+' ' Text
+'a' Text
+' ' Text
+'long' Text
+' ' Text
+'and' Text
+' ' Text
+'varied' Text
+' ' Text
+'musical' Text
+' ' Text
+'history' Text
+'.' Text
+' ' Text
+'It' Text
+' ' Text
+'experienced' Text
+' ' Text
+'a' Text
+' ' Text
+'golden' Text
+' ' Text
+'age' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'17th' Text
+' ' Text
+'century' Text
+' ' Text
+'thanks' Text
+' ' Text
+'to' Text
+' ' Text
+'Louis' Text
+' ' Text
+'XIV' Text
+',' Text
+' ' Text
+'who' Text
+' ' Text
+'employed' Text
+' ' Text
+'many' Text
+' ' Text
+'talented' Text
+' ' Text
+'musicians' Text
+' ' Text
+'and' Text
+' ' Text
+'composers' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'royal' Text
+' ' Text
+'court' Text
+'.' Text
+' ' Text
+'The' Text
+' ' Text
+'most' Text
+' ' Text
+'renowned' Text
+' ' Text
+'composers' Text
+' ' Text
+'of' Text
+' ' Text
+'this' Text
+' ' Text
+'period' Text
+' ' Text
+'include' Text
+' ' Text
+'[[' Punctuation
+'Marc-Antoine Charpentier' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'[[' Punctuation
+'François Couperin' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'[[' Punctuation
+'Michel-Richard Delalande' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'[[' Punctuation
+'Jean-Baptiste Lully' Name.Tag
+']]' Punctuation
+' ' Text
+'and' Text
+' ' Text
+'[[' Punctuation
+'Marin Marais' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'all' Text
+' ' Text
+'of' Text
+' ' Text
+'them' Text
+' ' Text
+'composers' Text
+' ' Text
+'at' Text
+' ' Text
+'the' Text
+' ' Text
+'court' Text
+'.' Text
+' ' Text
+'After' Text
+' ' Text
+'the' Text
+' ' Text
+'death' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'"' Text
+'Roi' Text
+' ' Text
+'Soleil' Text
+'"' Text
+',' Text
+' ' Text
+'French' Text
+' ' Text
+'musical' Text
+' ' Text
+'creation' Text
+' ' Text
+'lost' Text
+' ' Text
+'dynamism' Text
+',' Text
+' ' Text
+'but' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'next' Text
+' ' Text
+'century' Text
+' ' Text
+'the' Text
+' ' Text
+'music' Text
+' ' Text
+'of' Text
+' ' Text
+'[[' Punctuation
+'Jean-Philippe Rameau' Name.Tag
+']]' Punctuation
+' ' Text
+'reached' Text
+' ' Text
+'some' Text
+' ' Text
+'prestige' Text
+',' Text
+' ' Text
+'and' Text
+' ' Text
+'today' Text
+' ' Text
+'he' Text
+' ' Text
+'is' Text
+' ' Text
+'still' Text
+' ' Text
+'one' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'most' Text
+' ' Text
+'renowned' Text
+' ' Text
+'French' Text
+' ' Text
+'composers' Text
+'.' Text
+' ' Text
+'Rameau' Text
+' ' Text
+'became' Text
+' ' Text
+'the' Text
+' ' Text
+'dominant' Text
+' ' Text
+'composer' Text
+' ' Text
+'of' Text
+' ' Text
+'[[' Punctuation
+'French opera' Name.Tag
+']]' Punctuation
+' ' Text
+'and' Text
+' ' Text
+'the' Text
+' ' Text
+'leading' Text
+' ' Text
+'French' Text
+' ' Text
+'composer' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'harpsichord' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'Girdlestone' Text
+' ' Text
+'p' Text
+'.' Text
+' ' Text
+'14' Text
+':' Text
+' ' Text
+'"' Text
+'It' Text
+' ' Text
+'is' Text
+' ' Text
+'customary' Text
+' ' Text
+'to' Text
+' ' Text
+'couple' Text
+' ' Text
+'him' Text
+' ' Text
+'with' Text
+' ' Text
+'Couperin' Text
+' ' Text
+'as' Text
+' ' Text
+'one' Text
+' ' Text
+'couples' Text
+' ' Text
+'Haydn' Text
+' ' Text
+'with' Text
+' ' Text
+'Mozart' Text
+' ' Text
+'or' Text
+' ' Text
+'Ravel' Text
+' ' Text
+'with' Text
+' ' Text
+'Debussy' Text
+'.' Text
+'"' Text
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Full' Name.Tag
+' ' Name.Tag
+'citation' Name.Tag
+' ' Name.Tag
+'needed' Name.Tag
+'|' Punctuation
+'date' Name.Label
+'=' Operator
+'January' Text
+' ' Text
+'2018' Text
+'}}' Punctuation
+'\n' Text
+
+'\n' Text
+
+'French' Text
+' ' Text
+'composers' Text
+' ' Text
+'played' Text
+' ' Text
+'an' Text
+' ' Text
+'important' Text
+' ' Text
+'role' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'music' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'19th' Text
+' ' Text
+'and' Text
+' ' Text
+'early' Text
+' ' Text
+'20th' Text
+' ' Text
+'centuries' Text
+',' Text
+' ' Text
+'which' Text
+' ' Text
+'is' Text
+' ' Text
+'considered' Text
+' ' Text
+'to' Text
+' ' Text
+'be' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Romantic music' Name.Tag
+']]' Punctuation
+' ' Text
+'era' Text
+'.' Text
+' ' Text
+'Romantic' Text
+' ' Text
+'music' Text
+' ' Text
+'emphasised' Text
+' ' Text
+'a' Text
+' ' Text
+'surrender' Text
+' ' Text
+'to' Text
+' ' Text
+'nature' Text
+',' Text
+' ' Text
+'a' Text
+' ' Text
+'fascination' Text
+' ' Text
+'with' Text
+' ' Text
+'the' Text
+' ' Text
+'past' Text
+' ' Text
+'and' Text
+' ' Text
+'the' Text
+' ' Text
+'supernatural' Text
+',' Text
+' ' Text
+'the' Text
+' ' Text
+'exploration' Text
+' ' Text
+'of' Text
+' ' Text
+'unusual' Text
+',' Text
+' ' Text
+'strange' Text
+' ' Text
+'and' Text
+' ' Text
+'surprising' Text
+' ' Text
+'sounds' Text
+',' Text
+' ' Text
+'and' Text
+' ' Text
+'a' Text
+' ' Text
+'focus' Text
+' ' Text
+'on' Text
+' ' Text
+'national' Text
+' ' Text
+'identity' Text
+'.' Text
+' ' Text
+'This' Text
+' ' Text
+'period' Text
+' ' Text
+'was' Text
+' ' Text
+'also' Text
+' ' Text
+'a' Text
+' ' Text
+'golden' Text
+' ' Text
+'age' Text
+' ' Text
+'for' Text
+' ' Text
+'operas' Text
+'.' Text
+' ' Text
+'French' Text
+' ' Text
+'composers' Text
+' ' Text
+'from' Text
+' ' Text
+'the' Text
+' ' Text
+'Romantic' Text
+' ' Text
+'era' Text
+' ' Text
+'included' Text
+':' Text
+' ' Text
+'[[' Punctuation
+'Hector Berlioz' Name.Tag
+']]' Punctuation
+' ' Text
+'(' Text
+'best' Text
+' ' Text
+'known' Text
+' ' Text
+'for' Text
+' ' Text
+'his' Text
+' ' Text
+"''" Generic.Emph
+'[[' Punctuation
+'Symphonie fantastique' Name.Tag
+']]' Punctuation
+"''" Generic.Emph
+')' Text
+',' Text
+' ' Text
+'[[' Punctuation
+'Georges Bizet' Name.Tag
+']]' Punctuation
+' ' Text
+'(' Text
+'best' Text
+' ' Text
+'known' Text
+' ' Text
+'for' Text
+' ' Text
+"''" Generic.Emph
+'[[' Punctuation
+'Carmen' Name.Tag
+']]' Punctuation
+"''" Generic.Emph
+',' Text
+' ' Text
+'which' Text
+' ' Text
+'has' Text
+' ' Text
+'become' Text
+' ' Text
+'one' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'most' Text
+' ' Text
+'popular' Text
+' ' Text
+'and' Text
+' ' Text
+'frequently' Text
+' ' Text
+'performed' Text
+' ' Text
+'operas' Text
+')' Text
+',' Text
+' ' Text
+'[[' Punctuation
+'Gabriel Fauré' Name.Tag
+']]' Punctuation
+' ' Text
+'(' Text
+'best' Text
+' ' Text
+'known' Text
+' ' Text
+'for' Text
+' ' Text
+'his' Text
+' ' Text
+"''" Generic.Emph
+'[[' Punctuation
+'Pavane (Fauré)' Name.Tag
+'|' Punctuation
+'Pavane' Text
+']]' Punctuation
+"''" Generic.Emph
+',' Text
+' ' Text
+'[[' Punctuation
+'Requiem (Fauré)' Name.Tag
+'|' Punctuation
+"''" Generic.Emph
+'Requiem' Generic.Emph
+"''" Generic.Emph
+']]' Punctuation
+',' Text
+' ' Text
+'and' Text
+' ' Text
+"''" Generic.Emph
+'[[' Punctuation
+'Fauré Nocturnes' Name.Tag
+'|' Punctuation
+'nocturnes' Text
+']]' Punctuation
+"''" Generic.Emph
+')' Text
+',' Text
+' ' Text
+'[[' Punctuation
+'Charles Gounod' Name.Tag
+']]' Punctuation
+' ' Text
+'(' Text
+'best' Text
+' ' Text
+'known' Text
+' ' Text
+'for' Text
+' ' Text
+'his' Text
+' ' Text
+"''" Generic.Emph
+'[[' Punctuation
+'Ave Maria (Bach/Gounod)' Name.Tag
+'|' Punctuation
+'Ave' Text
+' ' Text
+'Maria' Text
+']]' Punctuation
+"''" Generic.Emph
+' ' Text
+'and' Text
+' ' Text
+'his' Text
+' ' Text
+'opera' Text
+' ' Text
+"''" Generic.Emph
+'[[' Punctuation
+'Faust (opera)' Name.Tag
+'|' Punctuation
+'Faust' Text
+']]' Punctuation
+"''" Generic.Emph
+')' Text
+',' Text
+' ' Text
+'[[' Punctuation
+'Jacques Offenbach' Name.Tag
+']]' Punctuation
+' ' Text
+'(' Text
+'best' Text
+' ' Text
+'known' Text
+' ' Text
+'for' Text
+' ' Text
+'his' Text
+' ' Text
+'100' Text
+' ' Text
+'[[' Punctuation
+'operetta' Name.Tag
+']]' Punctuation
+'s' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'1850s' Text
+'–' Text
+'1870s' Text
+' ' Text
+'and' Text
+' ' Text
+'his' Text
+' ' Text
+'uncompleted' Text
+' ' Text
+'opera' Text
+' ' Text
+"''" Generic.Emph
+'[[' Punctuation
+'The Tales of Hoffmann' Name.Tag
+']]' Punctuation
+"''" Generic.Emph
+')' Text
+',' Text
+' ' Text
+'[[' Punctuation
+'Édouard Lalo' Name.Tag
+']]' Punctuation
+' ' Text
+'(' Text
+'best' Text
+' ' Text
+'known' Text
+' ' Text
+'for' Text
+' ' Text
+'his' Text
+' ' Text
+"''" Generic.Emph
+'[[' Punctuation
+'Symphonie espagnole' Name.Tag
+']]' Punctuation
+"''" Generic.Emph
+' ' Text
+'for' Text
+' ' Text
+'violin' Text
+' ' Text
+'and' Text
+' ' Text
+'orchestra' Text
+' ' Text
+'and' Text
+' ' Text
+'his' Text
+' ' Text
+'[[' Punctuation
+'Cello Concerto (Lalo)' Name.Tag
+'|' Punctuation
+'Cello' Text
+' ' Text
+'Concerto' Text
+' ' Text
+'in' Text
+' ' Text
+'D' Text
+' ' Text
+'minor' Text
+']]' Punctuation
+')' Text
+',' Text
+' ' Text
+'[[' Punctuation
+'Jules Massenet' Name.Tag
+']]' Punctuation
+' ' Text
+'(' Text
+'best' Text
+' ' Text
+'known' Text
+' ' Text
+'for' Text
+' ' Text
+'his' Text
+' ' Text
+'operas' Text
+',' Text
+' ' Text
+'of' Text
+' ' Text
+'which' Text
+' ' Text
+'he' Text
+' ' Text
+'wrote' Text
+' ' Text
+'more' Text
+' ' Text
+'than' Text
+' ' Text
+'thirty' Text
+',' Text
+' ' Text
+'the' Text
+' ' Text
+'most' Text
+' ' Text
+'frequently' Text
+' ' Text
+'staged' Text
+' ' Text
+'are' Text
+' ' Text
+"''" Generic.Emph
+'[[' Punctuation
+'Manon' Name.Tag
+']]' Punctuation
+"''" Generic.Emph
+' ' Text
+'(' Text
+'1884' Text
+')' Text
+' ' Text
+'and' Text
+' ' Text
+"''" Generic.Emph
+'[[' Punctuation
+'Werther' Name.Tag
+']]' Punctuation
+"''" Generic.Emph
+' ' Text
+'(' Text
+'1892' Text
+')' Text
+')' Text
+' ' Text
+'and' Text
+' ' Text
+'[[' Punctuation
+'Camille Saint-Saëns' Name.Tag
+']]' Punctuation
+' ' Text
+'(' Text
+'he' Text
+' ' Text
+'has' Text
+' ' Text
+'many' Text
+' ' Text
+'frequently' Text
+'-' Text
+'performed' Text
+' ' Text
+'works' Text
+',' Text
+' ' Text
+'including' Text
+' ' Text
+"''" Generic.Emph
+'[[' Punctuation
+'The Carnival of the Animals' Name.Tag
+']]' Punctuation
+"''" Generic.Emph
+',' Text
+' ' Text
+"''" Generic.Emph
+'[[' Punctuation
+'Danse macabre (Saint-Saëns)' Name.Tag
+'|' Punctuation
+'Danse' Text
+' ' Text
+'macabre' Text
+']]' Punctuation
+"''" Generic.Emph
+',' Text
+' ' Text
+"''" Generic.Emph
+'[[' Punctuation
+'Samson and Delilah (opera)' Name.Tag
+'|' Punctuation
+'Samson' Text
+' ' Text
+'and' Text
+' ' Text
+'Delilah' Text
+']]' Punctuation
+"''" Generic.Emph
+' ' Text
+'(' Text
+'Opera' Text
+')' Text
+',' Text
+' ' Text
+"''" Generic.Emph
+'[[' Punctuation
+'Introduction and Rondo Capriccioso' Name.Tag
+']]' Punctuation
+"''" Generic.Emph
+' ' Text
+'and' Text
+' ' Text
+'his' Text
+' ' Text
+'[[' Punctuation
+'Symphony No. 3 (Saint-Saëns)' Name.Tag
+'|' Punctuation
+'Symphony' Text
+' ' Text
+'No' Text
+'.' Text
+' ' Text
+'3' Text
+']]' Punctuation
+')' Text
+'.' Text
+'\n' Text
+
+'[[' Punctuation
+'File' Name.Namespace
+':' Punctuation
+'Serge Gainsbourg par Claude Truong-Ngoc 1981.jpg' Name.Tag
+'|' Punctuation
+'thumb' Text
+'|' Punctuation
+'alt' Name.Attribute
+'=' Operator
+'head' Text
+' ' Text
+'shot' Text
+' ' Text
+'of' Text
+' ' Text
+'Serge' Text
+' ' Text
+'Gainsbourg' Text
+'|' Punctuation
+'[[' Punctuation
+'Serge Gainsbourg' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'one' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'world' Text
+"'" Text
+'s' Text
+' ' Text
+'most' Text
+' ' Text
+'influential' Text
+' ' Text
+'popular' Text
+' ' Text
+'musicians' Text
+']]' Punctuation
+'\n' Text
+
+'[[' Punctuation
+'File' Name.Namespace
+':' Punctuation
+'Daftpunklapremiere2010.jpg' Name.Tag
+'|' Punctuation
+'thumb' Text
+'|' Punctuation
+'[[' Punctuation
+'Daft Punk' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'pioneers' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'French house' Name.Tag
+']]' Punctuation
+' ' Text
+'movement' Text
+']]' Punctuation
+'\n' Text
+
+'\n' Text
+
+'Later' Text
+' ' Text
+'came' Text
+' ' Text
+'precursors' Text
+' ' Text
+'of' Text
+' ' Text
+'modern' Text
+' ' Text
+'classical' Text
+' ' Text
+'music' Text
+'.' Text
+' ' Text
+'[[' Punctuation
+'Érik Satie' Name.Tag
+']]' Punctuation
+' ' Text
+'was' Text
+' ' Text
+'a' Text
+' ' Text
+'key' Text
+' ' Text
+'member' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'early' Text
+'-' Text
+'20th' Text
+'-' Text
+'century' Text
+' ' Text
+'Parisian' Text
+' ' Text
+'[[' Punctuation
+'avant-garde' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'best' Text
+' ' Text
+'known' Text
+' ' Text
+'for' Text
+' ' Text
+'his' Text
+' ' Text
+"''" Generic.Emph
+'[[' Punctuation
+'Gymnopédies' Name.Tag
+']]' Punctuation
+"''" Generic.Emph
+'.' Text
+' ' Text
+'[[' Punctuation
+'Francis Poulenc' Name.Tag
+']]' Punctuation
+"'" Text
+'s' Text
+' ' Text
+'best' Text
+'-' Text
+'known' Text
+' ' Text
+'works' Text
+' ' Text
+'are' Text
+' ' Text
+'his' Text
+' ' Text
+'piano' Text
+' ' Text
+'suite' Text
+' ' Text
+"''" Generic.Emph
+'[[' Punctuation
+'Trois mouvements perpétuels' Name.Tag
+']]' Punctuation
+"''" Generic.Emph
+' ' Text
+'(' Text
+'1919' Text
+')' Text
+',' Text
+' ' Text
+'the' Text
+' ' Text
+'ballet' Text
+' ' Text
+"''" Generic.Emph
+'[[' Punctuation
+'Les biches' Name.Tag
+']]' Punctuation
+"''" Generic.Emph
+' ' Text
+'(' Text
+'1923' Text
+')' Text
+',' Text
+' ' Text
+'the' Text
+' ' Text
+"''" Generic.Emph
+'[[' Punctuation
+'Concert champêtre' Name.Tag
+']]' Punctuation
+"''" Generic.Emph
+' ' Text
+'(' Text
+'1928' Text
+')' Text
+' ' Text
+'for' Text
+' ' Text
+'[[' Punctuation
+'harpsichord' Name.Tag
+']]' Punctuation
+' ' Text
+'and' Text
+' ' Text
+'orchestra' Text
+',' Text
+' ' Text
+'the' Text
+' ' Text
+'opera' Text
+' ' Text
+"''" Generic.Emph
+'[[' Punctuation
+'Dialogues des Carmélites' Name.Tag
+']]' Punctuation
+"''" Generic.Emph
+' ' Text
+'(' Text
+'1957' Text
+')' Text
+' ' Text
+'and' Text
+' ' Text
+'the' Text
+' ' Text
+"''" Generic.Emph
+'[[' Punctuation
+'Gloria (Poulenc)' Name.Tag
+'|' Punctuation
+'Gloria' Text
+']]' Punctuation
+"''" Generic.Emph
+' ' Text
+'(' Text
+'1959' Text
+')' Text
+' ' Text
+'for' Text
+' ' Text
+'[[' Punctuation
+'soprano' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'choir' Text
+' ' Text
+'and' Text
+' ' Text
+'orchestra' Text
+'.' Text
+' ' Text
+'[[' Punctuation
+'Maurice Ravel' Name.Tag
+']]' Punctuation
+' ' Text
+'and' Text
+' ' Text
+'[[' Punctuation
+'Claude Debussy' Name.Tag
+']]' Punctuation
+' ' Text
+'are' Text
+' ' Text
+'the' Text
+' ' Text
+'most' Text
+' ' Text
+'prominent' Text
+' ' Text
+'figures' Text
+' ' Text
+'associated' Text
+' ' Text
+'with' Text
+' ' Text
+'[[' Punctuation
+'Impressionist music' Name.Tag
+']]' Punctuation
+'.' Text
+' ' Text
+'Debussy' Text
+' ' Text
+'was' Text
+' ' Text
+'among' Text
+' ' Text
+'the' Text
+' ' Text
+'most' Text
+' ' Text
+'influential' Text
+' ' Text
+'composers' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'late' Text
+' ' Text
+'19th' Text
+' ' Text
+'and' Text
+' ' Text
+'early' Text
+' ' Text
+'20th' Text
+' ' Text
+'centuries' Text
+',' Text
+' ' Text
+'and' Text
+' ' Text
+'his' Text
+' ' Text
+'use' Text
+' ' Text
+'of' Text
+' ' Text
+'non' Text
+'-' Text
+'traditional' Text
+' ' Text
+'scales' Text
+' ' Text
+'and' Text
+' ' Text
+'[[' Punctuation
+'chromaticism' Name.Tag
+']]' Punctuation
+' ' Text
+'influenced' Text
+' ' Text
+'many' Text
+' ' Text
+'composers' Text
+' ' Text
+'who' Text
+' ' Text
+'followed' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'last' Name.Label
+'=' Operator
+'Allen' Text
+' ' Text
+'Schrott' Text
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Claude' Text
+' ' Text
+'Debussy' Text
+'&nbsp;' Name.Entity
+'–' Text
+' ' Text
+'Biography' Text
+'&nbsp;' Name.Entity
+'–' Text
+' ' Text
+'AllMusic' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'allmusic' Text
+'.' Text
+'com' Text
+'/' Text
+'artist' Text
+'/' Text
+'claude' Text
+'-' Text
+'debussy' Text
+'-' Text
+'mn0000768781' Text
+'/' Text
+'biography' Text
+' ' Text
+'|' Punctuation
+'website' Name.Label
+'=' Operator
+'AllMusic' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'Debussy' Text
+"'" Text
+'s' Text
+' ' Text
+'music' Text
+' ' Text
+'is' Text
+' ' Text
+'noted' Text
+' ' Text
+'for' Text
+' ' Text
+'its' Text
+' ' Text
+'sensory' Text
+' ' Text
+'content' Text
+' ' Text
+'and' Text
+' ' Text
+'frequent' Text
+' ' Text
+'usage' Text
+' ' Text
+'of' Text
+' ' Text
+'[[' Punctuation
+'atonality' Name.Tag
+']]' Punctuation
+'.' Text
+' ' Text
+'The' Text
+' ' Text
+'two' Text
+' ' Text
+'composers' Text
+' ' Text
+'invented' Text
+' ' Text
+'new' Text
+' ' Text
+'musical' Text
+' ' Text
+'forms' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'last' Name.Label
+'=' Operator
+'Huizenga' Text
+' ' Text
+'|' Punctuation
+'first' Name.Label
+'=' Operator
+'Tom' Text
+' ' Text
+'|' Punctuation
+'date' Name.Label
+'=' Operator
+'14' Text
+' ' Text
+'October' Text
+' ' Text
+'2005' Text
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Debussy' Text
+"'" Text
+'s' Text
+' ' Text
+"'" Text
+'La' Text
+' ' Text
+'Mer' Text
+"'" Text
+' ' Text
+'Marks' Text
+' ' Text
+'100th' Text
+' ' Text
+'Birthday' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'npr' Text
+'.' Text
+'org' Text
+'/' Text
+'templates' Text
+'/' Text
+'story' Text
+'/' Text
+'story' Text
+'.' Text
+'php' Text
+'?' Text
+'storyId' Text
+'=' Text
+'4957580' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'22' Text
+' ' Text
+'July' Text
+' ' Text
+'2011' Text
+' ' Text
+'|' Punctuation
+'publisher' Name.Label
+'=' Operator
+'NPR' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'date' Name.Label
+'=' Operator
+'12' Text
+' ' Text
+'July' Text
+' ' Text
+'2008' Text
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Debussy' Text
+"'" Text
+'s' Text
+' ' Text
+'Musical' Text
+' ' Text
+'Game' Text
+' ' Text
+'of' Text
+' ' Text
+'Deception' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'npr' Text
+'.' Text
+'org' Text
+'/' Text
+'templates' Text
+'/' Text
+'story' Text
+'/' Text
+'story' Text
+'.' Text
+'php' Text
+'?' Text
+'storyId' Text
+'=' Text
+'92338564' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'22' Text
+' ' Text
+'July' Text
+' ' Text
+'2011' Text
+' ' Text
+'|' Punctuation
+'publisher' Name.Label
+'=' Operator
+'NPR' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Biography' Text
+' ' Text
+'of' Text
+' ' Text
+'Claude' Text
+' ' Text
+'Debussy' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'classicfm' Text
+'.' Text
+'co' Text
+'.' Text
+'uk' Text
+'/' Text
+'music' Text
+'/' Text
+'composers' Text
+'/' Text
+'c' Text
+'-' Text
+'g' Text
+'/' Text
+'claude' Text
+'-' Text
+'debussy' Text
+'/' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'22' Text
+' ' Text
+'July' Text
+' ' Text
+'2011' Text
+' ' Text
+'|' Punctuation
+'publisher' Name.Label
+'=' Operator
+'Classicfm' Text
+'.' Text
+'co' Text
+'.' Text
+'uk' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Biography' Text
+' ' Text
+'of' Text
+' ' Text
+'Maurice' Text
+' ' Text
+'Ravel' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'classicfm' Text
+'.' Text
+'co' Text
+'.' Text
+'uk' Text
+'/' Text
+'music' Text
+'/' Text
+'composers' Text
+'/' Text
+'n' Text
+'-' Text
+'r' Text
+'/' Text
+'maurice' Text
+'-' Text
+'ravel' Text
+'/' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'22' Text
+' ' Text
+'July' Text
+' ' Text
+'2011' Text
+' ' Text
+'|' Punctuation
+'publisher' Name.Label
+'=' Operator
+'Classicfm' Text
+'.' Text
+'co' Text
+'.' Text
+'uk' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'and' Text
+' ' Text
+'new' Text
+' ' Text
+'sounds' Text
+'.' Text
+' ' Text
+'Ravel' Text
+"'" Text
+'s' Text
+' ' Text
+'piano' Text
+' ' Text
+'compositions' Text
+',' Text
+' ' Text
+'such' Text
+' ' Text
+'as' Text
+' ' Text
+"''" Generic.Emph
+'[[' Punctuation
+"Jeux d'eau (Ravel)" Name.Tag
+'|' Punctuation
+'Jeux' Text
+' ' Text
+'d' Text
+"'" Text
+'eau' Text
+']]' Punctuation
+"''" Generic.Emph
+',' Text
+' ' Text
+"''" Generic.Emph
+'[[' Punctuation
+'Miroirs' Name.Tag
+']]' Punctuation
+"''" Generic.Emph
+',' Text
+' ' Text
+"''" Generic.Emph
+'[[' Punctuation
+'Le tombeau de Couperin' Name.Tag
+']]' Punctuation
+"''" Generic.Emph
+' ' Text
+'and' Text
+' ' Text
+"''" Generic.Emph
+'[[' Punctuation
+'Gaspard de la nuit' Name.Tag
+']]' Punctuation
+"''" Generic.Emph
+',' Text
+' ' Text
+'demand' Text
+' ' Text
+'considerable' Text
+' ' Text
+'virtuosity' Text
+'.' Text
+' ' Text
+'His' Text
+' ' Text
+'mastery' Text
+' ' Text
+'of' Text
+' ' Text
+'orchestration' Text
+' ' Text
+'is' Text
+' ' Text
+'evident' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+"''" Generic.Emph
+'[[' Punctuation
+'Rapsodie espagnole' Name.Tag
+']]' Punctuation
+"''" Generic.Emph
+',' Text
+' ' Text
+"''" Generic.Emph
+'[[' Punctuation
+'Daphnis et Chloé' Name.Tag
+']]' Punctuation
+"''" Generic.Emph
+',' Text
+' ' Text
+'his' Text
+' ' Text
+'arrangement' Text
+' ' Text
+'of' Text
+' ' Text
+'[[' Punctuation
+'Modest Mussorgsky' Name.Tag
+']]' Punctuation
+"'" Text
+'s' Text
+' ' Text
+"''" Generic.Emph
+'[[' Punctuation
+'Pictures at an Exhibition' Name.Tag
+']]' Punctuation
+"''" Generic.Emph
+' ' Text
+'and' Text
+' ' Text
+'his' Text
+' ' Text
+'orchestral' Text
+' ' Text
+'work' Text
+' ' Text
+"''" Generic.Emph
+'[[' Punctuation
+'Boléro' Name.Tag
+']]' Punctuation
+"''" Generic.Emph
+' ' Text
+'(' Text
+'1928' Text
+')' Text
+'.' Text
+' ' Text
+'More' Text
+' ' Text
+'recently' Text
+',' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'middle' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'20th' Text
+' ' Text
+'century' Text
+',' Text
+' ' Text
+'[[' Punctuation
+'Maurice Ohana' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'[[' Punctuation
+'Pierre Schaeffer' Name.Tag
+']]' Punctuation
+' ' Text
+'and' Text
+' ' Text
+'[[' Punctuation
+'Pierre Boulez' Name.Tag
+']]' Punctuation
+' ' Text
+'contributed' Text
+' ' Text
+'to' Text
+' ' Text
+'the' Text
+' ' Text
+'evolution' Text
+' ' Text
+'of' Text
+' ' Text
+'[[' Punctuation
+'contemporary classical music' Name.Tag
+']]' Punctuation
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'last' Name.Label
+'=' Operator
+'Schwartz' Text
+' ' Text
+'|' Punctuation
+'first' Name.Label
+'=' Operator
+'Lloyd' Text
+' ' Text
+'|' Punctuation
+'date' Name.Label
+'=' Operator
+'24' Text
+' ' Text
+'May' Text
+' ' Text
+'2010' Text
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Composer' Text
+'-' Text
+'Conductor' Text
+' ' Text
+'Pierre' Text
+' ' Text
+'Boulez' Text
+' ' Text
+'at' Text
+' ' Text
+'85' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'npr' Text
+'.' Text
+'org' Text
+'/' Text
+'templates' Text
+'/' Text
+'story' Text
+'/' Text
+'story' Text
+'.' Text
+'php' Text
+'?' Text
+'storyId' Text
+'=' Text
+'126668117' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'22' Text
+' ' Text
+'July' Text
+' ' Text
+'2011' Text
+' ' Text
+'|' Punctuation
+'publisher' Name.Label
+'=' Operator
+'NPR' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'\n' Text
+
+'\n' Text
+
+'French' Text
+' ' Text
+'music' Text
+' ' Text
+'then' Text
+' ' Text
+'followed' Text
+' ' Text
+'the' Text
+' ' Text
+'rapid' Text
+' ' Text
+'emergence' Text
+' ' Text
+'of' Text
+' ' Text
+'pop' Text
+' ' Text
+'and' Text
+' ' Text
+'rock' Text
+' ' Text
+'music' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'middle' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'20th' Text
+' ' Text
+'century' Text
+'.' Text
+' ' Text
+'Although' Text
+' ' Text
+'English' Text
+'-' Text
+'speaking' Text
+' ' Text
+'creations' Text
+' ' Text
+'achieved' Text
+' ' Text
+'popularity' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'country' Text
+',' Text
+' ' Text
+'[[' Punctuation
+'French popular music' Name.Tag
+'|' Punctuation
+'French' Text
+' ' Text
+'pop' Text
+' ' Text
+'music' Text
+']]' Punctuation
+',' Text
+' ' Text
+'known' Text
+' ' Text
+'as' Text
+' ' Text
+"''" Generic.Emph
+'[[' Punctuation
+'chanson française' Name.Tag
+']]' Punctuation
+"''" Generic.Emph
+',' Text
+' ' Text
+'has' Text
+' ' Text
+'also' Text
+' ' Text
+'remained' Text
+' ' Text
+'very' Text
+' ' Text
+'popular' Text
+'.' Text
+' ' Text
+'Among' Text
+' ' Text
+'the' Text
+' ' Text
+'most' Text
+' ' Text
+'important' Text
+' ' Text
+'French' Text
+' ' Text
+'artists' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'century' Text
+' ' Text
+'are' Text
+' ' Text
+'[[' Punctuation
+'Édith Piaf' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'[[' Punctuation
+'Georges Brassens' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'[[' Punctuation
+'Léo Ferré' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'[[' Punctuation
+'Charles Aznavour' Name.Tag
+']]' Punctuation
+' ' Text
+'and' Text
+' ' Text
+'[[' Punctuation
+'Serge Gainsbourg' Name.Tag
+']]' Punctuation
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'date' Name.Label
+'=' Operator
+'21' Text
+' ' Text
+'April' Text
+' ' Text
+'2003' Text
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'100人の偉大なアーティスト' Text
+'&nbsp;' Name.Entity
+'-' Text
+' ' Text
+'No' Text
+'.' Text
+' ' Text
+'62' Text
+' ' Text
+'|' Punctuation
+'trans-title' Name.Label
+'=' Operator
+'The' Text
+' ' Text
+'100' Text
+' ' Text
+'Greatest' Text
+' ' Text
+'Artists' Text
+'&nbsp;' Name.Entity
+'–' Text
+' ' Text
+'No' Text
+'.' Text
+' ' Text
+'62' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'hmv' Text
+'.' Text
+'co' Text
+'.' Text
+'jp' Text
+'/' Text
+'news' Text
+'/' Text
+'newsDetail' Text
+'.' Text
+'asp' Text
+'?' Text
+'newsnum' Text
+'=' Text
+'304080038' Text
+' ' Text
+'|' Punctuation
+'website' Name.Label
+'=' Operator
+'ローチケHMV' Text
+' ' Text
+'[' Text
+'Roachke' Text
+' ' Text
+'HMV' Text
+']' Text
+' ' Text
+'|' Punctuation
+'language' Name.Label
+'=' Operator
+'ja' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'Although' Text
+' ' Text
+'there' Text
+' ' Text
+'are' Text
+' ' Text
+'very' Text
+' ' Text
+'few' Text
+' ' Text
+'rock' Text
+' ' Text
+'bands' Text
+' ' Text
+'in' Text
+' ' Text
+'France' Text
+' ' Text
+'compared' Text
+' ' Text
+'to' Text
+' ' Text
+'English' Text
+'-' Text
+'speaking' Text
+' ' Text
+'countries' Text
+',' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'date' Name.Label
+'=' Operator
+'December' Text
+' ' Text
+'2010' Text
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Biography' Text
+' ' Text
+'of' Text
+' ' Text
+'Noir' Text
+' ' Text
+'Désir' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'rfimusic' Text
+'.' Text
+'com' Text
+'/' Text
+'artist' Text
+'/' Text
+'rock' Text
+'/' Text
+'noir' Text
+'-' Text
+'desir' Text
+'/' Text
+'biography' Text
+' ' Text
+'|' Punctuation
+'url-status' Name.Label
+'=' Operator
+'dead' Text
+' ' Text
+'|' Punctuation
+'archive-url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'web' Text
+'.' Text
+'archive' Text
+'.' Text
+'org' Text
+'/' Text
+'web' Text
+'/' Text
+'20160430102257' Text
+'/' Text
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'rfimusic' Text
+'.' Text
+'com' Text
+'/' Text
+'artist' Text
+'/' Text
+'rock' Text
+'/' Text
+'noir' Text
+'-' Text
+'desir' Text
+'/' Text
+'biography' Text
+' ' Text
+'|' Punctuation
+'archive-date' Name.Label
+'=' Operator
+'30' Text
+' ' Text
+'April' Text
+' ' Text
+'2016' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'11' Text
+' ' Text
+'January' Text
+' ' Text
+'2018' Text
+' ' Text
+'|' Punctuation
+'website' Name.Label
+'=' Operator
+'rfi' Text
+' ' Text
+'Music' Text
+' ' Text
+'|' Punctuation
+'publisher' Name.Label
+'=' Operator
+'[[' Punctuation
+'Radio France Internationale' Name.Tag
+'|' Punctuation
+'RFI' Text
+']]' Punctuation
+' ' Text
+'Musique' Text
+' ' Text
+'|' Punctuation
+'quote' Name.Label
+'=' Operator
+'Rock' Text
+' ' Text
+'music' Text
+' ' Text
+'doesn' Text
+"'" Text
+'t' Text
+' ' Text
+'come' Text
+' ' Text
+'naturally' Text
+' ' Text
+'to' Text
+' ' Text
+'the' Text
+' ' Text
+'French' Text
+'.' Text
+' ' Text
+'A' Text
+' ' Text
+'Latin' Text
+' ' Text
+'country' Text
+',' Text
+' ' Text
+'with' Text
+' ' Text
+'more' Text
+' ' Text
+'affinity' Text
+' ' Text
+'to' Text
+' ' Text
+'poetry' Text
+' ' Text
+'and' Text
+' ' Text
+'melody' Text
+',' Text
+' ' Text
+'France' Text
+' ' Text
+'has' Text
+' ' Text
+'very' Text
+' ' Text
+'rarely' Text
+' ' Text
+'produced' Text
+' ' Text
+'talented' Text
+' ' Text
+'rock' Text
+' ' Text
+'musicians' Text
+'.' Text
+' ' Text
+'Rock' Text
+' ' Text
+'music' Text
+' ' Text
+'has' Text
+' ' Text
+'other' Text
+',' Text
+' ' Text
+'more' Text
+' ' Text
+'Anglo' Text
+'-' Text
+'Saxon' Text
+' ' Text
+'ingredients' Text
+':' Text
+' ' Text
+'fury' Text
+',' Text
+' ' Text
+'excess' Text
+',' Text
+' ' Text
+'electricity' Text
+'.' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'bands' Text
+' ' Text
+'such' Text
+' ' Text
+'as' Text
+' ' Text
+'[[' Punctuation
+'Noir Désir' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'[[' Punctuation
+'Mano Negra (band)' Name.Tag
+'|' Punctuation
+'Mano' Text
+' ' Text
+'Negra' Text
+']]' Punctuation
+',' Text
+' ' Text
+'[[' Punctuation
+'Niagara (band)' Name.Tag
+'|' Punctuation
+'Niagara' Text
+']]' Punctuation
+',' Text
+' ' Text
+'[[' Punctuation
+'Les Rita Mitsouko' Name.Tag
+']]' Punctuation
+' ' Text
+'and' Text
+' ' Text
+'more' Text
+' ' Text
+'recently' Text
+' ' Text
+'[[' Punctuation
+'Superbus (band)' Name.Tag
+'|' Punctuation
+'Superbus' Text
+']]' Punctuation
+',' Text
+' ' Text
+'[[' Punctuation
+'Phoenix (band)' Name.Tag
+'|' Punctuation
+'Phoenix' Text
+']]' Punctuation
+' ' Text
+'and' Text
+' ' Text
+'[[' Punctuation
+'Gojira (band)' Name.Tag
+'|' Punctuation
+'Gojira' Text
+']]' Punctuation
+',' Text
+'<' Punctuation
+'ref' Name.Tag
+' ' Text.Whitespace
+'name' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+'frmusic' Literal.String.Double
+'"' Literal.String.Double
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'date' Name.Label
+'=' Operator
+'22' Text
+' ' Text
+'June' Text
+' ' Text
+'2009' Text
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'French' Text
+' ' Text
+'music' Text
+' ' Text
+'has' Text
+' ' Text
+'the' Text
+' ' Text
+'whole' Text
+' ' Text
+'planet' Text
+' ' Text
+'singing' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'diplomatie' Text
+'.' Text
+'gouv' Text
+'.' Text
+'fr' Text
+'/' Text
+'en' Text
+'/' Text
+'france_159' Text
+'/' Text
+'culture' Text
+'-' Text
+'and' Text
+'-' Text
+'media_6819' Text
+'/' Text
+'culture_6874' Text
+'/' Text
+'music_5335' Text
+'/' Text
+'french' Text
+'-' Text
+'music' Text
+'-' Text
+'has' Text
+'-' Text
+'the' Text
+'-' Text
+'whole' Text
+'-' Text
+'planet' Text
+'-' Text
+'singing_13031' Text
+'.' Text
+'html' Text
+' ' Text
+'|' Punctuation
+'url-status' Name.Label
+'=' Operator
+'dead' Text
+' ' Text
+'|' Punctuation
+'archive-url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'web' Text
+'.' Text
+'archive' Text
+'.' Text
+'org' Text
+'/' Text
+'web' Text
+'/' Text
+'20101222105333' Text
+'/' Text
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'diplomatie' Text
+'.' Text
+'gouv' Text
+'.' Text
+'fr' Text
+'/' Text
+'en' Text
+'/' Text
+'france_159' Text
+'/' Text
+'culture' Text
+'-' Text
+'and' Text
+'-' Text
+'media_6819' Text
+'/' Text
+'culture_6874' Text
+'/' Text
+'music_5335' Text
+'/' Text
+'french' Text
+'-' Text
+'music' Text
+'-' Text
+'has' Text
+'-' Text
+'the' Text
+'-' Text
+'whole' Text
+'-' Text
+'planet' Text
+'-' Text
+'singing_13031' Text
+'.' Text
+'html' Text
+' ' Text
+'|' Punctuation
+'archive-date' Name.Label
+'=' Operator
+'22' Text
+' ' Text
+'December' Text
+' ' Text
+'2010' Text
+' ' Text
+'|' Punctuation
+'website' Name.Label
+'=' Operator
+'France' Text
+' ' Text
+'Diplomatie' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'or' Text
+' ' Text
+'[[' Punctuation
+'Shaka Ponk' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'have' Text
+' ' Text
+'reached' Text
+' ' Text
+'worldwide' Text
+' ' Text
+'popularity' Text
+'.' Text
+'\n' Text
+
+'\n' Text
+
+'Other' Text
+' ' Text
+'French' Text
+' ' Text
+'artists' Text
+' ' Text
+'with' Text
+' ' Text
+'international' Text
+' ' Text
+'careers' Text
+' ' Text
+'have' Text
+' ' Text
+'been' Text
+' ' Text
+'popular' Text
+' ' Text
+'in' Text
+' ' Text
+'several' Text
+' ' Text
+'countries' Text
+',' Text
+' ' Text
+'most' Text
+' ' Text
+'notably' Text
+' ' Text
+'female' Text
+' ' Text
+'singers' Text
+' ' Text
+'[[' Punctuation
+'Dalida' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'[[' Punctuation
+'Mireille Mathieu' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'[[' Punctuation
+'Mylène Farmer' Name.Tag
+']]' Punctuation
+',' Text
+'<' Punctuation
+'ref' Name.Tag
+' ' Text.Whitespace
+'name' Name.Attribute
+'=' Operator
+'frmusic' Literal.String
+'/>' Punctuation
+' ' Text
+'[[' Punctuation
+'Alizée' Name.Tag
+']]' Punctuation
+' ' Text
+'and' Text
+' ' Text
+'[[' Punctuation
+'Nolwenn Leroy' Name.Tag
+']]' Punctuation
+',' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Bureau' Text
+' ' Text
+'Export' Text
+'&nbsp;' Name.Entity
+'–' Text
+' ' Text
+'Les' Text
+' ' Text
+'certifications' Text
+' ' Text
+'export' Text
+' ' Text
+'2012' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'irma' Text
+'.' Text
+'asso' Text
+'.' Text
+'fr' Text
+'/' Text
+'IMG' Text
+'/' Text
+'pdf' Text
+'/' Text
+'bureauexport_dossierdepresse_2013_fr' Text
+'.' Text
+'pdf' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'7' Text
+' ' Text
+'March' Text
+' ' Text
+'2015' Text
+' ' Text
+'|' Punctuation
+'publisher' Name.Label
+'=' Operator
+'IRMA' Text
+' ' Text
+'|' Punctuation
+'page' Name.Label
+'=' Operator
+'26' Text
+' ' Text
+'|' Punctuation
+'language' Name.Label
+'=' Operator
+'fr' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'electronic' Text
+' ' Text
+'music' Text
+' ' Text
+'pioneers' Text
+' ' Text
+'[[' Punctuation
+'Jean-Michel Jarre' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'[[' Punctuation
+'Laurent Garnier' Name.Tag
+']]' Punctuation
+' ' Text
+'and' Text
+' ' Text
+'[[' Punctuation
+'Bob Sinclar' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'later' Text
+' ' Text
+'[[' Punctuation
+'Martin Solveig' Name.Tag
+']]' Punctuation
+' ' Text
+'and' Text
+' ' Text
+'[[' Punctuation
+'David Guetta' Name.Tag
+']]' Punctuation
+'.' Text
+' ' Text
+'In' Text
+' ' Text
+'the' Text
+' ' Text
+'1990s' Text
+' ' Text
+'and' Text
+' ' Text
+'2000s' Text
+' ' Text
+'(' Text
+'decade' Text
+')' Text
+',' Text
+' ' Text
+'electronic' Text
+' ' Text
+'duos' Text
+' ' Text
+'[[' Punctuation
+'Daft Punk' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'[[' Punctuation
+'Justice (French band)' Name.Tag
+'|' Punctuation
+'Justice' Text
+']]' Punctuation
+' ' Text
+'and' Text
+' ' Text
+'[[' Punctuation
+'Air (French band)' Name.Tag
+'|' Punctuation
+'Air' Text
+']]' Punctuation
+' ' Text
+'also' Text
+' ' Text
+'reached' Text
+' ' Text
+'worldwide' Text
+' ' Text
+'popularity' Text
+' ' Text
+'and' Text
+' ' Text
+'contributed' Text
+' ' Text
+'to' Text
+' ' Text
+'the' Text
+' ' Text
+'reputation' Text
+' ' Text
+'of' Text
+' ' Text
+'modern' Text
+' ' Text
+'electronic' Text
+' ' Text
+'music' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'world' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+' ' Text.Whitespace
+'name' Name.Attribute
+'=' Operator
+'frmusic' Literal.String
+'/>' Punctuation
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'news' Name.Tag
+' ' Text
+'|' Punctuation
+'last' Name.Label
+'=' Operator
+'Bernadette' Text
+' ' Text
+'McNulty' Text
+' ' Text
+'|' Punctuation
+'date' Name.Label
+'=' Operator
+'17' Text
+' ' Text
+'November' Text
+' ' Text
+'2007' Text
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Daft' Text
+' ' Text
+'Punk' Text
+':' Text
+' ' Text
+'Behind' Text
+' ' Text
+'the' Text
+' ' Text
+'robot' Text
+' ' Text
+'masks' Text
+' ' Text
+'|' Punctuation
+'work' Name.Label
+'=' Operator
+'The' Text
+' ' Text
+'Telegraph' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'telegraph' Text
+'.' Text
+'co' Text
+'.' Text
+'uk' Text
+'/' Text
+'culture' Text
+'/' Text
+'music' Text
+'/' Text
+'3669339' Text
+'/' Text
+'Daft' Text
+'-' Text
+'Punk' Text
+'-' Text
+'Behind' Text
+'-' Text
+'the' Text
+'-' Text
+'robot' Text
+'-' Text
+'masks' Text
+'.' Text
+'html' Text
+' ' Text
+'|' Punctuation
+'url-status' Name.Label
+'=' Operator
+'live' Text
+' ' Text
+'|' Punctuation
+'url-access' Name.Label
+'=' Operator
+'subscription' Text
+' ' Text
+'|' Punctuation
+'archive-url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'ghostarchive' Text
+'.' Text
+'org' Text
+'/' Text
+'archive' Text
+'/' Text
+'20220110' Text
+'/' Text
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'telegraph' Text
+'.' Text
+'co' Text
+'.' Text
+'uk' Text
+'/' Text
+'culture' Text
+'/' Text
+'music' Text
+'/' Text
+'3669339' Text
+'/' Text
+'Daft' Text
+'-' Text
+'Punk' Text
+'-' Text
+'Behind' Text
+'-' Text
+'the' Text
+'-' Text
+'robot' Text
+'-' Text
+'masks' Text
+'.' Text
+'html' Text
+' ' Text
+'|' Punctuation
+'archive-date' Name.Label
+'=' Operator
+'10' Text
+' ' Text
+'January' Text
+' ' Text
+'2022' Text
+' ' Text
+'|' Punctuation
+'quote' Name.Label
+'=' Operator
+'Daft' Text
+' ' Text
+'Punk' Text
+' ' Text
+'were' Text
+' ' Text
+'in' Text
+' ' Text
+'many' Text
+' ' Text
+'ways' Text
+' ' Text
+'responsible' Text
+' ' Text
+'for' Text
+' ' Text
+'turning' Text
+' ' Text
+'the' Text
+' ' Text
+'spotlight' Text
+' ' Text
+'on' Text
+' ' Text
+'a' Text
+' ' Text
+'new' Text
+',' Text
+' ' Text
+'cool' Text
+' ' Text
+'underground' Text
+' ' Text
+'of' Text
+' ' Text
+'French' Text
+' ' Text
+'music' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'late' Text
+' ' Text
+'1990s' Text
+',' Text
+' ' Text
+'including' Text
+' ' Text
+'bestselling' Text
+' ' Text
+'acts' Text
+' ' Text
+'such' Text
+' ' Text
+'as' Text
+' ' Text
+'Air' Text
+',' Text
+' ' Text
+'and' Text
+' ' Text
+'have' Text
+' ' Text
+'been' Text
+' ' Text
+'a' Text
+' ' Text
+'huge' Text
+' ' Text
+'influence' Text
+' ' Text
+'on' Text
+' ' Text
+'the' Text
+' ' Text
+'current' Text
+' ' Text
+'generation' Text
+' ' Text
+'of' Text
+' ' Text
+'international' Text
+' ' Text
+'star' Text
+' ' Text
+'DJs' Text
+'.' Text
+'}}' Punctuation
+'{{' Punctuation
+'Cbignore' Name.Tag
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'news' Name.Tag
+' ' Text
+'|' Punctuation
+'last' Name.Label
+'=' Operator
+'Alex' Text
+' ' Text
+'Webb' Text
+' ' Text
+'|' Punctuation
+'date' Name.Label
+'=' Operator
+'20' Text
+' ' Text
+'December' Text
+' ' Text
+'2001' Text
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'The' Text
+' ' Text
+'return' Text
+' ' Text
+'of' Text
+' ' Text
+'French' Text
+' ' Text
+'pop' Text
+' ' Text
+'music' Text
+' ' Text
+'|' Punctuation
+'work' Name.Label
+'=' Operator
+'BBC' Text
+' ' Text
+'News' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'news' Text
+'.' Text
+'bbc' Text
+'.' Text
+'co' Text
+'.' Text
+'uk' Text
+'/' Text
+'2' Text
+'/' Text
+'hi' Text
+'/' Text
+'entertainment' Text
+'/' Text
+'1721450' Text
+'.' Text
+'stm' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'22' Text
+' ' Text
+'July' Text
+' ' Text
+'2011' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'\n' Text
+
+'\n' Text
+
+'Among' Text
+' ' Text
+'current' Text
+' ' Text
+'musical' Text
+' ' Text
+'events' Text
+' ' Text
+'and' Text
+' ' Text
+'institutions' Text
+' ' Text
+'in' Text
+' ' Text
+'France' Text
+',' Text
+' ' Text
+'many' Text
+' ' Text
+'are' Text
+' ' Text
+'dedicated' Text
+' ' Text
+'to' Text
+' ' Text
+'classical' Text
+' ' Text
+'music' Text
+' ' Text
+'and' Text
+' ' Text
+'operas' Text
+'.' Text
+' ' Text
+'The' Text
+' ' Text
+'most' Text
+' ' Text
+'prestigious' Text
+' ' Text
+'institutions' Text
+' ' Text
+'are' Text
+' ' Text
+'the' Text
+' ' Text
+'state' Text
+'-' Text
+'owned' Text
+' ' Text
+'[[' Punctuation
+'Paris National Opera' Name.Tag
+']]' Punctuation
+' ' Text
+'(' Text
+'with' Text
+' ' Text
+'its' Text
+' ' Text
+'two' Text
+' ' Text
+'sites' Text
+' ' Text
+'[[' Punctuation
+'Palais Garnier' Name.Tag
+']]' Punctuation
+' ' Text
+'and' Text
+' ' Text
+'[[' Punctuation
+'Opéra Bastille' Name.Tag
+']]' Punctuation
+')' Text
+',' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Opéra National de Lyon' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Théâtre du Châtelet' Name.Tag
+']]' Punctuation
+' ' Text
+'in' Text
+' ' Text
+'Paris' Text
+',' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Théâtre du Capitole' Name.Tag
+']]' Punctuation
+' ' Text
+'in' Text
+' ' Text
+'[[' Punctuation
+'Toulouse' Name.Tag
+']]' Punctuation
+' ' Text
+'and' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Grand Théâtre de Bordeaux' Name.Tag
+']]' Punctuation
+'.' Text
+' ' Text
+'As' Text
+' ' Text
+'for' Text
+' ' Text
+'music' Text
+' ' Text
+'festivals' Text
+',' Text
+' ' Text
+'there' Text
+' ' Text
+'are' Text
+' ' Text
+'several' Text
+' ' Text
+'events' Text
+' ' Text
+'organised' Text
+',' Text
+' ' Text
+'the' Text
+' ' Text
+'most' Text
+' ' Text
+'popular' Text
+' ' Text
+'being' Text
+' ' Text
+'[[' Punctuation
+'Eurockéennes' Name.Tag
+']]' Punctuation
+' ' Text
+'(' Text
+'a' Text
+' ' Text
+'[[' Punctuation
+'word play' Name.Tag
+']]' Punctuation
+' ' Text
+'which' Text
+' ' Text
+'sounds' Text
+' ' Text
+'in' Text
+' ' Text
+'French' Text
+' ' Text
+'as' Text
+' ' Text
+'"' Text
+'European' Text
+'"' Text
+')' Text
+',' Text
+' ' Text
+'[[' Punctuation
+'Solidays' Name.Tag
+']]' Punctuation
+' ' Text
+'and' Text
+' ' Text
+'[[' Punctuation
+'Rock en Seine' Name.Tag
+']]' Punctuation
+'.' Text
+' ' Text
+'The' Text
+' ' Text
+'[[' Punctuation
+'Fête de la Musique' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'imitated' Text
+' ' Text
+'by' Text
+' ' Text
+'many' Text
+' ' Text
+'foreign' Text
+' ' Text
+'cities' Text
+',' Text
+' ' Text
+'was' Text
+' ' Text
+'first' Text
+' ' Text
+'launched' Text
+' ' Text
+'by' Text
+' ' Text
+'the' Text
+' ' Text
+'French' Text
+' ' Text
+'Government' Text
+' ' Text
+'in' Text
+' ' Text
+'1982' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'About' Text
+' ' Text
+'"' Text
+'Fête' Text
+' ' Text
+'de' Text
+' ' Text
+'la' Text
+' ' Text
+'Musique' Text
+'"' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'fetedelamusique' Text
+'.' Text
+'culture' Text
+'.' Text
+'fr' Text
+'/' Text
+'site' Text
+'-' Text
+'2010' Text
+'/' Text
+'?' Text
+'page_id' Text
+'=' Text
+'550' Text
+' ' Text
+'|' Punctuation
+'url-status' Name.Label
+'=' Operator
+'dead' Text
+' ' Text
+'|' Punctuation
+'archive-url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'web' Text
+'.' Text
+'archive' Text
+'.' Text
+'org' Text
+'/' Text
+'web' Text
+'/' Text
+'20100515071351' Text
+'/' Text
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'fetedelamusique' Text
+'.' Text
+'culture' Text
+'.' Text
+'fr' Text
+'/' Text
+'site' Text
+'-' Text
+'2010' Text
+'/' Text
+'?' Text
+'page_id' Text
+'=' Text
+'550' Text
+' ' Text
+'|' Punctuation
+'archive-date' Name.Label
+'=' Operator
+'15' Text
+' ' Text
+'May' Text
+' ' Text
+'2010' Text
+' ' Text
+'|' Punctuation
+'publisher' Name.Label
+'=' Operator
+'French' Text
+' ' Text
+'Ministry' Text
+' ' Text
+'for' Text
+' ' Text
+'Culture' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'date' Name.Label
+'=' Operator
+'21' Text
+' ' Text
+'June' Text
+' ' Text
+'2007' Text
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Fête' Text
+' ' Text
+'de' Text
+' ' Text
+'la' Text
+' ' Text
+'Musique' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'diplomatie' Text
+'.' Text
+'gouv' Text
+'.' Text
+'fr' Text
+'/' Text
+'en' Text
+'/' Text
+'france_159' Text
+'/' Text
+'culture' Text
+'-' Text
+'and' Text
+'-' Text
+'media_6819' Text
+'/' Text
+'culture_6874' Text
+'/' Text
+'music_5335' Text
+'/' Text
+'fete' Text
+'-' Text
+'musique' Text
+'-' Text
+'21' Text
+' ' Text
+'|' Punctuation
+'url-status' Name.Label
+'=' Operator
+'dead' Text
+' ' Text
+'|' Punctuation
+'archive-url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'web' Text
+'.' Text
+'archive' Text
+'.' Text
+'org' Text
+'/' Text
+'web' Text
+'/' Text
+'20120118060250' Text
+'/' Text
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'diplomatie' Text
+'.' Text
+'gouv' Text
+'.' Text
+'fr' Text
+'/' Text
+'en' Text
+'/' Text
+'france_159' Text
+'/' Text
+'culture' Text
+'-' Text
+'and' Text
+'-' Text
+'media_6819' Text
+'/' Text
+'culture_6874' Text
+'/' Text
+'music_5335' Text
+'/' Text
+'fete' Text
+'-' Text
+'musique' Text
+'-' Text
+'21' Text
+' ' Text
+'|' Punctuation
+'archive-date' Name.Label
+'=' Operator
+'18' Text
+' ' Text
+'January' Text
+' ' Text
+'2012' Text
+' ' Text
+'|' Punctuation
+'website' Name.Label
+'=' Operator
+'France' Text
+' ' Text
+'Diplomatie' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'Major' Text
+' ' Text
+'music' Text
+' ' Text
+'halls' Text
+' ' Text
+'and' Text
+' ' Text
+'venues' Text
+' ' Text
+'in' Text
+' ' Text
+'France' Text
+' ' Text
+'include' Text
+' ' Text
+'[[' Punctuation
+'Le Zénith' Name.Tag
+']]' Punctuation
+' ' Text
+'sites' Text
+' ' Text
+'present' Text
+' ' Text
+'in' Text
+' ' Text
+'many' Text
+' ' Text
+'cities' Text
+' ' Text
+'and' Text
+' ' Text
+'other' Text
+' ' Text
+'places' Text
+' ' Text
+'in' Text
+' ' Text
+'Paris' Text
+' ' Text
+'(' Text
+'[[' Punctuation
+'Paris Olympia' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'[[' Punctuation
+'Théâtre Mogador' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'[[' Punctuation
+'Élysée Montmartre' Name.Tag
+']]' Punctuation
+')' Text
+'.' Text
+'\n' Text
+
+'\n' Text
+
+'===' Generic.Subheading
+'Cinema' Generic.Subheading
+'===' Generic.Subheading
+'\n' Text.Whitespace
+
+'{{' Punctuation
+'Main' Name.Tag
+'|' Punctuation
+'Cinema' Text
+' ' Text
+'of' Text
+' ' Text
+'France' Text
+'}}' Punctuation
+'\n' Text
+
+'[[' Punctuation
+'File' Name.Namespace
+':' Punctuation
+"Palmed'or.jpg" Name.Tag
+'|' Punctuation
+'thumb' Text
+'|' Punctuation
+'left' Text
+'|' Punctuation
+'alt' Name.Attribute
+'=' Operator
+'Palme' Text
+' ' Text
+'d' Text
+"'" Text
+'Or' Text
+' ' Text
+'award' Text
+' ' Text
+'in' Text
+' ' Text
+'presentation' Text
+' ' Text
+'case' Text
+'|' Punctuation
+'A' Text
+' ' Text
+"''" Generic.Emph
+'[[' Punctuation
+"Palme d'Or" Name.Tag
+']]' Punctuation
+"''" Generic.Emph
+' ' Text
+'from' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Cannes Film Festival' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'one' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'"' Text
+'[[' Punctuation
+'Film festival' Name.Tag
+'|' Punctuation
+'Big' Text
+' ' Text
+'Three' Text
+']]' Punctuation
+'"' Text
+' ' Text
+'film' Text
+' ' Text
+'festivals' Text
+' ' Text
+'alongside' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Venice Film Festival' Name.Tag
+']]' Punctuation
+' ' Text
+'and' Text
+' ' Text
+'[[' Punctuation
+'Berlin International Film Festival' Name.Tag
+']]' Punctuation
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'news' Name.Tag
+' ' Text
+'|' Punctuation
+'last' Name.Label
+'=' Operator
+'Dargis' Text
+' ' Text
+'|' Punctuation
+'first' Name.Label
+'=' Operator
+'Manohla' Text
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Cannes' Text
+' ' Text
+'International' Text
+' ' Text
+'Film' Text
+' ' Text
+'Festival' Text
+' ' Text
+'|' Punctuation
+'work' Name.Label
+'=' Operator
+'The' Text
+' ' Text
+'New' Text
+' ' Text
+'York' Text
+' ' Text
+'Times' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'topics' Text
+'.' Text
+'nytimes' Text
+'.' Text
+'com' Text
+'/' Text
+'top' Text
+'/' Text
+'reference' Text
+'/' Text
+'timestopics' Text
+'/' Text
+'subjects' Text
+'/' Text
+'c' Text
+'/' Text
+'cannes_international_film_festival' Text
+'/' Text
+'index' Text
+'.' Text
+'html' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'news' Name.Tag
+' ' Text
+'|' Punctuation
+'last' Name.Label
+'=' Operator
+'Lim' Text
+' ' Text
+'|' Punctuation
+'first' Name.Label
+'=' Operator
+'Dennis' Text
+' ' Text
+'|' Punctuation
+'date' Name.Label
+'=' Operator
+'15' Text
+' ' Text
+'May' Text
+' ' Text
+'2012' Text
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'They' Text
+"'" Text
+'ll' Text
+' ' Text
+'Always' Text
+' ' Text
+'Have' Text
+' ' Text
+'Cannes' Text
+' ' Text
+'|' Punctuation
+'work' Name.Label
+'=' Operator
+'The' Text
+' ' Text
+'New' Text
+' ' Text
+'York' Text
+' ' Text
+'Times' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'nytimes' Text
+'.' Text
+'com' Text
+'/' Text
+'2012' Text
+'/' Text
+'05' Text
+'/' Text
+'16' Text
+'/' Text
+'arts' Text
+'/' Text
+'16iht' Text
+'-' Text
+'lim16' Text
+'.' Text
+'html' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'news' Name.Tag
+' ' Text
+'|' Punctuation
+'last' Name.Label
+'=' Operator
+'Woolsey' Text
+' ' Text
+'|' Punctuation
+'first' Name.Label
+'=' Operator
+'Matt' Text
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'In' Text
+' ' Text
+'Pictures' Text
+':' Text
+' ' Text
+'Chic' Text
+' ' Text
+'Cannes' Text
+' ' Text
+'Hideaways' Text
+' ' Text
+'|' Punctuation
+'work' Name.Label
+'=' Operator
+'Forbes' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'forbes' Text
+'.' Text
+'com' Text
+'/' Text
+'2008' Text
+'/' Text
+'05' Text
+'/' Text
+'14' Text
+'/' Text
+'cannes' Text
+'-' Text
+'properties' Text
+'-' Text
+'luxury' Text
+'-' Text
+'forbeslife' Text
+'-' Text
+'cx_mw_0514realestate_slide' Text
+'.' Text
+'html' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+']]' Punctuation
+'\n' Text
+
+'\n' Text
+
+'France' Text
+' ' Text
+'has' Text
+' ' Text
+'historical' Text
+' ' Text
+'and' Text
+' ' Text
+'strong' Text
+' ' Text
+'links' Text
+' ' Text
+'with' Text
+' ' Text
+'[[' Punctuation
+'Filmmaking' Name.Tag
+'|' Punctuation
+'cinema' Text
+']]' Punctuation
+',' Text
+' ' Text
+'with' Text
+' ' Text
+'two' Text
+' ' Text
+'Frenchmen' Text
+',' Text
+' ' Text
+'Auguste' Text
+' ' Text
+'and' Text
+' ' Text
+'Louis' Text
+' ' Text
+'Lumière' Text
+' ' Text
+'(' Text
+'known' Text
+' ' Text
+'as' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Auguste and Louis Lumière' Name.Tag
+'|' Punctuation
+'Lumière' Text
+' ' Text
+'Brothers' Text
+']]' Punctuation
+')' Text
+' ' Text
+'credited' Text
+' ' Text
+'with' Text
+' ' Text
+'creating' Text
+' ' Text
+'cinema' Text
+' ' Text
+'in' Text
+' ' Text
+'1895' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'last' Name.Label
+'=' Operator
+'Larousse' Text
+' ' Text
+'|' Punctuation
+'first' Name.Label
+'=' Operator
+'Éditions' Text
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Encyclopédie' Text
+' ' Text
+'Larousse' Text
+' ' Text
+'en' Text
+' ' Text
+'ligne' Text
+' ' Text
+'–' Text
+' ' Text
+'les' Text
+' ' Text
+'frères' Text
+' ' Text
+'Lumière' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'larousse' Text
+'.' Text
+'fr' Text
+'/' Text
+'encyclopedie' Text
+'/' Text
+'personnage' Text
+'/' Text
+'les_frères_Lumière' Text
+'/' Text
+'130661' Text
+' ' Text
+'|' Punctuation
+'website' Name.Label
+'=' Operator
+'larousse' Text
+'.' Text
+'fr' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'The' Text
+' ' Text
+'world' Text
+"'" Text
+'s' Text
+' ' Text
+'first' Text
+' ' Text
+'female' Text
+' ' Text
+'filmmaker' Text
+',' Text
+' ' Text
+'[[' Punctuation
+'Alice Guy-Blaché' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'was' Text
+' ' Text
+'also' Text
+' ' Text
+'from' Text
+' ' Text
+'France' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'last1' Name.Label
+'=' Operator
+'Dargis' Text
+',' Text
+' ' Text
+'Manohla' Text
+' ' Text
+'|' Punctuation
+'author-link' Name.Label
+'=' Operator
+'Manohla' Text
+' ' Text
+'Dargis' Text
+' ' Text
+'|' Punctuation
+'last2' Name.Label
+'=' Operator
+'Scott' Text
+',' Text
+' ' Text
+'A' Text
+'.' Text
+'O' Text
+'.' Text
+' ' Text
+'|' Punctuation
+'author-link2' Name.Label
+'=' Operator
+'A' Text
+'.' Text
+' ' Text
+'O' Text
+'.' Text
+' ' Text
+'Scott' Text
+' ' Text
+'|' Punctuation
+'date' Name.Label
+'=' Operator
+'20' Text
+' ' Text
+'September' Text
+' ' Text
+'2018' Text
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'You' Text
+' ' Text
+'Know' Text
+' ' Text
+'These' Text
+' ' Text
+'20' Text
+' ' Text
+'Movies' Text
+'.' Text
+' ' Text
+'Now' Text
+' ' Text
+'Meet' Text
+' ' Text
+'the' Text
+' ' Text
+'Women' Text
+' ' Text
+'Behind' Text
+' ' Text
+'Them' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'nytimes' Text
+'.' Text
+'com' Text
+'/' Text
+'interactive' Text
+'/' Text
+'2018' Text
+'/' Text
+'09' Text
+'/' Text
+'14' Text
+'/' Text
+'movies' Text
+'/' Text
+'women' Text
+'-' Text
+'film' Text
+'-' Text
+'history' Text
+'.' Text
+'html' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'4' Text
+' ' Text
+'December' Text
+' ' Text
+'2018' Text
+' ' Text
+'|' Punctuation
+'website' Name.Label
+'=' Operator
+'The' Text
+' ' Text
+'New' Text
+' ' Text
+'York' Text
+' ' Text
+'Times' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'Several' Text
+' ' Text
+'important' Text
+' ' Text
+'cinematic' Text
+' ' Text
+'movements' Text
+',' Text
+' ' Text
+'including' Text
+' ' Text
+'the' Text
+' ' Text
+'late' Text
+' ' Text
+'1950s' Text
+' ' Text
+'and' Text
+' ' Text
+'1960s' Text
+' ' Text
+'[[' Punctuation
+'Nouvelle Vague' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'began' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'country' Text
+'.' Text
+' ' Text
+'It' Text
+' ' Text
+'is' Text
+' ' Text
+'noted' Text
+' ' Text
+'for' Text
+' ' Text
+'having' Text
+' ' Text
+'a' Text
+' ' Text
+'strong' Text
+' ' Text
+'film' Text
+' ' Text
+'industry' Text
+',' Text
+' ' Text
+'due' Text
+' ' Text
+'in' Text
+' ' Text
+'part' Text
+' ' Text
+'to' Text
+' ' Text
+'protections' Text
+' ' Text
+'afforded' Text
+' ' Text
+'by' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Government of France' Name.Tag
+']]' Punctuation
+'.' Text
+' ' Text
+'France' Text
+' ' Text
+'remains' Text
+' ' Text
+'a' Text
+' ' Text
+'leader' Text
+' ' Text
+'in' Text
+' ' Text
+'filmmaking' Text
+',' Text
+' ' Text
+'{{' Punctuation
+'As' Name.Tag
+' ' Name.Tag
+'of' Name.Tag
+'|' Punctuation
+'2015' Text
+'|' Punctuation
+'lc' Name.Label
+'=' Operator
+'y' Text
+'}}' Punctuation
+' ' Text
+'producing' Text
+' ' Text
+'more' Text
+' ' Text
+'films' Text
+' ' Text
+'than' Text
+' ' Text
+'any' Text
+' ' Text
+'other' Text
+' ' Text
+'European' Text
+' ' Text
+'country' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'last' Name.Label
+'=' Operator
+'UIS' Text
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'UIS' Text
+' ' Text
+'Statistics' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'data' Text
+'.' Text
+'uis' Text
+'.' Text
+'unesco' Text
+'.' Text
+'org' Text
+'/' Text
+'?' Text
+'ReportId' Text
+'=' Text
+'5538' Text
+' ' Text
+'|' Punctuation
+'publisher' Name.Label
+'=' Operator
+'UNESCO' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'<' Punctuation
+'ref' Name.Tag
+' ' Text.Whitespace
+'name' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+'NYT' Literal.String.Double
+' ' Literal.String.Double
+'1995' Literal.String.Double
+'-' Literal.String.Double
+'02' Literal.String.Double
+'-' Literal.String.Double
+'28' Literal.String.Double
+'"' Literal.String.Double
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'news' Name.Tag
+' ' Text
+'|' Punctuation
+'last' Name.Label
+'=' Operator
+'Alan' Text
+' ' Text
+'Riding' Text
+' ' Text
+'|' Punctuation
+'date' Name.Label
+'=' Operator
+'28' Text
+' ' Text
+'February' Text
+' ' Text
+'1995' Text
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'The' Text
+' ' Text
+'Birthplace' Text
+' ' Text
+'Celebrates' Text
+' ' Text
+'Film' Text
+"'" Text
+'s' Text
+' ' Text
+'Big' Text
+' ' Text
+'1' Text
+'–' Text
+'0' Text
+'–' Text
+'0' Text
+' ' Text
+'|' Punctuation
+'work' Name.Label
+'=' Operator
+'The' Text
+' ' Text
+'New' Text
+' ' Text
+'York' Text
+' ' Text
+'Times' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'nytimes' Text
+'.' Text
+'com' Text
+'/' Text
+'1995' Text
+'/' Text
+'02' Text
+'/' Text
+'28' Text
+'/' Text
+'movies' Text
+'/' Text
+'the' Text
+'-' Text
+'birthplace' Text
+'-' Text
+'celebrates' Text
+'-' Text
+'film' Text
+'-' Text
+'s' Text
+'-' Text
+'big' Text
+'-' Text
+'1' Text
+'-' Text
+'0' Text
+'-' Text
+'0' Text
+'.' Text
+'html' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'The' Text
+' ' Text
+'nation' Text
+' ' Text
+'also' Text
+' ' Text
+'hosts' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Cannes Festival' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'one' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'most' Text
+' ' Text
+'important' Text
+' ' Text
+'and' Text
+' ' Text
+'famous' Text
+' ' Text
+'film' Text
+' ' Text
+'festivals' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'world' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'date' Name.Label
+'=' Operator
+'15' Text
+' ' Text
+'February' Text
+' ' Text
+'2007' Text
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Cannes' Text
+'&nbsp;' Name.Entity
+'–' Text
+' ' Text
+'a' Text
+' ' Text
+'festival' Text
+' ' Text
+'virgin' Text
+"'" Text
+'s' Text
+' ' Text
+'guide' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'cannesguide' Text
+'.' Text
+'com' Text
+'/' Text
+'basics' Text
+'/' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'22' Text
+' ' Text
+'July' Text
+' ' Text
+'2011' Text
+' ' Text
+'|' Punctuation
+'publisher' Name.Label
+'=' Operator
+'Cannesguide' Text
+'.' Text
+'com' Text
+' ' Text
+'|' Punctuation
+'archive-date' Name.Label
+'=' Operator
+'12' Text
+' ' Text
+'September' Text
+' ' Text
+'2016' Text
+' ' Text
+'|' Punctuation
+'archive-url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'web' Text
+'.' Text
+'archive' Text
+'.' Text
+'org' Text
+'/' Text
+'web' Text
+'/' Text
+'20160912231419' Text
+'/' Text
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'cannesguide' Text
+'.' Text
+'com' Text
+'/' Text
+'basics' Text
+'/' Text
+' ' Text
+'|' Punctuation
+'url-status' Name.Label
+'=' Operator
+'dead' Text
+' ' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Cannes' Text
+' ' Text
+'Film' Text
+' ' Text
+'Festival' Text
+' ' Text
+'&#124;' Name.Entity
+' ' Text
+'Palais' Text
+' ' Text
+'des' Text
+' ' Text
+'Festivals' Text
+',' Text
+' ' Text
+'Cannes' Text
+',' Text
+' ' Text
+'France' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'whatsonwhen' Text
+'.' Text
+'com' Text
+'/' Text
+'sisp' Text
+'/' Text
+'index' Text
+'.' Text
+'htm' Text
+'?' Text
+'fx' Text
+'=' Text
+'event' Text
+'&' Text
+'event_id' Text
+'=' Text
+'21731' Text
+' ' Text
+'|' Punctuation
+'url-status' Name.Label
+'=' Operator
+'dead' Text
+' ' Text
+'|' Punctuation
+'archive-url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'web' Text
+'.' Text
+'archive' Text
+'.' Text
+'org' Text
+'/' Text
+'web' Text
+'/' Text
+'20120610125315' Text
+'/' Text
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'whatsonwhen' Text
+'.' Text
+'com' Text
+'/' Text
+'sisp' Text
+'/' Text
+'index' Text
+'.' Text
+'htm' Text
+'?' Text
+'fx' Text
+'=' Text
+'event' Text
+'&' Text
+'event_id' Text
+'=' Text
+'21731' Text
+' ' Text
+'|' Punctuation
+'archive-date' Name.Label
+'=' Operator
+'10' Text
+' ' Text
+'June' Text
+' ' Text
+'2012' Text
+' ' Text
+'|' Punctuation
+'publisher' Name.Label
+'=' Operator
+'Whatsonwhen' Text
+'.' Text
+'com' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'\n' Text
+
+'\n' Text
+
+'Apart' Text
+' ' Text
+'from' Text
+' ' Text
+'its' Text
+' ' Text
+'strong' Text
+' ' Text
+'and' Text
+' ' Text
+'innovative' Text
+' ' Text
+'film' Text
+' ' Text
+'tradition' Text
+',' Text
+' ' Text
+'France' Text
+' ' Text
+'has' Text
+' ' Text
+'also' Text
+' ' Text
+'been' Text
+' ' Text
+'a' Text
+' ' Text
+'gathering' Text
+' ' Text
+'spot' Text
+' ' Text
+'for' Text
+' ' Text
+'artists' Text
+' ' Text
+'from' Text
+' ' Text
+'across' Text
+' ' Text
+'Europe' Text
+' ' Text
+'and' Text
+' ' Text
+'the' Text
+' ' Text
+'world' Text
+'.' Text
+' ' Text
+'For' Text
+' ' Text
+'this' Text
+' ' Text
+'reason' Text
+',' Text
+' ' Text
+'French' Text
+' ' Text
+'cinema' Text
+' ' Text
+'is' Text
+' ' Text
+'sometimes' Text
+' ' Text
+'intertwined' Text
+' ' Text
+'with' Text
+' ' Text
+'the' Text
+' ' Text
+'cinema' Text
+' ' Text
+'of' Text
+' ' Text
+'foreign' Text
+' ' Text
+'nations' Text
+'.' Text
+' ' Text
+'Directors' Text
+' ' Text
+'from' Text
+' ' Text
+'nations' Text
+' ' Text
+'such' Text
+' ' Text
+'as' Text
+' ' Text
+'Poland' Text
+' ' Text
+'(' Text
+'[[' Punctuation
+'Roman Polanski' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'[[' Punctuation
+'Krzysztof Kieślowski' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'[[' Punctuation
+'Andrzej Żuławski' Name.Tag
+']]' Punctuation
+')' Text
+',' Text
+' ' Text
+'Argentina' Text
+' ' Text
+'(' Text
+'[[' Punctuation
+'Gaspar Noé' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'[[' Punctuation
+'Edgardo Cozarinsky' Name.Tag
+']]' Punctuation
+')' Text
+',' Text
+' ' Text
+'Russia' Text
+' ' Text
+'(' Text
+'[[' Punctuation
+'Alexandre Alexeieff' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'[[' Punctuation
+'Anatole Litvak' Name.Tag
+']]' Punctuation
+')' Text
+',' Text
+' ' Text
+'Austria' Text
+' ' Text
+'(' Text
+'[[' Punctuation
+'Michael Haneke' Name.Tag
+']]' Punctuation
+')' Text
+' ' Text
+'and' Text
+' ' Text
+'Georgia' Text
+' ' Text
+'(' Text
+'[[' Punctuation
+'Géla Babluani' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'[[' Punctuation
+'Otar Iosseliani' Name.Tag
+']]' Punctuation
+')' Text
+' ' Text
+'are' Text
+' ' Text
+'prominent' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'ranks' Text
+' ' Text
+'of' Text
+' ' Text
+'French' Text
+' ' Text
+'cinema' Text
+'.' Text
+' ' Text
+'Conversely' Text
+',' Text
+' ' Text
+'French' Text
+' ' Text
+'directors' Text
+' ' Text
+'have' Text
+' ' Text
+'had' Text
+' ' Text
+'prolific' Text
+' ' Text
+'and' Text
+' ' Text
+'influential' Text
+' ' Text
+'careers' Text
+' ' Text
+'in' Text
+' ' Text
+'other' Text
+' ' Text
+'countries' Text
+',' Text
+' ' Text
+'such' Text
+' ' Text
+'as' Text
+' ' Text
+'[[' Punctuation
+'Luc Besson' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'[[' Punctuation
+'Jacques Tourneur' Name.Tag
+']]' Punctuation
+' ' Text
+'or' Text
+' ' Text
+'[[' Punctuation
+'Francis Veber' Name.Tag
+']]' Punctuation
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Cinema of the United States' Name.Tag
+'|' Punctuation
+'United' Text
+' ' Text
+'States' Text
+']]' Punctuation
+'.' Text
+' ' Text
+'Although' Text
+' ' Text
+'the' Text
+' ' Text
+'French' Text
+' ' Text
+'film' Text
+' ' Text
+'market' Text
+' ' Text
+'is' Text
+' ' Text
+'dominated' Text
+' ' Text
+'by' Text
+' ' Text
+'Hollywood' Text
+',' Text
+' ' Text
+'France' Text
+' ' Text
+'is' Text
+' ' Text
+'the' Text
+' ' Text
+'only' Text
+' ' Text
+'nation' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'world' Text
+' ' Text
+'where' Text
+' ' Text
+'American' Text
+' ' Text
+'films' Text
+' ' Text
+'make' Text
+' ' Text
+'up' Text
+' ' Text
+'the' Text
+' ' Text
+'smallest' Text
+' ' Text
+'share' Text
+' ' Text
+'of' Text
+' ' Text
+'total' Text
+' ' Text
+'film' Text
+' ' Text
+'revenues' Text
+',' Text
+' ' Text
+'at' Text
+' ' Text
+'50' Text
+'%' Text
+',' Text
+' ' Text
+'compared' Text
+' ' Text
+'with' Text
+' ' Text
+'77' Text
+'%' Text
+' ' Text
+'in' Text
+' ' Text
+'Germany' Text
+' ' Text
+'and' Text
+' ' Text
+'69' Text
+'%' Text
+' ' Text
+'in' Text
+' ' Text
+'Japan' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+' ' Text.Whitespace
+'name' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+'erudit' Literal.String.Double
+'"' Literal.String.Double
+'>' Punctuation
+'{{' Punctuation
+'In' Name.Tag
+' ' Name.Tag
+'lang' Name.Tag
+'|' Punctuation
+'fr' Text
+'}}' Punctuation
+' ' Text
+'Damien' Text
+' ' Text
+'Rousselière' Text
+' ' Text
+'[' Punctuation
+'http://www.erudit.org/revue/hphi/2005/v15/n2/801295ar.pdf' Name.Label
+' ' Text.Whitespace
+'Cinéma' Text
+' ' Text
+'et' Text
+' ' Text
+'diversité' Text
+' ' Text
+'culturelle' Text
+':' Text
+' ' Text
+'le' Text
+' ' Text
+'cinéma' Text
+' ' Text
+'indépendant' Text
+' ' Text
+'face' Text
+' ' Text
+'à' Text
+' ' Text
+'la' Text
+' ' Text
+'mondialisation' Text
+' ' Text
+'des' Text
+' ' Text
+'industries' Text
+' ' Text
+'culturelles' Text
+']' Punctuation
+'.' Text
+' ' Text
+"''" Generic.Emph
+'Horizons' Generic.Emph
+' ' Generic.Emph
+'philosophiques' Generic.Emph
+"''" Generic.Emph
+' ' Text
+'Vol' Text
+'.' Text
+' ' Text
+'15' Text
+' ' Text
+'No' Text
+'.' Text
+' ' Text
+'2' Text
+' ' Text
+'2005' Text
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'French' Text
+' ' Text
+'films' Text
+' ' Text
+'account' Text
+' ' Text
+'for' Text
+' ' Text
+'35' Text
+'%' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'total' Text
+' ' Text
+'film' Text
+' ' Text
+'revenues' Text
+' ' Text
+'of' Text
+' ' Text
+'France' Text
+',' Text
+' ' Text
+'which' Text
+' ' Text
+'is' Text
+' ' Text
+'the' Text
+' ' Text
+'highest' Text
+' ' Text
+'percentage' Text
+' ' Text
+'of' Text
+' ' Text
+'national' Text
+' ' Text
+'film' Text
+' ' Text
+'revenues' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'developed' Text
+' ' Text
+'world' Text
+' ' Text
+'outside' Text
+' ' Text
+'the' Text
+' ' Text
+'United' Text
+' ' Text
+'States' Text
+',' Text
+' ' Text
+'compared' Text
+' ' Text
+'to' Text
+' ' Text
+'14' Text
+'%' Text
+' ' Text
+'in' Text
+' ' Text
+'Spain' Text
+' ' Text
+'and' Text
+' ' Text
+'8' Text
+'%' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'UK' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+' ' Text.Whitespace
+'name' Name.Attribute
+' ' Text.Whitespace
+'=' Operator
+' ' Text.Whitespace
+'erudit' Literal.String
+'/>' Punctuation
+' ' Text
+'France' Text
+' ' Text
+'is' Text
+' ' Text
+'2013' Text
+' ' Text
+'the' Text
+' ' Text
+'2nd' Text
+' ' Text
+'exporter' Text
+' ' Text
+'of' Text
+' ' Text
+'films' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'world' Text
+' ' Text
+'after' Text
+' ' Text
+'the' Text
+' ' Text
+'United' Text
+' ' Text
+'States' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+' ' Text.Whitespace
+'name' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+'unifrance' Literal.String.Double
+'.' Literal.String.Double
+'org' Literal.String.Double
+'"' Literal.String.Double
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Enquête' Text
+' ' Text
+'sur' Text
+' ' Text
+'l' Text
+"'" Text
+'image' Text
+' ' Text
+'du' Text
+' ' Text
+'cinéma' Text
+' ' Text
+'français' Text
+' ' Text
+'dans' Text
+' ' Text
+'le' Text
+' ' Text
+'monde' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'unifrance' Text
+'.' Text
+'org' Text
+'/' Text
+'actualites' Text
+'/' Text
+'11596' Text
+'/' Text
+'enquete' Text
+'-' Text
+'sur' Text
+'-' Text
+'l' Text
+'-' Text
+'image' Text
+'-' Text
+'du' Text
+'-' Text
+'cinema' Text
+'-' Text
+'francais' Text
+'-' Text
+'dans' Text
+'-' Text
+'le' Text
+'-' Text
+'monde' Text
+' ' Text
+'|' Punctuation
+'url-status' Name.Label
+'=' Operator
+'dead' Text
+' ' Text
+'|' Punctuation
+'archive-url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'web' Text
+'.' Text
+'archive' Text
+'.' Text
+'org' Text
+'/' Text
+'web' Text
+'/' Text
+'20141213021911' Text
+'/' Text
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'unifrance' Text
+'.' Text
+'org' Text
+'/' Text
+'actualites' Text
+'/' Text
+'11596' Text
+'/' Text
+'enquete' Text
+'-' Text
+'sur' Text
+'-' Text
+'l' Text
+'-' Text
+'image' Text
+'-' Text
+'du' Text
+'-' Text
+'cinema' Text
+'-' Text
+'francais' Text
+'-' Text
+'dans' Text
+'-' Text
+'le' Text
+'-' Text
+'monde' Text
+' ' Text
+'|' Punctuation
+'archive-date' Name.Label
+'=' Operator
+'13' Text
+' ' Text
+'December' Text
+' ' Text
+'2014' Text
+' ' Text
+'|' Punctuation
+'website' Name.Label
+'=' Operator
+'unifrance' Text
+'.' Text
+'org' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'\n' Text
+
+'\n' Text
+
+'France' Text
+' ' Text
+'historically' Text
+' ' Text
+'was' Text
+' ' Text
+'the' Text
+' ' Text
+'cultural' Text
+' ' Text
+'centre' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'world' Text
+',' Text
+'<' Punctuation
+'ref' Name.Tag
+' ' Text.Whitespace
+'name' Name.Attribute
+'=' Operator
+'exception' Literal.String
+'/>' Punctuation
+' ' Text
+'although' Text
+' ' Text
+'its' Text
+' ' Text
+'dominant' Text
+' ' Text
+'position' Text
+' ' Text
+'has' Text
+' ' Text
+'been' Text
+' ' Text
+'surpassed' Text
+' ' Text
+'by' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'American culture' Name.Tag
+'|' Punctuation
+'United' Text
+' ' Text
+'States' Text
+']]' Punctuation
+'.' Text
+' ' Text
+'Today' Text
+',' Text
+' ' Text
+'France' Text
+' ' Text
+'takes' Text
+' ' Text
+'steps' Text
+' ' Text
+'in' Text
+' ' Text
+'protecting' Text
+' ' Text
+'and' Text
+' ' Text
+'promoting' Text
+' ' Text
+'its' Text
+' ' Text
+'culture' Text
+',' Text
+' ' Text
+'becoming' Text
+' ' Text
+'a' Text
+' ' Text
+'leading' Text
+' ' Text
+'advocate' Text
+' ' Text
+'of' Text
+' ' Text
+'[[' Punctuation
+'cultural exception' Name.Tag
+']]' Punctuation
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'Joëlle' Text
+' ' Text
+'Farchy' Text
+' ' Text
+'(' Text
+'1999' Text
+')' Text
+' ' Text
+'[' Punctuation
+'http://www.scienceshumaines.com/la-fin-de-l-exception-culturelle_fr_10912.html' Name.Label
+' ' Text.Whitespace
+'La' Text
+' ' Text
+'Fin' Text
+' ' Text
+'de' Text
+' ' Text
+'l' Text
+"'" Text
+'exception' Text
+' ' Text
+'culturelle' Text
+' ' Text
+'?' Text
+']' Punctuation
+' ' Text
+'[[' Punctuation
+'CNRS' Name.Tag
+']]' Punctuation
+' ' Text
+'{{' Punctuation
+'ISBN' Name.Tag
+'|' Punctuation
+'978' Text
+'-' Text
+'2' Text
+'-' Text
+'271' Text
+'-' Text
+'05633' Text
+'-' Text
+'7' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'The' Text
+' ' Text
+'nation' Text
+' ' Text
+'succeeded' Text
+' ' Text
+'in' Text
+' ' Text
+'convincing' Text
+' ' Text
+'all' Text
+' ' Text
+'EU' Text
+' ' Text
+'members' Text
+' ' Text
+'to' Text
+' ' Text
+'refuse' Text
+' ' Text
+'to' Text
+' ' Text
+'include' Text
+' ' Text
+'culture' Text
+' ' Text
+'and' Text
+' ' Text
+'audiovisuals' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'list' Text
+' ' Text
+'of' Text
+' ' Text
+'liberalised' Text
+' ' Text
+'sectors' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'WTO' Text
+' ' Text
+'in' Text
+' ' Text
+'1993' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'[' Punctuation
+'http://www.culture.gouv.fr/culture/actualites/politique/diversite/wto-en2.htm' Name.Label
+' ' Text.Whitespace
+'The' Text
+' ' Text
+'cultural' Text
+' ' Text
+'exception' Text
+' ' Text
+'is' Text
+' ' Text
+'not' Text
+' ' Text
+'negotiable' Text
+' ' Text
+'by' Text
+' ' Text
+'Catherine' Text
+' ' Text
+'Trautmann' Text
+']' Punctuation
+'&nbsp;' Name.Entity
+'–' Text
+' ' Text
+'Ministry' Text
+' ' Text
+'of' Text
+' ' Text
+'Culture' Text
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'Moreover' Text
+',' Text
+' ' Text
+'this' Text
+' ' Text
+'decision' Text
+' ' Text
+'was' Text
+' ' Text
+'confirmed' Text
+' ' Text
+'in' Text
+' ' Text
+'a' Text
+' ' Text
+'vote' Text
+' ' Text
+'by' Text
+' ' Text
+'[[' Punctuation
+'UNESCO' Name.Tag
+']]' Punctuation
+' ' Text
+'in' Text
+' ' Text
+'2005' Text
+':' Text
+' ' Text
+'the' Text
+' ' Text
+'principle' Text
+' ' Text
+'of' Text
+' ' Text
+'"' Text
+'cultural' Text
+' ' Text
+'exception' Text
+'"' Text
+' ' Text
+'won' Text
+' ' Text
+'an' Text
+' ' Text
+'overwhelming' Text
+' ' Text
+'victory' Text
+' ' Text
+'with' Text
+' ' Text
+'198' Text
+' ' Text
+'countries' Text
+' ' Text
+'voting' Text
+' ' Text
+'for' Text
+' ' Text
+'it' Text
+' ' Text
+'and' Text
+' ' Text
+'only' Text
+' ' Text
+'2' Text
+' ' Text
+'countries' Text
+',' Text
+' ' Text
+'the' Text
+' ' Text
+'United' Text
+' ' Text
+'States' Text
+' ' Text
+'and' Text
+' ' Text
+'Israel' Text
+',' Text
+' ' Text
+'voting' Text
+' ' Text
+'against' Text
+' ' Text
+'it' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'La' Text
+' ' Text
+'Convention' Text
+' ' Text
+'UNESCO' Text
+' ' Text
+'pour' Text
+' ' Text
+'la' Text
+' ' Text
+'diversité' Text
+' ' Text
+'culturelle' Text
+' ' Text
+':' Text
+' ' Text
+'vers' Text
+' ' Text
+'un' Text
+' ' Text
+'droit' Text
+' ' Text
+'international' Text
+' ' Text
+'culturel' Text
+' ' Text
+'contraignant' Text
+' ' Text
+'?' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'fnsac' Text
+'-' Text
+'cgt' Text
+'.' Text
+'com' Text
+'/' Text
+'administration' Text
+'/' Text
+'upload' Text
+'/' Text
+'ARTICLE' Text
+'%' Text
+'20UNESCO' Text
+'%' Text
+'20CONF' Text
+'%' Text
+'201602_06' Text
+'%' Text
+'20' Text
+'(' Text
+'3' Text
+')' Text
+'.' Text
+'pdf' Text
+' ' Text
+'|' Punctuation
+'url-status' Name.Label
+'=' Operator
+'dead' Text
+' ' Text
+'|' Punctuation
+'archive-url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'web' Text
+'.' Text
+'archive' Text
+'.' Text
+'org' Text
+'/' Text
+'web' Text
+'/' Text
+'20110427020210' Text
+'/' Text
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'fnsac' Text
+'-' Text
+'cgt' Text
+'.' Text
+'com' Text
+'/' Text
+'administration' Text
+'/' Text
+'upload' Text
+'/' Text
+'ARTICLE' Text
+'%' Text
+'20UNESCO' Text
+'%' Text
+'20CONF' Text
+'%' Text
+'201602_06' Text
+'%' Text
+'20' Text
+'%' Text
+'283' Text
+'%' Text
+'29' Text
+'.' Text
+'pdf' Text
+' ' Text
+'|' Punctuation
+'archive-date' Name.Label
+'=' Operator
+'27' Text
+' ' Text
+'April' Text
+' ' Text
+'2011' Text
+' ' Text
+'|' Punctuation
+'publisher' Name.Label
+'=' Operator
+'Fédération' Text
+' ' Text
+'Nationale' Text
+' ' Text
+'des' Text
+' ' Text
+'Syndicats' Text
+' ' Text
+'du' Text
+' ' Text
+'spectacle' Text
+' ' Text
+'du' Text
+' ' Text
+'cinéma' Text
+',' Text
+' ' Text
+'de' Text
+' ' Text
+'l' Text
+"'" Text
+'audiovisuel' Text
+' ' Text
+'et' Text
+' ' Text
+'de' Text
+' ' Text
+'l' Text
+"'" Text
+'action' Text
+' ' Text
+'culturelle' Text
+' ' Text
+'|' Punctuation
+'language' Name.Label
+'=' Operator
+'fr' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'\n' Text
+
+'\n' Text
+
+'===' Generic.Subheading
+'Fashion' Generic.Subheading
+'===' Generic.Subheading
+'\n' Text.Whitespace
+
+'{{' Punctuation
+'Main' Name.Tag
+'|' Punctuation
+'French' Text
+' ' Text
+'fashion' Text
+'}}' Punctuation
+'\n' Text
+
+'[[' Punctuation
+'File' Name.Namespace
+':' Punctuation
+'Channel headquarters bordercropped.jpg' Name.Tag
+'|' Punctuation
+'thumb' Text
+'|' Punctuation
+'upright' Text
+'|' Punctuation
+'alt' Name.Attribute
+'=' Operator
+'Chanel' Text
+"'" Text
+'s' Text
+' ' Text
+'headquarters' Text
+' ' Text
+'storefront' Text
+' ' Text
+'window' Text
+' ' Text
+'at' Text
+' ' Text
+'the' Text
+' ' Text
+'Place' Text
+' ' Text
+'Vendôme' Text
+' ' Text
+'Paris' Text
+' ' Text
+'with' Text
+' ' Text
+'awning' Text
+'|' Punctuation
+'[[' Punctuation
+'Chanel' Name.Tag
+']]' Punctuation
+"'" Text
+'s' Text
+' ' Text
+'headquarters' Text
+' ' Text
+'on' Text
+' ' Text
+'[[' Punctuation
+'Place Vendôme' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'Paris' Text
+']]' Punctuation
+'\n' Text
+
+'\n' Text
+
+'Fashion' Text
+' ' Text
+'has' Text
+' ' Text
+'been' Text
+' ' Text
+'an' Text
+' ' Text
+'important' Text
+' ' Text
+'industry' Text
+' ' Text
+'and' Text
+' ' Text
+'cultural' Text
+' ' Text
+'export' Text
+' ' Text
+'of' Text
+' ' Text
+'France' Text
+' ' Text
+'since' Text
+' ' Text
+'the' Text
+' ' Text
+'17th' Text
+' ' Text
+'century' Text
+',' Text
+' ' Text
+'and' Text
+' ' Text
+'modern' Text
+' ' Text
+'"' Text
+'haute' Text
+' ' Text
+'couture' Text
+'"' Text
+' ' Text
+'originated' Text
+' ' Text
+'in' Text
+' ' Text
+'Paris' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'1860s' Text
+'.' Text
+' ' Text
+'Today' Text
+',' Text
+' ' Text
+'Paris' Text
+',' Text
+' ' Text
+'along' Text
+' ' Text
+'with' Text
+' ' Text
+'London' Text
+',' Text
+' ' Text
+'Milan' Text
+',' Text
+' ' Text
+'and' Text
+' ' Text
+'New' Text
+' ' Text
+'York' Text
+' ' Text
+'City' Text
+',' Text
+' ' Text
+'is' Text
+' ' Text
+'considered' Text
+' ' Text
+'one' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'world' Text
+"'" Text
+'s' Text
+' ' Text
+'[[' Punctuation
+'fashion capital' Name.Tag
+']]' Punctuation
+'s' Text
+',' Text
+' ' Text
+'and' Text
+' ' Text
+'the' Text
+' ' Text
+'city' Text
+' ' Text
+'is' Text
+' ' Text
+'home' Text
+' ' Text
+'or' Text
+' ' Text
+'headquarters' Text
+' ' Text
+'to' Text
+' ' Text
+'many' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'premier' Text
+' ' Text
+'fashion' Text
+' ' Text
+'houses' Text
+'.' Text
+' ' Text
+'The' Text
+' ' Text
+'expression' Text
+' ' Text
+'[[' Punctuation
+'Haute couture' Name.Tag
+']]' Punctuation
+' ' Text
+'is' Text
+',' Text
+' ' Text
+'in' Text
+' ' Text
+'France' Text
+',' Text
+' ' Text
+'a' Text
+' ' Text
+'legally' Text
+' ' Text
+'protected' Text
+' ' Text
+'name' Text
+',' Text
+' ' Text
+'guaranteeing' Text
+' ' Text
+'certain' Text
+' ' Text
+'quality' Text
+' ' Text
+'standards' Text
+'.' Text
+'\n' Text
+
+'\n' Text
+
+'The' Text
+' ' Text
+'association' Text
+' ' Text
+'of' Text
+' ' Text
+'France' Text
+' ' Text
+'with' Text
+' ' Text
+'fashion' Text
+' ' Text
+'and' Text
+' ' Text
+'style' Text
+' ' Text
+'(' Text
+'{{' Punctuation
+'Lang' Name.Tag
+'-' Name.Tag
+'fr' Name.Tag
+'|' Punctuation
+'link' Name.Label
+'=' Operator
+'no' Text
+'|' Punctuation
+'la' Text
+' ' Text
+'mode' Text
+'}}' Punctuation
+')' Text
+' ' Text
+'dates' Text
+' ' Text
+'largely' Text
+' ' Text
+'to' Text
+' ' Text
+'the' Text
+' ' Text
+'reign' Text
+' ' Text
+'of' Text
+' ' Text
+'[[' Punctuation
+'Louis XIV of France' Name.Tag
+'|' Punctuation
+'Louis' Text
+' ' Text
+'XIV' Text
+']]' Punctuation
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'Kelly' Text
+',' Text
+' ' Text
+'181' Text
+'.' Text
+' ' Text
+'DeJean' Text
+',' Text
+' ' Text
+'chapters' Text
+' ' Text
+'2' Text
+'–' Text
+'4' Text
+'.' Text
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'when' Text
+' ' Text
+'the' Text
+' ' Text
+'luxury' Text
+' ' Text
+'goods' Text
+' ' Text
+'industries' Text
+' ' Text
+'in' Text
+' ' Text
+'France' Text
+' ' Text
+'came' Text
+' ' Text
+'increasingly' Text
+' ' Text
+'under' Text
+' ' Text
+'royal' Text
+' ' Text
+'control' Text
+' ' Text
+'and' Text
+' ' Text
+'the' Text
+' ' Text
+'French' Text
+' ' Text
+'royal' Text
+' ' Text
+'court' Text
+' ' Text
+'became' Text
+',' Text
+' ' Text
+'arguably' Text
+',' Text
+' ' Text
+'the' Text
+' ' Text
+'arbiter' Text
+' ' Text
+'of' Text
+' ' Text
+'taste' Text
+' ' Text
+'and' Text
+' ' Text
+'style' Text
+' ' Text
+'in' Text
+' ' Text
+'Europe' Text
+'.' Text
+' ' Text
+'But' Text
+' ' Text
+'France' Text
+' ' Text
+'renewed' Text
+' ' Text
+'its' Text
+' ' Text
+'dominance' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'high' Text
+' ' Text
+'fashion' Text
+' ' Text
+'(' Text
+'{{' Punctuation
+'Lang' Name.Tag
+'-' Name.Tag
+'fr' Name.Tag
+'|' Punctuation
+'link' Name.Label
+'=' Operator
+'no' Text
+'|' Punctuation
+'couture' Text
+' ' Text
+'{{' Punctuation
+'Noitalic' Name.Tag
+'|' Punctuation
+'or' Text
+'}}' Punctuation
+' ' Text
+'haute' Text
+' ' Text
+'couture' Text
+'}}' Punctuation
+')' Text
+' ' Text
+'industry' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'years' Text
+' ' Text
+'1860' Text
+'–' Text
+'1960' Text
+' ' Text
+'through' Text
+' ' Text
+'the' Text
+' ' Text
+'establishment' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'great' Text
+' ' Text
+'[[' Punctuation
+'couturier' Name.Tag
+']]' Punctuation
+' ' Text
+'houses' Text
+' ' Text
+'such' Text
+' ' Text
+'as' Text
+' ' Text
+'[[' Punctuation
+'Chanel' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'[[' Punctuation
+'Christian Dior S.A.' Name.Tag
+'|' Punctuation
+'Dior' Text
+']]' Punctuation
+',' Text
+' ' Text
+'and' Text
+' ' Text
+'[[' Punctuation
+'Givenchy' Name.Tag
+']]' Punctuation
+'.' Text
+' ' Text
+'The' Text
+' ' Text
+'French' Text
+' ' Text
+'perfume' Text
+' ' Text
+'industry' Text
+' ' Text
+'is' Text
+' ' Text
+'the' Text
+' ' Text
+'world' Text
+' ' Text
+'leader' Text
+' ' Text
+'in' Text
+' ' Text
+'its' Text
+' ' Text
+'sector' Text
+' ' Text
+'and' Text
+' ' Text
+'is' Text
+' ' Text
+'centred' Text
+' ' Text
+'on' Text
+' ' Text
+'the' Text
+' ' Text
+'town' Text
+' ' Text
+'of' Text
+' ' Text
+'[[' Punctuation
+'Grasse' Name.Tag
+']]' Punctuation
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'French' Text
+' ' Text
+'perfume' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'about' Text
+'-' Text
+'france' Text
+'.' Text
+'com' Text
+'/' Text
+'tourism' Text
+'/' Text
+'french' Text
+'-' Text
+'perfume' Text
+'.' Text
+'htm' Text
+' ' Text
+'|' Punctuation
+'publisher' Name.Label
+'=' Operator
+'About' Text
+'-' Text
+'France' Text
+'.' Text
+'com' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'\n' Text
+
+'\n' Text
+
+'In' Text
+' ' Text
+'the' Text
+' ' Text
+'1960s' Text
+',' Text
+' ' Text
+'the' Text
+' ' Text
+'elitist' Text
+' ' Text
+'"' Text
+'Haute' Text
+' ' Text
+'couture' Text
+'"' Text
+' ' Text
+'came' Text
+' ' Text
+'under' Text
+' ' Text
+'criticism' Text
+' ' Text
+'from' Text
+' ' Text
+'France' Text
+"'" Text
+'s' Text
+' ' Text
+'[[' Punctuation
+'May 1968 in France' Name.Tag
+'|' Punctuation
+'youth' Text
+' ' Text
+'culture' Text
+']]' Punctuation
+'.' Text
+' ' Text
+'In' Text
+' ' Text
+'1966' Text
+',' Text
+' ' Text
+'the' Text
+' ' Text
+'designer' Text
+' ' Text
+'[[' Punctuation
+'Yves Saint Laurent (designer)' Name.Tag
+'|' Punctuation
+'Yves' Text
+' ' Text
+'Saint' Text
+' ' Text
+'Laurent' Text
+']]' Punctuation
+' ' Text
+'broke' Text
+' ' Text
+'with' Text
+' ' Text
+'established' Text
+' ' Text
+'Haute' Text
+' ' Text
+'Couture' Text
+' ' Text
+'norms' Text
+' ' Text
+'by' Text
+' ' Text
+'launching' Text
+' ' Text
+'a' Text
+' ' Text
+'[[' Punctuation
+'prêt-à-porter' Name.Tag
+']]' Punctuation
+' ' Text
+'(' Text
+'"' Text
+'ready' Text
+' ' Text
+'to' Text
+' ' Text
+'wear' Text
+'"' Text
+')' Text
+' ' Text
+'line' Text
+' ' Text
+'and' Text
+' ' Text
+'expanding' Text
+' ' Text
+'French' Text
+' ' Text
+'fashion' Text
+' ' Text
+'into' Text
+' ' Text
+'mass' Text
+' ' Text
+'manufacturing' Text
+'.' Text
+' ' Text
+'With' Text
+' ' Text
+'a' Text
+' ' Text
+'greater' Text
+' ' Text
+'focus' Text
+' ' Text
+'on' Text
+' ' Text
+'marketing' Text
+' ' Text
+'and' Text
+' ' Text
+'manufacturing' Text
+',' Text
+' ' Text
+'new' Text
+' ' Text
+'trends' Text
+' ' Text
+'were' Text
+' ' Text
+'established' Text
+' ' Text
+'by' Text
+' ' Text
+'[[' Punctuation
+'Sonia Rykiel' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'[[' Punctuation
+'Thierry Mugler' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'[[' Punctuation
+'Claude Montana' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'[[' Punctuation
+'Jean-Paul Gaultier' Name.Tag
+']]' Punctuation
+' ' Text
+'and' Text
+' ' Text
+'[[' Punctuation
+'Christian Lacroix' Name.Tag
+']]' Punctuation
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'1970s' Text
+' ' Text
+'and' Text
+' ' Text
+'1980s' Text
+'.' Text
+' ' Text
+'The' Text
+' ' Text
+'1990s' Text
+' ' Text
+'saw' Text
+' ' Text
+'a' Text
+' ' Text
+'conglomeration' Text
+' ' Text
+'of' Text
+' ' Text
+'many' Text
+' ' Text
+'French' Text
+' ' Text
+'couture' Text
+' ' Text
+'houses' Text
+' ' Text
+'under' Text
+' ' Text
+'luxury' Text
+' ' Text
+'giants' Text
+' ' Text
+'and' Text
+' ' Text
+'multinationals' Text
+' ' Text
+'such' Text
+' ' Text
+'as' Text
+' ' Text
+'[[' Punctuation
+'LVMH' Name.Tag
+']]' Punctuation
+'.' Text
+'\n' Text
+
+'\n' Text
+
+'According' Text
+' ' Text
+'to' Text
+' ' Text
+'2017' Text
+' ' Text
+'data' Text
+' ' Text
+'compiled' Text
+' ' Text
+'by' Text
+' ' Text
+'[[' Punctuation
+'Deloitte' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'[[' Punctuation
+'Louis Vuitton Moet Hennessey' Name.Tag
+']]' Punctuation
+' ' Text
+'(' Text
+'LVMH' Text
+')' Text
+',' Text
+' ' Text
+'a' Text
+' ' Text
+'French' Text
+' ' Text
+'brand' Text
+',' Text
+' ' Text
+'is' Text
+' ' Text
+'the' Text
+' ' Text
+'largest' Text
+' ' Text
+'luxury' Text
+' ' Text
+'company' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'world' Text
+' ' Text
+'by' Text
+' ' Text
+'sales' Text
+',' Text
+' ' Text
+'selling' Text
+' ' Text
+'more' Text
+' ' Text
+'than' Text
+' ' Text
+'twice' Text
+' ' Text
+'the' Text
+' ' Text
+'amount' Text
+' ' Text
+'of' Text
+' ' Text
+'its' Text
+' ' Text
+'nearest' Text
+' ' Text
+'competitor' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+' ' Text.Whitespace
+'name' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+'mode' Literal.String.Double
+'"' Literal.String.Double
+'>' Punctuation
+'[' Punctuation
+'https://www2.deloitte.com/content/dam/Deloitte/ar/Documents/Consumer_and_Industrial_Products/Global-Powers-of-Luxury-Goods-abril-2019.pdf' Name.Label
+' ' Text.Whitespace
+'Global' Text
+' ' Text
+'Powers' Text
+' ' Text
+'of' Text
+' ' Text
+'Luxury' Text
+' ' Text
+'Goods' Text
+' ' Text
+'2019' Text
+':' Text
+' ' Text
+'Bridging' Text
+' ' Text
+'the' Text
+' ' Text
+'gap' Text
+' ' Text
+'between' Text
+' ' Text
+'the' Text
+' ' Text
+'old' Text
+' ' Text
+'and' Text
+' ' Text
+'the' Text
+' ' Text
+'new' Text
+']' Punctuation
+',' Text
+' ' Text
+'[[' Punctuation
+'Deloitte' Name.Tag
+']]' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'Moreover' Text
+',' Text
+' ' Text
+'France' Text
+' ' Text
+'also' Text
+' ' Text
+'possesses' Text
+' ' Text
+'3' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'top' Text
+' ' Text
+'10' Text
+' ' Text
+'luxury' Text
+' ' Text
+'goods' Text
+' ' Text
+'companies' Text
+' ' Text
+'by' Text
+' ' Text
+'sales' Text
+' ' Text
+'(' Text
+'[[' Punctuation
+'LVMH' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'[[' Punctuation
+'Kering SA' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'[[' Punctuation
+"L'Oréal" Name.Tag
+']]' Punctuation
+')' Text
+',' Text
+' ' Text
+'more' Text
+' ' Text
+'than' Text
+' ' Text
+'any' Text
+' ' Text
+'other' Text
+' ' Text
+'country' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'world' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+' ' Text.Whitespace
+'name' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+'mode' Literal.String.Double
+'"' Literal.String.Double
+' ' Text.Whitespace
+'/>' Punctuation
+'\n' Text
+
+'\n' Text
+
+'===' Generic.Subheading
+'Media' Generic.Subheading
+'===' Generic.Subheading
+'\n' Text.Whitespace
+
+'{{' Punctuation
+'Main' Name.Tag
+'|' Punctuation
+'Telecommunications' Text
+' ' Text
+'in' Text
+' ' Text
+'France' Text
+'}}' Punctuation
+'\n' Text
+
+'[[' Punctuation
+'File' Name.Namespace
+':' Punctuation
+'Siège_Figaro,_14_boulevard_Haussmann,_Paris_9e.jpg' Name.Tag
+'|' Punctuation
+'thumb' Text
+'|' Punctuation
+'left' Text
+'|' Punctuation
+'upright' Text
+'|' Punctuation
+"''" Generic.Emph
+'[[' Punctuation
+'Le Figaro' Name.Tag
+']]' Punctuation
+"''" Generic.Emph
+' ' Text
+'was' Text
+' ' Text
+'founded' Text
+' ' Text
+'in' Text
+' ' Text
+'1826' Text
+' ' Text
+'and' Text
+' ' Text
+'it' Text
+' ' Text
+'is' Text
+' ' Text
+'still' Text
+' ' Text
+'considered' Text
+' ' Text
+'a' Text
+' ' Text
+'[[' Punctuation
+'newspaper of record' Name.Tag
+']]' Punctuation
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'encyclopedia' Name.Tag
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Le' Text
+' ' Text
+'Figaro' Text
+' ' Text
+'|' Punctuation
+'encyclopedia' Name.Label
+'=' Operator
+'Encyclopædia' Text
+' ' Text
+'Britannica' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'britannica' Text
+'.' Text
+'com' Text
+'/' Text
+'EBchecked' Text
+'/' Text
+'topic' Text
+'/' Text
+'206556' Text
+'/' Text
+'Le' Text
+'-' Text
+'Figaro' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+']]' Punctuation
+'\n' Text
+
+'\n' Text
+
+'In' Text
+' ' Text
+'2021' Text
+',' Text
+' ' Text
+'regional' Text
+' ' Text
+'daily' Text
+' ' Text
+'newspapers' Text
+' ' Text
+'(' Text
+'like' Text
+' ' Text
+"''" Generic.Emph
+'[[' Punctuation
+'Ouest-France' Name.Tag
+']]' Punctuation
+"''" Generic.Emph
+',' Text
+' ' Text
+"''" Generic.Emph
+'[[' Punctuation
+'Sud Ouest (newspaper)' Name.Tag
+'|' Punctuation
+'Sud' Text
+' ' Text
+'Ouest' Text
+']]' Punctuation
+"''" Generic.Emph
+',' Text
+' ' Text
+"''" Generic.Emph
+'[[' Punctuation
+'La Voix du Nord (daily)' Name.Tag
+'|' Punctuation
+'La' Text
+' ' Text
+'Voix' Text
+' ' Text
+'du' Text
+' ' Text
+'Nord' Text
+']]' Punctuation
+"''" Generic.Emph
+',' Text
+' ' Text
+"''" Generic.Emph
+'[[' Punctuation
+'Dauphiné Libéré' Name.Tag
+']]' Punctuation
+"''" Generic.Emph
+',' Text
+' ' Text
+"''" Generic.Emph
+'[[' Punctuation
+'Le Télégramme' Name.Tag
+']]' Punctuation
+"''" Generic.Emph
+',' Text
+' ' Text
+'and' Text
+' ' Text
+"''" Generic.Emph
+'[[' Punctuation
+'Le Progrès' Name.Tag
+']]' Punctuation
+"''" Generic.Emph
+')' Text
+' ' Text
+'more' Text
+' ' Text
+'than' Text
+' ' Text
+'doubled' Text
+' ' Text
+'the' Text
+' ' Text
+'sales' Text
+' ' Text
+'of' Text
+' ' Text
+'national' Text
+' ' Text
+'newspapers' Text
+' ' Text
+'(' Text
+'like' Text
+' ' Text
+"''" Generic.Emph
+'[[' Punctuation
+'Le Monde' Name.Tag
+']]' Punctuation
+"''" Generic.Emph
+',' Text
+' ' Text
+"''" Generic.Emph
+'[[' Punctuation
+'Le Figaro' Name.Tag
+']]' Punctuation
+"''" Generic.Emph
+',' Text
+' ' Text
+"''" Generic.Emph
+'[[' Punctuation
+"L'Équipe" Name.Tag
+']]' Punctuation
+"''" Generic.Emph
+' ' Text
+'(' Text
+'sports' Text
+')' Text
+',' Text
+' ' Text
+"''" Generic.Emph
+'[[' Punctuation
+'Le Parisien' Name.Tag
+']]' Punctuation
+"''" Generic.Emph
+',' Text
+' ' Text
+'and' Text
+' ' Text
+"''" Generic.Emph
+'[[' Punctuation
+'Les Echos (France)' Name.Tag
+'|' Punctuation
+'Les' Text
+' ' Text
+'Echos' Text
+']]' Punctuation
+"''" Generic.Emph
+' ' Text
+'(' Text
+'finance' Text
+')' Text
+')' Text
+'.' Text
+' ' Text
+'Free' Text
+' ' Text
+'dailies' Text
+',' Text
+' ' Text
+'distributed' Text
+' ' Text
+'in' Text
+' ' Text
+'metropolitan' Text
+' ' Text
+'centers' Text
+',' Text
+' ' Text
+'continue' Text
+' ' Text
+'to' Text
+' ' Text
+'increase' Text
+' ' Text
+'their' Text
+' ' Text
+'market' Text
+' ' Text
+'share' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+' website ' Name.Label
+'=' Operator
+' ' Text
+'acpm' Text
+'.' Text
+'fr' Text
+' ' Text
+'|' Punctuation
+' date ' Name.Label
+'=' Operator
+' ' Text
+'2022' Text
+' ' Text
+'|' Punctuation
+' title ' Name.Label
+'=' Operator
+' ' Text
+'L' Text
+"'" Text
+'observatoire' Text
+' ' Text
+'de' Text
+' ' Text
+'la' Text
+' ' Text
+'presse' Text
+' ' Text
+'et' Text
+' ' Text
+'des' Text
+' ' Text
+'médias' Text
+' ' Text
+'de' Text
+' ' Text
+'L' Text
+"'" Text
+'APCM' Text
+' ' Text
+'2022' Text
+' ' Text
+'|' Punctuation
+' url ' Name.Label
+'=' Operator
+' ' Text
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'acpm' Text
+'.' Text
+'fr' Text
+'/' Text
+'Media' Text
+'/' Text
+'Files' Text
+'/' Text
+'Plaquette' Text
+'-' Text
+'Observatoire' Text
+'-' Text
+'2022' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'\n' Text
+
+'\n' Text
+
+'The' Text
+' ' Text
+'sector' Text
+' ' Text
+'of' Text
+' ' Text
+'weekly' Text
+' ' Text
+'magazines' Text
+' ' Text
+'includes' Text
+' ' Text
+'more' Text
+' ' Text
+'than' Text
+' ' Text
+'400' Text
+' ' Text
+'specialised' Text
+' ' Text
+'weekly' Text
+' ' Text
+'magazines' Text
+' ' Text
+'published' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'country' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'In' Name.Tag
+' ' Name.Tag
+'lang' Name.Tag
+'|' Punctuation
+'fr' Text
+'}}' Punctuation
+' ' Text
+'Observatoire' Text
+' ' Text
+'de' Text
+' ' Text
+'la' Text
+' ' Text
+'Presse' Text
+',' Text
+' ' Text
+'[' Punctuation
+'http://observatoire.ojd.com/report/visu/obs/20/do/GP_PMAG' Name.Label
+' ' Text.Whitespace
+'Presse' Text
+' ' Text
+'Magazine' Text
+'&nbsp;' Name.Entity
+'–' Text
+' ' Text
+'Synthèse' Text
+']' Punctuation
+' ' Text
+'{{' Punctuation
+'Webarchive' Name.Tag
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'web' Text
+'.' Text
+'archive' Text
+'.' Text
+'org' Text
+'/' Text
+'web' Text
+'/' Text
+'20100929204536' Text
+'/' Text
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'observatoire' Text
+'.' Text
+'ojd' Text
+'.' Text
+'com' Text
+'/' Text
+'report' Text
+'/' Text
+'visu' Text
+'/' Text
+'obs' Text
+'/' Text
+'20' Text
+'/' Text
+'do' Text
+'/' Text
+'GP_PMAG' Text
+'|' Punctuation
+'date' Name.Label
+'=' Operator
+'29' Text
+' ' Text
+'September' Text
+' ' Text
+'2010' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'\n' Text
+
+'\n' Text
+
+'The' Text
+' ' Text
+'most' Text
+' ' Text
+'influential' Text
+' ' Text
+'news' Text
+' ' Text
+'magazines' Text
+' ' Text
+'are' Text
+' ' Text
+'the' Text
+' ' Text
+'left' Text
+'-' Text
+'wing' Text
+' ' Text
+"''" Generic.Emph
+'[[' Punctuation
+"L'Obs" Name.Tag
+'|' Punctuation
+'Le' Text
+' ' Text
+'Nouvel' Text
+' ' Text
+'Observateur' Text
+']]' Punctuation
+"''" Generic.Emph
+',' Text
+' ' Text
+'centrist' Text
+' ' Text
+"''" Generic.Emph
+'[[' Punctuation
+"L'Express (France)" Name.Tag
+'|' Punctuation
+'L' Text
+"'" Text
+'Express' Text
+']]' Punctuation
+"''" Generic.Emph
+' ' Text
+'and' Text
+' ' Text
+'right' Text
+'-' Text
+'wing' Text
+' ' Text
+"''" Generic.Emph
+'[[' Punctuation
+'Le Point' Name.Tag
+']]' Punctuation
+"''" Generic.Emph
+' ' Text
+'(' Text
+'in' Text
+' ' Text
+'2009' Text
+' ' Text
+'more' Text
+' ' Text
+'than' Text
+' ' Text
+'400' Text
+',' Text
+'000' Text
+' ' Text
+'copies' Text
+')' Text
+',' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'In' Name.Tag
+' ' Name.Tag
+'lang' Name.Tag
+'|' Punctuation
+'fr' Text
+'}}' Punctuation
+' ' Text
+'Observatoire' Text
+' ' Text
+'de' Text
+' ' Text
+'la' Text
+' ' Text
+'Presse' Text
+',' Text
+' ' Text
+'[' Punctuation
+'http://observatoire.ojd.com/report/visu/obs/20/do/GP_NEWS' Name.Label
+' ' Text.Whitespace
+'Presse' Text
+' ' Text
+'News' Text
+']' Punctuation
+' ' Text
+'{{' Punctuation
+'Webarchive' Name.Tag
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'web' Text
+'.' Text
+'archive' Text
+'.' Text
+'org' Text
+'/' Text
+'web' Text
+'/' Text
+'20100929204512' Text
+'/' Text
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'observatoire' Text
+'.' Text
+'ojd' Text
+'.' Text
+'com' Text
+'/' Text
+'report' Text
+'/' Text
+'visu' Text
+'/' Text
+'obs' Text
+'/' Text
+'20' Text
+'/' Text
+'do' Text
+'/' Text
+'GP_NEWS' Text
+'|' Punctuation
+'date' Name.Label
+'=' Operator
+'29' Text
+' ' Text
+'September' Text
+' ' Text
+'2010' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'but' Text
+' ' Text
+'the' Text
+' ' Text
+'highest' Text
+' ' Text
+'circulation' Text
+' ' Text
+'numbers' Text
+' ' Text
+'for' Text
+' ' Text
+'weeklies' Text
+' ' Text
+'are' Text
+' ' Text
+'attained' Text
+' ' Text
+'by' Text
+' ' Text
+'TV' Text
+' ' Text
+'magazines' Text
+' ' Text
+'and' Text
+' ' Text
+'by' Text
+' ' Text
+'women' Text
+"'" Text
+'s' Text
+' ' Text
+'magazines' Text
+',' Text
+' ' Text
+'among' Text
+' ' Text
+'them' Text
+' ' Text
+"''" Generic.Emph
+'[[' Punctuation
+'Marie Claire' Name.Tag
+']]' Punctuation
+"''" Generic.Emph
+' ' Text
+'and' Text
+' ' Text
+"''" Generic.Emph
+'[[' Punctuation
+'ELLE' Name.Tag
+']]' Punctuation
+"''" Generic.Emph
+',' Text
+' ' Text
+'which' Text
+' ' Text
+'have' Text
+' ' Text
+'foreign' Text
+' ' Text
+'versions' Text
+'.' Text
+' ' Text
+'Influential' Text
+' ' Text
+'weeklies' Text
+' ' Text
+'also' Text
+' ' Text
+'include' Text
+' ' Text
+'investigative' Text
+' ' Text
+'and' Text
+' ' Text
+'satirical' Text
+' ' Text
+'papers' Text
+' ' Text
+"''" Generic.Emph
+'[[' Punctuation
+'Le Canard Enchaîné' Name.Tag
+']]' Punctuation
+"''" Generic.Emph
+' ' Text
+'and' Text
+' ' Text
+"''" Generic.Emph
+'[[' Punctuation
+'Charlie Hebdo' Name.Tag
+']]' Punctuation
+"''" Generic.Emph
+',' Text
+' ' Text
+'as' Text
+' ' Text
+'well' Text
+' ' Text
+'as' Text
+' ' Text
+"''" Generic.Emph
+'[[' Punctuation
+'Paris Match' Name.Tag
+']]' Punctuation
+"''" Generic.Emph
+'.' Text
+' ' Text
+'As' Text
+' ' Text
+'in' Text
+' ' Text
+'most' Text
+' ' Text
+'industrialised' Text
+' ' Text
+'nations' Text
+',' Text
+' ' Text
+'the' Text
+' ' Text
+'print' Text
+' ' Text
+'media' Text
+' ' Text
+'have' Text
+' ' Text
+'been' Text
+' ' Text
+'affected' Text
+' ' Text
+'by' Text
+' ' Text
+'a' Text
+' ' Text
+'[[' Punctuation
+'Newspaper crisis' Name.Tag
+'|' Punctuation
+'severe' Text
+' ' Text
+'crisis' Text
+']]' Punctuation
+' ' Text
+'with' Text
+' ' Text
+'the' Text
+' ' Text
+'rise' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'internet' Text
+'.' Text
+' ' Text
+'In' Text
+' ' Text
+'2008' Text
+',' Text
+' ' Text
+'the' Text
+' ' Text
+'government' Text
+' ' Text
+'launched' Text
+' ' Text
+'a' Text
+' ' Text
+'major' Text
+' ' Text
+'initiative' Text
+' ' Text
+'to' Text
+' ' Text
+'help' Text
+' ' Text
+'the' Text
+' ' Text
+'sector' Text
+' ' Text
+'reform' Text
+' ' Text
+'and' Text
+' ' Text
+'become' Text
+' ' Text
+'financially' Text
+' ' Text
+'independent' Text
+',' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+"''" Generic.Emph
+'[[' Punctuation
+'The Daily Telegraph' Name.Tag
+'|' Punctuation
+'The' Text
+' ' Text
+'Telegraph' Text
+']]' Punctuation
+"''" Generic.Emph
+',' Text
+' ' Text
+'[' Punctuation
+'https://www.telegraph.co.uk/news/worldnews/europe/france/3125110/Nicolas-Sarkozy-French-media-faces-death-without-reform.html' Name.Label
+' ' Text.Whitespace
+'Nicolas' Text
+' ' Text
+'Sarkozy' Text
+':' Text
+' ' Text
+'French' Text
+' ' Text
+'media' Text
+' ' Text
+'faces' Text
+' ' Text
+"'" Text
+'death' Text
+"'" Text
+' ' Text
+'without' Text
+' ' Text
+'reform' Text
+']' Punctuation
+' ' Text
+'2' Text
+' ' Text
+'October' Text
+' ' Text
+'2008' Text
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'French' Text
+' ' Text
+'government' Text
+' ' Text
+'portal' Text
+',' Text
+' ' Text
+'[' Punctuation
+'http://www.gouvernement.fr/gouvernement/lancement-des-etats-generaux-de-la-presse' Name.Label
+' ' Text.Whitespace
+'Lancement' Text
+' ' Text
+'des' Text
+' ' Text
+'états' Text
+' ' Text
+'généraux' Text
+' ' Text
+'de' Text
+' ' Text
+'la' Text
+' ' Text
+'presse' Text
+']' Punctuation
+' ' Text
+'{{' Punctuation
+'Webarchive' Name.Tag
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'web' Text
+'.' Text
+'archive' Text
+'.' Text
+'org' Text
+'/' Text
+'web' Text
+'/' Text
+'20100625023755' Text
+'/' Text
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'gouvernement' Text
+'.' Text
+'fr' Text
+'/' Text
+'gouvernement' Text
+'/' Text
+'lancement' Text
+'-' Text
+'des' Text
+'-' Text
+'etats' Text
+'-' Text
+'generaux' Text
+'-' Text
+'de' Text
+'-' Text
+'la' Text
+'-' Text
+'presse' Text
+'|' Punctuation
+'date' Name.Label
+'=' Operator
+'25' Text
+' ' Text
+'June' Text
+' ' Text
+'2010' Text
+'}}' Punctuation
+' ' Text
+'2' Text
+' ' Text
+'October' Text
+' ' Text
+'2008' Text
+' ' Text
+'[' Text
+'Launching' Text
+' ' Text
+'of' Text
+' ' Text
+'General' Text
+' ' Text
+'State' Text
+' ' Text
+'of' Text
+' ' Text
+'written' Text
+' ' Text
+'media' Text
+']' Text
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'but' Text
+' ' Text
+'in' Text
+' ' Text
+'2009' Text
+' ' Text
+'it' Text
+' ' Text
+'had' Text
+' ' Text
+'to' Text
+' ' Text
+'give' Text
+' ' Text
+'600' Text
+',' Text
+'000' Text
+' ' Text
+'euros' Text
+' ' Text
+'to' Text
+' ' Text
+'help' Text
+' ' Text
+'the' Text
+' ' Text
+'print' Text
+' ' Text
+'media' Text
+' ' Text
+'cope' Text
+' ' Text
+'with' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Global financial crisis of 2008–2009' Name.Tag
+'|' Punctuation
+'economic' Text
+' ' Text
+'crisis' Text
+']]' Punctuation
+',' Text
+' ' Text
+'in' Text
+' ' Text
+'addition' Text
+' ' Text
+'to' Text
+' ' Text
+'existing' Text
+' ' Text
+'subsidies' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'news' Name.Tag
+' ' Text
+'|' Punctuation
+'last' Name.Label
+'=' Operator
+'Angelique' Text
+' ' Text
+'Chrisafis' Text
+' ' Text
+'in' Text
+' ' Text
+'Paris' Text
+' ' Text
+'|' Punctuation
+'date' Name.Label
+'=' Operator
+'23' Text
+' ' Text
+'January' Text
+' ' Text
+'2009' Text
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Sarkozy' Text
+' ' Text
+'pledges' Text
+' ' Text
+'€' Text
+'600m' Text
+' ' Text
+'to' Text
+' ' Text
+'newspapers' Text
+' ' Text
+'|' Punctuation
+'work' Name.Label
+'=' Operator
+'The' Text
+' ' Text
+'Guardian' Text
+' ' Text
+'|' Punctuation
+'location' Name.Label
+'=' Operator
+'London' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'theguardian' Text
+'.' Text
+'com' Text
+'/' Text
+'media' Text
+'/' Text
+'2009' Text
+'/' Text
+'jan' Text
+'/' Text
+'23' Text
+'/' Text
+'sarkozy' Text
+'-' Text
+'pledges' Text
+'-' Text
+'state' Text
+'-' Text
+'aid' Text
+'-' Text
+'to' Text
+'-' Text
+'newspapers' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'21' Text
+' ' Text
+'June' Text
+' ' Text
+'2012' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'\n' Text
+
+'[[' Punctuation
+'File' Name.Namespace
+':' Punctuation
+"Siège de l'AFP 13 place de la Bourse Paris.jpg" Name.Tag
+'|' Punctuation
+'thumb' Text
+'|' Punctuation
+'The' Text
+' ' Text
+'Parisian' Text
+' ' Text
+'headquarters' Text
+' ' Text
+'of' Text
+' ' Text
+'[[' Punctuation
+'Agence France-Presse' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'one' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'world' Text
+"'" Text
+'s' Text
+' ' Text
+'oldest' Text
+' ' Text
+'and' Text
+' ' Text
+'leading' Text
+' ' Text
+'[[' Punctuation
+'News agency' Name.Tag
+'|' Punctuation
+'news' Text
+' ' Text
+'agencies' Text
+']]' Punctuation
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'[' Punctuation
+'https://www.britannica.com/topic/Agence-France-Presse' Name.Label
+' ' Text.Whitespace
+'Agence' Text
+' ' Text
+'France' Text
+'-' Text
+'Presse' Text
+']' Punctuation
+',' Text
+' ' Text
+"''" Generic.Emph
+'[[' Punctuation
+'Encyclopædia Britannica' Name.Tag
+']]' Punctuation
+"''" Generic.Emph
+'.' Text
+' ' Text
+'Retrieved' Text
+' ' Text
+'11' Text
+' ' Text
+'November' Text
+' ' Text
+'2018' Text
+'.' Text
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+']]' Punctuation
+'\n' Text
+
+'\n' Text
+
+'In' Text
+' ' Text
+'1974' Text
+',' Text
+' ' Text
+'after' Text
+' ' Text
+'years' Text
+' ' Text
+'of' Text
+' ' Text
+'centralised' Text
+' ' Text
+'monopoly' Text
+' ' Text
+'on' Text
+' ' Text
+'radio' Text
+' ' Text
+'and' Text
+' ' Text
+'television' Text
+',' Text
+' ' Text
+'the' Text
+' ' Text
+'governmental' Text
+' ' Text
+'agency' Text
+' ' Text
+'[[' Punctuation
+'ORTF' Name.Tag
+']]' Punctuation
+' ' Text
+'was' Text
+' ' Text
+'split' Text
+' ' Text
+'into' Text
+' ' Text
+'several' Text
+' ' Text
+'national' Text
+' ' Text
+'institutions' Text
+',' Text
+' ' Text
+'but' Text
+' ' Text
+'the' Text
+' ' Text
+'three' Text
+' ' Text
+'already' Text
+'-' Text
+'existing' Text
+' ' Text
+'TV' Text
+' ' Text
+'channels' Text
+' ' Text
+'and' Text
+' ' Text
+'four' Text
+' ' Text
+'national' Text
+' ' Text
+'radio' Text
+' ' Text
+'stations' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'Radio' Text
+' ' Text
+'France' Text
+',' Text
+' ' Text
+'"' Text
+'L' Text
+"'" Text
+'entreprise' Text
+'"' Text
+',' Text
+' ' Text
+'[' Punctuation
+'https://web.archive.org/web/20110722004341/http://www.radiofrance.fr/lentreprise/reperes/statuts' Name.Label
+' ' Text.Whitespace
+'Repères' Text
+']' Punctuation
+'.' Text
+' ' Text
+'Landmarks' Text
+' ' Text
+'of' Text
+' ' Text
+'Radio' Text
+' ' Text
+'France' Text
+' ' Text
+'company' Text
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'<' Punctuation
+'ref' Name.Tag
+' ' Text.Whitespace
+'name' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+'mediapol' Literal.String.Double
+'"' Literal.String.Double
+'>' Punctuation
+'{{' Punctuation
+'In' Name.Tag
+' ' Name.Tag
+'lang' Name.Tag
+'|' Punctuation
+'fr' Text
+'}}' Punctuation
+' ' Text
+'Vie' Text
+' ' Text
+'Publique' Text
+',' Text
+' ' Text
+'[' Punctuation
+'http://www.vie-publique.fr/politiques-publiques/politique-audiovisuel/chronologie' Name.Label
+' ' Text.Whitespace
+'Chronologie' Text
+' ' Text
+'de' Text
+' ' Text
+'la' Text
+' ' Text
+'politique' Text
+' ' Text
+'de' Text
+' ' Text
+'l' Text
+"'" Text
+'audiovisuel' Text
+']' Punctuation
+' ' Text
+'{{' Punctuation
+'Webarchive' Name.Tag
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'web' Text
+'.' Text
+'archive' Text
+'.' Text
+'org' Text
+'/' Text
+'web' Text
+'/' Text
+'20110513064756' Text
+'/' Text
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'vie' Text
+'-' Text
+'publique' Text
+'.' Text
+'fr' Text
+'/' Text
+'politiques' Text
+'-' Text
+'publiques' Text
+'/' Text
+'politique' Text
+'-' Text
+'audiovisuel' Text
+'/' Text
+'chronologie' Text
+'/' Text
+'|' Punctuation
+'date' Name.Label
+'=' Operator
+'13' Text
+' ' Text
+'May' Text
+' ' Text
+'2011' Text
+'}}' Punctuation
+' ' Text
+'20' Text
+' ' Text
+'August' Text
+' ' Text
+'2004' Text
+' ' Text
+'[' Text
+'Chronology' Text
+' ' Text
+'of' Text
+' ' Text
+'policy' Text
+' ' Text
+'for' Text
+' ' Text
+'audiovisual' Text
+']' Text
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'remained' Text
+' ' Text
+'under' Text
+' ' Text
+'state' Text
+' ' Text
+'control' Text
+'.' Text
+' ' Text
+'It' Text
+' ' Text
+'was' Text
+' ' Text
+'only' Text
+' ' Text
+'in' Text
+' ' Text
+'1981' Text
+' ' Text
+'that' Text
+' ' Text
+'the' Text
+' ' Text
+'government' Text
+' ' Text
+'allowed' Text
+' ' Text
+'free' Text
+' ' Text
+'broadcasting' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'territory' Text
+',' Text
+' ' Text
+'ending' Text
+' ' Text
+'the' Text
+' ' Text
+'state' Text
+' ' Text
+'monopoly' Text
+' ' Text
+'on' Text
+' ' Text
+'radio' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+' ' Text.Whitespace
+'name' Name.Attribute
+'=' Operator
+'mediapol' Literal.String
+'/>' Punctuation
+' ' Text
+'French' Text
+' ' Text
+'television' Text
+' ' Text
+'was' Text
+' ' Text
+'partly' Text
+' ' Text
+'liberalised' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'next' Text
+' ' Text
+'two' Text
+'-' Text
+'decade' Text
+' ' Text
+'with' Text
+' ' Text
+'the' Text
+' ' Text
+'creation' Text
+' ' Text
+'of' Text
+' ' Text
+'several' Text
+' ' Text
+'commercial' Text
+' ' Text
+'channels' Text
+',' Text
+' ' Text
+'mainly' Text
+' ' Text
+'thanks' Text
+' ' Text
+'to' Text
+' ' Text
+'cable' Text
+' ' Text
+'and' Text
+' ' Text
+'satellite' Text
+' ' Text
+'television' Text
+'.' Text
+' ' Text
+'In' Text
+' ' Text
+'2005' Text
+' ' Text
+'the' Text
+' ' Text
+'national' Text
+' ' Text
+'service' Text
+' ' Text
+'[[' Punctuation
+'Télévision Numérique Terrestre' Name.Tag
+']]' Punctuation
+' ' Text
+'introduced' Text
+' ' Text
+'digital' Text
+' ' Text
+'television' Text
+' ' Text
+'all' Text
+' ' Text
+'over' Text
+' ' Text
+'the' Text
+' ' Text
+'territory' Text
+',' Text
+' ' Text
+'allowing' Text
+' ' Text
+'the' Text
+' ' Text
+'creation' Text
+' ' Text
+'of' Text
+' ' Text
+'other' Text
+' ' Text
+'channels' Text
+'.' Text
+'\n' Text
+
+'\n' Text
+
+'The' Text
+' ' Text
+'four' Text
+' ' Text
+'existing' Text
+' ' Text
+'national' Text
+' ' Text
+'channels' Text
+' ' Text
+'are' Text
+' ' Text
+'owned' Text
+' ' Text
+'by' Text
+' ' Text
+'the' Text
+' ' Text
+'state' Text
+'-' Text
+'owned' Text
+' ' Text
+'consortium' Text
+' ' Text
+'[[' Punctuation
+'France Télévisions' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'funded' Text
+' ' Text
+'by' Text
+' ' Text
+'advertising' Text
+' ' Text
+'revenue' Text
+' ' Text
+'and' Text
+' ' Text
+'TV' Text
+' ' Text
+'licence' Text
+' ' Text
+'fees' Text
+'.' Text
+' ' Text
+'Public' Text
+' ' Text
+'broadcasting' Text
+' ' Text
+'group' Text
+' ' Text
+'[[' Punctuation
+'Radio France' Name.Tag
+']]' Punctuation
+' ' Text
+'runs' Text
+' ' Text
+'five' Text
+' ' Text
+'national' Text
+' ' Text
+'radio' Text
+' ' Text
+'stations' Text
+'.' Text
+' ' Text
+'Among' Text
+' ' Text
+'these' Text
+' ' Text
+'public' Text
+' ' Text
+'media' Text
+' ' Text
+'are' Text
+' ' Text
+'[[' Punctuation
+'Radio France Internationale' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'which' Text
+' ' Text
+'broadcasts' Text
+' ' Text
+'programmes' Text
+' ' Text
+'in' Text
+' ' Text
+'French' Text
+' ' Text
+'all' Text
+' ' Text
+'over' Text
+' ' Text
+'the' Text
+' ' Text
+'world' Text
+',' Text
+' ' Text
+'as' Text
+' ' Text
+'well' Text
+' ' Text
+'as' Text
+' ' Text
+'Franco' Text
+'-' Text
+'German' Text
+' ' Text
+'TV' Text
+' ' Text
+'channel' Text
+' ' Text
+'[[' Punctuation
+'TV5 Monde' Name.Tag
+']]' Punctuation
+'.' Text
+' ' Text
+'In' Text
+' ' Text
+'2006' Text
+',' Text
+' ' Text
+'the' Text
+' ' Text
+'government' Text
+' ' Text
+'created' Text
+' ' Text
+'the' Text
+' ' Text
+'global' Text
+' ' Text
+'news' Text
+' ' Text
+'channel' Text
+' ' Text
+'[[' Punctuation
+'France 24' Name.Tag
+']]' Punctuation
+'.' Text
+'\n' Text
+
+'\n' Text
+
+'===' Generic.Subheading
+'Society' Generic.Subheading
+'===' Generic.Subheading
+'\n' Text.Whitespace
+
+'{{' Punctuation
+'See' Name.Tag
+' ' Name.Tag
+'also' Name.Tag
+'|' Punctuation
+'Human' Text
+' ' Text
+'rights' Text
+' ' Text
+'in' Text
+' ' Text
+'France' Text
+'|' Punctuation
+'LGBT' Text
+' ' Text
+'rights' Text
+' ' Text
+'in' Text
+' ' Text
+'France' Text
+'}}' Punctuation
+'\n' Text
+
+'[[' Punctuation
+'File' Name.Namespace
+':' Punctuation
+'Germaine Tillion, Geneviève de Gaulle-Anthonioz, Pierre Brossolette et Jean Zay rentrent au Panthéon 15.jpg' Name.Tag
+'|' Punctuation
+'thumb' Text
+'|' Punctuation
+'left' Text
+'|' Punctuation
+'Admittance' Text
+' ' Text
+'of' Text
+' ' Text
+'[[' Punctuation
+'Germaine Tillion' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'[[' Punctuation
+'Geneviève de Gaulle-Anthonioz' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'[[' Punctuation
+'Pierre Brossolette' Name.Tag
+']]' Punctuation
+' ' Text
+'and' Text
+' ' Text
+'[[' Punctuation
+'Jean Zay' Name.Tag
+']]' Punctuation
+' ' Text
+'at' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Panthéon' Name.Tag
+'|' Punctuation
+'Pantheon' Text
+']]' Punctuation
+',' Text
+' ' Text
+'a' Text
+' ' Text
+'[[' Punctuation
+'mausoleum' Name.Tag
+']]' Punctuation
+' ' Text
+'for' Text
+' ' Text
+'distinguished' Text
+' ' Text
+'French' Text
+' ' Text
+'people' Text
+',' Text
+' ' Text
+'in' Text
+' ' Text
+'2015' Text
+']]' Punctuation
+'\n' Text
+
+'According' Text
+' ' Text
+'to' Text
+' ' Text
+'a' Text
+' ' Text
+'[[' Punctuation
+'BBC' Name.Tag
+']]' Punctuation
+' ' Text
+'poll' Text
+' ' Text
+'in' Text
+' ' Text
+'2010' Text
+',' Text
+' ' Text
+'based' Text
+' ' Text
+'on' Text
+' ' Text
+'29' Text
+',' Text
+'977' Text
+' ' Text
+'responses' Text
+' ' Text
+'in' Text
+' ' Text
+'28' Text
+' ' Text
+'countries' Text
+',' Text
+' ' Text
+'France' Text
+' ' Text
+'is' Text
+' ' Text
+'globally' Text
+' ' Text
+'seen' Text
+' ' Text
+'as' Text
+' ' Text
+'a' Text
+' ' Text
+'positive' Text
+' ' Text
+'influence' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'world' Text
+"'" Text
+'s' Text
+' ' Text
+'affairs' Text
+':' Text
+' ' Text
+'49' Text
+'%' Text
+' ' Text
+'have' Text
+' ' Text
+'a' Text
+' ' Text
+'positive' Text
+' ' Text
+'view' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'country' Text
+"'" Text
+'s' Text
+' ' Text
+'influence' Text
+',' Text
+' ' Text
+'whereas' Text
+' ' Text
+'19' Text
+'%' Text
+' ' Text
+'have' Text
+' ' Text
+'a' Text
+' ' Text
+'negative' Text
+' ' Text
+'view' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'news' Name.Tag
+' ' Text
+'|' Punctuation
+'date' Name.Label
+'=' Operator
+'19' Text
+' ' Text
+'April' Text
+' ' Text
+'2010' Text
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'World' Text
+' ' Text
+'warming' Text
+' ' Text
+'to' Text
+' ' Text
+'US' Text
+' ' Text
+'under' Text
+' ' Text
+'Obama' Text
+',' Text
+' ' Text
+'BBC' Text
+' ' Text
+'poll' Text
+' ' Text
+'suggests' Text
+' ' Text
+'|' Punctuation
+'work' Name.Label
+'=' Operator
+'BBC' Text
+' ' Text
+'News' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'news' Text
+'.' Text
+'bbc' Text
+'.' Text
+'co' Text
+'.' Text
+'uk' Text
+'/' Text
+'2' Text
+'/' Text
+'hi' Text
+'/' Text
+'8626041' Text
+'.' Text
+'stm' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'21' Text
+' ' Text
+'July' Text
+' ' Text
+'2011' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'news' Name.Tag
+' ' Text
+'|' Punctuation
+'date' Name.Label
+'=' Operator
+'18' Text
+' ' Text
+'April' Text
+' ' Text
+'2010' Text
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Global' Text
+' ' Text
+'Views' Text
+' ' Text
+'of' Text
+' ' Text
+'United' Text
+' ' Text
+'States' Text
+' ' Text
+'Improve' Text
+' ' Text
+'While' Text
+' ' Text
+'Other' Text
+' ' Text
+'Countries' Text
+' ' Text
+'Decline' Text
+' ' Text
+'|' Punctuation
+'work' Name.Label
+'=' Operator
+'BBC' Text
+' ' Text
+'News' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'news' Text
+'.' Text
+'bbc' Text
+'.' Text
+'co' Text
+'.' Text
+'uk' Text
+'/' Text
+'2' Text
+'/' Text
+'shared' Text
+'/' Text
+'bsp' Text
+'/' Text
+'hi' Text
+'/' Text
+'pdfs' Text
+'/' Text
+'160410bbcwspoll' Text
+'.' Text
+'pdf' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'26' Text
+' ' Text
+'December' Text
+' ' Text
+'2011' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'The' Text
+' ' Text
+'[[' Punctuation
+'Nation Brands Index' Name.Tag
+'|' Punctuation
+'Nation' Text
+' ' Text
+'Brand' Text
+' ' Text
+'Index' Text
+']]' Punctuation
+' ' Text
+'of' Text
+' ' Text
+'2008' Text
+' ' Text
+'suggested' Text
+' ' Text
+'that' Text
+' ' Text
+'France' Text
+' ' Text
+'has' Text
+' ' Text
+'the' Text
+' ' Text
+'second' Text
+' ' Text
+'best' Text
+' ' Text
+'international' Text
+' ' Text
+'reputation' Text
+',' Text
+' ' Text
+'only' Text
+' ' Text
+'behind' Text
+' ' Text
+'[[' Punctuation
+'Germany' Name.Tag
+']]' Punctuation
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'date' Name.Label
+'=' Operator
+'24' Text
+' ' Text
+'September' Text
+' ' Text
+'2008' Text
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Germany' Text
+' ' Text
+'on' Text
+' ' Text
+'Top' Text
+',' Text
+' ' Text
+'U' Text
+'.' Text
+'S' Text
+'.' Text
+' ' Text
+'Seventh' Text
+' ' Text
+'in' Text
+' ' Text
+'Nation' Text
+' ' Text
+'Brands' Text
+' ' Text
+'IndexSM' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'gfk' Text
+'.' Text
+'com' Text
+'/' Text
+'group' Text
+'/' Text
+'press_information' Text
+'/' Text
+'press_releases' Text
+'/' Text
+'003055' Text
+'/' Text
+'index' Text
+'.' Text
+'en' Text
+'.' Text
+'html' Text
+' ' Text
+'|' Punctuation
+'url-status' Name.Label
+'=' Operator
+'dead' Text
+' ' Text
+'|' Punctuation
+'archive-url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'web' Text
+'.' Text
+'archive' Text
+'.' Text
+'org' Text
+'/' Text
+'web' Text
+'/' Text
+'20100825075750' Text
+'/' Text
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'gfk' Text
+'.' Text
+'com' Text
+'/' Text
+'group' Text
+'/' Text
+'press_information' Text
+'/' Text
+'press_releases' Text
+'/' Text
+'003055' Text
+'/' Text
+'index' Text
+'.' Text
+'en' Text
+'.' Text
+'html' Text
+' ' Text
+'|' Punctuation
+'archive-date' Name.Label
+'=' Operator
+'25' Text
+' ' Text
+'August' Text
+' ' Text
+'2010' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'9' Text
+' ' Text
+'August' Text
+' ' Text
+'2010' Text
+' ' Text
+'|' Punctuation
+'website' Name.Label
+'=' Operator
+'GfK' Text
+' ' Text
+'Group' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'A' Text
+' ' Text
+'global' Text
+' ' Text
+'opinion' Text
+' ' Text
+'poll' Text
+' ' Text
+'for' Text
+' ' Text
+'the' Text
+' ' Text
+'BBC' Text
+' ' Text
+'saw' Text
+' ' Text
+'France' Text
+' ' Text
+'ranked' Text
+' ' Text
+'the' Text
+' ' Text
+'fourth' Text
+' ' Text
+'most' Text
+' ' Text
+'positively' Text
+' ' Text
+'viewed' Text
+' ' Text
+'nation' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'world' Text
+' ' Text
+'(' Text
+'behind' Text
+' ' Text
+'Germany' Text
+',' Text
+' ' Text
+'Canada' Text
+' ' Text
+'and' Text
+' ' Text
+'the' Text
+' ' Text
+'United' Text
+' ' Text
+'Kingdom' Text
+')' Text
+' ' Text
+'in' Text
+' ' Text
+'2014' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'news' Name.Tag
+' ' Text
+'|' Punctuation
+'date' Name.Label
+'=' Operator
+'4' Text
+' ' Text
+'June' Text
+' ' Text
+'2014' Text
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'World' Text
+' ' Text
+'Service' Text
+' ' Text
+'Global' Text
+' ' Text
+'Poll' Text
+':' Text
+' ' Text
+'Negative' Text
+' ' Text
+'views' Text
+' ' Text
+'of' Text
+' ' Text
+'Russia' Text
+' ' Text
+'on' Text
+' ' Text
+'the' Text
+' ' Text
+'rise' Text
+' ' Text
+'|' Punctuation
+'publisher' Name.Label
+'=' Operator
+'BBC' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'bbc' Text
+'.' Text
+'co' Text
+'.' Text
+'uk' Text
+'/' Text
+'mediacentre' Text
+'/' Text
+'latestnews' Text
+'/' Text
+'2014' Text
+'/' Text
+'world' Text
+'-' Text
+'service' Text
+'-' Text
+'country' Text
+'-' Text
+'poll' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'17' Text
+' ' Text
+'February' Text
+' ' Text
+'2018' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'\n' Text
+
+'\n' Text
+
+'According' Text
+' ' Text
+'to' Text
+' ' Text
+'a' Text
+' ' Text
+'poll' Text
+' ' Text
+'in' Text
+' ' Text
+'2011' Text
+',' Text
+' ' Text
+'the' Text
+' ' Text
+'French' Text
+' ' Text
+'were' Text
+' ' Text
+'found' Text
+' ' Text
+'to' Text
+' ' Text
+'have' Text
+' ' Text
+'the' Text
+' ' Text
+'highest' Text
+' ' Text
+'level' Text
+' ' Text
+'of' Text
+' ' Text
+'[[' Punctuation
+'religious tolerance' Name.Tag
+']]' Punctuation
+' ' Text
+'and' Text
+' ' Text
+'to' Text
+' ' Text
+'be' Text
+' ' Text
+'the' Text
+' ' Text
+'country' Text
+' ' Text
+'where' Text
+' ' Text
+'the' Text
+' ' Text
+'highest' Text
+' ' Text
+'proportion' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'population' Text
+' ' Text
+'defines' Text
+' ' Text
+'its' Text
+' ' Text
+'identity' Text
+' ' Text
+'primarily' Text
+' ' Text
+'in' Text
+' ' Text
+'term' Text
+' ' Text
+'of' Text
+' ' Text
+'nationality' Text
+' ' Text
+'and' Text
+' ' Text
+'not' Text
+' ' Text
+'religion' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+' ' Text.Whitespace
+'name' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+'pewmwtp' Literal.String.Double
+'"' Literal.String.Double
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'date' Name.Label
+'=' Operator
+'21' Text
+' ' Text
+'July' Text
+' ' Text
+'2011' Text
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Muslim' Text
+'-' Text
+'Western' Text
+' ' Text
+'Tensions' Text
+' ' Text
+'Persist' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'pewglobal' Text
+'.' Text
+'org' Text
+'/' Text
+'files' Text
+'/' Text
+'2011' Text
+'/' Text
+'07' Text
+'/' Text
+'Pew' Text
+'-' Text
+'Global' Text
+'-' Text
+'Attitudes' Text
+'-' Text
+'Muslim' Text
+'-' Text
+'Western' Text
+'-' Text
+'Relations' Text
+'-' Text
+'FINAL' Text
+'-' Text
+'FOR' Text
+'-' Text
+'PRINT' Text
+'-' Text
+'July' Text
+'-' Text
+'21' Text
+'-' Text
+'2011' Text
+'.' Text
+'pdf' Text
+' ' Text
+'|' Punctuation
+'url-status' Name.Label
+'=' Operator
+'dead' Text
+' ' Text
+'|' Punctuation
+'archive-url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'web' Text
+'.' Text
+'archive' Text
+'.' Text
+'org' Text
+'/' Text
+'web' Text
+'/' Text
+'20111203105340' Text
+'/' Text
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'pewglobal' Text
+'.' Text
+'org' Text
+'/' Text
+'files' Text
+'/' Text
+'2011' Text
+'/' Text
+'07' Text
+'/' Text
+'Pew' Text
+'-' Text
+'Global' Text
+'-' Text
+'Attitudes' Text
+'-' Text
+'Muslim' Text
+'-' Text
+'Western' Text
+'-' Text
+'Relations' Text
+'-' Text
+'FINAL' Text
+'-' Text
+'FOR' Text
+'-' Text
+'PRINT' Text
+'-' Text
+'July' Text
+'-' Text
+'21' Text
+'-' Text
+'2011' Text
+'.' Text
+'pdf' Text
+' ' Text
+'|' Punctuation
+'archive-date' Name.Label
+'=' Operator
+'3' Text
+' ' Text
+'December' Text
+' ' Text
+'2011' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'17' Text
+' ' Text
+'November' Text
+' ' Text
+'2011' Text
+' ' Text
+'|' Punctuation
+'publisher' Name.Label
+'=' Operator
+'Pew' Text
+' ' Text
+'Research' Text
+' ' Text
+'Center' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'{{' Punctuation
+'As' Name.Tag
+' ' Name.Tag
+'of' Name.Tag
+'|' Punctuation
+'2011' Text
+'}}' Punctuation
+',' Text
+' ' Text
+'75' Text
+'%' Text
+' ' Text
+'of' Text
+' ' Text
+'French' Text
+' ' Text
+'had' Text
+' ' Text
+'a' Text
+' ' Text
+'favourable' Text
+' ' Text
+'view' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'United' Text
+' ' Text
+'States' Text
+',' Text
+' ' Text
+'making' Text
+' ' Text
+'France' Text
+' ' Text
+'one' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'most' Text
+' ' Text
+'pro' Text
+'-' Text
+'American' Text
+' ' Text
+'countries' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'world' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Opinion' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'United' Text
+' ' Text
+'States' Text
+' ' Text
+'(' Text
+'2011' Text
+')' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'pewglobal' Text
+'.' Text
+'org' Text
+'/' Text
+'database' Text
+'/' Text
+'indicator' Text
+'/' Text
+'1' Text
+'/' Text
+'survey' Text
+'/' Text
+'13' Text
+'/' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'9' Text
+' ' Text
+'January' Text
+' ' Text
+'2018' Text
+' ' Text
+'|' Punctuation
+'publisher' Name.Label
+'=' Operator
+'Pew' Text
+' ' Text
+'Research' Text
+' ' Text
+'Center' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'{{' Punctuation
+'As' Name.Tag
+' ' Name.Tag
+'of' Name.Tag
+'|' Punctuation
+'2017' Text
+'}}' Punctuation
+',' Text
+' ' Text
+'the' Text
+' ' Text
+'favourable' Text
+' ' Text
+'view' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'United' Text
+' ' Text
+'States' Text
+' ' Text
+'had' Text
+' ' Text
+'dropped' Text
+' ' Text
+'to' Text
+' ' Text
+'46' Text
+'%' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Opinion' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'United' Text
+' ' Text
+'States' Text
+' ' Text
+'(' Text
+'2017' Text
+')' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'pewglobal' Text
+'.' Text
+'org' Text
+'/' Text
+'database' Text
+'/' Text
+'indicator' Text
+'/' Text
+'1' Text
+'/' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'9' Text
+' ' Text
+'January' Text
+' ' Text
+'2018' Text
+' ' Text
+'|' Punctuation
+'publisher' Name.Label
+'=' Operator
+'Pew' Text
+' ' Text
+'Research' Text
+' ' Text
+'Center' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'In' Text
+' ' Text
+'January' Text
+' ' Text
+'2010' Text
+',' Text
+' ' Text
+'the' Text
+' ' Text
+'magazine' Text
+' ' Text
+"''" Generic.Emph
+'International' Generic.Emph
+' ' Generic.Emph
+'Living' Generic.Emph
+"''" Generic.Emph
+' ' Text
+'ranked' Text
+' ' Text
+'France' Text
+' ' Text
+'as' Text
+' ' Text
+'"' Text
+'best' Text
+' ' Text
+'country' Text
+' ' Text
+'to' Text
+' ' Text
+'live' Text
+' ' Text
+'in' Text
+'"' Text
+',' Text
+' ' Text
+'ahead' Text
+' ' Text
+'of' Text
+' ' Text
+'193' Text
+' ' Text
+'other' Text
+' ' Text
+'countries' Text
+',' Text
+' ' Text
+'for' Text
+' ' Text
+'the' Text
+' ' Text
+'fifth' Text
+' ' Text
+'year' Text
+' ' Text
+'running' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+' ' Text.Whitespace
+'name' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+'quality' Literal.String.Double
+'"' Literal.String.Double
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'news' Name.Tag
+' ' Text
+'|' Punctuation
+'last' Name.Label
+'=' Operator
+'Daniela' Text
+' ' Text
+'Deane' Text
+' ' Text
+'|' Punctuation
+'date' Name.Label
+'=' Operator
+'11' Text
+' ' Text
+'February' Text
+' ' Text
+'2010' Text
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Why' Text
+' ' Text
+'France' Text
+' ' Text
+'is' Text
+' ' Text
+'best' Text
+' ' Text
+'place' Text
+' ' Text
+'to' Text
+' ' Text
+'live' Text
+' ' Text
+'in' Text
+' ' Text
+'world' Text
+' ' Text
+'|' Punctuation
+'publisher' Name.Label
+'=' Operator
+'CNN' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'edition' Text
+'.' Text
+'cnn' Text
+'.' Text
+'com' Text
+'/' Text
+'2010' Text
+'/' Text
+'WORLD' Text
+'/' Text
+'europe' Text
+'/' Text
+'02' Text
+'/' Text
+'11' Text
+'/' Text
+'france' Text
+'.' Text
+'quality' Text
+'.' Text
+'life' Text
+'/' Text
+'index' Text
+'.' Text
+'html' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'1' Text
+' ' Text
+'October' Text
+' ' Text
+'2013' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'\n' Text
+
+'\n' Text
+
+'The' Text
+' ' Text
+'[[' Punctuation
+'OECD Better Life Index' Name.Tag
+']]' Punctuation
+' ' Text
+'states' Text
+' ' Text
+'that' Text
+' ' Text
+'"' Text
+'France' Text
+' ' Text
+'performs' Text
+' ' Text
+'well' Text
+' ' Text
+'in' Text
+' ' Text
+'many' Text
+' ' Text
+'measures' Text
+' ' Text
+'of' Text
+' ' Text
+'well' Text
+'-' Text
+'being' Text
+' ' Text
+'relative' Text
+' ' Text
+'to' Text
+' ' Text
+'most' Text
+' ' Text
+'other' Text
+' ' Text
+'countries' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'Better' Text
+' ' Text
+'Life' Text
+' ' Text
+'Index' Text
+'"' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'[' Punctuation
+'http://www.oecdbetterlifeindex.org/countries/france' Name.Label
+' ' Text.Whitespace
+'France' Text
+']' Punctuation
+',' Text
+' ' Text
+'[[' Punctuation
+'OECD Better Life Index' Name.Tag
+']]' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'\n' Text
+
+'\n' Text
+
+'The' Text
+' ' Text
+'French' Text
+' ' Text
+'Revolution' Text
+' ' Text
+'continues' Text
+' ' Text
+'to' Text
+' ' Text
+'permeate' Text
+' ' Text
+'the' Text
+' ' Text
+'country' Text
+"'" Text
+'s' Text
+' ' Text
+'[[' Punctuation
+'collective memory' Name.Tag
+']]' Punctuation
+'.' Text
+' ' Text
+'The' Text
+' ' Text
+'tricolour' Text
+' ' Text
+'[[' Punctuation
+'flag of France' Name.Tag
+']]' Punctuation
+',' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'date' Name.Label
+'=' Operator
+'12' Text
+' ' Text
+'December' Text
+' ' Text
+'2013' Text
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'France' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'flagspot' Text
+'.' Text
+'net' Text
+'/' Text
+'flags' Text
+'/' Text
+'fr' Text
+'.' Text
+'html' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'9' Text
+' ' Text
+'January' Text
+' ' Text
+'2018' Text
+' ' Text
+'|' Punctuation
+'website' Name.Label
+'=' Operator
+'Flags' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'World' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'the' Text
+' ' Text
+'anthem' Text
+' ' Text
+'"' Text
+'[[' Punctuation
+'La Marseillaise' Name.Tag
+']]' Punctuation
+'"' Text
+',' Text
+' ' Text
+'and' Text
+' ' Text
+'the' Text
+' ' Text
+'motto' Text
+' ' Text
+"''" Generic.Emph
+'[[' Punctuation
+'Liberté, égalité, fraternité' Name.Tag
+']]' Punctuation
+"''" Generic.Emph
+',' Text
+' ' Text
+'defined' Text
+' ' Text
+'in' Text
+' ' Text
+'Title' Text
+' ' Text
+'1' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Constitution of France' Name.Tag
+'|' Punctuation
+'Constitution' Text
+']]' Punctuation
+' ' Text
+'as' Text
+' ' Text
+'national' Text
+' ' Text
+'symbols' Text
+',' Text
+' ' Text
+'all' Text
+' ' Text
+'emerged' Text
+' ' Text
+'during' Text
+' ' Text
+'the' Text
+' ' Text
+'cultural' Text
+' ' Text
+'ferment' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'early' Text
+' ' Text
+'revolution' Text
+',' Text
+' ' Text
+'along' Text
+' ' Text
+'with' Text
+' ' Text
+'[[' Punctuation
+'Marianne' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'a' Text
+' ' Text
+'common' Text
+' ' Text
+'[[' Punctuation
+'national personification' Name.Tag
+']]' Punctuation
+'.' Text
+' ' Text
+'In' Text
+' ' Text
+'addition' Text
+',' Text
+' ' Text
+'[[' Punctuation
+'Bastille Day' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'the' Text
+' ' Text
+'national' Text
+' ' Text
+'holiday' Text
+',' Text
+' ' Text
+'commemorates' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'storming of the Bastille' Name.Tag
+']]' Punctuation
+' ' Text
+'on' Text
+' ' Text
+'14' Text
+' ' Text
+'July' Text
+' ' Text
+'1789' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'The' Text
+' ' Text
+'Symbols' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'French' Text
+' ' Text
+'Republic' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'france' Text
+'.' Text
+'fr' Text
+'/' Text
+'en' Text
+'/' Text
+'institutions' Text
+'-' Text
+'and' Text
+'-' Text
+'values' Text
+'/' Text
+'symbols' Text
+'-' Text
+'french' Text
+'-' Text
+'republic' Text
+' ' Text
+'|' Punctuation
+'url-status' Name.Label
+'=' Operator
+'dead' Text
+' ' Text
+'|' Punctuation
+'archive-url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'web' Text
+'.' Text
+'archive' Text
+'.' Text
+'org' Text
+'/' Text
+'web' Text
+'/' Text
+'20140107050658' Text
+'/' Text
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'france' Text
+'.' Text
+'fr' Text
+'/' Text
+'en' Text
+'/' Text
+'institutions' Text
+'-' Text
+'and' Text
+'-' Text
+'values' Text
+'/' Text
+'symbols' Text
+'-' Text
+'french' Text
+'-' Text
+'republic' Text
+' ' Text
+'|' Punctuation
+'archive-date' Name.Label
+'=' Operator
+'7' Text
+' ' Text
+'January' Text
+' ' Text
+'2014' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'16' Text
+' ' Text
+'January' Text
+' ' Text
+'2014' Text
+' ' Text
+'|' Punctuation
+'publisher' Name.Label
+'=' Operator
+'[[' Punctuation
+'Cabinet of France' Name.Tag
+'|' Punctuation
+'Government' Text
+' ' Text
+'of' Text
+' ' Text
+'France' Text
+']]' Punctuation
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'\n' Text
+
+'[[' Punctuation
+'File' Name.Namespace
+':' Punctuation
+'MariannedeTheodoreDoriot.JPG' Name.Tag
+'|' Punctuation
+'thumb' Text
+'|' Punctuation
+'right' Text
+'|' Punctuation
+'upright' Text
+'|' Punctuation
+'Sculpture' Text
+' ' Text
+'of' Text
+' ' Text
+'[[' Punctuation
+'Marianne' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'a' Text
+' ' Text
+'common' Text
+' ' Text
+'national' Text
+' ' Text
+'personification' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'French' Text
+' ' Text
+'Republic' Text
+']]' Punctuation
+'\n' Text
+
+'\n' Text
+
+'A' Text
+' ' Text
+'common' Text
+' ' Text
+'and' Text
+' ' Text
+'traditional' Text
+' ' Text
+'symbol' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'French' Text
+' ' Text
+'people' Text
+' ' Text
+'is' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Gallic rooster' Name.Tag
+']]' Punctuation
+'.' Text
+' ' Text
+'Its' Text
+' ' Text
+'origins' Text
+' ' Text
+'date' Text
+' ' Text
+'back' Text
+' ' Text
+'to' Text
+' ' Text
+'Antiquity' Text
+' ' Text
+'since' Text
+' ' Text
+'the' Text
+' ' Text
+'Latin' Text
+' ' Text
+'word' Text
+' ' Text
+'Gallus' Text
+' ' Text
+'meant' Text
+' ' Text
+'both' Text
+' ' Text
+'"' Text
+'[[' Punctuation
+'rooster' Name.Tag
+']]' Punctuation
+'"' Text
+' ' Text
+'and' Text
+' ' Text
+'"' Text
+'inhabitant' Text
+' ' Text
+'of' Text
+' ' Text
+'Gaul' Text
+'"' Text
+'.' Text
+' ' Text
+'Then' Text
+' ' Text
+'this' Text
+' ' Text
+'figure' Text
+' ' Text
+'gradually' Text
+' ' Text
+'became' Text
+' ' Text
+'the' Text
+' ' Text
+'most' Text
+' ' Text
+'widely' Text
+' ' Text
+'shared' Text
+' ' Text
+'representation' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'French' Text
+',' Text
+' ' Text
+'used' Text
+' ' Text
+'by' Text
+' ' Text
+'French' Text
+' ' Text
+'monarchs' Text
+',' Text
+' ' Text
+'then' Text
+' ' Text
+'by' Text
+' ' Text
+'the' Text
+' ' Text
+'Revolution' Text
+' ' Text
+'and' Text
+' ' Text
+'under' Text
+' ' Text
+'the' Text
+' ' Text
+'successive' Text
+' ' Text
+'republican' Text
+' ' Text
+'regimes' Text
+' ' Text
+'as' Text
+' ' Text
+'representation' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'national' Text
+' ' Text
+'identity' Text
+',' Text
+' ' Text
+'used' Text
+' ' Text
+'for' Text
+' ' Text
+'some' Text
+' ' Text
+'stamps' Text
+' ' Text
+'and' Text
+' ' Text
+'coins' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Le' Text
+' ' Text
+'coq' Text
+' ' Text
+'|' Punctuation
+'trans-title' Name.Label
+'=' Operator
+'The' Text
+' ' Text
+'rooster' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'elysee' Text
+'.' Text
+'fr' Text
+'/' Text
+'president' Text
+'/' Text
+'la' Text
+'-' Text
+'presidence' Text
+'/' Text
+'les' Text
+'-' Text
+'symboles' Text
+'-' Text
+'de' Text
+'-' Text
+'la' Text
+'-' Text
+'republique' Text
+'-' Text
+'francaise' Text
+'/' Text
+'le' Text
+'-' Text
+'coq' Text
+'/' Text
+'le' Text
+'-' Text
+'coq' Text
+'.' Text
+'6052' Text
+'.' Text
+'html' Text
+' ' Text
+'|' Punctuation
+'url-status' Name.Label
+'=' Operator
+'dead' Text
+' ' Text
+'|' Punctuation
+'archive-url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'web' Text
+'.' Text
+'archive' Text
+'.' Text
+'org' Text
+'/' Text
+'web' Text
+'/' Text
+'20100401063525' Text
+'/' Text
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'elysee' Text
+'.' Text
+'fr' Text
+'/' Text
+'president' Text
+'/' Text
+'la' Text
+'-' Text
+'presidence' Text
+'/' Text
+'les' Text
+'-' Text
+'symboles' Text
+'-' Text
+'de' Text
+'-' Text
+'la' Text
+'-' Text
+'republique' Text
+'-' Text
+'francaise' Text
+'/' Text
+'le' Text
+'-' Text
+'coq' Text
+'/' Text
+'le' Text
+'-' Text
+'coq' Text
+'.' Text
+'6052' Text
+'.' Text
+'html' Text
+' ' Text
+'|' Punctuation
+'archive-date' Name.Label
+'=' Operator
+'1' Text
+' ' Text
+'April' Text
+' ' Text
+'2010' Text
+' ' Text
+'|' Punctuation
+'website' Name.Label
+'=' Operator
+'Élysée' Text
+' ' Text
+'–' Text
+' ' Text
+'Présidence' Text
+' ' Text
+'de' Text
+' ' Text
+'la' Text
+' ' Text
+'République' Text
+' ' Text
+'|' Punctuation
+'language' Name.Label
+'=' Operator
+'fr' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'\n' Text
+
+'\n' Text
+
+'France' Text
+' ' Text
+'is' Text
+' ' Text
+'one' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'world' Text
+' ' Text
+'leaders' Text
+' ' Text
+'of' Text
+' ' Text
+'[[' Punctuation
+'gender equality' Name.Tag
+']]' Punctuation
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'workplace' Text
+':' Text
+' ' Text
+'as' Text
+' ' Text
+'of' Text
+' ' Text
+'2017' Text
+',' Text
+' ' Text
+'it' Text
+' ' Text
+'has' Text
+' ' Text
+'36' Text
+'.' Text
+'8' Text
+'%' Text
+' ' Text
+'of' Text
+' ' Text
+'its' Text
+' ' Text
+'corporate' Text
+' ' Text
+'board' Text
+' ' Text
+'seats' Text
+' ' Text
+'held' Text
+' ' Text
+'by' Text
+' ' Text
+'women' Text
+',' Text
+' ' Text
+'which' Text
+' ' Text
+'makes' Text
+' ' Text
+'it' Text
+' ' Text
+'the' Text
+' ' Text
+'leader' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'G20' Name.Tag
+']]' Punctuation
+' ' Text
+'for' Text
+' ' Text
+'that' Text
+' ' Text
+'metric' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'[' Punctuation
+'https://www.globalgovernmentforum.com/women-leaders-index-gender-equality-france-case-study' Name.Label
+' ' Text.Whitespace
+'Women' Text
+' ' Text
+'Leaders' Text
+' ' Text
+'Index' Text
+' ' Text
+'Gender' Text
+' ' Text
+'Equality' Text
+' ' Text
+'Case' Text
+' ' Text
+'Study' Text
+':' Text
+' ' Text
+'France' Text
+']' Punctuation
+',' Text
+' ' Text
+'Global' Text
+' ' Text
+'Government' Text
+' ' Text
+'Forum' Text
+',' Text
+' ' Text
+'5' Text
+' ' Text
+'September' Text
+' ' Text
+'2017' Text
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'It' Text
+' ' Text
+'was' Text
+' ' Text
+'ranked' Text
+' ' Text
+'in' Text
+' ' Text
+'2019' Text
+' ' Text
+'by' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'World Bank' Name.Tag
+']]' Punctuation
+' ' Text
+'as' Text
+' ' Text
+'one' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'only' Text
+' ' Text
+'six' Text
+' ' Text
+'countries' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'world' Text
+' ' Text
+'where' Text
+' ' Text
+'women' Text
+' ' Text
+'have' Text
+' ' Text
+'the' Text
+' ' Text
+'same' Text
+' ' Text
+'work' Text
+' ' Text
+'rights' Text
+' ' Text
+'as' Text
+' ' Text
+'men' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'[' Punctuation
+'https://www.washingtonpost.com/dc-md-va/2019/03/02/only-countries-give-women-same-work-rights-men-us-isnt-one-them/?noredirect=on' Name.Label
+' ' Text.Whitespace
+'Only' Text
+' ' Text
+'6' Text
+' ' Text
+'countries' Text
+' ' Text
+'give' Text
+' ' Text
+'women' Text
+' ' Text
+'the' Text
+' ' Text
+'same' Text
+' ' Text
+'work' Text
+' ' Text
+'rights' Text
+' ' Text
+'as' Text
+' ' Text
+'men' Text
+'.' Text
+' ' Text
+'The' Text
+' ' Text
+'U' Text
+'.' Text
+'S' Text
+'.' Text
+' ' Text
+'isn' Text
+"'" Text
+'t' Text
+' ' Text
+'one' Text
+' ' Text
+'of' Text
+' ' Text
+'them' Text
+'.' Text
+']' Punctuation
+',' Text
+' ' Text
+"''" Generic.Emph
+'[[' Punctuation
+'The Washington Post' Name.Tag
+']]' Punctuation
+"''" Generic.Emph
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'\n' Text
+
+'\n' Text
+
+'France' Text
+' ' Text
+'is' Text
+' ' Text
+'one' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'most' Text
+' ' Text
+'liberal' Text
+' ' Text
+'countries' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'world' Text
+' ' Text
+'when' Text
+' ' Text
+'it' Text
+' ' Text
+'comes' Text
+' ' Text
+'to' Text
+' ' Text
+'[[' Punctuation
+'LGBT rights' Name.Tag
+']]' Punctuation
+':' Text
+' ' Text
+'a' Text
+' ' Text
+'2020' Text
+' ' Text
+'[[' Punctuation
+'Pew Research Center' Name.Tag
+']]' Punctuation
+' ' Text
+'poll' Text
+' ' Text
+'found' Text
+' ' Text
+'that' Text
+' ' Text
+'86' Text
+'%' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'French' Text
+' ' Text
+'think' Text
+' ' Text
+'that' Text
+' ' Text
+'[[' Punctuation
+'same-sex relationship' Name.Tag
+']]' Punctuation
+'s' Text
+' ' Text
+'should' Text
+' ' Text
+'be' Text
+' ' Text
+'accepted' Text
+' ' Text
+'by' Text
+' ' Text
+'society' Text
+',' Text
+' ' Text
+'one' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'highest' Text
+' ' Text
+'acceptance' Text
+' ' Text
+'rates' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'world' Text
+' ' Text
+'(' Text
+'comparable' Text
+' ' Text
+'to' Text
+' ' Text
+'that' Text
+' ' Text
+'of' Text
+' ' Text
+'other' Text
+' ' Text
+'[[' Punctuation
+'Western European' Name.Tag
+']]' Punctuation
+' ' Text
+'nations' Text
+')' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'[' Punctuation
+'https://www.pewresearch.org/global/2020/06/25/global-divide-on-homosexuality-persists' Name.Label
+' ' Text.Whitespace
+'The' Text
+' ' Text
+'Global' Text
+' ' Text
+'Divide' Text
+' ' Text
+'on' Text
+' ' Text
+'Homosexuality' Text
+' ' Text
+'Persists' Text
+']' Punctuation
+',' Text
+' ' Text
+'[[' Punctuation
+'Pew Research Center' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'25' Text
+' ' Text
+'June' Text
+' ' Text
+'2020' Text
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'France' Text
+' ' Text
+'legalised' Text
+' ' Text
+'[[' Punctuation
+'same-sex marriage' Name.Tag
+']]' Punctuation
+' ' Text
+'and' Text
+' ' Text
+'adoption' Text
+' ' Text
+'in' Text
+' ' Text
+'2013' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'[' Punctuation
+'https://www.france24.com/en/20180423-france-five-year-anniversary-law-same-sex-marriage-adoption' Name.Label
+' ' Text.Whitespace
+'France' Text
+' ' Text
+'marks' Text
+' ' Text
+'five' Text
+'-' Text
+'year' Text
+' ' Text
+'anniversary' Text
+' ' Text
+'of' Text
+' ' Text
+'same' Text
+'-' Text
+'sex' Text
+' ' Text
+'marriage' Text
+']' Punctuation
+',' Text
+' ' Text
+'[[' Punctuation
+'France 24' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'23' Text
+' ' Text
+'April' Text
+' ' Text
+'2018' Text
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'The' Text
+' ' Text
+'government' Text
+' ' Text
+'has' Text
+' ' Text
+'used' Text
+' ' Text
+'its' Text
+' ' Text
+'diplomatic' Text
+' ' Text
+'clout' Text
+' ' Text
+'to' Text
+' ' Text
+'support' Text
+' ' Text
+'[[' Punctuation
+'LGBT rights by country or territory' Name.Tag
+'|' Punctuation
+'LGBT' Text
+' ' Text
+'rights' Text
+' ' Text
+'throughout' Text
+' ' Text
+'the' Text
+' ' Text
+'world' Text
+']]' Punctuation
+',' Text
+' ' Text
+'notably' Text
+' ' Text
+'in' Text
+' ' Text
+'[[' Punctuation
+'LGBT rights at the United Nations' Name.Tag
+'|' Punctuation
+'the' Text
+' ' Text
+'United' Text
+' ' Text
+'Nations' Text
+']]' Punctuation
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'[' Punctuation
+'https://www.diplomatie.gouv.fr/en/french-foreign-policy/human-rights/sexual-orientation-and-gender-identity' Name.Label
+' ' Text.Whitespace
+'Sexual' Text
+' ' Text
+'Orientation' Text
+' ' Text
+'and' Text
+' ' Text
+'Gender' Text
+' ' Text
+'Identity' Text
+']' Punctuation
+',' Text
+' ' Text
+'[[' Punctuation
+'Ministry of Foreign Affairs (France)' Name.Tag
+'|' Punctuation
+'France' Text
+' ' Text
+'Diplomatie' Text
+']]' Punctuation
+'.' Text
+' ' Text
+'Retrieved' Text
+' ' Text
+'3' Text
+' ' Text
+'September' Text
+' ' Text
+'2019' Text
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'\n' Text
+
+'\n' Text
+
+'In' Text
+' ' Text
+'2020' Text
+',' Text
+' ' Text
+'France' Text
+' ' Text
+'was' Text
+' ' Text
+'ranked' Text
+' ' Text
+'fifth' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Environmental Performance Index' Name.Tag
+']]' Punctuation
+' ' Text
+'(' Text
+'behind' Text
+' ' Text
+'the' Text
+' ' Text
+'United' Text
+' ' Text
+'Kingdom' Text
+')' Text
+',' Text
+' ' Text
+'out' Text
+' ' Text
+'of' Text
+' ' Text
+'180' Text
+' ' Text
+'countries' Text
+' ' Text
+'ranked' Text
+' ' Text
+'by' Text
+' ' Text
+'[[' Punctuation
+'Yale University' Name.Tag
+']]' Punctuation
+' ' Text
+'in' Text
+' ' Text
+'that' Text
+' ' Text
+'study' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'[' Punctuation
+'https://epi.envirocenter.yale.edu/downloads/epi2018policymakerssummaryv01.pdf' Name.Label
+' ' Text.Whitespace
+'2018' Text
+' ' Text
+'Environmental' Text
+' ' Text
+'Performance' Text
+' ' Text
+'Index' Text
+']' Punctuation
+'.' Text
+' ' Text
+'Retrieved' Text
+' ' Text
+'3' Text
+' ' Text
+'September' Text
+' ' Text
+'2019' Text
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'Being' Text
+' ' Text
+'the' Text
+' ' Text
+'host' Text
+' ' Text
+'country' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'2015 United Nations Climate Change Conference' Name.Tag
+'|' Punctuation
+'2015' Text
+' ' Text
+'Paris' Text
+' ' Text
+'Climate' Text
+' ' Text
+'Change' Text
+' ' Text
+'Conference' Text
+']]' Punctuation
+',' Text
+' ' Text
+'the' Text
+' ' Text
+'French' Text
+' ' Text
+'Government' Text
+' ' Text
+'was' Text
+' ' Text
+'instrumental' Text
+' ' Text
+'in' Text
+' ' Text
+'securing' Text
+' ' Text
+'the' Text
+' ' Text
+'2015' Text
+' ' Text
+'[[' Punctuation
+'Paris Agreement' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'a' Text
+' ' Text
+'success' Text
+' ' Text
+'that' Text
+' ' Text
+'has' Text
+' ' Text
+'been' Text
+' ' Text
+'credited' Text
+' ' Text
+'to' Text
+' ' Text
+'its' Text
+' ' Text
+'"' Text
+'openness' Text
+' ' Text
+'and' Text
+' ' Text
+'experience' Text
+' ' Text
+'in' Text
+' ' Text
+'diplomacy' Text
+'"' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'[' Punctuation
+'https://www.theguardian.com/environment/2015/dec/13/paris-climate-deal-cop-diplomacy-developing-united-nations' Name.Label
+' ' Text.Whitespace
+'Paris' Text
+' ' Text
+'climate' Text
+' ' Text
+'change' Text
+' ' Text
+'agreement' Text
+':' Text
+' ' Text
+'the' Text
+' ' Text
+'world' Text
+"'" Text
+'s' Text
+' ' Text
+'greatest' Text
+' ' Text
+'diplomatic' Text
+' ' Text
+'success' Text
+']' Punctuation
+',' Text
+' ' Text
+"''" Generic.Emph
+'[[' Punctuation
+'The Guardian' Name.Tag
+']]' Punctuation
+"''" Generic.Emph
+',' Text
+' ' Text
+'14' Text
+' ' Text
+'December' Text
+' ' Text
+'2019' Text
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'\n' Text
+
+'\n' Text
+
+'===' Generic.Subheading
+'Cuisine' Generic.Subheading
+'===' Generic.Subheading
+'\n' Text.Whitespace
+
+'{{' Punctuation
+'Main' Name.Tag
+'|' Punctuation
+'French' Text
+' ' Text
+'cuisine' Text
+'}}' Punctuation
+'\n' Text
+
+'[[' Punctuation
+'File' Name.Namespace
+':' Punctuation
+'French taste of wines.JPG' Name.Tag
+'|' Punctuation
+'thumb' Text
+'|' Punctuation
+'left' Text
+'|' Punctuation
+'[[' Punctuation
+'French wines' Name.Tag
+']]' Punctuation
+' ' Text
+'are' Text
+' ' Text
+'usually' Text
+' ' Text
+'made' Text
+' ' Text
+'to' Text
+' ' Text
+'accompany' Text
+' ' Text
+'French' Text
+' ' Text
+'cuisine' Text
+'.' Text
+']]' Punctuation
+'\n' Text
+
+'\n' Text
+
+'French' Text
+' ' Text
+'cuisine' Text
+' ' Text
+'is' Text
+' ' Text
+'renowned' Text
+' ' Text
+'for' Text
+' ' Text
+'being' Text
+' ' Text
+'one' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'finest' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'world' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'book' Name.Tag
+' ' Text
+'|' Punctuation
+'last' Name.Label
+'=' Operator
+'Amy' Text
+' ' Text
+'B' Text
+'.' Text
+' ' Text
+'Trubek' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'books' Text
+'.' Text
+'google' Text
+'.' Text
+'com' Text
+'/' Text
+'books' Text
+'?' Text
+'id' Text
+'=' Text
+'bSuAyMNantQC' Text
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Haute' Text
+' ' Text
+'Cuisine' Text
+':' Text
+' ' Text
+'How' Text
+' ' Text
+'the' Text
+' ' Text
+'French' Text
+' ' Text
+'Invented' Text
+' ' Text
+'the' Text
+' ' Text
+'Culinary' Text
+' ' Text
+'Profession' Text
+' ' Text
+'|' Punctuation
+'publisher' Name.Label
+'=' Operator
+'University' Text
+' ' Text
+'of' Text
+' ' Text
+'Pennsylvania' Text
+' ' Text
+'Press' Text
+' ' Text
+'|' Punctuation
+'year' Name.Label
+'=' Operator
+'2000' Text
+' ' Text
+'|' Punctuation
+'isbn' Name.Label
+'=' Operator
+'978' Text
+'-' Text
+'0' Text
+'-' Text
+'8122' Text
+'-' Text
+'1776' Text
+'-' Text
+'6' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'book' Name.Tag
+' ' Text
+'|' Punctuation
+'last' Name.Label
+'=' Operator
+'Priscilla' Text
+' ' Text
+'Parkhurst' Text
+' ' Text
+'Ferguson' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'books' Text
+'.' Text
+'google' Text
+'.' Text
+'com' Text
+'/' Text
+'books' Text
+'?' Text
+'id' Text
+'=' Text
+'gbttJD4bW6UC' Text
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Accounting' Text
+' ' Text
+'for' Text
+' ' Text
+'Taste' Text
+':' Text
+' ' Text
+'The' Text
+' ' Text
+'Triumph' Text
+' ' Text
+'of' Text
+' ' Text
+'French' Text
+' ' Text
+'Cuisine' Text
+' ' Text
+'|' Punctuation
+'publisher' Name.Label
+'=' Operator
+'University' Text
+' ' Text
+'of' Text
+' ' Text
+'Chicago' Text
+' ' Text
+'Press' Text
+' ' Text
+'|' Punctuation
+'year' Name.Label
+'=' Operator
+'2006' Text
+' ' Text
+'|' Punctuation
+'isbn' Name.Label
+'=' Operator
+'978' Text
+'-' Text
+'0' Text
+'-' Text
+'226' Text
+'-' Text
+'24327' Text
+'-' Text
+'6' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'Different' Text
+' ' Text
+'regions' Text
+' ' Text
+'have' Text
+' ' Text
+'different' Text
+' ' Text
+'styles' Text
+'.' Text
+' ' Text
+'In' Text
+' ' Text
+'the' Text
+' ' Text
+'North' Text
+',' Text
+' ' Text
+'butter' Text
+' ' Text
+'and' Text
+' ' Text
+'cream' Text
+' ' Text
+'are' Text
+' ' Text
+'common' Text
+' ' Text
+'ingredients' Text
+',' Text
+' ' Text
+'whereas' Text
+' ' Text
+'[[' Punctuation
+'olive oil' Name.Tag
+']]' Punctuation
+' ' Text
+'is' Text
+' ' Text
+'more' Text
+' ' Text
+'commonly' Text
+' ' Text
+'used' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'South' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'news' Name.Tag
+' ' Text
+'|' Punctuation
+'last' Name.Label
+'=' Operator
+'Véronique' Text
+' ' Text
+'MARTINACHE' Text
+' ' Text
+'|' Punctuation
+'date' Name.Label
+'=' Operator
+'30' Text
+' ' Text
+'November' Text
+' ' Text
+'2009' Text
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'La' Text
+' ' Text
+'France' Text
+' ' Text
+'du' Text
+' ' Text
+'beurre' Text
+' ' Text
+'et' Text
+' ' Text
+'celle' Text
+' ' Text
+'de' Text
+' ' Text
+'l' Text
+"'" Text
+'huile' Text
+' ' Text
+'d' Text
+"'" Text
+'olive' Text
+' ' Text
+'maintiennent' Text
+' ' Text
+'leurs' Text
+' ' Text
+'positions' Text
+' ' Text
+'|' Punctuation
+'trans-title' Name.Label
+'=' Operator
+'France' Text
+' ' Text
+'butter' Text
+' ' Text
+'and' Text
+' ' Text
+'olive' Text
+' ' Text
+'oil' Text
+' ' Text
+'maintain' Text
+' ' Text
+'their' Text
+' ' Text
+'positions' Text
+' ' Text
+'|' Punctuation
+'agency' Name.Label
+'=' Operator
+'[[' Punctuation
+'Agence France-Presse' Name.Tag
+']]' Punctuation
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'google' Text
+'.' Text
+'com' Text
+'/' Text
+'hostednews' Text
+'/' Text
+'afp' Text
+'/' Text
+'article' Text
+'/' Text
+'ALeqM5jvmxWfyZ2tFVA3qcmC7DkX6SMi5g' Text
+' ' Text
+'|' Punctuation
+'url-status' Name.Label
+'=' Operator
+'dead' Text
+' ' Text
+'|' Punctuation
+'archive-url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'web' Text
+'.' Text
+'archive' Text
+'.' Text
+'org' Text
+'/' Text
+'web' Text
+'/' Text
+'20110425112349' Text
+'/' Text
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'google' Text
+'.' Text
+'com' Text
+'/' Text
+'hostednews' Text
+'/' Text
+'afp' Text
+'/' Text
+'article' Text
+'/' Text
+'ALeqM5jvmxWfyZ2tFVA3qcmC7DkX6SMi5g' Text
+' ' Text
+'|' Punctuation
+'archive-date' Name.Label
+'=' Operator
+'25' Text
+' ' Text
+'April' Text
+' ' Text
+'2011' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'Each' Text
+' ' Text
+'region' Text
+' ' Text
+'of' Text
+' ' Text
+'France' Text
+' ' Text
+'has' Text
+' ' Text
+'iconic' Text
+' ' Text
+'traditional' Text
+' ' Text
+'specialties' Text
+':' Text
+' ' Text
+'[[' Punctuation
+'cassoulet' Name.Tag
+']]' Punctuation
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'Southwest' Text
+',' Text
+' ' Text
+'[[' Punctuation
+'choucroute' Name.Tag
+']]' Punctuation
+' ' Text
+'in' Text
+' ' Text
+'Alsace' Text
+',' Text
+' ' Text
+'[[' Punctuation
+'quiche' Name.Tag
+']]' Punctuation
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Lorraine (region)' Name.Tag
+'|' Punctuation
+'Lorraine' Text
+' ' Text
+'region' Text
+']]' Punctuation
+',' Text
+' ' Text
+'[[' Punctuation
+'beef bourguignon' Name.Tag
+']]' Punctuation
+' ' Text
+'in' Text
+' ' Text
+'[[' Punctuation
+'Burgundy' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'[[' Punctuation
+'Provence' Name.Tag
+'|' Punctuation
+'provençal' Text
+']]' Punctuation
+' ' Text
+'[[' Punctuation
+'tapenade' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'etc' Text
+'.' Text
+' ' Text
+'France' Text
+' ' Text
+'is' Text
+' ' Text
+'most' Text
+' ' Text
+'famous' Text
+' ' Text
+'for' Text
+' ' Text
+'its' Text
+' ' Text
+'[[' Punctuation
+'French wine' Name.Tag
+'|' Punctuation
+'wines' Text
+']]' Punctuation
+',' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'date' Name.Label
+'=' Operator
+'17' Text
+' ' Text
+'May' Text
+' ' Text
+'2008' Text
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Wines' Text
+' ' Text
+'of' Text
+' ' Text
+'France' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'cs' Text
+'.' Text
+'utexas' Text
+'.' Text
+'edu' Text
+'/' Text
+'users' Text
+'/' Text
+'walter' Text
+'/' Text
+'wine' Text
+'/' Text
+'france' Text
+'.' Text
+'html' Text
+' ' Text
+'|' Punctuation
+'url-status' Name.Label
+'=' Operator
+'dead' Text
+' ' Text
+'|' Punctuation
+'archive-url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'web' Text
+'.' Text
+'archive' Text
+'.' Text
+'org' Text
+'/' Text
+'web' Text
+'/' Text
+'20100211145428' Text
+'/' Text
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'cs' Text
+'.' Text
+'utexas' Text
+'.' Text
+'edu' Text
+'/' Text
+'users' Text
+'/' Text
+'walter' Text
+'/' Text
+'wine' Text
+'/' Text
+'france' Text
+'.' Text
+'html' Text
+' ' Text
+'|' Punctuation
+'archive-date' Name.Label
+'=' Operator
+'11' Text
+' ' Text
+'February' Text
+' ' Text
+'2010' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'9' Text
+' ' Text
+'August' Text
+' ' Text
+'2010' Text
+' ' Text
+'|' Punctuation
+'website' Name.Label
+'=' Operator
+'Walter' Text
+"'" Text
+'s' Text
+' ' Text
+'Web' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'and' Text
+' ' Text
+'[[' Punctuation
+'List of French cheeses' Name.Tag
+'|' Punctuation
+'cheeses' Text
+']]' Punctuation
+',' Text
+' ' Text
+'which' Text
+' ' Text
+'are' Text
+' ' Text
+'often' Text
+' ' Text
+'named' Text
+' ' Text
+'for' Text
+' ' Text
+'the' Text
+' ' Text
+'territory' Text
+' ' Text
+'where' Text
+' ' Text
+'they' Text
+' ' Text
+'are' Text
+' ' Text
+'produced' Text
+' ' Text
+'(' Text
+'[[' Punctuation
+"Appellation d'origine contrôlée" Name.Tag
+'|' Punctuation
+'AOC' Text
+']]' Punctuation
+')' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'French' Text
+' ' Text
+'Cheese' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'goodcooking' Text
+'.' Text
+'com' Text
+'/' Text
+'frcheese' Text
+'.' Text
+'htm' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'22' Text
+' ' Text
+'July' Text
+' ' Text
+'2011' Text
+' ' Text
+'|' Punctuation
+'publisher' Name.Label
+'=' Operator
+'Goodcooking' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'French' Text
+' ' Text
+'Cheese' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'franceway' Text
+'.' Text
+'com' Text
+'/' Text
+'cheese' Text
+'/' Text
+' ' Text
+'|' Punctuation
+'url-status' Name.Label
+'=' Operator
+'dead' Text
+' ' Text
+'|' Punctuation
+'archive-url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'web' Text
+'.' Text
+'archive' Text
+'.' Text
+'org' Text
+'/' Text
+'web' Text
+'/' Text
+'20100827131743' Text
+'/' Text
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'franceway' Text
+'.' Text
+'com' Text
+'/' Text
+'cheese' Text
+'/' Text
+' ' Text
+'|' Punctuation
+'archive-date' Name.Label
+'=' Operator
+'27' Text
+' ' Text
+'August' Text
+' ' Text
+'2010' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'A' Text
+' ' Text
+'meal' Text
+' ' Text
+'typically' Text
+' ' Text
+'consists' Text
+' ' Text
+'of' Text
+' ' Text
+'three' Text
+' ' Text
+'courses' Text
+',' Text
+' ' Text
+"''" Generic.Emph
+'entrée' Generic.Emph
+"''" Generic.Emph
+' ' Text
+'(' Text
+'starter' Text
+')' Text
+',' Text
+' ' Text
+"''" Generic.Emph
+'plat' Generic.Emph
+' ' Generic.Emph
+'principal' Generic.Emph
+"''" Generic.Emph
+' ' Text
+'(' Text
+'main' Text
+' ' Text
+'course' Text
+')' Text
+',' Text
+' ' Text
+'and' Text
+' ' Text
+"''" Generic.Emph
+'fromage' Generic.Emph
+"''" Generic.Emph
+' ' Text
+'(' Text
+'cheese' Text
+')' Text
+' ' Text
+'or' Text
+' ' Text
+"''" Generic.Emph
+'dessert' Generic.Emph
+"''" Generic.Emph
+',' Text
+' ' Text
+'sometimes' Text
+' ' Text
+'with' Text
+' ' Text
+'a' Text
+' ' Text
+'salad' Text
+' ' Text
+'served' Text
+' ' Text
+'before' Text
+' ' Text
+'the' Text
+' ' Text
+'cheese' Text
+' ' Text
+'or' Text
+' ' Text
+'dessert' Text
+'.' Text
+'\n' Text
+
+'\n' Text
+
+'French' Text
+' ' Text
+'cuisine' Text
+' ' Text
+'is' Text
+' ' Text
+'also' Text
+' ' Text
+'regarded' Text
+' ' Text
+'as' Text
+' ' Text
+'a' Text
+' ' Text
+'key' Text
+' ' Text
+'element' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'quality of life' Name.Tag
+']]' Punctuation
+' ' Text
+'and' Text
+' ' Text
+'the' Text
+' ' Text
+'attractiveness' Text
+' ' Text
+'of' Text
+' ' Text
+'France' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+' ' Text.Whitespace
+'name' Name.Attribute
+' ' Text.Whitespace
+'=' Operator
+'quality' Literal.String
+'/>' Punctuation
+' ' Text
+'A' Text
+' ' Text
+'French' Text
+' ' Text
+'publication' Text
+',' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Michelin guide' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'awards' Text
+' ' Text
+"''" Generic.Emph
+'Michelin' Generic.Emph
+' ' Generic.Emph
+'stars' Generic.Emph
+"''" Generic.Emph
+' ' Text
+'for' Text
+' ' Text
+'excellence' Text
+' ' Text
+'to' Text
+' ' Text
+'a' Text
+' ' Text
+'select' Text
+' ' Text
+'few' Text
+' ' Text
+'establishments' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'news' Name.Tag
+' ' Text
+'|' Punctuation
+'last' Name.Label
+'=' Operator
+'Fairburn' Text
+',' Text
+' ' Text
+'Carolyn' Text
+' ' Text
+'|' Punctuation
+'date' Name.Label
+'=' Operator
+'29' Text
+' ' Text
+'February' Text
+' ' Text
+'1992' Text
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Fading' Text
+' ' Text
+'stars' Text
+'&nbsp;' Name.Entity
+'–' Text
+' ' Text
+'Michelin' Text
+' ' Text
+'Red' Text
+' ' Text
+'Guide' Text
+' ' Text
+'|' Punctuation
+'work' Name.Label
+'=' Operator
+'[[' Punctuation
+'The Times' Name.Tag
+']]' Punctuation
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'docs' Text
+'.' Text
+'newsbank' Text
+'.' Text
+'com' Text
+'/' Text
+'openurl' Text
+'?' Text
+'ctx_ver' Text
+'=' Text
+'z39' Text
+'.' Text
+'88' Text
+'-' Text
+'2004' Text
+'&' Text
+'rft_id' Text
+'=' Text
+'info' Text
+':' Text
+'sid' Text
+'/' Text
+'iw' Text
+'.' Text
+'newsbank' Text
+'.' Text
+'com' Text
+':' Text
+'UKNB' Text
+':' Text
+'LTIB' Text
+'&' Text
+'rft_val_format' Text
+'=' Text
+'info' Text
+':' Text
+'ofi' Text
+'/' Text
+'fmt' Text
+':' Text
+'kev' Text
+':' Text
+'mtx' Text
+':' Text
+'ctx' Text
+'&' Text
+'rft_dat' Text
+'=' Text
+'0F91F33FE0903F10' Text
+'&' Text
+'svc_dat' Text
+'=' Text
+'InfoWeb' Text
+':' Text
+'aggregated5' Text
+'&' Text
+'req_dat' Text
+'=' Text
+'102CDD40F14C6BDA' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'news' Name.Tag
+' ' Text
+'|' Punctuation
+'last1' Name.Label
+'=' Operator
+'Beale' Text
+',' Text
+' ' Text
+'Victoria' Text
+' ' Text
+'|' Punctuation
+'last2' Name.Label
+'=' Operator
+'Boxell' Text
+',' Text
+' ' Text
+'James' Text
+' ' Text
+'|' Punctuation
+'date' Name.Label
+'=' Operator
+'16' Text
+' ' Text
+'July' Text
+' ' Text
+'2011' Text
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Falling' Text
+' ' Text
+'stars' Text
+' ' Text
+'|' Punctuation
+'work' Name.Label
+'=' Operator
+'[[' Punctuation
+'Financial Times' Name.Tag
+']]' Punctuation
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'docs' Text
+'.' Text
+'newsbank' Text
+'.' Text
+'com' Text
+'/' Text
+'openurl' Text
+'?' Text
+'ctx_ver' Text
+'=' Text
+'z39' Text
+'.' Text
+'88' Text
+'-' Text
+'2004' Text
+'&' Text
+'rft_id' Text
+'=' Text
+'info' Text
+':' Text
+'sid' Text
+'/' Text
+'iw' Text
+'.' Text
+'newsbank' Text
+'.' Text
+'com' Text
+':' Text
+'UKNB' Text
+':' Text
+'FINB' Text
+'&' Text
+'rft_val_format' Text
+'=' Text
+'info' Text
+':' Text
+'ofi' Text
+'/' Text
+'fmt' Text
+':' Text
+'kev' Text
+':' Text
+'mtx' Text
+':' Text
+'ctx' Text
+'&' Text
+'rft_dat' Text
+'=' Text
+'13885C564656C1C8' Text
+'&' Text
+'svc_dat' Text
+'=' Text
+'InfoWeb' Text
+':' Text
+'aggregated5' Text
+'&' Text
+'req_dat' Text
+'=' Text
+'102CDD40F14C6BDA' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'The' Text
+' ' Text
+'acquisition' Text
+' ' Text
+'or' Text
+' ' Text
+'loss' Text
+' ' Text
+'of' Text
+' ' Text
+'a' Text
+' ' Text
+'star' Text
+' ' Text
+'can' Text
+' ' Text
+'have' Text
+' ' Text
+'dramatic' Text
+' ' Text
+'effects' Text
+' ' Text
+'on' Text
+' ' Text
+'the' Text
+' ' Text
+'success' Text
+' ' Text
+'of' Text
+' ' Text
+'a' Text
+' ' Text
+'restaurant' Text
+'.' Text
+' ' Text
+'By' Text
+' ' Text
+'2006' Text
+',' Text
+' ' Text
+'the' Text
+' ' Text
+'Michelin' Text
+' ' Text
+'Guide' Text
+' ' Text
+'had' Text
+' ' Text
+'awarded' Text
+' ' Text
+'620' Text
+' ' Text
+'stars' Text
+' ' Text
+'to' Text
+' ' Text
+'French' Text
+' ' Text
+'restaurants' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Michelin' Text
+' ' Text
+'3' Text
+' ' Text
+'Star' Text
+' ' Text
+'Restaurants' Text
+' ' Text
+'around' Text
+' ' Text
+'the' Text
+' ' Text
+'world' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'3starrestaurants' Text
+'.' Text
+'com' Text
+'/' Text
+'michelin' Text
+'-' Text
+'restaurants' Text
+'-' Text
+'star' Text
+'-' Text
+'guide' Text
+'.' Text
+'asp' Text
+' ' Text
+'|' Punctuation
+'url-status' Name.Label
+'=' Operator
+'dead' Text
+' ' Text
+'|' Punctuation
+'archive-url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'web' Text
+'.' Text
+'archive' Text
+'.' Text
+'org' Text
+'/' Text
+'web' Text
+'/' Text
+'20100724032127' Text
+'/' Text
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'3starrestaurants' Text
+'.' Text
+'com' Text
+'/' Text
+'michelin' Text
+'-' Text
+'restaurants' Text
+'-' Text
+'star' Text
+'-' Text
+'guide' Text
+'.' Text
+'asp' Text
+' ' Text
+'|' Punctuation
+'archive-date' Name.Label
+'=' Operator
+'24' Text
+' ' Text
+'July' Text
+' ' Text
+'2010' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'30' Text
+' ' Text
+'October' Text
+' ' Text
+'2010' Text
+' ' Text
+'|' Punctuation
+'website' Name.Label
+'=' Operator
+'Andy' Text
+' ' Text
+'Hayler' Text
+"'" Text
+'s' Text
+' ' Text
+'3' Text
+' ' Text
+'Star' Text
+' ' Text
+'Restaurant' Text
+' ' Text
+'Guide' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'\n' Text
+
+'\n' Text
+
+'In' Text
+' ' Text
+'addition' Text
+' ' Text
+'to' Text
+' ' Text
+'its' Text
+' ' Text
+'wine' Text
+' ' Text
+'tradition' Text
+',' Text
+' ' Text
+'France' Text
+' ' Text
+'is' Text
+' ' Text
+'also' Text
+' ' Text
+'a' Text
+' ' Text
+'major' Text
+' ' Text
+'producer' Text
+' ' Text
+'of' Text
+' ' Text
+'beer' Text
+' ' Text
+'and' Text
+' ' Text
+'rum' Text
+'.' Text
+' ' Text
+'The' Text
+' ' Text
+'three' Text
+' ' Text
+'main' Text
+' ' Text
+'French' Text
+' ' Text
+'brewing' Text
+' ' Text
+'regions' Text
+' ' Text
+'are' Text
+' ' Text
+'Alsace' Text
+' ' Text
+'(' Text
+'60' Text
+'%' Text
+' ' Text
+'of' Text
+' ' Text
+'national' Text
+' ' Text
+'production' Text
+')' Text
+',' Text
+' ' Text
+'Nord' Text
+'-' Text
+'Pas' Text
+'-' Text
+'de' Text
+'-' Text
+'Calais' Text
+' ' Text
+'and' Text
+' ' Text
+'Lorraine' Text
+'.' Text
+' ' Text
+'[[' Punctuation
+'List of French rums' Name.Tag
+'|' Punctuation
+'French' Text
+' ' Text
+'rum' Text
+']]' Punctuation
+' ' Text
+'is' Text
+' ' Text
+'made' Text
+' ' Text
+'in' Text
+' ' Text
+'distilleries' Text
+' ' Text
+'located' Text
+' ' Text
+'on' Text
+' ' Text
+'islands' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'Atlantic' Text
+' ' Text
+'and' Text
+' ' Text
+'Indian' Text
+' ' Text
+'oceans' Text
+'.' Text
+'{{' Punctuation
+'citation' Name.Tag
+' ' Name.Tag
+'needed' Name.Tag
+'|' Punctuation
+'date' Name.Label
+'=' Operator
+'January' Text
+' ' Text
+'2023' Text
+'}}' Punctuation
+'\n' Text
+
+'\n' Text
+
+'===' Generic.Subheading
+'Sports' Generic.Subheading
+'===' Generic.Subheading
+'\n' Text.Whitespace
+
+'{{' Punctuation
+'Main' Name.Tag
+'|' Punctuation
+'Sport' Text
+' ' Text
+'in' Text
+' ' Text
+'France' Text
+'}}' Punctuation
+'\n' Text
+
+'[[' Punctuation
+'File' Name.Namespace
+':' Punctuation
+'2020 Tour de France, 2nd stage, before km zero.jpg' Name.Tag
+'|' Punctuation
+'thumb' Text
+'|' Punctuation
+'left' Text
+'|' Punctuation
+'alt' Name.Attribute
+'=' Operator
+'The' Text
+' ' Text
+'peloton' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'streets' Text
+' ' Text
+'of' Text
+' ' Text
+'Nice' Text
+' ' Text
+'during' Text
+' ' Text
+'the' Text
+' ' Text
+'2nd' Text
+' ' Text
+'stage' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'Tour' Text
+' ' Text
+'de' Text
+' ' Text
+'France' Text
+' ' Text
+'on' Text
+' ' Text
+'30' Text
+' ' Text
+'August' Text
+' ' Text
+'2020' Text
+'|' Punctuation
+'Starting' Text
+' ' Text
+'in' Text
+' ' Text
+'1903' Text
+',' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Tour de France' Name.Tag
+']]' Punctuation
+' ' Text
+'is' Text
+' ' Text
+'the' Text
+' ' Text
+'oldest' Text
+' ' Text
+'and' Text
+' ' Text
+'most' Text
+' ' Text
+'prestigious' Text
+' ' Text
+'of' Text
+' ' Text
+'[[' Punctuation
+'Grand Tour (cycling)' Name.Tag
+'|' Punctuation
+'Grands' Text
+' ' Text
+'Tours' Text
+']]' Punctuation
+',' Text
+' ' Text
+'and' Text
+' ' Text
+'the' Text
+' ' Text
+'world' Text
+"'" Text
+'s' Text
+' ' Text
+'most' Text
+' ' Text
+'famous' Text
+' ' Text
+'cycling' Text
+' ' Text
+'race' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Union' Text
+' ' Text
+'Cycliste' Text
+' ' Text
+'Internationale' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'uciprotour' Text
+'.' Text
+'com' Text
+'/' Text
+'Modules' Text
+'/' Text
+'BUILTIN' Text
+'/' Text
+'getObject' Text
+'.' Text
+'asp' Text
+'?' Text
+'MenuId' Text
+'=' Text
+'MTcxNw' Text
+'&' Text
+'ObjTypeCode' Text
+'=' Text
+'FILE' Text
+'&' Text
+'type' Text
+'=' Text
+'FILE' Text
+'&' Text
+'id' Text
+'=' Text
+'34028' Text
+'&' Text
+'LangId' Text
+'=' Text
+'1' Text
+' ' Text
+'|' Punctuation
+'url-status' Name.Label
+'=' Operator
+'dead' Text
+' ' Text
+'|' Punctuation
+'archive-url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'web' Text
+'.' Text
+'archive' Text
+'.' Text
+'org' Text
+'/' Text
+'web' Text
+'/' Text
+'20121114060844' Text
+'/' Text
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'uciprotour' Text
+'.' Text
+'com' Text
+'/' Text
+'Modules' Text
+'/' Text
+'BUILTIN' Text
+'/' Text
+'getObject' Text
+'.' Text
+'asp' Text
+'?' Text
+'MenuId' Text
+'=' Text
+'MTcxNw' Text
+'&' Text
+'ObjTypeCode' Text
+'=' Text
+'FILE' Text
+'&' Text
+'type' Text
+'=' Text
+'FILE' Text
+'&' Text
+'id' Text
+'=' Text
+'34028' Text
+'&' Text
+'LangId' Text
+'=' Text
+'1' Text
+' ' Text
+'|' Punctuation
+'archive-date' Name.Label
+'=' Operator
+'14' Text
+' ' Text
+'November' Text
+' ' Text
+'2012' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'19' Text
+' ' Text
+'May' Text
+' ' Text
+'2012' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+']]' Punctuation
+'\n' Text
+
+'\n' Text
+
+'France' Text
+' ' Text
+'hosts' Text
+' ' Text
+'"' Text
+'the' Text
+' ' Text
+'world' Text
+"'" Text
+'s' Text
+' ' Text
+'biggest' Text
+' ' Text
+'annual' Text
+' ' Text
+'sporting' Text
+' ' Text
+'event' Text
+'"' Text
+',' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Tour de France' Name.Tag
+']]' Punctuation
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'date' Name.Label
+'=' Operator
+'6' Text
+' ' Text
+'July' Text
+' ' Text
+'2019' Text
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Tour' Text
+' ' Text
+'De' Text
+' ' Text
+'France' Text
+' ' Text
+'2019' Text
+':' Text
+' ' Text
+'Everything' Text
+' ' Text
+'you' Text
+' ' Text
+'need' Text
+' ' Text
+'to' Text
+' ' Text
+'know' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'bbc' Text
+'.' Text
+'co' Text
+'.' Text
+'uk' Text
+'/' Text
+'newsround' Text
+'/' Text
+'18769169' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'15' Text
+' ' Text
+'July' Text
+' ' Text
+'2019' Text
+' ' Text
+'|' Punctuation
+'publisher' Name.Label
+'=' Operator
+'[[' Punctuation
+'BBC' Name.Tag
+']]' Punctuation
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'Other' Text
+' ' Text
+'popular' Text
+' ' Text
+'sports' Text
+' ' Text
+'played' Text
+' ' Text
+'in' Text
+' ' Text
+'France' Text
+' ' Text
+'include' Text
+':' Text
+' ' Text
+'[[' Punctuation
+'Association football' Name.Tag
+'|' Punctuation
+'football' Text
+']]' Punctuation
+',' Text
+' ' Text
+'[[' Punctuation
+'judo' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'[[' Punctuation
+'tennis' Name.Tag
+']]' Punctuation
+',' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'In' Name.Tag
+' ' Name.Tag
+'lang' Name.Tag
+'|' Punctuation
+'fr' Text
+'}}' Punctuation
+' ' Text
+'[' Punctuation
+'http://www.insee.fr/fr/themes/tableau.asp?ref_id=NATTEF05401&reg_id=0' Name.Label
+' ' Text.Whitespace
+'Les' Text
+' ' Text
+'licences' Text
+' ' Text
+'sportives' Text
+' ' Text
+'en' Text
+' ' Text
+'France' Text
+']' Punctuation
+'&nbsp;' Name.Entity
+'–' Text
+' ' Text
+'Insee' Text
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'[[' Punctuation
+'rugby union' Name.Tag
+']]' Punctuation
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'All' Text
+' ' Text
+'you' Text
+' ' Text
+'need' Text
+' ' Text
+'to' Text
+' ' Text
+'know' Text
+' ' Text
+'about' Text
+' ' Text
+'sport' Text
+' ' Text
+'in' Text
+' ' Text
+'France' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'france' Text
+'-' Text
+'pub' Text
+'.' Text
+'com' Text
+'/' Text
+'esport' Text
+'.' Text
+'htm' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'11' Text
+' ' Text
+'February' Text
+' ' Text
+'2012' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'and' Text
+' ' Text
+'[[' Punctuation
+'pétanque' Name.Tag
+']]' Punctuation
+'.' Text
+' ' Text
+'France' Text
+' ' Text
+'has' Text
+' ' Text
+'hosted' Text
+' ' Text
+'events' Text
+' ' Text
+'such' Text
+' ' Text
+'as' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'1938 FIFA World Cup' Name.Tag
+'|' Punctuation
+'1938' Text
+']]' Punctuation
+' ' Text
+'and' Text
+' ' Text
+'[[' Punctuation
+'1998 FIFA World Cup' Name.Tag
+']]' Punctuation
+'s' Text
+',' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'History' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'World' Text
+' ' Text
+'Cup' Text
+' ' Text
+'Final' Text
+' ' Text
+'Draw' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'fifa' Text
+'.' Text
+'com' Text
+'/' Text
+'mm' Text
+'/' Text
+'document' Text
+'/' Text
+'fifafacts' Text
+'/' Text
+'mcwc' Text
+'/' Text
+'ip' Text
+'-' Text
+'201_10e_fwcdraw' Text
+'-' Text
+'history_8842' Text
+'.' Text
+'pdf' Text
+' ' Text
+'|' Punctuation
+'url-status' Name.Label
+'=' Operator
+'dead' Text
+' ' Text
+'|' Punctuation
+'archive-url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'web' Text
+'.' Text
+'archive' Text
+'.' Text
+'org' Text
+'/' Text
+'web' Text
+'/' Text
+'20080226235749' Text
+'/' Text
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'fifa' Text
+'.' Text
+'com' Text
+'/' Text
+'mm' Text
+'/' Text
+'document' Text
+'/' Text
+'fifafacts' Text
+'/' Text
+'mcwc' Text
+'/' Text
+'ip' Text
+'-' Text
+'201_10e_fwcdraw' Text
+'-' Text
+'history_8842' Text
+'.' Text
+'pdf' Text
+' ' Text
+'|' Punctuation
+'archive-date' Name.Label
+'=' Operator
+'26' Text
+' ' Text
+'February' Text
+' ' Text
+'2008' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'22' Text
+' ' Text
+'July' Text
+' ' Text
+'2011' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'2007 Rugby World Cup' Name.Tag
+']]' Punctuation
+',' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'[' Punctuation
+'https://web.archive.org/web/20110606170717/http://www.rugby.com.au/news/2003_april/france_wins_right_to_host_the_2007_rugby_wor_15381%2C3851.html' Name.Label
+' ' Text.Whitespace
+'France' Text
+' ' Text
+'wins' Text
+' ' Text
+'right' Text
+' ' Text
+'to' Text
+' ' Text
+'host' Text
+' ' Text
+'the' Text
+' ' Text
+'2007' Text
+' ' Text
+'rugby' Text
+' ' Text
+'world' Text
+' ' Text
+'cup' Text
+']' Punctuation
+'.' Text
+' ' Text
+'Associated' Text
+' ' Text
+'Press' Text
+'.' Text
+' ' Text
+'11' Text
+' ' Text
+'April' Text
+' ' Text
+'2003' Text
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'and' Text
+' ' Text
+'will' Text
+' ' Text
+'host' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'2023 Rugby World Cup' Name.Tag
+']]' Punctuation
+'.' Text
+' ' Text
+'The' Text
+' ' Text
+'country' Text
+' ' Text
+'also' Text
+' ' Text
+'hosted' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+"1960 European Nations' Cup" Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'[[' Punctuation
+'UEFA Euro 1984' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'[[' Punctuation
+'UEFA Euro 2016' Name.Tag
+']]' Punctuation
+' ' Text
+'and' Text
+' ' Text
+'[[' Punctuation
+"2019 FIFA Women's World Cup" Name.Tag
+']]' Punctuation
+'.' Text
+' ' Text
+'The' Text
+' ' Text
+'[[' Punctuation
+'Stade de France' Name.Tag
+']]' Punctuation
+' ' Text
+'in' Text
+' ' Text
+'[[' Punctuation
+'Saint-Denis, Seine-Saint-Denis' Name.Tag
+'|' Punctuation
+'Saint' Text
+'-' Text
+'Denis' Text
+']]' Punctuation
+' ' Text
+'is' Text
+' ' Text
+'France' Text
+"'" Text
+'s' Text
+' ' Text
+'largest' Text
+' ' Text
+'stadium' Text
+' ' Text
+'and' Text
+' ' Text
+'was' Text
+' ' Text
+'the' Text
+' ' Text
+'venue' Text
+' ' Text
+'for' Text
+' ' Text
+'the' Text
+' ' Text
+'1998' Text
+' ' Text
+'FIFA' Text
+' ' Text
+'World' Text
+' ' Text
+'Cup' Text
+' ' Text
+'and' Text
+' ' Text
+'2007' Text
+' ' Text
+'Rugby' Text
+' ' Text
+'World' Text
+' ' Text
+'Cup' Text
+' ' Text
+'finals' Text
+'.' Text
+' ' Text
+'Since' Text
+' ' Text
+'1923' Text
+',' Text
+' ' Text
+'France' Text
+' ' Text
+'is' Text
+' ' Text
+'famous' Text
+' ' Text
+'for' Text
+' ' Text
+'its' Text
+' ' Text
+'[[' Punctuation
+'24 Hours of Le Mans' Name.Tag
+']]' Punctuation
+' ' Text
+'[[' Punctuation
+'sports car racing' Name.Tag
+'|' Punctuation
+'sports' Text
+' ' Text
+'car' Text
+']]' Punctuation
+' ' Text
+'[[' Punctuation
+'endurance racing (motorsport)' Name.Tag
+'|' Punctuation
+'endurance' Text
+' ' Text
+'race' Text
+']]' Punctuation
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Une' Text
+' ' Text
+'course' Text
+' ' Text
+'légendaire' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'lemans' Text
+'.' Text
+'org' Text
+'/' Text
+'fr' Text
+'/' Text
+'courses' Text
+'/' Text
+'24h' Text
+'/' Text
+'histoire' Text
+'.' Text
+'html' Text
+' ' Text
+'|' Punctuation
+'archive-url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'web' Text
+'.' Text
+'archive' Text
+'.' Text
+'org' Text
+'/' Text
+'web' Text
+'/' Text
+'20130116131353' Text
+'/' Text
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'lemans' Text
+'.' Text
+'org' Text
+'/' Text
+'fr' Text
+'/' Text
+'courses' Text
+'/' Text
+'24h' Text
+'/' Text
+'histoire' Text
+'.' Text
+'html' Text
+' ' Text
+'|' Punctuation
+'archive-date' Name.Label
+'=' Operator
+'16' Text
+' ' Text
+'January' Text
+' ' Text
+'2013' Text
+' ' Text
+'|' Punctuation
+'language' Name.Label
+'=' Operator
+'fr' Text
+'}}' Punctuation
+'&nbsp;' Name.Entity
+'–' Text
+' ' Text
+'[' Punctuation
+'http://www.lemans.org' Name.Label
+' ' Text.Whitespace
+'Site' Text
+' ' Text
+'officiel' Text
+' ' Text
+'du' Text
+' ' Text
+'24' Text
+' ' Text
+'heures' Text
+' ' Text
+'du' Text
+' ' Text
+'Mans' Text
+']' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'Several' Text
+' ' Text
+'major' Text
+' ' Text
+'tennis' Text
+' ' Text
+'tournaments' Text
+' ' Text
+'take' Text
+' ' Text
+'place' Text
+' ' Text
+'in' Text
+' ' Text
+'France' Text
+',' Text
+' ' Text
+'including' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Paris Masters' Name.Tag
+']]' Punctuation
+' ' Text
+'and' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'French Open' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'one' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'four' Text
+' ' Text
+'[[' Punctuation
+'Grand Slam (tennis)' Name.Tag
+'|' Punctuation
+'Grand' Text
+' ' Text
+'Slam' Text
+']]' Punctuation
+' ' Text
+'tournaments' Text
+'.' Text
+' ' Text
+'French' Text
+' ' Text
+'[[' Punctuation
+'martial arts' Name.Tag
+']]' Punctuation
+' ' Text
+'include' Text
+' ' Text
+'[[' Punctuation
+'Savate' Name.Tag
+']]' Punctuation
+' ' Text
+'and' Text
+' ' Text
+'[[' Punctuation
+'Fencing' Name.Tag
+']]' Punctuation
+'.' Text
+'\n' Text
+
+'\n' Text
+
+'France' Text
+' ' Text
+'has' Text
+' ' Text
+'a' Text
+' ' Text
+'close' Text
+' ' Text
+'association' Text
+' ' Text
+'with' Text
+' ' Text
+'the' Text
+' ' Text
+'Modern' Text
+' ' Text
+'Olympic' Text
+' ' Text
+'Games' Text
+';' Text
+' ' Text
+'it' Text
+' ' Text
+'was' Text
+' ' Text
+'a' Text
+' ' Text
+'French' Text
+' ' Text
+'aristocrat' Text
+',' Text
+' ' Text
+'Baron' Text
+' ' Text
+'[[' Punctuation
+'Pierre de Coubertin' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'who' Text
+' ' Text
+'suggested' Text
+' ' Text
+'the' Text
+' ' Text
+'Games' Text
+"'" Text
+' ' Text
+'revival' Text
+',' Text
+' ' Text
+'at' Text
+' ' Text
+'the' Text
+' ' Text
+'end' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'19th' Text
+' ' Text
+'century' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'book' Name.Tag
+' ' Text
+'|' Punctuation
+'last' Name.Label
+'=' Operator
+'Hill' Text
+' ' Text
+'|' Punctuation
+'first' Name.Label
+'=' Operator
+'Christopher' Text
+' ' Text
+'R' Text
+'.' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'books' Text
+'.' Text
+'google' Text
+'.' Text
+'com' Text
+'/' Text
+'books' Text
+'?' Text
+'id' Text
+'=' Text
+'0o' Text
+'-' Text
+'9AAAAIAAJ' Text
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Olympic' Text
+' ' Text
+'Politics' Text
+' ' Text
+'|' Punctuation
+'publisher' Name.Label
+'=' Operator
+'Manchester' Text
+' ' Text
+'University' Text
+' ' Text
+'Press' Text
+' ' Text
+'ND' Text
+' ' Text
+'|' Punctuation
+'year' Name.Label
+'=' Operator
+'1996' Text
+' ' Text
+'|' Punctuation
+'isbn' Name.Label
+'=' Operator
+'978' Text
+'-' Text
+'0' Text
+'-' Text
+'7190' Text
+'-' Text
+'4451' Text
+'-' Text
+'9' Text
+' ' Text
+'|' Punctuation
+'page' Name.Label
+'=' Operator
+'5' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'5' Text
+' ' Text
+'July' Text
+' ' Text
+'2011' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'<' Punctuation
+'ref' Name.Tag
+' ' Text.Whitespace
+'name' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+'Olympic' Literal.String.Double
+'"' Literal.String.Double
+'>' Punctuation
+'[' Punctuation
+'http://www.worldatlas.com/aatlas/infopage/olympic.htm' Name.Label
+' ' Text.Whitespace
+'Olympic' Text
+' ' Text
+'History' Text
+']' Punctuation
+'&nbsp;' Name.Entity
+'–' Text
+' ' Text
+'World' Text
+' ' Text
+'Atlas' Text
+' ' Text
+'of' Text
+' ' Text
+'Travel' Text
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'After' Text
+' ' Text
+'[[' Punctuation
+'Athens' Name.Tag
+']]' Punctuation
+' ' Text
+'was' Text
+' ' Text
+'awarded' Text
+' ' Text
+'the' Text
+' ' Text
+'first' Text
+' ' Text
+'Games' Text
+',' Text
+' ' Text
+'in' Text
+' ' Text
+'reference' Text
+' ' Text
+'to' Text
+' ' Text
+'the' Text
+' ' Text
+'Olympics' Text
+"'" Text
+' ' Text
+'Greek' Text
+' ' Text
+'origins' Text
+',' Text
+' ' Text
+'Paris' Text
+' ' Text
+'hosted' Text
+' ' Text
+'the' Text
+' ' Text
+'second' Text
+' ' Text
+'Games' Text
+' ' Text
+'[[' Punctuation
+'1900 Summer Olympics' Name.Tag
+'|' Punctuation
+'in' Text
+' ' Text
+'1900' Text
+']]' Punctuation
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'date' Name.Label
+'=' Operator
+'27' Text
+' ' Text
+'August' Text
+' ' Text
+'2018' Text
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Paris' Text
+' ' Text
+'1900' Text
+' ' Text
+'Summer' Text
+' ' Text
+'Olympics' Text
+'.' Text
+' ' Text
+'Official' Text
+' ' Text
+'Site' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'Olympic' Text
+' ' Text
+'Movement' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'olympic' Text
+'.' Text
+'org' Text
+'/' Text
+'paris' Text
+'-' Text
+'1900' Text
+'-' Text
+'summer' Text
+'-' Text
+'olympics' Text
+' ' Text
+'|' Punctuation
+'publisher' Name.Label
+'=' Operator
+'International' Text
+' ' Text
+'Olympic' Text
+' ' Text
+'Committee' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'Paris' Text
+' ' Text
+'was' Text
+' ' Text
+'the' Text
+' ' Text
+'first' Text
+' ' Text
+'home' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'International Olympic Committee' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'before' Text
+' ' Text
+'it' Text
+' ' Text
+'moved' Text
+' ' Text
+'to' Text
+' ' Text
+'[[' Punctuation
+'Lausanne' Name.Tag
+']]' Punctuation
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'[' Punctuation
+'http://www.lausanne-tourisme.ch/view.asp?DomID=63416&Language=E' Name.Label
+' ' Text.Whitespace
+'Lausanne' Text
+',' Text
+' ' Text
+'olympic' Text
+' ' Text
+'capital' Text
+']' Punctuation
+'&nbsp;' Name.Entity
+'–' Text
+' ' Text
+'Tourism' Text
+' ' Text
+'in' Text
+' ' Text
+'Lausanne' Text
+' ' Text
+'{{' Punctuation
+'Webarchive' Name.Tag
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'web' Text
+'.' Text
+'archive' Text
+'.' Text
+'org' Text
+'/' Text
+'web' Text
+'/' Text
+'20071006220349' Text
+'/' Text
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'lausanne' Text
+'-' Text
+'tourisme' Text
+'.' Text
+'ch' Text
+'/' Text
+'view' Text
+'.' Text
+'asp' Text
+'?' Text
+'DomID' Text
+'=' Text
+'63416' Text
+'&' Text
+'Language' Text
+'=' Text
+'E' Text
+'|' Punctuation
+'date' Name.Label
+'=' Operator
+'6' Text
+' ' Text
+'October' Text
+' ' Text
+'2007' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'Since' Text
+' ' Text
+'1900' Text
+',' Text
+' ' Text
+'France' Text
+' ' Text
+'has' Text
+' ' Text
+'hosted' Text
+' ' Text
+'the' Text
+' ' Text
+'Olympics' Text
+' ' Text
+'on' Text
+' ' Text
+'4' Text
+' ' Text
+'further' Text
+' ' Text
+'occasions' Text
+':' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'1924 Summer Olympics' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'again' Text
+' ' Text
+'in' Text
+' ' Text
+'Paris' Text
+'<' Punctuation
+'ref' Name.Tag
+' ' Text.Whitespace
+'name' Name.Attribute
+'=' Operator
+'Olympic' Literal.String
+'/>' Punctuation
+' ' Text
+'and' Text
+' ' Text
+'three' Text
+' ' Text
+'[[' Punctuation
+'Winter Olympic Games' Name.Tag
+'|' Punctuation
+'Winter' Text
+' ' Text
+'Games' Text
+']]' Punctuation
+' ' Text
+'(' Text
+'[[' Punctuation
+'1924 Winter Olympics' Name.Tag
+'|' Punctuation
+'1924' Text
+']]' Punctuation
+' ' Text
+'in' Text
+' ' Text
+'[[' Punctuation
+'Chamonix' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'[[' Punctuation
+'1968 Winter Olympics' Name.Tag
+'|' Punctuation
+'1968' Text
+']]' Punctuation
+' ' Text
+'in' Text
+' ' Text
+'[[' Punctuation
+'Grenoble' Name.Tag
+']]' Punctuation
+' ' Text
+'and' Text
+' ' Text
+'[[' Punctuation
+'1992 Winter Olympics' Name.Tag
+'|' Punctuation
+'1992' Text
+']]' Punctuation
+' ' Text
+'in' Text
+' ' Text
+'[[' Punctuation
+'Albertville' Name.Tag
+']]' Punctuation
+')' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+' ' Text.Whitespace
+'name' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+'Olympic' Literal.String.Double
+'"' Literal.String.Double
+' ' Text.Whitespace
+'/>' Punctuation
+' ' Text
+'Similar' Text
+' ' Text
+'to' Text
+' ' Text
+'the' Text
+' ' Text
+'Olympics' Text
+',' Text
+' ' Text
+'France' Text
+' ' Text
+'introduced' Text
+' ' Text
+'Olympics' Text
+' ' Text
+'for' Text
+' ' Text
+'the' Text
+' ' Text
+'deaf' Text
+' ' Text
+'people' Text
+' ' Text
+'(' Text
+'Deaflympics' Text
+')' Text
+' ' Text
+'in' Text
+' ' Text
+'[[' Punctuation
+'1924 Summer Deaflympics' Name.Tag
+'|' Punctuation
+'1924' Text
+']]' Punctuation
+' ' Text
+'with' Text
+' ' Text
+'the' Text
+' ' Text
+'idea' Text
+' ' Text
+'of' Text
+' ' Text
+'a' Text
+' ' Text
+'French' Text
+' ' Text
+'deaf' Text
+' ' Text
+'car' Text
+' ' Text
+'mechanic' Text
+',' Text
+' ' Text
+'[[' Punctuation
+'Eugène Rubens-Alcais' Name.Tag
+']]' Punctuation
+' ' Text
+'who' Text
+' ' Text
+'paved' Text
+' ' Text
+'the' Text
+' ' Text
+'way' Text
+' ' Text
+'to' Text
+' ' Text
+'organise' Text
+' ' Text
+'the' Text
+' ' Text
+'inaugural' Text
+' ' Text
+'edition' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Summer Deaflympics' Name.Tag
+']]' Punctuation
+' ' Text
+'in' Text
+' ' Text
+'Paris' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'news' Name.Tag
+' ' Text
+'|' Punctuation
+'date' Name.Label
+'=' Operator
+'29' Text
+' ' Text
+'December' Text
+' ' Text
+'2004' Text
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Deaflympics' Text
+' ' Text
+'lowdown' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'news' Text
+'.' Text
+'bbc' Text
+'.' Text
+'co' Text
+'.' Text
+'uk' Text
+'/' Text
+'sport2' Text
+'/' Text
+'hi' Text
+'/' Text
+'other_sports' Text
+'/' Text
+'disability_sport' Text
+'/' Text
+'4113957' Text
+'.' Text
+'stm' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'8' Text
+' ' Text
+'July' Text
+' ' Text
+'2018' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'\n' Text
+
+'[[' Punctuation
+'File' Name.Namespace
+':' Punctuation
+'Zinedine Zidane 2015 (cropped).jpg' Name.Tag
+'|' Punctuation
+'thumb' Text
+'|' Punctuation
+'upright' Text
+'|' Punctuation
+'[[' Punctuation
+'Zinedine Zidane' Name.Tag
+'|' Punctuation
+'Zidane' Text
+']]' Punctuation
+' ' Text
+'was' Text
+' ' Text
+'named' Text
+' ' Text
+'the' Text
+' ' Text
+'best' Text
+' ' Text
+'European' Text
+' ' Text
+'footballer' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'past' Text
+' ' Text
+'50' Text
+' ' Text
+'years' Text
+' ' Text
+'in' Text
+' ' Text
+'a' Text
+' ' Text
+'2004' Text
+' ' Text
+'[[' Punctuation
+'UEFA' Name.Tag
+']]' Punctuation
+' ' Text
+'poll' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'[' Punctuation
+'https://www.theguardian.com/football/2004/apr/23/newsstory.sport5' Name.Label
+' ' Text.Whitespace
+'"' Text
+'Zidane' Text
+' ' Text
+'voted' Text
+' ' Text
+'Europe' Text
+"'" Text
+'s' Text
+' ' Text
+'best' Text
+' ' Text
+'ever' Text
+'"' Text
+']' Punctuation
+' ' Text
+"''" Generic.Emph
+'The' Generic.Emph
+' ' Generic.Emph
+'Guardian' Generic.Emph
+"''" Generic.Emph
+'.' Text
+' ' Text
+'Retrieved' Text
+' ' Text
+'17' Text
+' ' Text
+'November' Text
+' ' Text
+'2013' Text
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+']]' Punctuation
+'\n' Text
+
+'\n' Text
+
+'Both' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'France national football team' Name.Tag
+'|' Punctuation
+'national' Text
+' ' Text
+'football' Text
+' ' Text
+'team' Text
+']]' Punctuation
+' ' Text
+'and' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'France national rugby union team' Name.Tag
+'|' Punctuation
+'national' Text
+' ' Text
+'rugby' Text
+' ' Text
+'union' Text
+' ' Text
+'team' Text
+']]' Punctuation
+' ' Text
+'are' Text
+' ' Text
+'nicknamed' Text
+' ' Text
+'"' Text
+"''" Generic.Emph
+'Les' Generic.Emph
+' ' Generic.Emph
+'Bleus' Generic.Emph
+"''" Generic.Emph
+'"' Text
+' ' Text
+'in' Text
+' ' Text
+'reference' Text
+' ' Text
+'to' Text
+' ' Text
+'the' Text
+' ' Text
+'team' Text
+"'" Text
+'s' Text
+' ' Text
+'shirt' Text
+' ' Text
+'colour' Text
+' ' Text
+'as' Text
+' ' Text
+'well' Text
+' ' Text
+'as' Text
+' ' Text
+'the' Text
+' ' Text
+'national' Text
+' ' Text
+'[[' Punctuation
+'Flag of France' Name.Tag
+'|' Punctuation
+'French' Text
+' ' Text
+'tricolour' Text
+' ' Text
+'flag' Text
+']]' Punctuation
+'.' Text
+' ' Text
+'Football' Text
+' ' Text
+'is' Text
+' ' Text
+'the' Text
+' ' Text
+'most' Text
+' ' Text
+'popular' Text
+' ' Text
+'sport' Text
+' ' Text
+'in' Text
+' ' Text
+'France' Text
+',' Text
+' ' Text
+'with' Text
+' ' Text
+'over' Text
+' ' Text
+'1' Text
+',' Text
+'800' Text
+',' Text
+'000' Text
+' ' Text
+'registered' Text
+' ' Text
+'players' Text
+' ' Text
+'and' Text
+' ' Text
+'over' Text
+' ' Text
+'18' Text
+',' Text
+'000' Text
+' ' Text
+'registered' Text
+' ' Text
+'clubs' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Fédération' Text
+' ' Text
+'Française' Text
+' ' Text
+'de' Text
+' ' Text
+'Football' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'fff' Text
+'.' Text
+'fr' Text
+'/' Text
+' ' Text
+'|' Punctuation
+'website' Name.Label
+'=' Operator
+'fff' Text
+'.' Text
+'fr' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'The' Text
+' ' Text
+'football' Text
+' ' Text
+'team' Text
+' ' Text
+'is' Text
+' ' Text
+'among' Text
+' ' Text
+'the' Text
+' ' Text
+'most' Text
+' ' Text
+'successful' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'world' Text
+',' Text
+' ' Text
+'with' Text
+' ' Text
+'two' Text
+' ' Text
+'[[' Punctuation
+'FIFA World Cup' Name.Tag
+']]' Punctuation
+' ' Text
+'victories' Text
+' ' Text
+'in' Text
+' ' Text
+'1998' Text
+' ' Text
+'and' Text
+' ' Text
+'2018' Text
+',' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'news' Name.Tag
+' ' Text
+'|' Punctuation
+'last' Name.Label
+'=' Operator
+'McNulty' Text
+' ' Text
+'|' Punctuation
+'first' Name.Label
+'=' Operator
+'Phil' Text
+' ' Text
+'|' Punctuation
+'date' Name.Label
+'=' Operator
+'15' Text
+' ' Text
+'July' Text
+' ' Text
+'2018' Text
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'World' Text
+' ' Text
+'Cup' Text
+' ' Text
+'2018' Text
+':' Text
+' ' Text
+'France' Text
+' ' Text
+'beat' Text
+' ' Text
+'Croatia' Text
+' ' Text
+'4' Text
+'–' Text
+'2' Text
+' ' Text
+'in' Text
+' ' Text
+'World' Text
+' ' Text
+'Cup' Text
+' ' Text
+'final' Text
+' ' Text
+'|' Punctuation
+'work' Name.Label
+'=' Operator
+'BBC' Text
+' ' Text
+'Sport' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'bbc' Text
+'.' Text
+'com' Text
+'/' Text
+'sport' Text
+'/' Text
+'football' Text
+'/' Text
+'44754965' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'15' Text
+' ' Text
+'July' Text
+' ' Text
+'2018' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'two' Text
+' ' Text
+'FIFA' Text
+' ' Text
+'World' Text
+' ' Text
+'Cup' Text
+' ' Text
+'second' Text
+' ' Text
+'places' Text
+' ' Text
+'in' Text
+' ' Text
+'2006' Text
+' ' Text
+'and' Text
+' ' Text
+'2022' Text
+',' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'news' Name.Tag
+' ' Text
+'|' Punctuation
+'last' Name.Label
+'=' Operator
+'Stevenson' Text
+' ' Text
+'|' Punctuation
+'first' Name.Label
+'=' Operator
+'Jonathan' Text
+' ' Text
+'|' Punctuation
+'date' Name.Label
+'=' Operator
+'9' Text
+' ' Text
+'July' Text
+' ' Text
+'2006' Text
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Zidane' Text
+' ' Text
+'off' Text
+' ' Text
+'as' Text
+' ' Text
+'Italy' Text
+' ' Text
+'win' Text
+' ' Text
+'World' Text
+' ' Text
+'Cup' Text
+' ' Text
+'|' Punctuation
+'work' Name.Label
+'=' Operator
+'BBC' Text
+' ' Text
+'News' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'news' Text
+'.' Text
+'bbc' Text
+'.' Text
+'co' Text
+'.' Text
+'uk' Text
+'/' Text
+'sport2' Text
+'/' Text
+'hi' Text
+'/' Text
+'football' Text
+'/' Text
+'world_cup_2006' Text
+'/' Text
+'4991652' Text
+'.' Text
+'stm' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'21' Text
+' ' Text
+'July' Text
+' ' Text
+'2011' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'and' Text
+' ' Text
+'two' Text
+' ' Text
+'[[' Punctuation
+'UEFA European Championship' Name.Tag
+']]' Punctuation
+'s' Text
+' ' Text
+'in' Text
+' ' Text
+'[[' Punctuation
+'UEFA Euro 1984' Name.Tag
+'|' Punctuation
+'1984' Text
+']]' Punctuation
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'[' Punctuation
+'http://www.uefa.com/uefaeuro/history/season=1984/index.html' Name.Label
+' ' Text.Whitespace
+'1984' Text
+':' Text
+' ' Text
+'Platini' Text
+' ' Text
+'shines' Text
+' ' Text
+'for' Text
+' ' Text
+'flamboyant' Text
+' ' Text
+'France' Text
+']' Punctuation
+'.' Text
+' ' Text
+'UEFA' Text
+' ' Text
+'{{' Punctuation
+'Webarchive' Name.Tag
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'web' Text
+'.' Text
+'archive' Text
+'.' Text
+'org' Text
+'/' Text
+'web' Text
+'/' Text
+'20120507185106' Text
+'/' Text
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'uefa' Text
+'.' Text
+'com' Text
+'/' Text
+'uefaeuro' Text
+'/' Text
+'history' Text
+'/' Text
+'season' Text
+'%' Text
+'3D1984' Text
+'/' Text
+'index' Text
+'.' Text
+'html' Text
+'|' Punctuation
+'date' Name.Label
+'=' Operator
+' ' Text
+'7' Text
+' ' Text
+'May' Text
+' ' Text
+'2012' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'and' Text
+' ' Text
+'[[' Punctuation
+'UEFA Euro 2000' Name.Tag
+'|' Punctuation
+'2000' Text
+']]' Punctuation
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'[' Punctuation
+'http://www.uefa.com/uefaeuro/history/season=2000/index.html' Name.Label
+' ' Text.Whitespace
+'2000' Text
+':' Text
+' ' Text
+'Trezeguet' Text
+' ' Text
+'strikes' Text
+' ' Text
+'gold' Text
+' ' Text
+'for' Text
+' ' Text
+'France' Text
+']' Punctuation
+'.' Text
+' ' Text
+'UEFA' Text
+' ' Text
+'{{' Punctuation
+'Webarchive' Name.Tag
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'web' Text
+'.' Text
+'archive' Text
+'.' Text
+'org' Text
+'/' Text
+'web' Text
+'/' Text
+'20111028011653' Text
+'/' Text
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'uefa' Text
+'.' Text
+'com' Text
+'/' Text
+'uefaeuro' Text
+'/' Text
+'history' Text
+'/' Text
+'season' Text
+'%' Text
+'3D2000' Text
+'/' Text
+'index' Text
+'.' Text
+'html' Text
+'|' Punctuation
+'date' Name.Label
+'=' Operator
+'28' Text
+' ' Text
+'October' Text
+' ' Text
+'2011' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'\n' Text
+
+'\n' Text
+
+'The' Text
+' ' Text
+'top' Text
+' ' Text
+'national' Text
+' ' Text
+'football' Text
+' ' Text
+'club' Text
+' ' Text
+'competition' Text
+' ' Text
+'is' Text
+' ' Text
+'[[' Punctuation
+'Ligue 1' Name.Tag
+']]' Punctuation
+'.' Text
+' ' Text
+'France' Text
+' ' Text
+'has' Text
+' ' Text
+'produced' Text
+' ' Text
+'some' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'greatest' Text
+' ' Text
+'players' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'world' Text
+',' Text
+' ' Text
+'including' Text
+' ' Text
+'three' Text
+'-' Text
+'time' Text
+' ' Text
+'FIFA' Text
+' ' Text
+'World' Text
+' ' Text
+'Player' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'Year' Text
+' ' Text
+'[[' Punctuation
+'Zinedine Zidane' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'three' Text
+'-' Text
+'time' Text
+' ' Text
+'[[' Punctuation
+"Ballon d'Or" Name.Tag
+']]' Punctuation
+' ' Text
+'recipient' Text
+' ' Text
+'[[' Punctuation
+'Michel Platini' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'record' Text
+' ' Text
+'holder' Text
+' ' Text
+'for' Text
+' ' Text
+'most' Text
+' ' Text
+'goals' Text
+' ' Text
+'scored' Text
+' ' Text
+'at' Text
+' ' Text
+'a' Text
+' ' Text
+'World' Text
+' ' Text
+'Cup' Text
+' ' Text
+'[[' Punctuation
+'Just Fontaine' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'first' Text
+' ' Text
+'football' Text
+' ' Text
+'player' Text
+' ' Text
+'to' Text
+' ' Text
+'receive' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Legion of Honour' Name.Tag
+'|' Punctuation
+'Légion' Text
+' ' Text
+'d' Text
+"'" Text
+'honneur' Text
+']]' Punctuation
+' ' Text
+'[[' Punctuation
+'Raymond Kopa' Name.Tag
+']]' Punctuation
+',' Text
+' ' Text
+'and' Text
+' ' Text
+'the' Text
+' ' Text
+'record' Text
+' ' Text
+'goalscorer' Text
+' ' Text
+'for' Text
+' ' Text
+'the' Text
+' ' Text
+'French' Text
+' ' Text
+'national' Text
+' ' Text
+'team' Text
+' ' Text
+'[[' Punctuation
+'Thierry Henry' Name.Tag
+']]' Punctuation
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'[' Punctuation
+'http://news.bbc.co.uk/sport1/hi/football/8826244.stm' Name.Label
+' ' Text.Whitespace
+'"' Text
+'Thierry' Text
+' ' Text
+'Henry' Text
+' ' Text
+'calls' Text
+' ' Text
+'end' Text
+' ' Text
+'to' Text
+' ' Text
+'France' Text
+' ' Text
+'career' Text
+'"' Text
+']' Punctuation
+'.' Text
+' ' Text
+'BBC' Text
+' ' Text
+'Sport' Text
+'.' Text
+' ' Text
+'Retrieved' Text
+' ' Text
+'29' Text
+' ' Text
+'October' Text
+' ' Text
+'2014' Text
+'.' Text
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'\n' Text
+
+'\n' Text
+
+'The' Text
+' ' Text
+'French' Text
+' ' Text
+'Open' Text
+',' Text
+' ' Text
+'also' Text
+' ' Text
+'called' Text
+' ' Text
+'Roland' Text
+'-' Text
+'Garros' Text
+',' Text
+' ' Text
+'is' Text
+' ' Text
+'a' Text
+' ' Text
+'major' Text
+' ' Text
+'[[' Punctuation
+'tennis' Name.Tag
+']]' Punctuation
+' ' Text
+'tournament' Text
+' ' Text
+'held' Text
+' ' Text
+'over' Text
+' ' Text
+'two' Text
+' ' Text
+'weeks' Text
+' ' Text
+'between' Text
+' ' Text
+'late' Text
+' ' Text
+'May' Text
+' ' Text
+'and' Text
+' ' Text
+'early' Text
+' ' Text
+'June' Text
+' ' Text
+'at' Text
+' ' Text
+'the' Text
+' ' Text
+'[[' Punctuation
+'Stade Roland Garros' Name.Tag
+'|' Punctuation
+'Stade' Text
+' ' Text
+'Roland' Text
+'-' Text
+'Garros' Text
+']]' Punctuation
+' ' Text
+'in' Text
+' ' Text
+'Paris' Text
+'.' Text
+' ' Text
+'It' Text
+' ' Text
+'is' Text
+' ' Text
+'the' Text
+' ' Text
+'premier' Text
+' ' Text
+'clay' Text
+' ' Text
+'court' Text
+' ' Text
+'tennis' Text
+' ' Text
+'championship' Text
+' ' Text
+'event' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'world' Text
+' ' Text
+'and' Text
+' ' Text
+'the' Text
+' ' Text
+'second' Text
+' ' Text
+'of' Text
+' ' Text
+'four' Text
+' ' Text
+'annual' Text
+' ' Text
+'[[' Punctuation
+'Grand Slam (tennis)' Name.Tag
+'|' Punctuation
+'Grand' Text
+' ' Text
+'Slam' Text
+']]' Punctuation
+' ' Text
+'tournaments' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+' ' Text
+'|' Punctuation
+'last' Name.Label
+'=' Operator
+'Clarey' Text
+' ' Text
+'|' Punctuation
+'first' Name.Label
+'=' Operator
+'Christopher' Text
+' ' Text
+'|' Punctuation
+'date' Name.Label
+'=' Operator
+'30' Text
+' ' Text
+'June' Text
+' ' Text
+'2001' Text
+' ' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Change' Text
+' ' Text
+'Seems' Text
+' ' Text
+'Essential' Text
+' ' Text
+'to' Text
+' ' Text
+'Escape' Text
+' ' Text
+'Extinction' Text
+':' Text
+' ' Text
+'Wimbledon' Text
+':' Text
+' ' Text
+'World' Text
+"'" Text
+'s' Text
+' ' Text
+'Most' Text
+' ' Text
+'Loved' Text
+' ' Text
+'Dinosaur' Text
+' ' Text
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'iht' Text
+'.' Text
+'com' Text
+'/' Text
+'articles' Text
+'/' Text
+'2001' Text
+'/' Text
+'06' Text
+'/' Text
+'30' Text
+'/' Text
+'a20_16' Text
+'.' Text
+'php' Text
+' ' Text
+'|' Punctuation
+'archive-url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'web' Text
+'.' Text
+'archive' Text
+'.' Text
+'org' Text
+'/' Text
+'web' Text
+'/' Text
+'20071016123550' Text
+'/' Text
+'http' Text
+':' Text
+'/' Text
+'/' Text
+'iht' Text
+'.' Text
+'com' Text
+'/' Text
+'articles' Text
+'/' Text
+'2001' Text
+'/' Text
+'06' Text
+'/' Text
+'30' Text
+'/' Text
+'a20_16' Text
+'.' Text
+'php' Text
+' ' Text
+'<!-- Bot retrieved archive -->' Comment.Multiline
+' ' Text
+'|' Punctuation
+'archive-date' Name.Label
+'=' Operator
+'16' Text
+' ' Text
+'October' Text
+' ' Text
+'2007' Text
+' ' Text
+'|' Punctuation
+'access-date' Name.Label
+'=' Operator
+'26' Text
+' ' Text
+'February' Text
+' ' Text
+'2018' Text
+' ' Text
+'|' Punctuation
+'website' Name.Label
+'=' Operator
+'[[' Punctuation
+'International Herald Tribune' Name.Tag
+']]' Punctuation
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'\n' Text
+
+'\n' Text
+
+'[[' Punctuation
+'Rugby union' Name.Tag
+']]' Punctuation
+' ' Text
+'is' Text
+' ' Text
+'popular' Text
+',' Text
+' ' Text
+'particularly' Text
+' ' Text
+'in' Text
+' ' Text
+'Paris' Text
+' ' Text
+'and' Text
+' ' Text
+'the' Text
+' ' Text
+'southwest' Text
+' ' Text
+'of' Text
+' ' Text
+'France' Text
+'.' Text
+'<' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'[' Punctuation
+'https://web.archive.org/web/20090615002946/http://www.123voyage.com/realsw/tosee/rugby.htm' Name.Label
+' ' Text.Whitespace
+'Rugby' Text
+']' Punctuation
+'.' Text
+' ' Text
+'123' Text
+' ' Text
+'Voyage' Text
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+' ' Text
+'The' Text
+' ' Text
+'national' Text
+' ' Text
+'rugby' Text
+' ' Text
+'union' Text
+' ' Text
+'team' Text
+' ' Text
+'has' Text
+' ' Text
+'competed' Text
+' ' Text
+'at' Text
+' ' Text
+'every' Text
+' ' Text
+'[[' Punctuation
+'Rugby World Cup' Name.Tag
+']]' Punctuation
+';' Text
+' ' Text
+'it' Text
+' ' Text
+'takes' Text
+' ' Text
+'part' Text
+' ' Text
+'in' Text
+' ' Text
+'the' Text
+' ' Text
+'annual' Text
+' ' Text
+'[[' Punctuation
+'Six Nations Championship' Name.Tag
+']]' Punctuation
+'.' Text
+'\n' Text
+
+'\n' Text
+
+'==' Generic.Subheading
+'See also' Generic.Subheading
+'==' Generic.Subheading
+'\n' Text.Whitespace
+
+'{{' Punctuation
+'Portal' Name.Tag
+'|' Punctuation
+'Europe' Text
+'|' Punctuation
+'France' Text
+'}}' Punctuation
+'\n' Text
+
+'*' Keyword
+' ' Text
+'[[' Punctuation
+'Outline of France' Name.Tag
+']]' Punctuation
+'{{' Punctuation
+'-' Name.Tag
+'}}' Punctuation
+'\n' Text
+
+'\n' Text
+
+'==' Generic.Subheading
+'Footnotes' Generic.Subheading
+'==' Generic.Subheading
+'\n' Text.Whitespace
+
+'{{' Punctuation
+'Notelist' Name.Tag
+'-' Name.Tag
+'ur' Name.Tag
+'}}' Punctuation
+'\n' Text
+
+'\n' Text
+
+'==' Generic.Subheading
+'References' Generic.Subheading
+'==' Generic.Subheading
+'\n' Text.Whitespace
+
+'{{' Punctuation
+'Reflist' Name.Tag
+'|' Punctuation
+'refs' Name.Label
+'=' Operator
+'\n' Text
+
+'<' Punctuation
+'ref' Name.Tag
+' ' Text.Whitespace
+'name' Name.Attribute
+'=' Operator
+'France' Literal.String
+'>' Punctuation
+'{{' Punctuation
+'Cite' Name.Tag
+' ' Name.Tag
+'web' Name.Tag
+'|' Punctuation
+'url' Name.Label
+'=' Operator
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'cia' Text
+'.' Text
+'gov' Text
+'/' Text
+'the' Text
+'-' Text
+'world' Text
+'-' Text
+'factbook' Text
+'/' Text
+'countries' Text
+'/' Text
+'france' Text
+'/' Text
+'|' Punctuation
+'website' Name.Label
+'=' Operator
+'The' Text
+' ' Text
+'World' Text
+' ' Text
+'Factbook' Text
+'|' Punctuation
+'title' Name.Label
+'=' Operator
+'Europe' Text
+' ' Text
+':' Text
+':' Text
+' ' Text
+'France' Text
+'|' Punctuation
+'publisher' Name.Label
+'=' Operator
+'CIA' Text
+'|' Punctuation
+'date' Name.Label
+'=' Operator
+'3' Text
+' ' Text
+'January' Text
+' ' Text
+'2018' Text
+'}}' Punctuation
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'\n' Text
+
+'}}' Punctuation
+'\n' Text
+
+'\n' Text
+
+'==' Generic.Subheading
+'Further reading' Generic.Subheading
+'==' Generic.Subheading
+'\n' Text.Whitespace
+
+'*' Keyword
+' ' Text
+'"' Text
+'France' Text
+'.' Text
+'"' Text
+' ' Text
+'in' Text
+' ' Text
+"''" Generic.Emph
+'Europe' Generic.Emph
+',' Generic.Emph
+"''" Generic.Emph
+' ' Text
+'edited' Text
+' ' Text
+'by' Text
+' ' Text
+'Ferdie' Text
+' ' Text
+'McDonald' Text
+' ' Text
+'and' Text
+' ' Text
+'Claire' Text
+' ' Text
+'Marsden' Text
+',' Text
+' ' Text
+'Dorling' Text
+' ' Text
+'Kindersley' Text
+' ' Text
+'(' Text
+'Gale' Text
+',' Text
+' ' Text
+'2010' Text
+')' Text
+',' Text
+' ' Text
+'pp' Text
+'.' Text
+'&nbsp;' Name.Entity
+'144' Text
+'–' Text
+'217' Text
+'.' Text
+' ' Text
+'[' Punctuation
+'https://link.gale.com/apps/doc/CX1644200020/GPS?u=wikipedia&sid=GPS&xid=3062efe1' Name.Label
+' ' Text.Whitespace
+'Online' Text
+']' Punctuation
+'.' Text
+'\n' Text
+
+'\n' Text
+
+'===' Generic.Subheading
+'Topics' Generic.Subheading
+'===' Generic.Subheading
+'\n' Text.Whitespace
+
+'*' Keyword
+' ' Text
+'Carls' Text
+',' Text
+' ' Text
+'Alice' Text
+'-' Text
+'Catherine' Text
+'.' Text
+' ' Text
+'"' Text
+'France' Text
+'.' Text
+'"' Text
+' ' Text
+'in' Text
+' ' Text
+"''" Generic.Emph
+'World' Generic.Emph
+' ' Generic.Emph
+'Press' Generic.Emph
+' ' Generic.Emph
+'Encyclopedia' Generic.Emph
+',' Generic.Emph
+"''" Generic.Emph
+' ' Text
+'edited' Text
+' ' Text
+'by' Text
+' ' Text
+'Amanda' Text
+' ' Text
+'C' Text
+'.' Text
+' ' Text
+'Quick' Text
+',' Text
+' ' Text
+'(' Text
+'2nd' Text
+' ' Text
+'ed' Text
+'.' Text
+',' Text
+' ' Text
+'vol' Text
+'.' Text
+' ' Text
+'1' Text
+',' Text
+' ' Text
+'Gale' Text
+',' Text
+' ' Text
+'2003' Text
+')' Text
+',' Text
+' ' Text
+'pp' Text
+'.' Text
+'&nbsp;' Name.Entity
+'314' Text
+'–' Text
+'337' Text
+'.' Text
+' ' Text
+'[' Punctuation
+'https://link.gale.com/apps/doc/CX3409900079/GPS?u=wikipedia&sid=GPS&xid=59dd8c94' Name.Label
+' ' Text.Whitespace
+'Online' Text
+' ' Text
+'coverage' Text
+' ' Text
+'of' Text
+' ' Text
+'press' Text
+' ' Text
+'and' Text
+' ' Text
+'media' Text
+']' Punctuation
+'.' Text
+'\n' Text
+
+'*' Keyword
+' ' Text
+'Chabal' Text
+',' Text
+' ' Text
+'Emile' Text
+',' Text
+' ' Text
+'ed' Text
+'.' Text
+' ' Text
+"''" Generic.Emph
+'France' Generic.Emph
+' ' Generic.Emph
+'since' Generic.Emph
+' ' Generic.Emph
+'the' Generic.Emph
+' ' Generic.Emph
+'1970s' Generic.Emph
+':' Generic.Emph
+' ' Generic.Emph
+'History' Generic.Emph
+',' Generic.Emph
+' ' Generic.Emph
+'Politics' Generic.Emph
+' ' Generic.Emph
+'and' Generic.Emph
+' ' Generic.Emph
+'Memory' Generic.Emph
+' ' Generic.Emph
+'in' Generic.Emph
+' ' Generic.Emph
+'an' Generic.Emph
+' ' Generic.Emph
+'Age' Generic.Emph
+' ' Generic.Emph
+'of' Generic.Emph
+' ' Generic.Emph
+'Uncertainty' Generic.Emph
+"''" Generic.Emph
+' ' Text
+'(' Text
+'2015' Text
+')' Text
+' ' Text
+'[' Punctuation
+'https://www.amazon.com/dp/1472509773' Name.Label
+' ' Text.Whitespace
+'Excerpt' Text
+']' Punctuation
+'.' Text
+'\n' Text
+
+'*' Keyword
+' ' Text
+'Gildea' Text
+',' Text
+' ' Text
+'Robert' Text
+'.' Text
+' ' Text
+"''" Generic.Emph
+'France' Generic.Emph
+' ' Generic.Emph
+'Since' Generic.Emph
+' ' Generic.Emph
+'1945' Generic.Emph
+"''" Generic.Emph
+' ' Text
+'(' Text
+'2nd' Text
+' ' Text
+'ed' Text
+'.' Text
+' ' Text
+'Oxford' Text
+' ' Text
+'University' Text
+' ' Text
+'Press' Text
+',' Text
+' ' Text
+'2002' Text
+')' Text
+'.' Text
+'\n' Text
+
+'*' Keyword
+' ' Text
+'Goodliffe' Text
+',' Text
+' ' Text
+'Gabriel' Text
+',' Text
+' ' Text
+'and' Text
+' ' Text
+'Riccardo' Text
+' ' Text
+'Brizzi' Text
+',' Text
+' ' Text
+'eds' Text
+'.' Text
+' ' Text
+"''" Generic.Emph
+'France' Generic.Emph
+' ' Generic.Emph
+'After' Generic.Emph
+' ' Generic.Emph
+'2012' Generic.Emph
+"''" Generic.Emph
+' ' Text
+'(' Text
+'Bergham' Text
+',' Text
+' ' Text
+'2015' Text
+')' Text
+'.' Text
+'\n' Text
+
+'*' Keyword
+' ' Text
+'Haine' Text
+',' Text
+' ' Text
+'W' Text
+'.' Text
+' ' Text
+'S' Text
+'.' Text
+' ' Text
+"''" Generic.Emph
+'Culture' Generic.Emph
+' ' Generic.Emph
+'and' Generic.Emph
+' ' Generic.Emph
+'Customs' Generic.Emph
+' ' Generic.Emph
+'of' Generic.Emph
+' ' Generic.Emph
+'France' Generic.Emph
+"''" Generic.Emph
+' ' Text
+'(' Text
+'Greenwood' Text
+' ' Text
+'Press' Text
+',' Text
+' ' Text
+'2006' Text
+')' Text
+'.' Text
+'\n' Text
+
+'*' Keyword
+' ' Text
+'Kelly' Text
+',' Text
+' ' Text
+'Michael' Text
+',' Text
+' ' Text
+'ed' Text
+'.' Text
+' ' Text
+"''" Generic.Emph
+'French' Generic.Emph
+' ' Generic.Emph
+'Culture' Generic.Emph
+' ' Generic.Emph
+'and' Generic.Emph
+' ' Generic.Emph
+'Society' Generic.Emph
+':' Generic.Emph
+' ' Generic.Emph
+'The' Generic.Emph
+' ' Generic.Emph
+'Essentials' Generic.Emph
+"''" Generic.Emph
+' ' Text
+'(' Text
+'Oxford' Text
+' ' Text
+'University' Text
+' ' Text
+'Press' Text
+',' Text
+' ' Text
+'2001' Text
+')' Text
+'.' Text
+'\n' Text
+
+'*' Keyword
+' ' Text
+'Raymond' Text
+',' Text
+' ' Text
+'Gino' Text
+'.' Text
+' ' Text
+"''" Generic.Emph
+'Historical' Generic.Emph
+' ' Generic.Emph
+'Dictionary' Generic.Emph
+' ' Generic.Emph
+'of' Generic.Emph
+' ' Generic.Emph
+'France' Generic.Emph
+"''" Generic.Emph
+' ' Text
+'(' Text
+'2nd' Text
+' ' Text
+'ed' Text
+'.' Text
+' ' Text
+'Scarecrow' Text
+',' Text
+' ' Text
+'2008' Text
+')' Text
+'.' Text
+'\n' Text
+
+'*' Keyword
+'Jones' Text
+',' Text
+' ' Text
+'Colin' Text
+'.' Text
+' ' Text
+'Cambridge' Text
+' ' Text
+'Illustrated' Text
+' ' Text
+'History' Text
+' ' Text
+'of' Text
+' ' Text
+'France' Text
+' ' Text
+'(' Text
+'Cambridge' Text
+' ' Text
+'University' Text
+' ' Text
+'Press' Text
+',' Text
+' ' Text
+'1999' Text
+')' Text
+'.' Text
+'\n' Text
+
+'*' Keyword
+'[' Punctuation
+'https://merhav.nli.org.il/primo-explore/search?query=any,contains,france%20%20maps&tab=default_tab&search_scope=Local&sortby=lso01&vid=NLI&mfacet=tlevel,include,online_resources,1&mfacet=rtype,include,Maps,1&mfacet=topic,include,France,1&lang=en_US&offset=0&came_from=sort' Name.Label
+' ' Text.Whitespace
+'Ancient' Text
+' ' Text
+'maps' Text
+']' Punctuation
+' ' Text
+'of' Text
+' ' Text
+'France' Text
+' ' Text
+'from' Text
+' ' Text
+'the' Text
+' ' Text
+'Eran' Text
+' ' Text
+'Laor' Text
+' ' Text
+'Cartographic' Text
+' ' Text
+'Collection' Text
+'.' Text
+' ' Text
+'[[' Punctuation
+'National Library of Israel' Name.Tag
+']]' Punctuation
+'.' Text
+'\n' Text
+
+'\n' Text
+
+'==' Generic.Subheading
+'External links' Generic.Subheading
+'==' Generic.Subheading
+'\n' Text.Whitespace
+
+'{{' Punctuation
+'Wikibooks' Name.Tag
+'|' Punctuation
+'Wikijunior' Text
+':' Text
+'Countries' Text
+' ' Text
+'A' Text
+'-' Text
+'Z' Text
+'|' Punctuation
+'France' Text
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'Sister' Name.Tag
+' ' Name.Tag
+'project' Name.Tag
+' ' Name.Tag
+'links' Name.Tag
+'|' Punctuation
+'voy' Name.Label
+'=' Operator
+'France' Text
+'|' Punctuation
+'France' Text
+'}}' Punctuation
+'\n' Text
+
+'*' Keyword
+' ' Text
+'[' Punctuation
+'http://www.oecd.org/france' Name.Label
+' ' Text.Whitespace
+'France' Text
+']' Punctuation
+' ' Text
+'at' Text
+' ' Text
+"''" Generic.Emph
+'Organisation' Generic.Emph
+' ' Generic.Emph
+'for' Generic.Emph
+' ' Generic.Emph
+'Economic' Generic.Emph
+' ' Generic.Emph
+'Co' Generic.Emph
+'-' Generic.Emph
+'operation' Generic.Emph
+' ' Generic.Emph
+'and' Generic.Emph
+' ' Generic.Emph
+'Development' Generic.Emph
+"''" Generic.Emph
+'\n' Text
+
+'*' Keyword
+' ' Text
+'[' Punctuation
+'https://web.archive.org/web/20090207004853/http://ucblibraries.colorado.edu/govpubs/for/france.htm' Name.Label
+' ' Text.Whitespace
+'France' Text
+']' Punctuation
+' ' Text
+'at' Text
+' ' Text
+"''" Generic.Emph
+'UCB' Generic.Emph
+' ' Generic.Emph
+'Libraries' Generic.Emph
+' ' Generic.Emph
+'GovPubs' Generic.Emph
+"''" Generic.Emph
+'\n' Text
+
+'*' Keyword
+' ' Text
+'{{' Punctuation
+'Curlie' Name.Tag
+'|' Punctuation
+'Regional' Text
+'/' Text
+'Europe' Text
+'/' Text
+'France' Text
+'}}' Punctuation
+'\n' Text
+
+'*' Keyword
+' ' Text
+'[' Punctuation
+'http://europa.eu/about-eu/countries/member-countries/france/index_en.htm' Name.Label
+' ' Text.Whitespace
+'France' Text
+']' Punctuation
+' ' Text
+'at' Text
+' ' Text
+'the' Text
+' ' Text
+'EU' Text
+'\n' Text
+
+'*' Keyword
+' ' Text
+'{{' Punctuation
+'Wikiatlas' Name.Tag
+'|' Punctuation
+'France' Text
+'}}' Punctuation
+'\n' Text
+
+'*' Keyword
+' ' Text
+'{{' Punctuation
+'Osmrelation' Name.Tag
+'-' Name.Tag
+'inline' Name.Tag
+'|' Punctuation
+'1403916' Text
+'}}' Punctuation
+'\n' Text
+
+'*' Keyword
+' ' Text
+'[' Punctuation
+'http://www.ifs.du.edu/ifs/frm_CountryProfile.aspx?Country=FR' Name.Label
+' ' Text.Whitespace
+'Key' Text
+' ' Text
+'Development' Text
+' ' Text
+'Forecasts' Text
+' ' Text
+'for' Text
+' ' Text
+'France' Text
+']' Punctuation
+' ' Text
+'from' Text
+' ' Text
+'[[' Punctuation
+'International Futures' Name.Tag
+']]' Punctuation
+'\n' Text
+
+'\n' Text
+
+'===' Generic.Subheading
+'Economy' Generic.Subheading
+'===' Generic.Subheading
+'\n' Text.Whitespace
+
+'*' Keyword
+' ' Text
+'{{' Punctuation
+'INSEE' Name.Tag
+'|' Punctuation
+'National' Text
+' ' Text
+'Institute' Text
+' ' Text
+'of' Text
+' ' Text
+'Statistics' Text
+' ' Text
+'and' Text
+' ' Text
+'Economic' Text
+' ' Text
+'Studies' Text
+'}}' Punctuation
+'\n' Text
+
+'*' Keyword
+' ' Text
+'[' Punctuation
+'http://stats.oecd.org/Index.aspx?QueryId=14594' Name.Label
+' ' Text.Whitespace
+'OECD' Text
+' ' Text
+'France' Text
+' ' Text
+'statistics' Text
+']' Punctuation
+'\n' Text
+
+'\n' Text
+
+'===' Generic.Subheading
+'Government' Generic.Subheading
+'===' Generic.Subheading
+'\n' Text.Whitespace
+
+'*' Keyword
+' ' Text
+'[' Punctuation
+'http://www.france.fr/en' Name.Label
+' ' Text.Whitespace
+'France' Text
+'.' Text
+'fr' Text
+']' Punctuation
+' ' Text
+'–' Text
+' ' Text
+'official' Text
+' ' Text
+'French' Text
+' ' Text
+'tourism' Text
+' ' Text
+'site' Text
+' ' Text
+'{{' Punctuation
+'In' Name.Tag
+' ' Name.Tag
+'lang' Name.Tag
+'|' Punctuation
+'en' Text
+'}}' Punctuation
+'\n' Text
+
+'*' Keyword
+' ' Text
+'[' Punctuation
+'http://www.gouvernement.fr' Name.Label
+' ' Text.Whitespace
+'Gouvernement' Text
+'.' Text
+'fr' Text
+']' Punctuation
+' ' Text
+'–' Text
+' ' Text
+'official' Text
+' ' Text
+'site' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'government' Text
+' ' Text
+'{{' Punctuation
+'In' Name.Tag
+' ' Name.Tag
+'lang' Name.Tag
+'|' Punctuation
+'fr' Text
+'}}' Punctuation
+'\n' Text
+
+'*' Keyword
+' ' Text
+'[' Punctuation
+'https://web.archive.org/web/20120103101721/http://service-public.fr/langue/english' Name.Label
+' ' Text.Whitespace
+'Official' Text
+' ' Text
+'site' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'French' Text
+' ' Text
+'public' Text
+' ' Text
+'service' Text
+']' Punctuation
+'&nbsp;' Name.Entity
+'–' Text
+' ' Text
+'links' Text
+' ' Text
+'to' Text
+' ' Text
+'various' Text
+' ' Text
+'administrations' Text
+' ' Text
+'and' Text
+' ' Text
+'institutions' Text
+'\n' Text
+
+'*' Keyword
+' ' Text
+'[' Punctuation
+'http://www.assemblee-nationale.fr/english/index.asp' Name.Label
+' ' Text.Whitespace
+'Official' Text
+' ' Text
+'site' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'National' Text
+' ' Text
+'Assembly' Text
+']' Punctuation
+'\n' Text
+
+'\n' Text
+
+'===' Generic.Subheading
+'Culture' Generic.Subheading
+'===' Generic.Subheading
+'\n' Text.Whitespace
+
+'*' Keyword
+' ' Text
+'[' Punctuation
+'http://www.french.uiuc.edu/cfc' Name.Label
+' ' Text.Whitespace
+"''" Generic.Emph
+'Contemporary' Generic.Emph
+' ' Generic.Emph
+'French' Generic.Emph
+' ' Generic.Emph
+'Civilization' Generic.Emph
+"''" Generic.Emph
+']' Punctuation
+' ' Text
+'–' Text
+' ' Text
+'journal' Text
+',' Text
+' ' Text
+'University' Text
+' ' Text
+'of' Text
+' ' Text
+'Illinois' Text
+'\n' Text
+
+'*' Keyword
+' ' Text
+'[' Punctuation
+'http://us.franceguide.com' Name.Label
+' ' Text.Whitespace
+'FranceGuide' Text
+']' Punctuation
+'&nbsp;' Name.Entity
+'–' Text
+' ' Text
+'official' Text
+' ' Text
+'site' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'French' Text
+' ' Text
+'Government' Text
+' ' Text
+'Tourist' Text
+' ' Text
+'Office' Text
+'\n' Text
+
+'\n' Text
+
+'{{' Punctuation
+'France' Name.Tag
+' ' Name.Tag
+'topics' Name.Tag
+'}}' Punctuation
+'\n' Text
+
+'\n' Text
+
+'{{' Punctuation
+'Navboxes' Name.Tag
+'\n' Text
+
+'|' Punctuation
+' title' Name.Label
+'=' Operator
+'Related' Text
+' ' Text
+'articles' Text
+'\n' Text
+
+'|' Punctuation
+' list' Name.Label
+'=' Operator
+'{{' Punctuation
+'Coord' Name.Tag
+'|' Punctuation
+'47' Text
+'|' Punctuation
+'N' Text
+'|' Punctuation
+'2' Text
+'|' Punctuation
+'E' Text
+'|' Punctuation
+'type' Text
+':' Text
+'country_region' Text
+':' Text
+'FR' Text
+'|' Punctuation
+'display' Name.Label
+'=' Operator
+'inline' Text
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'Geographic' Name.Tag
+' ' Name.Tag
+'location' Name.Tag
+'\n' Text
+
+'|' Punctuation
+' Centre ' Name.Label
+'=' Operator
+' ' Text
+'{{' Punctuation
+'Flagu' Name.Tag
+'|' Punctuation
+'France' Text
+'}}' Punctuation
+'\n' Text
+
+'|' Punctuation
+' North ' Name.Label
+'=' Operator
+' ' Text
+'{{' Punctuation
+'Flagu' Name.Tag
+'|' Punctuation
+'United' Text
+' ' Text
+'Kingdom' Text
+'}}' Punctuation
+'\n' Text
+
+'|' Punctuation
+' Northeast ' Name.Label
+'=' Operator
+' ' Text
+'{{' Punctuation
+'Flagu' Name.Tag
+'|' Punctuation
+' ' Text
+'Belgium' Text
+'}}' Punctuation
+'{{' Punctuation
+'Flagu' Name.Tag
+'|' Punctuation
+'Luxembourg' Text
+'}}' Punctuation
+'\n' Text
+
+'|' Punctuation
+' East ' Name.Label
+'=' Operator
+' ' Text
+'{{' Punctuation
+'Flagu' Name.Tag
+'|' Punctuation
+'Germany' Text
+'}}' Punctuation
+'{{' Punctuation
+'Flagu' Name.Tag
+'|' Punctuation
+' ' Text
+'Switzerland' Text
+'}}' Punctuation
+'{{' Punctuation
+'Flagu' Name.Tag
+'|' Punctuation
+'Italy' Text
+'}}' Punctuation
+'\n' Text
+
+'|' Punctuation
+' Southeast ' Name.Label
+'=' Operator
+' ' Text
+'[[' Punctuation
+'Mediterranean Sea' Name.Tag
+']]' Punctuation
+'\n' Text
+
+'|' Punctuation
+' South ' Name.Label
+'=' Operator
+' ' Text
+'{{' Punctuation
+'Flagu' Name.Tag
+'|' Punctuation
+'Algeria' Text
+'}}' Punctuation
+'\n' Text
+
+'|' Punctuation
+' Southwest ' Name.Label
+'=' Operator
+' ' Text
+'{{' Punctuation
+'Flagu' Name.Tag
+'|' Punctuation
+'Spain' Text
+'}}' Punctuation
+'{{' Punctuation
+'Flagu' Name.Tag
+'|' Punctuation
+'Andorra' Text
+'}}' Punctuation
+'\n' Text
+
+'|' Punctuation
+' West ' Name.Label
+'=' Operator
+' ' Text
+'Atlantic' Text
+' ' Text
+'Ocean' Text
+'\n' Text
+
+'|' Punctuation
+' Northwest ' Name.Label
+'=' Operator
+' ' Text
+'{{' Punctuation
+'Flagu' Name.Tag
+'|' Punctuation
+'United' Text
+' ' Text
+'Kingdom' Text
+'}}' Punctuation
+'\n' Text
+
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'Sovereign' Name.Tag
+' ' Name.Tag
+'states' Name.Tag
+' ' Name.Tag
+'of' Name.Tag
+' ' Name.Tag
+'Europe' Name.Tag
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'Countries' Name.Tag
+' ' Name.Tag
+'of' Name.Tag
+' ' Name.Tag
+'North' Name.Tag
+' ' Name.Tag
+'America' Name.Tag
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'Countries' Name.Tag
+' ' Name.Tag
+'of' Name.Tag
+' ' Name.Tag
+'South' Name.Tag
+' ' Name.Tag
+'America' Name.Tag
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'Countries' Name.Tag
+' ' Name.Tag
+'of' Name.Tag
+' ' Name.Tag
+'Africa' Name.Tag
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'Countries' Name.Tag
+' ' Name.Tag
+'and' Name.Tag
+' ' Name.Tag
+'territories' Name.Tag
+' ' Name.Tag
+'of' Name.Tag
+' ' Name.Tag
+'Oceania' Name.Tag
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'Countries' Name.Tag
+' ' Name.Tag
+'and' Name.Tag
+' ' Name.Tag
+'territories' Name.Tag
+' ' Name.Tag
+'bordering' Name.Tag
+' ' Name.Tag
+'the' Name.Tag
+' ' Name.Tag
+'Mediterranean' Name.Tag
+' ' Name.Tag
+'Sea' Name.Tag
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'EU' Name.Tag
+' ' Name.Tag
+'members' Name.Tag
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'European' Name.Tag
+' ' Name.Tag
+'Economic' Name.Tag
+' ' Name.Tag
+'Area' Name.Tag
+' ' Name.Tag
+'(' Name.Tag
+'EEA' Name.Tag
+')' Name.Tag
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'G8' Name.Tag
+' ' Name.Tag
+'nations' Name.Tag
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'G20' Name.Tag
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'UN' Name.Tag
+' ' Name.Tag
+'Security' Name.Tag
+' ' Name.Tag
+'Council' Name.Tag
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'Council' Name.Tag
+' ' Name.Tag
+'of' Name.Tag
+' ' Name.Tag
+'Europe' Name.Tag
+' ' Name.Tag
+'members' Name.Tag
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'Member' Name.Tag
+' ' Name.Tag
+'states' Name.Tag
+' ' Name.Tag
+'of' Name.Tag
+' ' Name.Tag
+'the' Name.Tag
+' ' Name.Tag
+'OECD' Name.Tag
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'La' Name.Tag
+' ' Name.Tag
+'Francophonie' Name.Tag
+'}}' Punctuation
+'\n' Text
+
+'}}' Punctuation
+'\n' Text
+
+'\n' Text
+
+'{{' Punctuation
+'Authority' Name.Tag
+' ' Name.Tag
+'control' Name.Tag
+'}}' Punctuation
+'\n' Text
+
+'\n' Text
+
+'[[' Punctuation
+'Category' Name.Namespace
+':' Punctuation
+'France' Name.Tag
+'|' Punctuation
+' ' Text
+']]' Punctuation
+'\n' Text
+
+'[[' Punctuation
+'Category' Name.Namespace
+':' Punctuation
+'Countries in Europe' Name.Tag
+']]' Punctuation
+'\n' Text
+
+'[[' Punctuation
+'Category' Name.Namespace
+':' Punctuation
+'French-speaking countries and territories' Name.Tag
+']]' Punctuation
+'\n' Text
+
+'[[' Punctuation
+'Category' Name.Namespace
+':' Punctuation
+'G20 nations' Name.Tag
+']]' Punctuation
+'\n' Text
+
+'[[' Punctuation
+'Category' Name.Namespace
+':' Punctuation
+'Member states of NATO' Name.Tag
+']]' Punctuation
+'\n' Text
+
+'[[' Punctuation
+'Category' Name.Namespace
+':' Punctuation
+'Member states of the European Union' Name.Tag
+']]' Punctuation
+'\n' Text
+
+'[[' Punctuation
+'Category' Name.Namespace
+':' Punctuation
+'Member states of the Organisation internationale de la Francophonie' Name.Tag
+']]' Punctuation
+'\n' Text
+
+'[[' Punctuation
+'Category' Name.Namespace
+':' Punctuation
+'Member states of the Union for the Mediterranean' Name.Tag
+']]' Punctuation
+'\n' Text
+
+'[[' Punctuation
+'Category' Name.Namespace
+':' Punctuation
+'Member states of the United Nations' Name.Tag
+']]' Punctuation
+'\n' Text
+
+'[[' Punctuation
+'Category' Name.Namespace
+':' Punctuation
+'Republics' Name.Tag
+']]' Punctuation
+'\n' Text
+
+'[[' Punctuation
+'Category' Name.Namespace
+':' Punctuation
+'Member states of the Council of Europe' Name.Tag
+']]' Punctuation
+'\n' Text
+
+'[[' Punctuation
+'Category' Name.Namespace
+':' Punctuation
+'Southwestern European countries' Name.Tag
+']]' Punctuation
+'\n' Text
+
+'[[' Punctuation
+'Category' Name.Namespace
+':' Punctuation
+'Western European countries' Name.Tag
+']]' Punctuation
+'\n' Text
+
+'[[' Punctuation
+'Category' Name.Namespace
+':' Punctuation
+'States and territories established in 1792' Name.Tag
+']]' Punctuation
+'\n' Text
+
+'[[' Punctuation
+'Category' Name.Namespace
+':' Punctuation
+'1792 establishments in France' Name.Tag
+']]' Punctuation
+'\n' Text
+
+'[[' Punctuation
+'Category' Name.Namespace
+':' Punctuation
+'1792 establishments in Europe' Name.Tag
+']]' Punctuation
+'\n' Text
+
+'[[' Punctuation
+'Category' Name.Namespace
+':' Punctuation
+'Transcontinental countries' Name.Tag
+']]' Punctuation
+'\n' Text
+
+'[[' Punctuation
+'Category' Name.Namespace
+':' Punctuation
+'OECD members' Name.Tag
+']]' Punctuation
+'\n' Text
diff --git a/tests/snippets/wikitext/bold-italic.txt b/tests/snippets/wikitext/bold-italic.txt
new file mode 100644
index 00000000..816be8fb
--- /dev/null
+++ b/tests/snippets/wikitext/bold-italic.txt
@@ -0,0 +1,289 @@
+---input---
+To ''italicize text'', put two consecutive apostrophes on each side of it.
+
+Three apostrophes each side will '''bold the text'''.
+
+Five consecutive apostrophes on each side (two for italics plus three for bold) produces '''''bold italics'''''.
+
+'''''Italic and bold formatting''''' works correctly only within a single line.
+
+''''''foo''''''
+
+L''''''Étranger'''''
+
+'' a ''' a ''' a ''
+
+'' a ''' a '' a '''
+
+''''' a '' a '''
+''''' a ''' a ''
+
+''''' a
+a
+
+''a[[b|c]]d
+a[[b|''c]]d
+''a{{b|c}}d
+a{{b|''c}}d
+
+---tokens---
+'To' Text
+' ' Text
+"''" Generic.Emph
+'italicize' Generic.Emph
+' ' Generic.Emph
+'text' Generic.Emph
+"''" Generic.Emph
+',' Text
+' ' Text
+'put' Text
+' ' Text
+'two' Text
+' ' Text
+'consecutive' Text
+' ' Text
+'apostrophes' Text
+' ' Text
+'on' Text
+' ' Text
+'each' Text
+' ' Text
+'side' Text
+' ' Text
+'of' Text
+' ' Text
+'it' Text
+'.' Text
+'\n' Text
+
+'\n' Text
+
+'Three' Text
+' ' Text
+'apostrophes' Text
+' ' Text
+'each' Text
+' ' Text
+'side' Text
+' ' Text
+'will' Text
+' ' Text
+"'''" Generic.Strong
+'bold' Generic.Strong
+' ' Generic.Strong
+'the' Generic.Strong
+' ' Generic.Strong
+'text' Generic.Strong
+"'''" Generic.Strong
+'.' Text
+'\n' Text
+
+'\n' Text
+
+'Five' Text
+' ' Text
+'consecutive' Text
+' ' Text
+'apostrophes' Text
+' ' Text
+'on' Text
+' ' Text
+'each' Text
+' ' Text
+'side' Text
+' ' Text
+'(' Text
+'two' Text
+' ' Text
+'for' Text
+' ' Text
+'italics' Text
+' ' Text
+'plus' Text
+' ' Text
+'three' Text
+' ' Text
+'for' Text
+' ' Text
+'bold' Text
+')' Text
+' ' Text
+'produces' Text
+' ' Text
+"''" Generic.Emph
+"'''" Generic.Strong
+'bold' Generic.Strong
+' ' Generic.Strong
+'italics' Generic.Strong
+"'''" Generic.Strong
+"''" Generic.Emph
+'.' Text
+'\n' Text
+
+'\n' Text
+
+"''" Generic.Emph
+"'''" Generic.Strong
+'Italic' Generic.Strong
+' ' Generic.Strong
+'and' Generic.Strong
+' ' Generic.Strong
+'bold' Generic.Strong
+' ' Generic.Strong
+'formatting' Generic.Strong
+"'''" Generic.Strong
+"''" Generic.Emph
+' ' Text
+'works' Text
+' ' Text
+'correctly' Text
+' ' Text
+'only' Text
+' ' Text
+'within' Text
+' ' Text
+'a' Text
+' ' Text
+'single' Text
+' ' Text
+'line' Text
+'.' Text
+'\n' Text
+
+'\n' Text
+
+"'" Text
+"''" Generic.Emph
+"'''" Generic.Strong
+'foo' Generic.Strong
+"'" Generic.Strong
+"'''" Generic.Strong
+"''" Generic.Emph
+'\n' Text
+
+'\n' Text
+
+'L' Text
+"'" Text
+"''" Generic.Emph
+"'''" Generic.Strong
+'Étranger' Generic.Strong
+"'''" Generic.Strong
+"''" Generic.Emph
+'\n' Text
+
+'\n' Text
+
+"''" Generic.Emph
+' ' Generic.Emph
+'a' Generic.Emph
+' ' Generic.Emph
+"'''" Generic.Strong
+' ' Generic.Strong
+'a' Generic.Strong
+' ' Generic.Strong
+"'''" Generic.Strong
+' ' Generic.Emph
+'a' Generic.Emph
+' ' Generic.Emph
+"''" Generic.Emph
+'\n' Text
+
+'\n' Text
+
+"''" Generic.Emph
+' ' Generic.Emph
+'a' Generic.Emph
+' ' Generic.Emph
+"'''" Generic.Strong
+' ' Generic.Strong
+'a' Generic.Strong
+' ' Generic.Strong
+"''" Generic.Emph
+' ' Generic.Strong
+'a' Generic.Strong
+' ' Generic.Strong
+"'''" Generic.Strong
+'\n' Text
+
+'\n' Text
+
+"''" Generic.Emph
+"'''" Generic.Strong
+' ' Generic.Strong
+'a' Generic.Strong
+' ' Generic.Strong
+"''" Generic.Emph
+' ' Generic.Strong
+'a' Generic.Strong
+' ' Generic.Strong
+"'''" Generic.Strong
+'\n' Text
+
+"''" Generic.Emph
+"'''" Generic.Strong
+' ' Generic.Strong
+'a' Generic.Strong
+' ' Generic.Strong
+"'''" Generic.Strong
+' ' Generic.Emph
+'a' Generic.Emph
+' ' Generic.Emph
+"''" Generic.Emph
+'\n' Text
+
+'\n' Text
+
+"''" Generic.Emph
+"'''" Generic.Strong
+' ' Generic.Strong
+'a' Generic.Strong
+'\n' Text
+
+'a' Text
+'\n' Text
+
+'\n' Text
+
+"''" Generic.Emph
+'a' Generic.Emph
+'[[' Punctuation
+'b' Name.Tag
+'|' Punctuation
+'c' Text
+']]' Punctuation
+'d' Generic.Emph
+'\n' Text
+
+'a' Text
+'[[' Punctuation
+'b' Name.Tag
+'|' Punctuation
+"''" Generic.Emph
+'c' Generic.Emph
+'' Punctuation
+']]' Punctuation
+'d' Text
+'\n' Text
+
+"''" Generic.Emph
+'a' Generic.Emph
+'' Punctuation
+'{{' Punctuation
+'b' Name.Tag
+'|' Punctuation
+'c' Text
+'}}' Punctuation
+'d' Text
+'\n' Text
+
+'a' Text
+'{{' Punctuation
+'b' Name.Tag
+'|' Punctuation
+"''" Generic.Emph
+'c' Generic.Emph
+'' Punctuation
+'}}' Punctuation
+'d' Text
+'\n' Text
diff --git a/tests/snippets/wikitext/entity.txt b/tests/snippets/wikitext/entity.txt
new file mode 100644
index 00000000..0838de34
--- /dev/null
+++ b/tests/snippets/wikitext/entity.txt
@@ -0,0 +1,185 @@
+---input---
+Mr.&nbsp;Smith or 400&nbsp;km/h
+
+&Agrave; &Aacute; &Acirc; &Atilde; &Auml; &Aring; &AElig;
+
+&Ccedil; &Egrave; &Eacute; &Ecirc; &Euml;
+
+&Igrave; &Iacute; &Icirc; &Iuml; &Ntilde;
+
+&Ograve; &Oacute; &Ocirc; &Otilde; &Ouml; &Oslash; &OElig;
+
+&Ugrave; &Uacute; &Ucirc; &Uuml; &Yuml; &szlig;
+
+&agrave; &aacute; &acirc; &atilde; &auml; &aring; &aelig; &ccedil;
+
+&egrave; &eacute; &ecirc; &euml;
+
+&igrave; &iacute; &icirc; &iuml; &ntilde;
+
+&ograve; &oacute; &ocirc; &otilde; &ouml; &oslash; &oelig;
+
+&ugrave; &uacute; &ucirc; &uuml; &yuml;
+
+---tokens---
+'Mr' Text
+'.' Text
+'&nbsp;' Name.Entity
+'Smith' Text
+' ' Text
+'or' Text
+' ' Text
+'400' Text
+'&nbsp;' Name.Entity
+'km' Text
+'/' Text
+'h' Text
+'\n' Text
+
+'\n' Text
+
+'&Agrave;' Name.Entity
+' ' Text
+'&Aacute;' Name.Entity
+' ' Text
+'&Acirc;' Name.Entity
+' ' Text
+'&Atilde;' Name.Entity
+' ' Text
+'&Auml;' Name.Entity
+' ' Text
+'&Aring;' Name.Entity
+' ' Text
+'&AElig;' Name.Entity
+'\n' Text
+
+'\n' Text
+
+'&Ccedil;' Name.Entity
+' ' Text
+'&Egrave;' Name.Entity
+' ' Text
+'&Eacute;' Name.Entity
+' ' Text
+'&Ecirc;' Name.Entity
+' ' Text
+'&Euml;' Name.Entity
+'\n' Text
+
+'\n' Text
+
+'&Igrave;' Name.Entity
+' ' Text
+'&Iacute;' Name.Entity
+' ' Text
+'&Icirc;' Name.Entity
+' ' Text
+'&Iuml;' Name.Entity
+' ' Text
+'&Ntilde;' Name.Entity
+'\n' Text
+
+'\n' Text
+
+'&Ograve;' Name.Entity
+' ' Text
+'&Oacute;' Name.Entity
+' ' Text
+'&Ocirc;' Name.Entity
+' ' Text
+'&Otilde;' Name.Entity
+' ' Text
+'&Ouml;' Name.Entity
+' ' Text
+'&Oslash;' Name.Entity
+' ' Text
+'&OElig;' Name.Entity
+'\n' Text
+
+'\n' Text
+
+'&Ugrave;' Name.Entity
+' ' Text
+'&Uacute;' Name.Entity
+' ' Text
+'&Ucirc;' Name.Entity
+' ' Text
+'&Uuml;' Name.Entity
+' ' Text
+'&Yuml;' Name.Entity
+' ' Text
+'&szlig;' Name.Entity
+'\n' Text
+
+'\n' Text
+
+'&agrave;' Name.Entity
+' ' Text
+'&aacute;' Name.Entity
+' ' Text
+'&acirc;' Name.Entity
+' ' Text
+'&atilde;' Name.Entity
+' ' Text
+'&auml;' Name.Entity
+' ' Text
+'&aring;' Name.Entity
+' ' Text
+'&aelig;' Name.Entity
+' ' Text
+'&ccedil;' Name.Entity
+'\n' Text
+
+'\n' Text
+
+'&egrave;' Name.Entity
+' ' Text
+'&eacute;' Name.Entity
+' ' Text
+'&ecirc;' Name.Entity
+' ' Text
+'&euml;' Name.Entity
+'\n' Text
+
+'\n' Text
+
+'&igrave;' Name.Entity
+' ' Text
+'&iacute;' Name.Entity
+' ' Text
+'&icirc;' Name.Entity
+' ' Text
+'&iuml;' Name.Entity
+' ' Text
+'&ntilde;' Name.Entity
+'\n' Text
+
+'\n' Text
+
+'&ograve;' Name.Entity
+' ' Text
+'&oacute;' Name.Entity
+' ' Text
+'&ocirc;' Name.Entity
+' ' Text
+'&otilde;' Name.Entity
+' ' Text
+'&ouml;' Name.Entity
+' ' Text
+'&oslash;' Name.Entity
+' ' Text
+'&oelig;' Name.Entity
+'\n' Text
+
+'\n' Text
+
+'&ugrave;' Name.Entity
+' ' Text
+'&uacute;' Name.Entity
+' ' Text
+'&ucirc;' Name.Entity
+' ' Text
+'&uuml;' Name.Entity
+' ' Text
+'&yuml;' Name.Entity
+'\n' Text
diff --git a/tests/snippets/wikitext/extlink.txt b/tests/snippets/wikitext/extlink.txt
new file mode 100644
index 00000000..a1e445b4
--- /dev/null
+++ b/tests/snippets/wikitext/extlink.txt
@@ -0,0 +1,292 @@
+---input---
+[https://www.wikipedia.org Wikipedia]
+
+[https://www.wikipedia.org]
+
+https://www.wikipedia.org
+
+<span class="plainlinks">[https://www.wikipedia.org Wikipedia]</span>
+
+Single square brackets holding
+[text without a HTTP URL] are
+preserved, but single square
+brackets containing a URL are
+treated as being an external
+[https://example.com/ Web link].
+
+[https://www.wikipedia.org ''Wiki'''''pedi'''a]
+
+tel:1145141919810
+
+[tel:1145141919810 telephone me]
+
+[https://www.google.com [[a]]]
+
+https://www.example.com
+
+[https://www.exampke.com]
+
+[//example.com]
+
+[//example.com a b c]
+
+[//example.com a ''b'' c <nowiki>[//example.com a ''b'' c]</nowiki><includeonly/><div class="a"/> d]
+
+[{{fullurl:Help:Wiki markup|action=edit}} edit]
+
+---tokens---
+'[' Punctuation
+'https://www.wikipedia.org' Name.Label
+' ' Text.Whitespace
+'Wikipedia' Text
+']' Punctuation
+'\n' Text
+
+'\n' Text
+
+'[' Punctuation
+'https://www.wikipedia.org' Name.Label
+']' Punctuation
+'\n' Text
+
+'\n' Text
+
+'https://www.wikipedia.org' Name.Label
+'\n' Text
+
+'\n' Text
+
+'<' Punctuation
+'span' Name.Tag
+' ' Text.Whitespace
+'class' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+'plainlinks' Literal.String.Double
+'"' Literal.String.Double
+'>' Punctuation
+'[' Punctuation
+'https://www.wikipedia.org' Name.Label
+' ' Text.Whitespace
+'Wikipedia' Text
+']' Punctuation
+'</' Punctuation
+'span' Name.Tag
+'>' Punctuation
+'\n' Text
+
+'\n' Text
+
+'Single' Text
+' ' Text
+'square' Text
+' ' Text
+'brackets' Text
+' ' Text
+'holding' Text
+'\n' Text
+
+'[' Text
+'text' Text
+' ' Text
+'without' Text
+' ' Text
+'a' Text
+' ' Text
+'HTTP' Text
+' ' Text
+'URL' Text
+']' Text
+' ' Text
+'are' Text
+'\n' Text
+
+'preserved' Text
+',' Text
+' ' Text
+'but' Text
+' ' Text
+'single' Text
+' ' Text
+'square' Text
+'\n' Text
+
+'brackets' Text
+' ' Text
+'containing' Text
+' ' Text
+'a' Text
+' ' Text
+'URL' Text
+' ' Text
+'are' Text
+'\n' Text
+
+'treated' Text
+' ' Text
+'as' Text
+' ' Text
+'being' Text
+' ' Text
+'an' Text
+' ' Text
+'external' Text
+'\n' Text
+
+'[' Punctuation
+'https://example.com/' Name.Label
+' ' Text.Whitespace
+'Web' Text
+' ' Text
+'link' Text
+']' Punctuation
+'.' Text
+'\n' Text
+
+'\n' Text
+
+'[' Punctuation
+'https://www.wikipedia.org' Name.Label
+' ' Text.Whitespace
+"''" Generic.Emph
+'Wiki' Generic.Emph
+"''" Generic.Emph
+"'''" Generic.Strong
+'pedi' Generic.Strong
+"'''" Generic.Strong
+'a' Text
+']' Punctuation
+'\n' Text
+
+'\n' Text
+
+'tel:1145141919810' Name.Label
+'\n' Text
+
+'\n' Text
+
+'[' Punctuation
+'tel:1145141919810' Name.Label
+' ' Text.Whitespace
+'telephone' Text
+' ' Text
+'me' Text
+']' Punctuation
+'\n' Text
+
+'\n' Text
+
+'[' Punctuation
+'https://www.google.com' Name.Label
+' ' Text.Whitespace
+'[[' Punctuation
+'a' Name.Tag
+']]' Punctuation
+']' Punctuation
+'\n' Text
+
+'\n' Text
+
+'https://www.example.com' Name.Label
+'\n' Text
+
+'\n' Text
+
+'[' Punctuation
+'https://www.exampke.com' Name.Label
+']' Punctuation
+'\n' Text
+
+'\n' Text
+
+'[' Punctuation
+'//example.com' Name.Label
+']' Punctuation
+'\n' Text
+
+'\n' Text
+
+'[' Punctuation
+'//example.com' Name.Label
+' ' Text.Whitespace
+'a' Text
+' ' Text
+'b' Text
+' ' Text
+'c' Text
+']' Punctuation
+'\n' Text
+
+'\n' Text
+
+'[' Punctuation
+'//example.com' Name.Label
+' ' Text.Whitespace
+'a' Text
+' ' Text
+"''" Generic.Emph
+'b' Generic.Emph
+"''" Generic.Emph
+' ' Text
+'c' Text
+' ' Text
+'<' Punctuation
+'nowiki' Name.Tag
+'>' Punctuation
+'[' Text
+'/' Text
+'/' Text
+'example' Text
+'.' Text
+'com' Text
+' ' Text
+'a' Text
+' ' Text
+"'" Text
+"'" Text
+'b' Text
+"'" Text
+"'" Text
+' ' Text
+'c' Text
+']' Text
+'</' Punctuation
+'nowiki' Name.Tag
+'>' Punctuation
+'<' Punctuation
+'includeonly' Name.Tag
+'/>' Punctuation
+'<' Punctuation
+'div' Name.Tag
+' ' Text.Whitespace
+'class' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+'a' Literal.String.Double
+'"' Literal.String.Double
+'/>' Punctuation
+' ' Text
+'d' Text
+']' Punctuation
+'\n' Text
+
+'\n' Text
+
+'[' Text
+'{{' Punctuation
+'fullurl' Name.Function
+':' Punctuation
+'Help' Text
+':' Text
+'Wiki' Text
+' ' Text
+'markup' Text
+'|' Punctuation
+'action' Name.Label
+'=' Operator
+'edit' Text
+'}}' Punctuation
+' ' Text
+'edit' Text
+']' Text
+'\n' Text
diff --git a/tests/snippets/wikitext/heading.txt b/tests/snippets/wikitext/heading.txt
new file mode 100644
index 00000000..ce241187
--- /dev/null
+++ b/tests/snippets/wikitext/heading.txt
@@ -0,0 +1,53 @@
+---input---
+= Heading 1 =
+== Heading 2 ==
+=== Heading 3 ===
+==== Heading 4 ====
+===== Heading 5 =====
+====== Heading 6 ======
+
+== [[Heading|''Heading'']] ==
+
+==
+===
+
+---tokens---
+'= Heading 1 =' Generic.Heading
+'\n' Text.Whitespace
+
+'==' Generic.Subheading
+' Heading 2 ' Generic.Subheading
+'==' Generic.Subheading
+'\n' Text.Whitespace
+
+'===' Generic.Subheading
+' Heading 3 ' Generic.Subheading
+'===' Generic.Subheading
+'\n' Text.Whitespace
+
+'====' Generic.Subheading
+' Heading 4 ' Generic.Subheading
+'====' Generic.Subheading
+'\n' Text.Whitespace
+
+'=====' Generic.Subheading
+' Heading 5 ' Generic.Subheading
+'=====' Generic.Subheading
+'\n' Text.Whitespace
+
+'======' Generic.Subheading
+' Heading 6 ' Generic.Subheading
+'======' Generic.Subheading
+'\n\n' Text.Whitespace
+
+'==' Generic.Subheading
+" [[Heading|''Heading'']] " Generic.Subheading
+'==' Generic.Subheading
+'\n\n' Text.Whitespace
+
+'=' Text
+'=' Text
+'\n' Text
+
+'===' Generic.Heading
+'\n' Text.Whitespace
diff --git a/tests/snippets/wikitext/hr.txt b/tests/snippets/wikitext/hr.txt
new file mode 100644
index 00000000..46499b09
--- /dev/null
+++ b/tests/snippets/wikitext/hr.txt
@@ -0,0 +1,42 @@
+---input---
+-
+--
+---
+----
+-----
+------
+-------
+--------
+--------foo
+
+---tokens---
+'-' Text
+'\n' Text
+
+'-' Text
+'-' Text
+'\n' Text
+
+'-' Text
+'-' Text
+'-' Text
+'\n' Text
+
+'----' Keyword
+'\n' Text
+
+'-----' Keyword
+'\n' Text
+
+'------' Keyword
+'\n' Text
+
+'-------' Keyword
+'\n' Text
+
+'--------' Keyword
+'\n' Text
+
+'--------' Keyword
+'foo' Text
+'\n' Text
diff --git a/tests/snippets/wikitext/html.txt b/tests/snippets/wikitext/html.txt
new file mode 100644
index 00000000..7fc96eec
--- /dev/null
+++ b/tests/snippets/wikitext/html.txt
@@ -0,0 +1,449 @@
+---input---
+<div class="center" style="width: auto; margin-left: auto; margin-right: auto;">Centered text</div>
+
+<blockquote>
+The '''blockquote''' tag will indent both margins when needed instead of the left margin only as the colon does.
+</blockquote>
+
+<div>
+#123
+:456
+----
+</div>
+
+Use <small >small text</small> only when necessary.
+
+To match, for example, the font-size used in an image caption, the "small" tag can also be used to
+<small style="font-size:87%;">reduce a text's font-size to 87%</small>.
+
+Better not use <big>big text</big>, unless <small>it's <big>within</big> small</small> text.
+
+x<sub>1</sub> x<sub>2</sub> x<sub>3</sub>
+
+function <code>int m2()</code> is nice.
+
+You can <del>indicate deleted material</del> and <ins>inserted material</ins>.
+
+<div ></div >
+
+<span <!-- this is a comment --> ></span>
+
+<span class="citation {{{Citation class|{{{Citation type|}}}}}}"></span>
+
+<a></a>
+
+---tokens---
+'<' Punctuation
+'div' Name.Tag
+' ' Text.Whitespace
+'class' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+'center' Literal.String.Double
+'"' Literal.String.Double
+' ' Text.Whitespace
+'style' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+'width' Literal.String.Double
+':' Literal.String.Double
+' ' Literal.String.Double
+'auto' Literal.String.Double
+';' Literal.String.Double
+' ' Literal.String.Double
+'margin' Literal.String.Double
+'-' Literal.String.Double
+'left' Literal.String.Double
+':' Literal.String.Double
+' ' Literal.String.Double
+'auto' Literal.String.Double
+';' Literal.String.Double
+' ' Literal.String.Double
+'margin' Literal.String.Double
+'-' Literal.String.Double
+'right' Literal.String.Double
+':' Literal.String.Double
+' ' Literal.String.Double
+'auto' Literal.String.Double
+';' Literal.String.Double
+'"' Literal.String.Double
+'>' Punctuation
+'Centered' Text
+' ' Text
+'text' Text
+'</' Punctuation
+'div' Name.Tag
+'>' Punctuation
+'\n' Text
+
+'\n' Text
+
+'<' Punctuation
+'blockquote' Name.Tag
+'>' Punctuation
+'\n' Text
+
+'The' Text
+' ' Text
+"'''" Generic.Strong
+'blockquote' Generic.Strong
+"'''" Generic.Strong
+' ' Text
+'tag' Text
+' ' Text
+'will' Text
+' ' Text
+'indent' Text
+' ' Text
+'both' Text
+' ' Text
+'margins' Text
+' ' Text
+'when' Text
+' ' Text
+'needed' Text
+' ' Text
+'instead' Text
+' ' Text
+'of' Text
+' ' Text
+'the' Text
+' ' Text
+'left' Text
+' ' Text
+'margin' Text
+' ' Text
+'only' Text
+' ' Text
+'as' Text
+' ' Text
+'the' Text
+' ' Text
+'colon' Text
+' ' Text
+'does' Text
+'.' Text
+'\n' Text
+
+'</' Punctuation
+'blockquote' Name.Tag
+'>' Punctuation
+'\n' Text
+
+'\n' Text
+
+'<' Punctuation
+'div' Name.Tag
+'>' Punctuation
+'\n' Text
+
+'#' Keyword
+'123' Text
+'\n' Text
+
+':' Keyword
+'456' Text
+'\n' Text
+
+'----' Keyword
+'\n' Text
+
+'</' Punctuation
+'div' Name.Tag
+'>' Punctuation
+'\n' Text
+
+'\n' Text
+
+'Use' Text
+' ' Text
+'<' Punctuation
+'small' Name.Tag
+' >' Punctuation
+'small' Text
+' ' Text
+'text' Text
+'</' Punctuation
+'small' Name.Tag
+'>' Punctuation
+' ' Text
+'only' Text
+' ' Text
+'when' Text
+' ' Text
+'necessary' Text
+'.' Text
+'\n' Text
+
+'\n' Text
+
+'To' Text
+' ' Text
+'match' Text
+',' Text
+' ' Text
+'for' Text
+' ' Text
+'example' Text
+',' Text
+' ' Text
+'the' Text
+' ' Text
+'font' Text
+'-' Text
+'size' Text
+' ' Text
+'used' Text
+' ' Text
+'in' Text
+' ' Text
+'an' Text
+' ' Text
+'image' Text
+' ' Text
+'caption' Text
+',' Text
+' ' Text
+'the' Text
+' ' Text
+'"' Text
+'small' Text
+'"' Text
+' ' Text
+'tag' Text
+' ' Text
+'can' Text
+' ' Text
+'also' Text
+' ' Text
+'be' Text
+' ' Text
+'used' Text
+' ' Text
+'to' Text
+'\n' Text
+
+'<' Punctuation
+'small' Name.Tag
+' ' Text.Whitespace
+'style' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+'font' Literal.String.Double
+'-' Literal.String.Double
+'size' Literal.String.Double
+':' Literal.String.Double
+'87' Literal.String.Double
+'%' Literal.String.Double
+';' Literal.String.Double
+'"' Literal.String.Double
+'>' Punctuation
+'reduce' Text
+' ' Text
+'a' Text
+' ' Text
+'text' Text
+"'" Text
+'s' Text
+' ' Text
+'font' Text
+'-' Text
+'size' Text
+' ' Text
+'to' Text
+' ' Text
+'87' Text
+'%' Text
+'</' Punctuation
+'small' Name.Tag
+'>' Punctuation
+'.' Text
+'\n' Text
+
+'\n' Text
+
+'Better' Text
+' ' Text
+'not' Text
+' ' Text
+'use' Text
+' ' Text
+'<' Punctuation
+'big' Name.Tag
+'>' Punctuation
+'big' Text
+' ' Text
+'text' Text
+'</' Punctuation
+'big' Name.Tag
+'>' Punctuation
+',' Text
+' ' Text
+'unless' Text
+' ' Text
+'<' Punctuation
+'small' Name.Tag
+'>' Punctuation
+'it' Text
+"'" Text
+'s' Text
+' ' Text
+'<' Punctuation
+'big' Name.Tag
+'>' Punctuation
+'within' Text
+'</' Punctuation
+'big' Name.Tag
+'>' Punctuation
+' ' Text
+'small' Text
+'</' Punctuation
+'small' Name.Tag
+'>' Punctuation
+' ' Text
+'text' Text
+'.' Text
+'\n' Text
+
+'\n' Text
+
+'x' Text
+'<' Punctuation
+'sub' Name.Tag
+'>' Punctuation
+'1' Text
+'</' Punctuation
+'sub' Name.Tag
+'>' Punctuation
+' ' Text
+'x' Text
+'<' Punctuation
+'sub' Name.Tag
+'>' Punctuation
+'2' Text
+'</' Punctuation
+'sub' Name.Tag
+'>' Punctuation
+' ' Text
+'x' Text
+'<' Punctuation
+'sub' Name.Tag
+'>' Punctuation
+'3' Text
+'</' Punctuation
+'sub' Name.Tag
+'>' Punctuation
+'\n' Text
+
+'\n' Text
+
+'function' Text
+' ' Text
+'<' Punctuation
+'code' Name.Tag
+'>' Punctuation
+'int' Text
+' ' Text
+'m2' Text
+'(' Text
+')' Text
+'</' Punctuation
+'code' Name.Tag
+'>' Punctuation
+' ' Text
+'is' Text
+' ' Text
+'nice' Text
+'.' Text
+'\n' Text
+
+'\n' Text
+
+'You' Text
+' ' Text
+'can' Text
+' ' Text
+'<' Punctuation
+'del' Name.Tag
+'>' Punctuation
+'indicate' Text
+' ' Text
+'deleted' Text
+' ' Text
+'material' Text
+'</' Punctuation
+'del' Name.Tag
+'>' Punctuation
+' ' Text
+'and' Text
+' ' Text
+'<' Punctuation
+'ins' Name.Tag
+'>' Punctuation
+'inserted' Text
+' ' Text
+'material' Text
+'</' Punctuation
+'ins' Name.Tag
+'>' Punctuation
+'.' Text
+'\n' Text
+
+'\n' Text
+
+'<' Punctuation
+'div' Name.Tag
+' >' Punctuation
+'</' Punctuation
+'div' Name.Tag
+' ' Text.Whitespace
+'>' Punctuation
+'\n' Text
+
+'\n' Text
+
+'<' Punctuation
+'span' Name.Tag
+' ' Text.Whitespace
+'<!-- this is a comment -->' Comment.Multiline
+' >' Punctuation
+'</' Punctuation
+'span' Name.Tag
+'>' Punctuation
+'\n' Text
+
+'\n' Text
+
+'<' Punctuation
+'span' Name.Tag
+' ' Text.Whitespace
+'class' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+'citation' Literal.String.Double
+' ' Literal.String.Double
+'{{{' Punctuation
+'Citation class' Name.Variable
+'|' Punctuation
+'{{{' Punctuation
+'Citation type' Name.Variable
+'|' Punctuation
+'}}}' Punctuation
+'}}}' Punctuation
+'"' Literal.String.Double
+'>' Punctuation
+'</' Punctuation
+'span' Name.Tag
+'>' Punctuation
+'\n' Text
+
+'\n' Text
+
+'<' Text
+'a' Text
+'>' Text
+'<' Text
+'/' Text
+'a' Text
+'>' Text
+'\n' Text
diff --git a/tests/snippets/wikitext/language-converter.txt b/tests/snippets/wikitext/language-converter.txt
new file mode 100644
index 00000000..c8fef97f
--- /dev/null
+++ b/tests/snippets/wikitext/language-converter.txt
@@ -0,0 +1,273 @@
+---input---
+-{H|zh-cn:[[博客]]; zh-hk:網誌; zh-tw:部落格}-
+-{H|zh-cn:博客; zh-hk:網誌; zh-tw:部落格;}-
+-{H|zh-cn:[[博客]]; zh-hk:網誌; zh-tw:部落格; }-
+
+-{zh-cn:[[博客]]; zh-hk:網誌; zh-tw:部落格}-
+-{zh-cn:博客; zh-hk:網誌; zh-tw:部落格;}-
+-{zh-cn:[[博客]]; zh-hk:網誌; zh-tw:部落格; }-
+
+-{zh-tw=>zh-cn:[[博客]];zh-hk=>zh-cn:[[博客]]; }-
+
+-{部落格}- -{[[部落格]]}-
+
+-{zh-cn:-{[[博客]]}-; zh-invalid:網誌; zh-tw:部落格}-
+
+-{zh-invalid:''a''[[博客]];;;zh-cn:a}-
+-{zh:''a''[[博客]]}-
+
+-{zh-hans:<span style="font-size:120%;">xxx</span>;zh-hant:\
+<span style="font-size:120%;">yyy</span>;}-
+
+---tokens---
+'-{' Punctuation
+'H' Keyword
+'|' Punctuation
+'zh-cn' Name.Label
+':' Punctuation
+'[[' Punctuation
+'博客' Name.Tag
+']]' Punctuation
+';' Punctuation
+' zh-hk' Name.Label
+':' Punctuation
+'網誌' Text
+';' Punctuation
+' zh-tw' Name.Label
+':' Punctuation
+'部落格' Text
+'}-' Punctuation
+'\n' Text
+
+'-{' Punctuation
+'H' Keyword
+'|' Punctuation
+'zh-cn' Name.Label
+':' Punctuation
+'博客' Text
+';' Punctuation
+' zh-hk' Name.Label
+':' Punctuation
+'網誌' Text
+';' Punctuation
+' zh-tw' Name.Label
+':' Punctuation
+'部落格' Text
+';}-' Punctuation
+'\n' Text
+
+'-{' Punctuation
+'H' Keyword
+'|' Punctuation
+'zh-cn' Name.Label
+':' Punctuation
+'[[' Punctuation
+'博客' Name.Tag
+']]' Punctuation
+';' Punctuation
+' zh-hk' Name.Label
+':' Punctuation
+'網誌' Text
+';' Punctuation
+' zh-tw' Name.Label
+':' Punctuation
+'部落格' Text
+'; }-' Punctuation
+'\n' Text
+
+'\n' Text
+
+'-{' Punctuation
+'zh-cn' Name.Label
+':' Punctuation
+'[[' Punctuation
+'博客' Name.Tag
+']]' Punctuation
+';' Punctuation
+' zh-hk' Name.Label
+':' Punctuation
+'網誌' Text
+';' Punctuation
+' zh-tw' Name.Label
+':' Punctuation
+'部落格' Text
+'}-' Punctuation
+'\n' Text
+
+'-{' Punctuation
+'zh-cn' Name.Label
+':' Punctuation
+'博客' Text
+';' Punctuation
+' zh-hk' Name.Label
+':' Punctuation
+'網誌' Text
+';' Punctuation
+' zh-tw' Name.Label
+':' Punctuation
+'部落格' Text
+';}-' Punctuation
+'\n' Text
+
+'-{' Punctuation
+'zh-cn' Name.Label
+':' Punctuation
+'[[' Punctuation
+'博客' Name.Tag
+']]' Punctuation
+';' Punctuation
+' zh-hk' Name.Label
+':' Punctuation
+'網誌' Text
+';' Punctuation
+' zh-tw' Name.Label
+':' Punctuation
+'部落格' Text
+'; }-' Punctuation
+'\n' Text
+
+'\n' Text
+
+'-{' Punctuation
+'zh-tw' Name.Label
+'=>' Operator
+'zh-cn' Name.Label
+':' Punctuation
+'[[' Punctuation
+'博客' Name.Tag
+']]' Punctuation
+';' Punctuation
+'zh-hk' Name.Label
+'=>' Operator
+'zh-cn' Name.Label
+':' Punctuation
+'[[' Punctuation
+'博客' Name.Tag
+']]' Punctuation
+'; }-' Punctuation
+'\n' Text
+
+'\n' Text
+
+'-{' Punctuation
+'部落格' Text
+'}-' Punctuation
+' ' Text
+'-{' Punctuation
+'[[' Punctuation
+'部落格' Name.Tag
+']]' Punctuation
+'}-' Punctuation
+'\n' Text
+
+'\n' Text
+
+'-{' Punctuation
+'zh-cn' Name.Label
+':' Punctuation
+'-{' Punctuation
+'[[' Punctuation
+'博客' Name.Tag
+']]' Punctuation
+'}-' Punctuation
+';' Text
+' ' Text
+'zh' Text
+'-' Text
+'invalid' Text
+':' Text
+'網誌' Text
+';' Punctuation
+' zh-tw' Name.Label
+':' Punctuation
+'部落格' Text
+'}-' Punctuation
+'\n' Text
+
+'\n' Text
+
+'-{' Punctuation
+'zh' Text
+'-' Text
+'invalid' Text
+':' Text
+"''" Generic.Emph
+'a' Generic.Emph
+"''" Generic.Emph
+'[[' Punctuation
+'博客' Name.Tag
+']]' Punctuation
+';' Text
+';' Text
+';' Text
+'zh' Text
+'-' Text
+'cn' Text
+':' Text
+'a' Text
+'}-' Punctuation
+'\n' Text
+
+'-{' Punctuation
+'zh' Name.Label
+':' Punctuation
+"''" Generic.Emph
+'a' Generic.Emph
+"''" Generic.Emph
+'[[' Punctuation
+'博客' Name.Tag
+']]' Punctuation
+'}-' Punctuation
+'\n' Text
+
+'\n' Text
+
+'-{' Punctuation
+'zh-hans' Name.Label
+':' Punctuation
+'<' Punctuation
+'span' Name.Tag
+' ' Text.Whitespace
+'style' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+'font' Literal.String.Double
+'-' Literal.String.Double
+'size' Literal.String.Double
+':' Literal.String.Double
+'120' Literal.String.Double
+'%' Literal.String.Double
+';' Literal.String.Double
+'"' Literal.String.Double
+'>' Punctuation
+'xxx' Text
+'</' Punctuation
+'span' Name.Tag
+'>' Punctuation
+';' Punctuation
+'zh-hant' Name.Label
+':' Punctuation
+'\\' Text
+'\n' Text
+
+'<' Punctuation
+'span' Name.Tag
+' ' Text.Whitespace
+'style' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+'font' Literal.String.Double
+'-' Literal.String.Double
+'size' Literal.String.Double
+':' Literal.String.Double
+'120' Literal.String.Double
+'%' Literal.String.Double
+';' Literal.String.Double
+'"' Literal.String.Double
+'>' Punctuation
+'yyy' Text
+'</' Punctuation
+'span' Name.Tag
+'>' Punctuation
+';}-' Punctuation
+'\n' Text
diff --git a/tests/snippets/wikitext/list.txt b/tests/snippets/wikitext/list.txt
new file mode 100644
index 00000000..10613a18
--- /dev/null
+++ b/tests/snippets/wikitext/list.txt
@@ -0,0 +1,532 @@
+---input---
+; Term : Definition1
+: Definition2
+
+; '''Term'''
+: Definition1
+: Definition2
+: Definition3
+: Definition4
+
+; [[Wikipedia:Term#123|Blah]] : Definition1
+
+; [[Wikipedia:Term#123|Blah]] 
+: Definition1
+
+# Item1
+# ''Item2''
+# Item3
+# [[Item4]]
+## Sub-item 1
+### Sub-sub-item
+#### Sub-sub-sub-item
+## Sub-item 2
+# Item5
+
+* Item1
+* '''Item2'''
+* Item3
+* [[Item4]]
+** Sub-item 4 a)
+*** Sub-item 4 a) 1.
+**** Sub-item 4 a) 1. i)
+**** Sub-item 4 a) 1. ii)
+** Sub-item 4 b)
+* Item5
+
+Indentation as used on talk pages:
+:[[Each]] ''colon'' at the '''start''' of a line
+::causes the line to be indented by three more character positions.
+:::(The indentation persists
+so long as no carriage return or line break is used.)
+:::Repeat the indentation at any line break.
+::::Use an extra colon for each response.
+:::::And so forth ...
+::::::And so on ...
+{{Outdent|::::::}}The outdent template can give a visual indicator that we're deliberately cancelling the indent (6 levels here)
+
+:*# Mixed list
+::##:*: Complex mixed list
+
+---tokens---
+';' Keyword
+' ' Text
+'Term' Text
+' ' Text
+':' Keyword
+' ' Text
+'Definition1' Text
+'\n' Text
+
+':' Keyword
+' ' Text
+'Definition2' Text
+'\n' Text
+
+'\n' Text
+
+';' Keyword
+' ' Text
+"'''" Generic.Strong
+'Term' Generic.Strong
+"'''" Generic.Strong
+'\n' Text
+
+':' Keyword
+' ' Text
+'Definition1' Text
+'\n' Text
+
+':' Keyword
+' ' Text
+'Definition2' Text
+'\n' Text
+
+':' Keyword
+' ' Text
+'Definition3' Text
+'\n' Text
+
+':' Keyword
+' ' Text
+'Definition4' Text
+'\n' Text
+
+'\n' Text
+
+';' Keyword
+' ' Text
+'[[' Punctuation
+'Wikipedia' Name.Namespace
+':' Punctuation
+'Term' Name.Tag
+'#' Punctuation
+'123' Name.Label
+'|' Punctuation
+'Blah' Text
+']]' Punctuation
+'\xa0' Text
+':' Keyword
+' ' Text
+'Definition1' Text
+'\n' Text
+
+'\n' Text
+
+';' Keyword
+' ' Text
+'[[' Punctuation
+'Wikipedia' Name.Namespace
+':' Punctuation
+'Term' Name.Tag
+'#' Punctuation
+'123' Name.Label
+'|' Punctuation
+'Blah' Text
+']]' Punctuation
+'\xa0' Text
+'\n' Text
+
+':' Keyword
+' ' Text
+'Definition1' Text
+'\n' Text
+
+'\n' Text
+
+'#' Keyword
+' ' Text
+'Item1' Text
+'\n' Text
+
+'#' Keyword
+' ' Text
+"''" Generic.Emph
+'Item2' Generic.Emph
+"''" Generic.Emph
+'\n' Text
+
+'#' Keyword
+' ' Text
+'Item3' Text
+'\n' Text
+
+'#' Keyword
+' ' Text
+'[[' Punctuation
+'Item4' Name.Tag
+']]' Punctuation
+'\n' Text
+
+'##' Keyword
+' ' Text
+'Sub' Text
+'-' Text
+'item' Text
+' ' Text
+'1' Text
+'\n' Text
+
+'###' Keyword
+' ' Text
+'Sub' Text
+'-' Text
+'sub' Text
+'-' Text
+'item' Text
+'\n' Text
+
+'####' Keyword
+' ' Text
+'Sub' Text
+'-' Text
+'sub' Text
+'-' Text
+'sub' Text
+'-' Text
+'item' Text
+'\n' Text
+
+'##' Keyword
+' ' Text
+'Sub' Text
+'-' Text
+'item' Text
+' ' Text
+'2' Text
+'\n' Text
+
+'#' Keyword
+' ' Text
+'Item5' Text
+'\n' Text
+
+'\n' Text
+
+'*' Keyword
+' ' Text
+'Item1' Text
+'\n' Text
+
+'*' Keyword
+' ' Text
+"'''" Generic.Strong
+'Item2' Generic.Strong
+"'''" Generic.Strong
+'\n' Text
+
+'*' Keyword
+' ' Text
+'Item3' Text
+'\n' Text
+
+'*' Keyword
+' ' Text
+'[[' Punctuation
+'Item4' Name.Tag
+']]' Punctuation
+'\n' Text
+
+'**' Keyword
+' ' Text
+'Sub' Text
+'-' Text
+'item' Text
+' ' Text
+'4' Text
+' ' Text
+'a' Text
+')' Text
+'\n' Text
+
+'***' Keyword
+' ' Text
+'Sub' Text
+'-' Text
+'item' Text
+' ' Text
+'4' Text
+' ' Text
+'a' Text
+')' Text
+' ' Text
+'1' Text
+'.' Text
+'\n' Text
+
+'****' Keyword
+' ' Text
+'Sub' Text
+'-' Text
+'item' Text
+' ' Text
+'4' Text
+' ' Text
+'a' Text
+')' Text
+' ' Text
+'1' Text
+'.' Text
+' ' Text
+'i' Text
+')' Text
+'\n' Text
+
+'****' Keyword
+' ' Text
+'Sub' Text
+'-' Text
+'item' Text
+' ' Text
+'4' Text
+' ' Text
+'a' Text
+')' Text
+' ' Text
+'1' Text
+'.' Text
+' ' Text
+'ii' Text
+')' Text
+'\n' Text
+
+'**' Keyword
+' ' Text
+'Sub' Text
+'-' Text
+'item' Text
+' ' Text
+'4' Text
+' ' Text
+'b' Text
+')' Text
+'\n' Text
+
+'*' Keyword
+' ' Text
+'Item5' Text
+'\n' Text
+
+'\n' Text
+
+'Indentation' Text
+' ' Text
+'as' Text
+' ' Text
+'used' Text
+' ' Text
+'on' Text
+' ' Text
+'talk' Text
+' ' Text
+'pages' Text
+':' Text
+'\n' Text
+
+':' Keyword
+'[[' Punctuation
+'Each' Name.Tag
+']]' Punctuation
+' ' Text
+"''" Generic.Emph
+'colon' Generic.Emph
+"''" Generic.Emph
+' ' Text
+'at' Text
+' ' Text
+'the' Text
+' ' Text
+"'''" Generic.Strong
+'start' Generic.Strong
+"'''" Generic.Strong
+' ' Text
+'of' Text
+' ' Text
+'a' Text
+' ' Text
+'line' Text
+'\n' Text
+
+'::' Keyword
+'causes' Text
+' ' Text
+'the' Text
+' ' Text
+'line' Text
+' ' Text
+'to' Text
+' ' Text
+'be' Text
+' ' Text
+'indented' Text
+' ' Text
+'by' Text
+' ' Text
+'three' Text
+' ' Text
+'more' Text
+' ' Text
+'character' Text
+' ' Text
+'positions' Text
+'.' Text
+'\n' Text
+
+':::' Keyword
+'(' Text
+'The' Text
+' ' Text
+'indentation' Text
+' ' Text
+'persists' Text
+'\n' Text
+
+'so' Text
+' ' Text
+'long' Text
+' ' Text
+'as' Text
+' ' Text
+'no' Text
+' ' Text
+'carriage' Text
+' ' Text
+'return' Text
+' ' Text
+'or' Text
+' ' Text
+'line' Text
+' ' Text
+'break' Text
+' ' Text
+'is' Text
+' ' Text
+'used' Text
+'.' Text
+')' Text
+'\n' Text
+
+':::' Keyword
+'Repeat' Text
+' ' Text
+'the' Text
+' ' Text
+'indentation' Text
+' ' Text
+'at' Text
+' ' Text
+'any' Text
+' ' Text
+'line' Text
+' ' Text
+'break' Text
+'.' Text
+'\n' Text
+
+'::::' Keyword
+'Use' Text
+' ' Text
+'an' Text
+' ' Text
+'extra' Text
+' ' Text
+'colon' Text
+' ' Text
+'for' Text
+' ' Text
+'each' Text
+' ' Text
+'response' Text
+'.' Text
+'\n' Text
+
+':::::' Keyword
+'And' Text
+' ' Text
+'so' Text
+' ' Text
+'forth' Text
+' ' Text
+'.' Text
+'.' Text
+'.' Text
+'\n' Text
+
+'::::::' Keyword
+'And' Text
+' ' Text
+'so' Text
+' ' Text
+'on' Text
+' ' Text
+'.' Text
+'.' Text
+'.' Text
+'\n' Text
+
+'{{' Punctuation
+'Outdent' Name.Tag
+'|' Punctuation
+':' Text
+':' Text
+':' Text
+':' Text
+':' Text
+':' Text
+'}}' Punctuation
+'The' Text
+' ' Text
+'outdent' Text
+' ' Text
+'template' Text
+' ' Text
+'can' Text
+' ' Text
+'give' Text
+' ' Text
+'a' Text
+' ' Text
+'visual' Text
+' ' Text
+'indicator' Text
+' ' Text
+'that' Text
+' ' Text
+'we' Text
+"'" Text
+'re' Text
+' ' Text
+'deliberately' Text
+' ' Text
+'cancelling' Text
+' ' Text
+'the' Text
+' ' Text
+'indent' Text
+' ' Text
+'(' Text
+'6' Text
+' ' Text
+'levels' Text
+' ' Text
+'here' Text
+')' Text
+'\n' Text
+
+'\n' Text
+
+':*#' Keyword
+' ' Text
+'Mixed' Text
+' ' Text
+'list' Text
+'\n' Text
+
+'::##:*:' Keyword
+' ' Text
+'Complex' Text
+' ' Text
+'mixed' Text
+' ' Text
+'list' Text
+'\n' Text
diff --git a/tests/snippets/wikitext/magic-link.txt b/tests/snippets/wikitext/magic-link.txt
new file mode 100644
index 00000000..836f75ea
--- /dev/null
+++ b/tests/snippets/wikitext/magic-link.txt
@@ -0,0 +1,52 @@
+---input---
+RFC 1
+RFC 2
+RFC 3f
+rfc 4
+PMID&nbsp;&#160; &#x0a0;114514
+ISBN 978-3-16-148410-0
+ISBN 978&nbsp;3 16-148410&#160;0
+https://example.com
+irc://example.com
+nolink://example.com
+
+---tokens---
+'RFC 1' Name.Function.Magic
+'\n' Text
+
+'RFC 2' Name.Function.Magic
+'\n' Text
+
+'RFC' Text
+' ' Text
+'3f' Text
+'\n' Text
+
+'rfc' Text
+' ' Text
+'4' Text
+'\n' Text
+
+'PMID&nbsp;&#160; &#x0a0;114514' Name.Function.Magic
+'\n' Text
+
+'ISBN 978-3-16-148410-0' Name.Function.Magic
+'\n' Text
+
+'ISBN 978&nbsp;3 16-148410&#160;0' Name.Function.Magic
+'\n' Text
+
+'https://example.com' Name.Label
+'\n' Text
+
+'irc://example.com' Name.Label
+'\n' Text
+
+'nolink' Text
+':' Text
+'/' Text
+'/' Text
+'example' Text
+'.' Text
+'com' Text
+'\n' Text
diff --git a/tests/snippets/wikitext/magic-word.txt b/tests/snippets/wikitext/magic-word.txt
new file mode 100644
index 00000000..e0736baf
--- /dev/null
+++ b/tests/snippets/wikitext/magic-word.txt
@@ -0,0 +1,157 @@
+---input---
+__NOTOC__
+__FORCETOC__
+__TOC__
+__NOEDITSECTION__
+__NEWSECTIONLINK__
+__NONEWSECTIONLINK__
+__NOGALLERY__
+__HIDDENCAT__
+__EXPECTUNUSEDCATEGORY__
+__NOCONTENTCONVERT__
+__NOCC__
+__NOTITLECONVERT__
+__NOTC__
+__INDEX__
+__NOINDEX__
+__STATICREDIRECT__
+__NOGLOBAL__
+__DISAMBIG__
+__EXPECTED_UNCONNECTED_PAGE__
+
+__notoc__
+__forcetoc__
+__toc__
+__noeditsection__
+__newsectionlink__
+__nonewsectionlink__
+__nogallery__
+__hiddencat__
+__expectunusedcategory__
+__nocontentconvert__
+__nocc__
+__notitleconvert__
+__notc__
+__index__
+__noindex__
+__staticredirect__
+__noglobal__
+__disambig__
+__expected_unconnected_page__
+
+---tokens---
+'__NOTOC__' Name.Function.Magic
+'\n' Text
+
+'__FORCETOC__' Name.Function.Magic
+'\n' Text
+
+'__TOC__' Name.Function.Magic
+'\n' Text
+
+'__NOEDITSECTION__' Name.Function.Magic
+'\n' Text
+
+'__NEWSECTIONLINK__' Name.Function.Magic
+'\n' Text
+
+'__NONEWSECTIONLINK__' Name.Function.Magic
+'\n' Text
+
+'__NOGALLERY__' Name.Function.Magic
+'\n' Text
+
+'__HIDDENCAT__' Name.Function.Magic
+'\n' Text
+
+'__EXPECTUNUSEDCATEGORY__' Name.Function.Magic
+'\n' Text
+
+'__NOCONTENTCONVERT__' Name.Function.Magic
+'\n' Text
+
+'__NOCC__' Name.Function.Magic
+'\n' Text
+
+'__NOTITLECONVERT__' Name.Function.Magic
+'\n' Text
+
+'__NOTC__' Name.Function.Magic
+'\n' Text
+
+'__INDEX__' Name.Function.Magic
+'\n' Text
+
+'__NOINDEX__' Name.Function.Magic
+'\n' Text
+
+'__STATICREDIRECT__' Name.Function.Magic
+'\n' Text
+
+'__NOGLOBAL__' Name.Function.Magic
+'\n' Text
+
+'__DISAMBIG__' Name.Function.Magic
+'\n' Text
+
+'__EXPECTED_UNCONNECTED_PAGE__' Name.Function.Magic
+'\n' Text
+
+'\n' Text
+
+'__notoc__' Name.Function.Magic
+'\n' Text
+
+'__forcetoc__' Name.Function.Magic
+'\n' Text
+
+'__toc__' Name.Function.Magic
+'\n' Text
+
+'__noeditsection__' Name.Function.Magic
+'\n' Text
+
+'__newsectionlink__' Text
+'\n' Text
+
+'__nonewsectionlink__' Text
+'\n' Text
+
+'__nogallery__' Name.Function.Magic
+'\n' Text
+
+'__hiddencat__' Text
+'\n' Text
+
+'__expectunusedcategory__' Text
+'\n' Text
+
+'__nocontentconvert__' Name.Function.Magic
+'\n' Text
+
+'__nocc__' Name.Function.Magic
+'\n' Text
+
+'__notitleconvert__' Name.Function.Magic
+'\n' Text
+
+'__notc__' Name.Function.Magic
+'\n' Text
+
+'__index__' Text
+'\n' Text
+
+'__noindex__' Text
+'\n' Text
+
+'__staticredirect__' Text
+'\n' Text
+
+'__noglobal__' Text
+'\n' Text
+
+'__disambig__' Text
+'\n' Text
+
+'__expected_unconnected_page__' Text
+'\n' Text
diff --git a/tests/snippets/wikitext/medialink.txt b/tests/snippets/wikitext/medialink.txt
new file mode 100644
index 00000000..be51b8bb
--- /dev/null
+++ b/tests/snippets/wikitext/medialink.txt
@@ -0,0 +1,171 @@
+---input---
+[[File:wiki.png|thumb|Wikipedia logo]]
+[[File:wiki.png]]
+[[File:wiki.png|alt=Puzzle globe logo]]
+[[File:wiki.png|link=Wikipedia]]
+[[File:wiki.png|frame|centre|alt=Puzzle globe|Wikipedia logo]]
+[[File:wiki.png|thumb|left|alt=Puzzle globe|Wikipedia logo]]
+[[File:wiki.png|50 px|Wikipedia encyclopedia]]
+[[File:wiki.png|thumb|[[a|b]]]]
+[[File:wiki.png|thumb|[https://www.google.com]]]
+
+[[Media:wiki.png|Image of jigsaw globe]]
+[[media:Classical guitar scale.ogg|Sound]]
+
+---tokens---
+'[[' Punctuation
+'File' Name.Namespace
+':' Punctuation
+'wiki.png' Name.Tag
+'|' Punctuation
+'thumb' Text
+'|' Punctuation
+'Wikipedia' Text
+' ' Text
+'logo' Text
+']]' Punctuation
+'\n' Text
+
+'[[' Punctuation
+'File' Name.Namespace
+':' Punctuation
+'wiki.png' Name.Tag
+']]' Punctuation
+'\n' Text
+
+'[[' Punctuation
+'File' Name.Namespace
+':' Punctuation
+'wiki.png' Name.Tag
+'|' Punctuation
+'alt' Name.Attribute
+'=' Operator
+'Puzzle' Text
+' ' Text
+'globe' Text
+' ' Text
+'logo' Text
+']]' Punctuation
+'\n' Text
+
+'[[' Punctuation
+'File' Name.Namespace
+':' Punctuation
+'wiki.png' Name.Tag
+'|' Punctuation
+'link' Name.Attribute
+'=' Operator
+'Wikipedia' Text
+']]' Punctuation
+'\n' Text
+
+'[[' Punctuation
+'File' Name.Namespace
+':' Punctuation
+'wiki.png' Name.Tag
+'|' Punctuation
+'frame' Text
+'|' Punctuation
+'centre' Text
+'|' Punctuation
+'alt' Name.Attribute
+'=' Operator
+'Puzzle' Text
+' ' Text
+'globe' Text
+'|' Punctuation
+'Wikipedia' Text
+' ' Text
+'logo' Text
+']]' Punctuation
+'\n' Text
+
+'[[' Punctuation
+'File' Name.Namespace
+':' Punctuation
+'wiki.png' Name.Tag
+'|' Punctuation
+'thumb' Text
+'|' Punctuation
+'left' Text
+'|' Punctuation
+'alt' Name.Attribute
+'=' Operator
+'Puzzle' Text
+' ' Text
+'globe' Text
+'|' Punctuation
+'Wikipedia' Text
+' ' Text
+'logo' Text
+']]' Punctuation
+'\n' Text
+
+'[[' Punctuation
+'File' Name.Namespace
+':' Punctuation
+'wiki.png' Name.Tag
+'|' Punctuation
+'50' Text
+' ' Text
+'px' Text
+'|' Punctuation
+'Wikipedia' Text
+' ' Text
+'encyclopedia' Text
+']]' Punctuation
+'\n' Text
+
+'[[' Punctuation
+'File' Name.Namespace
+':' Punctuation
+'wiki.png' Name.Tag
+'|' Punctuation
+'thumb' Text
+'|' Punctuation
+'[[' Punctuation
+'a' Name.Tag
+'|' Punctuation
+'b' Text
+']]' Punctuation
+']]' Punctuation
+'\n' Text
+
+'[[' Punctuation
+'File' Name.Namespace
+':' Punctuation
+'wiki.png' Name.Tag
+'|' Punctuation
+'thumb' Text
+'|' Punctuation
+'[' Punctuation
+'https://www.google.com' Name.Label
+']' Punctuation
+']]' Punctuation
+'\n' Text
+
+'\n' Text
+
+'[[' Punctuation
+'Media' Name.Namespace
+':' Punctuation
+'wiki.png' Name.Tag
+'|' Punctuation
+'Image' Text
+' ' Text
+'of' Text
+' ' Text
+'jigsaw' Text
+' ' Text
+'globe' Text
+']]' Punctuation
+'\n' Text
+
+'[[' Punctuation
+'media' Name.Namespace
+':' Punctuation
+'Classical guitar scale.ogg' Name.Tag
+'|' Punctuation
+'Sound' Text
+']]' Punctuation
+'\n' Text
diff --git a/tests/snippets/wikitext/only-highlight-first-redirect.txt b/tests/snippets/wikitext/only-highlight-first-redirect.txt
new file mode 100644
index 00000000..2ca8c1c3
--- /dev/null
+++ b/tests/snippets/wikitext/only-highlight-first-redirect.txt
@@ -0,0 +1,22 @@
+---input---
+#REDIRECT [[Test]]
+
+#REDIRECT [[Test]]
+
+---tokens---
+'#REDIRECT' Keyword
+' ' Text.Whitespace
+'[[' Punctuation
+'Test' Name.Tag
+']]' Punctuation
+'\n' Text.Whitespace
+
+'\n' Text
+
+'#' Keyword
+'REDIRECT' Text
+' ' Text
+'[[' Punctuation
+'Test' Name.Tag
+']]' Punctuation
+'\n' Text
diff --git a/tests/snippets/wikitext/parser-function.txt b/tests/snippets/wikitext/parser-function.txt
new file mode 100644
index 00000000..49e10f2c
--- /dev/null
+++ b/tests/snippets/wikitext/parser-function.txt
@@ -0,0 +1,2717 @@
+---input---
+{{#speciale:userlogin}}
+
+{{#if: 1==2 | yes | no }}
+{{#if:{{{1|}}}|You entered text in variable 1|There is no text in variable 1}}
+
+{{#ifeq: {{#expr:10^3}} | 1000 | equal | not equal}}
+
+{{#iferror: <strong class="error">a</strong> | error | correct }}
+
+{{#ifeq:{{{1}}}|condition1
+ |<!--then-->branch1t{{
+ #ifeq:{{{1}}}|condition2
+ |<!--then-->branch1t2t{{#ifeq:{{{1}}}|condition4|<!--then-->branch1t2t4t|<!--else-->branch1t2t4e}}
+ |<!--else-->branch1t2e{{#ifeq:{{{1}}}|condition5|<!--then-->branch1t2e5t|<!--else-->branch1t2e5e}}
+ }}
+ |<!--else-->branch1e{{#ifeq:{{{1}}}|condition3
+ |<!--then-->branch1e3t{{#ifeq:{{{1}}}|condition6|branch1e3t6t|branch1e3t6e}}
+ |<!--else-->branch1e3e{{
+ #ifeq:{{{1}}}|condition7
+ |branch1e3e7t
+ |branch1e3e7t
+ }}
+ }}
+}}
+
+{{CURRENTYEAR}}
+{{CURRENTMONTH}}
+{{CURRENTMONTH1}}
+{{CURRENTMONTHNAME}}
+{{CURRENTMONTHNAMEGEN}}
+{{CURRENTMONTHABBREV}}
+{{CURRENTDAY}}
+{{CURRENTDAY2}}
+{{CURRENTDOW}}
+{{CURRENTDAYNAME}}
+{{CURRENTTIME}}
+{{CURRENTHOUR}}
+{{CURRENTWEEK}}
+{{CURRENTTIMESTAMP}}
+{{LOCALYEAR}}
+{{LOCALMONTH}}
+{{LOCALMONTH1}}
+{{LOCALMONTHNAME}}
+{{LOCALMONTHNAMEGEN}}
+{{LOCALMONTHABBREV}}
+{{LOCALDAY}}
+{{LOCALDAY2}}
+{{LOCALDOW}}
+{{LOCALDAYNAME}}
+{{LOCALTIME}}
+{{LOCALHOUR}}
+{{LOCALWEEK}}
+{{LOCALTIMESTAMP}}
+{{SITENAME}}
+{{SERVER}}
+{{SERVERNAME}}
+{{DIRMARK}}
+{{DIRECTIONMARK}}
+{{SCRIPTPATH}}
+{{STYLEPATH}}
+{{CURRENTVERSION}}
+{{CONTENTLANGUAGE}}
+{{CONTENTLANG}}
+{{PAGEID}}
+{{PAGELANGUAGE}}
+{{#language:{{PAGELANGUAGE}}}}
+{{PROTECTIONLEVEL:action}}
+{{PROTECTIONEXPIRY:action}}
+{{CASCADINGSOURCES}}
+{{REVISIONID}}
+{{REVISIONDAY}}
+{{REVISIONDAY2}}
+{{REVISIONMONTH}}
+{{REVISIONMONTH1}}
+{{REVISIONYEAR}}
+{{REVISIONTIMESTAMP}}
+{{REVISIONUSER}}
+{{REVISIONSIZE}}
+{{DISPLAYTITLE:title}}
+{{DISPLAYTITLE:title|noerror}}
+{{DISPLAYTITLE:title|noreplace}}
+{{DEFAULTSORT:sortkey}}
+{{DEFAULTSORTKEY:sortkey}}
+{{DEFAULTCATEGORYSORT:sortkey}}
+{{DEFAULTSORT:sortkey|noerror}}
+{{DEFAULTSORT:sortkey|noreplace}}
+{{NUMBEROFPAGES}}
+{{NUMBEROFARTICLES}}
+{{NUMBEROFFILES}}
+{{NUMBEROFEDITS}}
+{{NUMBEROFUSERS}}
+{{NUMBEROFADMINS}}
+{{NUMBEROFACTIVEUSERS}}
+{{PAGESINCATEGORY:categoryname}}
+{{PAGESINCAT:categoryname}}
+{{PAGESINCATEGORY:categoryname|all}}
+{{PAGESINCATEGORY:categoryname|pages}}
+{{PAGESINCATEGORY:categoryname|subcats}}
+{{PAGESINCATEGORY:categoryname|files}}
+{{NUMBERINGROUP:groupname}}
+{{NUMINGROUP:groupname}}
+{{PAGESINNS:index}}
+{{PAGESINNAMESPACE:index}}
+{{FULLPAGENAME}}
+{{PAGENAME}}
+{{BASEPAGENAME}}
+{{ROOTPAGENAME}}
+{{SUBPAGENAME}}
+{{SUBJECTPAGENAME}}
+{{ARTICLEPAGENAME}}
+{{TALKPAGENAME}}
+{{PAGENAME:Template:Main Page}}
+{{PAGENAME:one/./three}}
+{{FULLPAGENAMEE}}
+{{PAGENAMEE}}
+{{BASEPAGENAMEE}}
+{{SUBPAGENAMEE}}
+{{SUBJECTPAGENAMEE}}
+{{ARTICLEPAGENAMEE}}
+{{TALKPAGENAMEE}}
+{{ROOTPAGENAMEE}}
+{{NAMESPACE}}
+{{NAMESPACENUMBER}}
+{{SUBJECTSPACE}}
+{{ARTICLESPACE}}
+{{TALKSPACE}}
+{{NAMESPACEE}}
+{{SUBJECTSPACEE}}
+{{ARTICLESPACEE}}
+{{TALKSPACEE}}
+{{NAMESPACENUMBER:MediaWiki}}
+{{NAMESPACE:MediaWiki}}
+{{NAMESPACE:Template:Main Page}}
+{{SUBJECTSPACE:Template:Main Page}}
+{{ARTICLESPACE:Template:Main Page}}
+{{TALKSPACE:Template:Main Page}}
+{{SUBJECTSPACE:Help talk}}
+{{!}}
+{{=}}
+{{PAGEID: page name }}
+{{PAGESIZE:page name}}
+{{PAGESIZE: page name |R}}
+{{PROTECTIONLEVEL:action | page name}}
+{{PROTECTIONEXPIRY: action | page name}}
+{{CASCADINGSOURCES: page name}}
+{{REVISIONID: page name }}
+{{REVISIONDAY: page name }}
+{{REVISIONDAY2: page name }}
+{{REVISIONMONTH: page name }}
+{{REVISIONMONTH1: page name }}
+{{REVISIONYEAR: page name }}
+{{REVISIONTIMESTAMP: page name }}
+{{REVISIONUSER: page name }}
+{{localurl:page name}}
+{{localurl:page name
+|query_string}}
+{{localurl:MediaWiki|printable=yes}}
+{{fullurl:page name}}
+{{fullurl:page name
+|query_string}}
+{{fullurl:interwiki:remote page name
+|query_string}}
+{{fullurl:Category:Top level|action=edit}}
+{{fullurl:s:Electra|action=edit}}
+{{fullurl:s:es:Electra|action=edit}}
+{{canonicalurl:page name}}
+{{canonicalurl:page name
+|query_string}}
+{{canonicalurl:interwiki:remote page name
+|query_string}}
+{{canonicalurl:Category:Top level|action=edit}}
+{{filepath:file name}}
+{{filepath:file name|nowiki}}
+{{filepath:file name|thumbnail_size}}
+{{filepath:Wiki.png|nowiki}}
+{{filepath:Example.svg|300}}
+{{urlencode:string}}
+{{urlencode:string|QUERY}}
+{{urlencode:string|WIKI}}
+{{urlencode:string|PATH}}
+{{urlencode:x:y/z á é|QUERY}}
+{{urlencode:x:y/z á é|WIKI}}
+{{urlencode:x:y/z á é|PATH}}
+{{anchorencode:string}}
+{{ns:}}
+{{nse:}}
+{{ns:-2}}
+{{ns:0}}
+{{ns:2}}
+{{ns:4}}
+{{ns:6}}
+{{ns:8}}
+{{ns:10}}
+{{ns:12}}
+{{ns:14}}
+{{formatnum:unformatted number}}
+{{formatnum:formatnum-formatted number|R}}
+{{formatnum:unformatted number|NOSEP}}
+{{formatnum:987654321.654321}}
+{{formatnum:987,654,321.654321|R}}
+{{formatnum:{{formatnum:987654321.654321}}}}
+{{formatnum:00001}}
+{{formatnum:987654321.654321 |NOSEP}}
+{{formatnum:987654321.654321}}
+{{formatnum:987654321.654321 |NOSEP}}
+{{formatnum:৯৮,৭৬,৫৪,৩২১.৬৫৪৩২১ |R}}
+{{formatnum:{{formatnum:987.654.321}}}}
+{{formatnum:987,654.321|R}}
+{{formatnum:987.654,321|R}}
+{{formatnum:987 654,321|R}}
+{{formatnum:987&nbsp;654,321|R}}
+{{#dateformat:date}}
+{{#formatdate:date}}
+{{#dateformat:date|format}}
+{{#formatdate:date|format}}
+{{#dateformat:25 dec 2009|ymd}}
+{{#formatdate:dec 25,2009|dmy}}
+{{#dateformat:2009-12-25|mdy}}
+{{#formatdate:2009 dec 25|ISO 8601}}
+{{#dateformat:25 decEmber|mdy}}
+{{lc:string}}
+{{lc:DATA CENTER}}
+{{lcfirst:string}}
+{{lcfirst:DATA center}}
+{{uc:string}}
+{{uc:text transform}}
+{{ucfirst:string}}
+{{ucfirst:text tRAnSFORM}}
+{{padleft:xyz|stringlength}}
+{{padleft:xyz|strlen|char}}
+{{padleft:xyz|strlen|string}}
+{{padleft:xyz|5}}
+{{padleft:xyz|5|_}}
+{{padleft:xyz|5|abc}}
+{{padleft:xyz|2}}
+{{padleft:|1|xyz}}
+{{padright:xyz|stringlength}}
+{{padright:xyz|strlen|char}}
+{{padright:xyz|strlen|string}}
+{{padright:xyz|5}}
+{{padright:xyz|5|_}}
+{{padright:xyz|5|abc}}
+{{padright:xyz|2}}
+{{padright:|1|xyz}}
+{{PLURAL:2|is|are}}
+{{PLURAL:1*1|is|are}}
+{{PLURAL:21 mod 10|is|are}}
+{{PLURAL:{{#expr:21 mod 10}}}}
+{{PLURAL:1|is|are}}
+{{PLURAL:2|is|are}}
+{{PLURAL:-1|is|are}}
+{{PLURAL:-2|is|are}}
+{{PLURAL:0.5|is|are}}
+{{PLURAL:1.5|is|are}}
+{{PLURAL:-0.5|is|are}}
+{{PLURAL:-1.5|is|are}}
+{{PLURAL:5|1=Категория|Категории}}
+{{PLURAL:3|страница|страницы|страниц}}
+{{PLURAL:5|страница|страницы|страниц}}
+{{GRAMMAR:N|noun}}
+{{GENDER:username|text for every gender}}
+{{GENDER:Username|male text|female text|text for unspecified}}
+{{GENDER:|male text|female text|text for unspecified}}
+{{GENDER:.|male text|female text|text for unspecified}}
+{{int:message name}}
+{{int:editsectionhint|MediaWiki}}
+{{Page name|optional params}}
+{{:xyz}}
+{{int:xyz}}
+{{#language:language code}}
+{{#language:language code|target language code}}
+{{#language:ar|en}}
+{{#special:special page name}}
+{{#speciale:special page name}}
+{{#tag:tagname
+|content
+|attribute1=value1
+|attribute2=value2
+}}
+{{#tag:ref|Citation on Magic words. |name = "multiple"}}
+
+---tokens---
+'{{' Punctuation
+'#speciale' Name.Function
+':' Punctuation
+'userlogin' Text
+'}}' Punctuation
+'\n' Text
+
+'\n' Text
+
+'{{' Punctuation
+'#if' Name.Function
+':' Punctuation
+' ' Text
+'1' Text
+'=' Text
+'=' Text
+'2' Text
+' ' Text
+'|' Punctuation
+' ' Text
+'yes' Text
+' ' Text
+'|' Punctuation
+' ' Text
+'no' Text
+' ' Text
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'#if' Name.Function
+':' Punctuation
+'{{{' Punctuation
+'1' Name.Variable
+'|' Punctuation
+'}}}' Punctuation
+'|' Punctuation
+'You' Text
+' ' Text
+'entered' Text
+' ' Text
+'text' Text
+' ' Text
+'in' Text
+' ' Text
+'variable' Text
+' ' Text
+'1' Text
+'|' Punctuation
+'There' Text
+' ' Text
+'is' Text
+' ' Text
+'no' Text
+' ' Text
+'text' Text
+' ' Text
+'in' Text
+' ' Text
+'variable' Text
+' ' Text
+'1' Text
+'}}' Punctuation
+'\n' Text
+
+'\n' Text
+
+'{{' Punctuation
+'#ifeq' Name.Function
+':' Punctuation
+' ' Text
+'{{' Punctuation
+'#expr' Name.Function
+':' Punctuation
+'10' Text
+'^' Text
+'3' Text
+'}}' Punctuation
+' ' Text
+'|' Punctuation
+' ' Text
+'1000' Text
+' ' Text
+'|' Punctuation
+' ' Text
+'equal' Text
+' ' Text
+'|' Punctuation
+' ' Text
+'not' Text
+' ' Text
+'equal' Text
+'}}' Punctuation
+'\n' Text
+
+'\n' Text
+
+'{{' Punctuation
+'#iferror' Name.Function
+':' Punctuation
+' ' Text
+'<' Punctuation
+'strong' Name.Tag
+' ' Text.Whitespace
+'class' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+'error' Literal.String.Double
+'"' Literal.String.Double
+'>' Punctuation
+'a' Text
+'</' Punctuation
+'strong' Name.Tag
+'>' Punctuation
+' ' Text
+'|' Punctuation
+' ' Text
+'error' Text
+' ' Text
+'|' Punctuation
+' ' Text
+'correct' Text
+' ' Text
+'}}' Punctuation
+'\n' Text
+
+'\n' Text
+
+'{{' Punctuation
+'#ifeq' Name.Function
+':' Punctuation
+'{{{' Punctuation
+'1' Name.Variable
+'}}}' Punctuation
+'|' Punctuation
+'condition1' Text
+'\n' Text
+
+' ' Text
+'|' Punctuation
+'<!--then-->' Comment.Multiline
+'branch1t' Text
+'{{' Punctuation
+'\n ' Text.Whitespace
+'#ifeq' Name.Function
+':' Punctuation
+'{{{' Punctuation
+'1' Name.Variable
+'}}}' Punctuation
+'|' Punctuation
+'condition2' Text
+'\n' Text
+
+' ' Text
+'|' Punctuation
+'<!--then-->' Comment.Multiline
+'branch1t2t' Text
+'{{' Punctuation
+'#ifeq' Name.Function
+':' Punctuation
+'{{{' Punctuation
+'1' Name.Variable
+'}}}' Punctuation
+'|' Punctuation
+'condition4' Text
+'|' Punctuation
+'<!--then-->' Comment.Multiline
+'branch1t2t4t' Text
+'|' Punctuation
+'<!--else-->' Comment.Multiline
+'branch1t2t4e' Text
+'}}' Punctuation
+'\n' Text
+
+' ' Text
+'|' Punctuation
+'<!--else-->' Comment.Multiline
+'branch1t2e' Text
+'{{' Punctuation
+'#ifeq' Name.Function
+':' Punctuation
+'{{{' Punctuation
+'1' Name.Variable
+'}}}' Punctuation
+'|' Punctuation
+'condition5' Text
+'|' Punctuation
+'<!--then-->' Comment.Multiline
+'branch1t2e5t' Text
+'|' Punctuation
+'<!--else-->' Comment.Multiline
+'branch1t2e5e' Text
+'}}' Punctuation
+'\n' Text
+
+' ' Text
+'}}' Punctuation
+'\n' Text
+
+' ' Text
+'|' Punctuation
+'<!--else-->' Comment.Multiline
+'branch1e' Text
+'{{' Punctuation
+'#ifeq' Name.Function
+':' Punctuation
+'{{{' Punctuation
+'1' Name.Variable
+'}}}' Punctuation
+'|' Punctuation
+'condition3' Text
+'\n' Text
+
+' ' Text
+'|' Punctuation
+'<!--then-->' Comment.Multiline
+'branch1e3t' Text
+'{{' Punctuation
+'#ifeq' Name.Function
+':' Punctuation
+'{{{' Punctuation
+'1' Name.Variable
+'}}}' Punctuation
+'|' Punctuation
+'condition6' Text
+'|' Punctuation
+'branch1e3t6t' Text
+'|' Punctuation
+'branch1e3t6e' Text
+'}}' Punctuation
+'\n' Text
+
+' ' Text
+'|' Punctuation
+'<!--else-->' Comment.Multiline
+'branch1e3e' Text
+'{{' Punctuation
+'\n ' Text.Whitespace
+'#ifeq' Name.Function
+':' Punctuation
+'{{{' Punctuation
+'1' Name.Variable
+'}}}' Punctuation
+'|' Punctuation
+'condition7' Text
+'\n' Text
+
+' ' Text
+'|' Punctuation
+'branch1e3e7t' Text
+'\n' Text
+
+' ' Text
+'|' Punctuation
+'branch1e3e7t' Text
+'\n' Text
+
+' ' Text
+'}}' Punctuation
+'\n' Text
+
+' ' Text
+'}}' Punctuation
+'\n' Text
+
+'}}' Punctuation
+'\n' Text
+
+'\n' Text
+
+'{{' Punctuation
+'CURRENTYEAR' Name.Function
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'CURRENTMONTH' Name.Function
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'CURRENTMONTH1' Name.Function
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'CURRENTMONTHNAME' Name.Function
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'CURRENTMONTHNAMEGEN' Name.Function
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'CURRENTMONTHABBREV' Name.Function
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'CURRENTDAY' Name.Function
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'CURRENTDAY2' Name.Function
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'CURRENTDOW' Name.Function
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'CURRENTDAYNAME' Name.Function
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'CURRENTTIME' Name.Function
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'CURRENTHOUR' Name.Function
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'CURRENTWEEK' Name.Function
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'CURRENTTIMESTAMP' Name.Function
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'LOCALYEAR' Name.Function
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'LOCALMONTH' Name.Function
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'LOCALMONTH1' Name.Function
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'LOCALMONTHNAME' Name.Function
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'LOCALMONTHNAMEGEN' Name.Function
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'LOCALMONTHABBREV' Name.Function
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'LOCALDAY' Name.Function
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'LOCALDAY2' Name.Function
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'LOCALDOW' Name.Function
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'LOCALDAYNAME' Name.Function
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'LOCALTIME' Name.Function
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'LOCALHOUR' Name.Function
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'LOCALWEEK' Name.Function
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'LOCALTIMESTAMP' Name.Function
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'SITENAME' Name.Function
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'SERVER' Name.Function
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'SERVERNAME' Name.Function
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'DIRMARK' Name.Function
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'DIRECTIONMARK' Name.Function
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'SCRIPTPATH' Name.Function
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'STYLEPATH' Name.Function
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'CURRENTVERSION' Name.Function
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'CONTENTLANGUAGE' Name.Function
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'CONTENTLANG' Name.Function
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'PAGEID' Name.Function
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'PAGELANGUAGE' Name.Function
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'#language' Name.Function
+':' Punctuation
+'{{' Punctuation
+'PAGELANGUAGE' Name.Function
+'}}' Punctuation
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'PROTECTIONLEVEL' Name.Function
+':' Punctuation
+'action' Text
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'PROTECTIONEXPIRY' Name.Function
+':' Punctuation
+'action' Text
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'CASCADINGSOURCES' Name.Function
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'REVISIONID' Name.Function
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'REVISIONDAY' Name.Function
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'REVISIONDAY2' Name.Function
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'REVISIONMONTH' Name.Function
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'REVISIONMONTH1' Name.Function
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'REVISIONYEAR' Name.Function
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'REVISIONTIMESTAMP' Name.Function
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'REVISIONUSER' Name.Function
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'REVISIONSIZE' Name.Function
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'DISPLAYTITLE' Name.Function
+':' Punctuation
+'title' Text
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'DISPLAYTITLE' Name.Function
+':' Punctuation
+'title' Text
+'|' Punctuation
+'noerror' Text
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'DISPLAYTITLE' Name.Function
+':' Punctuation
+'title' Text
+'|' Punctuation
+'noreplace' Text
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'DEFAULTSORT' Name.Function
+':' Punctuation
+'sortkey' Text
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'DEFAULTSORTKEY' Name.Function
+':' Punctuation
+'sortkey' Text
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'DEFAULTCATEGORYSORT' Name.Function
+':' Punctuation
+'sortkey' Text
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'DEFAULTSORT' Name.Function
+':' Punctuation
+'sortkey' Text
+'|' Punctuation
+'noerror' Text
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'DEFAULTSORT' Name.Function
+':' Punctuation
+'sortkey' Text
+'|' Punctuation
+'noreplace' Text
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'NUMBEROFPAGES' Name.Function
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'NUMBEROFARTICLES' Name.Function
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'NUMBEROFFILES' Name.Function
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'NUMBEROFEDITS' Name.Function
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'NUMBEROFUSERS' Name.Function
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'NUMBEROFADMINS' Name.Function
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'NUMBEROFACTIVEUSERS' Name.Function
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'PAGESINCATEGORY' Name.Function
+':' Punctuation
+'categoryname' Text
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'PAGESINCAT' Name.Function
+':' Punctuation
+'categoryname' Text
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'PAGESINCATEGORY' Name.Function
+':' Punctuation
+'categoryname' Text
+'|' Punctuation
+'all' Text
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'PAGESINCATEGORY' Name.Function
+':' Punctuation
+'categoryname' Text
+'|' Punctuation
+'pages' Text
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'PAGESINCATEGORY' Name.Function
+':' Punctuation
+'categoryname' Text
+'|' Punctuation
+'subcats' Text
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'PAGESINCATEGORY' Name.Function
+':' Punctuation
+'categoryname' Text
+'|' Punctuation
+'files' Text
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'NUMBERINGROUP' Name.Function
+':' Punctuation
+'groupname' Text
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'NUMINGROUP' Name.Function
+':' Punctuation
+'groupname' Text
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'PAGESINNS' Name.Function
+':' Punctuation
+'index' Text
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'PAGESINNAMESPACE' Name.Function
+':' Punctuation
+'index' Text
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'FULLPAGENAME' Name.Function
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'PAGENAME' Name.Function
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'BASEPAGENAME' Name.Function
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'ROOTPAGENAME' Name.Function
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'SUBPAGENAME' Name.Function
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'SUBJECTPAGENAME' Name.Function
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'ARTICLEPAGENAME' Name.Function
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'TALKPAGENAME' Name.Function
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'PAGENAME' Name.Function
+':' Punctuation
+'Template' Text
+':' Text
+'Main' Text
+' ' Text
+'Page' Text
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'PAGENAME' Name.Function
+':' Punctuation
+'one' Text
+'/' Text
+'.' Text
+'/' Text
+'three' Text
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'FULLPAGENAMEE' Name.Function
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'PAGENAMEE' Name.Function
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'BASEPAGENAMEE' Name.Function
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'SUBPAGENAMEE' Name.Function
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'SUBJECTPAGENAMEE' Name.Function
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'ARTICLEPAGENAMEE' Name.Function
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'TALKPAGENAMEE' Name.Function
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'ROOTPAGENAMEE' Name.Function
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'NAMESPACE' Name.Function
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'NAMESPACENUMBER' Name.Function
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'SUBJECTSPACE' Name.Function
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'ARTICLESPACE' Name.Function
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'TALKSPACE' Name.Function
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'NAMESPACEE' Name.Function
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'SUBJECTSPACEE' Name.Function
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'ARTICLESPACEE' Name.Function
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'TALKSPACEE' Name.Function
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'NAMESPACENUMBER' Name.Function
+':' Punctuation
+'MediaWiki' Text
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'NAMESPACE' Name.Function
+':' Punctuation
+'MediaWiki' Text
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'NAMESPACE' Name.Function
+':' Punctuation
+'Template' Text
+':' Text
+'Main' Text
+' ' Text
+'Page' Text
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'SUBJECTSPACE' Name.Function
+':' Punctuation
+'Template' Text
+':' Text
+'Main' Text
+' ' Text
+'Page' Text
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'ARTICLESPACE' Name.Function
+':' Punctuation
+'Template' Text
+':' Text
+'Main' Text
+' ' Text
+'Page' Text
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'TALKSPACE' Name.Function
+':' Punctuation
+'Template' Text
+':' Text
+'Main' Text
+' ' Text
+'Page' Text
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'SUBJECTSPACE' Name.Function
+':' Punctuation
+'Help' Text
+' ' Text
+'talk' Text
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'!' Name.Function
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'=' Name.Function
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'PAGEID' Name.Function
+':' Punctuation
+' ' Text
+'page' Text
+' ' Text
+'name' Text
+' ' Text
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'PAGESIZE' Name.Function
+':' Punctuation
+'page' Text
+' ' Text
+'name' Text
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'PAGESIZE' Name.Function
+':' Punctuation
+' ' Text
+'page' Text
+' ' Text
+'name' Text
+' ' Text
+'|' Punctuation
+'R' Text
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'PROTECTIONLEVEL' Name.Function
+':' Punctuation
+'action' Text
+' ' Text
+'|' Punctuation
+' ' Text
+'page' Text
+' ' Text
+'name' Text
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'PROTECTIONEXPIRY' Name.Function
+':' Punctuation
+' ' Text
+'action' Text
+' ' Text
+'|' Punctuation
+' ' Text
+'page' Text
+' ' Text
+'name' Text
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'CASCADINGSOURCES' Name.Function
+':' Punctuation
+' ' Text
+'page' Text
+' ' Text
+'name' Text
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'REVISIONID' Name.Function
+':' Punctuation
+' ' Text
+'page' Text
+' ' Text
+'name' Text
+' ' Text
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'REVISIONDAY' Name.Function
+':' Punctuation
+' ' Text
+'page' Text
+' ' Text
+'name' Text
+' ' Text
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'REVISIONDAY2' Name.Function
+':' Punctuation
+' ' Text
+'page' Text
+' ' Text
+'name' Text
+' ' Text
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'REVISIONMONTH' Name.Function
+':' Punctuation
+' ' Text
+'page' Text
+' ' Text
+'name' Text
+' ' Text
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'REVISIONMONTH1' Name.Function
+':' Punctuation
+' ' Text
+'page' Text
+' ' Text
+'name' Text
+' ' Text
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'REVISIONYEAR' Name.Function
+':' Punctuation
+' ' Text
+'page' Text
+' ' Text
+'name' Text
+' ' Text
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'REVISIONTIMESTAMP' Name.Function
+':' Punctuation
+' ' Text
+'page' Text
+' ' Text
+'name' Text
+' ' Text
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'REVISIONUSER' Name.Function
+':' Punctuation
+' ' Text
+'page' Text
+' ' Text
+'name' Text
+' ' Text
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'localurl' Name.Function
+':' Punctuation
+'page' Text
+' ' Text
+'name' Text
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'localurl' Name.Function
+':' Punctuation
+'page' Text
+' ' Text
+'name' Text
+'\n' Text
+
+'|' Punctuation
+'query_string' Text
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'localurl' Name.Function
+':' Punctuation
+'MediaWiki' Text
+'|' Punctuation
+'printable' Name.Label
+'=' Operator
+'yes' Text
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'fullurl' Name.Function
+':' Punctuation
+'page' Text
+' ' Text
+'name' Text
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'fullurl' Name.Function
+':' Punctuation
+'page' Text
+' ' Text
+'name' Text
+'\n' Text
+
+'|' Punctuation
+'query_string' Text
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'fullurl' Name.Function
+':' Punctuation
+'interwiki' Text
+':' Text
+'remote' Text
+' ' Text
+'page' Text
+' ' Text
+'name' Text
+'\n' Text
+
+'|' Punctuation
+'query_string' Text
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'fullurl' Name.Function
+':' Punctuation
+'Category' Text
+':' Text
+'Top' Text
+' ' Text
+'level' Text
+'|' Punctuation
+'action' Name.Label
+'=' Operator
+'edit' Text
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'fullurl' Name.Function
+':' Punctuation
+'s' Text
+':' Text
+'Electra' Text
+'|' Punctuation
+'action' Name.Label
+'=' Operator
+'edit' Text
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'fullurl' Name.Function
+':' Punctuation
+'s' Text
+':' Text
+'es' Text
+':' Text
+'Electra' Text
+'|' Punctuation
+'action' Name.Label
+'=' Operator
+'edit' Text
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'canonicalurl' Name.Function
+':' Punctuation
+'page' Text
+' ' Text
+'name' Text
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'canonicalurl' Name.Function
+':' Punctuation
+'page' Text
+' ' Text
+'name' Text
+'\n' Text
+
+'|' Punctuation
+'query_string' Text
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'canonicalurl' Name.Function
+':' Punctuation
+'interwiki' Text
+':' Text
+'remote' Text
+' ' Text
+'page' Text
+' ' Text
+'name' Text
+'\n' Text
+
+'|' Punctuation
+'query_string' Text
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'canonicalurl' Name.Function
+':' Punctuation
+'Category' Text
+':' Text
+'Top' Text
+' ' Text
+'level' Text
+'|' Punctuation
+'action' Name.Label
+'=' Operator
+'edit' Text
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'filepath' Name.Function
+':' Punctuation
+'file' Text
+' ' Text
+'name' Text
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'filepath' Name.Function
+':' Punctuation
+'file' Text
+' ' Text
+'name' Text
+'|' Punctuation
+'nowiki' Text
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'filepath' Name.Function
+':' Punctuation
+'file' Text
+' ' Text
+'name' Text
+'|' Punctuation
+'thumbnail_size' Text
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'filepath' Name.Function
+':' Punctuation
+'Wiki' Text
+'.' Text
+'png' Text
+'|' Punctuation
+'nowiki' Text
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'filepath' Name.Function
+':' Punctuation
+'Example' Text
+'.' Text
+'svg' Text
+'|' Punctuation
+'300' Text
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'urlencode' Name.Function
+':' Punctuation
+'string' Text
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'urlencode' Name.Function
+':' Punctuation
+'string' Text
+'|' Punctuation
+'QUERY' Text
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'urlencode' Name.Function
+':' Punctuation
+'string' Text
+'|' Punctuation
+'WIKI' Text
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'urlencode' Name.Function
+':' Punctuation
+'string' Text
+'|' Punctuation
+'PATH' Text
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'urlencode' Name.Function
+':' Punctuation
+'x' Text
+':' Text
+'y' Text
+'/' Text
+'z' Text
+' ' Text
+'á' Text
+' ' Text
+'é' Text
+'|' Punctuation
+'QUERY' Text
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'urlencode' Name.Function
+':' Punctuation
+'x' Text
+':' Text
+'y' Text
+'/' Text
+'z' Text
+' ' Text
+'á' Text
+' ' Text
+'é' Text
+'|' Punctuation
+'WIKI' Text
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'urlencode' Name.Function
+':' Punctuation
+'x' Text
+':' Text
+'y' Text
+'/' Text
+'z' Text
+' ' Text
+'á' Text
+' ' Text
+'é' Text
+'|' Punctuation
+'PATH' Text
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'anchorencode' Name.Function
+':' Punctuation
+'string' Text
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'ns' Name.Function
+':' Punctuation
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'nse' Name.Function
+':' Punctuation
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'ns' Name.Function
+':' Punctuation
+'-' Text
+'2' Text
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'ns' Name.Function
+':' Punctuation
+'0' Text
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'ns' Name.Function
+':' Punctuation
+'2' Text
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'ns' Name.Function
+':' Punctuation
+'4' Text
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'ns' Name.Function
+':' Punctuation
+'6' Text
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'ns' Name.Function
+':' Punctuation
+'8' Text
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'ns' Name.Function
+':' Punctuation
+'10' Text
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'ns' Name.Function
+':' Punctuation
+'12' Text
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'ns' Name.Function
+':' Punctuation
+'14' Text
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'formatnum' Name.Function
+':' Punctuation
+'unformatted' Text
+' ' Text
+'number' Text
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'formatnum' Name.Function
+':' Punctuation
+'formatnum' Text
+'-' Text
+'formatted' Text
+' ' Text
+'number' Text
+'|' Punctuation
+'R' Text
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'formatnum' Name.Function
+':' Punctuation
+'unformatted' Text
+' ' Text
+'number' Text
+'|' Punctuation
+'NOSEP' Text
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'formatnum' Name.Function
+':' Punctuation
+'987654321' Text
+'.' Text
+'654321' Text
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'formatnum' Name.Function
+':' Punctuation
+'987' Text
+',' Text
+'654' Text
+',' Text
+'321' Text
+'.' Text
+'654321' Text
+'|' Punctuation
+'R' Text
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'formatnum' Name.Function
+':' Punctuation
+'{{' Punctuation
+'formatnum' Name.Function
+':' Punctuation
+'987654321' Text
+'.' Text
+'654321' Text
+'}}' Punctuation
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'formatnum' Name.Function
+':' Punctuation
+'00001' Text
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'formatnum' Name.Function
+':' Punctuation
+'987654321' Text
+'.' Text
+'654321' Text
+' ' Text
+'|' Punctuation
+'NOSEP' Text
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'formatnum' Name.Function
+':' Punctuation
+'987654321' Text
+'.' Text
+'654321' Text
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'formatnum' Name.Function
+':' Punctuation
+'987654321' Text
+'.' Text
+'654321' Text
+' ' Text
+'|' Punctuation
+'NOSEP' Text
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'formatnum' Name.Function
+':' Punctuation
+'৯৮' Text
+',' Text
+'৭৬' Text
+',' Text
+'৫৪' Text
+',' Text
+'৩২১' Text
+'.' Text
+'৬৫৪৩২১' Text
+' ' Text
+'|' Punctuation
+'R' Text
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'formatnum' Name.Function
+':' Punctuation
+'{{' Punctuation
+'formatnum' Name.Function
+':' Punctuation
+'987' Text
+'.' Text
+'654' Text
+'.' Text
+'321' Text
+'}}' Punctuation
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'formatnum' Name.Function
+':' Punctuation
+'987' Text
+',' Text
+'654' Text
+'.' Text
+'321' Text
+'|' Punctuation
+'R' Text
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'formatnum' Name.Function
+':' Punctuation
+'987' Text
+'.' Text
+'654' Text
+',' Text
+'321' Text
+'|' Punctuation
+'R' Text
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'formatnum' Name.Function
+':' Punctuation
+'987' Text
+' ' Text
+'654' Text
+',' Text
+'321' Text
+'|' Punctuation
+'R' Text
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'formatnum' Name.Function
+':' Punctuation
+'987' Text
+'&nbsp;' Name.Entity
+'654' Text
+',' Text
+'321' Text
+'|' Punctuation
+'R' Text
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'#dateformat' Name.Function
+':' Punctuation
+'date' Text
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'#formatdate' Name.Function
+':' Punctuation
+'date' Text
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'#dateformat' Name.Function
+':' Punctuation
+'date' Text
+'|' Punctuation
+'format' Text
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'#formatdate' Name.Function
+':' Punctuation
+'date' Text
+'|' Punctuation
+'format' Text
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'#dateformat' Name.Function
+':' Punctuation
+'25' Text
+' ' Text
+'dec' Text
+' ' Text
+'2009' Text
+'|' Punctuation
+'ymd' Text
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'#formatdate' Name.Function
+':' Punctuation
+'dec' Text
+' ' Text
+'25' Text
+',' Text
+'2009' Text
+'|' Punctuation
+'dmy' Text
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'#dateformat' Name.Function
+':' Punctuation
+'2009' Text
+'-' Text
+'12' Text
+'-' Text
+'25' Text
+'|' Punctuation
+'mdy' Text
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'#formatdate' Name.Function
+':' Punctuation
+'2009' Text
+' ' Text
+'dec' Text
+' ' Text
+'25' Text
+'|' Punctuation
+'ISO' Text
+' ' Text
+'8601' Text
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'#dateformat' Name.Function
+':' Punctuation
+'25' Text
+' ' Text
+'decEmber' Text
+'|' Punctuation
+'mdy' Text
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'lc' Name.Function
+':' Punctuation
+'string' Text
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'lc' Name.Function
+':' Punctuation
+'DATA' Text
+' ' Text
+'CENTER' Text
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'lcfirst' Name.Function
+':' Punctuation
+'string' Text
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'lcfirst' Name.Function
+':' Punctuation
+'DATA' Text
+' ' Text
+'center' Text
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'uc' Name.Function
+':' Punctuation
+'string' Text
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'uc' Name.Function
+':' Punctuation
+'text' Text
+' ' Text
+'transform' Text
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'ucfirst' Name.Function
+':' Punctuation
+'string' Text
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'ucfirst' Name.Function
+':' Punctuation
+'text' Text
+' ' Text
+'tRAnSFORM' Text
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'padleft' Name.Function
+':' Punctuation
+'xyz' Text
+'|' Punctuation
+'stringlength' Text
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'padleft' Name.Function
+':' Punctuation
+'xyz' Text
+'|' Punctuation
+'strlen' Text
+'|' Punctuation
+'char' Text
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'padleft' Name.Function
+':' Punctuation
+'xyz' Text
+'|' Punctuation
+'strlen' Text
+'|' Punctuation
+'string' Text
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'padleft' Name.Function
+':' Punctuation
+'xyz' Text
+'|' Punctuation
+'5' Text
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'padleft' Name.Function
+':' Punctuation
+'xyz' Text
+'|' Punctuation
+'5' Text
+'|' Punctuation
+'_' Text
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'padleft' Name.Function
+':' Punctuation
+'xyz' Text
+'|' Punctuation
+'5' Text
+'|' Punctuation
+'abc' Text
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'padleft' Name.Function
+':' Punctuation
+'xyz' Text
+'|' Punctuation
+'2' Text
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'padleft' Name.Function
+':' Punctuation
+'|' Punctuation
+'1' Text
+'|' Punctuation
+'xyz' Text
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'padright' Name.Function
+':' Punctuation
+'xyz' Text
+'|' Punctuation
+'stringlength' Text
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'padright' Name.Function
+':' Punctuation
+'xyz' Text
+'|' Punctuation
+'strlen' Text
+'|' Punctuation
+'char' Text
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'padright' Name.Function
+':' Punctuation
+'xyz' Text
+'|' Punctuation
+'strlen' Text
+'|' Punctuation
+'string' Text
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'padright' Name.Function
+':' Punctuation
+'xyz' Text
+'|' Punctuation
+'5' Text
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'padright' Name.Function
+':' Punctuation
+'xyz' Text
+'|' Punctuation
+'5' Text
+'|' Punctuation
+'_' Text
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'padright' Name.Function
+':' Punctuation
+'xyz' Text
+'|' Punctuation
+'5' Text
+'|' Punctuation
+'abc' Text
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'padright' Name.Function
+':' Punctuation
+'xyz' Text
+'|' Punctuation
+'2' Text
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'padright' Name.Function
+':' Punctuation
+'|' Punctuation
+'1' Text
+'|' Punctuation
+'xyz' Text
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'PLURAL' Name.Function
+':' Punctuation
+'2' Text
+'|' Punctuation
+'is' Text
+'|' Punctuation
+'are' Text
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'PLURAL' Name.Function
+':' Punctuation
+'1' Text
+'*' Text
+'1' Text
+'|' Punctuation
+'is' Text
+'|' Punctuation
+'are' Text
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'PLURAL' Name.Function
+':' Punctuation
+'21' Text
+' ' Text
+'mod' Text
+' ' Text
+'10' Text
+'|' Punctuation
+'is' Text
+'|' Punctuation
+'are' Text
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'PLURAL' Name.Function
+':' Punctuation
+'{{' Punctuation
+'#expr' Name.Function
+':' Punctuation
+'21' Text
+' ' Text
+'mod' Text
+' ' Text
+'10' Text
+'}}' Punctuation
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'PLURAL' Name.Function
+':' Punctuation
+'1' Text
+'|' Punctuation
+'is' Text
+'|' Punctuation
+'are' Text
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'PLURAL' Name.Function
+':' Punctuation
+'2' Text
+'|' Punctuation
+'is' Text
+'|' Punctuation
+'are' Text
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'PLURAL' Name.Function
+':' Punctuation
+'-' Text
+'1' Text
+'|' Punctuation
+'is' Text
+'|' Punctuation
+'are' Text
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'PLURAL' Name.Function
+':' Punctuation
+'-' Text
+'2' Text
+'|' Punctuation
+'is' Text
+'|' Punctuation
+'are' Text
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'PLURAL' Name.Function
+':' Punctuation
+'0' Text
+'.' Text
+'5' Text
+'|' Punctuation
+'is' Text
+'|' Punctuation
+'are' Text
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'PLURAL' Name.Function
+':' Punctuation
+'1' Text
+'.' Text
+'5' Text
+'|' Punctuation
+'is' Text
+'|' Punctuation
+'are' Text
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'PLURAL' Name.Function
+':' Punctuation
+'-' Text
+'0' Text
+'.' Text
+'5' Text
+'|' Punctuation
+'is' Text
+'|' Punctuation
+'are' Text
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'PLURAL' Name.Function
+':' Punctuation
+'-' Text
+'1' Text
+'.' Text
+'5' Text
+'|' Punctuation
+'is' Text
+'|' Punctuation
+'are' Text
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'PLURAL' Name.Function
+':' Punctuation
+'5' Text
+'|' Punctuation
+'1' Name.Label
+'=' Operator
+'Категория' Text
+'|' Punctuation
+'Категории' Text
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'PLURAL' Name.Function
+':' Punctuation
+'3' Text
+'|' Punctuation
+'страница' Text
+'|' Punctuation
+'страницы' Text
+'|' Punctuation
+'страниц' Text
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'PLURAL' Name.Function
+':' Punctuation
+'5' Text
+'|' Punctuation
+'страница' Text
+'|' Punctuation
+'страницы' Text
+'|' Punctuation
+'страниц' Text
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'GRAMMAR' Name.Function
+':' Punctuation
+'N' Text
+'|' Punctuation
+'noun' Text
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'GENDER' Name.Function
+':' Punctuation
+'username' Text
+'|' Punctuation
+'text' Text
+' ' Text
+'for' Text
+' ' Text
+'every' Text
+' ' Text
+'gender' Text
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'GENDER' Name.Function
+':' Punctuation
+'Username' Text
+'|' Punctuation
+'male' Text
+' ' Text
+'text' Text
+'|' Punctuation
+'female' Text
+' ' Text
+'text' Text
+'|' Punctuation
+'text' Text
+' ' Text
+'for' Text
+' ' Text
+'unspecified' Text
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'GENDER' Name.Function
+':' Punctuation
+'|' Punctuation
+'male' Text
+' ' Text
+'text' Text
+'|' Punctuation
+'female' Text
+' ' Text
+'text' Text
+'|' Punctuation
+'text' Text
+' ' Text
+'for' Text
+' ' Text
+'unspecified' Text
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'GENDER' Name.Function
+':' Punctuation
+'.' Text
+'|' Punctuation
+'male' Text
+' ' Text
+'text' Text
+'|' Punctuation
+'female' Text
+' ' Text
+'text' Text
+'|' Punctuation
+'text' Text
+' ' Text
+'for' Text
+' ' Text
+'unspecified' Text
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'int' Name.Function
+':' Punctuation
+'message' Text
+' ' Text
+'name' Text
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'int' Name.Function
+':' Punctuation
+'editsectionhint' Text
+'|' Punctuation
+'MediaWiki' Text
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'Page' Name.Tag
+' ' Name.Tag
+'name' Name.Tag
+'|' Punctuation
+'optional' Text
+' ' Text
+'params' Text
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+':' Punctuation
+'xyz' Name.Tag
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'int' Name.Function
+':' Punctuation
+'xyz' Text
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'#language' Name.Function
+':' Punctuation
+'language' Text
+' ' Text
+'code' Text
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'#language' Name.Function
+':' Punctuation
+'language' Text
+' ' Text
+'code' Text
+'|' Punctuation
+'target' Text
+' ' Text
+'language' Text
+' ' Text
+'code' Text
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'#language' Name.Function
+':' Punctuation
+'ar' Text
+'|' Punctuation
+'en' Text
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'#special' Name.Function
+':' Punctuation
+'special' Text
+' ' Text
+'page' Text
+' ' Text
+'name' Text
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'#speciale' Name.Function
+':' Punctuation
+'special' Text
+' ' Text
+'page' Text
+' ' Text
+'name' Text
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'#tag' Name.Function
+':' Punctuation
+'tagname' Text
+'\n' Text
+
+'|' Punctuation
+'content' Text
+'\n' Text
+
+'|' Punctuation
+'attribute1' Name.Label
+'=' Operator
+'value1' Text
+'\n' Text
+
+'|' Punctuation
+'attribute2' Name.Label
+'=' Operator
+'value2' Text
+'\n' Text
+
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'#tag' Name.Function
+':' Punctuation
+'ref' Text
+'|' Punctuation
+'Citation' Text
+' ' Text
+'on' Text
+' ' Text
+'Magic' Text
+' ' Text
+'words' Text
+'.' Text
+' ' Text
+'|' Punctuation
+'name ' Name.Label
+'=' Operator
+' ' Text
+'"' Text
+'multiple' Text
+'"' Text
+'}}' Punctuation
+'\n' Text
diff --git a/tests/snippets/wikitext/parser-tag.txt b/tests/snippets/wikitext/parser-tag.txt
new file mode 100644
index 00000000..83e2d605
--- /dev/null
+++ b/tests/snippets/wikitext/parser-tag.txt
@@ -0,0 +1,2133 @@
+---input---
+<pre>The &lt;pre&gt; tag ignores [[wiki]]
+''markup'' as does the &lt;nowiki&gt;
+tag. Additionally, &lt;pre&gt; displays
+in a mono-spaced font, and does
+not reformat text spaces.
+It still interprets special
+characters: &rarr;</pre>
+
+<pre class="blah">Ola
+Oi
+</pre>
+
+<nowiki>
+The <nowiki> tag ignores [[wiki]]
+''markup''. It reformats text by
+removing newlines and multiple
+spaces. It still interprets
+characters specified by
+&amp;name;: &rarr;
+</nowiki>
+
+<nowiki /># Ordered list
+'<nowiki />'Italics' markup'<nowiki />'
+<nowiki>[[Example]]</nowiki>
+<nowiki><!-- revealed --></nowiki>
+<nowiki>
+~~~~</nowiki>
+
+<chem>Y^{99+}</chem>
+<chem>CaSO4.1/2H2O + 1\!1/2 H2O -> CaSO4.2H2O</chem>
+<chem>{C_\mathit{x}H_\mathit{y}} + \mathit{z}O2 -> {\mathit{x}CO2} + \frac{\mathit{y}}{2}H2O</chem>
+<ce>{C_\mathit{x}H_\mathit{y}} + \mathit{z}O2 -> {\mathit{x}CO2} + \frac{\mathit{y}}{2}H2O</ce>
+
+<hiero>P2</hiero>
+
+<imagemap>
+# sjfhasdkjfhsadlkjahl
+
+File:The Last Supper - Leonardo Da Vinci - High Resolution 32x16.jpg|thumb|center|500px|alt=''The Last Supper'' by Leonardo da Vinci - Clickable Image|Image map example. Clicking on a person in the picture causes the browser to load the appropriate article.
+poly 550 2550 750 2400 1150 2300 1150 2150 1200 2075 1500 2125 1525 2300 1350 2800 1450 3000 1700 3300 1300 3475 650 3500 550 3300 450 3000 [[w:Bartholomew the Apostle|Bartholomew]]
+poly 1575 2300 1625 2150 1900 2150 1925 2500 1875 2600 1800 2750 1600 3250 1425 3100 1400 2800 1375 2600 [[w:James, son of Alphaeus|James Minor]]
+poly 1960 2150 2200 2150 2350 2500 2450 2575 2375 2725 2375 2900 2225 3100 2225 3225 1600 3225 1825 2700 1975 2450 1925 2300 [[w:Saint Andrew|Andrew]]
+poly 2450 2575 2775 2500 2700 2650 2800 2700 2600 3000 2600 3250 2300 3250 2200 3200 2300 3000 [[w:Saint Peter|Peter]]
+poly 2750 2500 2950 2400 3125 2600 3175 2700 3300 2850 3700 3200 3750 3200 3650 3350 3400 3200 3000 3350 2600 3325 2750 2800 2900 2700 2700 2650 [[w:Judas Iscariot|Judas]]
+poly 3000 2350 3300 2350 3350 2660 3560 2600 3565 2690 3250 2800 3125 2575 [[w:Saint Peter|Peter]]
+poly 3332 2338 3528 2240 4284 3024 4074 3332 3864 3290 3780 3150 3668 3192 3598 3024 3374 2870 3388 2772 3542 2800 3668 2702 3542 2590 3430 2604 3350 2600 3300 2500[[w:John the Apostle|John]]
+poly 4775 2184 4915 2128 5055 2212 5083 2352 5111 2464 5181 2604 5307 2744 5573 3052 5615 3192 5657 3290 5573 3402 5461 3332 5335 3248 4495 3248 4439 3388 4243 3388 4075 3360 4173 3136 4327 3010 4509 2730 4663 2520 4733 2394 [[w:Jesus]]
+poly 5900 2100 5900 2150 5800 2400 5800 2500 5675 2589 5480 2671 5438 2507 5425 2301 5589 2452 5630 2301 5650 2100 [[w:Thomas the Apostle|Thomas]]
+poly 5918 2150 6041 2109 6137 2246 6192 2411 6110 2589 6110 2726 6192 2822 6302 2740 6589 3109 5658 3178 5575 2918 5300 2698 5233 2589 5274 2438 5370 2507 5521 2685 5617 2671 5712 2575 5822 2507 5808 2287 5822 2175 [[w:James, son of Zebedee|James Greater]]
+poly 6137 2013 6439 2013 6863 2260 7110 2515 6726 2675 6507 2548 6425 2630 6356 2753 6548 2849 6699 2781 7082 2794 7178 3109 6699 3178 6548 2986 6397 2835 6165 2775 6110 2589 6233 2438 6302 2383 6151 2287 6096 2164 [[w:Philip the Apostle|Philip]]
+poly 7635 2123 7800 2013 8000 2055 8025 2287 7950 2438 8000 2698 8055 2918 7959 3164 7233 3164 7124 2972 7124 2794 6548 2794 6384 2781 6384 2671 6493 2575 6750 2650 7075 2550 7219 2400 7625 2300 [[w:Matthew the Apostle|Matthew]]
+poly 8325 2096 8600 2109 8635 2493 8615 2726 8439 2781 8274 2740 8125 2835 8151 2931 8400 2975 8411 3068 8589 3041 8617 3205 7987 3260 8124 3027 7987 2644 7904 2493 7959 2425 8096 2356 [[w:Judas Thaddaeus|Jude]]
+poly 8800 2150 8900 2125 9055 2150 9125 2397 9400 2475 9550 2931 9625 3301 9151 3397 8535 3219 8726 3014 8466 3068 8411 2918 8178 2931 8124 2835 8329 2753 8535 2794 8726 2603 8725 2342 [[w:Simon the Zealot|Simon]]
+rect 269 140 344 305 [[Claude Martin]]
+rect 124 147 181 298 [[Antoine Polier|Antoine-Louis Polier]]
+desc none
+</imagemap>
+
+<rss max=4 highlight="community wiki foundation">https://wikimediafoundation.org/news/feed/</rss>
+
+<inputbox>
+type=create
+break=no
+</inputbox>
+<inputbox>
+type=
+bgcolor=
+width=
+page=
+default=
+preload=
+editintro=
+buttonlabel=
+hidden=
+searchbuttonlabel=
+fulltextbutton=
+labeltext=
+break=
+namespaces=
+prefix=
+placeholder=
+minor=
+nosummary=
+summary=
+id=
+inline=
+dir=
+preloadparams[]=
+searchfilter=
+useve=
+arialabel=
+</inputbox>
+
+<gallery>
+File:Example.jpg
+File:Example.jpg
+</gallery>
+<gallery mode=packed heights=150px style="text-align:left">
+a|1
+Detroit Publishing Co. - A Yeoman of the Guard (N.B. actually a Yeoman Warder), full restoration.jpg|A Yeoman Warder, from a Victorian-era [[photochrom]]
+Official_program_-_Woman_suffrage_procession_March_3,_1913_-_crop.jpg|The Official program of the 1913 Woman Suffrage Procession held in Washington, D.C.
+Joseph Ferdinand Keppler - The Pirate Publisher - Puck Magazine - Restoration by Adam Cuerden.jpg|"The Pirate Publisher", a satire of copyright infringement from the magazine ''[[Puck (magazine)|Puck]]''.
+</gallery>
+<gallery caption="Sample gallery" widths="180px" heights="120px" >
+Wiki.png|Captioned
+Wiki.png|alt=The Wikipedia logo|Captioned with alt text
+Wiki.png|[[Help:Contents/Links|Links]] can be put in captions.
+Wiki.png|Full [[MediaWiki]]<br/>[[syntax]] may now be used...
+</gallery>
+<gallery>
+
+Detroit Publishing Co. - A Yeoman of the Guard (N.B. actually a Yeoman Warder), full restoration.jpg|1
+Official_program_-_Woman_suffrage_procession_March_3,_1913_-_crop.jpg|2
+Thurston, the famous magician - East Indian Rope Trick.jpg|3
+Joseph Ferdinand Keppler - The Pirate Publisher - Puck Magazine - Restoration by Adam Cuerden.jpg|4
+</gallery>
+
+<charinsert>“+” ‘+’ «+» ‹+› „+“ ‚+‘ [[+]] {{+}}</charinsert>
+
+<templatestyles src="Example/styles.css" wrapper="div.example" />
+
+<DynamicPageList>
+category=foo
+count=20
+namespace=file
+addfirstcategorydate=ymd
+imagewidth=70
+galleryshowfilesize=yes
+galleryshowfilename=yes
+imagesperrow=7
+gallerycaption=Galleries!
+ordermethod=sortkey
+order=ascending
+mode=gallery
+offset=12
+</DynamicPageList>
+
+<references />
+
+<poem>
+In [[Wikipedia:Xanadu|Xanadu]] did Kubla Khan
+A stately pleasure-dome decree:
+Where Alph, the sacred river, ran
+Through caverns measureless to man
+Down to a sunless sea.
+
+So twice five miles of fertile ground
+With walls and towers were girdled round:
+And there were gardens bright with sinuous rills,
+Where blossomed many an incense-bearing tree;
+And here were forests ancient as the hills,
+Enfolding sunny spots of greenery.
+</poem>
+
+<categorytree mode="categories">Manual</categorytree>
+<categorytree namespaces="Category">Manual</categorytree>
+<categorytree>Manual</categorytree>
+<categorytree>''Manual''[[a]]&amp;</categorytree>
+
+<onlyinclude>My content</onlyinclude>
+<includeonly>My content</includeonly>
+<noinclude>My content</noinclude>
+
+<syntaxhighlight lang="cpp">
+#include <iostream>
+int m2 (int ax, char *p_ax) {
+ std::cout <<"Hello World!";
+ return 0;
+}</syntaxhighlight>
+<source lang="cpp">
+#include <iostream>
+int m2 (int ax, char *p_ax) {
+ std::cout <<"Hello World!";
+ return 0;
+}</source>
+<syntaxhighlight lang="non-exist">
+#include <iostream>
+int m2 (int ax, char *p_ax) {
+ std::cout <<"Hello World!";
+ return 0;
+}</syntaxhighlight>
+<syntaxhighlight lang=cpp>
+#include <iostream>
+</syntaxhighlight>
+<syntaxhighlight lang=cpppp p>
+#include <iostream>
+</syntaxhighlight>
+<syntaxhighlight lang='cpp'>
+#include <iostream>
+</syntaxhighlight>
+<syntaxhighlight>
+#include <iostream>
+</syntaxhighlight>
+<syntaxhighlight/>
+<syntaxhighlight lang="js" lang='cpp' aalang=typescript>
+#include <iostream>
+</syntaxhighlight>
+<syntaxhighlight />
+
+<math>2x \times 4y \div 6z + 8 - \frac {y}{z^2} = 0</math>
+<math>\sin 2\pi x + \ln e</math>
+<math display=block>\sum_{n=0}^\infty \frac{x^n}{n!}</math>
+
+<score>\relative c' { fis d fis a d f e d c cis d e a g f ees }</score>
+<score lang="lilypond">\relative c' { fis d fis a d f e d c cis d e a g f ees }</score>
+<score lang="ABC">
+X:1
+M:C
+L:1/4
+K:C
+C, D, E, F,|G, A, B, C|D E F G|A B c d|
+e f g a|b c' d' e'|f' g' a' b'|]
+</score>
+<score lang=not-exist>\relative c' { fis d fis a d f e d c cis d e a g f ees }</score>
+
+<ref name="reference name">add_template_name_here</ref>
+
+<templatedata>
+{
+ "description": "Label unsigned comments in a conversation.",
+ "params": {
+ "user": {
+ "label": "User's name",
+ "type": "wiki-user-name",
+ "required": true,
+ "description": "User name of person who forgot to sign their comment.",
+ "aliases": ["1"]
+ },
+ "date": {
+ "label": "Date",
+ "suggested": true,
+ "description": {
+ "en": "Timestamp of when the comment was posted, in YYYY-MM-DD format."
+ },
+ "aliases": ["2"],
+ "autovalue": "{{subst:#time:Y-m-d}}"
+ },
+ "year": {
+ "label": "Year",
+ "type": "number"
+ },
+ "month": {
+ "label": "Month",
+ "inherits": "year"
+ },
+ "day": {
+ "label": "Day",
+ "inherits": "year"
+ },
+ "comment": {
+ "required": false
+ }
+ },
+ "sets": [
+ {
+ "label": "Date",
+ "params": ["year", "month", "day"]
+ }
+ ],
+ "maps": {
+ "ExampleConsumer": {
+ "foo": "user",
+ "bar": ["year", "month", "day"],
+ "quux": [
+ "date",
+ ["day", "month"],
+ ["month", "year"],
+ "year"
+ ]
+ }
+ }
+}
+</templatedata>
+
+* <translate>This is a long list:</translate>
+** <translate>There are more than 160 words in this list,</translate>
+** <translate>or there are more than 8 items.</translate>
+* <translate>So it is better to split it in several smaller units.</translate>
+* <translate>But we must exclude bullet points from translate tags to keep the list accessible.</translate>
+
+<tvar name=1>1</tvar>
+<span <tvar name=attr>class="css_class" style="background-color:blue"</tvar>>hello</span>
+<span <tvar|attr>class="css_class" style="background-color:blue"</>>hello</span>
+{{<tvar name=1>center|5px</tvar>|hello}}
+
+---tokens---
+'<' Punctuation
+'pre' Name.Tag
+'>' Punctuation
+'The' Text
+' ' Text
+'&lt;' Name.Entity
+'pre' Text
+'&gt;' Name.Entity
+' ' Text
+'tag' Text
+' ' Text
+'ignores' Text
+' ' Text
+'[' Text
+'[' Text
+'wiki' Text
+']' Text
+']' Text
+'\n' Text
+
+"'" Text
+"'" Text
+'markup' Text
+"'" Text
+"'" Text
+' ' Text
+'as' Text
+' ' Text
+'does' Text
+' ' Text
+'the' Text
+' ' Text
+'&lt;' Name.Entity
+'nowiki' Text
+'&gt;' Name.Entity
+'\n' Text
+
+'tag' Text
+'.' Text
+' ' Text
+'Additionally' Text
+',' Text
+' ' Text
+'&lt;' Name.Entity
+'pre' Text
+'&gt;' Name.Entity
+' ' Text
+'displays' Text
+'\n' Text
+
+'in' Text
+' ' Text
+'a' Text
+' ' Text
+'mono' Text
+'-' Text
+'spaced' Text
+' ' Text
+'font' Text
+',' Text
+' ' Text
+'and' Text
+' ' Text
+'does' Text
+'\n' Text
+
+'not' Text
+' ' Text
+'reformat' Text
+' ' Text
+'text' Text
+' ' Text
+'spaces' Text
+'.' Text
+'\n' Text
+
+'It' Text
+' ' Text
+'still' Text
+' ' Text
+'interprets' Text
+' ' Text
+'special' Text
+'\n' Text
+
+'characters' Text
+':' Text
+' ' Text
+'&rarr;' Name.Entity
+'</' Punctuation
+'pre' Name.Tag
+'>' Punctuation
+'\n' Text
+
+'\n' Text
+
+'<' Punctuation
+'pre' Name.Tag
+' ' Text.Whitespace
+'class' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+'blah' Literal.String.Double
+'"' Literal.String.Double
+'>' Punctuation
+'Ola' Text
+'\n' Text
+
+'Oi' Text
+'\n' Text
+
+'</' Punctuation
+'pre' Name.Tag
+'>' Punctuation
+'\n' Text
+
+'\n' Text
+
+'<' Punctuation
+'nowiki' Name.Tag
+'>' Punctuation
+'\n' Text
+
+'The' Text
+' ' Text
+'<' Text
+'nowiki' Text
+'>' Text
+' ' Text
+'tag' Text
+' ' Text
+'ignores' Text
+' ' Text
+'[' Text
+'[' Text
+'wiki' Text
+']' Text
+']' Text
+'\n' Text
+
+"'" Text
+"'" Text
+'markup' Text
+"'" Text
+"'" Text
+'.' Text
+' ' Text
+'It' Text
+' ' Text
+'reformats' Text
+' ' Text
+'text' Text
+' ' Text
+'by' Text
+'\n' Text
+
+'removing' Text
+' ' Text
+'newlines' Text
+' ' Text
+'and' Text
+' ' Text
+'multiple' Text
+'\n' Text
+
+'spaces' Text
+'.' Text
+' ' Text
+'It' Text
+' ' Text
+'still' Text
+' ' Text
+'interprets' Text
+'\n' Text
+
+'characters' Text
+' ' Text
+'specified' Text
+' ' Text
+'by' Text
+'\n' Text
+
+'&amp;' Name.Entity
+'name' Text
+';' Text
+':' Text
+' ' Text
+'&rarr;' Name.Entity
+'\n' Text
+
+'</' Punctuation
+'nowiki' Name.Tag
+'>' Punctuation
+'\n' Text
+
+'\n' Text
+
+'<' Punctuation
+'nowiki' Name.Tag
+' ' Text.Whitespace
+'/>' Punctuation
+'#' Text
+' ' Text
+'Ordered' Text
+' ' Text
+'list' Text
+'\n' Text
+
+"'" Text
+'<' Punctuation
+'nowiki' Name.Tag
+' ' Text.Whitespace
+'/>' Punctuation
+"'" Text
+'Italics' Text
+"'" Text
+' ' Text
+'markup' Text
+"'" Text
+'<' Punctuation
+'nowiki' Name.Tag
+' ' Text.Whitespace
+'/>' Punctuation
+"'" Text
+'\n' Text
+
+'<' Punctuation
+'nowiki' Name.Tag
+'>' Punctuation
+'[' Text
+'[' Text
+'Example' Text
+']' Text
+']' Text
+'</' Punctuation
+'nowiki' Name.Tag
+'>' Punctuation
+'\n' Text
+
+'<' Punctuation
+'nowiki' Name.Tag
+'>' Punctuation
+'<' Text
+'!' Text
+'-' Text
+'-' Text
+' ' Text
+'revealed' Text
+' ' Text
+'-' Text
+'-' Text
+'>' Text
+'</' Punctuation
+'nowiki' Name.Tag
+'>' Punctuation
+'\n' Text
+
+'<' Punctuation
+'nowiki' Name.Tag
+'>' Punctuation
+'\n' Text
+
+'~' Text
+'~' Text
+'~' Text
+'~' Text
+'</' Punctuation
+'nowiki' Name.Tag
+'>' Punctuation
+'\n' Text
+
+'\n' Text
+
+'<' Punctuation
+'chem' Name.Tag
+'>' Punctuation
+'Y' Text
+'^' Name.Builtin
+'{' Name.Builtin
+'99+' Text
+'}' Name.Builtin
+'</' Punctuation
+'chem' Name.Tag
+'>' Punctuation
+'\n' Text
+
+'<' Punctuation
+'chem' Name.Tag
+'>' Punctuation
+'CaSO4.1/2H2O + 1' Text
+'\\!' Keyword
+'1/2 H2O -> CaSO4.2H2O' Text
+'</' Punctuation
+'chem' Name.Tag
+'>' Punctuation
+'\n' Text
+
+'<' Punctuation
+'chem' Name.Tag
+'>' Punctuation
+'{' Name.Builtin
+'C' Text
+'_' Name.Builtin
+'\\mathit' Keyword
+'{' Name.Builtin
+'x' Text
+'}' Name.Builtin
+'H' Text
+'_' Name.Builtin
+'\\mathit' Keyword
+'{' Name.Builtin
+'y' Text
+'}' Name.Builtin
+'}' Name.Builtin
+' + ' Text
+'\\mathit' Keyword
+'{' Name.Builtin
+'z' Text
+'}' Name.Builtin
+'O2 -> ' Text
+'{' Name.Builtin
+'\\mathit' Keyword
+'{' Name.Builtin
+'x' Text
+'}' Name.Builtin
+'CO2' Text
+'}' Name.Builtin
+' + ' Text
+'\\frac' Keyword
+'{' Name.Builtin
+'\\mathit' Keyword
+'{' Name.Builtin
+'y' Text
+'}' Name.Builtin
+'}' Name.Builtin
+'{' Name.Builtin
+'2' Text
+'}' Name.Builtin
+'H2O' Text
+'</' Punctuation
+'chem' Name.Tag
+'>' Punctuation
+'\n' Text
+
+'<' Punctuation
+'ce' Name.Tag
+'>' Punctuation
+'{' Name.Builtin
+'C' Text
+'_' Name.Builtin
+'\\mathit' Keyword
+'{' Name.Builtin
+'x' Text
+'}' Name.Builtin
+'H' Text
+'_' Name.Builtin
+'\\mathit' Keyword
+'{' Name.Builtin
+'y' Text
+'}' Name.Builtin
+'}' Name.Builtin
+' + ' Text
+'\\mathit' Keyword
+'{' Name.Builtin
+'z' Text
+'}' Name.Builtin
+'O2 -> ' Text
+'{' Name.Builtin
+'\\mathit' Keyword
+'{' Name.Builtin
+'x' Text
+'}' Name.Builtin
+'CO2' Text
+'}' Name.Builtin
+' + ' Text
+'\\frac' Keyword
+'{' Name.Builtin
+'\\mathit' Keyword
+'{' Name.Builtin
+'y' Text
+'}' Name.Builtin
+'}' Name.Builtin
+'{' Name.Builtin
+'2' Text
+'}' Name.Builtin
+'H2O' Text
+'</' Punctuation
+'ce' Name.Tag
+'>' Punctuation
+'\n' Text
+
+'\n' Text
+
+'<' Punctuation
+'hiero' Name.Tag
+'>' Punctuation
+'P2' Text
+'</' Punctuation
+'hiero' Name.Tag
+'>' Punctuation
+'\n' Text
+
+'\n' Text
+
+'<' Punctuation
+'imagemap' Name.Tag
+'>' Punctuation
+"\n# sjfhasdkjfhsadlkjahl\n\nFile:The Last Supper - Leonardo Da Vinci - High Resolution 32x16.jpg|thumb|center|500px|alt=''The Last Supper'' by Leonardo da Vinci - Clickable Image|Image map example. Clicking on a person in the picture causes the browser to load the appropriate article.\npoly 550 2550 750 2400 1150 2300 1150 2150 1200 2075 1500 2125 1525 2300 1350 2800 1450 3000 1700 3300 1300 3475 650 3500 550 3300 450 3000 [[w:Bartholomew the Apostle|Bartholomew]]\npoly 1575 2300 1625 2150 1900 2150 1925 2500 1875 2600 1800 2750 1600 3250 1425 3100 1400 2800 1375 2600 [[w:James, son of Alphaeus|James Minor]]\npoly 1960 2150 2200 2150 2350 2500 2450 2575 2375 2725 2375 2900 2225 3100 2225 3225 1600 3225 1825 2700 1975 2450 1925 2300 [[w:Saint Andrew|Andrew]]\npoly 2450 2575 2775 2500 2700 2650 2800 2700 2600 3000 2600 3250 2300 3250 2200 3200 2300 3000 [[w:Saint Peter|Peter]]\npoly 2750 2500 2950 2400 3125 2600 3175 2700 3300 2850 3700 3200 3750 3200 3650 3350 3400 3200 3000 3350 2600 3325 2750 2800 2900 2700 2700 2650 [[w:Judas Iscariot|Judas]]\npoly 3000 2350 3300 2350 3350 2660 3560 2600 3565 2690 3250 2800 3125 2575 [[w:Saint Peter|Peter]]\npoly 3332 2338 3528 2240 4284 3024 4074 3332 3864 3290 3780 3150 3668 3192 3598 3024 3374 2870 3388 2772 3542 2800 3668 2702 3542 2590 3430 2604 3350 2600 3300 2500[[w:John the Apostle|John]]\npoly 4775 2184 4915 2128 5055 2212 5083 2352 5111 2464 5181 2604 5307 2744 5573 3052 5615 3192 5657 3290 5573 3402 5461 3332 5335 3248 4495 3248 4439 3388 4243 3388 4075 3360 4173 3136 4327 3010 4509 2730 4663 2520 4733 2394 [[w:Jesus]]\npoly 5900 2100 5900 2150 5800 2400 5800 2500 5675 2589 5480 2671 5438 2507 5425 2301 5589 2452 5630 2301 5650 2100 [[w:Thomas the Apostle|Thomas]]\npoly 5918 2150 6041 2109 6137 2246 6192 2411 6110 2589 6110 2726 6192 2822 6302 2740 6589 3109 5658 3178 5575 2918 5300 2698 5233 2589 5274 2438 5370 2507 5521 2685 5617 2671 5712 2575 5822 2507 5808 2287 5822 2175 [[w:James, son of Zebedee|James Greater]]\npoly 6137 2013 6439 2013 6863 2260 7110 2515 6726 2675 6507 2548 6425 2630 6356 2753 6548 2849 6699 2781 7082 2794 7178 3109 6699 3178 6548 2986 6397 2835 6165 2775 6110 2589 6233 2438 6302 2383 6151 2287 6096 2164 [[w:Philip the Apostle|Philip]]\npoly 7635 2123 7800 2013 8000 2055 8025 2287 7950 2438 8000 2698 8055 2918 7959 3164 7233 3164 7124 2972 7124 2794 6548 2794 6384 2781 6384 2671 6493 2575 6750 2650 7075 2550 7219 2400 7625 2300 [[w:Matthew the Apostle|Matthew]]\npoly 8325 2096 8600 2109 8635 2493 8615 2726 8439 2781 8274 2740 8125 2835 8151 2931 8400 2975 8411 3068 8589 3041 8617 3205 7987 3260 8124 3027 7987 2644 7904 2493 7959 2425 8096 2356 [[w:Judas Thaddaeus|Jude]]\npoly 8800 2150 8900 2125 9055 2150 9125 2397 9400 2475 9550 2931 9625 3301 9151 3397 8535 3219 8726 3014 8466 3068 8411 2918 8178 2931 8124 2835 8329 2753 8535 2794 8726 2603 8725 2342 [[w:Simon the Zealot|Simon]]\nrect 269 140 344 305 [[Claude Martin]]\nrect 124 147 181 298 [[Antoine Polier|Antoine-Louis Polier]]\ndesc none\n" Text
+
+'</' Punctuation
+'imagemap' Name.Tag
+'>' Punctuation
+'\n' Text
+
+'\n' Text
+
+'<' Punctuation
+'rss' Name.Tag
+' ' Text.Whitespace
+'max' Name.Attribute
+'=' Operator
+'4' Literal.String
+' ' Text.Whitespace
+'highlight' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+'community' Literal.String.Double
+' ' Literal.String.Double
+'wiki' Literal.String.Double
+' ' Literal.String.Double
+'foundation' Literal.String.Double
+'"' Literal.String.Double
+'>' Punctuation
+'https://wikimediafoundation.org/news/feed/' Text
+'</' Punctuation
+'rss' Name.Tag
+'>' Punctuation
+'\n' Text
+
+'\n' Text
+
+'<' Punctuation
+'inputbox' Name.Tag
+'>' Punctuation
+'\ntype=create\nbreak=no\n' Text
+
+'</' Punctuation
+'inputbox' Name.Tag
+'>' Punctuation
+'\n' Text
+
+'<' Punctuation
+'inputbox' Name.Tag
+'>' Punctuation
+'\ntype=\nbgcolor=\nwidth=\npage=\ndefault=\npreload=\neditintro=\nbuttonlabel=\nhidden=\nsearchbuttonlabel=\nfulltextbutton=\nlabeltext=\nbreak=\nnamespaces=\nprefix=\nplaceholder=\nminor=\nnosummary=\nsummary=\nid=\ninline=\ndir=\npreloadparams[]=\nsearchfilter=\nuseve=\narialabel=\n' Text
+
+'</' Punctuation
+'inputbox' Name.Tag
+'>' Punctuation
+'\n' Text
+
+'\n' Text
+
+'<' Punctuation
+'gallery' Name.Tag
+'>' Punctuation
+'\nFile:Example.jpg\nFile:Example.jpg\n' Text
+
+'</' Punctuation
+'gallery' Name.Tag
+'>' Punctuation
+'\n' Text
+
+'<' Punctuation
+'gallery' Name.Tag
+' ' Text.Whitespace
+'mode' Name.Attribute
+'=' Operator
+'packed' Literal.String
+' ' Text.Whitespace
+'heights' Name.Attribute
+'=' Operator
+'150px' Literal.String
+' ' Text.Whitespace
+'style' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+'text' Literal.String.Double
+'-' Literal.String.Double
+'align' Literal.String.Double
+':' Literal.String.Double
+'left' Literal.String.Double
+'"' Literal.String.Double
+'>' Punctuation
+'\na|1\nDetroit Publishing Co. - A Yeoman of the Guard (N.B. actually a Yeoman Warder), full restoration.jpg|A Yeoman Warder, from a Victorian-era [[photochrom]]\nOfficial_program_-_Woman_suffrage_procession_March_3,_1913_-_crop.jpg|The Official program of the 1913 Woman Suffrage Procession held in Washington, D.C.\nJoseph Ferdinand Keppler - The Pirate Publisher - Puck Magazine - Restoration by Adam Cuerden.jpg|"The Pirate Publisher", a satire of copyright infringement from the magazine \'\'[[Puck (magazine)|Puck]]\'\'.\n' Text
+
+'</' Punctuation
+'gallery' Name.Tag
+'>' Punctuation
+'\n' Text
+
+'<' Punctuation
+'gallery' Name.Tag
+' ' Text.Whitespace
+'caption' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+'Sample' Literal.String.Double
+' ' Literal.String.Double
+'gallery' Literal.String.Double
+'"' Literal.String.Double
+' ' Text.Whitespace
+'widths' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+'180px' Literal.String.Double
+'"' Literal.String.Double
+' ' Text.Whitespace
+'heights' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+'120px' Literal.String.Double
+'"' Literal.String.Double
+' >' Punctuation
+'\nWiki.png|Captioned\nWiki.png|alt=The Wikipedia logo|Captioned with alt text\nWiki.png|[[Help:Contents/Links|Links]] can be put in captions.\nWiki.png|Full [[MediaWiki]]<br/>[[syntax]] may now be used...\n' Text
+
+'</' Punctuation
+'gallery' Name.Tag
+'>' Punctuation
+'\n' Text
+
+'<' Punctuation
+'gallery' Name.Tag
+'>' Punctuation
+'\n\nDetroit Publishing Co. - A Yeoman of the Guard (N.B. actually a Yeoman Warder), full restoration.jpg|1\nOfficial_program_-_Woman_suffrage_procession_March_3,_1913_-_crop.jpg|2\nThurston, the famous magician - East Indian Rope Trick.jpg|3\nJoseph Ferdinand Keppler - The Pirate Publisher - Puck Magazine - Restoration by Adam Cuerden.jpg|4\n' Text
+
+'</' Punctuation
+'gallery' Name.Tag
+'>' Punctuation
+'\n' Text
+
+'\n' Text
+
+'<' Punctuation
+'charinsert' Name.Tag
+'>' Punctuation
+'“+” ‘+’ «+» ‹+› „+“ ‚+‘ [[+]] {{+}}' Text
+'</' Punctuation
+'charinsert' Name.Tag
+'>' Punctuation
+'\n' Text
+
+'\n' Text
+
+'<' Punctuation
+'templatestyles' Name.Tag
+' ' Text.Whitespace
+'src' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+'Example' Literal.String.Double
+'/' Literal.String.Double
+'styles' Literal.String.Double
+'.' Literal.String.Double
+'css' Literal.String.Double
+'"' Literal.String.Double
+' ' Text.Whitespace
+'wrapper' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+'div' Literal.String.Double
+'.' Literal.String.Double
+'example' Literal.String.Double
+'"' Literal.String.Double
+' ' Text.Whitespace
+'/>' Punctuation
+'\n' Text
+
+'\n' Text
+
+'<' Punctuation
+'DynamicPageList' Name.Tag
+'>' Punctuation
+'\ncategory=foo\ncount=20\nnamespace=file\naddfirstcategorydate=ymd\nimagewidth=70\ngalleryshowfilesize=yes\ngalleryshowfilename=yes\nimagesperrow=7\ngallerycaption=Galleries!\nordermethod=sortkey\norder=ascending\nmode=gallery\noffset=12\n' Text
+
+'</' Punctuation
+'DynamicPageList' Name.Tag
+'>' Punctuation
+'\n' Text
+
+'\n' Text
+
+'<' Punctuation
+'references' Name.Tag
+' ' Text.Whitespace
+'/>' Punctuation
+'\n' Text
+
+'\n' Text
+
+'<' Punctuation
+'poem' Name.Tag
+'>' Punctuation
+'\n' Text
+
+'In' Text
+' ' Text
+'[[' Punctuation
+'Wikipedia' Name.Namespace
+':' Punctuation
+'Xanadu' Name.Tag
+'|' Punctuation
+'Xanadu' Text
+']]' Punctuation
+' ' Text
+'did' Text
+' ' Text
+'Kubla' Text
+' ' Text
+'Khan' Text
+'\n' Text
+
+'A' Text
+' ' Text
+'stately' Text
+' ' Text
+'pleasure' Text
+'-' Text
+'dome' Text
+' ' Text
+'decree' Text
+':' Text
+'\n' Text
+
+'Where' Text
+' ' Text
+'Alph' Text
+',' Text
+' ' Text
+'the' Text
+' ' Text
+'sacred' Text
+' ' Text
+'river' Text
+',' Text
+' ' Text
+'ran' Text
+'\n' Text
+
+'Through' Text
+' ' Text
+'caverns' Text
+' ' Text
+'measureless' Text
+' ' Text
+'to' Text
+' ' Text
+'man' Text
+'\n' Text
+
+'Down' Text
+' ' Text
+'to' Text
+' ' Text
+'a' Text
+' ' Text
+'sunless' Text
+' ' Text
+'sea' Text
+'.' Text
+'\n' Text
+
+'\n' Text
+
+'So' Text
+' ' Text
+'twice' Text
+' ' Text
+'five' Text
+' ' Text
+'miles' Text
+' ' Text
+'of' Text
+' ' Text
+'fertile' Text
+' ' Text
+'ground' Text
+'\n' Text
+
+'With' Text
+' ' Text
+'walls' Text
+' ' Text
+'and' Text
+' ' Text
+'towers' Text
+' ' Text
+'were' Text
+' ' Text
+'girdled' Text
+' ' Text
+'round' Text
+':' Text
+'\n' Text
+
+'And' Text
+' ' Text
+'there' Text
+' ' Text
+'were' Text
+' ' Text
+'gardens' Text
+' ' Text
+'bright' Text
+' ' Text
+'with' Text
+' ' Text
+'sinuous' Text
+' ' Text
+'rills' Text
+',' Text
+'\n' Text
+
+'Where' Text
+' ' Text
+'blossomed' Text
+' ' Text
+'many' Text
+' ' Text
+'an' Text
+' ' Text
+'incense' Text
+'-' Text
+'bearing' Text
+' ' Text
+'tree' Text
+';' Text
+'\n' Text
+
+'And' Text
+' ' Text
+'here' Text
+' ' Text
+'were' Text
+' ' Text
+'forests' Text
+' ' Text
+'ancient' Text
+' ' Text
+'as' Text
+' ' Text
+'the' Text
+' ' Text
+'hills' Text
+',' Text
+'\n' Text
+
+'Enfolding' Text
+' ' Text
+'sunny' Text
+' ' Text
+'spots' Text
+' ' Text
+'of' Text
+' ' Text
+'greenery' Text
+'.' Text
+'\n' Text
+
+'</' Punctuation
+'poem' Name.Tag
+'>' Punctuation
+'\n' Text
+
+'\n' Text
+
+'<' Punctuation
+'categorytree' Name.Tag
+' ' Text.Whitespace
+'mode' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+'categories' Literal.String.Double
+'"' Literal.String.Double
+'>' Punctuation
+'Manual' Text
+'</' Punctuation
+'categorytree' Name.Tag
+'>' Punctuation
+'\n' Text
+
+'<' Punctuation
+'categorytree' Name.Tag
+' ' Text.Whitespace
+'namespaces' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+'Category' Literal.String.Double
+'"' Literal.String.Double
+'>' Punctuation
+'Manual' Text
+'</' Punctuation
+'categorytree' Name.Tag
+'>' Punctuation
+'\n' Text
+
+'<' Punctuation
+'categorytree' Name.Tag
+'>' Punctuation
+'Manual' Text
+'</' Punctuation
+'categorytree' Name.Tag
+'>' Punctuation
+'\n' Text
+
+'<' Punctuation
+'categorytree' Name.Tag
+'>' Punctuation
+"''Manual''[[a]]&amp;" Text
+'</' Punctuation
+'categorytree' Name.Tag
+'>' Punctuation
+'\n' Text
+
+'\n' Text
+
+'<' Punctuation
+'onlyinclude' Name.Tag
+'>' Punctuation
+'My' Text
+' ' Text
+'content' Text
+'</' Punctuation
+'onlyinclude' Name.Tag
+'>' Punctuation
+'\n' Text
+
+'<' Punctuation
+'includeonly' Name.Tag
+'>' Punctuation
+'My' Text
+' ' Text
+'content' Text
+'</' Punctuation
+'includeonly' Name.Tag
+'>' Punctuation
+'\n' Text
+
+'<' Punctuation
+'noinclude' Name.Tag
+'>' Punctuation
+'My' Text
+' ' Text
+'content' Text
+'</' Punctuation
+'noinclude' Name.Tag
+'>' Punctuation
+'\n' Text
+
+'\n' Text
+
+'<' Punctuation
+'syntaxhighlight' Name.Tag
+' ' Text.Whitespace
+'lang' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+'cpp' Literal.String.Double
+'"' Literal.String.Double
+'>' Punctuation
+'\n' Text.Whitespace
+
+'#' Comment.Preproc
+'include' Comment.Preproc
+' ' Text.Whitespace
+'<iostream>' Comment.PreprocFile
+'\n' Comment.Preproc
+
+'int' Keyword.Type
+' ' Text.Whitespace
+'m2' Name.Function
+' ' Text.Whitespace
+'(' Punctuation
+'int' Keyword.Type
+' ' Text.Whitespace
+'ax' Name
+',' Punctuation
+' ' Text.Whitespace
+'char' Keyword.Type
+' ' Text.Whitespace
+'*' Operator
+'p_ax' Name
+')' Punctuation
+' ' Text.Whitespace
+'{' Punctuation
+'\n' Text.Whitespace
+
+' ' Text.Whitespace
+'std' Name
+':' Operator
+':' Operator
+'cout' Name
+' ' Text.Whitespace
+'<' Operator
+'<' Operator
+'"' Literal.String
+'Hello World!' Literal.String
+'"' Literal.String
+';' Punctuation
+'\n' Text.Whitespace
+
+' ' Text.Whitespace
+'return' Keyword
+' ' Text.Whitespace
+'0' Literal.Number.Integer
+';' Punctuation
+'\n' Text.Whitespace
+
+'}' Punctuation
+'</' Punctuation
+'syntaxhighlight' Name.Tag
+'>' Punctuation
+'\n' Text
+
+'<' Punctuation
+'source' Name.Tag
+' ' Text.Whitespace
+'lang' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+'cpp' Literal.String.Double
+'"' Literal.String.Double
+'>' Punctuation
+'\n' Text.Whitespace
+
+'#' Comment.Preproc
+'include' Comment.Preproc
+' ' Text.Whitespace
+'<iostream>' Comment.PreprocFile
+'\n' Comment.Preproc
+
+'int' Keyword.Type
+' ' Text.Whitespace
+'m2' Name.Function
+' ' Text.Whitespace
+'(' Punctuation
+'int' Keyword.Type
+' ' Text.Whitespace
+'ax' Name
+',' Punctuation
+' ' Text.Whitespace
+'char' Keyword.Type
+' ' Text.Whitespace
+'*' Operator
+'p_ax' Name
+')' Punctuation
+' ' Text.Whitespace
+'{' Punctuation
+'\n' Text.Whitespace
+
+' ' Text.Whitespace
+'std' Name
+':' Operator
+':' Operator
+'cout' Name
+' ' Text.Whitespace
+'<' Operator
+'<' Operator
+'"' Literal.String
+'Hello World!' Literal.String
+'"' Literal.String
+';' Punctuation
+'\n' Text.Whitespace
+
+' ' Text.Whitespace
+'return' Keyword
+' ' Text.Whitespace
+'0' Literal.Number.Integer
+';' Punctuation
+'\n' Text.Whitespace
+
+'}' Punctuation
+'</' Punctuation
+'source' Name.Tag
+'>' Punctuation
+'\n' Text
+
+'<' Punctuation
+'syntaxhighlight' Name.Tag
+' ' Text.Whitespace
+'lang' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+'non' Literal.String.Double
+'-' Literal.String.Double
+'exist' Literal.String.Double
+'"' Literal.String.Double
+'>' Punctuation
+'\n#include <iostream>\nint m2 (int ax, char *p_ax) {\n std::cout <<"Hello World!";\n return 0;\n}' Text
+'</' Punctuation
+'syntaxhighlight' Name.Tag
+'>' Punctuation
+'\n' Text
+
+'<' Punctuation
+'syntaxhighlight' Name.Tag
+' ' Text.Whitespace
+'lang' Name.Attribute
+'=' Operator
+'cpp' Literal.String
+'>' Punctuation
+'\n' Text.Whitespace
+
+'#' Comment.Preproc
+'include' Comment.Preproc
+' ' Text.Whitespace
+'<iostream>' Comment.PreprocFile
+'\n' Comment.Preproc
+
+'</' Punctuation
+'syntaxhighlight' Name.Tag
+'>' Punctuation
+'\n' Text
+
+'<' Punctuation
+'syntaxhighlight' Name.Tag
+' ' Text.Whitespace
+'lang' Name.Attribute
+'=' Operator
+'cpppp' Literal.String
+' ' Text.Whitespace
+'p' Name.Attribute
+'>' Punctuation
+'\n#include <iostream>\n' Text
+
+'</' Punctuation
+'syntaxhighlight' Name.Tag
+'>' Punctuation
+'\n' Text
+
+'<' Punctuation
+'syntaxhighlight' Name.Tag
+' ' Text.Whitespace
+'lang' Name.Attribute
+'=' Operator
+"'" Literal.String.Single
+'cpp' Literal.String.Single
+"'" Literal.String.Single
+'>' Punctuation
+'\n' Text.Whitespace
+
+'#' Comment.Preproc
+'include' Comment.Preproc
+' ' Text.Whitespace
+'<iostream>' Comment.PreprocFile
+'\n' Comment.Preproc
+
+'</' Punctuation
+'syntaxhighlight' Name.Tag
+'>' Punctuation
+'\n' Text
+
+'<' Punctuation
+'syntaxhighlight' Name.Tag
+'>' Punctuation
+'\n#include <iostream>\n' Text
+
+'</' Punctuation
+'syntaxhighlight' Name.Tag
+'>' Punctuation
+'\n' Text
+
+'<' Punctuation
+'syntaxhighlight' Name.Tag
+'/>' Punctuation
+'\n' Text
+
+'<' Punctuation
+'syntaxhighlight' Name.Tag
+' ' Text.Whitespace
+'lang' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+'js' Literal.String.Double
+'"' Literal.String.Double
+' ' Text.Whitespace
+'lang' Name.Attribute
+'=' Operator
+"'" Literal.String.Single
+'cpp' Literal.String.Single
+"'" Literal.String.Single
+' ' Text.Whitespace
+'aalang' Name.Attribute
+'=' Operator
+'typescript' Literal.String
+'>' Punctuation
+'\n' Text.Whitespace
+
+'#' Comment.Preproc
+'include' Comment.Preproc
+' ' Text.Whitespace
+'<iostream>' Comment.PreprocFile
+'\n' Comment.Preproc
+
+'</' Punctuation
+'syntaxhighlight' Name.Tag
+'>' Punctuation
+'\n' Text
+
+'<' Punctuation
+'syntaxhighlight' Name.Tag
+' ' Text.Whitespace
+'/>' Punctuation
+'\n' Text
+
+'\n' Text
+
+'<' Punctuation
+'math' Name.Tag
+'>' Punctuation
+'2x ' Text
+'\\times' Keyword
+' 4y ' Text
+'\\div' Keyword
+' 6z + 8 - ' Text
+'\\frac' Keyword
+' ' Text
+'{' Name.Builtin
+'y' Text
+'}' Name.Builtin
+'{' Name.Builtin
+'z' Text
+'^' Name.Builtin
+'2' Text
+'}' Name.Builtin
+' = 0' Text
+'</' Punctuation
+'math' Name.Tag
+'>' Punctuation
+'\n' Text
+
+'<' Punctuation
+'math' Name.Tag
+'>' Punctuation
+'\\sin' Keyword
+' 2' Text
+'\\pi' Keyword
+' x + ' Text
+'\\ln' Keyword
+' e' Text
+'</' Punctuation
+'math' Name.Tag
+'>' Punctuation
+'\n' Text
+
+'<' Punctuation
+'math' Name.Tag
+' ' Text.Whitespace
+'display' Name.Attribute
+'=' Operator
+'block' Literal.String
+'>' Punctuation
+'\\sum' Keyword
+'_' Name.Builtin
+'{' Name.Builtin
+'n=0' Text
+'}' Name.Builtin
+'^' Name.Builtin
+'\\infty' Keyword
+' ' Text
+'\\frac' Keyword
+'{' Name.Builtin
+'x' Text
+'^' Name.Builtin
+'n' Text
+'}' Name.Builtin
+'{' Name.Builtin
+'n!' Text
+'}' Name.Builtin
+'</' Punctuation
+'math' Name.Tag
+'>' Punctuation
+'\n' Text
+
+'\n' Text
+
+'<' Punctuation
+'score' Name.Tag
+'>' Punctuation
+'\\relative' Name.Builtin.MusicFunction
+' ' Text.Whitespace
+"c'" Pitch
+' ' Text.Whitespace
+'{' Punctuation
+' ' Text.Whitespace
+'fis' Pitch
+' ' Text.Whitespace
+'d' Pitch
+' ' Text.Whitespace
+'fis' Pitch
+' ' Text.Whitespace
+'a' Pitch
+' ' Text.Whitespace
+'d' Pitch
+' ' Text.Whitespace
+'f' Pitch
+' ' Text.Whitespace
+'e' Pitch
+' ' Text.Whitespace
+'d' Pitch
+' ' Text.Whitespace
+'c' Pitch
+' ' Text.Whitespace
+'cis' Pitch
+' ' Text.Whitespace
+'d' Pitch
+' ' Text.Whitespace
+'e' Pitch
+' ' Text.Whitespace
+'a' Pitch
+' ' Text.Whitespace
+'g' Pitch
+' ' Text.Whitespace
+'f' Pitch
+' ' Text.Whitespace
+'ees' Pitch
+' ' Text.Whitespace
+'}' Punctuation
+'</' Punctuation
+'score' Name.Tag
+'>' Punctuation
+'\n' Text
+
+'<' Punctuation
+'score' Name.Tag
+' ' Text.Whitespace
+'lang' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+'lilypond' Literal.String.Double
+'"' Literal.String.Double
+'>' Punctuation
+'\\relative' Name.Builtin.MusicFunction
+' ' Text.Whitespace
+"c'" Pitch
+' ' Text.Whitespace
+'{' Punctuation
+' ' Text.Whitespace
+'fis' Pitch
+' ' Text.Whitespace
+'d' Pitch
+' ' Text.Whitespace
+'fis' Pitch
+' ' Text.Whitespace
+'a' Pitch
+' ' Text.Whitespace
+'d' Pitch
+' ' Text.Whitespace
+'f' Pitch
+' ' Text.Whitespace
+'e' Pitch
+' ' Text.Whitespace
+'d' Pitch
+' ' Text.Whitespace
+'c' Pitch
+' ' Text.Whitespace
+'cis' Pitch
+' ' Text.Whitespace
+'d' Pitch
+' ' Text.Whitespace
+'e' Pitch
+' ' Text.Whitespace
+'a' Pitch
+' ' Text.Whitespace
+'g' Pitch
+' ' Text.Whitespace
+'f' Pitch
+' ' Text.Whitespace
+'ees' Pitch
+' ' Text.Whitespace
+'}' Punctuation
+'</' Punctuation
+'score' Name.Tag
+'>' Punctuation
+'\n' Text
+
+'<' Punctuation
+'score' Name.Tag
+' ' Text.Whitespace
+'lang' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+'ABC' Literal.String.Double
+'"' Literal.String.Double
+'>' Punctuation
+"\nX:1\nM:C\nL:1/4\nK:C\nC, D, E, F,|G, A, B, C|D E F G|A B c d|\ne f g a|b c' d' e'|f' g' a' b'|]\n" Text
+
+'</' Punctuation
+'score' Name.Tag
+'>' Punctuation
+'\n' Text
+
+'<' Punctuation
+'score' Name.Tag
+' ' Text.Whitespace
+'lang' Name.Attribute
+'=' Operator
+'not' Literal.String
+'-' Literal.String
+'exist' Literal.String
+'>' Punctuation
+"\\relative c' { fis d fis a d f e d c cis d e a g f ees }" Text
+'</' Punctuation
+'score' Name.Tag
+'>' Punctuation
+'\n' Text
+
+'\n' Text
+
+'<' Punctuation
+'ref' Name.Tag
+' ' Text.Whitespace
+'name' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+'reference' Literal.String.Double
+' ' Literal.String.Double
+'name' Literal.String.Double
+'"' Literal.String.Double
+'>' Punctuation
+'add_template_name_here' Text
+'</' Punctuation
+'ref' Name.Tag
+'>' Punctuation
+'\n' Text
+
+'\n' Text
+
+'<' Punctuation
+'templatedata' Name.Tag
+'>' Punctuation
+'\n' Text.Whitespace
+
+'{' Punctuation
+'\n ' Text.Whitespace
+'"description"' Name.Tag
+':' Punctuation
+' ' Text.Whitespace
+'"Label unsigned comments in a conversation."' Literal.String.Double
+',' Punctuation
+'\n ' Text.Whitespace
+'"params"' Name.Tag
+':' Punctuation
+' ' Text.Whitespace
+'{' Punctuation
+'\n ' Text.Whitespace
+'"user"' Name.Tag
+':' Punctuation
+' ' Text.Whitespace
+'{' Punctuation
+'\n ' Text.Whitespace
+'"label"' Name.Tag
+':' Punctuation
+' ' Text.Whitespace
+'"User\'s name"' Literal.String.Double
+',' Punctuation
+'\n ' Text.Whitespace
+'"type"' Name.Tag
+':' Punctuation
+' ' Text.Whitespace
+'"wiki-user-name"' Literal.String.Double
+',' Punctuation
+'\n ' Text.Whitespace
+'"required"' Name.Tag
+':' Punctuation
+' ' Text.Whitespace
+'true' Keyword.Constant
+',' Punctuation
+'\n ' Text.Whitespace
+'"description"' Name.Tag
+':' Punctuation
+' ' Text.Whitespace
+'"User name of person who forgot to sign their comment."' Literal.String.Double
+',' Punctuation
+'\n ' Text.Whitespace
+'"aliases"' Name.Tag
+':' Punctuation
+' ' Text.Whitespace
+'[' Punctuation
+'"1"' Literal.String.Double
+']' Punctuation
+'\n ' Text.Whitespace
+'},' Punctuation
+'\n ' Text.Whitespace
+'"date"' Name.Tag
+':' Punctuation
+' ' Text.Whitespace
+'{' Punctuation
+'\n ' Text.Whitespace
+'"label"' Name.Tag
+':' Punctuation
+' ' Text.Whitespace
+'"Date"' Literal.String.Double
+',' Punctuation
+'\n ' Text.Whitespace
+'"suggested"' Name.Tag
+':' Punctuation
+' ' Text.Whitespace
+'true' Keyword.Constant
+',' Punctuation
+'\n ' Text.Whitespace
+'"description"' Name.Tag
+':' Punctuation
+' ' Text.Whitespace
+'{' Punctuation
+'\n ' Text.Whitespace
+'"en"' Name.Tag
+':' Punctuation
+' ' Text.Whitespace
+'"Timestamp of when the comment was posted, in YYYY-MM-DD format."' Literal.String.Double
+'\n ' Text.Whitespace
+'},' Punctuation
+'\n ' Text.Whitespace
+'"aliases"' Name.Tag
+':' Punctuation
+' ' Text.Whitespace
+'[' Punctuation
+'"2"' Literal.String.Double
+'],' Punctuation
+'\n ' Text.Whitespace
+'"autovalue"' Name.Tag
+':' Punctuation
+' ' Text.Whitespace
+'"{{subst:#time:Y-m-d}}"' Literal.String.Double
+'\n ' Text.Whitespace
+'},' Punctuation
+'\n ' Text.Whitespace
+'"year"' Name.Tag
+':' Punctuation
+' ' Text.Whitespace
+'{' Punctuation
+'\n ' Text.Whitespace
+'"label"' Name.Tag
+':' Punctuation
+' ' Text.Whitespace
+'"Year"' Literal.String.Double
+',' Punctuation
+'\n ' Text.Whitespace
+'"type"' Name.Tag
+':' Punctuation
+' ' Text.Whitespace
+'"number"' Literal.String.Double
+'\n ' Text.Whitespace
+'},' Punctuation
+'\n ' Text.Whitespace
+'"month"' Name.Tag
+':' Punctuation
+' ' Text.Whitespace
+'{' Punctuation
+'\n ' Text.Whitespace
+'"label"' Name.Tag
+':' Punctuation
+' ' Text.Whitespace
+'"Month"' Literal.String.Double
+',' Punctuation
+'\n ' Text.Whitespace
+'"inherits"' Name.Tag
+':' Punctuation
+' ' Text.Whitespace
+'"year"' Literal.String.Double
+'\n ' Text.Whitespace
+'},' Punctuation
+'\n ' Text.Whitespace
+'"day"' Name.Tag
+':' Punctuation
+' ' Text.Whitespace
+'{' Punctuation
+'\n ' Text.Whitespace
+'"label"' Name.Tag
+':' Punctuation
+' ' Text.Whitespace
+'"Day"' Literal.String.Double
+',' Punctuation
+'\n ' Text.Whitespace
+'"inherits"' Name.Tag
+':' Punctuation
+' ' Text.Whitespace
+'"year"' Literal.String.Double
+'\n ' Text.Whitespace
+'},' Punctuation
+'\n ' Text.Whitespace
+'"comment"' Name.Tag
+':' Punctuation
+' ' Text.Whitespace
+'{' Punctuation
+'\n ' Text.Whitespace
+'"required"' Name.Tag
+':' Punctuation
+' ' Text.Whitespace
+'false' Keyword.Constant
+'\n ' Text.Whitespace
+'}' Punctuation
+'\n ' Text.Whitespace
+'},' Punctuation
+'\n ' Text.Whitespace
+'"sets"' Name.Tag
+':' Punctuation
+' ' Text.Whitespace
+'[' Punctuation
+'\n ' Text.Whitespace
+'{' Punctuation
+'\n ' Text.Whitespace
+'"label"' Name.Tag
+':' Punctuation
+' ' Text.Whitespace
+'"Date"' Literal.String.Double
+',' Punctuation
+'\n ' Text.Whitespace
+'"params"' Name.Tag
+':' Punctuation
+' ' Text.Whitespace
+'[' Punctuation
+'"year"' Literal.String.Double
+',' Punctuation
+' ' Text.Whitespace
+'"month"' Literal.String.Double
+',' Punctuation
+' ' Text.Whitespace
+'"day"' Literal.String.Double
+']' Punctuation
+'\n ' Text.Whitespace
+'}' Punctuation
+'\n ' Text.Whitespace
+'],' Punctuation
+'\n ' Text.Whitespace
+'"maps"' Name.Tag
+':' Punctuation
+' ' Text.Whitespace
+'{' Punctuation
+'\n ' Text.Whitespace
+'"ExampleConsumer"' Name.Tag
+':' Punctuation
+' ' Text.Whitespace
+'{' Punctuation
+'\n ' Text.Whitespace
+'"foo"' Name.Tag
+':' Punctuation
+' ' Text.Whitespace
+'"user"' Literal.String.Double
+',' Punctuation
+'\n ' Text.Whitespace
+'"bar"' Name.Tag
+':' Punctuation
+' ' Text.Whitespace
+'[' Punctuation
+'"year"' Literal.String.Double
+',' Punctuation
+' ' Text.Whitespace
+'"month"' Literal.String.Double
+',' Punctuation
+' ' Text.Whitespace
+'"day"' Literal.String.Double
+'],' Punctuation
+'\n ' Text.Whitespace
+'"quux"' Name.Tag
+':' Punctuation
+' ' Text.Whitespace
+'[' Punctuation
+'\n ' Text.Whitespace
+'"date"' Literal.String.Double
+',' Punctuation
+'\n ' Text.Whitespace
+'[' Punctuation
+'"day"' Literal.String.Double
+',' Punctuation
+' ' Text.Whitespace
+'"month"' Literal.String.Double
+'],' Punctuation
+'\n ' Text.Whitespace
+'[' Punctuation
+'"month"' Literal.String.Double
+',' Punctuation
+' ' Text.Whitespace
+'"year"' Literal.String.Double
+'],' Punctuation
+'\n ' Text.Whitespace
+'"year"' Literal.String.Double
+'\n ' Text.Whitespace
+']' Punctuation
+'\n ' Text.Whitespace
+'}' Punctuation
+'\n ' Text.Whitespace
+'}' Punctuation
+'\n' Text.Whitespace
+
+'}' Punctuation
+'\n' Text.Whitespace
+
+'</' Punctuation
+'templatedata' Name.Tag
+'>' Punctuation
+'\n' Text
+
+'\n' Text
+
+'*' Keyword
+' ' Text
+'<' Punctuation
+'translate' Name.Tag
+'>' Punctuation
+'This' Text
+' ' Text
+'is' Text
+' ' Text
+'a' Text
+' ' Text
+'long' Text
+' ' Text
+'list' Text
+':' Text
+'</' Punctuation
+'translate' Name.Tag
+'>' Punctuation
+'\n' Text
+
+'**' Keyword
+' ' Text
+'<' Punctuation
+'translate' Name.Tag
+'>' Punctuation
+'There' Text
+' ' Text
+'are' Text
+' ' Text
+'more' Text
+' ' Text
+'than' Text
+' ' Text
+'160' Text
+' ' Text
+'words' Text
+' ' Text
+'in' Text
+' ' Text
+'this' Text
+' ' Text
+'list' Text
+',' Text
+'</' Punctuation
+'translate' Name.Tag
+'>' Punctuation
+'\n' Text
+
+'**' Keyword
+' ' Text
+'<' Punctuation
+'translate' Name.Tag
+'>' Punctuation
+'or' Text
+' ' Text
+'there' Text
+' ' Text
+'are' Text
+' ' Text
+'more' Text
+' ' Text
+'than' Text
+' ' Text
+'8' Text
+' ' Text
+'items' Text
+'.' Text
+'</' Punctuation
+'translate' Name.Tag
+'>' Punctuation
+'\n' Text
+
+'*' Keyword
+' ' Text
+'<' Punctuation
+'translate' Name.Tag
+'>' Punctuation
+'So' Text
+' ' Text
+'it' Text
+' ' Text
+'is' Text
+' ' Text
+'better' Text
+' ' Text
+'to' Text
+' ' Text
+'split' Text
+' ' Text
+'it' Text
+' ' Text
+'in' Text
+' ' Text
+'several' Text
+' ' Text
+'smaller' Text
+' ' Text
+'units' Text
+'.' Text
+'</' Punctuation
+'translate' Name.Tag
+'>' Punctuation
+'\n' Text
+
+'*' Keyword
+' ' Text
+'<' Punctuation
+'translate' Name.Tag
+'>' Punctuation
+'But' Text
+' ' Text
+'we' Text
+' ' Text
+'must' Text
+' ' Text
+'exclude' Text
+' ' Text
+'bullet' Text
+' ' Text
+'points' Text
+' ' Text
+'from' Text
+' ' Text
+'translate' Text
+' ' Text
+'tags' Text
+' ' Text
+'to' Text
+' ' Text
+'keep' Text
+' ' Text
+'the' Text
+' ' Text
+'list' Text
+' ' Text
+'accessible' Text
+'.' Text
+'</' Punctuation
+'translate' Name.Tag
+'>' Punctuation
+'\n' Text
+
+'\n' Text
+
+'<' Punctuation
+'tvar' Name.Tag
+' ' Text.Whitespace
+'name' Name.Attribute
+'=' Operator
+'1' Literal.String
+'>' Punctuation
+'1' Text
+'</' Punctuation
+'tvar' Name.Tag
+'>' Punctuation
+'\n' Text
+
+'<' Punctuation
+'span' Name.Tag
+' ' Text.Whitespace
+'<' Punctuation
+'tvar' Name.Tag
+' ' Text.Whitespace
+'name' Name.Attribute
+'=' Operator
+'attr' Literal.String
+'>' Punctuation
+'class' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+'css_class' Literal.String.Double
+'"' Literal.String.Double
+' ' Text.Whitespace
+'style' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+'background' Literal.String.Double
+'-' Literal.String.Double
+'color' Literal.String.Double
+':' Literal.String.Double
+'blue' Literal.String.Double
+'"' Literal.String.Double
+'</' Punctuation
+'tvar' Name.Tag
+'>' Punctuation
+'>' Punctuation
+'hello' Text
+'</' Punctuation
+'span' Name.Tag
+'>' Punctuation
+'\n' Text
+
+'<' Punctuation
+'span' Name.Tag
+' ' Text.Whitespace
+'<' Punctuation
+'tvar' Name.Tag
+'|' Punctuation
+'attr' Literal.String
+'>' Punctuation
+'class' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+'css_class' Literal.String.Double
+'"' Literal.String.Double
+' ' Text.Whitespace
+'style' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+'background' Literal.String.Double
+'-' Literal.String.Double
+'color' Literal.String.Double
+':' Literal.String.Double
+'blue' Literal.String.Double
+'"' Literal.String.Double
+'</>' Punctuation
+'>' Text
+'hello' Text
+'</' Punctuation
+'span' Name.Tag
+'>' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'<' Punctuation
+'tvar' Name.Tag
+' ' Text.Whitespace
+'name' Name.Attribute
+'=' Operator
+'1' Literal.String
+'>' Punctuation
+'center' Name.Tag
+'|' Punctuation
+'5px' Text
+'</' Punctuation
+'tvar' Name.Tag
+'>' Punctuation
+'|' Punctuation
+'hello' Text
+'}}' Punctuation
+'\n' Text
diff --git a/tests/snippets/wikitext/signurature.txt b/tests/snippets/wikitext/signurature.txt
new file mode 100644
index 00000000..d086436a
--- /dev/null
+++ b/tests/snippets/wikitext/signurature.txt
@@ -0,0 +1,24 @@
+---input---
+~~
+~~~
+~~~~
+~~~~~
+~~~~~~
+
+---tokens---
+'~' Text
+'~' Text
+'\n' Text
+
+'~~~' Keyword
+'\n' Text
+
+'~~~~' Keyword
+'\n' Text
+
+'~~~~~' Keyword
+'\n' Text
+
+'~~~~~' Keyword
+'~' Text
+'\n' Text
diff --git a/tests/snippets/wikitext/table.txt b/tests/snippets/wikitext/table.txt
new file mode 100644
index 00000000..0e6dac6d
--- /dev/null
+++ b/tests/snippets/wikitext/table.txt
@@ -0,0 +1,2323 @@
+---input---
+{| class="wikitable"
+|+ Caption text
+|-
+! Header texta !! Header text !! Header text
+|-
+| Example || Example || Example
+|-
+| Example || Example || Example
+|-
+| Example || Example || Example
+|}
+
+{| class=wikitable style="text-align: center;"
+|+ Multiplication table
+|-
+! ×
+! 1
+! 2
+! 3
+|-
+! 1
+| 1 || 2 || 3
+|-
+! 2
+| 2 || 4 || 6
+|-
+! 3
+| 3 || 6 || 9
+|-
+! 4
+| 4 || 8 || 12
+|-
+! 5
+| 5 || 10 || 15
+|}
+
+{| class=wikitable
+|+ style="text-align: left;" | Data reported for 2014–2015, by region<ref name="Garcia 2005"/>
+|-
+! scope=col | Year !! scope=col | Africa !! scope=col | Americas !! scope=col | Asia & Pacific !! scope=col | Europe
+|-
+! scope=row | 2014
+| 2,300 || 8,950 || ''9,325'' || 4,200
+|-
+! scope=row | 2015
+| 2,725 || ''9,200'' || 8,850 || 4,775
+|}
+
+<!-- || can be used in headers as well -->
+{| class="wikitable"
+|+ Caption text
+|-
+! Header text !! Header text || Header text
+|-
+ |}
+
+Text before centered table...
+{| style="border: 1px solid black; border-spacing: 0; margin: 1em auto;"
+|+ '''An example table'''
+|-
+! style="border: 1px solid black; padding: 5px; background: #efefef;" | First header
+! colspan="2" style="border: 1px solid black; padding: 5px; background: #ffdead;" | Second header
+|-
+| style="border: 1px solid black; padding: 5px;" | Upper left
+| style="border: 1px solid black; padding: 5px;" | Upper middle
+| rowspan="2" style="border: 1px solid black; border-bottom: 3px solid grey; padding: 5px; vertical-align: top;" |
+Right side
+|-
+| style="border: 1px solid black; border-bottom: 3px solid grey; padding: 5px;" | Lower left
+| style="border: 1px solid black; border-bottom: 3px solid grey; padding: 5px;" | Lower middle
+|-
+| colspan="3" style="border: 1px solid black; text-align: center;" |
+Text before a nested table...
+{|
+|+ ''A table in a table''
+|-
+| style="text-align: center; width: 150px;" | [[File:Wiki.png]]
+| style="text-align: center; width: 150px;" | [[File:Wiki.png]]
+|-
+| colspan="2" style="text-align:center; border-top: 1px solid red;<!--
+ --> border-right: 1px solid red; border-bottom: 2px solid red;<!--
+ --> border-left: 1px solid red;" |
+Two Wikipedia logos
+|}
+...text after a nested table
+|}
+...text after centered table
+
+{| class="wikitable"
+|+ a=1 | Caption text
+|- a=1 b=2
+! a=1 | Header text !! b=2 | Header text !! c="sdfsd f" | Header text
+|-
+| Example || Example || Example
+|-
+| Example || Example || Example
+|-
+| Example || Example || Example
+|}
+
+{| class=wikitable
+|-
+|class=1|P|i|p|e|
+|C|e|l|l|2|
+|-
+|class=1|P|i|p|e||class=1|C|e|l|l|2|
+|-
+||P|i|p|e|s||C|e|l|l|2|
+|}
+
+{| class=wikitable
+|-
+|<nowiki>|</nowiki>Pipes34:<nowiki>||</nowiki>
+|-
+|&#124;Pipes34:&#124;&#x7C;
+|}
+
+{| style="border: 1px solid black;"
+| style="border: 1px solid black;" | &alpha;
+| style="border: 1px solid black; text-align:center;" | cell2
+{| style="border: 2px solid black; background: #ffffcc;" <!-- The nested table must be on a new line -->
+| style="border: 2px solid darkgray;" | NESTED
+|-
+| style="border: 2px solid darkgray;" | TABLE
+|}
+| style="border: 1px solid black; vertical-align: bottom;" | the original table again
+| style="border: 1px solid black; width:100px" |
+{| style="border: 2px solid black; background: #ffffcc"
+| style="border: 2px solid darkgray;" | A
+|}
+{| style="border: 2px solid black; background: #ffffcc"
+| style="border: 2px solid darkgray;" | B
+| style="border: 2px solid darkgray;" | B
+|}
+| style="border: 1px solid black; width: 50px" |
+{| style="border: 2px solid black; background:#ffffcc; float:left"
+| style="border: 2px solid darkgray;" | C
+|}
+{| style="border: 2px solid black; background:#ffffcc; float:right"
+| style="border: 2px solid darkgray;" | D
+|}
+|}
+
+{| style="border-spacing: 2px; border: 1px solid darkgray;"
+! style="width: 140px;" | Left
+! style="width: 150px;" | Center
+! style="width: 130px;" | Right
+|- style="text-align: center;"
+| style="border: 1px solid blue;"|
+[[File:StarIconBronze.png|120px|Bronze star icon]]
+| style="border: 1px solid #777777;"|
+[[File:StarIconGold.png|120px|Gold star icon]]
+| style="border: 1px solid #22AA55;"|<!-- greenish border -->
+[[File:StarIconGreen.png|120px|Green star icon]]
+|- style="text-align: center;"
+|Bronze star || Gold star || Green star
+|}
+
+{| class=wikitable
+ <!--
+ Row one is shown because the '1' evaluates
+ to TRUE.
+ -->
+ {{ #if:1|{{!}}-
+ ! scope=row {{!}} row one, column one
+ <!--
+ Any {{!}}'s are evaluated to the pipe
+ character '|' since the template '!' just
+ contains '|'.
+ -->
+ {{!}}row one, column two}}
+ <!--
+ Row two is NOT shown because the space
+ between the ':' and the '|' evaluates to FALSE.
+ -->
+ {{ #if: |{{!}}-
+ ! scope=row {{!}} row two, column one
+ {{!}}row two, column two}}
+ <!--
+ Row three is shown.
+ -->
+ |-
+ ! scope=row {{!}} row three, column one
+ | row three, column two
+|}
+
+---tokens---
+'{|' Punctuation
+' ' Text.Whitespace
+'class' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+'wikitable' Literal.String.Double
+'"' Literal.String.Double
+'\n' Text
+
+'|+' Punctuation
+' Caption text' Generic.Heading
+'\n' Text
+
+'|-' Punctuation
+'\n' Text
+
+'!' Punctuation
+' ' Generic.Subheading
+'Header' Generic.Subheading
+' ' Generic.Subheading
+'texta' Generic.Subheading
+' ' Generic.Subheading
+'!!' Punctuation
+' ' Generic.Subheading
+'Header' Generic.Subheading
+' ' Generic.Subheading
+'text' Generic.Subheading
+' ' Generic.Subheading
+'!!' Punctuation
+' ' Generic.Subheading
+'Header' Generic.Subheading
+' ' Generic.Subheading
+'text' Generic.Subheading
+'\n' Text
+
+'|-' Punctuation
+'\n' Text
+
+'|' Punctuation
+' ' Text
+'Example' Text
+' ' Text
+'||' Punctuation
+' ' Text
+'Example' Text
+' ' Text
+'||' Punctuation
+' ' Text
+'Example' Text
+'\n' Text
+
+'|-' Punctuation
+'\n' Text
+
+'|' Punctuation
+' ' Text
+'Example' Text
+' ' Text
+'||' Punctuation
+' ' Text
+'Example' Text
+' ' Text
+'||' Punctuation
+' ' Text
+'Example' Text
+'\n' Text
+
+'|-' Punctuation
+'\n' Text
+
+'|' Punctuation
+' ' Text
+'Example' Text
+' ' Text
+'||' Punctuation
+' ' Text
+'Example' Text
+' ' Text
+'||' Punctuation
+' ' Text
+'Example' Text
+'\n' Text
+
+'|}' Punctuation
+'\n' Text
+
+'\n' Text.Whitespace
+
+'{|' Punctuation
+' ' Text.Whitespace
+'class' Name.Attribute
+'=' Operator
+'wikitable' Literal.String
+' ' Text.Whitespace
+'style' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+'text' Literal.String.Double
+'-' Literal.String.Double
+'align' Literal.String.Double
+':' Literal.String.Double
+' ' Literal.String.Double
+'center' Literal.String.Double
+';' Literal.String.Double
+'"' Literal.String.Double
+'\n' Text
+
+'|+' Punctuation
+' Multiplication table' Generic.Heading
+'\n' Text
+
+'|-' Punctuation
+'\n' Text
+
+'!' Punctuation
+' ' Generic.Subheading
+'×' Generic.Subheading
+'\n' Text
+
+'!' Punctuation
+' ' Generic.Subheading
+'1' Generic.Subheading
+'\n' Text
+
+'!' Punctuation
+' ' Generic.Subheading
+'2' Generic.Subheading
+'\n' Text
+
+'!' Punctuation
+' ' Generic.Subheading
+'3' Generic.Subheading
+'\n' Text
+
+'|-' Punctuation
+'\n' Text
+
+'!' Punctuation
+' ' Generic.Subheading
+'1' Generic.Subheading
+'\n' Text
+
+'|' Punctuation
+' ' Text
+'1' Text
+' ' Text
+'||' Punctuation
+' ' Text
+'2' Text
+' ' Text
+'||' Punctuation
+' ' Text
+'3' Text
+'\n' Text
+
+'|-' Punctuation
+'\n' Text
+
+'!' Punctuation
+' ' Generic.Subheading
+'2' Generic.Subheading
+'\n' Text
+
+'|' Punctuation
+' ' Text
+'2' Text
+' ' Text
+'||' Punctuation
+' ' Text
+'4' Text
+' ' Text
+'||' Punctuation
+' ' Text
+'6' Text
+'\n' Text
+
+'|-' Punctuation
+'\n' Text
+
+'!' Punctuation
+' ' Generic.Subheading
+'3' Generic.Subheading
+'\n' Text
+
+'|' Punctuation
+' ' Text
+'3' Text
+' ' Text
+'||' Punctuation
+' ' Text
+'6' Text
+' ' Text
+'||' Punctuation
+' ' Text
+'9' Text
+'\n' Text
+
+'|-' Punctuation
+'\n' Text
+
+'!' Punctuation
+' ' Generic.Subheading
+'4' Generic.Subheading
+'\n' Text
+
+'|' Punctuation
+' ' Text
+'4' Text
+' ' Text
+'||' Punctuation
+' ' Text
+'8' Text
+' ' Text
+'||' Punctuation
+' ' Text
+'12' Text
+'\n' Text
+
+'|-' Punctuation
+'\n' Text
+
+'!' Punctuation
+' ' Generic.Subheading
+'5' Generic.Subheading
+'\n' Text
+
+'|' Punctuation
+' ' Text
+'5' Text
+' ' Text
+'||' Punctuation
+' ' Text
+'10' Text
+' ' Text
+'||' Punctuation
+' ' Text
+'15' Text
+'\n' Text
+
+'|}' Punctuation
+'\n' Text
+
+'\n' Text.Whitespace
+
+'{|' Punctuation
+' ' Text.Whitespace
+'class' Name.Attribute
+'=' Operator
+'wikitable' Literal.String
+'\n' Text
+
+'|+' Punctuation
+' ' Text.Whitespace
+'style' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+'text' Literal.String.Double
+'-' Literal.String.Double
+'align' Literal.String.Double
+':' Literal.String.Double
+' ' Literal.String.Double
+'left' Literal.String.Double
+';' Literal.String.Double
+'"' Literal.String.Double
+' ' Text.Whitespace
+'|' Punctuation
+' Data reported for 2014–2015, by region<ref name="Garcia 2005"/>' Generic.Heading
+'\n' Text
+
+'|-' Punctuation
+'\n' Text
+
+'!' Punctuation
+' ' Text.Whitespace
+'scope' Name.Attribute
+'=' Operator
+'col' Literal.String
+' ' Text.Whitespace
+'|' Punctuation
+' ' Generic.Subheading
+'Year' Generic.Subheading
+' ' Generic.Subheading
+'!!' Punctuation
+' ' Text.Whitespace
+'scope' Name.Attribute
+'=' Operator
+'col' Literal.String
+' ' Text.Whitespace
+'|' Punctuation
+' ' Generic.Subheading
+'Africa' Generic.Subheading
+' ' Generic.Subheading
+'!!' Punctuation
+' ' Text.Whitespace
+'scope' Name.Attribute
+'=' Operator
+'col' Literal.String
+' ' Text.Whitespace
+'|' Punctuation
+' ' Generic.Subheading
+'Americas' Generic.Subheading
+' ' Generic.Subheading
+'!!' Punctuation
+' ' Text.Whitespace
+'scope' Name.Attribute
+'=' Operator
+'col' Literal.String
+' ' Text.Whitespace
+'|' Punctuation
+' ' Generic.Subheading
+'Asia' Generic.Subheading
+' ' Generic.Subheading
+'&' Generic.Subheading
+' ' Generic.Subheading
+'Pacific' Generic.Subheading
+' ' Generic.Subheading
+'!!' Punctuation
+' ' Text.Whitespace
+'scope' Name.Attribute
+'=' Operator
+'col' Literal.String
+' ' Text.Whitespace
+'|' Punctuation
+' ' Generic.Subheading
+'Europe' Generic.Subheading
+'\n' Text
+
+'|-' Punctuation
+'\n' Text
+
+'!' Punctuation
+' ' Text.Whitespace
+'scope' Name.Attribute
+'=' Operator
+'row' Literal.String
+' ' Text.Whitespace
+'|' Punctuation
+' ' Generic.Subheading
+'2014' Generic.Subheading
+'\n' Text
+
+'|' Punctuation
+' ' Text
+'2' Text
+',' Text
+'300' Text
+' ' Text
+'||' Punctuation
+' ' Text
+'8' Text
+',' Text
+'950' Text
+' ' Text
+'||' Punctuation
+' ' Text
+"''" Generic.Emph
+'9' Generic.Emph
+',' Generic.Emph
+'325' Generic.Emph
+"''" Generic.Emph
+' ' Text
+'||' Punctuation
+' ' Text
+'4' Text
+',' Text
+'200' Text
+'\n' Text
+
+'|-' Punctuation
+'\n' Text
+
+'!' Punctuation
+' ' Text.Whitespace
+'scope' Name.Attribute
+'=' Operator
+'row' Literal.String
+' ' Text.Whitespace
+'|' Punctuation
+' ' Generic.Subheading
+'2015' Generic.Subheading
+'\n' Text
+
+'|' Punctuation
+' ' Text
+'2' Text
+',' Text
+'725' Text
+' ' Text
+'||' Punctuation
+' ' Text
+"''" Generic.Emph
+'9' Generic.Emph
+',' Generic.Emph
+'200' Generic.Emph
+"''" Generic.Emph
+' ' Text
+'||' Punctuation
+' ' Text
+'8' Text
+',' Text
+'850' Text
+' ' Text
+'||' Punctuation
+' ' Text
+'4' Text
+',' Text
+'775' Text
+'\n' Text
+
+'|}' Punctuation
+'\n' Text
+
+'\n' Text
+
+'<!-- || can be used in headers as well -->' Comment.Multiline
+'\n' Text
+
+'{|' Punctuation
+' ' Text.Whitespace
+'class' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+'wikitable' Literal.String.Double
+'"' Literal.String.Double
+'\n' Text
+
+'|+' Punctuation
+' Caption text' Generic.Heading
+'\n' Text
+
+'|-' Punctuation
+'\n' Text
+
+'!' Punctuation
+' ' Generic.Subheading
+'Header' Generic.Subheading
+' ' Generic.Subheading
+'text' Generic.Subheading
+' ' Generic.Subheading
+'!!' Punctuation
+' ' Generic.Subheading
+'Header' Generic.Subheading
+' ' Generic.Subheading
+'text' Generic.Subheading
+' ' Generic.Subheading
+'||' Punctuation
+' ' Generic.Subheading
+'Header' Generic.Subheading
+' ' Generic.Subheading
+'text' Generic.Subheading
+'\n' Text
+
+'|-' Punctuation
+'\n' Text
+
+' ' Text.Whitespace
+'|}' Punctuation
+'\n' Text
+
+'\n' Text
+
+'Text' Text
+' ' Text
+'before' Text
+' ' Text
+'centered' Text
+' ' Text
+'table' Text
+'.' Text
+'.' Text
+'.' Text
+'\n' Text
+
+'{|' Punctuation
+' ' Text.Whitespace
+'style' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+'border' Literal.String.Double
+':' Literal.String.Double
+' ' Literal.String.Double
+'1px' Literal.String.Double
+' ' Literal.String.Double
+'solid' Literal.String.Double
+' ' Literal.String.Double
+'black' Literal.String.Double
+';' Literal.String.Double
+' ' Literal.String.Double
+'border' Literal.String.Double
+'-' Literal.String.Double
+'spacing' Literal.String.Double
+':' Literal.String.Double
+' ' Literal.String.Double
+'0' Literal.String.Double
+';' Literal.String.Double
+' ' Literal.String.Double
+'margin' Literal.String.Double
+':' Literal.String.Double
+' ' Literal.String.Double
+'1em' Literal.String.Double
+' ' Literal.String.Double
+'auto' Literal.String.Double
+';' Literal.String.Double
+'"' Literal.String.Double
+'\n' Text
+
+'|+' Punctuation
+" '''An example table'''" Generic.Heading
+'\n' Text
+
+'|-' Punctuation
+'\n' Text
+
+'!' Punctuation
+' ' Text.Whitespace
+'style' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+'border' Literal.String.Double
+':' Literal.String.Double
+' ' Literal.String.Double
+'1px' Literal.String.Double
+' ' Literal.String.Double
+'solid' Literal.String.Double
+' ' Literal.String.Double
+'black' Literal.String.Double
+';' Literal.String.Double
+' ' Literal.String.Double
+'padding' Literal.String.Double
+':' Literal.String.Double
+' ' Literal.String.Double
+'5px' Literal.String.Double
+';' Literal.String.Double
+' ' Literal.String.Double
+'background' Literal.String.Double
+':' Literal.String.Double
+' ' Literal.String.Double
+'#' Literal.String.Double
+'efefef' Literal.String.Double
+';' Literal.String.Double
+'"' Literal.String.Double
+' ' Text.Whitespace
+'|' Punctuation
+' ' Generic.Subheading
+'First' Generic.Subheading
+' ' Generic.Subheading
+'header' Generic.Subheading
+'\n' Text
+
+'!' Punctuation
+' ' Text.Whitespace
+'colspan' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+'2' Literal.String.Double
+'"' Literal.String.Double
+' ' Text.Whitespace
+'style' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+'border' Literal.String.Double
+':' Literal.String.Double
+' ' Literal.String.Double
+'1px' Literal.String.Double
+' ' Literal.String.Double
+'solid' Literal.String.Double
+' ' Literal.String.Double
+'black' Literal.String.Double
+';' Literal.String.Double
+' ' Literal.String.Double
+'padding' Literal.String.Double
+':' Literal.String.Double
+' ' Literal.String.Double
+'5px' Literal.String.Double
+';' Literal.String.Double
+' ' Literal.String.Double
+'background' Literal.String.Double
+':' Literal.String.Double
+' ' Literal.String.Double
+'#' Literal.String.Double
+'ffdead' Literal.String.Double
+';' Literal.String.Double
+'"' Literal.String.Double
+' ' Text.Whitespace
+'|' Punctuation
+' ' Generic.Subheading
+'Second' Generic.Subheading
+' ' Generic.Subheading
+'header' Generic.Subheading
+'\n' Text
+
+'|-' Punctuation
+'\n' Text
+
+'|' Punctuation
+' ' Text.Whitespace
+'style' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+'border' Literal.String.Double
+':' Literal.String.Double
+' ' Literal.String.Double
+'1px' Literal.String.Double
+' ' Literal.String.Double
+'solid' Literal.String.Double
+' ' Literal.String.Double
+'black' Literal.String.Double
+';' Literal.String.Double
+' ' Literal.String.Double
+'padding' Literal.String.Double
+':' Literal.String.Double
+' ' Literal.String.Double
+'5px' Literal.String.Double
+';' Literal.String.Double
+'"' Literal.String.Double
+' ' Text.Whitespace
+'|' Punctuation
+' ' Text
+'Upper' Text
+' ' Text
+'left' Text
+'\n' Text
+
+'|' Punctuation
+' ' Text.Whitespace
+'style' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+'border' Literal.String.Double
+':' Literal.String.Double
+' ' Literal.String.Double
+'1px' Literal.String.Double
+' ' Literal.String.Double
+'solid' Literal.String.Double
+' ' Literal.String.Double
+'black' Literal.String.Double
+';' Literal.String.Double
+' ' Literal.String.Double
+'padding' Literal.String.Double
+':' Literal.String.Double
+' ' Literal.String.Double
+'5px' Literal.String.Double
+';' Literal.String.Double
+'"' Literal.String.Double
+' ' Text.Whitespace
+'|' Punctuation
+' ' Text
+'Upper' Text
+' ' Text
+'middle' Text
+'\n' Text
+
+'|' Punctuation
+' ' Text.Whitespace
+'rowspan' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+'2' Literal.String.Double
+'"' Literal.String.Double
+' ' Text.Whitespace
+'style' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+'border' Literal.String.Double
+':' Literal.String.Double
+' ' Literal.String.Double
+'1px' Literal.String.Double
+' ' Literal.String.Double
+'solid' Literal.String.Double
+' ' Literal.String.Double
+'black' Literal.String.Double
+';' Literal.String.Double
+' ' Literal.String.Double
+'border' Literal.String.Double
+'-' Literal.String.Double
+'bottom' Literal.String.Double
+':' Literal.String.Double
+' ' Literal.String.Double
+'3px' Literal.String.Double
+' ' Literal.String.Double
+'solid' Literal.String.Double
+' ' Literal.String.Double
+'grey' Literal.String.Double
+';' Literal.String.Double
+' ' Literal.String.Double
+'padding' Literal.String.Double
+':' Literal.String.Double
+' ' Literal.String.Double
+'5px' Literal.String.Double
+';' Literal.String.Double
+' ' Literal.String.Double
+'vertical' Literal.String.Double
+'-' Literal.String.Double
+'align' Literal.String.Double
+':' Literal.String.Double
+' ' Literal.String.Double
+'top' Literal.String.Double
+';' Literal.String.Double
+'"' Literal.String.Double
+' ' Text.Whitespace
+'|' Punctuation
+'\n' Text
+
+'Right' Text
+' ' Text
+'side' Text
+'\n' Text
+
+'|-' Punctuation
+'\n' Text
+
+'|' Punctuation
+' ' Text.Whitespace
+'style' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+'border' Literal.String.Double
+':' Literal.String.Double
+' ' Literal.String.Double
+'1px' Literal.String.Double
+' ' Literal.String.Double
+'solid' Literal.String.Double
+' ' Literal.String.Double
+'black' Literal.String.Double
+';' Literal.String.Double
+' ' Literal.String.Double
+'border' Literal.String.Double
+'-' Literal.String.Double
+'bottom' Literal.String.Double
+':' Literal.String.Double
+' ' Literal.String.Double
+'3px' Literal.String.Double
+' ' Literal.String.Double
+'solid' Literal.String.Double
+' ' Literal.String.Double
+'grey' Literal.String.Double
+';' Literal.String.Double
+' ' Literal.String.Double
+'padding' Literal.String.Double
+':' Literal.String.Double
+' ' Literal.String.Double
+'5px' Literal.String.Double
+';' Literal.String.Double
+'"' Literal.String.Double
+' ' Text.Whitespace
+'|' Punctuation
+' ' Text
+'Lower' Text
+' ' Text
+'left' Text
+'\n' Text
+
+'|' Punctuation
+' ' Text.Whitespace
+'style' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+'border' Literal.String.Double
+':' Literal.String.Double
+' ' Literal.String.Double
+'1px' Literal.String.Double
+' ' Literal.String.Double
+'solid' Literal.String.Double
+' ' Literal.String.Double
+'black' Literal.String.Double
+';' Literal.String.Double
+' ' Literal.String.Double
+'border' Literal.String.Double
+'-' Literal.String.Double
+'bottom' Literal.String.Double
+':' Literal.String.Double
+' ' Literal.String.Double
+'3px' Literal.String.Double
+' ' Literal.String.Double
+'solid' Literal.String.Double
+' ' Literal.String.Double
+'grey' Literal.String.Double
+';' Literal.String.Double
+' ' Literal.String.Double
+'padding' Literal.String.Double
+':' Literal.String.Double
+' ' Literal.String.Double
+'5px' Literal.String.Double
+';' Literal.String.Double
+'"' Literal.String.Double
+' ' Text.Whitespace
+'|' Punctuation
+' ' Text
+'Lower' Text
+' ' Text
+'middle' Text
+'\n' Text
+
+'|-' Punctuation
+'\n' Text
+
+'|' Punctuation
+' ' Text.Whitespace
+'colspan' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+'3' Literal.String.Double
+'"' Literal.String.Double
+' ' Text.Whitespace
+'style' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+'border' Literal.String.Double
+':' Literal.String.Double
+' ' Literal.String.Double
+'1px' Literal.String.Double
+' ' Literal.String.Double
+'solid' Literal.String.Double
+' ' Literal.String.Double
+'black' Literal.String.Double
+';' Literal.String.Double
+' ' Literal.String.Double
+'text' Literal.String.Double
+'-' Literal.String.Double
+'align' Literal.String.Double
+':' Literal.String.Double
+' ' Literal.String.Double
+'center' Literal.String.Double
+';' Literal.String.Double
+'"' Literal.String.Double
+' ' Text.Whitespace
+'|' Punctuation
+'\n' Text
+
+'Text' Text
+' ' Text
+'before' Text
+' ' Text
+'a' Text
+' ' Text
+'nested' Text
+' ' Text
+'table' Text
+'.' Text
+'.' Text
+'.' Text
+'\n' Text
+
+'{|' Punctuation
+'\n' Text
+
+'|+' Punctuation
+" ''A table in a table''" Generic.Heading
+'\n' Text
+
+'|-' Punctuation
+'\n' Text
+
+'|' Punctuation
+' ' Text.Whitespace
+'style' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+'text' Literal.String.Double
+'-' Literal.String.Double
+'align' Literal.String.Double
+':' Literal.String.Double
+' ' Literal.String.Double
+'center' Literal.String.Double
+';' Literal.String.Double
+' ' Literal.String.Double
+'width' Literal.String.Double
+':' Literal.String.Double
+' ' Literal.String.Double
+'150px' Literal.String.Double
+';' Literal.String.Double
+'"' Literal.String.Double
+' ' Text.Whitespace
+'|' Punctuation
+' ' Text
+'[[' Punctuation
+'File' Name.Namespace
+':' Punctuation
+'Wiki.png' Name.Tag
+']]' Punctuation
+'\n' Text
+
+'|' Punctuation
+' ' Text.Whitespace
+'style' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+'text' Literal.String.Double
+'-' Literal.String.Double
+'align' Literal.String.Double
+':' Literal.String.Double
+' ' Literal.String.Double
+'center' Literal.String.Double
+';' Literal.String.Double
+' ' Literal.String.Double
+'width' Literal.String.Double
+':' Literal.String.Double
+' ' Literal.String.Double
+'150px' Literal.String.Double
+';' Literal.String.Double
+'"' Literal.String.Double
+' ' Text.Whitespace
+'|' Punctuation
+' ' Text
+'[[' Punctuation
+'File' Name.Namespace
+':' Punctuation
+'Wiki.png' Name.Tag
+']]' Punctuation
+'\n' Text
+
+'|-' Punctuation
+'\n' Text
+
+'|' Punctuation
+' ' Text
+'colspan' Text
+'=' Text
+'"' Text
+'2' Text
+'"' Text
+' ' Text
+'style' Text
+'=' Text
+'"' Text
+'text' Text
+'-' Text
+'align' Text
+':' Text
+'center' Text
+';' Text
+' ' Text
+'border' Text
+'-' Text
+'top' Text
+':' Text
+' ' Text
+'1px' Text
+' ' Text
+'solid' Text
+' ' Text
+'red' Text
+';' Text
+'<!--\n -->' Comment.Multiline
+' ' Text
+'border' Text
+'-' Text
+'right' Text
+':' Text
+' ' Text
+'1px' Text
+' ' Text
+'solid' Text
+' ' Text
+'red' Text
+';' Text
+' ' Text
+'border' Text
+'-' Text
+'bottom' Text
+':' Text
+' ' Text
+'2px' Text
+' ' Text
+'solid' Text
+' ' Text
+'red' Text
+';' Text
+'<!--\n -->' Comment.Multiline
+' ' Text
+'border' Text
+'-' Text
+'left' Text
+':' Text
+' ' Text
+'1px' Text
+' ' Text
+'solid' Text
+' ' Text
+'red' Text
+';' Text
+'"' Text
+' ' Text
+'|' Text
+'\n' Text
+
+'Two' Text
+' ' Text
+'Wikipedia' Text
+' ' Text
+'logos' Text
+'\n' Text
+
+'|}' Punctuation
+'\n' Text
+
+'.' Text
+'.' Text
+'.' Text
+'text' Text
+' ' Text
+'after' Text
+' ' Text
+'a' Text
+' ' Text
+'nested' Text
+' ' Text
+'table' Text
+'\n' Text
+
+'|}' Punctuation
+'\n' Text
+
+'.' Text
+'.' Text
+'.' Text
+'text' Text
+' ' Text
+'after' Text
+' ' Text
+'centered' Text
+' ' Text
+'table' Text
+'\n' Text
+
+'\n' Text.Whitespace
+
+'{|' Punctuation
+' ' Text.Whitespace
+'class' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+'wikitable' Literal.String.Double
+'"' Literal.String.Double
+'\n' Text
+
+'|+' Punctuation
+' ' Text.Whitespace
+'a' Name.Attribute
+'=' Operator
+'1' Literal.String
+' ' Text.Whitespace
+'|' Punctuation
+' Caption text' Generic.Heading
+'\n' Text
+
+'|-' Punctuation
+' ' Text.Whitespace
+'a' Name.Attribute
+'=' Operator
+'1' Literal.String
+' ' Text.Whitespace
+'b' Name.Attribute
+'=' Operator
+'2' Literal.String
+'\n' Text
+
+'!' Punctuation
+' ' Text.Whitespace
+'a' Name.Attribute
+'=' Operator
+'1' Literal.String
+' ' Text.Whitespace
+'|' Punctuation
+' ' Generic.Subheading
+'Header' Generic.Subheading
+' ' Generic.Subheading
+'text' Generic.Subheading
+' ' Generic.Subheading
+'!!' Punctuation
+' ' Text.Whitespace
+'b' Name.Attribute
+'=' Operator
+'2' Literal.String
+' ' Text.Whitespace
+'|' Punctuation
+' ' Generic.Subheading
+'Header' Generic.Subheading
+' ' Generic.Subheading
+'text' Generic.Subheading
+' ' Generic.Subheading
+'!!' Punctuation
+' ' Text.Whitespace
+'c' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+'sdfsd' Literal.String.Double
+' ' Literal.String.Double
+'f' Literal.String.Double
+'"' Literal.String.Double
+' ' Text.Whitespace
+'|' Punctuation
+' ' Generic.Subheading
+'Header' Generic.Subheading
+' ' Generic.Subheading
+'text' Generic.Subheading
+'\n' Text
+
+'|-' Punctuation
+'\n' Text
+
+'|' Punctuation
+' ' Text
+'Example' Text
+' ' Text
+'||' Punctuation
+' ' Text
+'Example' Text
+' ' Text
+'||' Punctuation
+' ' Text
+'Example' Text
+'\n' Text
+
+'|-' Punctuation
+'\n' Text
+
+'|' Punctuation
+' ' Text
+'Example' Text
+' ' Text
+'||' Punctuation
+' ' Text
+'Example' Text
+' ' Text
+'||' Punctuation
+' ' Text
+'Example' Text
+'\n' Text
+
+'|-' Punctuation
+'\n' Text
+
+'|' Punctuation
+' ' Text
+'Example' Text
+' ' Text
+'||' Punctuation
+' ' Text
+'Example' Text
+' ' Text
+'||' Punctuation
+' ' Text
+'Example' Text
+'\n' Text
+
+'|}' Punctuation
+'\n' Text
+
+'\n' Text.Whitespace
+
+'{|' Punctuation
+' ' Text.Whitespace
+'class' Name.Attribute
+'=' Operator
+'wikitable' Literal.String
+'\n' Text
+
+'|-' Punctuation
+'\n' Text
+
+'|' Punctuation
+'class' Name.Attribute
+'=' Operator
+'1' Literal.String
+'|' Punctuation
+'P' Text
+'|' Text
+'i' Text
+'|' Text
+'p' Text
+'|' Text
+'e' Text
+'|' Text
+'\n' Text
+
+'|' Punctuation
+'C' Name.Attribute
+'|' Punctuation
+'e' Text
+'|' Text
+'l' Text
+'|' Text
+'l' Text
+'|' Text
+'2' Text
+'|' Text
+'\n' Text
+
+'|-' Punctuation
+'\n' Text
+
+'|' Punctuation
+'class' Name.Attribute
+'=' Operator
+'1' Literal.String
+'|' Punctuation
+'P' Text
+'|' Text
+'i' Text
+'|' Text
+'p' Text
+'|' Text
+'e' Text
+'||' Punctuation
+'class' Name.Attribute
+'=' Operator
+'1' Literal.String
+'|' Punctuation
+'C' Text
+'|' Text
+'e' Text
+'|' Text
+'l' Text
+'|' Text
+'l' Text
+'|' Text
+'2' Text
+'|' Text
+'\n' Text
+
+'|-' Punctuation
+'\n' Text
+
+'|' Punctuation
+'|' Punctuation
+'P' Text
+'|' Text
+'i' Text
+'|' Text
+'p' Text
+'|' Text
+'e' Text
+'|' Text
+'s' Text
+'||' Punctuation
+'C' Name.Attribute
+'|' Punctuation
+'e' Text
+'|' Text
+'l' Text
+'|' Text
+'l' Text
+'|' Text
+'2' Text
+'|' Text
+'\n' Text
+
+'|}' Punctuation
+'\n' Text
+
+'\n' Text.Whitespace
+
+'{|' Punctuation
+' ' Text.Whitespace
+'class' Name.Attribute
+'=' Operator
+'wikitable' Literal.String
+'\n' Text
+
+'|-' Punctuation
+'\n' Text
+
+'|' Punctuation
+'<' Punctuation
+'nowiki' Name.Tag
+'>' Punctuation
+'|' Text
+'</' Punctuation
+'nowiki' Name.Tag
+'>' Punctuation
+'Pipes34' Text
+':' Text
+'<' Punctuation
+'nowiki' Name.Tag
+'>' Punctuation
+'|' Text
+'|' Text
+'</' Punctuation
+'nowiki' Name.Tag
+'>' Punctuation
+'\n' Text
+
+'|-' Punctuation
+'\n' Text
+
+'|' Punctuation
+'&#124;' Name.Entity
+'Pipes34' Text
+':' Text
+'&#124;' Name.Entity
+'&#x7C;' Name.Entity
+'\n' Text
+
+'|}' Punctuation
+'\n' Text
+
+'\n' Text.Whitespace
+
+'{|' Punctuation
+' ' Text.Whitespace
+'style' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+'border' Literal.String.Double
+':' Literal.String.Double
+' ' Literal.String.Double
+'1px' Literal.String.Double
+' ' Literal.String.Double
+'solid' Literal.String.Double
+' ' Literal.String.Double
+'black' Literal.String.Double
+';' Literal.String.Double
+'"' Literal.String.Double
+'\n' Text
+
+'|' Punctuation
+' ' Text.Whitespace
+'style' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+'border' Literal.String.Double
+':' Literal.String.Double
+' ' Literal.String.Double
+'1px' Literal.String.Double
+' ' Literal.String.Double
+'solid' Literal.String.Double
+' ' Literal.String.Double
+'black' Literal.String.Double
+';' Literal.String.Double
+'"' Literal.String.Double
+' ' Text.Whitespace
+'|' Punctuation
+' ' Text
+'&alpha;' Name.Entity
+'\n' Text
+
+'|' Punctuation
+' ' Text.Whitespace
+'style' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+'border' Literal.String.Double
+':' Literal.String.Double
+' ' Literal.String.Double
+'1px' Literal.String.Double
+' ' Literal.String.Double
+'solid' Literal.String.Double
+' ' Literal.String.Double
+'black' Literal.String.Double
+';' Literal.String.Double
+' ' Literal.String.Double
+'text' Literal.String.Double
+'-' Literal.String.Double
+'align' Literal.String.Double
+':' Literal.String.Double
+'center' Literal.String.Double
+';' Literal.String.Double
+'"' Literal.String.Double
+' ' Text.Whitespace
+'|' Punctuation
+' ' Text
+'cell2' Text
+'\n' Text
+
+'{|' Punctuation
+' ' Text.Whitespace
+'style' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+'border' Literal.String.Double
+':' Literal.String.Double
+' ' Literal.String.Double
+'2px' Literal.String.Double
+' ' Literal.String.Double
+'solid' Literal.String.Double
+' ' Literal.String.Double
+'black' Literal.String.Double
+';' Literal.String.Double
+' ' Literal.String.Double
+'background' Literal.String.Double
+':' Literal.String.Double
+' ' Literal.String.Double
+'#' Literal.String.Double
+'ffffcc' Literal.String.Double
+';' Literal.String.Double
+'"' Literal.String.Double
+' ' Text.Whitespace
+'<!-- The nested table must be on a new line -->' Comment.Multiline
+'\n' Text
+
+'|' Punctuation
+' ' Text.Whitespace
+'style' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+'border' Literal.String.Double
+':' Literal.String.Double
+' ' Literal.String.Double
+'2px' Literal.String.Double
+' ' Literal.String.Double
+'solid' Literal.String.Double
+' ' Literal.String.Double
+'darkgray' Literal.String.Double
+';' Literal.String.Double
+'"' Literal.String.Double
+' ' Text.Whitespace
+'|' Punctuation
+' ' Text
+'NESTED' Text
+'\n' Text
+
+'|-' Punctuation
+'\n' Text
+
+'|' Punctuation
+' ' Text.Whitespace
+'style' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+'border' Literal.String.Double
+':' Literal.String.Double
+' ' Literal.String.Double
+'2px' Literal.String.Double
+' ' Literal.String.Double
+'solid' Literal.String.Double
+' ' Literal.String.Double
+'darkgray' Literal.String.Double
+';' Literal.String.Double
+'"' Literal.String.Double
+' ' Text.Whitespace
+'|' Punctuation
+' ' Text
+'TABLE' Text
+'\n' Text
+
+'|}' Punctuation
+'\n' Text
+
+'|' Punctuation
+' ' Text.Whitespace
+'style' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+'border' Literal.String.Double
+':' Literal.String.Double
+' ' Literal.String.Double
+'1px' Literal.String.Double
+' ' Literal.String.Double
+'solid' Literal.String.Double
+' ' Literal.String.Double
+'black' Literal.String.Double
+';' Literal.String.Double
+' ' Literal.String.Double
+'vertical' Literal.String.Double
+'-' Literal.String.Double
+'align' Literal.String.Double
+':' Literal.String.Double
+' ' Literal.String.Double
+'bottom' Literal.String.Double
+';' Literal.String.Double
+'"' Literal.String.Double
+' ' Text.Whitespace
+'|' Punctuation
+' ' Text
+'the' Text
+' ' Text
+'original' Text
+' ' Text
+'table' Text
+' ' Text
+'again' Text
+'\n' Text
+
+'|' Punctuation
+' ' Text.Whitespace
+'style' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+'border' Literal.String.Double
+':' Literal.String.Double
+' ' Literal.String.Double
+'1px' Literal.String.Double
+' ' Literal.String.Double
+'solid' Literal.String.Double
+' ' Literal.String.Double
+'black' Literal.String.Double
+';' Literal.String.Double
+' ' Literal.String.Double
+'width' Literal.String.Double
+':' Literal.String.Double
+'100px' Literal.String.Double
+'"' Literal.String.Double
+' ' Text.Whitespace
+'|' Punctuation
+'\n' Text
+
+'{|' Punctuation
+' ' Text.Whitespace
+'style' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+'border' Literal.String.Double
+':' Literal.String.Double
+' ' Literal.String.Double
+'2px' Literal.String.Double
+' ' Literal.String.Double
+'solid' Literal.String.Double
+' ' Literal.String.Double
+'black' Literal.String.Double
+';' Literal.String.Double
+' ' Literal.String.Double
+'background' Literal.String.Double
+':' Literal.String.Double
+' ' Literal.String.Double
+'#' Literal.String.Double
+'ffffcc' Literal.String.Double
+'"' Literal.String.Double
+'\n' Text
+
+'|' Punctuation
+' ' Text.Whitespace
+'style' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+'border' Literal.String.Double
+':' Literal.String.Double
+' ' Literal.String.Double
+'2px' Literal.String.Double
+' ' Literal.String.Double
+'solid' Literal.String.Double
+' ' Literal.String.Double
+'darkgray' Literal.String.Double
+';' Literal.String.Double
+'"' Literal.String.Double
+' ' Text.Whitespace
+'|' Punctuation
+' ' Text
+'A' Text
+'\n' Text
+
+'|}' Punctuation
+'\n' Text
+
+'{|' Punctuation
+' ' Text.Whitespace
+'style' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+'border' Literal.String.Double
+':' Literal.String.Double
+' ' Literal.String.Double
+'2px' Literal.String.Double
+' ' Literal.String.Double
+'solid' Literal.String.Double
+' ' Literal.String.Double
+'black' Literal.String.Double
+';' Literal.String.Double
+' ' Literal.String.Double
+'background' Literal.String.Double
+':' Literal.String.Double
+' ' Literal.String.Double
+'#' Literal.String.Double
+'ffffcc' Literal.String.Double
+'"' Literal.String.Double
+'\n' Text
+
+'|' Punctuation
+' ' Text.Whitespace
+'style' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+'border' Literal.String.Double
+':' Literal.String.Double
+' ' Literal.String.Double
+'2px' Literal.String.Double
+' ' Literal.String.Double
+'solid' Literal.String.Double
+' ' Literal.String.Double
+'darkgray' Literal.String.Double
+';' Literal.String.Double
+'"' Literal.String.Double
+' ' Text.Whitespace
+'|' Punctuation
+' ' Text
+'B' Text
+'\n' Text
+
+'|' Punctuation
+' ' Text.Whitespace
+'style' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+'border' Literal.String.Double
+':' Literal.String.Double
+' ' Literal.String.Double
+'2px' Literal.String.Double
+' ' Literal.String.Double
+'solid' Literal.String.Double
+' ' Literal.String.Double
+'darkgray' Literal.String.Double
+';' Literal.String.Double
+'"' Literal.String.Double
+' ' Text.Whitespace
+'|' Punctuation
+' ' Text
+'B' Text
+'\n' Text
+
+'|}' Punctuation
+'\n' Text
+
+'|' Punctuation
+' ' Text.Whitespace
+'style' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+'border' Literal.String.Double
+':' Literal.String.Double
+' ' Literal.String.Double
+'1px' Literal.String.Double
+' ' Literal.String.Double
+'solid' Literal.String.Double
+' ' Literal.String.Double
+'black' Literal.String.Double
+';' Literal.String.Double
+' ' Literal.String.Double
+'width' Literal.String.Double
+':' Literal.String.Double
+' ' Literal.String.Double
+'50px' Literal.String.Double
+'"' Literal.String.Double
+' ' Text.Whitespace
+'|' Punctuation
+'\n' Text
+
+'{|' Punctuation
+' ' Text.Whitespace
+'style' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+'border' Literal.String.Double
+':' Literal.String.Double
+' ' Literal.String.Double
+'2px' Literal.String.Double
+' ' Literal.String.Double
+'solid' Literal.String.Double
+' ' Literal.String.Double
+'black' Literal.String.Double
+';' Literal.String.Double
+' ' Literal.String.Double
+'background' Literal.String.Double
+':' Literal.String.Double
+'#' Literal.String.Double
+'ffffcc' Literal.String.Double
+';' Literal.String.Double
+' ' Literal.String.Double
+'float' Literal.String.Double
+':' Literal.String.Double
+'left' Literal.String.Double
+'"' Literal.String.Double
+'\n' Text
+
+'|' Punctuation
+' ' Text.Whitespace
+'style' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+'border' Literal.String.Double
+':' Literal.String.Double
+' ' Literal.String.Double
+'2px' Literal.String.Double
+' ' Literal.String.Double
+'solid' Literal.String.Double
+' ' Literal.String.Double
+'darkgray' Literal.String.Double
+';' Literal.String.Double
+'"' Literal.String.Double
+' ' Text.Whitespace
+'|' Punctuation
+' ' Text
+'C' Text
+'\n' Text
+
+'|}' Punctuation
+'\n' Text
+
+'{|' Punctuation
+' ' Text.Whitespace
+'style' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+'border' Literal.String.Double
+':' Literal.String.Double
+' ' Literal.String.Double
+'2px' Literal.String.Double
+' ' Literal.String.Double
+'solid' Literal.String.Double
+' ' Literal.String.Double
+'black' Literal.String.Double
+';' Literal.String.Double
+' ' Literal.String.Double
+'background' Literal.String.Double
+':' Literal.String.Double
+'#' Literal.String.Double
+'ffffcc' Literal.String.Double
+';' Literal.String.Double
+' ' Literal.String.Double
+'float' Literal.String.Double
+':' Literal.String.Double
+'right' Literal.String.Double
+'"' Literal.String.Double
+'\n' Text
+
+'|' Punctuation
+' ' Text.Whitespace
+'style' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+'border' Literal.String.Double
+':' Literal.String.Double
+' ' Literal.String.Double
+'2px' Literal.String.Double
+' ' Literal.String.Double
+'solid' Literal.String.Double
+' ' Literal.String.Double
+'darkgray' Literal.String.Double
+';' Literal.String.Double
+'"' Literal.String.Double
+' ' Text.Whitespace
+'|' Punctuation
+' ' Text
+'D' Text
+'\n' Text
+
+'|}' Punctuation
+'\n' Text
+
+'|}' Punctuation
+'\n' Text
+
+'\n' Text.Whitespace
+
+'{|' Punctuation
+' ' Text.Whitespace
+'style' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+'border' Literal.String.Double
+'-' Literal.String.Double
+'spacing' Literal.String.Double
+':' Literal.String.Double
+' ' Literal.String.Double
+'2px' Literal.String.Double
+';' Literal.String.Double
+' ' Literal.String.Double
+'border' Literal.String.Double
+':' Literal.String.Double
+' ' Literal.String.Double
+'1px' Literal.String.Double
+' ' Literal.String.Double
+'solid' Literal.String.Double
+' ' Literal.String.Double
+'darkgray' Literal.String.Double
+';' Literal.String.Double
+'"' Literal.String.Double
+'\n' Text
+
+'!' Punctuation
+' ' Text.Whitespace
+'style' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+'width' Literal.String.Double
+':' Literal.String.Double
+' ' Literal.String.Double
+'140px' Literal.String.Double
+';' Literal.String.Double
+'"' Literal.String.Double
+' ' Text.Whitespace
+'|' Punctuation
+' ' Generic.Subheading
+'Left' Generic.Subheading
+'\n' Text
+
+'!' Punctuation
+' ' Text.Whitespace
+'style' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+'width' Literal.String.Double
+':' Literal.String.Double
+' ' Literal.String.Double
+'150px' Literal.String.Double
+';' Literal.String.Double
+'"' Literal.String.Double
+' ' Text.Whitespace
+'|' Punctuation
+' ' Generic.Subheading
+'Center' Generic.Subheading
+'\n' Text
+
+'!' Punctuation
+' ' Text.Whitespace
+'style' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+'width' Literal.String.Double
+':' Literal.String.Double
+' ' Literal.String.Double
+'130px' Literal.String.Double
+';' Literal.String.Double
+'"' Literal.String.Double
+' ' Text.Whitespace
+'|' Punctuation
+' ' Generic.Subheading
+'Right' Generic.Subheading
+'\n' Text
+
+'|-' Punctuation
+' ' Text.Whitespace
+'style' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+'text' Literal.String.Double
+'-' Literal.String.Double
+'align' Literal.String.Double
+':' Literal.String.Double
+' ' Literal.String.Double
+'center' Literal.String.Double
+';' Literal.String.Double
+'"' Literal.String.Double
+'\n' Text
+
+'|' Punctuation
+' ' Text.Whitespace
+'style' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+'border' Literal.String.Double
+':' Literal.String.Double
+' ' Literal.String.Double
+'1px' Literal.String.Double
+' ' Literal.String.Double
+'solid' Literal.String.Double
+' ' Literal.String.Double
+'blue' Literal.String.Double
+';' Literal.String.Double
+'"' Literal.String.Double
+'|' Punctuation
+'\n' Text
+
+'[[' Punctuation
+'File' Name.Namespace
+':' Punctuation
+'StarIconBronze.png' Name.Tag
+'|' Punctuation
+'120px' Text
+'|' Punctuation
+'Bronze' Text
+' ' Text
+'star' Text
+' ' Text
+'icon' Text
+']]' Punctuation
+'\n' Text
+
+'|' Punctuation
+' ' Text.Whitespace
+'style' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+'border' Literal.String.Double
+':' Literal.String.Double
+' ' Literal.String.Double
+'1px' Literal.String.Double
+' ' Literal.String.Double
+'solid' Literal.String.Double
+' ' Literal.String.Double
+'#' Literal.String.Double
+'777777' Literal.String.Double
+';' Literal.String.Double
+'"' Literal.String.Double
+'|' Punctuation
+'\n' Text
+
+'[[' Punctuation
+'File' Name.Namespace
+':' Punctuation
+'StarIconGold.png' Name.Tag
+'|' Punctuation
+'120px' Text
+'|' Punctuation
+'Gold' Text
+' ' Text
+'star' Text
+' ' Text
+'icon' Text
+']]' Punctuation
+'\n' Text
+
+'|' Punctuation
+' ' Text.Whitespace
+'style' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+'border' Literal.String.Double
+':' Literal.String.Double
+' ' Literal.String.Double
+'1px' Literal.String.Double
+' ' Literal.String.Double
+'solid' Literal.String.Double
+' ' Literal.String.Double
+'#' Literal.String.Double
+'22AA55' Literal.String.Double
+';' Literal.String.Double
+'"' Literal.String.Double
+'|' Punctuation
+'<!-- greenish border -->' Comment.Multiline
+'\n' Text
+
+'[[' Punctuation
+'File' Name.Namespace
+':' Punctuation
+'StarIconGreen.png' Name.Tag
+'|' Punctuation
+'120px' Text
+'|' Punctuation
+'Green' Text
+' ' Text
+'star' Text
+' ' Text
+'icon' Text
+']]' Punctuation
+'\n' Text
+
+'|-' Punctuation
+' ' Text.Whitespace
+'style' Name.Attribute
+'=' Operator
+'"' Literal.String.Double
+'text' Literal.String.Double
+'-' Literal.String.Double
+'align' Literal.String.Double
+':' Literal.String.Double
+' ' Literal.String.Double
+'center' Literal.String.Double
+';' Literal.String.Double
+'"' Literal.String.Double
+'\n' Text
+
+'|' Punctuation
+'Bronze' Text
+' ' Text
+'star' Text
+' ' Text
+'||' Punctuation
+' ' Text
+'Gold' Text
+' ' Text
+'star' Text
+' ' Text
+'||' Punctuation
+' ' Text
+'Green' Text
+' ' Text
+'star' Text
+'\n' Text
+
+'|}' Punctuation
+'\n' Text
+
+'\n' Text.Whitespace
+
+'{|' Punctuation
+' ' Text.Whitespace
+'class' Name.Attribute
+'=' Operator
+'wikitable' Literal.String
+'\n' Text
+
+' ' Text
+"<!--\n Row one is shown because the '1' evaluates\n to TRUE.\n -->" Comment.Multiline
+'\n' Text
+
+' ' Text
+'{{' Punctuation
+' ' Text.Whitespace
+'#if' Name.Function
+':' Punctuation
+'1' Text
+'|' Punctuation
+'{{' Punctuation
+'!' Name.Function
+'}}' Punctuation
+'-' Text
+'\n' Text
+
+' ' Text
+'!' Text
+' ' Text
+'scope' Text
+'=' Text
+'row' Text
+' ' Text
+'{{' Punctuation
+'!' Name.Function
+'}}' Punctuation
+' ' Text
+'row' Text
+' ' Text
+'one' Text
+',' Text
+' ' Text
+'column' Text
+' ' Text
+'one' Text
+'\n' Text
+
+' ' Text
+"<!--\n Any {{!}}'s are evaluated to the pipe\n character '|' since the template '!' just\n contains '|'.\n -->" Comment.Multiline
+'\n' Text
+
+' ' Text
+'{{' Punctuation
+'!' Name.Function
+'}}' Punctuation
+'row' Text
+' ' Text
+'one' Text
+',' Text
+' ' Text
+'column' Text
+' ' Text
+'two' Text
+'}}' Punctuation
+'\n' Text
+
+' ' Text
+"<!--\n Row two is NOT shown because the space\n between the ':' and the '|' evaluates to FALSE.\n -->" Comment.Multiline
+'\n' Text
+
+' ' Text
+'{{' Punctuation
+' ' Text.Whitespace
+'#if' Name.Function
+':' Punctuation
+' ' Text
+'|' Punctuation
+'{{' Punctuation
+'!' Name.Function
+'}}' Punctuation
+'-' Text
+'\n' Text
+
+' ' Text
+'!' Text
+' ' Text
+'scope' Text
+'=' Text
+'row' Text
+' ' Text
+'{{' Punctuation
+'!' Name.Function
+'}}' Punctuation
+' ' Text
+'row' Text
+' ' Text
+'two' Text
+',' Text
+' ' Text
+'column' Text
+' ' Text
+'one' Text
+'\n' Text
+
+' ' Text
+'{{' Punctuation
+'!' Name.Function
+'}}' Punctuation
+'row' Text
+' ' Text
+'two' Text
+',' Text
+' ' Text
+'column' Text
+' ' Text
+'two' Text
+'}}' Punctuation
+'\n' Text
+
+' ' Text
+'<!--\n Row three is shown.\n -->' Comment.Multiline
+'\n' Text
+
+' ' Text.Whitespace
+'|-' Punctuation
+'\n' Text
+
+' !' Punctuation
+' ' Generic.Subheading
+'scope' Generic.Subheading
+'=' Generic.Subheading
+'row' Generic.Subheading
+' ' Generic.Subheading
+'{' Generic.Subheading
+'{' Generic.Subheading
+'!' Generic.Subheading
+'}' Generic.Subheading
+'}' Generic.Subheading
+' ' Generic.Subheading
+'row' Generic.Subheading
+' ' Generic.Subheading
+'three' Generic.Subheading
+',' Generic.Subheading
+' ' Generic.Subheading
+'column' Generic.Subheading
+' ' Generic.Subheading
+'one' Generic.Subheading
+'\n' Text
+
+' |' Punctuation
+' ' Text
+'row' Text
+' ' Text
+'three' Text
+',' Text
+' ' Text
+'column' Text
+' ' Text
+'two' Text
+'\n' Text
+
+'|}' Punctuation
+'\n' Text
diff --git a/tests/snippets/wikitext/template.txt b/tests/snippets/wikitext/template.txt
new file mode 100644
index 00000000..050011a9
--- /dev/null
+++ b/tests/snippets/wikitext/template.txt
@@ -0,0 +1,617 @@
+---input---
+{{payoff matrix | UL = 5 | UR = 7 | DL = 2 | DR = 9 | Name = Example usage }}
+{{payoff matrix
+| UL = 5
+| UR = 7
+| DL = 2
+| DR = 9
+| Name = Example usage
+}}
+
+{{Wikipedia:foo|1=1}}
+{{Wikipe{{void}}dia:foo|1=1}}
+{{:foo|1=1}}
+
+{{short description|Wikipedia help page}}
+{{pp-move-indef|small=yes}}
+{{pp-vandalism|small=yes}}
+{{for|the '''encyclopedic''' section on wikitext|Wiki#Editing}}
+{{redirect|H:WT|the welcoming templates|Wikipedia:Welcoming committee/Welcome templates}}
+{{Locutions pages header}}
+{{Wikipedia how to|H:WT|H:MARKUP|H:WIKICODE}}
+{{Wikitext navbox}}
+
+{{Template|1={{{1}}}}}
+
+{{vo{{void|void}}id|param1=1|par{{void}}am2=2}}
+
+{{math|2''x'' &times; 4''y'' &divide; 6''z'' + 8 &minus; {{sfrac|''y''|''z''<sup>2</sup>}} {{=}} 0}}
+
+{{math|sin 2&pi;''x'' + ln ''e''}}
+It follows that {{math|''x''<sup>2</sup> &ge; 0}} for real {{mvar|x}}.
+
+{{Help:Transclusion demo}}
+
+{{Tooltip|Hover your mouse over this text
+|This is the hover text}}
+
+Go to this page to see the Tooltip
+template itself: {{tl|Tooltip}}
+
+This is how to {{Font color||yellow|highlight part of a sentence}}.
+
+{{msg:xyz}}
+{{raw:xyz}}
+{{msgnw:xyz}}
+{{subst:xyz}}
+{{safesubst:xyz}}
+
+{{{1}}}
+{{{IncludedWorkURL|}}}
+{{{Citation class|{{{Citation type|}}}}}}
+
+---tokens---
+'{{' Punctuation
+'payoff' Name.Tag
+' ' Name.Tag
+'matrix' Name.Tag
+' ' Text
+'|' Punctuation
+' UL ' Name.Label
+'=' Operator
+' ' Text
+'5' Text
+' ' Text
+'|' Punctuation
+' UR ' Name.Label
+'=' Operator
+' ' Text
+'7' Text
+' ' Text
+'|' Punctuation
+' DL ' Name.Label
+'=' Operator
+' ' Text
+'2' Text
+' ' Text
+'|' Punctuation
+' DR ' Name.Label
+'=' Operator
+' ' Text
+'9' Text
+' ' Text
+'|' Punctuation
+' Name ' Name.Label
+'=' Operator
+' ' Text
+'Example' Text
+' ' Text
+'usage' Text
+' ' Text
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'payoff' Name.Tag
+' ' Name.Tag
+'matrix' Name.Tag
+'\n' Text
+
+'|' Punctuation
+' UL ' Name.Label
+'=' Operator
+' ' Text
+'5' Text
+'\n' Text
+
+'|' Punctuation
+' UR ' Name.Label
+'=' Operator
+' ' Text
+'7' Text
+'\n' Text
+
+'|' Punctuation
+' DL ' Name.Label
+'=' Operator
+' ' Text
+'2' Text
+'\n' Text
+
+'|' Punctuation
+' DR ' Name.Label
+'=' Operator
+' ' Text
+'9' Text
+'\n' Text
+
+'|' Punctuation
+' Name ' Name.Label
+'=' Operator
+' ' Text
+'Example' Text
+' ' Text
+'usage' Text
+'\n' Text
+
+'}}' Punctuation
+'\n' Text
+
+'\n' Text
+
+'{{' Punctuation
+'Wikipedia' Name.Namespace
+':' Punctuation
+'foo' Name.Tag
+'|' Punctuation
+'1' Name.Label
+'=' Operator
+'1' Text
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'Wikipe' Name.Tag
+'{{' Punctuation
+'void' Name.Tag
+'}}' Punctuation
+'dia' Name.Tag
+':' Name.Tag
+'foo' Name.Tag
+'|' Punctuation
+'1' Name.Label
+'=' Operator
+'1' Text
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+':' Punctuation
+'foo' Name.Tag
+'|' Punctuation
+'1' Name.Label
+'=' Operator
+'1' Text
+'}}' Punctuation
+'\n' Text
+
+'\n' Text
+
+'{{' Punctuation
+'short' Name.Tag
+' ' Name.Tag
+'description' Name.Tag
+'|' Punctuation
+'Wikipedia' Text
+' ' Text
+'help' Text
+' ' Text
+'page' Text
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'pp' Name.Tag
+'-' Name.Tag
+'move' Name.Tag
+'-' Name.Tag
+'indef' Name.Tag
+'|' Punctuation
+'small' Name.Label
+'=' Operator
+'yes' Text
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'pp' Name.Tag
+'-' Name.Tag
+'vandalism' Name.Tag
+'|' Punctuation
+'small' Name.Label
+'=' Operator
+'yes' Text
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'for' Name.Tag
+'|' Punctuation
+'the' Text
+' ' Text
+"'''" Generic.Strong
+'encyclopedic' Generic.Strong
+"'''" Generic.Strong
+' ' Text
+'section' Text
+' ' Text
+'on' Text
+' ' Text
+'wikitext' Text
+'|' Punctuation
+'Wiki' Text
+'#' Text
+'Editing' Text
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'redirect' Name.Tag
+'|' Punctuation
+'H' Text
+':' Text
+'WT' Text
+'|' Punctuation
+'the' Text
+' ' Text
+'welcoming' Text
+' ' Text
+'templates' Text
+'|' Punctuation
+'Wikipedia' Text
+':' Text
+'Welcoming' Text
+' ' Text
+'committee' Text
+'/' Text
+'Welcome' Text
+' ' Text
+'templates' Text
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'Locutions' Name.Tag
+' ' Name.Tag
+'pages' Name.Tag
+' ' Name.Tag
+'header' Name.Tag
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'Wikipedia' Name.Tag
+' ' Name.Tag
+'how' Name.Tag
+' ' Name.Tag
+'to' Name.Tag
+'|' Punctuation
+'H' Text
+':' Text
+'WT' Text
+'|' Punctuation
+'H' Text
+':' Text
+'MARKUP' Text
+'|' Punctuation
+'H' Text
+':' Text
+'WIKICODE' Text
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'Wikitext' Name.Tag
+' ' Name.Tag
+'navbox' Name.Tag
+'}}' Punctuation
+'\n' Text
+
+'\n' Text
+
+'{{' Punctuation
+'Template' Name.Tag
+'|' Punctuation
+'1' Name.Label
+'=' Operator
+'{{{' Punctuation
+'1' Name.Variable
+'}}}' Punctuation
+'}}' Punctuation
+'\n' Text
+
+'\n' Text
+
+'{{' Punctuation
+'vo' Name.Tag
+'{{' Punctuation
+'void' Name.Tag
+'|' Punctuation
+'void' Text
+'}}' Punctuation
+'id' Name.Tag
+'|' Punctuation
+'param1' Name.Label
+'=' Operator
+'1' Text
+'|' Punctuation
+'par' Text
+'{{' Punctuation
+'void' Name.Tag
+'}}' Punctuation
+'am2' Text
+'=' Text
+'2' Text
+'}}' Punctuation
+'\n' Text
+
+'\n' Text
+
+'{{' Punctuation
+'math' Name.Tag
+'|' Punctuation
+'2' Text
+"''" Generic.Emph
+'x' Generic.Emph
+"''" Generic.Emph
+' ' Text
+'&times;' Name.Entity
+' ' Text
+'4' Text
+"''" Generic.Emph
+'y' Generic.Emph
+"''" Generic.Emph
+' ' Text
+'&divide;' Name.Entity
+' ' Text
+'6' Text
+"''" Generic.Emph
+'z' Generic.Emph
+"''" Generic.Emph
+' ' Text
+'+' Text
+' ' Text
+'8' Text
+' ' Text
+'&minus;' Name.Entity
+' ' Text
+'{{' Punctuation
+'sfrac' Name.Tag
+'|' Punctuation
+"''" Generic.Emph
+'y' Generic.Emph
+"''" Generic.Emph
+'|' Punctuation
+"''" Generic.Emph
+'z' Generic.Emph
+"''" Generic.Emph
+'<' Punctuation
+'sup' Name.Tag
+'>' Punctuation
+'2' Text
+'</' Punctuation
+'sup' Name.Tag
+'>' Punctuation
+'}}' Punctuation
+' ' Text
+'{{' Punctuation
+'=' Name.Function
+'}}' Punctuation
+' ' Text
+'0' Text
+'}}' Punctuation
+'\n' Text
+
+'\n' Text
+
+'{{' Punctuation
+'math' Name.Tag
+'|' Punctuation
+'sin' Text
+' ' Text
+'2' Text
+'&pi;' Name.Entity
+"''" Generic.Emph
+'x' Generic.Emph
+"''" Generic.Emph
+' ' Text
+'+' Text
+' ' Text
+'ln' Text
+' ' Text
+"''" Generic.Emph
+'e' Generic.Emph
+"''" Generic.Emph
+'}}' Punctuation
+'\n' Text
+
+'It' Text
+' ' Text
+'follows' Text
+' ' Text
+'that' Text
+' ' Text
+'{{' Punctuation
+'math' Name.Tag
+'|' Punctuation
+"''" Generic.Emph
+'x' Generic.Emph
+"''" Generic.Emph
+'<' Punctuation
+'sup' Name.Tag
+'>' Punctuation
+'2' Text
+'</' Punctuation
+'sup' Name.Tag
+'>' Punctuation
+' ' Text
+'&ge;' Name.Entity
+' ' Text
+'0' Text
+'}}' Punctuation
+' ' Text
+'for' Text
+' ' Text
+'real' Text
+' ' Text
+'{{' Punctuation
+'mvar' Name.Tag
+'|' Punctuation
+'x' Text
+'}}' Punctuation
+'.' Text
+'\n' Text
+
+'\n' Text
+
+'{{' Punctuation
+'Help' Name.Namespace
+':' Punctuation
+'Transclusion' Name.Tag
+' ' Name.Tag
+'demo' Name.Tag
+'}}' Punctuation
+'\n' Text
+
+'\n' Text
+
+'{{' Punctuation
+'Tooltip' Name.Tag
+'|' Punctuation
+'Hover' Text
+' ' Text
+'your' Text
+' ' Text
+'mouse' Text
+' ' Text
+'over' Text
+' ' Text
+'this' Text
+' ' Text
+'text' Text
+'\n' Text
+
+'|' Punctuation
+'This' Text
+' ' Text
+'is' Text
+' ' Text
+'the' Text
+' ' Text
+'hover' Text
+' ' Text
+'text' Text
+'}}' Punctuation
+'\n' Text
+
+'\n' Text
+
+'Go' Text
+' ' Text
+'to' Text
+' ' Text
+'this' Text
+' ' Text
+'page' Text
+' ' Text
+'to' Text
+' ' Text
+'see' Text
+' ' Text
+'the' Text
+' ' Text
+'Tooltip' Text
+'\n' Text
+
+'template' Text
+' ' Text
+'itself' Text
+':' Text
+' ' Text
+'{{' Punctuation
+'tl' Name.Tag
+'|' Punctuation
+'Tooltip' Text
+'}}' Punctuation
+'\n' Text
+
+'\n' Text
+
+'This' Text
+' ' Text
+'is' Text
+' ' Text
+'how' Text
+' ' Text
+'to' Text
+' ' Text
+'{{' Punctuation
+'Font' Name.Tag
+' ' Name.Tag
+'color' Name.Tag
+'|' Punctuation
+'|' Punctuation
+'yellow' Text
+'|' Punctuation
+'highlight' Text
+' ' Text
+'part' Text
+' ' Text
+'of' Text
+' ' Text
+'a' Text
+' ' Text
+'sentence' Text
+'}}' Punctuation
+'.' Text
+'\n' Text
+
+'\n' Text
+
+'{{' Punctuation
+'msg' Name.Namespace
+':' Punctuation
+'xyz' Name.Tag
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'raw' Name.Namespace
+':' Punctuation
+'xyz' Name.Tag
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'msgnw' Name.Namespace
+':' Punctuation
+'xyz' Name.Tag
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'subst' Name.Namespace
+':' Punctuation
+'xyz' Name.Tag
+'}}' Punctuation
+'\n' Text
+
+'{{' Punctuation
+'safesubst' Name.Namespace
+':' Punctuation
+'xyz' Name.Tag
+'}}' Punctuation
+'\n' Text
+
+'\n' Text
+
+'{{{' Punctuation
+'1' Name.Variable
+'}}}' Punctuation
+'\n' Text
+
+'{{{' Punctuation
+'IncludedWorkURL' Name.Variable
+'|' Punctuation
+'}}}' Punctuation
+'\n' Text
+
+'{{{' Punctuation
+'Citation class' Name.Variable
+'|' Punctuation
+'{{{' Punctuation
+'Citation type' Name.Variable
+'|' Punctuation
+'}}}' Punctuation
+'}}}' Punctuation
+'\n' Text
diff --git a/tests/snippets/wikitext/wikilink.txt b/tests/snippets/wikitext/wikilink.txt
new file mode 100644
index 00000000..c3720161
--- /dev/null
+++ b/tests/snippets/wikitext/wikilink.txt
@@ -0,0 +1,772 @@
+---input---
+[[a|
+b''b''
+]]
+
+[[维基百科:关于|关于]]
+
+[[Edge case#]]
+
+[[Edge case#|another]]
+
+[[ pagename | https://www.example.com ]]
+
+[[| this is legal! ]]
+
+[[ | this is illegal! ]]
+
+[[public transport#sth]]
+
+[[:public transport#sth]]
+
+[[:public transport]]
+
+[[a:public transport]]
+
+[[a:public transport#sth]]
+
+[[a:public transport#sth|<code>a</code> b ''c'' '''d''' ~~~~ <nowiki>[[a]]</nowiki>]]
+
+London has [[public transport]].
+
+Link to this page: "[[Help:Wikitext]]" will appear only as bold text.
+
+New York also has [[public transport|public transportation]].
+
+[[kingdom (biology)|]]
+
+[[Seattle, Washington|]]
+
+[[Wikipedia:Manual of Style#Links|]]
+
+[[:Category:Character sets|]]
+
+[[commons:category:Wikimedia]]
+
+[[Wiktionary:fr:bonjour]]
+
+[[Wiktionary:fr:bonjour|]]
+
+[[Wiktionary:fr:bonjour|bonjour]]
+
+[[ wp:pagename | page name[[ wp:pagename | page name ]] [[ wp:pagename | page name ]] [[ wp:pagename[[ wp:pagename | page name ]] | page name ]] [[ wp:pagename | page nam[[ wp:pagename | page name ]]e ]]]]
+
+[[ wp:pagename | page name ]]
+
+[<nowiki />[ wp:pagename | page name ]]
+
+[[<nowiki /> wp:pagename | page name ]]
+
+[[ wp:pagename <nowiki />| page name ]]
+
+[[ wp:pagename | page name ]<nowiki />]
+
+[[a|]]]]
+
+[[foo|[https://example.com]]]
+
+[[a|[[]]]]
+
+[[Hindenburg disaster|''Hindenburg'' disaster]]
+
+[[Special:Diff/330349143/330350877|Diff between revisions 330349143 and 330350877]]
+
+[[Special:Diff/330350877|Diff between revisions 330349143 and 330350877]]
+
+[[Special:Permalink/330350877|Revision 330350877]]
+
+[[Special:Contributions/2001:0db8:0000:0000:0000:ff00:0042:8329]]
+
+[[Special:Contributions/UserName]]
+
+[[File:wiki.png|thumb|left|alt={{User sandbox notice}}|Wikipedia ''logo'']]
+
+[[A|[//example.com a b c]]]
+
+---tokens---
+'[[' Punctuation
+'a' Name.Tag
+'|' Punctuation
+'\n' Text
+
+'b' Text
+"''" Generic.Emph
+'b' Generic.Emph
+"''" Generic.Emph
+'\n' Text
+
+']]' Punctuation
+'\n' Text
+
+'\n' Text
+
+'[[' Punctuation
+'维基百科' Name.Namespace
+':' Punctuation
+'关于' Name.Tag
+'|' Punctuation
+'关于' Text
+']]' Punctuation
+'\n' Text
+
+'\n' Text
+
+'[[' Punctuation
+'Edge case' Name.Tag
+'#' Punctuation
+']]' Punctuation
+'\n' Text
+
+'\n' Text
+
+'[[' Punctuation
+'Edge case' Name.Tag
+'#' Punctuation
+'|' Punctuation
+'another' Text
+']]' Punctuation
+'\n' Text
+
+'\n' Text
+
+'[[' Punctuation
+' pagename ' Name.Tag
+'|' Punctuation
+' ' Text
+'https' Text
+':' Text
+'/' Text
+'/' Text
+'www' Text
+'.' Text
+'example' Text
+'.' Text
+'com' Text
+' ' Text
+']]' Punctuation
+'\n' Text
+
+'\n' Text
+
+'[[' Punctuation
+'|' Punctuation
+' ' Text
+'this' Text
+' ' Text
+'is' Text
+' ' Text
+'legal' Text
+'!' Text
+' ' Text
+']]' Punctuation
+'\n' Text
+
+'\n' Text
+
+'[[' Punctuation
+' ' Name.Tag
+'|' Punctuation
+' ' Text
+'this' Text
+' ' Text
+'is' Text
+' ' Text
+'illegal' Text
+'!' Text
+' ' Text
+']]' Punctuation
+'\n' Text
+
+'\n' Text
+
+'[[' Punctuation
+'public transport' Name.Tag
+'#' Punctuation
+'sth' Name.Label
+']]' Punctuation
+'\n' Text
+
+'\n' Text
+
+'[[' Punctuation
+':' Punctuation
+'public transport' Name.Tag
+'#' Punctuation
+'sth' Name.Label
+']]' Punctuation
+'\n' Text
+
+'\n' Text
+
+'[[' Punctuation
+':' Punctuation
+'public transport' Name.Tag
+']]' Punctuation
+'\n' Text
+
+'\n' Text
+
+'[[' Punctuation
+'a' Name.Namespace
+':' Punctuation
+'public transport' Name.Tag
+']]' Punctuation
+'\n' Text
+
+'\n' Text
+
+'[[' Punctuation
+'a' Name.Namespace
+':' Punctuation
+'public transport' Name.Tag
+'#' Punctuation
+'sth' Name.Label
+']]' Punctuation
+'\n' Text
+
+'\n' Text
+
+'[[' Punctuation
+'a' Name.Namespace
+':' Punctuation
+'public transport' Name.Tag
+'#' Punctuation
+'sth' Name.Label
+'|' Punctuation
+'<' Punctuation
+'code' Name.Tag
+'>' Punctuation
+'a' Text
+'</' Punctuation
+'code' Name.Tag
+'>' Punctuation
+' ' Text
+'b' Text
+' ' Text
+"''" Generic.Emph
+'c' Generic.Emph
+"''" Generic.Emph
+' ' Text
+"'''" Generic.Strong
+'d' Generic.Strong
+"'''" Generic.Strong
+' ' Text
+'~~~~' Keyword
+' ' Text
+'<' Punctuation
+'nowiki' Name.Tag
+'>' Punctuation
+'[' Text
+'[' Text
+'a' Text
+']' Text
+']' Text
+'</' Punctuation
+'nowiki' Name.Tag
+'>' Punctuation
+']]' Punctuation
+'\n' Text
+
+'\n' Text
+
+'London' Text
+' ' Text
+'has' Text
+' ' Text
+'[[' Punctuation
+'public transport' Name.Tag
+']]' Punctuation
+'.' Text
+'\n' Text
+
+'\n' Text
+
+'Link' Text
+' ' Text
+'to' Text
+' ' Text
+'this' Text
+' ' Text
+'page' Text
+':' Text
+' ' Text
+'"' Text
+'[[' Punctuation
+'Help' Name.Namespace
+':' Punctuation
+'Wikitext' Name.Tag
+']]' Punctuation
+'"' Text
+' ' Text
+'will' Text
+' ' Text
+'appear' Text
+' ' Text
+'only' Text
+' ' Text
+'as' Text
+' ' Text
+'bold' Text
+' ' Text
+'text' Text
+'.' Text
+'\n' Text
+
+'\n' Text
+
+'New' Text
+' ' Text
+'York' Text
+' ' Text
+'also' Text
+' ' Text
+'has' Text
+' ' Text
+'[[' Punctuation
+'public transport' Name.Tag
+'|' Punctuation
+'public' Text
+' ' Text
+'transportation' Text
+']]' Punctuation
+'.' Text
+'\n' Text
+
+'\n' Text
+
+'[[' Punctuation
+'kingdom (biology)' Name.Tag
+'|' Punctuation
+']]' Punctuation
+'\n' Text
+
+'\n' Text
+
+'[[' Punctuation
+'Seattle, Washington' Name.Tag
+'|' Punctuation
+']]' Punctuation
+'\n' Text
+
+'\n' Text
+
+'[[' Punctuation
+'Wikipedia' Name.Namespace
+':' Punctuation
+'Manual of Style' Name.Tag
+'#' Punctuation
+'Links' Name.Label
+'|' Punctuation
+']]' Punctuation
+'\n' Text
+
+'\n' Text
+
+'[[' Punctuation
+':Category' Name.Namespace
+':' Punctuation
+'Character sets' Name.Tag
+'|' Punctuation
+']]' Punctuation
+'\n' Text
+
+'\n' Text
+
+'[[' Punctuation
+'commons:category' Name.Namespace
+':' Punctuation
+'Wikimedia' Name.Tag
+']]' Punctuation
+'\n' Text
+
+'\n' Text
+
+'[[' Punctuation
+'Wiktionary:fr' Name.Namespace
+':' Punctuation
+'bonjour' Name.Tag
+']]' Punctuation
+'\n' Text
+
+'\n' Text
+
+'[[' Punctuation
+'Wiktionary:fr' Name.Namespace
+':' Punctuation
+'bonjour' Name.Tag
+'|' Punctuation
+']]' Punctuation
+'\n' Text
+
+'\n' Text
+
+'[[' Punctuation
+'Wiktionary:fr' Name.Namespace
+':' Punctuation
+'bonjour' Name.Tag
+'|' Punctuation
+'bonjour' Text
+']]' Punctuation
+'\n' Text
+
+'\n' Text
+
+'[[' Punctuation
+' wp' Name.Namespace
+':' Punctuation
+'pagename ' Name.Tag
+'|' Punctuation
+' ' Text
+'page' Text
+' ' Text
+'name' Text
+'' Punctuation
+'[[' Punctuation
+' wp' Name.Namespace
+':' Punctuation
+'pagename ' Name.Tag
+'|' Punctuation
+' ' Text
+'page' Text
+' ' Text
+'name' Text
+' ' Text
+']]' Punctuation
+' ' Text
+'[[' Punctuation
+' wp' Name.Namespace
+':' Punctuation
+'pagename ' Name.Tag
+'|' Punctuation
+' ' Text
+'page' Text
+' ' Text
+'name' Text
+' ' Text
+']]' Punctuation
+' ' Text
+'[' Text
+'[' Text
+' ' Text
+'wp' Text
+':' Text
+'pagename' Text
+'[[' Punctuation
+' wp' Name.Namespace
+':' Punctuation
+'pagename ' Name.Tag
+'|' Punctuation
+' ' Text
+'page' Text
+' ' Text
+'name' Text
+' ' Text
+']]' Punctuation
+' ' Text
+'|' Text
+' ' Text
+'page' Text
+' ' Text
+'name' Text
+' ' Text
+']' Text
+']' Text
+' ' Text
+'[[' Punctuation
+' wp' Name.Namespace
+':' Punctuation
+'pagename ' Name.Tag
+'|' Punctuation
+' ' Text
+'page' Text
+' ' Text
+'nam' Text
+'' Punctuation
+'[[' Punctuation
+' wp' Name.Namespace
+':' Punctuation
+'pagename ' Name.Tag
+'|' Punctuation
+' ' Text
+'page' Text
+' ' Text
+'name' Text
+' ' Text
+']]' Punctuation
+'e' Text
+' ' Text
+']' Text
+']' Text
+']' Text
+']' Text
+'\n' Text
+
+'\n' Text
+
+'[[' Punctuation
+' wp' Name.Namespace
+':' Punctuation
+'pagename ' Name.Tag
+'|' Punctuation
+' ' Text
+'page' Text
+' ' Text
+'name' Text
+' ' Text
+']]' Punctuation
+'\n' Text
+
+'\n' Text
+
+'[' Text
+'<' Punctuation
+'nowiki' Name.Tag
+' ' Text.Whitespace
+'/>' Punctuation
+'[' Text
+' ' Text
+'wp' Text
+':' Text
+'pagename' Text
+' ' Text
+'|' Text
+' ' Text
+'page' Text
+' ' Text
+'name' Text
+' ' Text
+']' Text
+']' Text
+'\n' Text
+
+'\n' Text
+
+'[' Text
+'[' Text
+'<' Punctuation
+'nowiki' Name.Tag
+' ' Text.Whitespace
+'/>' Punctuation
+' ' Text
+'wp' Text
+':' Text
+'pagename' Text
+' ' Text
+'|' Text
+' ' Text
+'page' Text
+' ' Text
+'name' Text
+' ' Text
+']' Text
+']' Text
+'\n' Text
+
+'\n' Text
+
+'[' Text
+'[' Text
+' ' Text
+'wp' Text
+':' Text
+'pagename' Text
+' ' Text
+'<' Punctuation
+'nowiki' Name.Tag
+' ' Text.Whitespace
+'/>' Punctuation
+'|' Text
+' ' Text
+'page' Text
+' ' Text
+'name' Text
+' ' Text
+']' Text
+']' Text
+'\n' Text
+
+'\n' Text
+
+'[[' Punctuation
+' wp' Name.Namespace
+':' Punctuation
+'pagename ' Name.Tag
+'|' Punctuation
+' ' Text
+'page' Text
+' ' Text
+'name' Text
+' ' Text
+']' Text
+'<' Punctuation
+'nowiki' Name.Tag
+' ' Text.Whitespace
+'/>' Punctuation
+']' Text
+'\n' Text
+
+'\n' Text
+
+'' Punctuation
+'[[' Punctuation
+'a' Name.Tag
+'|' Punctuation
+']]' Punctuation
+']' Text
+']' Text
+'\n' Text
+
+'\n' Text
+
+'[[' Punctuation
+'foo' Name.Tag
+'|' Punctuation
+'[' Punctuation
+'https://example.com' Name.Label
+']' Punctuation
+']]' Punctuation
+'\n' Text
+
+'\n' Text
+
+'[[' Punctuation
+'a' Name.Tag
+'|' Punctuation
+'' Punctuation
+'[[' Punctuation
+']]' Punctuation
+']' Text
+']' Text
+'\n' Text
+
+'\n' Text
+
+'[[' Punctuation
+'Hindenburg disaster' Name.Tag
+'|' Punctuation
+"''" Generic.Emph
+'Hindenburg' Generic.Emph
+"''" Generic.Emph
+' ' Text
+'disaster' Text
+']]' Punctuation
+'\n' Text
+
+'\n' Text
+
+'[[' Punctuation
+'Special' Name.Namespace
+':' Punctuation
+'Diff/330349143/330350877' Name.Tag
+'|' Punctuation
+'Diff' Text
+' ' Text
+'between' Text
+' ' Text
+'revisions' Text
+' ' Text
+'330349143' Text
+' ' Text
+'and' Text
+' ' Text
+'330350877' Text
+']]' Punctuation
+'\n' Text
+
+'\n' Text
+
+'[[' Punctuation
+'Special' Name.Namespace
+':' Punctuation
+'Diff/330350877' Name.Tag
+'|' Punctuation
+'Diff' Text
+' ' Text
+'between' Text
+' ' Text
+'revisions' Text
+' ' Text
+'330349143' Text
+' ' Text
+'and' Text
+' ' Text
+'330350877' Text
+']]' Punctuation
+'\n' Text
+
+'\n' Text
+
+'[[' Punctuation
+'Special' Name.Namespace
+':' Punctuation
+'Permalink/330350877' Name.Tag
+'|' Punctuation
+'Revision' Text
+' ' Text
+'330350877' Text
+']]' Punctuation
+'\n' Text
+
+'\n' Text
+
+'[[' Punctuation
+'Special' Name.Namespace
+':' Punctuation
+'Contributions/2001:0db8:0000:0000:0000:ff00:0042:8329' Name.Tag
+']]' Punctuation
+'\n' Text
+
+'\n' Text
+
+'[[' Punctuation
+'Special' Name.Namespace
+':' Punctuation
+'Contributions/UserName' Name.Tag
+']]' Punctuation
+'\n' Text
+
+'\n' Text
+
+'[[' Punctuation
+'File' Name.Namespace
+':' Punctuation
+'wiki.png' Name.Tag
+'|' Punctuation
+'thumb' Text
+'|' Punctuation
+'left' Text
+'|' Punctuation
+'alt' Name.Attribute
+'=' Operator
+'{{' Punctuation
+'User' Name.Tag
+' ' Name.Tag
+'sandbox' Name.Tag
+' ' Name.Tag
+'notice' Name.Tag
+'}}' Punctuation
+'|' Punctuation
+'Wikipedia' Text
+' ' Text
+"''" Generic.Emph
+'logo' Generic.Emph
+"''" Generic.Emph
+']]' Punctuation
+'\n' Text
+
+'\n' Text
+
+'[[' Punctuation
+'A' Name.Tag
+'|' Punctuation
+'[' Punctuation
+'//example.com' Name.Label
+' ' Text.Whitespace
+'a' Text
+' ' Text
+'b' Text
+' ' Text
+'c' Text
+']' Punctuation
+']]' Punctuation
+'\n' Text