description
stringlengths 0
8.24k
| regex
stringlengths 1
26.3k
| text
stringlengths 0
2.47M
⌀ | title
stringlengths 1
150
| created_at
stringlengths 24
24
|
---|---|---|---|---|
Detects "hahaha" | (h*a*)+ | hahahahhaaaahhahahahahhahhahahahahahah | Laughing detector | 2015-10-02T13:54:21.000Z |
Matches either
01234567-89ab-4def-0123-456789abcdef
or
0123456789ab4def0123456789abcdef | [0-9a-f]{8}-[0-9a-f]{4}-4[0-9a-f]{3}-[0-9a-f]{4}-[0-9a-f]{12}|[0-9a-f]{12}4[0-9a-f]{19} | UUID v4 with or without dashes | 2016-08-20T15:28:14.000Z |
|
((\d|:)+)\s(.+) | 0:08 Waltz No. 2 (Dmitri Shostakovitch)
4:01 Dance of the Knights (Sergei Prokofiev)
9:42 Sabre Dance (Aram Khachaturian)
12:09 1812 Overture Finale (Pyotr Ilyich Tchaikovsky) (My Absolute Favorite One)
15:57 Flight of the Bumblebee "From The Tale of Tsar Sultan" (Nikolai Rimsky-Korsakov)
19:31 Rite of Spring Sacrifical Dance (Igor Stravinsky)
24:09 Piano Concerto No. 2 (Moderato) (Sergei Rachmaninoff)
34:22 Polovtsian Dances "From Prince Igor" (Alexander Borodin)
39:20 Etude Op. 8 No. 12 (Alexander Scriabin)
41:51 Sailors' Dance (Reinhold Gliere)
45:13 Dance of the Sugar Plum Fairy (Pyotr Ilylich Tchaikovsky)
47:46 Piano Concerto No. 1 (Allegro) (Pyotr Ilylich Tchaikovsky)
51:54 Ruslan and Lyudmila Overture (Mikhail Glinka)
54:51 Swan Lake Waltz (Pyotr Ilyich Tchaikovsky)
1:01:47 Dance of the Pagan Monster (Sergei Prokofiev)
1:05:01 Overture from the Children of Captain Grant (Isaak Dunaevsky)
1:08:52 Symphony No. 5 (Allegro Non Troppo) (Dmitri Shostakovitch) (My Favorite One)
1:12:00 Swan Theme (Pyotr Ilyich Tchaikovsky)
1:14:53 Night on Bald Mountain (Modest Mussorgsky) | splitter | 2021-02-28T00:44:06.000Z |
|
Fleet Insight Email RegEx with dashes not allowed in domain
relaxed teh 4 char limit on TLD | ^[-a-zA-Z0-9#$%'_]+(\.[-a-zA-Z0-9#$%'_]+)*@(([a-zA-Z0-9]{1,2}|[a-zA-Z0-9][-a-zA-Z0-9]+[a-zA-Z0-9])\.)+(?!\d+$)[a-zA-Z0-9]{2,4}$ | [email protected]
[email protected]
test.abc-efg'@test-test.com.com.01111co
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
Abc.example.com
A@b@[email protected]
just"not"[email protected]
this is"not\[email protected]
1234567890123456789012345678901234567890123456789012345678901234+x@example.com
[email protected]
[email protected]
[email protected]
| FI-Email2-final | 2018-08-01T20:36:57.000Z |
With this **C#** regex, you can easily match/Parse **Nested** HTML tags.
Example input:
<!DOCTYPE html>
<html>
<head>
<title>someTitle</title>
</head>
<body>
<div class="outer">
<h1>SomeHeader</h1>
<div id="target">
<h2>anotherHeader</h2>
<div id="child">
<div id="grand-child">
<h4>HelloWorld</h4>
</div>
</div>
</div>
</div>
</body>
</html>
Output:
<div id="target">
<h2>anotherHeader</h2>
<div id="child">
<div id="grand-child">
<h4>HelloWorld</h4>
</div>
</div>
</div>
` string pattern = $@"{ startP }((?'nested'{ openP })|{ closeP }(?'-nested')|[\w\W]*?)*{ closeP }";`
*'StartP' (Must include open tag), example: <div id="target"
*'openP' example: <div
*'closeP' example: </div
# References:
[In Depth with RegEx Matching Nested Constructions](https://www.codeproject.com/Articles/21080/In-Depth-with-RegEx-Matching-Nested-Constructions)
[In Depth with .NET RegEx Balanced Grouping](https://www.codeproject.com/Articles/21183/In-Depth-with-NET-RegEx-Balanced-Grouping)
[Regular expression matches closed HTML tags (nesting is supported)
](https://developpaper.com/regular-expression-matches-closed-html-tags-nesting-is-supported/) | <div id=""target""((?'nested'<div)|</div(?'-nested')|[\w\W]*?)*</div> | <!DOCTYPE html>
<html>
<head>
<title>someTitle</title>
</head>
<body>
<div class="outer">
<h1>SomeHeader</h1>
<div id="target">
<h2>anotherHeader</h2>
<div id="child">
<div id="grand-child">
<h4>HelloWorld</h4>
</div>
</div>
</div>
</div>
</body>
</html> | C# Regex Extract/Match Nested HTML Elements/Tags | 2022-03-03T19:13:02.000Z |
^(?<time>\d{4}-\d{1,2}-\d{1,2} \d{1,2}:\d{1,2}:\d{1,2}.\d{3})\s+(?<level>[^\s]+)\s+(?<pid>\d+).*?\[\s+(?<thread>.*)\]\s+(?<class>.*)\s+:\s+(?<message>.*) | 2016-01-11 16:14:32.474 INFO 1 --- [ main] fluentd.FluentdBootApplication : Starting FluentdBootApplication on 750117306ae6 with PID 1 (/app.jar started by root in /)
| Spring boot log parser | 2016-01-11T20:02:07.000Z |
|
\[\/?(embed|slider|---).*\] | [embed]
[---]
[sdfsfs]
[slider dsfsdf=fsdfs]
sdfsdfsf
[/slider] | Shortcode | 2016-02-17T04:06:02.000Z |
|
### Password requirements:
Contains at least one uppercase letter.
Contains at least one lowercase letter.
Contains at least one digit.
Does not contain any whitespace characters.
Has a minimum length of 8 characters. | ^((?=\S*?[A-Z])(?=\S*?[a-z])(?=\S*?[0-9])(?=\S*?(?:\W|_)).{8,})$ | p@s5w0rD | Password validation | 2023-06-05T21:59:10.000Z |
^(?<Lp>[^;]*);(?<Rachunek>[^;]*);(?<DataKsieg>[^;]*);(?<Kod>[^;]*);(?<Kwota>[^;]*);(?<Waluta>[^;]*);(?<Opis>.*);(?<DataWaluty>.*)$ | 2;XXXXXXXXXXXXXXXXXXXXXXXXXX;05.01.2016 00:00;911;7,47;PLN;911 Transakcja Collect; ID IPH: VVVVVVVVVVVVVV; z rach.: AAAAAAAAAAAAAAAAAAAAAAAAAA; od: BANK POCZTOWY S.A. w imieniu XXXXX XXX XXX _; tyt.: XX XX Km XX/XX VI Nc-e 1 XXX/13 XXXX KsP XXX/15 N a 30-12-2015 Na kwote 7 47 AAAAAAAAAAAAAAAAAAAAAAAAAA; TNR: xxxxxxxxxxxxx.xxxxxxx;05.01.16" | TestCsvProblme | 2016-03-18T09:49:47.000Z |
|
Finds valid URLs (they have to start with "https://") | \bhttp(?:s)?(?::|;)\/\/(?!.+\.\.)(?'domain'.+?\..+?(?=\/|$| )).*?(?=$| ) | http://regex101.com/r/mH1fN5/#wgt
http://regex101.com/r/fW0vZ2
https://regex101.com/r/noweqf/1253125321532153512312351352435 joi
http;//4.4..4.4.4.4.wef
http;//a.3 | URL Validator | 2019-06-23T05:06:35.000Z |
[幹乾淦贛干肏操糙去塞賽]?[林賃吝拎恁你他她它祂牠](娘|媽|老師|妹|祖?(嬤|媽|罵))(的|樂|叻|垃|勒|咧|([基唧雞機激][掰歪]))?|([基唧雞機激][掰歪]) | 幹
幹他媽的
幹你娘
乾
乾林老師
靠
靠北
靠杯
靠背
靠盃
靠腰
靠夭
哭夭
去你的
去你媽的
林北
恁北
恁娘
恁祖媽
機掰
賤
俗辣
他媽的
覽趴
懶趴
北爛
盧小
魯洨
色龜
肚爛
屌
啥小
三小
操
屁
唬爛
龜公
他奶奶的
犯賤
機車
智缺
你娘卡好
林老師
破麻
賽
操卒仔
操機歪
糙機掰
無懶趴
卡小
吃小
死魚眼
炭甲查某
糙你妹
GGININ
GG IN IN
GG IN IN DER
可惡 想揉
想揉
ㄈㄈ尺
英文原生:
CCR
Fuck off
Fuck
mother fucker
You SOB
son of a bitch
Go to hell
Shit-head
Asshole
You beast
Shit
fart
Idiot
damn it
God damn
God damn it
hypocrite
ass hole
ass licker
bitch
phycho
bastard
Whore
Slut
Shit-head
| Chinese slang words regex | 2016-01-02T09:20:10.000Z |
|
^[\d]+(,[\d]+)?$ | Números enteros y números decimales | 2019-02-21T22:19:16.000Z |
||
\Dshared\Dsections\D\d{3,5}[?](program_id|nav_info=&program_id)=6 | Past Strings:
\Dshared\Dsections\D\d{3,5}[?]nav_info=&{0,1}program_id=6
Pass:
/shared/sections/6032?nav_info=&program_id=6
/shared/sections/6027?program_id=6
/shared/sections/8990?program_id=6
/shared/sections/6115?nav_info=&program_id=6
/shared/sections/7318?program_id=6
/shared/sections/8996?program_id=6
/shared/sections/6324?nav_info=&program_id=6
/shared/sections/6332?program_id=6
/shared/sections/6333?program_id=6
/shared/sections/6334?program_id=6
Fail:
/shared/programs/6/lessons/1126/slide_shows
/shared/programs/6/lessons/964/slide_shows
/shared/programs/6/lessons/944/slide_shows
/shared/programs/6/lessons/963/slide_shows
/shared/programs/6/lessons/970/slide_shows
/shared/sections/7352?nav_info=&program_id=15
/shared/sections/8991?program_id=15
| Student: GA - Middle School - 2011 | 2017-10-10T21:04:13.000Z |
|
\d - numeric class
\s - whitespace
a-zA-Z - matches all the letters
^ - negates them all - so you get - non numeric chars, non spaces | [^a-zA-Z\d\s] | lola-fern henderson
John Smith | Select all special characters except white space | 2018-09-12T17:23:44.000Z |
Matches various versions of build file filenames from our jenkins builds | ^(?<type>(?:ci-|cloud-)?[^-]+)[_-](?<version>\d+\.\d+\.\d+)(?<alpha>[-+]alpha)?(?:-(?<date>\d{8}))?[-+](?:(?<build>\d+).(?<builddate>\d{8}))?(?:[.-]?(?<sha>[A-Fa-f0-9]+(?:[.-]\d+)?))?(?:\.(?<arch>.+))?\.(?<fmt>.{3}) | cloud-csm-6.4.13-20210927-89fa91ca.lnx.x86_64.zip
cams-7.2.4+4.20211216.zip
cams-7.2.4-alpha+4.20211216.zip
cca-6.4.23+753.20211216.193a0386-1.noarch.rpm
cca-6.4.23+alpha+753.20211216.193a0386-1.noarch.rpm
cca-6.4.23-alpha+753.20211216.193a0386.zip
cca_6.4.23+753.20211216.193a0386-1_all.deb
ci-j2ee-6.4.23+790.20211216.193a0386.zip
ci-j2ee-6.4.23-alpha+790.20211216.193a0386.zip
ci-server-6.4.23+790.20211216.193a0386.zip
ci-server-6.4.23-alpha+790.20211216.193a0386.zip
cloud-ci-7.1.15+90.20210119.46eef7d3-1.noarch.rpm
cloud-ci-7.2.4+247.20211216.eba3915b.noarch.zip
cloud-ci-7.2.4+alpha+247.20211216.eba3915b-1.noarch.RPM
cloud-ci-7.2.4-alpha+247.20211216.eba3915b.noarch.zip
cloud-cm-7.2.4+246.20211216.eba3915b-1.noarch.rpm
cloud-cm-7.2.4+246.20211216.eba3915b.noarch.zip
cloud-cm-7.2.4+alpha+246.20211216.eba3915b-1.noarch.rpm
cloud-cm-7.2.4-alpha+246.20211216.eba3915b.noarch.zip
cloud-csd-7.2.4+241.20211216.eba3915b-1.x86_64.rpm
cloud-csd-7.2.4+241.20211216.eba3915b.1-sym-x86_64.rpm
cloud-csd-7.2.4+241.20211216.eba3915b.lnx.x86_64.zip
cloud-csd-7.2.4+241.20211216.eba3915b.sym.lnx.x86_64.zip
cloud-csd-7.2.4+alpha+241.20211216.eba3915b-1.x86_64.rpm
cloud-csd-7.2.4+alpha+241.20211216.eba3915b.1-sym-x86_64.rpm
cloud-csd-7.2.4-alpha+241.20211216.eba3915b.lnx.x86_64.zip
cloud-csd-7.2.4-alpha+241.20211216.eba3915b.sym.lnx.x86_64.zip
cloud-csm-6.4.13-20210927-89fa91ca.lnx.x86_64.zip
cloud-csm-6.4.13-20210927-89fa91ca.win.x86.zip
cloud-cst-7.2.4+241.20211216.eba3915b-1.x86_64.rpm
cloud-cst-7.2.4+241.20211216.eba3915b.1-sym-x86_64.rpm
cloud-cst-7.2.4+241.20211216.eba3915b.lnx.x86_64.zip
cloud-cst-7.2.4+241.20211216.eba3915b.sym.lnx.x86_64.zip
cloud-cst-7.2.4+alpha+241.20211216.eba3915b-1.x86_64.rpm
cloud-cst-7.2.4+alpha+241.20211216.eba3915b.1-sym-x86_64.rpm
cloud-cst-7.2.4-alpha+241.20211216.eba3915b.lnx.x86_64.zip
cloud-cst-7.2.4-alpha+241.20211216.eba3915b.sym.lnx.x86_64.zip
cloud-parts-7.2.4-20211216.zip
cloud-parts-7.2.4-alpha-20211216.zip
cloud-xds-6.4.6-20211101-4b76a168.lnx.x86.zip
cloud-xds-6.4.6-20211101-4b76a168.win.x86.zip
cm-6.4.23+798.20211216.193a0386-1.noarch.rpm
cm-6.4.23+alpha+798.20211216.193a0386-1.noarch.rpm
cm-6.4.23-alpha+798.20211216.193a0386.zip
cm_6.4.23+798.20211216.193a0386-1_all.deb
cm_6.4.23+alpha+798.20211216.193a0386-1_all.deb
csm-6.4.13-20210927-89fa91ca.lnx.x86_64.tar
csm-6.4.13-20210927-89fa91ca.win.x86.zip
dbconfig-7.2.4+231.20211216.eba3915b.zip
dbconfig-7.2.4-alpha+231.20211216.eba3915b.zip
xds-6.4.6-20211101-4b76a168.lnx.x86.tar
xds-6.4.6-20211101-4b76a168.win.x86.zip | Matching build file names | 2022-02-16T22:31:25.000Z |
^\.\/([^\/]+)\/config.xml.*<(?:scm\s*class=\"([\w\.]+)\"|([\w\.]+))?\s*.*plugin=\"([^\"]+)\" | ./DPC Cucumber test/config.xml:7: <scm class="hudson.plugins.git.GitSCM" plugin="[email protected]">
./DPC Cucumber test/config.xml:66: <jenkins.plugins.nodejs.NodeJSBuildWrapper plugin="[email protected]">
./DPC Protractor Automation/config.xml:7: <scm class="hudson.plugins.git.GitSCM" plugin="[email protected]">
./DPC Protractor Automation/config.xml:56: <org.jenkinsci.plugins.xvfb.Xvfb plugin="[email protected]">
./DPC Protractor Automation/config.xml:69: <org.jenkinsci.plugins.nvm.NvmWrapper plugin="[email protected]"> | jenkins plugin scan | 2018-04-20T20:05:33.000Z |
|
(http|ftp|https):\/\/([\w\-_]+(?:(?:\.[\w\-_]+)+))([\w\-\.,@?^=%&:/~\+#]*[\w\-\@?^=%&/~\+#])? | http://myip.ms/browse/ip_ranges/1/ownerID/224218/ownerID_A/1/sort/1/asc/1#ip_ranges_tbl_top
<script src="mraid.js"></script>
<img src="data:image/png,mone" style="display: none" onerror="
(function(self) {
setTimeout(function() {
var creative = 'GetRich';
var suffix = '';
var country = 'om';
var campaignId = 16492;
var mediatorUrl = 'https://tags.mli.me';
// --- ----
var params={scriptId:'mone-tag-script-1',tagTimestamp: new Date().getTime(), tagId:(Math.floor(Math.random() * 10000))};
var req = document.createElement('script');
req.src = mediatorUrl + '/mediator/' + country + '/_/_/' + creative + '/452/' + campaignId + '?';
req.id ='mone-tag-script-1';
params.requestId = '%{${RequestID}}%';
params.placement = '%{${Placement}}%';
params.gclid = '%{${GoogleUserID}}%';
if(!!suffix)
params['x-suffix'] = suffix;
for (var k in params) {
req.src += '&' + encodeURIComponent(k) + '=' + encodeURIComponent(params[k]);
}
if (!window.moneTags) window.moneTags = {};
if (!window.moneTags.beacons) window.moneTags.beacons = {};
window.moneTags.beacons[params.tagId] = {'transition':['%%CLICK_URL_ESC%%']};
document.head.appendChild(req);
}, 2000);
})(this);
"/>
<img src="https://imp.mli.me/api/track/impression?RequestID=%{${RequestID}}%&CreativeID=%{${CreativeID}}%&WinningPrice=%%WINNING_PRICE%%" width="1" height="1"> | Lib | 2016-09-21T12:20:21.000Z |
|
Why this regEx not find all single character?
Why not work Start of string and End of string in bracket? | [ ^][A-F0-9][ $] | A A A A A A | find single character | 2014-09-30T15:31:57.000Z |
Begin with /* accept anything inside and finish with */ | ^\/\*(.*)(\n)*\*\/$ | /* comentári osdsd*/
sxdsdsd
/* sdasdj */
/*sdknsd*/ | Multiple lines comment in Java | 2015-10-26T14:27:03.000Z |
Regular expression for binary code. | ^[0-1]*$ | Binary code regular expression | 2021-06-19T12:33:46.000Z |
|
Try to find the author of a sentence following the next format:
(Author, year)
(Author, year; Author, year) | \([^)]+,\s\d{4}(;\s[^)]+,\s\d{4})*\) | (Palacios et al., 2014)
(Palacios et al., 2014)
(a nivel fisiológico/hormonal) en chicos y chicas y se dan en ritmos de desarrollo desigual (Pérez-Pérez y Navarro-Soria, 2012)
(Papalia et al., 2009)
(Martín et al., 2011)
(ciertas operaciones sobre las proposiciones: conjunción, disyunción…) y poner esta al servicio del recién adquirido pensamiento formal, pueden operar sobre las operaciones concretas, realizando así operaciones formales o de segundo orden (García-Madruga y Delval, 2010)
(García-Madruga y Delval, 2010)
(Pérez-Pérez y Navarro-Soria, 2012)
(Palacios et al., 2014)
(Martín et al., 2011)
(es la parte que tienen afectada las personas con trastorno de déficit de atención, TDA). También se encarga de la toma de decisiones, la planificación y la regulación de la propia conducta y por esto termina de desarrollarse en la adolescencia, cuando los sujetos adquieren la capacidad de pensar sobre el pensamiento y la conducta (Goldberg, 2004)
(Damasio, 2010)
(Toro, 2010)
(metaoperaciones). Podrán reflexionar sobre sí mismos y sobre diferentes realidades entre las posibles (García-Madruga y Delval, 2010)
(Elkind, 1978)
(ciberacoso, divulgación de información confidencial, acoso escolar…) y poco responsables (Mariscal et al., 2009)
(Mariscal et al., 2009)
(positiva o negativa) de su desarrollo y el bienestar con su nueva realidad (Palacios et al., 2014; Pérez-Pérez y Navarro-Soria, 2012)
(Duke et al., 1982)
(Palacios et al., 2014; Pérez y Navarro, 2012)
(Pérez-Pérez y Navarro-Soria, 2012)
(Martínez, 2010)
(Palacios et al., 2014; Pérez-Pérez y Navarro-Soria, 2012)
(Palacios et al., 2014; Pérez-Pérez y Navarro-Soria, 2012)
(Martín et al., 2011)
(Palacios et al., 2014)
(Palacios et al., 2014; Pérez-Pérez y Navarro-Soria, 2012)
(Martín et al., 2011)
(la adolescencia)
(Instagram, WhatsApp…) puede producir un sentimiento de aislamiento social (Martín et al., 2011)
(Oliva et al., 2002)
(Martín et al., 2011)
(ser compañeros), se hace necesaria la afinidad (Fuertes et al., 2001)
(afecto, apoyo…) que los chicos, tendrán redes sociales menos extensas que estos, cuyas necesidades suelen ser de logro o admiración (Martín et al., 2011)
(Palacios et al., 2014)
(Furman y Wehner, 1994)
(Palacios et al., 2014)
(figura 8), ya que el estilo de crianza que el adolescente ha experimentado configurará de manera decisiva la personalidad que se está formando (Palacios et al., 2014)
(Palacios et al., 2014)
(Palacios et al., 2014)
(Palacios et al., 2014)
(1936-…) propuso un modelo alternativo que diese cuenta de las diferencias de género y, tras su investigación con mujeres y niñas, encontró que, mientras que los varones estaban más interesados por el concepto abstracto de justicia, las mujeres se preocupaban más por las relaciones interpersonales y la responsabilidad a la hora de satisfacer las necesidades de los demás (Palacios et al., 2014) | Authors with year reference | 2023-10-04T08:01:41.000Z |
Matches codes with and without minus (-)
Prevents fake codes like "1234-1234-1234-1234" | (0[0-9]{3}(\-|)[0-9]{4}(\-|)[0-9]{4}(\-|)[0-9]{4}) | 1234-5678-1234-5678
0548-1489-5845-7452
| PaySafeCard (PSC) Code | 2016-08-03T19:11:56.000Z |
Finds missing commas in "For å ..." constructions according to officially ordained grammar-based comma rules. | For å ([a-zA-Z0-9]+ ){1,5}(?:\bom\b|\bat\b)((?!,).)*\.|For å(?:(?!\bom\b|\bat\b).)*?,.*?\. | Find missing or superfluous commas in "For å" constructions. | 2014-12-02T17:01:47.000Z |
|
(\d{4}[-\/]{0,1}\d{2}[-\/]{0,1}\d{2})|(\d{4}[-\/]{0,1}\d{2}[-\/]{0,1}\d{2}\s\d{2}:\d{2}:\d{2}) | time | 2017-06-03T09:14:47.000Z |
||
Reading organization line by line, regex for one line
1: 2, 3,4, 5
| ^\s*(\d+)\s*:\s*(\d+)\s*,\s* | 12: 3, 4,5 | Organization from lines | 2018-01-09T00:45:29.000Z |
rss filter, deluge, ncore
Episodes and Seasons | the.100.S01E\d{1,2}.*720p.*hun.eng.*sln|the.100.S\d{1,2}.*720p.*hun.eng.*sln | The.100.S07.1080p.BluRay.x264-BORDURE
The.100.S07.720p.BluRay.x264-BORDURE
The 100 - S05 - The Complete 5th Season [ 3 BD50 ] 2018 Blu-ray AVC DTS-HD MA5.1 - d69a74
The 100 - S04 - The Complete 4th Season [ 3 BD ] 2017 Blu-ray AVC DTS-HD MA5.1 - d69a74
The 100 - S03 - The Complete 3rd Season [ 4 BD ] 2016 Blu-ray AVC DTS-HD MA5.1 - d69a74
The 100 - S02 - The Complete 2nd Season [ 4 BD ] 2014-2015 Blu-ray AVC DTS-HD MA5.1 - d69a74
The 100 - S01 -The Complete 1st Season [ 3 BD ] 2014 Blu-ray AVC DTS-HD MA5.1 - d69a74
The.100.S06.1080p.BluRay.x264-TURMOiL
The.100.S06.720p.BluRay.x264-MAYHEM
A visszatérők S05 1080p
The.100.S05.COMPLETE.720p.BluRay.HUN.ENG.x264-SLN
A visszatérők S04 1080p
The.100.S04.COMPLETE.720p.BluRay.HUN.ENG.DD5.1.x264-SLN
A visszatérők S03 1080p
The.100.S03.COMPLETE.720p.BluRay.x264.HUN.ENG-SLN
The.100.S04.1080p.BluRay.x264-SHORTBREHD
A visszatérők S02 1080p
The.100.S02.COMPLETE.720p.BluRay.x264.HUN.ENG-SLN
The.100.S02.720p.HDTV.x264-MiXGROUP
The.100.S04.720p.HDTV.x264-MiXGROUP
The.100.S03.1080p.HDTV.x264-DIMENSION
The.100.S01.1080p.BluRay.DTS.x264.Hun-HOONIGAN
The.100.S01.COMPLETE.720p.BluRay.x264.HUN-ENG-SLN
The 100 S01 1080p
The.100.S02.1080p.BluRay.x264-SHORTBREHD
The.100.S02.720p.BluRay.X264-REWARD
Family.Guy.S19E04.HULU.WEB-DL.DDP5.1.H264.Eng.Hun-BNR.1080p
Family.Guy.S19E02.1080p.HULU.WEB-DL.DDP5.1.H264.Eng.Hun-BNR
Family.Guy.S19E03.WEBRip.x264.Hun-BNR
Family.Guy.S19E02.720p.HULU.WEB-DL.DDP5.1.H264.Eng.Hun-BNR
Family.Guy.S19E20.1080p.WEB.H264-CAKES
Deluge-YaRSS2 | the_100_720p_hun-eng_sln | 2021-05-28T12:47:44.000Z |
ERROR: type should be string, got "https:\\/\\/www\\.serrurierparis0\\.com\\/([^ \\n]*)" | https://www.serrurierparis0.com/serrurier-paris-1er.html /serrurier-paris-1er/
https://www.serrurierparis0.com/serrurier-paris-2eme.html /serrurier-paris-2eme/
https://www.serrurierparis0.com/serrurier-paris-3eme.html /serrurier-paris-3eme/
https://www.serrurierparis0.com/serrurier-paris-4eme.html /serrurier-paris-4eme/
https://www.serrurierparis0.com/serrurier-paris-5eme.html /serrurier-paris-5eme/
https://www.serrurierparis0.com/serrurier-paris-6eme.html /serrurier-paris-6eme/
https://www.serrurierparis0.com/serrurier-paris-7eme.html /serrurier-paris-7eme/
https://www.serrurierparis0.com/serrurier-paris-8eme.html /serrurier-paris-8eme/
https://www.serrurierparis0.com/serrurier-paris-9eme.html /serrurier-paris-9eme/
https://www.serrurierparis0.com/serrurier-paris-10eme.html /serrurier-paris-10eme/
https://www.serrurierparis0.com/serrurier-paris-11eme.html /serrurier-paris-11eme/
https://www.serrurierparis0.com/serrurier-paris-12eme.html /serrurier-paris-12eme/
https://www.serrurierparis0.com/serrurier-paris-13eme.html /serrurier-paris-13eme/
https://www.serrurierparis0.com/serrurier-paris-14eme.html /serrurier-paris-14eme/
https://www.serrurierparis0.com/serrurier-paris-15eme.html /serrurier-paris-15eme/
https://www.serrurierparis0.com/serrurier-paris-16eme.html /serrurier-paris-16eme/
https://www.serrurierparis0.com/serrurier-paris-17eme.html /serrurier-paris-17eme/
https://www.serrurierparis0.com/serrurier-paris-18eme.html /serrurier-paris-18eme/
https://www.serrurierparis0.com/serrurier-paris-19eme.html /serrurier-paris-19eme/
https://www.serrurierparis0.com/serrurier-paris-20eme.html /serrurier-paris-20eme/
https://www.serrurierparis0.com/serrurier-antony-92160.html /serrurier-antony-92160/
https://www.serrurierparis0.com/serrurier-bagnolet-93170.html /serrurier-bagnolet-93170/
https://www.serrurierparis0.com/serrurier-bonneuil-sur-marne-94380.html /serrurier-bonneuil-sur-marne-94380/
https://www.serrurierparis0.com/serrurier-chevilly-larue-94550.html /serrurier-chevilly-larue-94550/
https://www.serrurierparis0.com/serrurier-choisy-le-roi-94600.html /serrurier-choisy-le-roi-94600/
https://www.serrurierparis0.com/serrurier-creteil-94000.html /serrurier-creteil-94000/
https://www.serrurierparis0.com/serrurier-drancy-93700.html /serrurier-drancy-93700/
https://www.serrurierparis0.com/serrurier-gennevilliers-92230.html /serrurier-gennevilliers-92230
https://www.serrurierparis0.com/serrurier-ivry-sur-seine-94200.html /serrurier-ivry-sur-seine-94200/
https://www.serrurierparis0.com/serrurier-le-plessis-robinson-92350.html /serrurier-le-plessis-robinson-92350/
https://www.serrurierparis0.com/serrurier-les-lilas-93260.html /serrurier-les-lilas-93260/
https://www.serrurierparis0.com/serrurier-montrouge-92120.html /serrurier-montrouge-92120/
https://www.serrurierparis0.com/serrurier-puteaux-92800.html /serrurier-puteaux-92800/
https://www.serrurierparis0.com/serrurier-romainville-93230.html /serrurier-romainville-93230/
https://www.serrurierparis0.com/serrurier-saint-cloud-92210.html /serrurier-saint-cloud-92210/
https://www.serrurierparis0.com/serrurier-saint-maurice-94410.html /serrurier-saint-maurice-94410/
https://www.serrurierparis0.com/serrurier-sceaux-92330.html /serrurier-sceaux-92330/
https://www.serrurierparis0.com/serrurier-thiais-94320.html /serrurier-thiais-94320/
https://www.serrurierparis0.com/serrurier-villejuif-94800.html /serrurier-villejuif-94800/
https://www.serrurierparis0.com/paris-10-serrurier-rue-de-chabrol.html /serrurier-paris-10eme/
https://www.serrurierparis0.com/paris-10-serrurier-rue-de-la-grange-aux-belles.html /serrurier-paris-10eme/
https://www.serrurierparis0.com/paris-10-serrurier-rue-de-l-aqueduc.html /serrurier-paris-10eme/
https://www.serrurierparis0.com/paris-10-serrurier-rue-des-recollets.html /serrurier-paris-10eme/
https://www.serrurierparis0.com/paris-10-serrurier-rue-d-hauteville.html /serrurier-paris-10eme/
https://www.serrurierparis0.com/paris-10-serrurier-rue-du-faubourg-saint-denis.html /serrurier-paris-10eme/
https://www.serrurierparis0.com/paris-10-serrurier-rue-du-terrage.html /serrurier-paris-10eme/
https://www.serrurierparis0.com/paris-10-serrurier-rue-faubourg-saint-martin.html /serrurier-paris-10eme/
https://www.serrurierparis0.com/paris-10-serrurier-rue-la-fayette.html /serrurier-paris-10eme/
https://www.serrurierparis0.com/paris-10-serrurier-rue-louis-blanc.html /serrurier-paris-10eme/
https://www.serrurierparis0.com/paris-11-rue-de-charonne.html /serrurier-paris-11eme/
https://www.serrurierparis0.com/paris-12-rue-charenton.html /serrurier-paris-12eme/
https://www.serrurierparis0.com/paris-13-serrurier-rue-tolbiac.html /serrurier-paris-13eme/
https://www.serrurierparis0.com/paris-14-serrurier-rue-alesia.html /serrurier-paris-14eme/
https://www.serrurierparis0.com/paris-15-serrurier-rue-de-lourmel.html /serrurier-paris-15eme/
https://www.serrurierparis0.com/paris-15-serrurier-rue-lecourbe.html /serrurier-paris-15eme/
https://www.serrurierparis0.com/serrurier-romainville-rue-jean-jaures-93230.html /serrurier-romainville-93230/
https://www.serrurierparis0.com/serrurier-romainville-rue-veuve-aublet-93230.html /serrurier-romainville-93230/
https://www.serrurierparis0.com/paris-16-serrurier-rue-de-la-pompe.html /serrurier-paris-16eme/
https://www.serrurierparis0.com/paris-17-serrurier-rue-cardinet.html /serrurier-paris-17eme/
https://www.serrurierparis0.com/paris-17-serrurier-rue-legendre.html /serrurier-paris-17eme/
https://www.serrurierparis0.com/paris-18-serrurier-rue-marcadet.html /serrurier-paris-18eme/
https://www.serrurierparis0.com/paris-19-serrurier-rue-de-crimee.html /serrurier-paris-19eme/
https://www.serrurierparis0.com/paris-1-serrurier-rue-de-castiglione.html /serrurier-paris-1er/
https://www.serrurierparis0.com/paris-1-serrurier-rue-de-l-amiral-de-coligny.html /serrurier-paris-1er/
https://www.serrurierparis0.com/paris-1-serrurier-rue-des-halles.html /serrurier-paris-1er/
https://www.serrurierparis0.com/paris-1-serrurier-rue-du-louvre.html /serrurier-paris-1er/
https://www.serrurierparis0.com/paris-1-serrurier-rue-du-pont-neuf.html /serrurier-paris-1er/
https://www.serrurierparis0.com/paris-1-serrurier-rue-montmartre.html /serrurier-paris-1er/
https://www.serrurierparis0.com/paris-1-serrurier-rue-rivoli.html /serrurier-paris-1er/
https://www.serrurierparis0.com/paris-1-serrurier-rue-rohan.html /serrurier-paris-1er/
https://www.serrurierparis0.com/paris-1-serrurier-rue-saint-denis.html /serrurier-paris-1er/
https://www.serrurierparis0.com/paris-1-serrurier-rue-saint-honore.html /serrurier-paris-1er/
https://www.serrurierparis0.com/paris-20-serrurier-rue-des-pyrenees.html /serrurier-paris-20eme/
https://www.serrurierparis0.com/paris-2-serrurier-rue-d-aboukir.html /serrurier-paris-2eme/
https://www.serrurierparis0.com/paris-2-serrurier-rue-de-clery.html /serrurier-paris-2eme/
https://www.serrurierparis0.com/paris-2-serrurier-rue-du-quatre-septembre.html /serrurier-paris-2eme/
https://www.serrurierparis0.com/paris-2-serrurier-rue-du-sentier.html /serrurier-paris-2eme/
https://www.serrurierparis0.com/paris-2-serrurier-rue-d-uzes.html /serrurier-paris-2eme/
https://www.serrurierparis0.com/paris-2-serrurier-rue-leopold-bellan.html /serrurier-paris-2eme/
https://www.serrurierparis0.com/paris-2-serrurier-rue-notre-dame-des-victoires.html /serrurier-paris-2eme/
https://www.serrurierparis0.com/paris-2-serrurier-rue-poissonniere.html /serrurier-paris-2eme/
https://www.serrurierparis0.com/paris-2-serrurier-rue-saint-denis.html /serrurier-paris-2eme/
https://www.serrurierparis0.com/paris-2-serrurier-rue-saint-sauveur.html /serrurier-paris-2eme/
https://www.serrurierparis0.com/paris-3-serrurier-rue-du-vertbois.html /serrurier-paris-3eme/
https://www.serrurierparis0.com/paris-3-serrurier-rue-froissart.html /serrurier-paris-3eme/
https://www.serrurierparis0.com/paris-3-serrurier-rue-saint-martin.html /serrurier-paris-3eme/
https://www.serrurierparis0.com/paris-4-serrurier-rue-de-rivoli.html /serrurier-paris-4eme/
https://www.serrurierparis0.com/paris-4-serrurier-rue-de-turenne.html /serrurier-paris-4eme/
https://www.serrurierparis0.com/paris-4-serrurier-rue-du-temple.html /serrurier-paris-4eme/
https://www.serrurierparis0.com/paris-5-serrurier-rue-saint-jacques.html /serrurier-paris-5eme/
https://www.serrurierparis0.com/paris-6-serrurier-rue-de-rennes.html /serrurier-paris-6eme/
https://www.serrurierparis0.com/paris-7-serrurier-rue-de-l-universite.html /serrurier-paris-7eme/
https://www.serrurierparis0.com/paris-8-serrurier-rue-faubourg-saint-honore.html /serrurier-paris-8eme/
https://www.serrurierparis0.com/paris-9-rue-la-fayette.html /serrurier-paris-9eme/
https://www.serrurierparis0.com/paris-17-serrurier-avenue-de-villiers.html /serrurier-paris-17eme/
https://www.serrurierparis0.com/paris-19-serrurier-avenue-jean-jaures.html /serrurier-paris-19eme/
https://www.serrurierparis0.com/paris-1-serrurier-avenue-du-general-lemonnier.html /serrurier-paris-1er/
https://www.serrurierparis0.com/paris-10-serrurier-boulevard-de-magenta.html /serrurier-paris-10eme/
https://www.serrurierparis0.com/ouverture-porte-paris.html /ouverture-de-porte/
https://www.serrurierparis0.com/ouverture-de-porte-paris-1.html /ouverture-de-porte-paris-1/
https://www.serrurierparis0.com/ouverture-de-porte-paris-10.html /ouverture-de-porte-paris-10/
https://www.serrurierparis0.com/ouverture-de-porte-paris-11.html /ouverture-de-porte-paris-11/
https://www.serrurierparis0.com/ouverture-de-porte-paris-12.html /ouverture-de-porte-paris-12/
https://www.serrurierparis0.com/ouverture-de-porte-paris-13.html /ouverture-de-porte-paris-13/
https://www.serrurierparis0.com/ouverture-de-porte-paris-14.html /ouverture-de-porte-paris-14/
https://www.serrurierparis0.com/ouverture-de-porte-paris-15.html /ouverture-de-porte-paris-15/
https://www.serrurierparis0.com/ouverture-de-porte-paris-16.html /ouverture-de-porte-paris-16/
https://www.serrurierparis0.com/ouverture-de-porte-paris-17.html /ouverture-de-porte-paris-17/
https://www.serrurierparis0.com/ouverture-de-porte-paris-18.html /ouverture-de-porte-paris-18/
https://www.serrurierparis0.com/ouverture-de-porte-paris-19.html /ouverture-de-porte-paris-19/
https://www.serrurierparis0.com/ouverture-de-porte-paris-2.html /ouverture-de-porte-paris-2/
https://www.serrurierparis0.com/ouverture-de-porte-paris-20.html /ouverture-de-porte-paris-20/
https://www.serrurierparis0.com/ouverture-de-porte-paris-3.html /ouverture-de-porte-paris-3/
https://www.serrurierparis0.com/ouverture-de-porte-paris-4.html /ouverture-de-porte-paris-4/
https://www.serrurierparis0.com/ouverture-de-porte-paris-5.html /ouverture-de-porte-paris-5/
https://www.serrurierparis0.com/ouverture-de-porte-paris-6.html /ouverture-de-porte-paris-6/
https://www.serrurierparis0.com/ouverture-de-porte-paris-7.html /ouverture-de-porte-paris-7/
https://www.serrurierparis0.com/ouverture-de-porte-paris-8.html /ouverture-de-porte-paris-8/
https://www.serrurierparis0.com/ouverture-de-porte-paris-9.html /ouverture-de-porte-paris-9/
https://www.serrurierparis0.com/paris-10-depannage-volet-roulant.html /reparation-volet-roulant/
https://www.serrurierparis0.com/paris-1-depannage-volet-roulant.html /reparation-volet-roulant/
https://www.serrurierparis0.com/paris-2-depannage-volet-roulant.html /reparation-volet-roulant/
https://www.serrurierparis0.com/faq.html /faq/
https://www.serrurierparis0.com/faq-percer-une-serrure.html /faq/comment-percer-une-serrure/
https://www.serrurierparis0.com/faq-comment-decaper-une-serrure-rouillee-sans-la-demonter.html /faq/comment-decaper-une-serrure-rouillee-sans-la-demonter/
https://www.serrurierparis0.com/faq-ameliorer-l-isolation-de-votre-porte-d-entree.html /faq/comment-ameliorer-lisolation-de-votre-porte-dentree/
https://www.serrurierparis0.com/faq-comment-remplacer-une-serrure.html /faq/comment-remplacer-une-serrure/
https://www.serrurierparis0.com/faq-installer-un-judas.html /faq/comment-installer-un-juda/
https://www.serrurierparis0.com/faq-decaper-une-porte.html /faq/comment-decaper-une-porte/
https://www.serrurierparis0.com/faq-comment-entretenir-une-serrure.html /faq/comment-entretenir-une-serrure/
https://www.serrurierparis0.com/faq-comment-changer-un-cylindre-de-serrure.html /faq/comment-changer-un-cylindre-de-serrure/
https://www.serrurierparis0.com/faq-poser-un-verrou-de-baie-coulissante.html /faq/comment-poser-un-verrou-de-baie-coulissante/
https://www.serrurierparis0.com/faq-que-faire-en-cas-de-cle-cassee-dans-la-serrure.html /faq/que-faire-en-cas-de-cle-cassee-dans-la-serrure/
https://www.serrurierparis0.com/faq-quoi-faire-quand-la-serrure-est-bloquee.html /faq/quoi-faire-quand-la-serrure-est-bloquee/
https://www.serrurierparis0.com/faq-poser-une-serrure-3-points.html /faq/comment-poser-une-serrure-3-points/
https://www.serrurierparis0.com/faq-que-faire-en-cas-de-cambriolage.html /faq/que-faire-en-cas-de-cambriolage/
https://www.serrurierparis0.com/faq-retirer-les-gonds-d-une-porte.html /faq/comment-retirer-les-gonds-d-une-porte/
https://www.serrurierparis0.com/faq-installer-une-porte-d-entree.html /faq/comment-installer-une-porte-d-entree/
https://www.serrurierparis0.com/faq-changer-le-sens-d-ouverture-d-une-porte.html /faq/comment-changer-le-sens-d-ouverture-d-une-porte/
https://www.serrurierparis0.com/faq-comment-degivrer-une-serrure-gelee.html /faq/comment-degivrer-une-serrure-gelee/
https://www.serrurierparis0.com/faq-comment-ouvrir-une-porte-claquee.html /faq/comment-ouvrir-une-porte-claquee/
https://www.serrurierparis0.com/faq-poser-un-verrou.html /faq/comment-poser-un-verrou/
https://www.serrurierparis0.com/faq-demonter-une-poignee-de-porte.html /faq/comment-demonter-une-poignee-de-porte/
https://www.serrurierparis0.com/en/ /en/
https://www.serrurierparis0.com/en.html /en/
https://www.serrurierparis0.com/it/ /
https://www.serrurierparis0.com/it.html /
https://www.serrurierparis0.com/ru/ /
https://www.serrurierparis0.com/ru.html /
https://www.serrurierparis0.com/mentions-legales.html /mentions-legales/
https://www.serrurierparis0.com/it/mentions-legales.html /it/mentions-legales/
https://www.serrurierparis0.com/en/mentions-legales.html /en/mentions-legales/
https://www.serrurierparis0.com/ru/mentions-legales.html /ru/mentions-legales/
https://www.serrurierparis0.com/tarifs.html /tarifs/
https://www.serrurierparis0.com/trouver-un-serrurier.html / | Redirections 301 | 2018-11-27T12:03:35.000Z |
|
((?:Jan(?:uary)?|Feb(?:ruary)?|Mar(?:ch)?|Apr(?:il)?|May|Jun(?:e)?|Jul(?:y)?|Aug(?:ust)?|Sep(?:tember)?|Oct(?:ober)?|(Nov|Dec)(?:ember)?)(\s)([1,2][\d]|[1-9]|30|31)(\s))?(\b[\d]|10|11|12):[0-5][0-9]\s(AM|PM) | March 9 12:31 AM and March 10 7:30 AM
March 11 7:30 AM and March 12 10:30 AM
Mar 31 9:00 PM and Apr 1 12:39 AM
March 31 10:11 PM and April 1 5:23 AM
7:45 PM and 10:30 PM
May 3 4:41 PM PDT and May 4 12:19 AM PDT
March 31 10:71 PM and April 1 5:23 AM
27:45 PM and 10:80 PM
May 3 4:41 PM PDT and May 41 12:19 AM PDT | date validation | 2018-05-06T22:52:52.000Z |
|
The following regex validates international mobile numbers | ^((?:[1-9][0-9 ().-]{5,28}[0-9])|(?:(00|0)( ){0,1}[1-9][0-9 ().-]{3,26}[0-9])|(?:(\+)( ){0,1}[1-9][0-9 ().-]{4,27}[0-9]))$ | 076 444 22 22
+ 91 45 232 45 45
00 41 12 125 1245
+1 (914) 579 45 45
914-548-2356
| Mobile Number Regex | 2021-07-14T10:58:44.000Z |
Finds email addresses even when cleverly obfuscated in both english and hungarian | [\w-\.]{1,64}((\[|\()?@(\]|\))?|(\[|\()?at(\]|\))?|(\[|\()?kukac(\]|\))?)[\w-]{1,64}((\[|\()?\.(\]|\))?|(\[|\()?dot(\]|\))?|(\[|\()?pont(\]|\))?)[a-zA-Z]{2,3} | English-Hungarian (non-/)obfuscated email adresses | 2015-09-16T20:41:57.000Z |
|
This regex remove \n like litteral string not a newline | (?:\\n)+ | [u'Pr\xe9sentation du site Patrimoine pierre s\xe8che : portail sur la pierre s\xe8che : \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n | Remove litteral \n | 2014-07-07T11:40:55.000Z |
Match french telephones numbers. Allows space, dot and dash between pairs of numbers. | ^0\d(?:[ .-]?\d{2}){4}$ | 0145391617 | French telephone number | 2015-06-15T11:53:33.000Z |
This regex escapes the 4 main signs of operations, -*/+. Good for calculating | [^\+\-\*\/] | +-*/ cis | Matches operator (+-*/) | 2016-07-19T21:40:07.000Z |
search file extention | (\.[^.]*)$ | kokor.sans.giF
kokor_.Png
sans.jpg
| search file extention | 2015-04-29T09:18:50.000Z |
special=[a-zA-Z0-9]{2,} | https://site.com/page/offer?special=523&go=1
https://site.com/666/redirect/error.html?special=ok
https://site.com/rd/page/error.html?special
https://site.com/redirect/pages/error?special=1
https://site.com/special/12/error?go=ok | Zad 6 | 2018-01-30T09:15:42.000Z |
|
Parse ALT field (alternative allele) in VCF 4.2 format | ^[acgtnACGTN]+$|^\*?$|^<(INS|DEL|DUP|INV|CNV|DUP:TANDEM|INS:NOVEL|INS:ME(:ALU)?|DEL:ME(:ALU)?)>$ | Parse alternative allele in VCF 4.2 | 2018-07-02T13:49:51.000Z |
|
M(\d{1,3})[-_]\d{1,3}(CCU?|) | DOA000005_S16_M1-180.TAB
DOA000005_S16_M1-60.TAB
DOA000005_S16_M10-180.TAB
DOA000005_S16_M10-180CCU.TAB
DOA000005_S16_M10-60.TAB
DOA000005_S16_M10-60CCU.TAB
DOA000005_S16_M100-180.TAB
DOA000005_S16_M100-60.TAB
DOA000005_S16_M2-180.TAB
DOA000005_S16_M2-60.TAB
DOA000005_S16_M200-180.TAB
DOA000005_S16_M200-180CCU.TAB
DOA000005_S16_M200-60.TAB
DOA000005_S16_M200-60CCU.TAB
DOA000005_S16_M30-180.TAB
DOA000005_S16_M30-180CCU.TAB
DOA000005_S16_M30-60.TAB
DOA000005_S16_M30-60CCU.TAB
DOA000005_S16_M5-180.TAB
DOA000005_S16_M5-60.TAB
DOA000005_S16_M50-180.TAB
DOA000005_S16_M50-60.TAB
DOA000017_S16_M001_060.TAB
DOA000017_S16_M001_180.TAB
DOA000017_S16_M002_060.TAB
DOA000017_S16_M002_180.TAB
DOA000017_S16_M005_060.TAB
DOA000017_S16_M005_180.TAB
DOA000017_S16_M010_060.TAB
DOA000017_S16_M010_060CCU.TAB
DOA000017_S16_M010_180.TAB
DOA000017_S16_M010_180CCU.TAB
DOA000017_S16_M030_060.TAB
DOA000017_S16_M030_060CCU.TAB
DOA000017_S16_M030_180.TAB
DOA000017_S16_M030_180CCU.TAB
DOA000017_S16_M050_060.TAB
DOA000017_S16_M050_180.TAB
DOA000017_S16_M100_060.TAB
DOA000017_S16_M100_180.TAB
DOA000017_S16_M200_060.TAB
DOA000017_S16_M200_060CCU.TAB
DOA000017_S16_M200_180.TAB
DOA000017_S16_M200_180CCU.TAB
DOA000070_S16_M1-180.TAB
DOA000070_S16_M1-60.TAB
DOA000070_S16_M10-180.TAB
DOA000070_S16_M10-180CCU.TAB
DOA000070_S16_M10-60.TAB
DOA000070_S16_M10-60CCU.TAB
DOA000070_S16_M100-180.TAB
DOA000070_S16_M100-60.TAB
DOA000070_S16_M2-180.TAB
DOA000070_S16_M2-60.TAB
DOA000070_S16_M200-180.TAB
DOA000070_S16_M200-180CCU.TAB
DOA000070_S16_M200-60.TAB
DOA000070_S16_M200-60CCU.TAB
DOA000070_S16_M30-180.TAB
DOA000070_S16_M30-180CCU.TAB
DOA000070_S16_M30-60.TAB
DOA000070_S16_M30-60CCU.TAB
DOA000070_S16_M5-180.TAB
DOA000070_S16_M5-60.TAB
DOA000070_S16_M50-180.TAB
DOA000070_S16_M50-60.TAB
DOA000097_S16_M1-180.TAB
DOA000097_S16_M1-60.TAB
DOA000097_S16_M10-180.TAB
DOA000097_S16_M10-180CCU.TAB
DOA000097_S16_M10-60.TAB
DOA000097_S16_M10-60CCU.TAB
DOA000097_S16_M100-180.TAB
DOA000097_S16_M100-60.TAB
DOA000097_S16_M2-180.TAB
DOA000097_S16_M2-60.TAB
DOA000097_S16_M200-180.TAB
DOA000097_S16_M200-180CCU.TAB
DOA000097_S16_M200-60.TAB
DOA000097_S16_M200-60CCU.TAB
DOA000097_S16_M30-180.TAB
DOA000097_S16_M30-180CCU.TAB
DOA000097_S16_M30-60.TAB
DOA000097_S16_M30-60CCU.TAB
DOA000097_S16_M5-180.TAB
DOA000097_S16_M5-60.TAB
DOA000097_S16_M50-180.TAB
DOA000097_S16_M50-60.TAB
DOA000112_S16_M001_060.TAB
DOA000112_S16_M001_180.TAB
DOA000112_S16_M002_060.TAB
DOA000112_S16_M002_180.TAB
DOA000112_S16_M005_060.TAB
DOA000112_S16_M005_180.TAB
DOA000112_S16_M010_060.TAB
DOA000112_S16_M010_060CCU.TAB
DOA000112_S16_M010_180.TAB
DOA000112_S16_M010_180CCU.TAB
DOA000112_S16_M030_060.TAB
DOA000112_S16_M030_060CCU.TAB
DOA000112_S16_M030_180.TAB
DOA000112_S16_M030_180CCU.TAB
DOA000112_S16_M050_060.TAB
DOA000112_S16_M050_180.TAB
DOA000112_S16_M100_060.TAB
DOA000112_S16_M100_180.TAB
DOA000112_S16_M200_060.TAB
DOA000112_S16_M200_060CCU.TAB
DOA000112_S16_M200_180.TAB
DOA000112_S16_M200_180CCU.TAB
DOA000134_S16_M1-180.TAB
DOA000134_S16_M1-60.TAB
DOA000134_S16_M10-180.TAB
DOA000134_S16_M10-180CCU.TAB
DOA000134_S16_M10-60.TAB
DOA000134_S16_M10-60CCU.TAB
DOA000134_S16_M100-180.TAB
DOA000134_S16_M100-60.TAB
DOA000134_S16_M2-180.TAB
DOA000134_S16_M2-60.TAB
DOA000134_S16_M200-180.TAB
DOA000134_S16_M200-180CCU.TAB
DOA000134_S16_M200-60.TAB
DOA000134_S16_M200-60CCU.TAB
DOA000134_S16_M30-180.TAB
DOA000134_S16_M30-180CCU.TAB
DOA000134_S16_M30-60.TAB
DOA000134_S16_M30-60CCU.TAB
DOA000134_S16_M5-180.TAB
DOA000134_S16_M5-60.TAB
DOA000134_S16_M50-180.TAB
DOA000134_S16_M50-60.TAB
DOA000146_S16_M1-180.TAB
DOA000146_S16_M1-60.TAB
DOA000146_S16_M10-180.TAB
DOA000146_S16_M10-180CCU.TAB
DOA000146_S16_M10-60.TAB
DOA000146_S16_M10-60CCU.TAB
DOA000146_S16_M100-180.TAB
DOA000146_S16_M100-60.TAB
DOA000146_S16_M2-180.TAB
DOA000146_S16_M2-60.TAB
DOA000146_S16_M200-180.TAB
DOA000146_S16_M200-180CCU.TAB
DOA000146_S16_M200-60.TAB
DOA000146_S16_M200-60CCU.TAB
DOA000146_S16_M30-180.TAB
DOA000146_S16_M30-180CCU.TAB
DOA000146_S16_M30-60.TAB
DOA000146_S16_M30-60CCU.TAB
DOA000146_S16_M5-180.TAB
DOA000146_S16_M5-60.TAB
DOA000146_S16_M50-180.TAB
DOA000146_S16_M50-60.TAB
DOA000148_S16_M1-180.TAB
DOA000148_S16_M1-60.TAB
DOA000148_S16_M10-180.TAB
DOA000148_S16_M10-180CCU.TAB
DOA000148_S16_M10-60.TAB
DOA000148_S16_M10-60CCU.TAB
DOA000148_S16_M100-180.TAB
DOA000148_S16_M100-60.TAB
DOA000148_S16_M2-180.TAB
DOA000148_S16_M2-60.TAB
DOA000148_S16_M200-180.TAB
DOA000148_S16_M200-180CCU.TAB
DOA000148_S16_M200-60.TAB
DOA000148_S16_M200-60CCU.TAB
DOA000148_S16_M30-180.TAB
DOA000148_S16_M30-180CCU.TAB
DOA000148_S16_M30-60.TAB
DOA000148_S16_M30-60CCU.TAB
DOA000148_S16_M5-180.TAB
DOA000148_S16_M5-60.TAB
DOA000148_S16_M50-180.TAB
DOA000148_S16_M50-60.TAB
DOA000231_S16_M1-180.tab
DOA000231_S16_M1-60.tab
DOA000231_S16_M10-180.tab
DOA000231_S16_M10-180CCU.tab
DOA000231_S16_M10-60.tab
DOA000231_S16_M10-60CCU.tab
DOA000231_S16_M100-180.tab
DOA000231_S16_M100-60.tab
DOA000231_S16_M2-180.tab
DOA000231_S16_M2-60.tab
DOA000231_S16_M200-180.tab
DOA000231_S16_M200-180CCU.tab
DOA000231_S16_M200-60.tab
DOA000231_S16_M200-60CCU.tab
DOA000231_S16_M30-180.tab
DOA000231_S16_M30-180CCU.tab
DOA000231_S16_M30-60.tab
DOA000231_S16_M30-60CCU.tab
DOA000231_S16_M5-180.tab
DOA000231_S16_M5-60.tab
DOA000231_S16_M50-180.tab
DOA000231_S16_M50-60.tab
DOA000232_S16_M100_180_2D_Mesh.TAB
DOA000232_S16_M100_60_2D_Mesh.TAB
DOA000232_S16_M10_180CCU_2D_Mesh.TAB
DOA000232_S16_M10_180_2D_Mesh.TAB
DOA000232_S16_M10_60CCU_2D_Mesh.TAB
DOA000232_S16_M10_60_2D_Mesh.TAB
DOA000232_S16_M1_180_2D_Mesh.TAB
DOA000232_S16_M1_60_2D_Mesh.TAB
DOA000232_S16_M200_180CCU_2D_Mesh.TAB
DOA000232_S16_M200_180_2D_Mesh.TAB
DOA000232_S16_M200_60CCU_2D_Mesh.TAB
DOA000232_S16_M200_60_2D_Mesh.TAB
DOA000232_S16_M2_180_2D_Mesh.TAB
DOA000232_S16_M2_60_2D_Mesh.TAB
DOA000232_S16_M30_180CCU_2D_Mesh.TAB
DOA000232_S16_M30_180_2D_Mesh.TAB
DOA000232_S16_M30_60CCU_2D_Mesh.TAB
DOA000232_S16_M30_60_2D_Mesh.TAB
DOA000232_S16_M50_180_2D_Mesh.TAB
DOA000232_S16_M50_60_2D_Mesh.TAB
DOA000232_S16_M5_180_2D_Mesh.TAB
DOA000232_S16_M5_60_2D_Mesh.TAB
DOA000247_S16_M1-180.TAB
DOA000247_S16_M1-60.TAB
DOA000247_S16_M10-180.TAB
DOA000247_S16_M10-180CCU.TAB
DOA000247_S16_M10-60.TAB
DOA000247_S16_M10-60CCU.TAB
DOA000247_S16_M100-180.TAB
DOA000247_S16_M100-60.TAB
DOA000247_S16_M2-180.TAB
DOA000247_S16_M2-60.TAB
DOA000247_S16_M200-180.TAB
DOA000247_S16_M200-180CCU.TAB
DOA000247_S16_M200-60.TAB
DOA000247_S16_M200-60CCU.TAB
DOA000247_S16_M30-180.TAB
DOA000247_S16_M30-180CCU.TAB
DOA000247_S16_M30-60.TAB
DOA000247_S16_M30-60CCU.TAB
DOA000247_S16_M5-180.TAB
DOA000247_S16_M5-60.TAB
DOA000247_S16_M50-180.TAB
DOA000247_S16_M50-60.TAB
DOA000260_S16_M1-180.TAB
DOA000260_S16_M1-60.TAB
DOA000260_S16_M10-180.TAB
DOA000260_S16_M10-180CCU.TAB
DOA000260_S16_M10-60.TAB
DOA000260_S16_M10-60CCU.TAB
DOA000260_S16_M100-180.TAB
DOA000260_S16_M100-60.TAB
DOA000260_S16_M2-180.TAB
DOA000260_S16_M2-60.TAB
DOA000260_S16_M200-180.TAB
DOA000260_S16_M200-180CCU.TAB
DOA000260_S16_M200-60.TAB
DOA000260_S16_M200-60CCU.TAB
DOA000260_S16_M30-180.TAB
DOA000260_S16_M30-180CCU.TAB
DOA000260_S16_M30-60.TAB
DOA000260_S16_M30-60CCU.TAB
DOA000260_S16_M5-180.TAB
DOA000260_S16_M5-60.TAB
DOA000260_S16_M50-180.TAB
DOA000260_S16_M50-60.TAB
DOA000269_S16_M1-180.TAB
DOA000269_S16_M1-60.TAB
DOA000269_S16_M10-180.TAB
DOA000269_S16_M10-180CCU.TAB
DOA000269_S16_M10-60.TAB
DOA000269_S16_M10-60CCU.TAB
DOA000269_S16_M100-180.TAB
DOA000269_S16_M100-60.TAB
DOA000269_S16_M2-180.TAB
DOA000269_S16_M2-60.TAB
DOA000269_S16_M200-180.TAB
DOA000269_S16_M200-180CCU.TAB
DOA000269_S16_M200-60.TAB
DOA000269_S16_M200-60CCU.TAB
DOA000269_S16_M30-180.TAB
DOA000269_S16_M30-180CCU.TAB
DOA000269_S16_M30-60.TAB
DOA000269_S16_M30-60CCU.TAB
DOA000269_S16_M5-180.TAB
DOA000269_S16_M5-60.TAB
DOA000269_S16_M50-180.TAB
DOA000269_S16_M50-60.TAB
DOA000275_S16_M1-180.TAB
DOA000275_S16_M1-60.TAB
DOA000275_S16_M10-180.TAB
DOA000275_S16_M10-180CCU.TAB
DOA000275_S16_M10-60.TAB
DOA000275_S16_M10-60CCU.TAB
DOA000275_S16_M100-180.TAB
DOA000275_S16_M100-60.TAB
DOA000275_S16_M2-180.TAB
DOA000275_S16_M2-60.TAB
DOA000275_S16_M200-180.TAB
DOA000275_S16_M200-180CCU.TAB
DOA000275_S16_M200-60.TAB
DOA000275_S16_M200-60CCU.TAB
DOA000275_S16_M30-180.TAB
DOA000275_S16_M30-180CCU.TAB
DOA000275_S16_M30-60.TAB
DOA000275_S16_M30-60CCU.TAB
DOA000275_S16_M5-180.TAB
DOA000275_S16_M5-60.TAB
DOA000275_S16_M50-180.TAB
DOA000275_S16_M50-60.TAB
DOA000276_S16_M1-180.TAB
DOA000276_S16_M1-60.TAB
DOA000276_S16_M10-180.TAB
DOA000276_S16_M10-180CCU.TAB
DOA000276_S16_M10-60.TAB
DOA000276_S16_M10-60CCU.TAB
DOA000276_S16_M100-180.TAB
DOA000276_S16_M100-60.TAB
DOA000276_S16_M2-180.TAB
DOA000276_S16_M2-60.TAB
DOA000276_S16_M200-180.TAB
DOA000276_S16_M200-180CCU.TAB
DOA000276_S16_M200-60.TAB
DOA000276_S16_M200-60CCU.TAB
DOA000276_S16_M30-180.TAB
DOA000276_S16_M30-180CCU.TAB
DOA000276_S16_M30-60.TAB
DOA000276_S16_M30-60CCU.TAB
DOA000276_S16_M5-180.TAB
DOA000276_S16_M5-60.TAB
DOA000276_S16_M50-180.TAB
DOA000276_S16_M50-60.TAB
DOA000281_S16_M100_180_2D_Mesh.TAB
DOA000281_S16_M100_60_2D_Mesh.TAB
DOA000281_S16_M10_180CCU_2D_Mesh.TAB
DOA000281_S16_M10_180_2D_Mesh.TAB
DOA000281_S16_M10_60CCU_2D_Mesh.TAB
DOA000281_S16_M10_60_2D_Mesh.TAB
DOA000281_S16_M1_180_2D_Mesh.TAB
DOA000281_S16_M1_60_2D_Mesh.TAB
DOA000281_S16_M200_180CCU_2D_Mesh.TAB
DOA000281_S16_M200_180_2D_Mesh.TAB
DOA000281_S16_M200_60CCU_2D_Mesh.TAB
DOA000281_S16_M200_60_2D_Mesh.TAB
DOA000281_S16_M2_180_2D_Mesh.TAB
DOA000281_S16_M2_60_2D_Mesh.TAB
DOA000281_S16_M30_180CCU_2D_Mesh.TAB
DOA000281_S16_M30_180_2D_Mesh.TAB
DOA000281_S16_M30_60CCU_2D_Mesh.TAB
DOA000281_S16_M30_60_2D_Mesh.TAB
DOA000281_S16_M50_180_2D_Mesh.TAB
DOA000281_S16_M50_60_2D_Mesh.TAB
DOA000281_S16_M5_180_2D_Mesh.TAB
DOA000281_S16_M5_60_2D_Mesh.TAB
DOA000284_S16_M1-180.TAB
DOA000284_S16_M1-60.TAB
DOA000284_S16_M10-180.TAB
DOA000284_S16_M10-180CCU.TAB
DOA000284_S16_M10-60.TAB
DOA000284_S16_M10-60CCU.TAB
DOA000284_S16_M100-180.TAB
DOA000284_S16_M100-60.TAB
DOA000284_S16_M2-180.TAB
DOA000284_S16_M2-60.TAB
DOA000284_S16_M200-180.TAB
DOA000284_S16_M200-180CCU.TAB
DOA000284_S16_M200-60.TAB
DOA000284_S16_M200-60CCU.TAB
DOA000284_S16_M30-180.TAB
DOA000284_S16_M30-180CCU.TAB
DOA000284_S16_M30-60.TAB
DOA000284_S16_M30-60CCU.TAB
DOA000284_S16_M5-180.TAB
DOA000284_S16_M5-60.TAB
DOA000284_S16_M50-180.TAB
DOA000284_S16_M50-60.TAB
DOA000287_S16_M1-180.TAB
DOA000287_S16_M1-60.TAB
DOA000287_S16_M10-180.TAB
DOA000287_S16_M10-180CCU.TAB
DOA000287_S16_M10-60.TAB
DOA000287_S16_M10-60CCU.TAB
DOA000287_S16_M100-180.TAB
DOA000287_S16_M100-60.TAB
DOA000287_S16_M2-180.TAB
DOA000287_S16_M2-60.TAB
DOA000287_S16_M200-180.TAB
DOA000287_S16_M200-180CCU.TAB
DOA000287_S16_M200-60.TAB
DOA000287_S16_M200-60CCU.TAB
DOA000287_S16_M30-180.TAB
DOA000287_S16_M30-180CCU.TAB
DOA000287_S16_M30-60.TAB
DOA000287_S16_M30-60CCU.TAB
DOA000287_S16_M5-180.TAB
DOA000287_S16_M5-60.TAB
DOA000287_S16_M50-180.TAB
DOA000287_S16_M50-60.TAB
DOA000292_S16_M1-180.TAB
DOA000292_S16_M1-60.TAB
DOA000292_S16_M10-180.TAB
DOA000292_S16_M10-180CCU.TAB
DOA000292_S16_M10-60.TAB
DOA000292_S16_M10-60CCU.TAB
DOA000292_S16_M100-180.TAB
DOA000292_S16_M100-60.TAB
DOA000292_S16_M2-180.TAB
DOA000292_S16_M2-60.TAB
DOA000292_S16_M200-180.TAB
DOA000292_S16_M200-180CCU.TAB
DOA000292_S16_M200-60.TAB
DOA000292_S16_M200-60CCU.TAB
DOA000292_S16_M30-180.TAB
DOA000292_S16_M30-180CCU.TAB
DOA000292_S16_M30-60.TAB
DOA000292_S16_M30-60CCU.TAB
DOA000292_S16_M5-180.TAB
DOA000292_S16_M5-60.TAB
DOA000292_S16_M50-180.TAB
DOA000292_S16_M50-60.TAB
DOA000301_S16_M1-180.TAB
DOA000301_S16_M1-60.TAB
DOA000301_S16_M10-180.TAB
DOA000301_S16_M10-180CCU.TAB
DOA000301_S16_M10-60.TAB
DOA000301_S16_M10-60CCU.TAB
DOA000301_S16_M100-180.TAB
DOA000301_S16_M100-60.TAB
DOA000301_S16_M2-180.TAB
DOA000301_S16_M2-60.TAB
DOA000301_S16_M200-180.TAB
DOA000301_S16_M200-180CCU.TAB
DOA000301_S16_M200-60.TAB
DOA000301_S16_M200-60CCU.TAB
DOA000301_S16_M30-180.TAB
DOA000301_S16_M30-180CCU.TAB
DOA000301_S16_M30-60.TAB
DOA000301_S16_M30-60CCU.TAB
DOA000301_S16_M5-180.TAB
DOA000301_S16_M5-60.TAB
DOA000301_S16_M50-180.TAB
DOA000301_S16_M50-60.TAB
DOA000322_S16_M1-180.TAB
DOA000322_S16_M1-60.TAB
DOA000322_S16_M10-180.TAB
DOA000322_S16_M10-180CCU.TAB
DOA000322_S16_M10-60.TAB
DOA000322_S16_M10-60CCU.TAB
DOA000322_S16_M100-180.TAB
DOA000322_S16_M100-60.TAB
DOA000322_S16_M2-180.TAB
DOA000322_S16_M2-60.TAB
DOA000322_S16_M200-180.TAB
DOA000322_S16_M200-180CCU.TAB
DOA000322_S16_M200-60.TAB
DOA000322_S16_M200-60CCU.TAB
DOA000322_S16_M30-180.TAB
DOA000322_S16_M30-180CCU.TAB
DOA000322_S16_M30-60.TAB
DOA000322_S16_M30-60CCU.TAB
DOA000322_S16_M5-180.TAB
DOA000322_S16_M5-60.TAB
DOA000322_S16_M50-180.TAB
DOA000322_S16_M50-60.TAB
DOA000327_S16_M1-180.TAB
DOA000327_S16_M1-60.TAB
DOA000327_S16_M10-180.TAB
DOA000327_S16_M10-180CCU.TAB
DOA000327_S16_M10-60.TAB
DOA000327_S16_M10-60CCU.TAB
DOA000327_S16_M100-180.TAB
DOA000327_S16_M100-60.TAB
DOA000327_S16_M2-180.TAB
DOA000327_S16_M2-60.TAB
DOA000327_S16_M200-180.TAB
DOA000327_S16_M200-180CCU.TAB
DOA000327_S16_M200-60.TAB
DOA000327_S16_M200-60CCU.TAB
DOA000327_S16_M30-180.TAB
DOA000327_S16_M30-180CCU.TAB
DOA000327_S16_M30-60.TAB
DOA000327_S16_M30-60CCU.TAB
DOA000327_S16_M5-180.TAB
DOA000327_S16_M5-60.TAB
DOA000327_S16_M50-180.TAB
DOA000327_S16_M50-60.TAB
DOA000333_S16_M1-180.tab
DOA000333_S16_M1-60.tab
DOA000333_S16_M10-180.tab
DOA000333_S16_M10-180CCU.tab
DOA000333_S16_M10-60.tab
DOA000333_S16_M10-60CCU.tab
DOA000333_S16_M100-180.tab
DOA000333_S16_M100-60.tab
DOA000333_S16_M2-180.tab
DOA000333_S16_M2-60.tab
DOA000333_S16_M200-180.tab
DOA000333_S16_M200-180CCU.tab
DOA000333_S16_M200-60.tab
DOA000333_S16_M200-60CCU.tab
DOA000333_S16_M30-180.tab
DOA000333_S16_M30-180CCU.tab
DOA000333_S16_M30-60.tab
DOA000333_S16_M30-60CCU.tab
DOA000333_S16_M5-180.tab
DOA000333_S16_M5-60.tab
DOA000333_S16_M50-180.tab
DOA000333_S16_M50-60.tab
DOA000345_S16_M1-180.TAB
DOA000345_S16_M1-60.TAB
DOA000345_S16_M10-180.TAB
DOA000345_S16_M10-180CCU.TAB
DOA000345_S16_M10-60.TAB
DOA000345_S16_M10-60CCU.TAB
DOA000345_S16_M100-180.TAB
DOA000345_S16_M100-60.TAB
DOA000345_S16_M2-180.TAB
DOA000345_S16_M2-60.TAB
DOA000345_S16_M200-180.TAB
DOA000345_S16_M200-180CCU.TAB
DOA000345_S16_M200-60.TAB
DOA000345_S16_M200-60CCU.TAB
DOA000345_S16_M30-180.TAB
DOA000345_S16_M30-180CCU.TAB
DOA000345_S16_M30-60.TAB
DOA000345_S16_M30-60CCU.TAB
DOA000345_S16_M5-180.TAB
DOA000345_S16_M5-60.TAB
DOA000345_S16_M50-180.TAB
DOA000345_S16_M50-60.TAB
DOA000356_S16_M1-180.TAB
DOA000356_S16_M1-60.TAB
DOA000356_S16_M10-180.TAB
DOA000356_S16_M10-180CCU.TAB
DOA000356_S16_M10-60.TAB
DOA000356_S16_M10-60CCU.TAB
DOA000356_S16_M100-180.TAB
DOA000356_S16_M100-60.TAB
DOA000356_S16_M2-180.TAB
DOA000356_S16_M2-60.TAB
DOA000356_S16_M200-180.TAB
DOA000356_S16_M200-180CCU.TAB
DOA000356_S16_M200-60.TAB
DOA000356_S16_M200-60CCU.TAB
DOA000356_S16_M30-180.TAB
DOA000356_S16_M30-180CCU.TAB
DOA000356_S16_M30-60.TAB
DOA000356_S16_M30-60CCU.TAB
DOA000356_S16_M5-180.TAB
DOA000356_S16_M5-60.TAB
DOA000356_S16_M50-180.TAB
DOA000356_S16_M50-60.TAB
DOA000360_S16_M1-180.tab
DOA000360_S16_M1-60.tab
DOA000360_S16_M10-180.tab
DOA000360_S16_M10-180CCU.tab
DOA000360_S16_M10-60.tab
DOA000360_S16_M10-60CCU.tab
DOA000360_S16_M100-180.tab
DOA000360_S16_M100-60.tab
DOA000360_S16_M2-180.tab
DOA000360_S16_M2-60.tab
DOA000360_S16_M200-180.tab
DOA000360_S16_M200-180CCU.tab
DOA000360_S16_M200-60.tab
DOA000360_S16_M200-60CCU.tab
DOA000360_S16_M30-180.tab
DOA000360_S16_M30-180CCU.tab
DOA000360_S16_M30-60.tab
DOA000360_S16_M30-60CCU.tab
DOA000360_S16_M5-180.tab
DOA000360_S16_M5-60.tab
DOA000360_S16_M50-180.tab
DOA000360_S16_M50-60.tab
DOA000397_S16_M1-180s.TAB
DOA000397_S16_M1-60s.TAB
DOA000397_S16_M10-180CCUs.TAB
DOA000397_S16_M10-180s.TAB
DOA000397_S16_M10-60CCUs.TAB
DOA000397_S16_M10-60s.TAB
DOA000397_S16_M100-180s.TAB
DOA000397_S16_M100-60s.TAB
DOA000397_S16_M2-180s.TAB
DOA000397_S16_M2-60s.TAB
DOA000397_S16_M200-180CCUs.TAB
DOA000397_S16_M200-180s.TAB
DOA000397_S16_M200-60CCUs.TAB
DOA000397_S16_M200-60s.TAB
DOA000397_S16_M30-180CCUs.TAB
DOA000397_S16_M30-180s.TAB
DOA000397_S16_M30-60CCUs.TAB
DOA000397_S16_M30-60s.TAB
DOA000397_S16_M5-180s.TAB
DOA000397_S16_M5-60s.TAB
DOA000397_S16_M50-180s.TAB
DOA000397_S16_M50-60s.TAB
DOA000400_S16_M1-180.tab
DOA000400_S16_M1-60.tab
DOA000400_S16_M10-180.tab
DOA000400_S16_M10-180CCU.tab
DOA000400_S16_M10-60.tab
DOA000400_S16_M10-60CCU.tab
DOA000400_S16_M100-180.tab
DOA000400_S16_M100-60.tab
DOA000400_S16_M2-180.tab
DOA000400_S16_M2-60.tab
DOA000400_S16_M200-180.tab
DOA000400_S16_M200-180CCU.tab
DOA000400_S16_M200-60.tab
DOA000400_S16_M200-60CCU.tab
DOA000400_S16_M30-180.tab
DOA000400_S16_M30-180CCU.tab
DOA000400_S16_M30-60.tab
DOA000400_S16_M30-60CCU.tab
DOA000400_S16_M5-180.tab
DOA000400_S16_M5-60.tab
DOA000400_S16_M50-180.tab
DOA000400_S16_M50-60.tab
DOA000404_S16_M1-180.tab
DOA000404_S16_M1-60.tab
DOA000404_S16_M10-180.tab
DOA000404_S16_M10-180CCU.tab
DOA000404_S16_M10-60.tab
DOA000404_S16_M10-60CCU.tab
DOA000404_S16_M100-180.tab
DOA000404_S16_M100-60.tab
DOA000404_S16_M2-180.tab
DOA000404_S16_M2-60.tab
DOA000404_S16_M200-180.tab
DOA000404_S16_M200-180CCU.tab
DOA000404_S16_M200-60.tab
DOA000404_S16_M200-60CCU.tab
DOA000404_S16_M30-180.tab
DOA000404_S16_M30-180CCU.tab
DOA000404_S16_M30-60.tab
DOA000404_S16_M30-60CCU.tab
DOA000404_S16_M5-180.tab
DOA000404_S16_M5-60.tab
DOA000404_S16_M50-180.tab
DOA000404_S16_M50-60.tab
DOA000459_S16_M1-180.TAB
DOA000459_S16_M1-60.TAB
DOA000459_S16_M10-180.TAB
DOA000459_S16_M10-180CCU.TAB
DOA000459_S16_M10-60.TAB
DOA000459_S16_M10-60CCU.TAB
DOA000459_S16_M100-180.TAB
DOA000459_S16_M100-60.TAB
DOA000459_S16_M2-180.TAB
DOA000459_S16_M2-60.TAB
DOA000459_S16_M200-180.TAB
DOA000459_S16_M200-180CCU.TAB
DOA000459_S16_M200-60.TAB
DOA000459_S16_M200-60CCU.TAB
DOA000459_S16_M30-180.TAB
DOA000459_S16_M30-180CCU.TAB
DOA000459_S16_M30-60.TAB
DOA000459_S16_M30-60CCU.TAB
DOA000459_S16_M5-180.TAB
DOA000459_S16_M5-60.TAB
DOA000459_S16_M50-180.TAB
DOA000459_S16_M50-60.TAB
DOA000463_S16_M1-180.TAB
DOA000463_S16_M1-60.TAB
DOA000463_S16_M10-180.TAB
DOA000463_S16_M10-180CCU.TAB
DOA000463_S16_M10-60.TAB
DOA000463_S16_M10-60CCU.TAB
DOA000463_S16_M100-180.TAB
DOA000463_S16_M100-60.TAB
DOA000463_S16_M2-180.TAB
DOA000463_S16_M2-60.TAB
DOA000463_S16_M200-180.TAB
DOA000463_S16_M200-180CCU.TAB
DOA000463_S16_M200-60.TAB
DOA000463_S16_M200-60CCU.TAB
DOA000463_S16_M30-180.TAB
DOA000463_S16_M30-180CCU.TAB
DOA000463_S16_M30-60.TAB
DOA000463_S16_M30-60CCU.TAB
DOA000463_S16_M5-180.TAB
DOA000463_S16_M5-60.TAB
DOA000463_S16_M50-180.TAB
DOA000463_S16_M50-60.TAB
DOA000495_S16_M1-180.TAB
DOA000495_S16_M1-60.TAB
DOA000495_S16_M10-180.TAB
DOA000495_S16_M10-180CCU.TAB
DOA000495_S16_M10-60.TAB
DOA000495_S16_M10-60CCU.TAB
DOA000495_S16_M100-180.TAB
DOA000495_S16_M100-60.TAB
DOA000495_S16_M2-180.TAB
DOA000495_S16_M2-60.TAB
DOA000495_S16_M200-180.TAB
DOA000495_S16_M200-180CCU.TAB
DOA000495_S16_M200-60.TAB
DOA000495_S16_M200-60CCU.TAB
DOA000495_S16_M30-180.TAB
DOA000495_S16_M30-180CCU.TAB
DOA000495_S16_M30-60.TAB
DOA000495_S16_M30-60CCU.TAB
DOA000495_S16_M5-180.TAB
DOA000495_S16_M5-60.TAB
DOA000495_S16_M50-180.TAB
DOA000495_S16_M50-60.TAB
DOA000499_S16_M1-180.TAB
DOA000499_S16_M1-60.TAB
DOA000499_S16_M10-180.TAB
DOA000499_S16_M10-180CCU.TAB
DOA000499_S16_M10-60.TAB
DOA000499_S16_M10-60CCU.TAB
DOA000499_S16_M100-180.TAB
DOA000499_S16_M100-60.TAB
DOA000499_S16_M2-180.TAB
DOA000499_S16_M2-60.TAB
DOA000499_S16_M200-180.TAB
DOA000499_S16_M200-180CCU.TAB
DOA000499_S16_M200-60.TAB
DOA000499_S16_M200-60CCU.TAB
DOA000499_S16_M30-180.TAB
DOA000499_S16_M30-180CCU.TAB
DOA000499_S16_M30-60.TAB
DOA000499_S16_M30-60CCU.TAB
DOA000499_S16_M5-180.TAB
DOA000499_S16_M5-60.TAB
DOA000499_S16_M50-180.TAB
DOA000499_S16_M50-60.TAB
DOA000526_S16_M1-180.TAB
DOA000526_S16_M1-60.TAB
DOA000526_S16_M10-180.TAB
DOA000526_S16_M10-180CCU.TAB
DOA000526_S16_M10-60.TAB
DOA000526_S16_M10-60CCU.TAB
DOA000526_S16_M100-180.TAB
DOA000526_S16_M100-60.TAB
DOA000526_S16_M2-180.TAB
DOA000526_S16_M2-60.TAB
DOA000526_S16_M200-180.TAB
DOA000526_S16_M200-180CCU.TAB
DOA000526_S16_M200-60.TAB
DOA000526_S16_M200-60CCU.TAB
DOA000526_S16_M30-180.TAB
DOA000526_S16_M30-180CCU.TAB
DOA000526_S16_M30-60.TAB
DOA000526_S16_M30-60CCU.TAB
DOA000526_S16_M5-180.TAB
DOA000526_S16_M5-60.TAB
DOA000526_S16_M50-180.TAB
DOA000526_S16_M50-60.TAB
DOA000533_S16_M1-180.tab
DOA000533_S16_M1-60.tab
DOA000533_S16_M10-180.tab
DOA000533_S16_M10-180CCU.tab
DOA000533_S16_M10-60.tab
DOA000533_S16_M10-60CCU.tab
DOA000533_S16_M100-180.tab
DOA000533_S16_M100-60.tab
DOA000533_S16_M2-180.tab
DOA000533_S16_M2-60.tab
DOA000533_S16_M200-180.TAB
DOA000533_S16_M200-180CCU.tab
DOA000533_S16_M200-60.tab
DOA000533_S16_M200-60CCU.tab
DOA000533_S16_M30-180.tab
DOA000533_S16_M30-180CCU.tab
DOA000533_S16_M30-60.tab
DOA000533_S16_M30-60CCU.tab
DOA000533_S16_M5-180.tab
DOA000533_S16_M5-60.tab
DOA000533_S16_M50-180.tab
DOA000533_S16_M50-60.tab
DOA000537_S16_M1-180.TAB
DOA000537_S16_M1-60.TAB
DOA000537_S16_M10-180.TAB
DOA000537_S16_M10-180CCU.TAB
DOA000537_S16_M10-60.TAB
DOA000537_S16_M10-60CCU.TAB
DOA000537_S16_M100-180.TAB
DOA000537_S16_M100-60.TAB
DOA000537_S16_M2-180.TAB
DOA000537_S16_M2-60.TAB
DOA000537_S16_M200-180.TAB
DOA000537_S16_M200-180CCU.TAB
DOA000537_S16_M200-60.TAB
DOA000537_S16_M200-60CCU.TAB
DOA000537_S16_M30-180.TAB
DOA000537_S16_M30-180CCU.TAB
DOA000537_S16_M30-60.TAB
DOA000537_S16_M30-60CCU.TAB
DOA000537_S16_M5-180.TAB
DOA000537_S16_M5-60.TAB
DOA000537_S16_M50-180.TAB
DOA000537_S16_M50-60.TAB
DOA000554_S16_M1-180.TAB
DOA000554_S16_M1-60.TAB
DOA000554_S16_M10-180.TAB
DOA000554_S16_M10-180CCU.TAB
DOA000554_S16_M10-60.TAB
DOA000554_S16_M10-60CCU.TAB
DOA000554_S16_M100-180.TAB
DOA000554_S16_M100-60.TAB
DOA000554_S16_M2-180.TAB
DOA000554_S16_M2-60.TAB
DOA000554_S16_M200-180.TAB
DOA000554_S16_M200-180CCU.TAB
DOA000554_S16_M200-60.TAB
DOA000554_S16_M200-60CCU.TAB
DOA000554_S16_M30-180.TAB
DOA000554_S16_M30-180CCU.TAB
DOA000554_S16_M30-60.TAB
DOA000554_S16_M30-60CCU.TAB
DOA000554_S16_M5-180.TAB
DOA000554_S16_M5-60.TAB
DOA000554_S16_M50-180.TAB
DOA000554_S16_M50-60.TAB
DOA000558_S16_M1-180.TAB
DOA000558_S16_M1-60.TAB
DOA000558_S16_M10-180.TAB
DOA000558_S16_M10-180CCU.TAB
DOA000558_S16_M10-60.TAB
DOA000558_S16_M10-60CCU.TAB
DOA000558_S16_M100-180.TAB
DOA000558_S16_M100-60.TAB
DOA000558_S16_M2-180.TAB
DOA000558_S16_M2-60.TAB
DOA000558_S16_M200-180.TAB
DOA000558_S16_M200-180CCU.TAB
DOA000558_S16_M200-60.TAB
DOA000558_S16_M200-60CCU.TAB
DOA000558_S16_M30-180.TAB
DOA000558_S16_M30-180CCU.TAB
DOA000558_S16_M30-60.TAB
DOA000558_S16_M30-60CCU.TAB
DOA000558_S16_M5-180.TAB
DOA000558_S16_M5-60.TAB
DOA000558_S16_M50-180.TAB
DOA000558_S16_M50-60.TAB
DOA000560_S16_M1-180.tab
DOA000560_S16_M1-60.tab
DOA000560_S16_M10-180.tab
DOA000560_S16_M10-180CCU.tab
DOA000560_S16_M10-60.tab
DOA000560_S16_M10-60CCU.tab
DOA000560_S16_M100-180.tab
DOA000560_S16_M100-60.tab
DOA000560_S16_M2-180.tab
DOA000560_S16_M2-60.tab
DOA000560_S16_M200-180.tab
DOA000560_S16_M200-180CCU.tab
DOA000560_S16_M200-60.tab
DOA000560_S16_M200-60CCU.tab
DOA000560_S16_M30-180.tab
DOA000560_S16_M30-180CCU.tab
DOA000560_S16_M30-60.tab
DOA000560_S16_M30-60CCU.tab
DOA000560_S16_M5-180.tab
DOA000560_S16_M5-60.tab
DOA000560_S16_M50-180.tab
DOA000560_S16_M50-60.tab
DOA000561_S16_M1-180.TAB
DOA000561_S16_M1-60.TAB
DOA000561_S16_M10-180.TAB
DOA000561_S16_M10-180CCU.TAB
DOA000561_S16_M10-60.TAB
DOA000561_S16_M10-60CCU.TAB
DOA000561_S16_M100-180.TAB
DOA000561_S16_M100-60.TAB
DOA000561_S16_M2-180.TAB
DOA000561_S16_M2-60.TAB
DOA000561_S16_M200-180.TAB
DOA000561_S16_M200-180CCU.TAB
DOA000561_S16_M200-60.TAB
DOA000561_S16_M200-60CCU.TAB
DOA000561_S16_M30-180.TAB
DOA000561_S16_M30-180CCU.TAB
DOA000561_S16_M30-60.TAB
DOA000561_S16_M30-60CCU.TAB
DOA000561_S16_M5-180.TAB
DOA000561_S16_M5-60.TAB
DOA000561_S16_M50-180.TAB
DOA000561_S16_M50-60.TAB
DOA000571_S16_M1-180.TAB
DOA000571_S16_M1-60.TAB
DOA000571_S16_M10-180.TAB
DOA000571_S16_M10-180CCU.TAB
DOA000571_S16_M10-60.TAB
DOA000571_S16_M10-60CCU.TAB
DOA000571_S16_M100-180.TAB
DOA000571_S16_M100-60.TAB
DOA000571_S16_M2-180.TAB
DOA000571_S16_M2-60.TAB
DOA000571_S16_M200-180.TAB
DOA000571_S16_M200-180CCU.TAB
DOA000571_S16_M200-60.TAB
DOA000571_S16_M200-60CCU.TAB
DOA000571_S16_M30-180.TAB
DOA000571_S16_M30-180CCU.TAB
DOA000571_S16_M30-60.TAB
DOA000571_S16_M30-60CCU.TAB
DOA000571_S16_M5-180.TAB
DOA000571_S16_M5-60.TAB
DOA000571_S16_M50-180.TAB
DOA000571_S16_M50-60.TAB
DOA000583_S16_M1-180.TAB
DOA000583_S16_M1-60.TAB
DOA000583_S16_M10-180.TAB
DOA000583_S16_M10-180CCU.TAB
DOA000583_S16_M10-60.TAB
DOA000583_S16_M10-60CCU.TAB
DOA000583_S16_M100-180.TAB
DOA000583_S16_M100-60.TAB
DOA000583_S16_M2-180.TAB
DOA000583_S16_M2-60.TAB
DOA000583_S16_M200-180.TAB
DOA000583_S16_M200-180CCU.TAB
DOA000583_S16_M200-60.TAB
DOA000583_S16_M200-60CCU.TAB
DOA000583_S16_M30-180.TAB
DOA000583_S16_M30-180CCU.TAB
DOA000583_S16_M30-60.TAB
DOA000583_S16_M30-60CCU.TAB
DOA000583_S16_M5-180.TAB
DOA000583_S16_M5-60.TAB
DOA000583_S16_M50-180.TAB
DOA000583_S16_M50-60.TAB
DOA000598_S16_M1-180.TAB
DOA000598_S16_M1-60.TAB
DOA000598_S16_M10-180.TAB
DOA000598_S16_M10-180CCU.TAB
DOA000598_S16_M10-60.TAB
DOA000598_S16_M10-60CCU.TAB
DOA000598_S16_M100-180.TAB
DOA000598_S16_M100-60.TAB
DOA000598_S16_M2-180.TAB
DOA000598_S16_M2-60.TAB
DOA000598_S16_M200-180.TAB
DOA000598_S16_M200-180CCU.TAB
DOA000598_S16_M200-60.TAB
DOA000598_S16_M200-60CCU.TAB
DOA000598_S16_M30-180.TAB
DOA000598_S16_M30-180CCU.TAB
DOA000598_S16_M30-60.TAB
DOA000598_S16_M30-60CCU.TAB
DOA000598_S16_M5-180.TAB
DOA000598_S16_M5-60.TAB
DOA000598_S16_M50-180.TAB
DOA000598_S16_M50-60.TAB
DOA000620_S16_M1-180.TAB
DOA000620_S16_M1-60.TAB
DOA000620_S16_M10-180.TAB
DOA000620_S16_M10-180CCU.TAB
DOA000620_S16_M10-60.TAB
DOA000620_S16_M10-60CCU.TAB
DOA000620_S16_M100-180.TAB
DOA000620_S16_M100-60.TAB
DOA000620_S16_M2-180.TAB
DOA000620_S16_M2-60.TAB
DOA000620_S16_M200-180.TAB
DOA000620_S16_M200-180CCU.TAB
DOA000620_S16_M200-60.TAB
DOA000620_S16_M200-60CCU.TAB
DOA000620_S16_M30-180.TAB
DOA000620_S16_M30-180CCU.TAB
DOA000620_S16_M30-60.TAB
DOA000620_S16_M30-60CCU.TAB
DOA000620_S16_M5-180.TAB
DOA000620_S16_M5-60.TAB
DOA000620_S16_M50-180.TAB
DOA000620_S16_M50-60.TAB
DOA000642_S16_M1-180.TAB
DOA000642_S16_M1-60.TAB
DOA000642_S16_M10-180.TAB
DOA000642_S16_M10-180CCU.TAB
DOA000642_S16_M10-60.TAB
DOA000642_S16_M10-60CCU.TAB
DOA000642_S16_M100-180.TAB
DOA000642_S16_M100-60.TAB
DOA000642_S16_M2-180.TAB
DOA000642_S16_M2-60.TAB
DOA000642_S16_M200-180.TAB
DOA000642_S16_M200-180CCU.TAB
DOA000642_S16_M200-60.TAB
DOA000642_S16_M200-60CCU.TAB
DOA000642_S16_M30-180.TAB
DOA000642_S16_M30-180CCU.TAB
DOA000642_S16_M30-60.TAB
DOA000642_S16_M30-60CCU.TAB
DOA000642_S16_M5-180.TAB
DOA000642_S16_M5-60.TAB
DOA000642_S16_M50-180.TAB
DOA000642_S16_M50-60.TAB
DOA000645_S16_M1-180.TAB
DOA000645_S16_M1-60.TAB
DOA000645_S16_M10-180.TAB
DOA000645_S16_M10-180CCU.TAB
DOA000645_S16_M10-60.TAB
DOA000645_S16_M10-60CCU.TAB
DOA000645_S16_M100-180.TAB
DOA000645_S16_M100-60.TAB
DOA000645_S16_M2-180.TAB
DOA000645_S16_M2-60.TAB
DOA000645_S16_M200-180.TAB
DOA000645_S16_M200-180CCU.TAB
DOA000645_S16_M200-60.TAB
DOA000645_S16_M200-60CCU.TAB
DOA000645_S16_M30-180.TAB
DOA000645_S16_M30-180CCU.TAB
DOA000645_S16_M30-60.TAB
DOA000645_S16_M30-60CCU.TAB
DOA000645_S16_M5-180.TAB
DOA000645_S16_M5-60.TAB
DOA000645_S16_M50-180.TAB
DOA000645_S16_M50-60.TAB
DOA000674_S16_M1-180_2D_Mesh.tab
DOA000674_S16_M1-60_2D_Mesh.tab
DOA000674_S16_M10-180CCU_2D_Mesh.tab
DOA000674_S16_M10-180_2D_Mesh.tab
DOA000674_S16_M10-60CCU_2D_Mesh.tab
DOA000674_S16_M10-60_2D_Mesh.tab
DOA000674_S16_M100-180_2D_Mesh.tab
DOA000674_S16_M100-60_2D_Mesh.tab
DOA000674_S16_M2-180_2D_Mesh.tab
DOA000674_S16_M2-60_2D_Mesh.tab
DOA000674_S16_M200-180CCU_2D_Mesh.tab
DOA000674_S16_M200-180_2D_Mesh.tab
DOA000674_S16_M200-60CCU_2D_Mesh.tab
DOA000674_S16_M200-60_2D_Mesh.tab
DOA000674_S16_M30-180CCU_2D_Mesh.tab
DOA000674_S16_M30-180_2D_Mesh.tab
DOA000674_S16_M30-60CCU_2D_Mesh.tab
DOA000674_S16_M30-60_2D_Mesh.tab
DOA000674_S16_M5-180_2D_Mesh.tab
DOA000674_S16_M5-60_2D_Mesh.tab
DOA000674_S16_M50-180_2D_Mesh.tab
DOA000674_S16_M50-60_2D_Mesh.tab
DOA001050_S16_M1-180.TAB
DOA001050_S16_M1-60.TAB
DOA001050_S16_M10-180.TAB
DOA001050_S16_M10-180CCU.TAB
DOA001050_S16_M10-60.TAB
DOA001050_S16_M10-60CCU.TAB
DOA001050_S16_M100-180.TAB
DOA001050_S16_M100-60.TAB
DOA001050_S16_M2-180.TAB
DOA001050_S16_M2-60.TAB
DOA001050_S16_M200-180.TAB
DOA001050_S16_M200-180CCU.TAB
DOA001050_S16_M200-60.TAB
DOA001050_S16_M200-60CCU.TAB
DOA001050_S16_M30-180.TAB
DOA001050_S16_M30-180CCU.TAB
DOA001050_S16_M30-60.TAB
DOA001050_S16_M30-60CCU.TAB
DOA001050_S16_M5-180.TAB
DOA001050_S16_M5-60.TAB
DOA001050_S16_M50-180.TAB
DOA001050_S16_M50-60.TAB
DOA002372_S16_M001_060.TAB
DOA002372_S16_M001_180.TAB
DOA002372_S16_M002_060.TAB
DOA002372_S16_M002_180.TAB
DOA002372_S16_M005_060.TAB
DOA002372_S16_M005_180.TAB
DOA002372_S16_M010_060.TAB
DOA002372_S16_M010_060CCU.TAB
DOA002372_S16_M010_180.TAB
DOA002372_S16_M010_180CCU.TAB
DOA002372_S16_M030_060.TAB
DOA002372_S16_M030_060CCU.TAB
DOA002372_S16_M030_180.TAB
DOA002372_S16_M030_180CCU.TAB
DOA002372_S16_M050_060.TAB
DOA002372_S16_M050_180.TAB
DOA002372_S16_M100_060.TAB
DOA002372_S16_M100_180.TAB
DOA002372_S16_M200_060.TAB
DOA002372_S16_M200_060CCU.TAB
DOA002372_S16_M200_180.TAB
DOA002372_S16_M200_180CCU.TAB
DOA002517_S16_M1-180.TAB
DOA002517_S16_M1-60.TAB
DOA002517_S16_M10-180.TAB
DOA002517_S16_M10-180CCU.TAB
DOA002517_S16_M10-60.TAB
DOA002517_S16_M10-60CCU.TAB
DOA002517_S16_M100-180.TAB
DOA002517_S16_M100-60.TAB
DOA002517_S16_M2-180.TAB
DOA002517_S16_M2-60.TAB
DOA002517_S16_M200-180.TAB
DOA002517_S16_M200-180CCU.TAB
DOA002517_S16_M200-60.TAB
DOA002517_S16_M200-60CCU.TAB
DOA002517_S16_M30-180.TAB
DOA002517_S16_M30-180CCU.TAB
DOA002517_S16_M30-60.TAB
DOA002517_S16_M30-60CCU.TAB
DOA002517_S16_M5-180.TAB
DOA002517_S16_M5-60.TAB
DOA002517_S16_M50-180.TAB
DOA002517_S16_M50-60.TAB
DOA002554_S16_M1-180.TAB
DOA002554_S16_M1-60.TAB
DOA002554_S16_M10-180.TAB
DOA002554_S16_M10-180CCU.TAB
DOA002554_S16_M10-60.TAB
DOA002554_S16_M10-60CCU.TAB
DOA002554_S16_M100-180.TAB
DOA002554_S16_M100-60.TAB
DOA002554_S16_M2-180.TAB
DOA002554_S16_M2-60.TAB
DOA002554_S16_M200-180.TAB
DOA002554_S16_M200-180CCU.TAB
DOA002554_S16_M200-60.TAB
DOA002554_S16_M200-60CCU.TAB
DOA002554_S16_M30-180.TAB
DOA002554_S16_M30-180CCU.TAB
DOA002554_S16_M30-60.TAB
DOA002554_S16_M30-60CCU.TAB
DOA002554_S16_M5-180.TAB
DOA002554_S16_M5-60.TAB
DOA002554_S16_M50-180.TAB
DOA002554_S16_M50-60.TAB
DOA002580_S16_M1-180.TAB
DOA002580_S16_M1-60.TAB
DOA002580_S16_M10-180.TAB
DOA002580_S16_M10-180CCU.TAB
DOA002580_S16_M10-60.TAB
DOA002580_S16_M10-60CCU.TAB
DOA002580_S16_M100-180.TAB
DOA002580_S16_M100-60.TAB
DOA002580_S16_M2-180.TAB
DOA002580_S16_M2-60.TAB
DOA002580_S16_M200-180.TAB
DOA002580_S16_M200-180CCU.TAB
DOA002580_S16_M200-60.TAB
DOA002580_S16_M200-60CCU.TAB
DOA002580_S16_M30-180.TAB
DOA002580_S16_M30-180CCU.TAB
DOA002580_S16_M30-60.TAB
DOA002580_S16_M30-60CCU.TAB
DOA002580_S16_M5-180.TAB
DOA002580_S16_M5-60.TAB
DOA002580_S16_M50-180.TAB
DOA002580_S16_M50-60.TAB
| S16_MeshNames2 | 2019-08-14T11:07:55.000Z |
|
( \[.*\]) | Portuguese B (H13) [1 Teacher & 0 Subject Heads]
Russian A l&l (S12) [1 Teacher & 0 Subject Heads]
Russian A lit. (H12) [1 Teacher & 0 Subject Heads]
Russian A lit. (H13) [1 Teacher & 0 Subject Heads]
Russian A lit. (S12) [1 Teacher & 0 Subject Heads]
Russian B (H12) [1 Teacher & 0 Subject Heads]
Russian B (H13) [1 Teacher & 0 Subject Heads]
Russian B (S12) [1 Teacher & 0 Subject Heads]
Russian B (S13) [1 Teacher & 0 Subject Heads]
Physical education [12 Teachers & 0 Subject Heads]
Physical education (12) [7 Teachers & 0 Subject Heads]
Sports science [12 Teachers & 0 Subject Heads]
Sports science (H12) [4 Teachers & 0 Subject Heads]
Sports science (H13) [4 Teachers & 0 Subject Heads]
Sports science (S12) [12 Teachers & 0 Subject Heads]
Sports science (S13) [13 Teachers & 0 Subject Heads] | Cleaning Subjects | 2018-04-16T12:15:04.000Z |
|
This is the javascript equivalent that .NET uses in their server-side validators. | ^\w+([-+.']\w+)*@\w+([-.]\w+)*\.\w+([-.]\w+)*$ | thomas-o'[email protected] | Valid Email | 2015-10-19T16:50:05.000Z |
Match chords from songsheets | ([ABCDEFG](?!\h{1}[a-zA-Z][a-z]+))(#|##|b|bb)?(maj|min|M|m|sus)?(aug|dim|ø)?([0-9][0-9]?)?(alt)?(#|##|b|bb)?([0-9])?([\),-]?\s+|[\/]) | Match Chords | 2016-02-03T10:34:55.000Z |
|
move TTL field from route53 zone export from right to left to "IN A/CNAME" | ^(\w+-??\.?\w+?\s+?)(IN\s+?[ACNAME]{1,5}\s+)(\d{1,})(\s+)(\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3})$ | beta-prometheus IN A 300 209.81.83.101 | route53 export to bind format, moving TTL field | 2015-10-18T15:52:56.000Z |
^(https?:\/\/)?([\da-z\.-]+)\.([a-z\.]{2,6})([\/\w \.-]*)*\/?$ | https://www.gogoro.com | Matching a URL | 2016-09-14T07:37:00.000Z |
|
Parses out Clavister FW logs for SIEM mapping | CONN\:.*?prio=(?<severity>\d)\s+id=(?<vmid>\d+).*?event=(?<tag1>\w+)\s+rule=(?<tag2>\w+)\s+conn=(?<tag3>\w+)\s+connipproto=(?<protname>\w+)\s+connrecvif=(?<dinterface>\w+)\s+connsrcip=(?<sip>(\d{1,3}\.){3}\d{1,3})\s+connsrcport=(?<sport>\d+).*?conndestip=(?<dip>(\d{1,3}\.){3}\d{1,3})\s+conndestport=(?<dport>\d+) | 06 12 2017 22:31:35 1.2.1.1 <LOC0:INFO> 1 2017-06-12T22:31:35+02:00 dedusfw EFW - - - CONN: prio=1 id=00600001 rev=1 event=conn_open rule=local_to_nds_dc conn=open connipproto=TCP connrecvif=GESW_vlan2 connsrcip=1.1.1.7 connsrcport=51435 conndestif=G1_vlan253 conndestip=4.1.1.1 conndestport=443
CONN\:.*?prio=(?<severity>\d)\s+id=(?<vmid>\d+).*?action=(?<action>\w+).*?rule=(?<tag1>.*?)\s+recvif=(?<tag2>.*?)\s+srcip=<sip> | Clavister FW CONN | 2017-06-17T04:37:38.000Z |
that are non static | Log\.\w{1}\(" | Log.w( | android detect log tags | 2016-01-29T11:03:48.000Z |
url\(('|")?\/assets\/(.*?)('|")?\) | background-image: url('/assets/marketing/new-image.jpg');
background-image: url("/assets/marketing/new-image.jpg");
background-image: url(/assets/marketing/new-image.jpg); | asset replacement | 2016-04-12T15:21:40.000Z |
|
cut/paste into fluentd/td-agent config | ^(?<time>\d{10}.\d{3})\s+(?<elapsed>\d+)\s(?<remotehost>\S+)\s(?<code_status>\S+)\s(?<bytes>\d+)\s(?<method>\S+)\s(?<url>\S+)\s(?<rfc931>\S+)\s(?<peer_status>\S+)\s(?<type>\S+) | Squid access.log | 2015-10-06T16:53:55.000Z |
|
(.*)\s(\w+)$ | [email protected] iPad Mini 4 e4bc712aa864756a649129f578fd3fee46e371b3
iPad de Alex 811af5aa6af589fda4d4e03f1c1ad31cc560b0de
[email protected] iPad Air 39e37424e154adaf5a47da73901eac9bc8aa5068
[email protected] iPad Mini 136768a3cce08f68851d267d5753d4df99819e32
[email protected] iPhone SE 562813c1f5c26a63e68cdf95049732ffb531da05
[email protected] iPad Mini 795df6f6b57e580c815b5cb8fe80d7853eaad3f4
[email protected] iPad 2 92b06a18df20d1503d8c269fc0e657ce43dc9c11
[email protected] iPad Air 2 cf2dde035647a6c47c7907e878cac5875bcc70fe
[email protected] iPad Air 2 25774c2ded4355e9a4e4d4c8815473ab87491927
[email protected] iPad Air 2 1cdde6ce6f403e8c1cddd9b2b60e7b41625814e9
[email protected] iPad Pro 12.9 (WiFi) 54155168f891b594932152e4ef75678ab7c4d453
[email protected] iPad Mini 3 56e7b47a0841cfa86e182c75e9bfc86186fb41e2
[email protected] iPad 3 4fa0c63998974f904ac035c874749d0f905005ec
[email protected] iPad Air 2 9ede87f8ad041bd434b2c795ad4927371f1da426
[email protected] iPad 4 d55bc437a8bec093b862501854578db9d4dd3df5
[email protected] iPad 4 ea8df0e657757d7fd5f745018c171aff7b8a6632
[email protected] iPad Air c4db0aea2d83ba5c64ecc6f8e8d1fe09c1f12669
[email protected] iPad 2 65164ed269603210623680d2709c11222e14e749
[email protected] iPad Pro 9.7 (WiFi) b7fcd8a7e47c2ba246ab5131a7f2bb9e7797b445
[email protected] iPad Air 2 505fd21d136a44bb4646d50ec4cfd292b8e6dfe0
[email protected] iPad 4 9ae753719b5d453380a827b163bccc529fe9ec47
[email protected] iPad Pro 9.7 294d80e4c18b9a48fc3c48998fb34c473cffa5d3
[email protected] iPhone 6s 35961367528703c1e5a0bf6b486fc62c7340cc34
[email protected] iPad 4 ab161f4bf51e9aa9340b95d2d70ecd2bbce312b8
[email protected] iPad Air 2 479c060ee860f409cf645a69b65a861bbab9b389
[email protected] iPad Pro 12.9 126873d42c2751d002ae802429794e0f00cdd74b
[email protected] iPad 3 e5e5cc31f77748ed89a53e82059046a8554e2eea
[email protected] iPad Mini 5cb0b172c2ec8c6a10b1351c76c5b308bba017be
[email protected] iPad Pro 9.7 (WiFi) a215abe765f71929522af8d5d5277ecf0ce5224a
[email protected] iPad Air 0f5610c79b7d972d9a88e43c7b0e321f2e41f6d1
[email protected] iPad Air 2 c12b1ba86952663fe1edff351f9298c4bd852875
[email protected] iPad Air 2 2d5c6db2d2a3e712f97d359aaa5fe66d9f38c4d4
[email protected] iPad Pro 12.9 (WiFi) 6e3450e8aeea13f2602c2e2402dae9c4bc9ecd8a
[email protected] iPad 3 0654697e68ca7d72f99617aa3dc9b6d6d1c13dcc
[email protected] iPad Air 2 b2296b2db3cb9718475b82b6e9b050b034afffc1
[email protected] iPad 4 b73acb2aaead7c5c998ad07116f3d665a15c7d21
[email protected] iPhone SE 1a8ae3801eba529baf174eefd7215fbcd2e5be38
[email protected] iPad Mini 4 339495c2d622d4adba177f96e9f1bea0e369c19e
[email protected] iPad Mini c08077cd7879ff7148fbd8eceffebab4acc98dd1
[email protected] iPad Air 2 4bd2ed0221986cb6ef653efd2b0d36d9078879b4
[email protected] iPad 3 a7bca130c976ac13ce43c352db58a0e1cb50a269
[email protected] iPad 4 4622f4d68fd04f998c21a378041b02a773e630b6
[email protected] iPad Pro 12.9 (WiFi) 0e06d259f7a4d09be34039c125534c7dc099435d
[email protected] iPhone 5s e2a98ceaffb574d6d6ea5063d4fd0d6903fc09f3
[email protected] iPad Mini 4 142cc05b22a2cda3d6c619f6e9a14ff28bf6e62d
[email protected] iPad Mini ea64a3f9e90807aa93b693cd07bb55b63fce0456
[email protected] iPad Mini 94e1a69f4be2901c532c79609ae0b9396cba53c9
[email protected] iPad 2 eae617659d13d4faaf10557eb6d31c5196b314f4
[email protected] iPad 3 e07bd2c99f8abf671165c3bb53af6b8c80eac213
[email protected] iPad 3 fa2a04e39c23851f4d78f9f9c4708c99efbeb944
[email protected] iPad Pro 9.7 (WiFi) 4c28814bd3119d1ad4ef1bd0becfaec82c49c094
[email protected] iPad 2 b41a03c6c1319527c1793f5a7e6c1253f735e2f8
[email protected] iPad 4 af353dbf9e44f9448493aa94e21c6d9fb28c6fca
[email protected] iPad 2 ea38cad20f29641bb37420d21c935fddb0445ef6
[email protected] iPad 3 b1ddf0bf51b1823942422b11cf31bc922188e933
[email protected] iPhone 6 31dfae3049a094dc1f06a1719d5b0d9bbfc7dbfd
[email protected] iPad Air 2 d8166610b5520256f331f61d531400b8b3c68fc1
[email protected] iPad 4 a81631dc5820da55d32e331106b0bef1cc4b401b
[email protected] iPhone 6 Plus 0084bda8bb2b1e19f62f93eb6a650919674b447d
[email protected] iPad 3 bbb5e7c655b3a5bbab663d7cd6a94131bae5af77
[email protected] iPad 2 ac4ae6e5adccaacf7de5e3aaeee25b47cc0286e8
[email protected] iPad Mini 5a20cd7251a9bf99fe4ace34947f6da685f14adf
[email protected] iPhone 6 36651ddedab7f9940f731b34b7d52905c85e7115
[email protected] iPad Mini d5aba100e95dde045c5b2bacaa0d3fb3b5d86c4f
[email protected] iPad 2 98d0e233cbeb92a33aaaa70967f793613472eeaf
[email protected] iPad Mini 7485d74ec7d563f10e3f18baa26de77bb22be1e0
[email protected] iPad 4 5b840f0fe88e75098c4c890c7f0d9d7ca59f410f
[email protected] iPad Pro 12.9 (WiFi) adc527a0ae4044d35439f745545f6d37d0cfc32b
[email protected] iPad Air 2 32bc5412700ccba75a9a726290ac6abd68a2c2a0
[email protected] iPad 2 c758a403380eafa95f05129863fb92073a8e7234
[email protected] iPad Mini 5da761c731ab47485b0c900ba21b2e5548dfff81
[email protected] iPad Air 414cd907dde81ebefea9c2d74ddf46b9770a8226
[email protected] iPad Air 2 7a19ab88890d5766ed63640b914a570001f4c06e
[email protected] iPad Air 2 6cd07e8086236f9b3bf24bdebb8b09aa45d4d56c
[email protected] iPad Air 2 83982fe7f3404f96155d3cd3dfdb72baa9219641
[email protected] iPad Air 2 da8d35139dc0df10e51c3712fd01f8077061ca56
[email protected] iPad Mini cc0046ec60537a6134c42fc75cf450b4bc72a13b
[email protected] iPad Mini 65127eb991528f4c2735f48c0ce1315f0eff6107
[email protected] iPad Mini 59323d47a43d8136b22b8e119fac74fd46ca2005
[email protected] iPad Air 98eb13b1b8973594144ed3e2251f5c73dce8e90f
[email protected] iPad Air 87a03143a539d9c2e85615cc6cd63bd4b9133862
[email protected] iPad Air a713db586587b3adbbd0b51765ab618c3eb62798
[email protected] iPad Air 0b0c28c1408aa178fadd8ad91f505aaa064a6782
[email protected] iPad Air 2 7cf567ee89c7967bd05f76e9e7b69a01a7362502
[email protected] iPad Pro 12.9 374a2e4c480445e73e6983ab4798cecab8f153b9 | Export Apple device id list | 2016-09-12T16:14:25.000Z |
|
match with or without prevailing/trailing slashes | ^/?[\w-/]+$ | /home/user/Documents
/home/user/Documents-list_-/
home/user/Documents-list_-/
home/
space /home/user/Documents/file.name
/home/user/Documents/foo.log
/foo.bar
/folder
| Match directory path | 2016-07-13T15:56:16.000Z |
Regex to recognize Vehicle License Plates in Portugal | [0-9]{2}[\s-]{0,1}[0-9]{2}[\s-]{0,1}[A-IK-PR-VZ]{2}|[0-9]{2}[\s-]{0,1}[A-IK-PR-VZ]{2}[\s-]{0,1}[0-9]{2}|[A-IK-PR-WYZ]{2}[\s-]{0,1}[0-9]{2}[\s-]{0,1}[A-IK-PR-WYZ]{2} | # From 1992 #
23-45-AB
2345AB
23 45 AB
23-98-QI // Q is excluded
23-98-JI // J is excluded
23-98-WI // W is excluded
# From 2005 #
23-AB-45
23AB45
23 AB 45
23-QI-98 // Q is excluded
23-JI-98 // J is excluded
23-WI-98 // W is excluded
# From 2019 #
AB-56-CD
AB56CD
AB 56 CD
AB-56-QM // Q is excluded
AJ-56-CM // J is excluded
AW-56-CM // W is authorized
AY-56-CM // Y is authorized | Portugal / Portuguese License Plate (Matrícula - Placa) | 2019-09-18T10:34:48.000Z |
([\d. ,]+) - - \[(.*?)\] \"(GET|POST|PUT) (.*?)\s(\w{4}\/\d.\d)\" (\d{1,3})\s(\d{1,}) \"(.*?)\" \"(.*?)\" \"(.*?)(\d{20})\" | "242.121.8.11, 10.130.0.49, 10.130.32.73 - - [14/Mar/2019:14:44:54 +0100] "POST /kasca/service/BpvrPersonProxy-v1_2 HTTP/1.1" 200 473 "12322" "Synapse-PT-HttpComponents-NIO" "CN=i-tst.test.com,OU=IT Team,O=Test,L=Lef,ST=Lolo,C=JK,serialNumber=00000014000000445000" | wasstraat | 2019-03-15T08:06:27.000Z |
|
Useful for checking comma separated full names | ^\s*[a-zA-Z]+([\-\s']?[a-zA-Z]+)*\s*,\s*[a-zA-Z\s]+([\-\s']?[a-zA-Z]+)*\s*$ | my-name, is bryan
hello, world
what about, me
Virtuous Blower, Jr
Mr Happy Sack, Yep
d'Mello, Anton
Mysterys
D'Art, Loui | Name (First, Last) or (Last, First) | 2021-02-18T17:00:07.000Z |
For orth | ((\(([а-яё]\|?)+\)|[CV^$])*) ([а-ё]) ((\(([а-яё]\|?)+\)|[CV^$])*) | (ш|ж|ч|ц|щ)и(й)
а
(ь|ъ)е
ш(ь)V
Vй$
Vё
ж(ь)V | for-orth | 2022-08-23T15:33:07.000Z |
milhares/centenas/dezenas
milhares/centenas/dezenas/unidades
milhares/centenas
milhares/dezenas | [a-z]*(\b mil)(\b e ([a-z]{1,7}(entos|ento)(\b e ([a-z]{1,6}(nte|nta)(\b e [a-z]*)|[a-z]{2,6})|)|[a-z]{1,6}(inte|inta)|[a-z]{3,9})|) | perdi sete mil e oitocentos e vinte e quatro
gastei cinco mil e quatrocentos e vinte
gastei cinco mil e quatrocentos e onze
perdi tres mil e oitocentos e quatro
gastei cinco mil e quatrocentos
gastei quatro mil e quinze
gastei seis mil e vinte
gastei seis mil | Encontrado Milhares | 2022-09-06T15:30:12.000Z |
- Only matches on post deploy tasks/checkboxes
- Will not match a pattern with a colon (:) in it | [-*] \[[ xX]\] (?![ : ]) | - [ ] : `Don't Merge` label is applied\r
- [x] : `Don't Merge` label is applied\r
- [X] : `Don't Merge` label is applied\r
- [] : `Don't Merge` label is applied\r
- [X] `Don't Merge` label is applied\r
- [x] `Don't Merge` label is applied\r
- [ ] `Don't Merge` label is applied\r | Post Deploy | 2020-10-14T07:07:00.000Z |
Pattern for matching actually valid RGB values.
- validate separator (mixing spaces and commas between values is not valid)
- validate if comma is used as separator if alpha channel is set
- validate units (mixing percentage with integers is not valid)
- extract `r`, `g`, `b`, `a`, `separator` and `unit` with named groups
| ^rgba?\((?:\s+)?(?<r>\d+(?<unit>%?))(?:\s+)?(?<separator>[\s|,])(?:\s+)?(?<g>\d+\k<unit>)(?:\s+)?\k<separator>(?:\s+)?(?<b>\d+\k<unit>)(?:\s+)?(?:(?<=(?:,.+))(?:,(?:\s+)?(?<a>(?:\d+)?(?:\.?\d+)))?(?:\s+)?)?\)$ | // Valid
rgb(120 , 42 , 55)
rgb(23%, 100%, 0%)
rgb(120 42 55)
rgb(23% 100% 0%)
rgb(0 0 0)
rgba(23, 53, 0)
// Invalid
rgb(255, 120 0)
rgb(100% 32 75)
// When an alpha channel is defined, separator must be comma (not sure why but you can try it in browser to see for yourself)
// Valid
rgb(255, 255, 255, 1)
rgb(255, 255, 255, .643)
rgb(255, 255, 255, 1.324 )
rgba(255, 255, 255, 1)
rgba(255, 255, 255, .643)
rgba(255, 255, 255, 1.324 )
// Invalid
rgb(255, 255, 255, )
rgb(255, 255, 255, .)
rgba(255 255 255 1)
rgba(255 255 255, 1) | Valid RGB color value | 2021-10-01T20:54:23.000Z |
extract strings between {…} or __(…) | __\((.*?)\)|{+(.*?)}+ | this is a __('test') lorem ipsum {{ test }} | i18n extract | 2023-07-13T10:08:07.000Z |
Detects whether a given IPv6 string is within a reserved block, as defined on https://en.wikipedia.org/wiki/IPv6_address#Special_addresses
**Please note that this assume that the string given is already a valid IPv6 address** - If IPv6 validation is important to you, please make sure you pass any string through a more general IPv6 validator before testing it against this regex.
Also allows for extracting mapped IPv4 addresses from the IPv4 mapped address ranges. | (?<ipv6_full>(?:^(?:f[c-f][0-9a-f]{2}|200[1-2]|0?100):).+|(?:.+:0{0,3}1$|(?:.+:ffff:(?:0:)?|^0{0,2}64:ff9b::)(?<ipv4_map>(?:25[0-5]|2[0-4]\d|[0-1]?\d{1,2})(?:\.(?:25[0-5]|2[0-4]\d|[0-1]?\d{1,2})){3})$)) | ::1
100::
2001::
2001:20::
2001:db8::
2002::
fc00::
fe80::
ff00::
64:ff9b::0.0.0.0
100::
::ffff:0.0.0.0
::ffff:0:255.255.255.255 | IPv6 Reserved Blocks | 2018-06-05T13:51:29.000Z |
Validate an Emirates ID number, with or without dashes.
Please note that this does not implement the [Luhn Algorithm](https://www.geeksforgeeks.org/luhn-algorithm/), which should be applied in conjunction with simple validation. | ^784-?[0-9]{4}-?[0-9]{7}-?[0-9]{1}$ | UAE Emirates ID Number | 2022-06-13T08:09:00.000Z |
|
This pattern matches to the facebook post embed codes. It matches on each parts of the whole embed code individualy, and matches on the complete embed code either. | ((<div[\s]+?id=\"fb-root\"[\s\S]+?<\/div>)*[\s]*(<script[\s\S]+?\/script>)*[\s]*(<div[\s]+?class=\"fb-post\"[\s\S]+?(<div[\s]+?class=\"fb-xfbml-parse-ignore\"[\s\S]+?<\/div>)*<\/div>)*) | facebook post embed code | 2014-12-02T10:30:03.000Z |
|
<PolicyId>(?<PolicyNumber>.+)<\/PolicyId> | IHub Service Name: retrieveUnderwritingReports IHub request: <retrieveUnderwritingReportsRequest><RequestHeader><ReportUserGroup>NET-CA</ReportUserGroup><ReportInteractiveBatchIndicator>I</ReportInteractiveBatchIndicator><ReportTransactionFunction>RQST</ReportTransactionFunction><ReportRequestType>PLH</ReportRequestType><ReportSystemId>PQQ-NIAX</ReportSystemId><ReportIacBillingState>CA</ReportIacBillingState><ReportAgentNumber>0087327</ReportAgentNumber><ReportSubUserId>0000000</ReportSubUserId><UserRequestReferenceNumber>HNC0054821022</UserRequestReferenceNumber><CurrentCarrierRequestFlag>Y</CurrentCarrierRequestFlag><PolicyId> HNC 00548210220 </PolicyId></RequestHeader><PlhRequest><PlhClientDetail><ClientId>00000000</ClientId><FirstName>YOLANDA</FirstName><LastName>GUILLORY</LastName><MiddleName>L</MiddleName><BirthDate>1972-07-29</BirthDate><PlhAddressDetails><CurrentStreetNumber>18309</CurrentStreetNumber><CurrentStreetName>MILMORE AVE</CurrentStreetName><CurrentCity>CARSON</CurrentCity><CurrentState>CA</CurrentState><CurrentZipCode5>90746</CurrentZipCode5><CurrentZipCode4>1753</CurrentZipCode4></PlhAddressDetails></PlhClientDetail></PlhRequest></retrieveUnderwritingReportsRequest> | PolicyNumber | 2015-10-10T04:26:44.000Z |
|
For a QIF file extracted from Boursorama bank account, transform the diffrent amount in French format to an English format (without thousand separator) for MS Money.
^([T\$])([-+]?)(\d*)(\s?)(\d+)(\,)(\d+)$
Substitute with $1$2$3$5.$7 | ^([T\$])([-+]?)(\d*)(\s?)(\d+)(\,)(\d+)$ | !Type:Bank
D2023-11-20
T-43,51
PCARTE 19/11/23 ADEO*LEROY MERLIN CB*0906
LBricolage et jardinage
^
D2023-11-20
T-48,30
PCARTE 19/11/23 Microsoft*Store CB*0906
LMultimedia à domicile (TV, internet, téléphonie…)
^
D2023-11-20
T-292,40
PCARTE 17/11/23 DOCTEUR ROUX 4 CB*0906
LMédecins et frais médicaux
^
D2023-11-17
T7,95
PVIR SEPA MHN P PREST SANTE
LRemboursements frais de santé
^
D2023-11-17
T-15,40
PCARTE 16/11/23 JOUR SAS GABEST 4 CB*0906
LTransports longue distance (avions, trains…)
^
D2023-11-16
T-94,38
PCARTE 12/11/23 NEGOSTOCK CB*0906
LMobilier, électroménager, décoration…
^
D2023-11-16
T-10,40
PCARTE 15/11/23 BOULANGERIE SAIN CB*0906
LAlimentation
^
D2023-11-15
T14,05
PVIR SEPA CPAM DE L OISE
LRemboursements frais de santé
^
D2023-11-15
T-2,22
PCARTE 14/11/23 INTERMARCHE HERM CB*0906
LAlimentation
^
D2023-11-15
T-18,00
PPRLV SEPA KLESIA SA
LEpargne financière (retraite, prévoyance, PEA, assurance-vie…)
^
D2023-11-14
T-51,90
PCARTE 13/11/23 INTER VALANGY CB*0906
LAlimentation
^
D2023-11-14
T-2,47
PCARTE 11/11/23 SAS VALANGY CB*0906
LAlimentation
^
D2023-11-13
T-73,64
PCARTE 11/11/23 INTER VALANGY CB*0906
LAlimentation
^
D2023-11-13
T-3,40
PCARTE 11/11/23 HHSD SARL 4 CB*0906
LNon catégorisé
^
D2023-11-13
T-5,90
PCARTE 10/11/23 AQUASPACE 2 CB*0906
LClub / association (sport, hobby, art…)
^
D2023-11-13
T-26,50
PCARTE 10/11/23 DR V DUFOUR CB*0906
LMédecins et frais médicaux
^
D2023-11-10
T40,45
PVIR SEPA MHN P PREST SANTE
LRemboursements frais de santé
^
D2023-11-10
T-10,40
PCARTE 09/11/23 BOULANGERIE SAIN CB*0906
LAlimentation
^
D2023-11-08
T-119,00
PCARTE 06/11/23 PAYPAL *GRANULESE CB*0906
LVie quotidienne
^
D2023-11-07
T-6,77
PCARTE 06/11/23 LA POSTE 604390 CB*0906
LVie Quotidienne - Autres
^
D2023-11-07
T-26,55
PCARTE 04/11/23 JARDIN DE L INDE CB*0906
LRestaurants, bars, discothèques…
^
D2023-11-06
T-40,45
PCARTE 03/11/23 DR LUCAS-GOURDET CB*0906
LMédecins et frais médicaux
^
D2023-11-06
T-34,86
PPRLV SEPA EURO-ASSURANCE
LAssurances (Auto/Moto)
^
D2023-11-06
T-43,18
PPRLV SEPA MATMUT ROUEN
LAssurances (Auto/Moto)
^
D2023-11-03
T-29,70
PCARTE 02/11/23 GIBROCA 9 CB*0906
LBricolage et jardinage
^
D2023-11-03
T-87,48
PCARTE 01/11/23 LE COMPTOIR DU MA CB*0906
LMobilier, électroménager, décoration…
^
D2023-11-01
T-2 035,88
PVIR SEPA BNP COMMUN
LVirements émis
^
D2023-10-31
T-10,90
PCARTE 30/10/23 ADEO*LEROY MERLIN CB*0906
LBricolage et jardinage
^
D2023-10-31
T-81,23
PCARTE 28/10/23 SAS LUDIVAN CB*0906
LAlimentation
^
D2023-10-30
T-20,50
PCARTE 28/10/23 GIBROCA 9 CB*0906
LBricolage et jardinage
^
D2023-10-30
T-4,97
PCARTE 26/10/23 SAS VALANGY CB*0906
LAlimentation
^
D2023-10-30
T-75,04
PPRLV SEPA Orange SA
LTéléphonie (fixe et mobile)
^
D2023-10-30
T-14,99
PPRLV SEPA Orange SA-ORANGE
LTéléphonie (fixe et mobile)
^
D2023-10-30
T-50,00
PPRLV SEPA BNP PARIBAS SA
LFrais Professionnel
^
D2023-10-27
T-6,25
PCARTE 26/10/23 SNCF RESEAU 4 CB*0906
LTransports longue distance (avions, trains…)
^
D2023-10-27
T3 543,35
PVIR SEPA SNCF RESEAU
LFrais Professionnel
^
D2023-10-26
T-15,40
PCARTE 25/10/23 BOULANGERIE SAIN CB*0906
LAlimentation
^
D2023-10-26
T-1,50
PCARTE 25/10/23 NYA*COMPASS GROUP CB*0906
LRestaurants, bars, discothèques…
^
D2023-10-23
T-22 940,00
PVIR Virement interne depuis BoursoBank
LVirements émis de comptes à comptes
^
D2023-10-23
T20 000,00
PVIR Virement interne depuis COMPTE S
LVirements reçus de comptes à comptes
^
D2023-10-23
T-7,50
PCARTE 21/10/23 GIBROCA 9 CB*0906
LBricolage et jardinage
^
D2023-10-23
T-16,00
PCARTE 20/10/23 SAINT ALGUE CB*0906
LBien-être et soins (coiffeur, parfums…)
^
D2023-10-20
T-646,02
PCARTE 19/10/23 DARTY MKTPLACE 4 CB*0906
LElectronique et informatique
^
D2023-10-18
T-5,90
PCARTE 17/10/23 BOULANGERIE SAIN CB*0906
LAlimentation
^
D2023-10-18
T-10,00
PVIR CREATION COMPTE
LVirements émis de comptes à comptes
^
D2023-10-17
T-20 000,00
PVIR INVESTISSEMENT INITIAL
LVirements émis
^
D2023-10-16
T23 000,00
PVIR Virement interne depuis COMPTE S
LVirements reçus de comptes à comptes
^
D2023-10-16
T-12 000,00
PVIR Versement initial LDD
LVirements émis de comptes à comptes
^
D2023-10-16
T12 000,00
PVIR Virement interne depuis COMPTE S
LVirements reçus de comptes à comptes
^
D2023-10-16
T-15,80
PCARTE 13/10/23 ANNAUTO CB*0906
LCarburant
^
D2023-10-16
T-26,55
PCARTE 13/10/23 JARDIN DE L INDE CB*0906
LRestaurants, bars, discothèques…
^
D2023-10-16
T-88,60
PCARTE 13/10/23 ADEO*LEROY MERLIN CB*0906
LBricolage et jardinage
^
D2023-10-13
T-5,60
PCARTE 11/10/23 GRAND FRAIS CB*0906
LAlimentation
^
D2023-10-13
T-18,00
PPRLV SEPA KLESIA SA
LEpargne financière (retraite, prévoyance, PEA, assurance-vie…)
^
D2023-10-12
T-7,67
PCARTE 11/10/23 SNCF RESEAU 4 CB*0906
LTransports longue distance (avions, trains…)
^
D2023-10-11
T-2,93
PCARTE 09/10/23 SAS VALANGY CB*0906
LAlimentation
^
D2023-10-10
T-2,55
PCARTE 07/10/23 SAS VALANGY CB*0906
LAlimentation
^
D2023-10-09
T17,61
PAVOIR 06/10/23 ADEO*LEROY MERLIN CB*0906
LBricolage et jardinage
^
D2023-10-09
T-2,90
PCARTE 06/10/23 FEUILLETTE CB*0906
LRestaurants, bars, discothèques…
^
D2023-10-09
T-11,80
PCARTE 06/10/23 ADEO*LEROY MERLIN CB*0906
LBricolage et jardinage
^
D2023-10-09
T-119,80
PCARTE 06/10/23 GIBROCA 9 CB*0906
LBricolage et jardinage
^
D2023-10-09
T-83,49
PCARTE 06/10/23 Carrefour locat 4 CB*0906
LAlimentation
^
D2023-10-06
T-13,50
PCARTE 05/10/23 SALAI CB*0906
LRestaurants, bars, discothèques…
^
D2023-10-06
T-8,00
PCARTE 04/10/23 PHOTOMATON 2 CB*0906
LVie Quotidienne - Autres
^
D2023-10-05
T-4,26
PCARTE 04/10/23 INTERMARCHE 05 CB*0906
LAlimentation
^
D2023-10-05
T-10,40
PCARTE 04/10/23 BOULANGERIE SAIN CB*0906
LAlimentation
^
D2023-10-05
T-40,76
PPRLV SEPA EURO-ASSURANCE
LAssurances (Auto/Moto)
^
D2023-10-05
T-43,18
PPRLV SEPA MATMUT ROUEN
LAssurances (Auto/Moto)
^
D2023-10-04
T-3,72
PCARTE 03/10/23 LA POSTE BOUTIQU CB*0906
LVie Quotidienne - Autres
^
D2023-10-03
T17,16
PAVOIR 02/10/23 ADEO*LEROY MERLIN CB*0906
LBricolage et jardinage
^
D2023-10-03
T-61,83
PCARTE 30/09/23 LE COMPTOIR DU MA CB*0906
LMobilier, électroménager, décoration…
^
D2023-10-02
T-80,00
PVIR INST BONNELLIER ARTHUR
LVirements émis
^
D2023-10-02
T-8,00
PCARTE 30/09/23 Cinema CGR 4 CB*0906
LDivertissement - culture (ciné, théâtre, concerts…)
^
D2023-10-02
T-6,20
PCARTE 28/09/23 SNC CLACOR CB*0906
LNon catégorisé
^
D2023-10-02
T-2 035,88
PVIR SEPA BNP COMMUN
LVirements émis
^
D2023-10-02
T-14,99
PPRLV SEPA Orange SA-ORANGE
LTéléphonie (fixe et mobile)
^
D2023-10-02
T-74,99
PPRLV SEPA Orange SA
LTéléphonie (fixe et mobile)
^
D2023-09-29
T-10,40
PCARTE 28/09/23 BOULANGERIE SAIN CB*0906
LAlimentation
^
D2023-09-28
T-11,40
PCARTE 27/09/23 BOULANGERIE SAIN CB*0906
LAlimentation
^
D2023-09-28
T3 504,55
PVIR SEPA SNCF RESEAU
LFrais Professionnel
^
D2023-09-27
T-11,10
PCARTE 26/09/23 LA POSTE.FR CB*0906
LVie Quotidienne - Autres
^
D2023-09-26
T-3,30
PCARTE 23/09/23 E LECLERC CB*0906
LAlimentation
^
D2023-09-25
T-109,20
PCARTE 22/09/23 LE MONTE CRISTO CB*0906
LRestaurants, bars, discothèques…
^
D2023-09-22
T-3,00
PCARTE 21/09/23 SELECTA SAS CB*0906
LAlimentation
^
D2023-09-22
T-0,68
PCARTE 20/09/23 GRAND FRAIS CB*0906
LAlimentation
^
D2023-09-19
T-96,13
PCARTE 15/09/23 INTER VALANGY CB*0906
LAlimentation
^
D2023-09-18
T40,99
PAVOIR 15/09/23 AMZ*Amazon.fr CB*0906
LLivres, CD/DVD, bijoux, jouets…
^
D2023-09-15
T-9,90
PCARTE 14/09/23 ADEO*LEROY MERLIN CB*0906
LBricolage et jardinage
^
D2023-09-13
T-20,00
PCARTE 12/09/23 SNCF ARTHUR RIM 4 CB*0906
LTransports longue distance (avions, trains…)
^
D2023-09-13
T-18,00
PPRLV SEPA KLESIA SA
LEpargne financière (retraite, prévoyance, PEA, assurance-vie…)
^
D2023-09-12
T-5,30
PCARTE 10/09/23 SAS VALANGY CB*0906
LAlimentation
^
D2023-09-11
T-2,20
PCARTE 10/09/23 MHDR CB*0906
LNon catégorisé
^
D2023-09-11
T-57,87
PCARTE 08/09/23 LE COMPTOIR DU MA CB*0906
LMobilier, électroménager, décoration…
^
D2023-09-07
T-43,50
PCHQ. N.8707465
LChèques
^
D2023-09-05
T-7,50
PCARTE 02/09/23 LE COQ D OR CB*0906
LRestaurants, bars, discothèques…
^
D2023-09-05
T-24,80
PCARTE 02/09/23 PAKOOH CB*0906
LRestaurants, bars, discothèques…
^
D2023-09-05
T-37,57
PCHQ. N.8707466
LChèques
^
D2023-09-05
T-34,55
PPRLV SEPA EURO-ASSURANCE
LAssurances (Auto/Moto)
^
D2023-09-05
T-43,18
PPRLV SEPA MATMUT ROUEN
LAssurances (Auto/Moto)
^
D2023-09-04
T-242,23
PCARTE 02/09/23 AMZN Mktp FR*1U99 CB*0906
LLivres, CD/DVD, bijoux, jouets…
^
D2023-09-04
T-40,99
PCARTE 02/09/23 Amazon.fr*1U25U64 CB*0906
LLivres, CD/DVD, bijoux, jouets…
^
D2023-09-04
T-105,30
PCARTE 01/09/23 SARL LUCET CB*0906
LMédecins et frais médicaux
^
D2023-09-04
T-87,85
PCARTE 30/08/23 INTER VALANGY CB*0906
LAlimentation
^
D2023-09-01
T-25,00
PCARTE 31/08/23 TIMBRE FISCAL 2 CB*0906
LImpôts & Taxes - Autres
^
D2023-09-01
T-370,00
PVIR INST PHILIPPE POPULU
LVirements émis
^
D2023-09-01
T-2 035,88
PVIR SEPA BNP COMMUN
LVirements émis
^
| QIF amount from French format to English for MS MONEY | 2023-11-20T20:29:04.000Z |
<div[^>]+class=\"fb-(video|post)\".*data-href=\"(.*)\"[^>]*>[\s|\S]*?<\/div>\n*<\/div> | fbEmbeddedContent:
<p>(7 ม.ค.) ในโลกออนไลน์ได้มีการแชร์คลิปวีดีโอจากเฟซบุ๊กของคุณฮันนี่ควีน พันธุ์ชิต ซึ่งได้โพสต์คลิปพร้อมข้อความว่า "คลิปนี้เป็นคลิปที่น้องชายโดนมอเตอร์ไซค์เหยียบอก เอกซเรย์ซี่โครงหัก 4 ท่อน ขอความเป็นธรรมด้วยค่ะ" โดยเหตุเกิดที่ อ.เสนา จ.พระนครศรีอยุธยา</p>
<p>จากคลิปเผยให้เห็นภาพจากกล้องวงจรปิดจากร้านแห่งหนึ่ง ซึ่งฝั่งตรงข้ามได้มีรถยนต์เข้ามาจอดที่ริมฟุตปาธอีกฝั่งหนึ่ง ก่อนที่คนขับจะเปิดประตูรถลงมา และชนกับรถจยย.ซึ่งพาเด็ก 2 คนนั่งซ้อนท้าย จนรถจยย.ล้ม </p>
<p>ขณะเดียวกันก็มีรถจยย.อีกคันขับสวนเลนมา และเหยียบไปที่ร่างของเด็ก ด้วยความตกใจหญิงสาวซึ่งเป็นคนขี่รถจยย.ได้ลุกขึ้นมาอุ้มเด็กคนดังกล่าว ก่อนที่ชาวบ้านจะเข้ามามุงดูเหตุการณ์ที่เกิดขึ้น</p>
<p>ทั้งนี้ ผู้โพสต์คลิปดังกล่าวระบุว่า เตรียมจะเอาเรื่องคนขับรถยนต์คันดังกล่าวถึงที่สุด เพราะเป็นต้นเหตุที่ทำให้น้องของเธอถูกรถจยย.เหยียบร่าง จนซี่โครงหักถึง 4 ท่อน </p>
<p><em>ขอขอบคุณคลิปจากเฟซบุ๊กของคุณ<a href="https://www.facebook.com/100009910685001/videos/209456276061394/" target="_blank">ฮันนี่ควีน พันธุ์ชิต</a></em></p>
<script type="text/javascript">// <![CDATA[
(function(d, s, id) { var js, fjs = d.getElementsByTagName(s)[0]; if (d.getElementById(id)) return; js = d.createElement(s); js.id = id; js.src = "//connect.facebook.net/th_TH/sdk.js#xfbml=1&version=v2.3"; fjs.parentNode.insertBefore(js, fjs);}(document, 'script', 'facebook-jssdk'));
// ]]></script>
<div class="fb-video" data-allowfullscreen="1" data-href="/100009910685001/videos/vb.100009910685001/209456276061394/?type=3">
<div class="fb-xfbml-parse-ignore">
<blockquote cite="https://www.facebook.com/100009910685001/videos/209456276061394/"><a href="https://www.facebook.com/100009910685001/videos/209456276061394/"></a>
<p>คลิปนี้เป็นคลิปที่น้องชายโดนมอไซค์เหยียบหน้าอก..เอ็กซ์เรย์ซี่โครงหัก4ท่อนขอความเป็นธรรมด้วยนะค่ะ</p>
Posted by <a href="https://www.facebook.com/people/ฮันนี่ควีน-พันธุ์ชิต/100009910685001">ฮันนี่ควีน พันธุ์ชิต</a> on 6 มกราคม 2016</blockquote>
</div>
</div>
<p>จากกรณีดารานักแสดงตบเท้าเข้าชี้แจงกับ <strong>นพ.สมาน ฟูตระกูล</strong> ผู้อำนวยการสำนักงานคณะกรรมการควบคุมเครื่องดื่มแอลกอฮอล์ กรมควบคุมโรค กระทรวงสาธารณสุข จากกรณีโพสต์ภาพเครื่องดื่มแอลกอฮอล์ลงในโซเชียลมีเดีย</p>
<div class="fb-video" data-allowfullscreen="1" data-href="/aloha.tack/videos/vb.1528555579/10208309416202889/?type=3">
<div class="fb-xfbml-parse-ignore">
<blockquote cite="https://www.facebook.com/aloha.tack/videos/10208309416202889/"><a href="https://www.facebook.com/aloha.tack/videos/10208309416202889/"></a>
<p>ตามนั้น</p>
Posted by <a href="https://www.facebook.com/aloha.tack">แทค ภรัณยู โรจนวุฒิธรรม</a> on 3 พฤศจิกายน 2015</blockquote>
</div></div>
<p>#ถึงเป็นควาย #ก็เซฟชีวิตผู้โดยสารทุกคนจากความชิบหายมานักต่อนักแล้วนะคะ"</p> <p><em>ขอขอบคุณข้อมูลจาก <a href="https://www.facebook.com/CrewabsCabincrew/photos/a.163266007065328.35057.162290157162913/981295968595657/?type=3">เฟซบุ๊ก Crewabs Cabincrew</a></em></p> <script type="text/javascript">// <![CDATA[ (function(d, s, id) { var js, fjs = d.getElementsByTagName(s)[0]; if (d.getElementById(id)) return; js = d.createElement(s); js.id = id; js.src = "//connect.facebook.net/th_TH/sdk.js#xfbml=1&version=v2.3"; fjs.parentNode.insertBefore(js, fjs);}(document, 'script', 'facebook-jssdk')); // ]]></script> <div class="fb-post" data-href="https://www.facebook.com/CrewabsCabincrew/photos/a.163266007065328.35057.162290157162913/981295968595657/?type=3" data-width="500"> <div class="fb-xfbml-parse-ignore"> <blockquote cite="https://www.facebook.com/CrewabsCabincrew/photos/a.163266007065328.35057.162290157162913/981295968595657/?type=3"> <p>จากใจแอร์สาวบนไฟล์ทที่โดนหนุ่มรถไฟจีบด้วยมุก"ระเบิด"กรณีหนุ่มรถไฟ แซวแอร์ไทยไลอ้อน อยากขอพื้นที่ชี้แจงให้ลูกเรือสาวในไ...</p> Posted by <a href="https://www.facebook.com/CrewabsCabincrew/">Crewabs Cabincrew</a> on <a href="https://www.facebook.com/CrewabsCabincrew/photos/a.163266007065328.35057.162290157162913/981295968595657/?type=3">3 พฤศจิกายน 2015</a></blockquote> </div>
</div>test | FB Content Embed | 2016-01-13T12:33:56.000Z |
|
(?<=## )(.*?)(?= #) | ### Example New Feature ###
This is a short description of the new feature. Group two or more closely related features using a common section with h4 subsections. Link to associated documentation as shown below (based on the number of links).
See also: [Associated Documentation](Associated_Documentation.md)
See also: [Associated Documentation](Associated_Documentation.md) and [Associated Documentation](Associated_Documentation.md)
See also: [Associated Documentation](Associated_Documentation.md), [Associated Documentation](Associated_Documentation.md), and [Associated Documentation](Associated_Documentation.md)
{% endcomment %}
## User Interfaces ##
This section describes new features for user interfaces, including Tempo, sites, and embedded interfaces.
### Sites Revolution ###
#### Tempo Reports in Sites ###
In addition to task reports, actions and record types, designers can now configure sites to have Tempo reports. Making it easier for sites only users to view and analyze data.
<img class="screenshot" src="images/release_notes/SitesTempoReports.png"/>
[configure sites with reports](Sites.md#Configure_a_Site_Page).
#### Inline Task Management ###
Task management has improved for users of all Appian user environments. All task management controls for SAIL [tasks](Tasks.md), including save changes, reassign, and reject, have been moved to above the task form.
The left-hand navigation bar no longer appears in Tempo when viewing SAIL tasks, allowing task forms to occupy the full page width.
These task management controls are now available to [sites](Sites.md) users for the first time.
Users of [embedded](Embedded_Interfaces.md) tasks now have the option to save changes to SAIL tasks.
<img src="images/release_notes/InlineTaskControls.png" class="screenshot"/>
#### User Record in Sites ###
We have made it possible for designers to configure the User record and User record links in sites.
<img class="screenshot" src="images/release_notes/SitesUserRecord.png"/>
#### User Profile in Sites ###
Users can now update their profiles in a site by clicking on their avatar in the header and clicking on the Profile button.
<img class="screenshot" src="images/release_notes/SitesUserProfile.png"/>
#### Wider Sites ###
Following in Tempo's footsteps, sites are now 25% wider, allowing more room for items like charts and graphs.
<img src="images/release_notes_16_3/Wider_Sites.png" />
### Quick Apps Revolution ###
#### Sites Are Now Available for Quick Apps ###
You can now generate a [site](Sites.md) for any [Quick App](Quick_Apps_Designer.md). This allows focused users or users new to Appian to experience the app in a standalone setting.
<img src="images/Quick_Apps/quickAppsSite.png" class="screenshot"/>
Simply check the box when creating or updating a Quick App, or when creating an application through the [application builder](Applications.md#Create_Using_Application_Builder), and a site will be generated with pages for the record list, action, and report. The site also contains a new task report that allows users to see all their tasks and send new ones from any record.
#### New Quick Apps Task Report ###
Each Quick Apps now comes with a task report in addition to the functionality provided in 16.2. This report appears in the Tasks tab in Tempo (and in your site, if you have one for that Quick App) and shows all of the current user's tasks in that Quick App, as well as allowing them to send new tasks directly from the report!
To get this in any of your existing Quick Apps, simply run any update of the app through the Quick Apps Designer, and the task report will be automatically added to your app.
<img src="images/Quick_Apps/quickAppsTaskReport.png" class="screenshot"/>
### Wider Tasks in Tempo
The left-hand navigation bar no longer appears in Tempo when viewing SAIL tasks, allowing task forms to occupy the full page width.
| Extract Headings | 2016-07-11T15:15:04.000Z |
|
### nginx access log regex | (?P<remote_addr>((?:[0-9]{1,3}\.){3}[0-9]{1,3})) (?P<dash>\S+) (?P<remote_user>\S+) \[(?P<time_local>[\w:\/]+\s[+|-]\d{4})\] \"(?P<request>\S+)\s?(?P<path>\S+)?\s?(?P<protocol>\S+)?\" (?P<status_code>\d{3}|-) (?P<body_bytes_sent>\d+|-)\s?\"?(?P<http_referer>[^\"]*)\"?\s\"?(?P<http_user_agent>[^\"]*)\"\s\"?(?P<http_x_forwarded_for>[^\"]*) | 137.184.55.175 - 137.184.55.175 [28/Jul/2022:15:10:09 +0700] "GET /c/version.js HTTP/1.1" 404 18868 "lkk" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36" "agent" | nginx access regex loki | 2022-07-28T11:51:44.000Z |
get image's link and alt in Markdown | !\[(.*?)\]\((.*?)\) | get Markdown image link and alt | 2023-10-27T04:35:56.000Z |
|
^([0-9A-Fa-f]{2}[:-]){5}([0-9A-Fa-f]{2})$ | Regex for MAC address | 2017-06-21T09:22:50.000Z |
||
([+-]?((\d+(\.\d*)?)|(\.\d+))) | 1.0 | Number | 2016-07-28T09:08:08.000Z |
|
\\[[domain;]username[:password]@]hostname\share[\/]path | (?:^((?:(?:\\\\)|(?:\\\\\?\\UNC\\))(?:(?:[^@\\\/]+(?:\:[^@]+@)[^@\\\/\?]+)|(?:[^\\\/?]+)))\\([^\\\/]+)(?:[\\\/]([^?\:]*))?$) | \\?\UNC\server;user:\pas/sw\[email protected]\share\d\r\r
| UNC path | 2018-09-22T20:31:52.000Z |
[0-31][0-24][0-60].Z | 101010Z | regex | 2015-11-18T10:14:02.000Z |
|
Decimal numbers matcher with optional matching for exponent (12.4e7) and optional thousand comma separator matches both 1,234.05 and 1234.05. Also matches negative numbers (-1234.05) | ^-?(0?|(([1-9]{1}\d{0,2})(,\d{1,3})*|[1-9]+\d*))(\.(0{1}|\d*[1-9]{1})(e(0|[1-9]{1}\d*))?)?$ | 12.4e1200000000000000000000000000000000000000000000000000000 | Improved decimal numbers | 2016-06-03T11:32:16.000Z |
[^\[\] ](?:\[.*?\])*?(\[\|\])(?:\[.*?\])*?[^\[\] ] | {title:Opw 364 Dm}
{subtitle:Prijs onze Heer}
{tag:bidstond}
{key:Dm}
{c:Tempo 120}
{c:Maat 4/4}
{c:OPW OK}
[Dm][|][Gm][C][|][Dm][|][Dsus][D][|]
[Gm][|][C7][|][F][|][Asus][A7][|]
[|][Dm]Prijs onze Heer,[|]
Hij alleen is de [|][C]machtige God, [|]
vol van majesteit. [|][Bb]Kom en buig neer,[|]
loof zijn heil’ge [|][A7sus]naam. [|][A7]
[|]Breng dan aan Hem[|]
als een offer een [|][C]zoete geur,[|]
de gebeden van je [|][Bb]hart naar zijn troon.[|]
Geef Hem dank en [|][A7sus]eer. [|][A7]
[|][Dm]De Heer almachtig,[|][Gm]
zijn [C]liefde duurt voor [|][Dm]eeuwig.[|][D]
Zijn [|][Gm]trou[|][C7]w en goedheid gaan ons [|][F]voor.[|][A7]
[|][Dm]Zijn kracht zal nimmer[|][Gm]
[C]falen of ont[|][Dm]breken[|][D]
en zijn [|][Gm]lie[|][C7]fde [|][F]blijft.
{c:1e keer:}
[|][Asus] [A]
{c:Lied herhalen}
[|][Bb] [|][F]
| test | 2020-08-25T23:06:47.000Z |
|
Renaming ROM Files in ROMs Directory | \s*\(.*\)\s* | RomFile01(US).rom
RomFile02 (EU).rom
RomFile03 (USA) .rom
RomFile04 (Japan) .rom
RomFile05 (Europe) .rom | PowerShell RegEx - Renaming ROM Files in ROMs Directory | 2022-09-05T02:00:07.000Z |
delete function comment from begining | (?:(?:\n)?[^\n]*){0,22} | /*
* Copyright 2014, Michael T. Goodrich, Roberto Tamassia, Michael H. Goldwasser
*
* Developed for use with the book:
*
* Data Structures and Algorithms in Java, Sixth Edition
* Michael T. Goodrich, Roberto Tamassia, and Michael H. Goldwasser
* John Wiley & Sons, 2014
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package dsaj.arrays;
import java.util.Arrays;
/** Class for doing encryption and decryption using the Caesar Cipher. */
public class CaesarCipher {
protected char[] encoder = new char[26]; // Encryption array
protected char[] decoder = new char[26]; // Decryption array
/** Constructor that initializes the encryption and decryption arrays */
public CaesarCipher(int rotation) {
for (int k=0; k < 26; k++) {
encoder[k] = (char) ('A' + (k + rotation) % 26);
decoder[k] = (char) ('A' + (k - rotation + 26) % 26);
}
}
/** Returns String representing encrypted message. */
public String encrypt(String message) {
return transform(message, encoder); // use encoder array
}
/** Returns decrypted message given encrypted secret. */
public String decrypt(String secret) {
return transform(secret, decoder); // use decoder array
}
/** Returns transformation of original String using given code. */
private String transform(String original, char[] code) {
char[] msg = original.toCharArray();
for (int k=0; k < msg.length; k++)
if (Character.isUpperCase(msg[k])) { // we have a letter to change
int j = msg[k] - 'A'; // will be value from 0 to 25
msg[k] = code[j]; // replace the character
}
return new String(msg);
}
/** Simple main method for testing the Caesar cipher */
public static void main(String[] args) {
CaesarCipher cipher = new CaesarCipher(3);
System.out.println("Encryption code = " + new String(cipher.encoder));
System.out.println("Decryption code = " + new String(cipher.decoder));
String message = "THE EAGLE IS IN PLAY; MEET AT JOE'S.";
String coded = cipher.encrypt(message);
System.out.println("Secret: " + coded);
String answer = cipher.decrypt(coded);
System.out.println("Message: " + answer); // should be plaintext again
}
}
| delete function comment from begining | 2016-05-11T03:26:04.000Z |
sdsada | ^\/(\S+) | /hel
sacomma
/help me | new | 2015-07-14T06:41:24.000Z |
Parses the V8 StackFrames | at (?:.+\s+\()?(?:.+?:\d+:\d+|[^)]+)\)? | Error: hello my love
at Object.<anonymous> (/Users/MechanicalHuman/Dropbox/Projects/000-portfolio/bin/server.js:17:9)
at Module._compile (module.js:541:32)
at Object.Module._extensions..js (module.js:550:10)
at Module.load (module.js:458:32)
at tryModuleLoad (module.js:417:12)
at Function.Module._load (module.js:409:3)
at Function.Module.runMain (module.js:575:10)
at startup (node.js:160:18)
at node.js:456:3 | V8 Stack | 2016-06-14T16:49:11.000Z |
When a string contains two or more possible filenames in quotes grab the last one and return it as <filename> and <extension> | (\"(?P<filename>[\p{L}\d\s\[\]_,.\-\(\)\+]+\.(?P<extension>\w{1,5}))\"(?!.*\"([\p{L}\d\s\.\[\]_,.\-\(\)\+]+\.\w{1,5})\")) | Re: Author/Series not in file name - Ambler, Eric - "Journey into Fear v.1.0.txt" yEnc (1/2) - "Ambler, Eric - Journey Into Fear [txt].rar" 122.7 kBytes yEnc | Last quoted string in text likely to be a filename | 2016-02-18T22:37:12.000Z |
(?<=c)[0-9]*(?=}|$) | categories<{catalog01_c2975_c3984} | Category | 2020-06-17T09:21:17.000Z |
|
data-videoid="([^<]*)" | data-videoid="eDkYq85r12I" | YouTube Video ID Selection | 2019-09-16T17:33:56.000Z |
|
recipients failed: ([a-zA-Z0-9\._-]+@[a-zA-Z0-9\._-]+\.[a-zA-Z]{2,4}) | [email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: Bad recipient address syntax \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: Bad recipient address syntax \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: <[email protected]>: Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: Bad recipient address syntax \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: Bad recipient address syntax \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \[email protected]: \nSMTP Error: The following recipients failed: [email protected]: : Recipient address rejected: User unknown in virtual mailbox table \ | del email | 2016-09-01T06:25:09.000Z |
|
https:\/\/ | https:// | https:// | 2016-02-15T09:40:06.000Z |
|
([0-9]{1,6}[A-Z]),? | 12A,123dasd 1F, 2F 323F d dsad 123D | SP ZONE SEARCH PATTERN | 2015-12-09T21:30:45.000Z |
|
In case #3: A <p> should be prepended to the beginning of the first paragraph. | (<footer><!\[CDATA\[)\s?(<p>)? | <?xml version="1.0" encoding="utf-8"?>
<content>
<title />
<meta-description />
<meta-robots />
<heading1 />
<canonical />
<footer><![CDATA[ If American cities were superheroes, Des Moines would be an unassuming Peter Parker. This mild Midwestern city's economy could be described as its hidden superpower. It's certainly one of Forbes magazine's darlings: described as a "Best Place for Business" in 2010, and as one of "America's Best Cities for Young Professionals" in 2011.<p>The city is also one of the world's insurance capitals, as the home of headquarters or major offices for Blue Cross Blue Shield, Nationwide Mutual Insurance Company, Principal Financial Group, Aviva, EMC Insurance Companies, and the Meredith Corporation.</p><p>When the city is off-duty it rocks just as hard. Although Forbes profiled the city's friendliness to young professionals, another demographic enjoys Des Moines just as much: families with children. If you're bringing kids with you to the Des Moines area, you'll be happy to known the area has held onto its Midwestern values, and has plenty to do if you're under 18. Start with the Blank Park Zoo, an extremely popular attraction known for its easy-to-navigate layout and its free camel rides. (Just remember what Aladdin told you about camels....) If your kids are more high-adrenaline than that, keep them enthralled with a visit to Adventureland, Des Moines' favorite roller coaster park.</p><p>A number of museums keep Des Moines culturally and intellectually engaged. The best-known among locals is probably the Science Center of Iowa. A hit with all age groups, the live demonstrations, traveling exhibits (such as a current exhibit about Mars), and IMAX theater keep families, school groups, and adults coming back for more. The State Capitol is another point of interest, and a great place for kids to learn about government, democracy, and civic engagement.</p><p>If the adults need an evening out on the town, Des Moines has a lively theatre scene just waiting to be explored. Ballet Des Moines, Des Moines Metro Opera, the Ankeny Community Theatre and the Des Moines Community Theatre, and the Repertory Theatre of Iowa all light up their respective stages with acting, singing, and dancing talent.</p><p>Finally, Des Moines is also a shopper's delight. Find the bargains at Jordan Creek Town Center and Valley West Mall, or look for something more eclectic in the hip Historic East Village, a newly revitalized area filled with boutiques.</p><p>Beneath the polite Midwestern veneer is a hugely fun, dynamic city. Discover Des Moines, and let New Home Source help.</p> ]]></footer>
</content> | Regex to add <p> in the beginning | 2021-11-05T01:37:06.000Z |
Format - cookie_combined
Pattern - combined for all groups | ((?:(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.){3}(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?))[, ].{1,}\[([0-3][0-9]\/\w{3}\/[0-9]{4}):([0-2][0-9]:[0-5][0-9]:[0-5][0-9]) ((?:\+|\-)[0-9]{4})\].{1,}"(GET|POST|HEAD|PUT|DELETE|TRACE|CONNECT) ([\/\w\.\-\?\_\=\*\$\%\:]+).{1,}" (\b\d{3}) (\d+|-) "((?:(?:http(?:s)?:\/\/.)?(www\.)?[-a-zA-Z0-9@:%._\+~#=]{2,256}\.[a-z]{2,24}\b[-a-zA-Z0-9@:%_\+.~#?&\/\/=]*)|-)" "([^"]+)" "([^"]+)"$ | 94.185.250.10 - - [06/Aug/2015:11:34:23 +0200] "GET / HTTP/1.1" 200 686 "-" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.125 Safari/537.36" "username=John Doe; testCookie=testValue" | Apache/Nginx log parser with Cookie | 2015-08-11T10:28:43.000Z |
`(?P<class>\w+)>>(?P<method>(?:\w+):?(?:(?:(?:\w+):)+))` | `GHRequester>>blabla:blabl:` | Match Smalltalk method definition | 2016-01-13T10:25:59.000Z |
|
public\s(\S*)\s(\S*)|=\s(\S*)|"(.*?)" | public bool ShouldMonitorSpoolFiles
{
get
{
return CheckMonitorSpoolFiles(CurrentConfiguration.POSSoftware);
}
}
public bool ExpectingEMFReceipt { get; set; }
public bool ForceEMFPrinting { get; set; }
public bool DisableEMFPrinting{ get; set; }
public bool OnlyValidDeliveryReceipt { get; set; }
public bool ShouldMonitorComPorts
{
get
{
return CheckMonitorCOMPorts(CurrentConfiguration.POSSoftware);
}
}
public static bool CheckMonitorCOMPorts(string processorName)
private string _CurrencyCode = "GBP";
public string CurrencyCode
{
get
{
return _CurrencyCode;
}
set
{
_CurrencyCode = value;
}
}
private string _DontStartasUser = "";
public string DontStartasUser
{
get
{
return _DontStartasUser;
}
set
{
_DontStartasUser = value;
}
}
public bool StartWatcherFromService { get; set; }
private string _OnlyStartasUser = "";
public string OnlyStartasUser
{
get
{
return _OnlyStartasUser;
}
set
{
_OnlyStartasUser = value;
}
}
public int FixedReceiptLineWidth { get; set; }
private string _extraNonFilteredCharactersRegex = "";
public string ExtraNonFilteredCharactersRegex
{
get
{
return _extraNonFilteredCharactersRegex;
}
set
{
_extraNonFilteredCharactersRegex = value;
}
}
| Extract Variables from C# File | 2016-04-08T10:58:39.000Z |
|
Parse nginx error logs with tags | (?<timestamp>\d{4}\/\d{2}\/\d{2} \d{2}:\d{2}:\d{2}) \[(?<level>.*)\]\ (?<process_id>\d*)#(?<thread_id>\d*): (?<message>.*) | 2022/03/02 08:28:02 [notice] 6888#0: using the "epoll" event method
2022/03/02 08:28:02 [notice] 6888#0: start worker processes
2022/03/02 08:28:02 [notice] 6888#0: start worker process 7234
2022/03/02 08:28:02 [notice] 6888#0: start worker process 7235
2022/03/02 08:28:02 [notice] 6888#0: start worker process 7236
2022/03/02 08:28:02 [notice] 6888#0: start worker process 7237
2022/03/02 08:28:02 [notice] 6888#0: start worker process 7238
2022/03/02 08:28:02 [notice] 6888#0: start worker process 7239
2022/03/02 08:28:02 [notice] 6888#0: start worker process 7240
2022/03/02 08:28:02 [notice] 6888#0: start worker process 7241
2022/03/02 08:28:02 [notice] 6888#0: signal 17 (SIGCHLD) received from 6943
2022/03/02 08:28:02 [notice] 6888#0: worker process 6942 exited with code 0
2022/03/02 08:28:02 [notice] 6888#0: worker process 6943 exited with code 0
2022/03/02 08:28:02 [notice] 6888#0: worker process 6944 exited with code 0
2022/03/02 08:28:02 [notice] 6888#0: worker process 6945 exited with code 0
2022/03/02 08:28:02 [notice] 6888#0: signal 29 (SIGIO) received
2022/03/02 08:28:02 [notice] 6888#0: signal 17 (SIGCHLD) received from 6942
2022/03/02 08:28:02 [notice] 6888#0: signal 17 (SIGCHLD) received from 6946
2022/03/02 08:28:02 [notice] 6888#0: worker process 6940 exited with code 0
2022/03/02 08:28:02 [notice] 6888#0: worker process 6946 exited with code 0
2022/03/02 08:28:02 [notice] 6888#0: signal 29 (SIGIO) received
2022/03/02 08:28:02 [notice] 6888#0: signal 17 (SIGCHLD) received from 6939
2022/03/02 08:28:02 [notice] 6888#0: worker process 6939 exited with code 0
2022/03/02 08:28:02 [notice] 6888#0: signal 29 (SIGIO) received
2022/03/02 08:28:02 [notice] 6888#0: signal 17 (SIGCHLD) received from 6941
2022/03/02 08:28:02 [notice] 6888#0: worker process 6941 exited with code 0
2022/03/02 08:28:02 [notice] 6888#0: signal 29 (SIGIO) received | Nginx Error Log Parser | 2022-03-02T09:37:08.000Z |
regex to search URL in CSS | (url\s*\([^()]+\))|(@import[^;]+;) | @import "//static001.geekbang.org/static/infoq/www/css/app.0d41a85d7b732aac5d44bdf04a8b642c.css";
@font-face {
font-family: layui-icon;
src: url(http://foo.com/font/iconfont.eot?v=230-rc1);
src: url(http://foo.com/font/iconfont.eot?v=230-rc1#iefix) format('embedded-opentype'),url(//foo.com/font/iconfont.svg?v=230-rc1#iconfont)
} | css-url | 2019-05-24T02:17:07.000Z |
test | SUT([0-9]{2,4}(_[\d]{2})?)\.apk | IPTVSUT1515.apk
IPTVSUT5.apk
IPTVSUT155.apk
IPTVSUT15135.apk
IPTVSUT1515_18.apk
IPTVSUT1_18.apk
IPTVSUT1515_181.apk
IPTVSUT15145_181.apk
IPTVSUT151_181.apk
IPTVSUT1_181.apk
IPTVSUT151_11.apk
IPTVSUT11_11.apk
| SUT - Package Matching | 2023-11-17T10:18:15.000Z |
Capitalize all first letter of words and remove space
Exemple : aaa bbb ccc -> aaaBbbCcc
| (\b\w+\b) (\b\w+\b) (\b\w+\b) | aaa bbb ccc | Capitalize all first letter of words and remove space | 2018-08-09T00:18:24.000Z |
Matches absolute file paths, such as
C:\Users\username\Documents\filename.txt
The path must contain a file and extension at the end | ^([a-z]:)(((\\|\/)[a-z0-9^&'@{}\[\],$=!\-#\(\)%\.\+~_]+)*(\\|\/))([^\\\/:\*\"<>\|]+\.[a-z0-9]+) | C:\Users\username\abcde\abcd\dd.d | Absolute File Path Validation | 2021-08-22T04:09:21.000Z |
^((| |[^.])+(?:[\uD800-\uDBFF]|<:\w+:\d+>|)(| |[^.])+){1,27}$ | 🤔 | Discord Emojis | 2017-07-17T03:55:42.000Z |
|
This pattern would select the whole image tag | <img[^>]*> | <img src="someimage.png"> | To search for a image tag | 2016-01-27T15:47:11.000Z |
unsplash.com | ^https:\/\/[^/\/.]?unsplash\.com[\/grid]+$ | match url | 2014-12-03T08:53:22.000Z |
|
INSERT INTO TABLE ([fis_RECno], [fis_RECid_DBCno], [fis_RECid_RECno], [fis_SpecRECno], [fis_iptal], [fis_fileid], [fis_hidden], [fis_kilitli], [fis_degisti], [fis_checksum], [fis_create_user], [fis_create_date], [fis_lastup_user], [fis_lastup_date], [fis_special1], [fis_special2], [fis_special3], [fis_firmano], [fis_subeno], [fis_maliyil], [fis_tarih], [fis_sira_no], [fis_tur], [fis_hesap_kod], [fis_satir_no], [fis_aciklama1], [fis_meblag0], [fis_meblag1], [fis_meblag2], [fis_meblag3], [fis_meblag4], [fis_meblag5], [fis_meblag6], [fis_sorumluluk_kodu], [fis_ticari_tip], [fis_ticari_DBCno], [fis_ticari_RECno], [fis_kurfarkifl], [fis_ticari_evraktip], [fis_tic_evrak_seri], [fis_tic_evrak_sira], [fis_tic_belgeno], [fis_tic_belgetarihi], [fis_yevmiye_no], [fis_katagori], [fis_evrak_DBCno], [fis_fmahsup_tipi], [fis_fozelmahkod], [fis_grupkodu], [fis_aktif_pasif], [fis_proje_kodu])
VALUES ('65918', '0', '65918', '0', '0', '2', '0', '0', '0', '0', '37', '2016-03-01 17:19:16.413', '37', '2016-03-01 17:19:16.413', N'', N'', N'', '0', '0', '2016', '2016-01-06 00:00:00.000', '180', '0', N'689.00.003', '5', N'yuvarlama', '-0.04', '-0.013707549433', '-0.04', '0', '0', '0', '0', N'', '0', '0', '0', '0', '0', N'', '0', N'', '1899-12-30 00:00:00.000', '2086', '0', '0', '0', N'', N'', '0', N'');
| INSERT INTO[\s]*(.*?)[\s]*\((.*?)\)\s*VALUES\s*\((.*?)\)[\s|;]* | INSERT INTO TABLE ([fis_RECno], [fis_RECid_DBCno], [fis_RECid_RECno], [fis_SpecRECno], [fis_iptal], [fis_fileid], [fis_hidden], [fis_kilitli], [fis_degisti], [fis_checksum], [fis_create_user], [fis_create_date], [fis_lastup_user], [fis_lastup_date], [fis_special1], [fis_special2], [fis_special3], [fis_firmano], [fis_subeno], [fis_maliyil], [fis_tarih], [fis_sira_no], [fis_tur], [fis_hesap_kod], [fis_satir_no], [fis_aciklama1], [fis_meblag0], [fis_meblag1], [fis_meblag2], [fis_meblag3], [fis_meblag4], [fis_meblag5], [fis_meblag6], [fis_sorumluluk_kodu], [fis_ticari_tip], [fis_ticari_DBCno], [fis_ticari_RECno], [fis_kurfarkifl], [fis_ticari_evraktip], [fis_tic_evrak_seri], [fis_tic_evrak_sira], [fis_tic_belgeno], [fis_tic_belgetarihi], [fis_yevmiye_no], [fis_katagori], [fis_evrak_DBCno], [fis_fmahsup_tipi], [fis_fozelmahkod], [fis_grupkodu], [fis_aktif_pasif], [fis_proje_kodu])
VALUES ('65918', '0', '65918', '0', '0', '2', '0', '0', '0', '0', '37', '2016-03-01 17:19:16.413', '37', '2016-03-01 17:19:16.413', N'', N'', N'', '0', '0', '2016', '2016-01-06 00:00:00.000', '180', '0', N'689.00.003', '5', N'yuvarlama', '-0.04', '-0.013707549433', '-0.04', '0', '0', '0', '0', N'', '0', '0', '0', '0', '0', N'', '0', N'', '1899-12-30 00:00:00.000', '2086', '0', '0', '0', N'', N'', '0', N'');
| insert into.. | 2016-03-01T15:29:23.000Z |
An updated S3 log analyzer. I found that my logs sometimes had strings quoted, so I needed to add possible handling for that. | ^(\S+) (\S+) \[([\w:/]+\s[+\-]\d{4})\] ([\d.]+) (\S+) (\S+) (\S+) (\S+) \\?"(.+?)\\?" (\d{3}) (\S+) (\S+) (\S+) (\d+) (\S+) \\?"(.+?)\\?" \\?"(.+?)\\?" (\S+) | S3 log analysis | 2014-11-30T18:31:41.000Z |
|
(\d+-\d+-\d+\s\d+:\d+:\d+,\d+)\s(\S+\s-\s\S+)\s(\w+)\s(.*)(.*) | 2019-10-20 17:01:17,252 [//127.0.0.1/ - /envcenter/shippinglist/query_shippinglist_settings.json?productId=ap_philippines] ERROR impl.GitRepositoryInfoRemoteImpl - 请求gitlab api失败
java.io.FileNotFoundException: http://gitlab.alipay-inc.com/api/v3/projects/intl-sre-bm%2Fdevopaas-agent-id | Java Line | 2019-10-28T12:02:17.000Z |
|
Validação:
Data
------------
d/m/yy
d/mm/yyyy
dd/m/yyyy
dd/mm/yy
d/m/yyyy
d/mm/yy
dd/mm/yyyy
Data e Hora: (as mesmas de datas acima)
-------------
dd/mm/yyyy 00:00:00
dd/mm/yyyy 0:0:0
dd/mm/yyyy 19:00:00
dd/mm/yyyy 19:0:0
dd/mm/yyyy 19:0:0 | ^(\b([0-3]{1}?[0-9]{1})(\/|-)([0-1]{1}?[0-9]{1})(\/|-)([1-2]{1}[0-9]{3})( |-| - )([1-9]{1}[0-9]{1}|[0-2]{1}[0-9]{1}):([0-5]{1}?[0-9]{1}):([0-5]{1}?[0-9]{1})\b)|(\b([0-3]{1}?[0-9]{1})(\/|-)([0-1]{1}?[0-9]{1})(\/|-)([1-2]{1}[0-9]{3})\b)$ | 13/08/2015 15:07:01
13/08/2015-15:07:01
13/08/2015 - 15:07:01
01/01/2015 - 11:00:00
01/01/2015 - 22:10:55
01/01/2015 | isDateTime | 2015-11-05T19:15:57.000Z |
Pull zip download ID from default links. Works with datadelivery and datadelivery1 | (\d*\.zip) | http://llpdata.tgs.com/DataDelivery1/LogLine1//14815/2011905/2569689.zip | tgs data delivery .zip ID | 2015-09-11T15:16:40.000Z |
This is used when removing Script Tags and their content. | ((<(\s*)(script)(\s*)(\/*)(\s*)>((.|\n)*?)<(\s*)(\/+)(\s*)(script)(\s*)>)|<(\s*)(\/*)(\s*)(script)(\s*)(\/*)(\s*)>)* | <script>alert('Hello World');
alert('Hello Back');<script>alert('Hello World');
alert('Hello Back');</script></script> | Script Tags | 2016-03-22T13:30:58.000Z |
\/\*(.*?)\*\/ | comment | 2016-09-02T05:51:29.000Z |
Subsets and Splits