Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- {PABC взлом простой замены
- биграммы триграммы заряжены в регулярки.
- помощь в расшифровке простой замены полным перебором.
- различает наличие плохих биграмм в строке
- скормить азбуке-4 можно это
- ъч гютъдя ьктрекдёьюдёт, цюжиб дъюёвтъ ьб дъквёщ т ёкъьюёз, ьтпкжю гюшкк
- азбуку4 преобразует шифровку в такую
- DL HACDFN GBCPQBFEGAFEC, MAIOJ FDAEKCD GJ FDBKER C EBDGAES, GCTBIA HAUBB
- задаю предллог однобуквенный, угадываю букву е, а также м
- первый же варик в полном переборе дает очень близкое значение.
- идет полный перебор триграммы на все буквы
- таки расколол полным перебором
- "Мы боимся неизвестности, когда смотрим на смерть и темноту, ничего более"
- ъч гютъдя ьктрекдёьюдёт, цюжиб дъюёвтъ ьб дъквёщ т ёкъьюёз, ьтпкжю гюшкк
- }
- const// частотные переменные алфавита
- о=1;
- а=2;
- е=3;
- и=4;
- н=5;
- т=6;
- с=7;
- р=8;
- в=9;
- л=10;
- к=11;
- м=12;
- д=13;
- п=14;
- у=15;
- я=16;
- з=17;
- ы=18;
- б=19;
- г=20;
- ч=21;
- й=22;
- ь=23;
- х=24;
- ё=25;
- ж=26;
- ш=27;
- ю=28;
- ц=29;
- ъ=30;
- щ=31;
- э=32;
- ф=33;
- var
- s: string='DL HACDFN GBCPQBFEGAFEC, MAIOJ FDAEKCD GJ FDBKER C EBDGAES, GCTBIA HAUBB';
- n: integer=0;
- az: string='оаеинтсрвлкмдпуязыбгчйьхёжш';//юцъщэф'; обрезал наугад для скорости
- vv: char;
- s2: string;
- begin
- for var a:=1 to length(az) do
- for var b:=1 to length(az) do if b in [a] then continue else if not (b in [е]) then continue else
- for var c:=1 to length(az) do if c in [a,b] then continue else if not (c in [о,и,с,в,к,у,я]) then continue else
- for var d:=1 to length(az) do if d in [a,b,c] then continue else if not (d in [м]) then continue else
- for var e:=1 to length(az) do if e in [a,b,c,d] then continue else
- for var f:=1 to length(az) do if f in [a,b,c,d,e] then continue else
- for var g:=1 to length(az) do if g in [a,b,c,d,e,f] then continue else
- begin
- s2:='';
- for var iii:=1 to length(s) do begin
- vv:=s[iii];
- case vv of
- 'A': vv:=az[a];
- 'B': vv:=az[b];
- 'C': vv:=az[c];
- 'D': vv:=az[d];
- 'E': vv:=az[e];
- 'F': vv:=az[f];
- 'G': vv:=az[g];
- ' ',',': ;
- else vv:='_';
- end;
- s2:=s2+vv;
- end;
- if Regex.IsMatch(s2, 'аъ|аы|аь|бй|бп|бф|бэ|вй|вф|вэ|гб|гг|гё|гж|гй|гп|гх|гц|'+
- 'гщ|гъ|гы|гэ|гя|дй|дф|дэ|еъ|еы|еь|еэ|ёа|ёе|ёё|ёи|ёо|ёу|ёф|ёц|ёъ|ёы|ёь|ёэ|ёю|'+
- 'ёя|жв|жз|жй|жп|жт|жф|жх|жш|жщ|жъ|жы|жэ|жю|жя|зй|зп|зф|зх|зщ|зэ|иъ|иы|иь|иэ|'+
- 'йа|йв|йг|йё|йж|йи|йй|йп|йу|йх|йъ|йы|йь|йэ|йю|йя|кб|кг|кё|кй|км|кп|кч|кщ|къ|'+
- 'кы|кь|кэ|кю|кя|лй|лр|лх|лъ|лэ|мд|мй|мъ|мэ|нй|нл|нп|нх|нъ|нэ|оъ|оы|оь|пб|пв|'+
- 'пг|пд|пж|пз|пй|пм|пх|пъ|пэ|рй|ръ|рэ|сй|тй|уё|уъ|уы|уь|фб|фв|фг|фд|фж|фз|фй|'+
- 'фк|фп|фх|фц|фш|фщ|фъ|фэ|хб|хё|хж|хз|хй|хк|хф|хх|хц|хщ|хы|хь|хэ|хю|хя|цг|цд|'+
- 'цё|цж|цз|цй|цл|цн|цп|цр|цс|цт|цф|цх|цч|цш|цщ|цъ|ць|цэ|цю|ця|чб|чг|чд|чж|чз|'+
- 'чй|чп|чс|чф|чх|чц|чч|чщ|чъ|чы|чэ|чю|чя|шб|шд|шж|шз|шй|шс|шф|шх|шч|шщ|шъ|шы|'+
- 'шэ|шя|щб|щв|щг|щд|щж|щз|щй|щк|щл|щм|щп|щс|щт|щф|щх|щц|щч|щш|щщ|щъ|щы|щэ|щю|'+
- 'щя|ъа|ъб|ъв|ъг|ъд|ъж|ъз|ъи|ъй|ък|ъл|ъм|ън|ъо|ъп|ър|ъс|ът|ъу|ъф|ъх|ъц|ъч|ъш|'+
- 'ъщ|ъъ|ъы|ъь|ъэ|ыа|ыё|ыо|ыф|ыъ|ыы|ыь|ыэ|ыю|ьа|ьй|ьл|ьр|ьу|ьф|ьъ|ьы|ьь|эа|эб|'+
- 'эв|эе|эё|эж|эи|эо|эу|эц|эч|эщ|эъ|эы|эь|ээ|эю|эя|юе|юё|юй|юо|юу|юъ|юы|юь|юэ|'+
- 'юя|яа|яё|яо|яф|яъ|яы|яь|яэ') // наличие запрещенных биграмм
- then continue;
- // триграммы ваш выход
- //а**
- if Regex.IsMatch(s2, 'аа[бвгдеёжзийлмнопрстуфхцчшщэюя]') then continue;
- if Regex.IsMatch(s2, 'аб[бгджзмнтхцчшщъьюя]') then continue;
- if Regex.IsMatch(s2, 'ав[бвжмпхъ]') then continue;
- if Regex.IsMatch(s2, 'аг[вдзкмстфчшью]') then continue;
- if Regex.IsMatch(s2, 'ад[бгжзхщю]') then continue;
- if Regex.IsMatch(s2, 'ае[абеёжинопруфцчщюя]') then continue;
- if Regex.IsMatch(s2, 'аё[бвгджзйклпрсхчщ]') then continue;
- if Regex.IsMatch(s2, 'аж[блрсцчь]') then continue;
- if Regex.IsMatch(s2, 'аз[жстшюя]') then continue;
- if Regex.IsMatch(s2, 'аи[адёжийортуфхцшщю]') then continue;
- if Regex.IsMatch(s2, 'ай[безрфцч]') then continue;
- if Regex.IsMatch(s2, 'ак[вдзнфхш]') then continue;
- if Regex.IsMatch(s2, 'ал[бвгжзнпцшщ]') then continue;
- if Regex.IsMatch(s2, 'ам[гжфхчщью]') then continue;
- if Regex.IsMatch(s2, 'ан[бвзм]') then continue;
- if Regex.IsMatch(s2, 'ао[авгеёжзийклмнопртуфхцчшщэюя]') then continue;
- if Regex.IsMatch(s2, 'ап[ёсфцшщю]') then continue;
- if Regex.IsMatch(s2, 'ар[зпц]') then continue;
- if Regex.IsMatch(s2, 'ас[бгдёжзрфцъэю]') then continue;
- if Regex.IsMatch(s2, 'ат[бгдёжзпчшщъэ]') then continue;
- if Regex.IsMatch(s2, 'ау[абвгджиймоуцшщэюя]') then continue;
- if Regex.IsMatch(s2, 'аф[ёлмсфюя]') then continue;
- if Regex.IsMatch(s2, 'ах[гдпсчшъ]') then continue;
- if Regex.IsMatch(s2, 'ац[бмоуы]') then continue;
- if Regex.IsMatch(s2, 'ач[влмртш]') then continue;
- if Regex.IsMatch(s2, 'аш[вгрцшю]') then continue;
- if Regex.IsMatch(s2, 'ащ[норь]') then continue;
- //if Regex.IsMatch(s2, 'аъ[]') then continue;
- //if Regex.IsMatch(s2, 'аы[]') then continue;
- //if Regex.IsMatch(s2, 'аь[]') then continue;
- if Regex.IsMatch(s2, 'аэ[гдзйкмнпрстфхш]') then continue;
- if Regex.IsMatch(s2, 'аю[абвгджзиклмнпрфхцчю]') then continue;
- if Regex.IsMatch(s2, 'ая[бгдежзийкпручшщюя]') then continue;
- //б**----------------------------------------------------------------------------------------------------
- if Regex.IsMatch(s2, 'ба[аёиопфщэ]') then continue;
- if Regex.IsMatch(s2, 'бб[бвгдеёжзиклмнрстухцчшщъыьюя]') then continue;// аббат
- if Regex.IsMatch(s2, 'бв[бвгдёжзклмнпрстухцчшщъыью]') then continue;
- if Regex.IsMatch(s2, 'бг[авдезиклмнстуфчшью]') then continue;
- if Regex.IsMatch(s2, 'бд[бвгджзиклмнопрстхцчшщъыьюя]') then continue;
- if Regex.IsMatch(s2, 'бе[абёмопуфхю]') then continue;
- if Regex.IsMatch(s2, 'бё[бвгджзйклмпрстхчшщ]') then continue;
- if Regex.IsMatch(s2, 'бж[абгджиклмнорсуцчь]') then continue;
- if Regex.IsMatch(s2, 'бз[абвгдеёжзиклмнрстуцчшъыьюя]') then continue;
- if Regex.IsMatch(s2, 'би[агёзипухщ]') then continue;
- //if Regex.IsMatch(s2, 'бй[]') then continue;
- if Regex.IsMatch(s2, 'бк[вджзкнрстфхцш]') then continue;
- if Regex.IsMatch(s2, 'бл[бвгджзклмнпстфцчшщы]') then continue;
- if Regex.IsMatch(s2, 'бм[бвгёжзиклмнпрстфхцчшщьюя]') then continue;
- if Regex.IsMatch(s2, 'бн[бвгджзкмнрстфцчшщь]') then continue;
- if Regex.IsMatch(s2, 'бо[аёоухцэ]') then continue;
- //if Regex.IsMatch(s2, 'бп[]') then continue;
- if Regex.IsMatch(s2, 'бр[бвгджзклмнпстфхцчшщь]') then continue;
- if Regex.IsMatch(s2, 'бс[бвгдеёжзилмнпрсфхцчшщъьэю]') then continue;
- if Regex.IsMatch(s2, 'бт[абвгдеёжзклмнопрстуфхцчшщъыьэю]') then continue;
- if Regex.IsMatch(s2, 'бу[иопуцщэ]') then continue;
- //if Regex.IsMatch(s2, 'бф[]') then continue;
- if Regex.IsMatch(s2, 'бх[агдеилмнпрстучшъ]') then continue;
- if Regex.IsMatch(s2, 'бц[бвеикмц]') then continue;
- if Regex.IsMatch(s2, 'бч[авеёклмнортушь]') then continue;
- if Regex.IsMatch(s2, 'бш[вгёкмнопртцшью]') then continue;
- if Regex.IsMatch(s2, 'бщ[ёорь]') then continue;
- if Regex.IsMatch(s2, 'бъ[ёю]') then continue;
- if Regex.IsMatch(s2, 'бы[бгджзипруцшщя]') then continue;
- if Regex.IsMatch(s2, 'бь[бвгдёжзикмнопстхцчшщэ]') then continue;
- //if Regex.IsMatch(s2, 'бэ[]') then continue;
- if Regex.IsMatch(s2, 'бю[абгджзиклмнпртфхцчшщю]') then continue;
- if Regex.IsMatch(s2, 'бя[бвгдежийкмнпрсухцшюя]') then continue;
- //в**----------------------------------------------------------------------------------------------------
- if Regex.IsMatch(s2, 'ва[абёикопуфчэ]') then continue;
- if Regex.IsMatch(s2, 'вб[абвгдёжзикмностухцчшщъыьюя]') then continue;
- if Regex.IsMatch(s2, 'вв[бвгджзиклмнпрстухцчшщъыьюя]') then continue;
- if Regex.IsMatch(s2, 'вг[авдзикмнорстфчшь]') then continue;
- if Regex.IsMatch(s2, 'вд[бгдёжзклмнпстхцчшщъьюя]') then continue;
- if Regex.IsMatch(s2, 'ве[абёиопуфх]') then continue;
- if Regex.IsMatch(s2, 'вё[бвгджйкмпхчщ]') then continue;
- if Regex.IsMatch(s2, 'вж[бгдеёжклмнорсуцчь]') then continue;
- if Regex.IsMatch(s2, 'вз[еёжзикстуцчшью]') then continue;
- if Regex.IsMatch(s2, 'ви[бёпуф]') then continue;
- //if Regex.IsMatch(s2, 'вй[]') then continue;
- if Regex.IsMatch(s2, 'вк[вджзклстфхцш]') then continue;
- if Regex.IsMatch(s2, 'вл[бвгджзклмнпстуфцчшщыь]') then continue;
- if Regex.IsMatch(s2, 'вм[абвгёжзиклмнопрстуфхцчшщыьюя]') then continue;
- if Regex.IsMatch(s2, 'вн[бвгджзкмрстфцчшщь]') then continue;
- if Regex.IsMatch(s2, 'во[ауфцщэ]') then continue;
- if Regex.IsMatch(s2, 'вп[ёкнпстфцчшщыьюя]') then continue;
- if Regex.IsMatch(s2, 'вр[бвгдёжзклмнпрстфхцчшщыьюя]') then continue;
- if Regex.IsMatch(s2, 'вс[бвгджзинрсфцчшщъэ]') then continue;
- if Regex.IsMatch(s2, 'вт[абвгдеёжзиклмнпстуфхцчшщъыьэю]') then continue;
- if Regex.IsMatch(s2, 'ву[бвджзилопуфцэ]') then continue;
- //if Regex.IsMatch(s2, 'вф[]') then continue;
- if Regex.IsMatch(s2, 'вх[авгдеилмнпрстучшъ]') then continue;
- if Regex.IsMatch(s2, 'вц[бвикмц]') then continue;
- if Regex.IsMatch(s2, 'вч[авёклмнртушь]') then continue;
- if Regex.IsMatch(s2, 'вш[вгёклмнопртцшью]') then continue;
- if Regex.IsMatch(s2, 'вщ[аеёноруь]') then continue;
- if Regex.IsMatch(s2, 'въ[ёюя]') then continue;
- if Regex.IsMatch(s2, 'вы[цщ]') then continue;
- if Regex.IsMatch(s2, 'вь[бвгдёжзкмнопхцчшщэ]') then continue;
- //if Regex.IsMatch(s2, 'вэ[]') then continue;
- if Regex.IsMatch(s2, 'вю[абвгджзиклмнпстфхцчшщю]') then continue;
- if Regex.IsMatch(s2, 'вя[бвгеийкпруцчшюя]') then continue;
- //г**----------------------------------------------------------------------------------------------------
- if Regex.IsMatch(s2, 'га[абёиопцщэ]') then continue;
- //if Regex.IsMatch(s2, 'гб[]') then continue;
- if Regex.IsMatch(s2, 'гв[бвгдеёжзклмнпрстухцчшщъыьюя]') then continue;
- //if Regex.IsMatch(s2, 'гг[]') then continue;
- if Regex.IsMatch(s2, 'гд[бвгдёжзиклмнопрсухцчшщъыьюя]') then continue;
- if Regex.IsMatch(s2, 'ге[абвдёжзикпстуфхцчшщ]') then continue;
- //if Regex.IsMatch(s2, 'гё[]') then continue;
- //if Regex.IsMatch(s2, 'гж[]') then continue;
- if Regex.IsMatch(s2, 'гз[бвгдеёжзиклмнорстуцчшъыьюя]') then continue;
- if Regex.IsMatch(s2, 'ги[аёжуфцшщ]') then continue;
- //if Regex.IsMatch(s2, 'гй[]') then continue;
- if Regex.IsMatch(s2, 'гк[вдежзклнрстфхцш]') then continue;
- if Regex.IsMatch(s2, 'гл[бвгджзклмнпстфцчшщью]') then continue;
- if Regex.IsMatch(s2, 'гм[бвгеёжзиклмнопрстуфхцчшщыьюя]') then continue;
- if Regex.IsMatch(s2, 'гн[бвгджзкмнрстфцчшщыью]') then continue;
- if Regex.IsMatch(s2, 'го[абёкхшэя]') then continue;
- //if Regex.IsMatch(s2, 'гп[]') then continue;
- if Regex.IsMatch(s2, 'гр[бвгдёжзклмнпрстфхцчшщью]') then continue;
- if Regex.IsMatch(s2, 'гс[абвгдеёжзилмнопрстуфхцчшщъыьэю]') then continue;
- if Regex.IsMatch(s2, 'гт[абвгдёжзклмнопрстуфхцчшщъыьэ]') then continue;
- if Regex.IsMatch(s2, 'гу[агзийопуфхцэя]') then continue;
- if Regex.IsMatch(s2, 'гф[аеёилмнрстуфчыьюя]') then continue;
- //if Regex.IsMatch(s2, 'гх[]') then continue;
- //if Regex.IsMatch(s2, 'гц[]') then continue;
- if Regex.IsMatch(s2, 'гч[вклмнортушь]') then continue;
- if Regex.IsMatch(s2, 'гш[вгёклмнопртцшью]') then continue;
- //if Regex.IsMatch(s2, 'гщ[]') then continue;
- //if Regex.IsMatch(s2, 'гъ[]') then continue;
- //if Regex.IsMatch(s2, 'гы[]') then continue;
- if Regex.IsMatch(s2, 'гь[бвгдеёжзикмнопстхцчшщэюя]') then continue;
- //if Regex.IsMatch(s2, 'гэ[]') then continue;
- if Regex.IsMatch(s2, 'гю[авгджзиклмнпрстфхцчшщю]') then continue;
- //if Regex.IsMatch(s2, 'гя[]') then continue;
- //д**----------------------------------------------------------------------------------------------------
- if Regex.IsMatch(s2, 'да[абзиопуфщэ]') then continue;
- if Regex.IsMatch(s2, 'дб[абвгдёжзклмнрстухцчшщъыьюя]') then continue;
- if Regex.IsMatch(s2, 'дв[бвгджзклмнпрстхцчшщъыью]') then continue;
- if Regex.IsMatch(s2, 'дг[авдезиклмнрстуфчшью]') then continue;
- if Regex.IsMatch(s2, 'дд[бвгджзклмнопрстухцчшщъыьюя]') then continue;
- if Regex.IsMatch(s2, 'де[ёзиоухщ]') then continue;
- if Regex.IsMatch(s2, 'дё[бгдзйклпсхчщ]') then continue;
- if Regex.IsMatch(s2, 'дж[бгдёжклмнрсуцчь]') then continue;
- if Regex.IsMatch(s2, 'дз[абвгдеёжзиклморстуцчшъыьюя]') then continue;
- if Regex.IsMatch(s2, 'ди[бгёжохщ]') then continue;
- //if Regex.IsMatch(s2, 'дй[]') then continue;
- if Regex.IsMatch(s2, 'дк[вджзкнстфхцш]') then continue;
- if Regex.IsMatch(s2, 'дл[бвгдёжзклмнпстфцчшщью]') then continue;
- if Regex.IsMatch(s2, 'дм[абвгёжзклмнпрстуфхцчшщыьюя]') then continue;
- if Regex.IsMatch(s2, 'дн[бвгджзкмнрстфцчшщь]') then continue;
- if Regex.IsMatch(s2, 'до[аёфцэя]') then continue;
- if Regex.IsMatch(s2, 'дп[еклнпстфцчшщыьюя]') then continue;
- if Regex.IsMatch(s2, 'др[бвгдёжзклмнпрстфхцчшщью]') then continue;
- if Regex.IsMatch(s2, 'дс[бгдёжзилнпрсфхцчшщъьэюя]') then continue;
- if Regex.IsMatch(s2, 'дт[бгджзклмнпстуфхцчшщъыьэю]') then continue;
- if Regex.IsMatch(s2, 'ду[гдзийоуфц]') then continue;
- //if Regex.IsMatch(s2, 'дф[]') then continue;
- if Regex.IsMatch(s2, 'дх[агдеилмнпрстучшъ]') then continue;
- if Regex.IsMatch(s2, 'дц[бвикмц]') then continue;
- if Regex.IsMatch(s2, 'дч[авёклмнортшь]') then continue;
- if Regex.IsMatch(s2, 'дш[вгёклмопртцшью]') then continue;
- if Regex.IsMatch(s2, 'дщ[аёиноруь]') then continue;
- if Regex.IsMatch(s2, 'дъ[я]') then continue;
- if Regex.IsMatch(s2, 'ды[гджзилнпстуцчщя]') then continue;
- if Regex.IsMatch(s2, 'дь[вгдёжзнопсхцчшщэ]') then continue;
- //if Regex.IsMatch(s2, 'дэ[]') then continue;
- if Regex.IsMatch(s2, 'дю[авгджзиклмнпртфхцчщю]') then continue;
- if Regex.IsMatch(s2, 'дя[бвгежзйклпруцчшюя]') then continue;
- //е**----------------------------------------------------------------------------------------------------
- if Regex.IsMatch(s2, 'еа[авгеёжзийкмосуфхцчшщэюя]') then continue;
- if Regex.IsMatch(s2, 'еб[бвгджзкмтхчшщъью]') then continue;
- if Regex.IsMatch(s2, 'ев[бвджзмтхъю]') then continue;
- if Regex.IsMatch(s2, 'ег[взмфью]') then continue;
- if Regex.IsMatch(s2, 'ед[бгджтхцщъю]') then continue;
- if Regex.IsMatch(s2, 'ее[абгеёжилопуфцчщя]') then continue;
- if Regex.IsMatch(s2, 'её[бвгджзйклмпрсхчщ]') then continue;
- if Regex.IsMatch(s2, 'еж[бгжмрсч]') then continue;
- if Regex.IsMatch(s2, 'ез[счъюя]') then continue;
- if Regex.IsMatch(s2, 'еи[абгдеёжийкопртуфцшщюя]') then continue;
- if Regex.IsMatch(s2, 'ей[емощ]') then continue;
- if Regex.IsMatch(s2, 'ек[вжзфх]') then continue;
- if Regex.IsMatch(s2, 'ел[бвгджзмнпфцшщ]') then continue;
- if Regex.IsMatch(s2, 'ем[бвгрфхшщ]') then continue;
- if Regex.IsMatch(s2, 'ен[вжмрф]') then continue;
- if Regex.IsMatch(s2, 'ео[авгеёзийклноуфцчшщэюя]') then continue;
- if Regex.IsMatch(s2, 'еп[ёпшщю]') then continue;
- if Regex.IsMatch(s2, 'ер[фщ]') then continue;
- if Regex.IsMatch(s2, 'ес[бвгджзфхщъэю]') then continue;
- if Regex.IsMatch(s2, 'ет[бджзмпфцщъэю]') then continue;
- if Regex.IsMatch(s2, 'еу[аезийноптуфхцшщэюя]') then continue;
- if Regex.IsMatch(s2, 'еф[аеёмнстуфчыьюя]') then continue;
- if Regex.IsMatch(s2, 'ех[гдмпрстчшъ]') then continue;
- if Regex.IsMatch(s2, 'ец[бвмуц]') then continue;
- if Regex.IsMatch(s2, 'еч[влмрш]') then continue;
- if Regex.IsMatch(s2, 'еш[вгмпрцшю]') then continue;
- if Regex.IsMatch(s2, 'ещ[н]') then continue;
- //if Regex.IsMatch(s2, 'еъ[]') then continue;
- //if Regex.IsMatch(s2, 'еы[]') then continue;
- //if Regex.IsMatch(s2, 'еь[]') then continue;
- //if Regex.IsMatch(s2, 'еэ[]') then continue;
- if Regex.IsMatch(s2, 'ею[абвгджзиклмнпрфхцчшю]') then continue;
- if Regex.IsMatch(s2, 'ея[бгдежзийкпухцчшщюя]') then continue;
- //ё**----------------------------------------------------------------------------------------------------
- //if Regex.IsMatch(s2, 'ёа[]') then continue;
- if Regex.IsMatch(s2, 'ёб[абвгдёжзиклмнорстухцчшщъьюя]') then continue;
- if Regex.IsMatch(s2, 'ёв[бвгдеёжзилмнопрстхцчшщъьюя]') then continue;
- if Regex.IsMatch(s2, 'ёг[авдезлмртуфчью]') then continue;
- if Regex.IsMatch(s2, 'ёд[бвгдеёжзилмнпрстхцчшщъыьюя]') then continue;
- //if Regex.IsMatch(s2, 'ёе[]') then continue;
- //if Regex.IsMatch(s2, 'ёё[]') then continue;
- if Regex.IsMatch(s2, 'ёж[бгдёжлморсцчь]') then continue;
- if Regex.IsMatch(s2, 'ёз[бвгёжзилмрстуцчшъьюя]') then continue;
- //if Regex.IsMatch(s2, 'ёи[]') then continue;
- if Regex.IsMatch(s2, 'ёй[бдезклмнорстфцчшщ]') then continue;
- if Regex.IsMatch(s2, 'ёк[вджзкнртфхц]') then continue;
- if Regex.IsMatch(s2, 'ёл[бвгдеёжзилмнпфцчшщьюя]') then continue;
- if Regex.IsMatch(s2, 'ём[бвгёжзилмпруфхцчшщьюя]') then continue;
- if Regex.IsMatch(s2, 'ён[бвгдёжзимрстфцчшщьюя]') then continue;
- //if Regex.IsMatch(s2, 'ёо[]') then continue;
- if Regex.IsMatch(s2, 'ёп[еёипрстуфцчшщыьюя]') then continue;
- if Regex.IsMatch(s2, 'ёр[бвеёжзимопрфхцчшщьюя]') then continue;
- if Regex.IsMatch(s2, 'ёс[бвгдеёжзилмнопруфхцчшщъьэюя]') then continue;
- if Regex.IsMatch(s2, 'ёт[бвгдёжзмптфхцчшщъэя]') then continue;
- //if Regex.IsMatch(s2, 'ёу[]') then continue;
- //if Regex.IsMatch(s2, 'ёф[]') then continue;
- if Regex.IsMatch(s2, 'ёх[агдеимнотушъ]') then continue;
- //if Regex.IsMatch(s2, 'ёц[]') then continue;
- if Regex.IsMatch(s2, 'ёч[авёилмнортушь]') then continue;
- if Regex.IsMatch(s2, 'ёш[вгёилмнопртцшю]') then continue;
- if Regex.IsMatch(s2, 'ёщ[ёиноруь]') then continue;
- //if Regex.IsMatch(s2, 'ёъ[]') then continue;
- //if Regex.IsMatch(s2, 'ёы[]') then continue;
- //if Regex.IsMatch(s2, 'ёь[]') then continue;
- //if Regex.IsMatch(s2, 'ёэ[]') then continue;
- //if Regex.IsMatch(s2, 'ёю[]') then continue;
- //if Regex.IsMatch(s2, 'ёя[]') then continue;
- //ж**----------------------------------------------------------------------------------------------------
- if Regex.IsMatch(s2, 'жа[абгёзопуфцшэ]') then continue;
- if Regex.IsMatch(s2, 'жб[бвгдёжзиклмнрстхцчшщъьюя]') then continue;
- //if Regex.IsMatch(s2, 'жв[]') then continue;
- if Regex.IsMatch(s2, 'жг[авдезикмнорстфчшью]') then continue;
- if Regex.IsMatch(s2, 'жд[бвгджзклмнпрстхцчшщъ]') then continue;
- if Regex.IsMatch(s2, 'же[адёжзиопуфхщя]') then continue;
- if Regex.IsMatch(s2, 'жё[бджзйкпхчшщ]') then continue;
- if Regex.IsMatch(s2, 'жж[бгджклмнорсцчь]') then continue;
- //if Regex.IsMatch(s2, 'жз[]') then continue;
- if Regex.IsMatch(s2, 'жи[абгёжиопуфю]') then continue;
- //if Regex.IsMatch(s2, 'жй[]') then continue;
- if Regex.IsMatch(s2, 'жк[вджзклнрстфхцш]') then continue;
- if Regex.IsMatch(s2, 'жл[абвгдеёжзклмнопстуфцчшщыьюя]') then continue;
- if Regex.IsMatch(s2, 'жм[абвгежзиклмнопрстфхцчшщыьюя]') then continue;
- if Regex.IsMatch(s2, 'жн[бвгдёжзкмнрстфцчшщь]') then continue;
- if Regex.IsMatch(s2, 'жо[абвдёжзилопстуфхцчшщэя]') then continue;
- //if Regex.IsMatch(s2, 'жп[]') then continue;
- if Regex.IsMatch(s2, 'жр[абвгдёжзиклмнопрстуфхцчшщыьюя]') then continue;
- if Regex.IsMatch(s2, 'жс[абвгдеёжзилмнопрстуфхцчшщъыьэюя]') then continue;
- //if Regex.IsMatch(s2, 'жт[]') then continue;
- if Regex.IsMatch(s2, 'жу[абвгдезийлмнопуфхцчшэя]') then continue;
- //if Regex.IsMatch(s2, 'жф[]') then continue;
- //if Regex.IsMatch(s2, 'жх[]') then continue;
- if Regex.IsMatch(s2, 'жц[абвикмоуцы]') then continue;
- if Regex.IsMatch(s2, 'жч[авеёклмнортушь]') then continue;
- //if Regex.IsMatch(s2, 'жш[]') then continue;
- //if Regex.IsMatch(s2, 'жщ[]') then continue;
- //if Regex.IsMatch(s2, 'жъ[]') then continue;
- //if Regex.IsMatch(s2, 'жы[]') then continue;
- if Regex.IsMatch(s2, 'жь[бвгджзкмнопсхцчшщэ]') then continue;
- //if Regex.IsMatch(s2, 'жэ[]') then continue;
- //if Regex.IsMatch(s2, 'жю[]') then continue;
- //if Regex.IsMatch(s2, 'жя[]') then continue;
- //з**----------------------------------------------------------------------------------------------------
- if Regex.IsMatch(s2, 'за[аёфэ]') then continue;
- if Regex.IsMatch(s2, 'зб[бвгдёжзклмнстхцчшщъьюя]') then continue;
- if Regex.IsMatch(s2, 'зв[бвгджзмпстхцчшщъью]') then continue;
- if Regex.IsMatch(s2, 'зг[вдезкмстфчшью]') then continue;
- if Regex.IsMatch(s2, 'зд[бгдёжзлмпстхчшщъью]') then continue;
- if Regex.IsMatch(s2, 'зе[абгдеёжзикопсуфхчшщюя]') then continue;
- if Regex.IsMatch(s2, 'зё[бвгджзйклмпсхчшщ]') then continue;
- if Regex.IsMatch(s2, 'зж[бгдёжклмнорсцчь]') then continue;
- if Regex.IsMatch(s2, 'зз[бгдеёжзиклмностцчшъыьюя]') then continue;
- if Regex.IsMatch(s2, 'зи[бёжзйпуфхщ]') then continue;
- //if Regex.IsMatch(s2, 'зй[]') then continue;
- if Regex.IsMatch(s2, 'зк[вдежзклнрстфхцш]') then continue;
- if Regex.IsMatch(s2, 'зл[бвгджзклмнпстфцчшщья]') then continue;
- if Regex.IsMatch(s2, 'зм[бвгёжзклмнпрстфхцчшщью]') then continue;
- if Regex.IsMatch(s2, 'зн[бвгдёжзкмнстфцчшщю]') then continue;
- if Regex.IsMatch(s2, 'зо[аеёжзиуфхцщэя]') then continue;
- //if Regex.IsMatch(s2, 'зп[]') then continue;
- if Regex.IsMatch(s2, 'зр[бвгдёжзклмнпрстфхцчшщью]') then continue;
- if Regex.IsMatch(s2, 'зс[абвгдеёжзилмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2, 'зт[абвгдеёжзклмнопрстуфхцчшщъыэюя]') then continue;
- if Regex.IsMatch(s2, 'зу[агджзийоуфцшщэ]') then continue;
- //if Regex.IsMatch(s2, 'зф[]') then continue;
- //if Regex.IsMatch(s2, 'зх[]') then continue;
- if Regex.IsMatch(s2, 'зц[бвеикмц]') then continue;
- if Regex.IsMatch(s2, 'зч[авеёклмнортушь]') then continue;
- if Regex.IsMatch(s2, 'зш[вгёклмнопртуцшью]') then continue;
- //if Regex.IsMatch(s2, 'зщ[]') then continue;
- if Regex.IsMatch(s2, 'зъ[ёю]') then continue;
- if Regex.IsMatch(s2, 'зы[бгджзийлнптухцчшщя]') then continue;
- if Regex.IsMatch(s2, 'зь[вгдеёжзинопстхцчшщэ]') then continue;
- //if Regex.IsMatch(s2, 'зэ[]') then continue;
- if Regex.IsMatch(s2, 'зю[абвгджзикмнпрстфхцчшщю]') then continue;
- if Regex.IsMatch(s2, 'зя[гджзкнпруцчшюя]') then continue;
- //и**----------------------------------------------------------------------------------------------------
- if Regex.IsMatch(s2, 'иа[абвгдеёжиймопуфхчшщэюя]') then continue;
- if Regex.IsMatch(s2, 'иб[бвгдёжзмтхцчщъюя]') then continue;
- if Regex.IsMatch(s2, 'ив[бвгджзмптхчщъю]') then continue;
- if Regex.IsMatch(s2, 'иг[вкмтфчю]') then continue;
- if Regex.IsMatch(s2, 'ид[бгджзлмпхшщъью]') then continue;
- if Regex.IsMatch(s2, 'ие[абгеёжиклопуфцчшщя]') then continue;
- if Regex.IsMatch(s2, 'иё[бвгджзйклнпрстхчшщ]') then continue;
- if Regex.IsMatch(s2, 'иж[бгдёжлморцчь]') then continue;
- if Regex.IsMatch(s2, 'из[ёстцчью]') then continue;
- if Regex.IsMatch(s2, 'ии[абвгдеёжзийклнопртуфхцшщюя]') then continue;
- if Regex.IsMatch(s2, 'ий[бдезклорфчшщ]') then continue;
- if Regex.IsMatch(s2, 'ик[вджзфх]') then continue;
- if Regex.IsMatch(s2, 'ил[бвгджзмнптфцчшщ]') then continue;
- if Regex.IsMatch(s2, 'им[бвгёжзкрфхшщю]') then continue;
- if Regex.IsMatch(s2, 'ин[бвзмршщ]') then continue;
- if Regex.IsMatch(s2, 'ио[веёжийкмопруфхцчшщэюя]') then continue;
- if Regex.IsMatch(s2, 'ип[сфцчщь]') then continue;
- if Regex.IsMatch(s2, 'ир[бвгзрфхцшщь]') then continue;
- if Regex.IsMatch(s2, 'ис[гдёжзрфщъэю]') then continue;
- if Regex.IsMatch(s2, 'ит[бгдёжзлмптфхчшщэ]') then continue;
- if Regex.IsMatch(s2, 'иу[абвгдежзийклнопртуфхцшщэюя]') then continue;
- if Regex.IsMatch(s2, 'иф[аёлнтчыьюя]') then continue;
- if Regex.IsMatch(s2, 'их[вгдмптчъ]') then continue;
- if Regex.IsMatch(s2, 'иц[бв]') then continue;
- if Regex.IsMatch(s2, 'ич[влмрш]') then continue;
- if Regex.IsMatch(s2, 'иш[вгмортцшю]') then continue;
- if Regex.IsMatch(s2, 'ищ[ёорь]') then continue;
- //if Regex.IsMatch(s2, 'иъ[]') then continue;
- //if Regex.IsMatch(s2, 'иы[]') then continue;
- //if Regex.IsMatch(s2, 'иь[]') then continue;
- //if Regex.IsMatch(s2, 'иэ[]') then continue;
- if Regex.IsMatch(s2, 'ию[абвгджзикмпрсфхцчшщю]') then continue;
- if Regex.IsMatch(s2, 'ия[бгдийкпруцчшщ]') then continue;
- //й**----------------------------------------------------------------------------------------------------
- //if Regex.IsMatch(s2, 'йа[]') then continue;
- if Regex.IsMatch(s2, 'йб[абвгдеёжзиклмнорстухцчшщъыьюя]') then continue;
- //if Regex.IsMatch(s2, 'йв[]') then continue;
- //if Regex.IsMatch(s2, 'йг[]') then continue;
- if Regex.IsMatch(s2, 'йд[абвгджзклмнопрстхцчшщъыью]') then continue;
- if Regex.IsMatch(s2, 'йе[абвгдеёжзийклмнопрстуфхцчшщюя]') then continue;
- //if Regex.IsMatch(s2, 'йё[]') then continue;
- //if Regex.IsMatch(s2, 'йж[]') then continue;
- if Regex.IsMatch(s2, 'йз[бвгдеёжзиклмнорстуцчшъыьюя]') then continue;
- //if Regex.IsMatch(s2, 'йи[]') then continue;
- //if Regex.IsMatch(s2, 'йй[]') then continue;
- if Regex.IsMatch(s2, 'йк[вджзклнрстфхцш]') then continue;
- if Regex.IsMatch(s2, 'йл[бвгдёжзклмнпстфцчшщьюя]') then continue;
- if Regex.IsMatch(s2, 'йм[бвгёжзклмнпрстфхцчшщьюя]') then continue;
- if Regex.IsMatch(s2, 'йн[бгдёжзкмнрсфцчшщь]') then continue;
- if Regex.IsMatch(s2, 'йо[абвгеёжзийкмнопрстуфхцчшщэюя]') then continue;
- //if Regex.IsMatch(s2, 'йп[]') then continue;
- if Regex.IsMatch(s2, 'йр[бвгдеёжзиклмнопрстуфхцчшщыьюя]') then continue;
- if Regex.IsMatch(s2, 'йс[абвдеёжзилмнпрсуфхцчшщъыьэю]') then continue;
- if Regex.IsMatch(s2, 'йт[абвгдёжзклмнпрстфхцчшщъыьэюя]') then continue;
- //if Regex.IsMatch(s2, 'йу[]') then continue;
- if Regex.IsMatch(s2, 'йф[ёилмнорстуфчыьюя]') then continue;
- //if Regex.IsMatch(s2, 'йх[]') then continue;
- if Regex.IsMatch(s2, 'йц[бвикмоуц]') then continue;
- if Regex.IsMatch(s2, 'йч[веёиклмнортушь]') then continue;
- if Regex.IsMatch(s2, 'йш[вгёклмнопртцшью]') then continue;
- if Regex.IsMatch(s2, 'йщ[аеёноруь]') then continue;
- //if Regex.IsMatch(s2, 'йъ[]') then continue;
- //if Regex.IsMatch(s2, 'йы[]') then continue;
- //if Regex.IsMatch(s2, 'йь[]') then continue;
- //if Regex.IsMatch(s2, 'йэ[]') then continue;
- //if Regex.IsMatch(s2, 'йю[]') then continue;
- //if Regex.IsMatch(s2, 'йя[]') then continue;
- //к**----------------------------------------------------------------------------------------------------
- if Regex.IsMatch(s2, 'ка[агёощэ]') then continue;
- //if Regex.IsMatch(s2, 'кб[]') then continue;
- if Regex.IsMatch(s2, 'кв[бвгдёжзклмнпрстхцчшщъьюя]') then continue;
- //if Regex.IsMatch(s2, 'кг[]') then continue;
- if Regex.IsMatch(s2, 'кд[абвгдеёжзиклмнпрстухцчшщъыьюя]') then continue;
- if Regex.IsMatch(s2, 'ке[абгёжзкоуфхцчшщ]') then continue;
- //if Regex.IsMatch(s2, 'кё[]') then continue;
- if Regex.IsMatch(s2, 'кж[абгдёжиклмнорсуцчь]') then continue;
- if Regex.IsMatch(s2, 'кз[бвгдеёжзиклмнорстуцчшъыьюя]') then continue;
- if Regex.IsMatch(s2, 'ки[абгёжклоуфцщюя]') then continue;
- //if Regex.IsMatch(s2, 'кй[]') then continue;
- if Regex.IsMatch(s2, 'кк[вджзклнрстфхцш]') then continue;
- if Regex.IsMatch(s2, 'кл[бвгдёжзклмнпстфцчшщ]') then continue;
- //if Regex.IsMatch(s2, 'км[]') then continue;
- if Regex.IsMatch(s2, 'кн[бвгджзкмнрстфцчшщыью]') then continue;
- if Regex.IsMatch(s2, 'ко[аёоцэ]') then continue;
- //if Regex.IsMatch(s2, 'кп[]') then continue;
- if Regex.IsMatch(s2, 'кр[бвгдёжзклмнпрстфхцчшщь]') then continue;
- if Regex.IsMatch(s2, 'кс[бвгдёжзклмнрсфхчшщъьэю]') then continue;
- if Regex.IsMatch(s2, 'кт[бвгджзклмпстфхцчшщъьэю]') then continue;
- if Regex.IsMatch(s2, 'ку[агжиоуфцэя]') then continue;
- if Regex.IsMatch(s2, 'кф[аеёилмнорстфчыьюя]') then continue;
- if Regex.IsMatch(s2, 'кх[вгдеилмнопрстучшъ]') then continue;
- if Regex.IsMatch(s2, 'кц[абвкмоуцы]') then continue;
- //if Regex.IsMatch(s2, 'кч[]') then continue;
- if Regex.IsMatch(s2, 'кш[авгёклмнопртцшью]') then continue;
- //if Regex.IsMatch(s2, 'кщ[]') then continue;
- //if Regex.IsMatch(s2, 'къ[]') then continue;
- //if Regex.IsMatch(s2, 'кы[]') then continue;
- //if Regex.IsMatch(s2, 'кь[]') then continue;
- //if Regex.IsMatch(s2, 'кэ[]') then continue;
- //if Regex.IsMatch(s2, 'кю[]') then continue;
- //if Regex.IsMatch(s2, 'кя[]') then continue;
- //л**----------------------------------------------------------------------------------------------------
- if Regex.IsMatch(s2, 'ла[аёиощэ]') then continue;
- if Regex.IsMatch(s2, 'лб[бвгдеёжзклмнрстхцчшщъьюя]') then continue;
- if Regex.IsMatch(s2, 'лв[абвгдеёжзклмопрстухцчшщъыьюя]') then continue;
- if Regex.IsMatch(s2, 'лг[вдзклмнрстфчшью]') then continue;
- if Regex.IsMatch(s2, 'лд[бвгдеёжзиклмпрстхцчшщъыьюя]') then continue;
- if Regex.IsMatch(s2, 'ле[оуф]') then continue;
- if Regex.IsMatch(s2, 'лё[лмрхщ]') then continue;
- if Regex.IsMatch(s2, 'лж[бгдёжклморсуцчь]') then continue;
- if Regex.IsMatch(s2, 'лз[бвгдеёжзиклмнорстцчшъыьюя]') then continue;
- if Regex.IsMatch(s2, 'ли[ё]') then continue;
- //if Regex.IsMatch(s2, 'лй[]') then continue;
- if Regex.IsMatch(s2, 'лк[вджзкрстфхцш]') then continue;
- if Regex.IsMatch(s2, 'лл[бвгдёжзклмнпстуфцчшщья]') then continue;
- if Regex.IsMatch(s2, 'лм[абвгёжзиклмнопрстуфхцчшщыьюя]') then continue;
- if Regex.IsMatch(s2, 'лн[бвгдёжзкмнрстфчшщь]') then continue;
- if Regex.IsMatch(s2, 'ло[аёиофцэ]') then continue;
- if Regex.IsMatch(s2, 'лп[ёклнпрстфцчшщью]') then continue;
- //if Regex.IsMatch(s2, 'лр[]') then continue;
- if Regex.IsMatch(s2, 'лс[авгдеёжзиклмнпрсуфхцчшщъыьэю]') then continue;
- if Regex.IsMatch(s2, 'лт[бвгдёжзкмнпрстфхцчшщъьэюя]') then continue;
- if Regex.IsMatch(s2, 'лу[влрфцэ]') then continue;
- if Regex.IsMatch(s2, 'лф[аёилмнорстуфчыьюя]') then continue;
- //if Regex.IsMatch(s2, 'лх[]') then continue;
- if Regex.IsMatch(s2, 'лц[абвикмоуцы]') then continue;
- if Regex.IsMatch(s2, 'лч[веёлмртуш]') then continue;
- if Regex.IsMatch(s2, 'лш[авгёиклмнопртуцшью]') then continue;
- if Regex.IsMatch(s2, 'лщ[аёиноруь]') then continue;
- //if Regex.IsMatch(s2, 'лъ[]') then continue;
- if Regex.IsMatch(s2, 'лы[гджзилпруцщя]') then continue;
- if Regex.IsMatch(s2, 'ль[ж]') then continue;
- //if Regex.IsMatch(s2, 'лэ[]') then continue;
- if Regex.IsMatch(s2, 'лю[агзикмрфхшю]') then continue;
- if Regex.IsMatch(s2, 'ля[биущ]') then continue;
- //м**----------------------------------------------------------------------------------------------------
- if Regex.IsMatch(s2, 'ма[абёиопуфщэ]') then continue;
- if Regex.IsMatch(s2, 'мб[бвгдёжзиклмнрстхцчшщъыьюя]') then continue;
- if Regex.IsMatch(s2, 'мв[абвгдеёжзиклмнпрстухцчшщъыьюя]') then continue;
- if Regex.IsMatch(s2, 'мг[авдезиклморстуфчшью]') then continue;
- //if Regex.IsMatch(s2, 'мд[]') then continue;
- if Regex.IsMatch(s2, 'ме[агопуф]') then continue;
- if Regex.IsMatch(s2, 'мё[бвгжзйлмпсхчщ]') then continue;
- if Regex.IsMatch(s2, 'мж[абгеёжиклмнорсуцчь]') then continue;
- if Regex.IsMatch(s2, 'мз[бвгдёжзиклмнорстуцчшъыьюя]') then continue;
- if Regex.IsMatch(s2, 'ми[абеёжопуфщ]') then continue;
- //if Regex.IsMatch(s2, 'мй[]') then continue;
- if Regex.IsMatch(s2, 'мк[вджзклнрстфхцш]') then continue;
- if Regex.IsMatch(s2, 'мл[абвгджзклмнопстуфцчшщыь]') then continue;
- if Regex.IsMatch(s2, 'мм[бвгёжзиклмнпрстфхцчшщьюя]') then continue;
- if Regex.IsMatch(s2, 'мн[бвгдёжзкмнрстфцчшщь]') then continue;
- if Regex.IsMatch(s2, 'мо[афэ]') then continue;
- if Regex.IsMatch(s2, 'мп[ёикнптфцчшщьюя]') then continue;
- if Regex.IsMatch(s2, 'мр[бвгджзиклмнопрстфхцчшщыьюя]') then continue;
- if Regex.IsMatch(s2, 'мс[абвгдеёжзилмнпрсуфхцчшщъыьэю]') then continue;
- if Regex.IsMatch(s2, 'мт[абвгдёжзклмнопстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2, 'му[абвеиймопуцшэя]') then continue;
- if Regex.IsMatch(s2, 'мф[аеёилмнрстуфчыьюя]') then continue;
- if Regex.IsMatch(s2, 'мх[вгдеилмнопрстучшъ]') then continue;
- if Regex.IsMatch(s2, 'мц[бвикмц]') then continue;
- if Regex.IsMatch(s2, 'мч[авёклмнортшь]') then continue;
- if Regex.IsMatch(s2, 'мш[авгёклмнопрцшью]') then continue;
- if Regex.IsMatch(s2, 'мщ[аёноруь]') then continue;
- //if Regex.IsMatch(s2, 'мъ[]') then continue;
- if Regex.IsMatch(s2, 'мы[бджзикнпруцщя]') then continue;
- if Regex.IsMatch(s2, 'мь[бвгёжзкмноптхцчшщэ]') then continue;
- //if Regex.IsMatch(s2, 'мэ[]') then continue;
- if Regex.IsMatch(s2, 'мю[абвгджзикмнпрстфхцчшщю]') then continue;
- if Regex.IsMatch(s2, 'мя[бдежзиймпрухцшюя]') then continue;
- //н**----------------------------------------------------------------------------------------------------
- if Regex.IsMatch(s2, 'на[афщэ]') then continue;
- if Regex.IsMatch(s2, 'нб[бвгдеёжзиклмнорстухцчшщъыьюя]') then continue;
- if Regex.IsMatch(s2, 'нв[абвгдёжзиклмнпрстухцчшщъыьюя]') then continue;
- if Regex.IsMatch(s2, 'нг[вдзикмнрстучшью]') then continue;
- if Regex.IsMatch(s2, 'нд[бвгдёжзлмнпхцчшщъья]') then continue;
- if Regex.IsMatch(s2, 'не[фщ]') then continue;
- if Regex.IsMatch(s2, 'нё[бвгджлпхчщ]') then continue;
- if Regex.IsMatch(s2, 'нж[абгдёжиклмнорсуцчь]') then continue;
- if Regex.IsMatch(s2, 'нз[абвгдёжзклмнрстуцчшъыьюя]') then continue;
- if Regex.IsMatch(s2, 'ни[адёпуф]') then continue;
- //if Regex.IsMatch(s2, 'нй[]') then continue;
- if Regex.IsMatch(s2, 'нк[вджзкнрсхш]') then continue;
- //if Regex.IsMatch(s2, 'нл[]') then continue;
- if Regex.IsMatch(s2, 'нм[абвгеёжзиклмнпрстуфхцчшщыьюя]') then continue;
- if Regex.IsMatch(s2, 'нн[бвгдёжзкмрстфцчшщь]') then continue;
- if Regex.IsMatch(s2, 'но[аёинфэ]') then continue;
- //if Regex.IsMatch(s2, 'нп[]') then continue;
- if Regex.IsMatch(s2, 'нр[бвгдеёжзиклмнопрстуфхцчшщыьюя]') then continue;
- if Regex.IsMatch(s2, 'нс[вгдёжзмнрсфхчшщъьэюя]') then continue;
- if Regex.IsMatch(s2, 'нт[бвгдёжзмптфхцчшщъьэю]') then continue;
- if Regex.IsMatch(s2, 'ну[бгдзипуфхцэ]') then continue;
- if Regex.IsMatch(s2, 'нф[аёлмнорстфчыьюя]') then continue;
- //if Regex.IsMatch(s2, 'нх[]') then continue;
- if Regex.IsMatch(s2, 'нц[бвкмц]') then continue;
- if Regex.IsMatch(s2, 'нч[вклмнортшь]') then continue;
- if Regex.IsMatch(s2, 'нш[вгеёклмнопртцшью]') then continue;
- if Regex.IsMatch(s2, 'нщ[аеёноруь]') then continue;
- //if Regex.IsMatch(s2, 'нъ[]') then continue;
- if Regex.IsMatch(s2, 'ны[бгджзикпсуцщ]') then continue;
- if Regex.IsMatch(s2, 'нь[бвдзмнпхцчщэ]') then continue;
- //if Regex.IsMatch(s2, 'нэ[]') then continue;
- if Regex.IsMatch(s2, 'ню[абвгжзклмнпсфцщ]') then continue;
- if Regex.IsMatch(s2, 'ня[дикпруцч]') then continue;
- //о**----------------------------------------------------------------------------------------------------
- if Regex.IsMatch(s2, 'оа[абвгдеёжийклмопрстуфхцчшщэюя]') then continue;
- if Regex.IsMatch(s2, 'об[бёцю]') then continue;
- if Regex.IsMatch(s2, 'ов[бгджзмхшъю]') then continue;
- if Regex.IsMatch(s2, 'ог[взсфчью]') then continue;
- if Regex.IsMatch(s2, 'од[зщю]') then continue;
- if Regex.IsMatch(s2, 'ое[абеёиопруфцчщя]') then continue;
- if Regex.IsMatch(s2, 'оё[бвгджзйклнпрсхчшщ]') then continue;
- if Regex.IsMatch(s2, 'ож[ёлрсцч]') then continue;
- if Regex.IsMatch(s2, 'оз[ёстшъ]') then continue;
- if Regex.IsMatch(s2, 'ои[абдеёжийкопруфчщюя]') then continue;
- if Regex.IsMatch(s2, 'ой[бзорфцчшщ]') then continue;
- if Regex.IsMatch(s2, 'ок[джкфхц]') then continue;
- if Regex.IsMatch(s2, 'ол[мф]') then continue;
- if Regex.IsMatch(s2, 'ом[вгёжзхцшщю]') then continue;
- if Regex.IsMatch(s2, 'он[бгжшщ]') then continue;
- if Regex.IsMatch(s2, 'оо[авгдеёжзийкнопрсуфцчшэюя]') then continue;
- if Regex.IsMatch(s2, 'оп[сфцшщю]') then continue;
- //if Regex.IsMatch(s2, 'ор[]') then continue;
- if Regex.IsMatch(s2, 'ос[бдёжзщъэю]') then continue;
- if Regex.IsMatch(s2, 'от[шщэю]') then continue;
- if Regex.IsMatch(s2, 'оу[адезийкоруфцчшщэюя]') then continue;
- if Regex.IsMatch(s2, 'оф[ёлмучюя]') then continue;
- if Regex.IsMatch(s2, 'ох[гдепчъ]') then continue;
- if Regex.IsMatch(s2, 'оц[абкмоуцы]') then continue;
- if Regex.IsMatch(s2, 'оч[рш]') then continue;
- if Regex.IsMatch(s2, 'ош[гпрцш]') then continue;
- if Regex.IsMatch(s2, 'ощ[о]') then continue;
- //if Regex.IsMatch(s2, 'оъ[]') then continue;
- //if Regex.IsMatch(s2, 'оы[]') then continue;
- //if Regex.IsMatch(s2, 'оь[]') then continue;
- if Regex.IsMatch(s2, 'оэ[гдйклмнпрсфхш]') then continue;
- if Regex.IsMatch(s2, 'ою[абвгджиклмнпфхцчш]') then continue;
- if Regex.IsMatch(s2, 'оя[гжзиймпрухцшя]') then continue;
- //п**----------------------------------------------------------------------------------------------------
- if Regex.IsMatch(s2, 'па[абёиофщэ]') then continue;
- //if Regex.IsMatch(s2, 'пб[]') then continue;
- //if Regex.IsMatch(s2, 'пв[]') then continue;
- //if Regex.IsMatch(s2, 'пг[]') then continue;
- //if Regex.IsMatch(s2, 'пд[]') then continue;
- if Regex.IsMatch(s2, 'пе[абёжзимоуф]') then continue;
- if Regex.IsMatch(s2, 'пё[бвгджзйклмнпхчшщ]') then continue;
- //if Regex.IsMatch(s2, 'пж[]') then continue;
- //if Regex.IsMatch(s2, 'пз[]') then continue;
- if Regex.IsMatch(s2, 'пи[бгдёжиопфхю]') then continue;
- //if Regex.IsMatch(s2, 'пй[]') then continue;
- if Regex.IsMatch(s2, 'пк[вджзклнрстфхцш]') then continue;
- if Regex.IsMatch(s2, 'пл[бвгджзклмнпстфцчшщ]') then continue;
- //if Regex.IsMatch(s2, 'пм[]') then continue;
- if Regex.IsMatch(s2, 'пн[бвгдёжзкмнрстфцчшщьюя]') then continue;
- if Regex.IsMatch(s2, 'по[аф]') then continue;
- if Regex.IsMatch(s2, 'пп[ёклнпрстфцчшщьюя]') then continue;
- if Regex.IsMatch(s2, 'пр[бвгджзклмнпстфхцчшщью]') then continue;
- if Regex.IsMatch(s2, 'пс[бвгдеёжзклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2, 'пт[бгдёжзклмнпрстфхцчшщъьэю]') then continue;
- if Regex.IsMatch(s2, 'пу[авежимопруфцэя]') then continue;
- if Regex.IsMatch(s2, 'пф[аеёилмнрстуфчыьюя]') then continue;
- //if Regex.IsMatch(s2, 'пх[]') then continue;
- if Regex.IsMatch(s2, 'пц[бвикмц]') then continue;
- if Regex.IsMatch(s2, 'пч[вклмнортшь]') then continue;
- if Regex.IsMatch(s2, 'пш[авгёклмнопртцшью]') then continue;
- if Regex.IsMatch(s2, 'пщ[аеёноруь]') then continue;
- //if Regex.IsMatch(s2, 'пъ[]') then continue;
- if Regex.IsMatch(s2, 'пы[бгджзикнпсуцчщя]') then continue;
- if Regex.IsMatch(s2, 'пь[бвгдёжзикмнопсхцчшщэ]') then continue;
- //if Regex.IsMatch(s2, 'пэ[]') then continue;
- if Regex.IsMatch(s2, 'пю[абвгджзиклмнтфхцчшщю]') then continue;
- if Regex.IsMatch(s2, 'пя[бвгдежзийкнпрухцчшюя]') then continue;
- //р**----------------------------------------------------------------------------------------------------
- if Regex.IsMatch(s2, 'ра[аёоэ]') then continue;
- if Regex.IsMatch(s2, 'рб[бвгдеёжзкмнртхцчшщъыьюя]') then continue;
- if Regex.IsMatch(s2, 'рв[бвгдёжзклмпрстхцчшщъю]') then continue;
- if Regex.IsMatch(s2, 'рг[вдзкмртфчшью]') then continue;
- if Regex.IsMatch(s2, 'рд[бгдёжзклмпртхчшщъью]') then continue;
- if Regex.IsMatch(s2, 'ре[ё]') then continue;
- if Regex.IsMatch(s2, 'рё[вйрсчщ]') then continue;
- if Regex.IsMatch(s2, 'рж[бгёжлмнорсцчь]') then continue;
- if Regex.IsMatch(s2, 'рз[бвгдёжзмнрстуцчъыьюя]') then continue;
- //if Regex.IsMatch(s2, 'ри[]') then continue;
- //if Regex.IsMatch(s2, 'рй[]') then continue;
- if Regex.IsMatch(s2, 'рк[джзкрсфхцш]') then continue;
- if Regex.IsMatch(s2, 'рл[бвгдёжзклмнптфцчшщю]') then continue;
- if Regex.IsMatch(s2, 'рм[бвгжзкмнпрстфхцчщью]') then continue;
- if Regex.IsMatch(s2, 'рн[бвгджзкмнртфцчшщь]') then continue;
- if Regex.IsMatch(s2, 'ро[аэ]') then continue;
- if Regex.IsMatch(s2, 'рп[аёкнопстфцчшщью]') then continue;
- if Regex.IsMatch(s2, 'рр[бвгдёжзиклмнопрстфхцчшщьюя]') then continue;
- if Regex.IsMatch(s2, 'рс[бвгдёжзлмнрсфхцчшщъьэю]') then continue;
- if Regex.IsMatch(s2, 'рт[бгдёжзмптхцчшщъэю]') then continue;
- if Regex.IsMatch(s2, 'ру[аийлоруфцщэ]') then continue;
- if Regex.IsMatch(s2, 'рф[аеёлмнрстуфчыьюя]') then continue;
- if Regex.IsMatch(s2, 'рх[вгдемпрстчш]') then continue;
- if Regex.IsMatch(s2, 'рц[бвкмц]') then continue;
- if Regex.IsMatch(s2, 'рч[вкмнортшь]') then continue;
- if Regex.IsMatch(s2, 'рш[вгёлмоптцшью]') then continue;
- if Regex.IsMatch(s2, 'рщ[ёноруь]') then continue;
- //if Regex.IsMatch(s2, 'ръ[]') then continue;
- if Regex.IsMatch(s2, 'ры[ипрущя]') then continue;
- if Regex.IsMatch(s2, 'рь[вгджзнопхцчшщэ]') then continue;
- //if Regex.IsMatch(s2, 'рэ[]') then continue;
- if Regex.IsMatch(s2, 'рю[абвгджптцю]') then continue;
- if Regex.IsMatch(s2, 'ря[ируц]') then continue;
- //с**----------------------------------------------------------------------------------------------------
- if Regex.IsMatch(s2, 'са[гёзосуцчщэ]') then continue;
- if Regex.IsMatch(s2, 'сб[бвгдёжзкмнстхцчшщъьюя]') then continue;
- if Regex.IsMatch(s2, 'св[бвгджзклмнпрстухцчшщъью]') then continue;
- if Regex.IsMatch(s2, 'сг[адезкмнстуфчшю]') then continue;
- if Regex.IsMatch(s2, 'сд[бгджзклмнопрстхцчшщъыьюя]') then continue;
- if Regex.IsMatch(s2, 'се[ёжуфч]') then continue;
- if Regex.IsMatch(s2, 'сё[бвгджзйкпрхчшщ]') then continue;
- if Regex.IsMatch(s2, 'сж[бгджклмнорсуцчь]') then continue;
- if Regex.IsMatch(s2, 'сз[бвгдеёжзиклмнорстуцчшъыьюя]') then continue;
- if Regex.IsMatch(s2, 'си[ёущ]') then continue;
- //if Regex.IsMatch(s2, 'сй[]') then continue;
- if Regex.IsMatch(s2, 'ск[джзкстфхцш]') then continue;
- if Regex.IsMatch(s2, 'сл[бвгджзклмнпстфцчшщ]') then continue;
- if Regex.IsMatch(s2, 'см[бвгёжзклмнпстфхцчшщью]') then continue;
- if Regex.IsMatch(s2, 'сн[бвгджзкмнрстфцчшщ]') then continue;
- if Regex.IsMatch(s2, 'со[аёэя]') then continue;
- if Regex.IsMatch(s2, 'сп[ёкнпстфцчшщю]') then continue;
- if Regex.IsMatch(s2, 'ср[бвгдёжзиклмнпрстфхцчшщью]') then continue;
- if Regex.IsMatch(s2, 'сс[бгдёжзсфхцшщъьэю]') then continue;
- if Regex.IsMatch(s2, 'ст[гджзптфхцчшщэ]') then continue;
- if Regex.IsMatch(s2, 'су[авзийлоуфцэ]') then continue;
- if Regex.IsMatch(s2, 'сф[аёилмнрстуфчыьюя]') then continue;
- if Regex.IsMatch(s2, 'сх[гдмнпрстчшъ]') then continue;
- if Regex.IsMatch(s2, 'сц[бвкмуц]') then continue;
- if Regex.IsMatch(s2, 'сч[вклмнортшь]') then continue;
- if Regex.IsMatch(s2, 'сш[вгёклмнопртцшью]') then continue;
- if Regex.IsMatch(s2, 'сщ[аёиноруь]') then continue;
- if Regex.IsMatch(s2, 'съ[ёюя]') then continue;
- if Regex.IsMatch(s2, 'сы[бджиксуцшя]') then continue;
- if Regex.IsMatch(s2, 'сь[вгдёжзиноптхцчшщэ]') then continue;
- if Regex.IsMatch(s2, 'сэ[гдзйклмнпстфхш]') then continue;
- if Regex.IsMatch(s2, 'сю[абвгжзиклмнпстфхцчшщю]') then continue;
- if Regex.IsMatch(s2, 'ся[бвеийлпрушюя]') then continue;
- //т**----------------------------------------------------------------------------------------------------
- if Regex.IsMatch(s2, 'та[агоуэ]') then continue;
- if Regex.IsMatch(s2, 'тб[абвгдёжзклмнстухцчшщъыьюя]') then continue;
- if Regex.IsMatch(s2, 'тв[бвгджзкмнпстхцчшщъю]') then continue;
- if Regex.IsMatch(s2, 'тг[авдезиклмнстуфчшью]') then continue;
- if Regex.IsMatch(s2, 'тд[бвгджзклмнпрстхцчшщъьюя]') then continue;
- if Regex.IsMatch(s2, 'те[дёзиуфщ]') then continue;
- if Regex.IsMatch(s2, 'тё[бвдзйсхчш]') then continue;
- if Regex.IsMatch(s2, 'тж[абгдеёжклмнорсуцчь]') then continue;
- if Regex.IsMatch(s2, 'тз[абвгдеёжзиклмнорстуцчшъьюя]') then continue;
- if Regex.IsMatch(s2, 'ти[ёоу]') then continue;
- //if Regex.IsMatch(s2, 'тй[]') then continue;
- if Regex.IsMatch(s2, 'тк[вджзкстфхцш]') then continue;
- if Regex.IsMatch(s2, 'тл[бвгджзклмнпстфцчшщю]') then continue;
- if Regex.IsMatch(s2, 'тм[бвгёжзклмнпрстуфхцчшьюя]') then continue;
- if Regex.IsMatch(s2, 'тн[бвгджзкмнрстфцчшщь]') then continue;
- if Regex.IsMatch(s2, 'то[аёоуцэ]') then continue;
- if Regex.IsMatch(s2, 'тп[ёкнпстфцчшщьюя]') then continue;
- if Regex.IsMatch(s2, 'тр[бвгджзклмнпрстфхцчш]') then continue;
- if Regex.IsMatch(s2, 'тс[бвгдеёжзнпсфхцчшщъьэ]') then continue;
- if Regex.IsMatch(s2, 'тт[бвгдёжзклмнпрстфхцчшщъьэю]') then continue;
- if Regex.IsMatch(s2, 'ту[вийоуцэя]') then continue;
- if Regex.IsMatch(s2, 'тф[аёилмнрстуфчыьюя]') then continue;
- if Regex.IsMatch(s2, 'тх[авгдимнпрстучшъ]') then continue;
- if Regex.IsMatch(s2, 'тц[бикмц]') then continue;
- if Regex.IsMatch(s2, 'тч[вклмнортшь]') then continue;
- if Regex.IsMatch(s2, 'тш[авгеёклмнопртуцшью]') then continue;
- if Regex.IsMatch(s2, 'тщ[ёиноруь]') then continue;
- if Regex.IsMatch(s2, 'тъ[ёюя]') then continue;
- if Regex.IsMatch(s2, 'ты[бгзиптуцшщя]') then continue;
- if Regex.IsMatch(s2, 'ть[вгёжзнопхцчшщэ]') then continue;
- if Regex.IsMatch(s2, 'тэ[гдзйклмпстфхш]') then continue;
- if Regex.IsMatch(s2, 'тю[абвжзикпсцчщю]') then continue;
- if Regex.IsMatch(s2, 'тя[вдезилпруцчшюя]') then continue;
- //у**----------------------------------------------------------------------------------------------------
- if Regex.IsMatch(s2, 'уа[абвгдеёжзийкмопсуфхцчшщэюя]') then continue;
- if Regex.IsMatch(s2, 'уб[вгдёзмтхшщ]') then continue;
- if Regex.IsMatch(s2, 'ув[бвгдёжзкмнпртухцчщъью]') then continue;
- if Regex.IsMatch(s2, 'уг[дзкмстфчшью]') then continue;
- if Regex.IsMatch(s2, 'уд[бгёзмпхцчщъю]') then continue;
- if Regex.IsMatch(s2, 'уе[абгеёжийклнопсуфцчщюя]') then continue;
- //if Regex.IsMatch(s2, 'уё[]') then continue;
- if Regex.IsMatch(s2, 'уж[гмрц]') then continue;
- if Regex.IsMatch(s2, 'уз[бвгёжзмртцчшъю]') then continue;
- if Regex.IsMatch(s2, 'уи[абвгдеёжийклмнопрстуфхцчшщюя]') then continue;
- if Regex.IsMatch(s2, 'уй[безклмнорфцчшщ]') then continue;
- if Regex.IsMatch(s2, 'ук[джзфхцш]') then continue;
- if Regex.IsMatch(s2, 'ул[бвгджзлмнптфцчшщю]') then continue;
- if Regex.IsMatch(s2, 'ум[вгжзптфхшщю]') then continue;
- if Regex.IsMatch(s2, 'ун[бвгёжзмрфцчшщю]') then continue;
- if Regex.IsMatch(s2, 'уо[авгдеёжзиклмнопрсуфхцчшщэюя]') then continue;
- if Regex.IsMatch(s2, 'уп[сфшьюя]') then continue;
- if Regex.IsMatch(s2, 'ур[бвдёзпрфщ]') then continue;
- if Regex.IsMatch(s2, 'ус[бгдёжзрфхцчшщъэю]') then continue;
- if Regex.IsMatch(s2, 'ут[бгджзмптфхцчшщъэ]') then continue;
- if Regex.IsMatch(s2, 'уу[абвгдежзийкмнопрстуфхцчшщэюя]') then continue;
- if Regex.IsMatch(s2, 'уф[ёинрсучыьюя]') then continue;
- if Regex.IsMatch(s2, 'ух[мпрчъ]') then continue;
- if Regex.IsMatch(s2, 'уц[абвкмоуцы]') then continue;
- if Regex.IsMatch(s2, 'уч[влм]') then continue;
- if Regex.IsMatch(s2, 'уш[вгмпртцшью]') then continue;
- if Regex.IsMatch(s2, 'ущ[орь]') then continue;
- //if Regex.IsMatch(s2, 'уъ[]') then continue;
- //if Regex.IsMatch(s2, 'уы[]') then continue;
- //if Regex.IsMatch(s2, 'уь[]') then continue;
- if Regex.IsMatch(s2, 'уэ[гдзйкмнпрстфхш]') then continue;
- if Regex.IsMatch(s2, 'ую[абвгджзиклмнпрфхцчшю]') then continue;
- if Regex.IsMatch(s2, 'уя[бгдежийкнпртухцчшщюя]') then continue;
- //ф**----------------------------------------------------------------------------------------------------
- if Regex.IsMatch(s2, 'фа[авгдёжиопуфцчшщюя]') then continue;
- //if Regex.IsMatch(s2, 'фб[]') then continue;
- //if Regex.IsMatch(s2, 'фв[]') then continue;
- //if Regex.IsMatch(s2, 'фг[]') then continue;
- //if Regex.IsMatch(s2, 'фд[]') then continue;
- if Regex.IsMatch(s2, 'фе[абгёжзимопуфхцчшщя]') then continue;
- if Regex.IsMatch(s2, 'фё[бвгжзйклмнпрстхчшщ]') then continue;
- //if Regex.IsMatch(s2, 'фж[]') then continue;
- //if Regex.IsMatch(s2, 'фз[]') then continue;
- if Regex.IsMatch(s2, 'фи[бвдёжопуфхщю]') then continue;
- //if Regex.IsMatch(s2, 'фй[]') then continue;
- //if Regex.IsMatch(s2, 'фк[]') then continue;
- if Regex.IsMatch(s2, 'фл[бвгдёжзклмнпстуфцчшщыью]') then continue;
- if Regex.IsMatch(s2, 'фм[бвгёжзиклмнопрстуфхцчшщыьюя]') then continue;
- if Regex.IsMatch(s2, 'фн[абвгдеёжзикмнрстуфцчшщьюя]') then continue;
- if Regex.IsMatch(s2, 'фо[абгеёжзилопуфхцшщэюя]') then continue;
- //if Regex.IsMatch(s2, 'фп[]') then continue;
- if Regex.IsMatch(s2, 'фр[бвгдёжзклмнпрстфхцчшщыья]') then continue;
- if Regex.IsMatch(s2, 'фс[абвгдеёжзилмнопрсуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2, 'фт[бвгдеёжзиклмнпрстфхцчшщъьэюя]') then continue;
- if Regex.IsMatch(s2, 'фу[абвгдеийкмопсухчшщэюя]') then continue;
- if Regex.IsMatch(s2, 'фф[ёилмнорстуфчыьюя]') then continue;
- //if Regex.IsMatch(s2, 'фх[]') then continue;
- //if Regex.IsMatch(s2, 'фц[]') then continue;
- if Regex.IsMatch(s2, 'фч[авеёклмнортушь]') then continue;
- //if Regex.IsMatch(s2, 'фш[]') then continue;
- //if Regex.IsMatch(s2, 'фщ[]') then continue;
- //if Regex.IsMatch(s2, 'фъ[]') then continue;
- if Regex.IsMatch(s2, 'фы[бвдежзийклмнпстухцчшщя]') then continue;
- if Regex.IsMatch(s2, 'фь[бвгдёжзкмнопстхцчшщэ]') then continue;
- //if Regex.IsMatch(s2, 'фэ[]') then continue;
- if Regex.IsMatch(s2, 'фю[абвгджзиклмнпстфхцчшщю]') then continue;
- if Regex.IsMatch(s2, 'фя[бвгдежзийлмнпрстухцчшщюя]') then continue;
- //х**----------------------------------------------------------------------------------------------------
- if Regex.IsMatch(s2, 'ха[абгдёзксуфцшщэ]') then continue;
- //if Regex.IsMatch(s2, 'хб[]') then continue;
- if Regex.IsMatch(s2, 'хв[бвгдежзиклмнпрстухцчшщъыьюя]') then continue;
- if Regex.IsMatch(s2, 'хг[вдезиклмнорстуфчшью]') then continue;
- if Regex.IsMatch(s2, 'хд[абвгдеёжзиклмопрстухцчшщъыьюя]') then continue;
- if Regex.IsMatch(s2, 'хе[абвгдеёжзийклмопстуфхцчшщюя]') then continue;
- //if Regex.IsMatch(s2, 'хё[]') then continue;
- //if Regex.IsMatch(s2, 'хж[]') then continue;
- //if Regex.IsMatch(s2, 'хз[]') then continue;
- if Regex.IsMatch(s2, 'хи[абгёжкнорсуфцшюя]') then continue;
- //if Regex.IsMatch(s2, 'хй[]') then continue;
- //if Regex.IsMatch(s2, 'хк[]') then continue;
- if Regex.IsMatch(s2, 'хл[бвгджзклмнпстфцчшщь]') then continue;
- if Regex.IsMatch(s2, 'хм[бвгёжзклмнопрстфхцчшщыьюя]') then continue;
- if Regex.IsMatch(s2, 'хн[бвгджзкмнрстфцчшщыья]') then continue;
- if Regex.IsMatch(s2, 'хо[абёикопуфцшщэя]') then continue;
- if Regex.IsMatch(s2, 'хп[аеёиклнопрстфцчшщыьюя]') then continue;
- if Regex.IsMatch(s2, 'хр[бвгдёжзклмнпрстфхцчшщыью]') then continue;
- if Regex.IsMatch(s2, 'хс[абвгдеёжзиклмнпрстуфхцчшщъыьэю]') then continue;
- if Regex.IsMatch(s2, 'хт[бвгдеёжзклмнопрстфхцчшщъыью]') then continue;
- if Regex.IsMatch(s2, 'ху[абвгезийклмнопрсуфхцшщэя]') then continue;
- //if Regex.IsMatch(s2, 'хф[]') then continue;
- //if Regex.IsMatch(s2, 'хх[]') then continue;
- //if Regex.IsMatch(s2, 'хц[]') then continue;
- if Regex.IsMatch(s2, 'хч[веёиклмнортушь]') then continue;
- if Regex.IsMatch(s2, 'хш[авгёклмнопртуцшью]') then continue;
- //if Regex.IsMatch(s2, 'хщ[]') then continue;
- if Regex.IsMatch(s2, 'хъ[ёюя]') then continue;
- //if Regex.IsMatch(s2, 'хы[]') then continue;
- //if Regex.IsMatch(s2, 'хь[]') then continue;
- //if Regex.IsMatch(s2, 'хэ[]') then continue;
- //if Regex.IsMatch(s2, 'хю[]') then continue;
- //if Regex.IsMatch(s2, 'хя[]') then continue;
- //ц**----------------------------------------------------------------------------------------------------
- if Regex.IsMatch(s2, 'ца[абвгдёжзийкопсуфцчшщэ]') then continue;
- if Regex.IsMatch(s2, 'цб[абвгдеёжзиклмнорстхцчшщъыьюя]') then continue;
- if Regex.IsMatch(s2, 'цв[абвгдёжзиклмнопрстухцчшщъыьюя]') then continue;
- //if Regex.IsMatch(s2, 'цг[]') then continue;
- //if Regex.IsMatch(s2, 'цд[]') then continue;
- if Regex.IsMatch(s2, 'це[абеёжзикоуфхцчшщюя]') then continue;
- //if Regex.IsMatch(s2, 'цё[]') then continue;
- //if Regex.IsMatch(s2, 'цж[]') then continue;
- //if Regex.IsMatch(s2, 'цз[]') then continue;
- if Regex.IsMatch(s2, 'ци[бгдёжзклмсухцчшщ]') then continue;
- //if Regex.IsMatch(s2, 'цй[]') then continue;
- if Regex.IsMatch(s2, 'цк[вдежзклнрстфхцш]') then continue;
- //if Regex.IsMatch(s2, 'цл[]') then continue;
- if Regex.IsMatch(s2, 'цм[абвгеёжзиклмнопрстфхцчшщыьюя]') then continue;
- //if Regex.IsMatch(s2, 'цн[]') then continue;
- if Regex.IsMatch(s2, 'цо[абгдеёжзийклнопрстуфхцчшщэюя]') then continue;
- //if Regex.IsMatch(s2, 'цп[]') then continue;
- //if Regex.IsMatch(s2, 'цр[]') then continue;
- //if Regex.IsMatch(s2, 'цс[]') then continue;
- //if Regex.IsMatch(s2, 'цт[]') then continue;
- if Regex.IsMatch(s2, 'цу[абвгдийклмнопрстуфхцчшщэ]') then continue;
- //if Regex.IsMatch(s2, 'цф[]') then continue;
- //if Regex.IsMatch(s2, 'цх[]') then continue;
- if Regex.IsMatch(s2, 'цц[бвикмуцы]') then continue;
- //if Regex.IsMatch(s2, 'цч[]') then continue;
- //if Regex.IsMatch(s2, 'цш[]') then continue;
- //if Regex.IsMatch(s2, 'цщ[]') then continue;
- //if Regex.IsMatch(s2, 'цъ[]') then continue;
- if Regex.IsMatch(s2, 'цы[бвдежзийклмрстуцчшщя]') then continue;
- //if Regex.IsMatch(s2, 'ць[]') then continue;
- //if Regex.IsMatch(s2, 'цэ[]') then continue;
- //if Regex.IsMatch(s2, 'цю[]') then continue;
- //if Regex.IsMatch(s2, 'ця[]') then continue;
- //ч**----------------------------------------------------------------------------------------------------
- if Regex.IsMatch(s2, 'ча[абёжзопуфцэ]') then continue;
- //if Regex.IsMatch(s2, 'чб[]') then continue;
- if Regex.IsMatch(s2, 'чв[бвгдеёжзиклмнопрстхцчшщъьюя]') then continue;
- //if Regex.IsMatch(s2, 'чг[]') then continue;
- //if Regex.IsMatch(s2, 'чд[]') then continue;
- if Regex.IsMatch(s2, 'че[адёиоуцщя]') then continue;
- if Regex.IsMatch(s2, 'чё[бгджзйкпхчшщ]') then continue;
- //if Regex.IsMatch(s2, 'чж[]') then continue;
- //if Regex.IsMatch(s2, 'чз[]') then continue;
- if Regex.IsMatch(s2, 'чи[агдёжзопуф]') then continue;
- //if Regex.IsMatch(s2, 'чй[]') then continue;
- if Regex.IsMatch(s2, 'чк[вджзклнрстфхцш]') then continue;
- if Regex.IsMatch(s2, 'чл[бвгдёжзклмнопстуфцчшщыьюя]') then continue;
- if Regex.IsMatch(s2, 'чм[абвгеёжзиклмнпрстуфхцчшщыьюя]') then continue;
- if Regex.IsMatch(s2, 'чн[бвгдёжзкмнрстфцчшщьюя]') then continue;
- if Regex.IsMatch(s2, 'чо[абвгдеёжзилостуфцчшщэюя]') then continue;
- //if Regex.IsMatch(s2, 'чп[]') then continue;
- if Regex.IsMatch(s2, 'чр[абвгдёжзиклмнопрстуфхцчшщыьюя]') then continue;
- //if Regex.IsMatch(s2, 'чс[]') then continue;
- if Regex.IsMatch(s2, 'чт[бвгдёжзклмнпрстфхцчшщъьэю]') then continue;
- if Regex.IsMatch(s2, 'чу[абзийкмнопуфцчшэ]') then continue;
- //if Regex.IsMatch(s2, 'чф[]') then continue;
- //if Regex.IsMatch(s2, 'чх[]') then continue;
- //if Regex.IsMatch(s2, 'чц[]') then continue;
- //if Regex.IsMatch(s2, 'чч[]') then continue;
- if Regex.IsMatch(s2, 'чш[вгёклмнопртцшью]') then continue;
- //if Regex.IsMatch(s2, 'чщ[]') then continue;
- //if Regex.IsMatch(s2, 'чъ[]') then continue;
- //if Regex.IsMatch(s2, 'чы[]') then continue;
- if Regex.IsMatch(s2, 'чь[бвгдёжзкмноптхцчшщэ]') then continue;
- //if Regex.IsMatch(s2, 'чэ[]') then continue;
- //if Regex.IsMatch(s2, 'чю[]') then continue;
- //if Regex.IsMatch(s2, 'чя[]') then continue;
- //ш**----------------------------------------------------------------------------------------------------
- if Regex.IsMatch(s2, 'ша[аёзиосуцчшэ]') then continue;
- //if Regex.IsMatch(s2, 'шб[]') then continue;
- if Regex.IsMatch(s2, 'шв[бвгдёжзклмнопрстухцчшщъыьюя]') then continue;
- if Regex.IsMatch(s2, 'шг[авдезиклмнрстуфчшью]') then continue;
- //if Regex.IsMatch(s2, 'шд[]') then continue;
- if Regex.IsMatch(s2, 'ше[аёжзоуфцщ]') then continue;
- if Regex.IsMatch(s2, 'шё[бвгджзйкмрсхчшщ]') then continue;
- //if Regex.IsMatch(s2, 'шж[]') then continue;
- //if Regex.IsMatch(s2, 'шз[]') then continue;
- if Regex.IsMatch(s2, 'ши[агдёжзоуцч]') then continue;
- //if Regex.IsMatch(s2, 'шй[]') then continue;
- if Regex.IsMatch(s2, 'шк[джзклнрстфхцш]') then continue;
- if Regex.IsMatch(s2, 'шл[бвгджзклмнпстфцчшщь]') then continue;
- if Regex.IsMatch(s2, 'шм[бвгеёжзиклмнопрстуфхцчшщьюя]') then continue;
- if Regex.IsMatch(s2, 'шн[бвгдёжзкмнрстфцчшщь]') then continue;
- if Regex.IsMatch(s2, 'шо[абдёжзилоуфхцшщэя]') then continue;
- if Regex.IsMatch(s2, 'шп[ёклнопрстуфцчшщыьюя]') then continue;
- if Regex.IsMatch(s2, 'шр[абвгдеёжзиклмнопрстфхцчшщыьюя]') then continue;
- //if Regex.IsMatch(s2, 'шс[]') then continue;
- if Regex.IsMatch(s2, 'шт[бвгдеёжзклмнпстфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2, 'шу[авгдежзийкнопсуфхцшщэя]') then continue;
- //if Regex.IsMatch(s2, 'шф[]') then continue;
- //if Regex.IsMatch(s2, 'шх[]') then continue;
- if Regex.IsMatch(s2, 'шц[абвеикмоц]') then continue;
- //if Regex.IsMatch(s2, 'шч[]') then continue;
- if Regex.IsMatch(s2, 'шш[авгеёиклмнопртуцшью]') then continue;
- //if Regex.IsMatch(s2, 'шщ[]') then continue;
- //if Regex.IsMatch(s2, 'шъ[]') then continue;
- //if Regex.IsMatch(s2, 'шы[]') then continue;
- if Regex.IsMatch(s2, 'шь[бвгджзикмноптхцчшщэя]') then continue;
- //if Regex.IsMatch(s2, 'шэ[]') then continue;
- if Regex.IsMatch(s2, 'шю[абвгджзиклмнпстфхчшщю]') then continue;
- //if Regex.IsMatch(s2, 'шя[]') then continue;
- //щ**----------------------------------------------------------------------------------------------------
- if Regex.IsMatch(s2, 'ща[абгёжзикопруфхцчшщэ]') then continue;
- //if Regex.IsMatch(s2, 'щб[]') then continue;
- //if Regex.IsMatch(s2, 'щв[]') then continue;
- //if Regex.IsMatch(s2, 'щг[]') then continue;
- //if Regex.IsMatch(s2, 'щд[]') then continue;
- if Regex.IsMatch(s2, 'ще[аёзиоуфхцчщя]') then continue;
- if Regex.IsMatch(s2, 'щё[бвгджзймпрстхшщ]') then continue;
- //if Regex.IsMatch(s2, 'щж[]') then continue;
- //if Regex.IsMatch(s2, 'щз[]') then continue;
- if Regex.IsMatch(s2, 'щи[абгдёжзиорсуфшю]') then continue;
- //if Regex.IsMatch(s2, 'щй[]') then continue;
- //if Regex.IsMatch(s2, 'щк[]') then continue;
- //if Regex.IsMatch(s2, 'щл[]') then continue;
- //if Regex.IsMatch(s2, 'щм[]') then continue;
- if Regex.IsMatch(s2, 'щн[бвгдеёжзкмнрстфцчшщыьюя]') then continue;
- if Regex.IsMatch(s2, 'що[абвгдеёжзийклнопрсуфхцчшщэюя]') then continue;
- //if Regex.IsMatch(s2, 'щп[]') then continue;
- if Regex.IsMatch(s2, 'щр[абвгджзклмнопрстуфхцчшщыью]') then continue;
- //if Regex.IsMatch(s2, 'щс[]') then continue;
- //if Regex.IsMatch(s2, 'щт[]') then continue;
- if Regex.IsMatch(s2, 'щу[абвгдежзийлмоуфхцчшэя]') then continue;
- //if Regex.IsMatch(s2, 'щф[]') then continue;
- //if Regex.IsMatch(s2, 'щх[]') then continue;
- //if Regex.IsMatch(s2, 'щц[]') then continue;
- //if Regex.IsMatch(s2, 'щч[]') then continue;
- //if Regex.IsMatch(s2, 'щш[]') then continue;
- //if Regex.IsMatch(s2, 'щщ[]') then continue;
- //if Regex.IsMatch(s2, 'щъ[]') then continue;
- //if Regex.IsMatch(s2, 'щы[]') then continue;
- if Regex.IsMatch(s2, 'щь[бвгдеёжзикмнопстхцчшщэя]') then continue;
- //if Regex.IsMatch(s2, 'щэ[]') then continue;
- //if Regex.IsMatch(s2, 'щю[]') then continue;
- //if Regex.IsMatch(s2, 'щя[]') then continue;
- //ъ**----------------------------------------------------------------------------------------------------
- //if Regex.IsMatch(s2, 'ъа[]') then continue;
- //if Regex.IsMatch(s2, 'ъб[]') then continue;
- //if Regex.IsMatch(s2, 'ъв[]') then continue;
- //if Regex.IsMatch(s2, 'ъг[]') then continue;
- //if Regex.IsMatch(s2, 'ъд[]') then continue;
- if Regex.IsMatch(s2, 'ъе[абгеёжийноптуфцчшщюя]') then continue;
- if Regex.IsMatch(s2, 'ъё[бвгджзйклнпрстхчшщ]') then continue;
- //if Regex.IsMatch(s2, 'ъж[]') then continue;
- //if Regex.IsMatch(s2, 'ъз[]') then continue;
- //if Regex.IsMatch(s2, 'ъи[]') then continue;
- //if Regex.IsMatch(s2, 'ъй[]') then continue;
- //if Regex.IsMatch(s2, 'ък[]') then continue;
- //if Regex.IsMatch(s2, 'ъл[]') then continue;
- //if Regex.IsMatch(s2, 'ъм[]') then continue;
- //if Regex.IsMatch(s2, 'ън[]') then continue;
- //if Regex.IsMatch(s2, 'ъо[]') then continue;
- //if Regex.IsMatch(s2, 'ъп[]') then continue;
- //if Regex.IsMatch(s2, 'ър[]') then continue;
- //if Regex.IsMatch(s2, 'ъс[]') then continue;
- //if Regex.IsMatch(s2, 'ът[]') then continue;
- //if Regex.IsMatch(s2, 'ъу[]') then continue;
- //if Regex.IsMatch(s2, 'ъф[]') then continue;
- //if Regex.IsMatch(s2, 'ъх[]') then continue;
- //if Regex.IsMatch(s2, 'ъц[]') then continue;
- //if Regex.IsMatch(s2, 'ъч[]') then continue;
- //if Regex.IsMatch(s2, 'ъш[]') then continue;
- //if Regex.IsMatch(s2, 'ъщ[]') then continue;
- //if Regex.IsMatch(s2, 'ъъ[]') then continue;
- //if Regex.IsMatch(s2, 'ъы[]') then continue;
- //if Regex.IsMatch(s2, 'ъь[]') then continue;
- //if Regex.IsMatch(s2, 'ъэ[]') then continue;
- if Regex.IsMatch(s2, 'ъю[абвгджзиклмнпрсфхцчшщю]') then continue;
- if Regex.IsMatch(s2, 'ъя[бгдежзийклмнпрухцчшщюя]') then continue;
- //ы**----------------------------------------------------------------------------------------------------
- //if Regex.IsMatch(s2, 'ыа[]') then continue;
- if Regex.IsMatch(s2, 'ыб[бвгдёжзлмстхцчшщъьюя]') then continue;
- if Regex.IsMatch(s2, 'ыв[бвгдёжзлмпрстхцчщъыьюя]') then continue;
- if Regex.IsMatch(s2, 'ыг[вдезкмстфчшью]') then continue;
- if Regex.IsMatch(s2, 'ыд[бгджзкмпрстхцчшщъыью]') then continue;
- if Regex.IsMatch(s2, 'ые[абвгеёжийклмнопрстуфцчшщюя]') then continue;
- //if Regex.IsMatch(s2, 'ыё[]') then continue;
- if Regex.IsMatch(s2, 'ыж[бгжлмнрсцчь]') then continue;
- if Regex.IsMatch(s2, 'ыз[абёзиклрсуцчшъьюя]') then continue;
- if Regex.IsMatch(s2, 'ыи[абвдеёжзийклмнопрстуфхцчшщюя]') then continue;
- if Regex.IsMatch(s2, 'ый[безклмнорсфцчшщ]') then continue;
- if Regex.IsMatch(s2, 'ык[вджзкстфхц]') then continue;
- if Regex.IsMatch(s2, 'ыл[бвгджзлмнптфцчшщюя]') then continue;
- if Regex.IsMatch(s2, 'ым[бвгёжзлмнпртфхцчшщью]') then continue;
- if Regex.IsMatch(s2, 'ын[бвгджзмрфцшщ]') then continue;
- //if Regex.IsMatch(s2, 'ыо[]') then continue;
- if Regex.IsMatch(s2, 'ып[ёкпстфцчшщюя]') then continue;
- if Regex.IsMatch(s2, 'ыр[бгджзлмпртфхцчшщюя]') then continue;
- if Regex.IsMatch(s2, 'ыс[бгдёжзрсфхцщъэю]') then continue;
- if Regex.IsMatch(s2, 'ыт[бвгдёжзлмптфхцчшщъэю]') then continue;
- if Regex.IsMatch(s2, 'ыу[абвгдежзийклмнопрстуфхцшщэюя]') then continue;
- //if Regex.IsMatch(s2, 'ыф[]') then continue;
- if Regex.IsMatch(s2, 'ых[вгдемпрстучшъ]') then continue;
- if Regex.IsMatch(s2, 'ыц[бвеикмоуцы]') then continue;
- if Regex.IsMatch(s2, 'ыч[вёлмртшь]') then continue;
- if Regex.IsMatch(s2, 'ыш[вгёмопртшью]') then continue;
- if Regex.IsMatch(s2, 'ыщ[аеёинорь]') then continue;
- //if Regex.IsMatch(s2, 'ыъ[]') then continue;
- //if Regex.IsMatch(s2, 'ыы[]') then continue;
- //if Regex.IsMatch(s2, 'ыь[]') then continue;
- //if Regex.IsMatch(s2, 'ыэ[]') then continue;
- //if Regex.IsMatch(s2, 'ыю[]') then continue;
- if Regex.IsMatch(s2, 'ыя[бвгдежзийклмнпртухцчшщюя]') then continue;
- //ь**----------------------------------------------------------------------------------------------------
- //if Regex.IsMatch(s2, 'ьа[]') then continue;
- if Regex.IsMatch(s2, 'ьб[бвгдёжзиклмнрстхцчшщъьюя]') then continue;
- if Regex.IsMatch(s2, 'ьв[бвгдёжзклмнпрстухцчшщъыьюя]') then continue;
- if Regex.IsMatch(s2, 'ьг[вдезклмнорстуфчшью]') then continue;
- if Regex.IsMatch(s2, 'ьд[бвгдёжзклмнпрстхцчщъыьюя]') then continue;
- if Regex.IsMatch(s2, 'ье[абеёжзиклнопуфхцчщя]') then continue;
- if Regex.IsMatch(s2, 'ьё[бвгджйклнпрсхчшщ]') then continue;
- if Regex.IsMatch(s2, 'ьж[абгдеёжиклмнрсуцчь]') then continue;
- if Regex.IsMatch(s2, 'ьз[бвгдёжзилмрстцчшъью]') then continue;
- if Regex.IsMatch(s2, 'ьи[абвгдеёжзийклнопрстуфшщюя]') then continue;
- //if Regex.IsMatch(s2, 'ьй[]') then continue;
- if Regex.IsMatch(s2, 'ьк[вджзклрстфхцш]') then continue;
- //if Regex.IsMatch(s2, 'ьл[]') then continue;
- if Regex.IsMatch(s2, 'ьм[бвгжзклмнпрстфхцчшщьюя]') then continue;
- if Regex.IsMatch(s2, 'ьн[бвгдёжзкмнрстфцчшщья]') then continue;
- if Regex.IsMatch(s2, 'ьо[абвгдеёжзийклмопрстуфхцчшщэюя]') then continue;
- if Regex.IsMatch(s2, 'ьп[аеёиклнопрсуфцчшщыьюя]') then continue;
- //if Regex.IsMatch(s2, 'ьр[]') then continue;
- if Regex.IsMatch(s2, 'ьс[бвгдеёжзлнпрсуфхцчшщъьэю]') then continue;
- if Regex.IsMatch(s2, 'ьт[бвгдёжзклмнпрстфхцчшщъьэюя]') then continue;
- //if Regex.IsMatch(s2, 'ьу[]') then continue;
- //if Regex.IsMatch(s2, 'ьф[]') then continue;
- if Regex.IsMatch(s2, 'ьх[авгделмнопрстучшъ]') then continue;
- if Regex.IsMatch(s2, 'ьц[бвкмц]') then continue;
- if Regex.IsMatch(s2, 'ьч[вёклмнортушь]') then continue;
- if Regex.IsMatch(s2, 'ьш[вгёклмнпртцшю]') then continue;
- if Regex.IsMatch(s2, 'ьщ[ёноруь]') then continue;
- //if Regex.IsMatch(s2, 'ьъ[]') then continue;
- //if Regex.IsMatch(s2, 'ьы[]') then continue;
- //if Regex.IsMatch(s2, 'ьь[]') then continue;
- if Regex.IsMatch(s2, 'ьэ[гдзйклмнпрсфхш]') then continue;
- if Regex.IsMatch(s2, 'ью[бвгжзиклмнпрфхцчшю]') then continue;
- if Regex.IsMatch(s2, 'ья[бгдезийпстуцшщюя]') then continue;
- //э**----------------------------------------------------------------------------------------------------
- //if Regex.IsMatch(s2, 'эа[]') then continue;
- //if Regex.IsMatch(s2, 'эб[]') then continue;
- //if Regex.IsMatch(s2, 'эв[]') then continue;
- if Regex.IsMatch(s2, 'эг[авдзиклмнрстуфчшью]') then continue;
- if Regex.IsMatch(s2, 'эд[бгдеёжзиклмнопрстухцчшщъыьюя]') then continue;
- //if Regex.IsMatch(s2, 'эе[]') then continue;
- //if Regex.IsMatch(s2, 'эё[]') then continue;
- //if Regex.IsMatch(s2, 'эж[]') then continue;
- if Regex.IsMatch(s2, 'эз[абвгдеёжзклмнорстуцчшъыьюя]') then continue;
- //if Regex.IsMatch(s2, 'эи[]') then continue;
- if Regex.IsMatch(s2, 'эй[бдезклмнорстфцчшщ]') then continue;
- if Regex.IsMatch(s2, 'эк[вдежклнртуфхцш]') then continue;
- if Regex.IsMatch(s2, 'эл[бвгдёжзкмнопстуфцчшщыюя]') then continue;
- if Regex.IsMatch(s2, 'эм[бвгеёжзиклмнопрстуфхцчшщыьюя]') then continue;
- if Regex.IsMatch(s2, 'эн[бвгдёжзикмнорсуфцчшщыьюя]') then continue;
- //if Regex.IsMatch(s2, 'эо[]') then continue;
- if Regex.IsMatch(s2, 'эп[аеёклнпрстуфцчшщыьюя]') then continue;
- if Regex.IsMatch(s2, 'эр[абвгдеёжзикнопрстуфхцчшщыьюя]') then continue;
- if Regex.IsMatch(s2, 'эс[абвгдеёжзилмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2, 'эт[бвгдеёжзклмпрстфхцчшщъыьэя]') then continue;
- //if Regex.IsMatch(s2, 'эу[]') then continue;
- if Regex.IsMatch(s2, 'эф[аеёилмнорстучыьюя]') then continue;
- if Regex.IsMatch(s2, 'эх[авгдеилмнопрстучшъ]') then continue;
- //if Regex.IsMatch(s2, 'эц[]') then continue;
- //if Regex.IsMatch(s2, 'эч[]') then continue;
- if Regex.IsMatch(s2, 'эш[вгеёиклмнопртуцшью]') then continue;
- //if Regex.IsMatch(s2, 'эщ[]') then continue;
- //if Regex.IsMatch(s2, 'эъ[]') then continue;
- //if Regex.IsMatch(s2, 'эы[]') then continue;
- //if Regex.IsMatch(s2, 'эь[]') then continue;
- //if Regex.IsMatch(s2, 'ээ[]') then continue;
- //if Regex.IsMatch(s2, 'эю[]') then continue;
- //if Regex.IsMatch(s2, 'эя[]') then continue;
- //ю**----------------------------------------------------------------------------------------------------
- if Regex.IsMatch(s2, 'юа[абвгдеёжзийклмнопстуфхцчшщэюя]') then continue;
- if Regex.IsMatch(s2, 'юб[абгдёжзмрстхцшщъыью]') then continue;
- if Regex.IsMatch(s2, 'юв[бвгдеёжзклмнопрстухцчшщъыьюя]') then continue;
- if Regex.IsMatch(s2, 'юг[авдзиклмнрстфчшью]') then continue;
- if Regex.IsMatch(s2, 'юд[бвгдёжзклмнпртхцчшщъю]') then continue;
- //if Regex.IsMatch(s2, 'юе[]') then continue;
- //if Regex.IsMatch(s2, 'юё[]') then continue;
- if Regex.IsMatch(s2, 'юж[абгдёжиклморсуцчь]') then continue;
- if Regex.IsMatch(s2, 'юз[абвгдеёжзиклмнрстуцчшъыьюя]') then continue;
- if Regex.IsMatch(s2, 'юи[абвгдеёжзийклмнопрстуфхцчшщюя]') then continue;
- //if Regex.IsMatch(s2, 'юй[]') then continue;
- if Regex.IsMatch(s2, 'юк[вдежзклнорстуфхцш]') then continue;
- if Regex.IsMatch(s2, 'юл[абвгдёжзклмнопстфцчшщы]') then continue;
- if Regex.IsMatch(s2, 'юм[абвгёжзилмнпрстуфхцчшщыьюя]') then continue;
- if Regex.IsMatch(s2, 'юн[абвгдёжзмнрстфцчшщю]') then continue;
- //if Regex.IsMatch(s2, 'юо[]') then continue;
- if Regex.IsMatch(s2, 'юп[еёклнопрстуфцчшщыьюя]') then continue;
- if Regex.IsMatch(s2, 'юр[авгдеёжзлмнрфхцчшщюя]') then continue;
- if Regex.IsMatch(s2, 'юс[абвгдеёжзиклмнпруфхцчшщъыэю]') then continue;
- if Regex.IsMatch(s2, 'ют[бвгдеёжзлмопртуфхцчшщъыэя]') then continue;
- //if Regex.IsMatch(s2, 'юу[]') then continue;
- if Regex.IsMatch(s2, 'юф[аеёимнорстуфчыью]') then continue;
- if Regex.IsMatch(s2, 'юх[вгдлмнпрстучшъ]') then continue;
- if Regex.IsMatch(s2, 'юц[авекмоуцы]') then continue;
- if Regex.IsMatch(s2, 'юч[влмнртшь]') then continue;
- if Regex.IsMatch(s2, 'юш[авгёлмопртуцшью]') then continue;
- if Regex.IsMatch(s2, 'ющ[ёнрь]') then continue;
- //if Regex.IsMatch(s2, 'юъ[]') then continue;
- //if Regex.IsMatch(s2, 'юы[]') then continue;
- //if Regex.IsMatch(s2, 'юь[]') then continue;
- //if Regex.IsMatch(s2, 'юэ[]') then continue;
- if Regex.IsMatch(s2, 'юю[абвгджзиклмнпрсфхцчшщю]') then continue;
- //if Regex.IsMatch(s2, 'юя[]') then continue;
- //я**----------------------------------------------------------------------------------------------------
- //if Regex.IsMatch(s2, 'яа[]') then continue;
- if Regex.IsMatch(s2, 'яб[бвгдеёжзлмстухцчщъыьюя]') then continue;
- if Regex.IsMatch(s2, 'яв[абвгдеёжзмпрстхцчщъью]') then continue;
- if Regex.IsMatch(s2, 'яг[взмрстфшью]') then continue;
- if Regex.IsMatch(s2, 'яд[бвгдёжзлмпстхцщъ]') then continue;
- if Regex.IsMatch(s2, 'яе[абгдеёжзийклнопрсуфхцчщюя]') then continue;
- //if Regex.IsMatch(s2, 'яё[]') then continue;
- if Regex.IsMatch(s2, 'яж[бгджлморцч]') then continue;
- if Regex.IsMatch(s2, 'яз[бдёжзморстуцъ]') then continue;
- if Regex.IsMatch(s2, 'яи[абвгдеёжзийклмопрстуфхшщюя]') then continue;
- if Regex.IsMatch(s2, 'яй[бдезлморфчшщ]') then continue;
- if Regex.IsMatch(s2, 'як[вджзклнрстфхцш]') then continue;
- if Regex.IsMatch(s2, 'ял[бвгдеёжзлмнптуфцчшщя]') then continue;
- if Regex.IsMatch(s2, 'ям[абвгеёжзмнпртфхцчшьюя]') then continue;
- if Regex.IsMatch(s2, 'ян[бвгёжзмрфчшщ]') then continue;
- //if Regex.IsMatch(s2, 'яо[]') then continue;
- if Regex.IsMatch(s2, 'яп[ёилнпрстфцчшщьюя]') then continue;
- if Regex.IsMatch(s2, 'яр[бвгеёжзпрстуфхцшщьюя]') then continue;
- if Regex.IsMatch(s2, 'яс[бвгджзмпрфхцчшщъыэю]') then continue;
- if Regex.IsMatch(s2, 'ят[бгдёжзлмпртфхцчшщъэю]') then continue;
- if Regex.IsMatch(s2, 'яу[абвгдежийклмнопрстуфхцчшщэюя]') then continue;
- //if Regex.IsMatch(s2, 'яф[]') then continue;
- if Regex.IsMatch(s2, 'ях[авгделмопрсучшъ]') then continue;
- if Regex.IsMatch(s2, 'яц[бвкмоуц]') then continue;
- if Regex.IsMatch(s2, 'яч[влмртш]') then continue;
- if Regex.IsMatch(s2, 'яш[гёимопртцшью]') then continue;
- if Regex.IsMatch(s2, 'ящ[орь]') then continue;
- //if Regex.IsMatch(s2, 'яъ[]') then continue;
- //if Regex.IsMatch(s2, 'яы[]') then continue;
- //if Regex.IsMatch(s2, 'яь[]') then continue;
- //if Regex.IsMatch(s2, 'яэ[]') then continue;
- if Regex.IsMatch(s2, 'яю[абвгджзиклмнпрфхцчшю]') then continue;
- if Regex.IsMatch(s2, 'яя[бвгдежзийклмнпртухцчшщюя]') then continue;
- //---------------------------------------------------------------------
- // триграммы в начале слов
- //----------------------------------------------------------------------
- //\bа**-------------------------------------------------------------
- if Regex.IsMatch(s2,'\bаа[бвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bаб[бвгдеёжзийклмнпртуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bав[бвдёжзийклмнпруфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bаг[бвгдёжзийклмнопстфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bад[бгдеёжзийклнопстуфхцчшщыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bае[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bаё[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bаж[абвгдеёжзийклмнопрстфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bаз[бвгдеёжзйклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bаи[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bай[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bак[бвгдеёжзийлмнопрсфхчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bал[бвгджзйкмнпрсуфхцчшщъыэюя]') then continue;
- if Regex.IsMatch(s2,'\bам[гдёжзйклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bан[бвёжзйклмопрсухцчшщъыьэя]') then continue;
- if Regex.IsMatch(s2,'\bао[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bап[абвгдёжзийклмнсфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bар[вдёжзйлнопруфцчщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bас[абвгдеёжзийклмнопруфхцчшщъыэюя]') then continue;
- if Regex.IsMatch(s2,'\bат[бвгдеёжзийкнопрсуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bау[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bаф[абвгдеёжзйклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bах[абвгдеёжзийклмопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bац[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bач[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bаш[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bащ[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bаъ[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bаы[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bаь[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bаэ[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bаю[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bая[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- //\bб**-------------------------------------------------------------
- if Regex.IsMatch(s2,'\bба[авеёжиймопуфчщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bбб[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bбв[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bбг[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bбд[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bбе[абвеёимопуфхцщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bбё[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bбж[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bбз[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bби[агдёжзийкмпухчщъыьэю]') then continue;
- if Regex.IsMatch(s2,'\bбй[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bбк[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bбл[бвгдёжзйклмнпрстфхцчшщъыьэя]') then continue;
- if Regex.IsMatch(s2,'\bбм[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bбн[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bбо[авеёзопухцшщъыьэ]') then continue;
- if Regex.IsMatch(s2,'\bбп[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bбр[бвгдёжзйклмнпстфхцчшщъьэ]') then continue;
- if Regex.IsMatch(s2,'\bбс[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bбт[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bбу[авеёинопуцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bбф[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bбх[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bбц[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bбч[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bбш[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bбщ[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bбъ[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bбы[абгдеёжзиймнопруфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bбь[абвгдёжзийклмнопрстуфхцчшщъыьэя]') then continue;
- if Regex.IsMatch(s2,'\bбэ[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bбю[абгдеёжзийклмнопртуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bбя[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- //\bв**-------------------------------------------------------------
- if Regex.IsMatch(s2,'\bва[абдеёийкопуфцчъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bвб[абвгдёжзийкмнопстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bвв[бвгджзийклмнпрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bвг[абвгдеёжзийкмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bвд[бгдеёжзийклмнпстфхцчшщъьэюя]') then continue;
- if Regex.IsMatch(s2,'\bве[абвёиймопуфхцъыьэю]') then continue;
- if Regex.IsMatch(s2,'\bвё[абвгдеёжзийкмнопстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bвж[бвгдеёжзйклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bвз[еёжзийкнпстуфхцчшщьэю]') then continue;
- if Regex.IsMatch(s2,'\bви[абгеёиймопруфхчщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bвй[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bвк[абвгдеёжзийклмнопстфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bвл[бвгдёжзйклмнпрстуфхцчшщъыьэя]') then continue;
- if Regex.IsMatch(s2,'\bвм[абвгдёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bвн[бвгджзйклмнпрстфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bво[абёмуфхцчщъыьэя]') then continue;
- if Regex.IsMatch(s2,'\bвп[бвгдёжзйкмнпстфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bвр[бвгдёжзийклмнпрстфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bвс[бвгджзийнрсфцчшщъыэ]') then continue;
- if Regex.IsMatch(s2,'\bвт[абвгдеёжзийклмнпстуфхцчшщъыьэю]') then continue;
- if Regex.IsMatch(s2,'\bву[бвгдеёжзийклмопстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bвф[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bвх[абвгдеёжзийклмнпрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bвц[абвгдёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bвч[абвгдёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bвш[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bвщ[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bвъ[абвгдёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bвы[аёофцщъыьэю]') then continue;
- if Regex.IsMatch(s2,'\bвь[абвгдеёжзийклмнопрстуфхцчшщъыьэя]') then continue;
- if Regex.IsMatch(s2,'\bвэ[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bвю[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bвя[абвгдеёийкмопрстуфхцчшщъыьэюя]') then continue;
- //\bг**-------------------------------------------------------------
- if Regex.IsMatch(s2,'\bга[абвеёийкоптфхцчщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bгб[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bгв[бвгдеёжзийклмнпрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bгг[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bгд[абвгдёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bге[абвдеёжзийкпстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bгё[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bгж[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bгз[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bги[авеёжзийклностуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bгй[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bгк[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bгл[бвгдеёжзйклмнпрстфхцчшщъыьэю]') then continue;
- if Regex.IsMatch(s2,'\bгм[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bгн[бвгджзйклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bго[абеёзийкмопухцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bгп[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bгр[бвгдёжзйклмнпрстфхцчшщъьэю]') then continue;
- if Regex.IsMatch(s2,'\bгс[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bгт[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bгу[агдеёзийнопуфхцчшъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bгф[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bгх[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bгц[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bгч[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bгш[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bгщ[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bгъ[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bгы[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bгь[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bгэ[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bгю[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bгя[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- //\bд**-------------------------------------------------------------
- if Regex.IsMatch(s2,'\bда[абгзикопуфхцщъыьэя]') then continue;
- if Regex.IsMatch(s2,'\bдб[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bдв[бвгдёжзйклмнпрстфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bдг[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bдд[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bде[абеёзиоухцчщъыьэю]') then continue;
- if Regex.IsMatch(s2,'\bдё[абвгдеёжзийклмнопстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bдж[абвгдёжзийклмнпрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bдз[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bди[бгёжзийноуфхцшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bдй[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bдк[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bдл[абвгдеёжзйклмнопрстуфхцчшщъыьэю]') then continue;
- if Regex.IsMatch(s2,'\bдм[абвгдеёжзйклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bдн[абвгджзйклмнопрстуфхцчшщъыьэ]') then continue;
- if Regex.IsMatch(s2,'\bдо[аёзуфцщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bдп[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bдр[бвгдёжзийклмнпрстфхцчшщъыьэю]') then continue;
- if Regex.IsMatch(s2,'\bдс[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bдт[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bду[агдеёжзийклостуфцчщъыьюя]') then continue;
- if Regex.IsMatch(s2,'\bдф[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bдх[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bдц[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bдч[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bдш[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bдщ[абвгдёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bдъ[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bды[авгдеёжзийлнопстуфцчщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bдь[абвгдеёжзийклмнопрстуфхцчшщъыьэю]') then continue;
- if Regex.IsMatch(s2,'\bдэ[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bдю[авгдеёжзийклмнопртуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bдя[абвгеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- //\bе**-------------------------------------------------------------
- if Regex.IsMatch(s2,'\bеа[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bеб[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bев[бвдеёжзийклмнопстуфхцчщъьэюя]') then continue;
- if Regex.IsMatch(s2,'\bег[абвгдёжзийклмнпрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bед[бгдёжзйклмнпрстфхцчшщъьэю]') then continue;
- if Regex.IsMatch(s2,'\bее[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bеё[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bеж[абвгдёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bез[абвгеёзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bеи[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bей[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bек[бвгдеёжзийклмнопрсуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bел[бвгдёжзйклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bем[абвгдеёжзийклмнопрстфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bен[абвгдеёжзийклмнпрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bео[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bеп[абвгдеёжзйклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bер[абвдеёжзийклнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bес[абвгдеёжзйкмнопрсуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bет[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bеу[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bеф[абвгдеёжзйклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bех[бвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bец[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bеч[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bеш[абвгдеёжзийклмнопрстуфхцчшщъыэюя]') then continue;
- if Regex.IsMatch(s2,'\bещ[абвгдежзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bеъ[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bеы[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bеь[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bеэ[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bею[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bея[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- //\bё**-------------------------------------------------------------
- if Regex.IsMatch(s2,'\bёа[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bёб[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bёв[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bёг[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bёд[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bёе[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bёё[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bёж[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bёз[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bёи[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bёй[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bёк[бвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bёл[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bём[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bён[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bёо[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bёп[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bёр[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bёс[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bёт[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bёу[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bёф[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bёх[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bёц[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bёч[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bёш[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bёщ[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bёъ[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bёы[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bёь[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bёэ[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bёю[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bёя[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- //\bж**-------------------------------------------------------------
- if Regex.IsMatch(s2,'\bжа[абгеёзиймопсуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bжб[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bжв[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bжг[абвгдеёжзийкмнопрстфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bжд[бвгджзийклмнопрстфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bже[абдеёжзийкоптуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bжё[абвгдеёжзийкмноптуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bжж[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bжз[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bжи[абгеёжийкмнопсуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bжй[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bжк[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bжл[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bжм[абвгдежзийклмнопрстфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bжн[абвгдёжзйклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bжо[абвгдеёжзийлмнопрстуфхцчшщъыьэя]') then continue;
- if Regex.IsMatch(s2,'\bжп[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bжр[абвгдёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bжс[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bжт[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bжу[абвгдеёзийлмнопсуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bжф[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bжх[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bжц[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bжч[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bжш[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bжщ[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bжъ[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bжы[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bжь[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bжэ[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bжю[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bжя[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- //\bз**-------------------------------------------------------------
- if Regex.IsMatch(s2,'\bза[аёфъыьэю]') then continue;
- if Regex.IsMatch(s2,'\bзб[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bзв[бвгджзийклмнпрстфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bзг[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bзд[бвгдёжзийклмнпстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bзе[абгдеёжзийкнопстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bзё[абвгдеёжзийклмнопстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bзж[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bзз[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bзи[абвдеёжзийклнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bзй[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bзк[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bзл[бвгдёжзйклмнпрстуфхцчшщъьэюя]') then continue;
- if Regex.IsMatch(s2,'\bзм[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bзн[бвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bзо[абгдеёжзийкмпстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bзп[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bзр[абвгдёжзйклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bзс[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bзт[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bзу[авгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bзф[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bзх[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bзц[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bзч[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bзш[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bзщ[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bзъ[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bзы[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bзь[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bзэ[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bзю[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bзя[авгдеёжзийклмнопрсуфхцчшщъыьэюя]') then continue;
- //\bи**-------------------------------------------------------------
- if Regex.IsMatch(s2,'\bиа[абвгдеёжзийлмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bиб[абвгдеёжзийклмнпрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bив[бвгдеёжзийклмнпрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bиг[бвгдеёжзийкмпстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bид[абвгджзйклмнопрсфхцчшщъыьэю]') then continue;
- if Regex.IsMatch(s2,'\bие[абвгдеёжзийклмнопстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bиё[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bиж[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bиз[аеёжийкпстфхцчшщьэю]') then continue;
- if Regex.IsMatch(s2,'\bии[абвгдеёжзийклмнопртуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bий[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bик[абвгдеёжзийклмнпстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bил[абвгдеёжзйкмнопрстуфхцчшщъыэюя]') then continue;
- if Regex.IsMatch(s2,'\bим[абвгдёжзйклмнорстуфхцчшщъыьэю]') then continue;
- if Regex.IsMatch(s2,'\bин[бвгёзйлмнпрхцчшщъьэюя]') then continue;
- if Regex.IsMatch(s2,'\bио[бвгдеёжзийклмнопруфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bип[бвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bир[абвгдеёжзийкмнпрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bис[бвгдеёжзийлмноруфшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bит[бвгдёжзийклмнпрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bиу[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bиф[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bих[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bиц[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bич[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bиш[абвгдеёжзийклмнопрстуфхцчшщъыэюя]') then continue;
- if Regex.IsMatch(s2,'\bищ[бвгдёжзйклмнопрстфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bиъ[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bиы[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bиь[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bиэ[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bию[абвгдеёжзийкмопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bия[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- //\bй**-------------------------------------------------------------
- if Regex.IsMatch(s2,'\bйа[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bйб[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bйв[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bйг[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bйд[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bйе[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bйё[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bйж[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bйз[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bйи[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bйй[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bйк[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bйл[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bйм[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bйн[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bйо[абвгеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bйп[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bйр[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bйс[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bйт[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bйу[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bйф[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bйх[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bйц[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bйч[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bйш[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bйщ[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bйъ[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bйы[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bйь[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bйэ[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bйю[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bйя[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- //\bк**-------------------------------------------------------------
- if Regex.IsMatch(s2,'\bка[агёийохцщъыьэ]') then continue;
- if Regex.IsMatch(s2,'\bкб[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bкв[бвгдёжзийклмнопрстуфхцчшщъьэюя]') then continue;
- if Regex.IsMatch(s2,'\bкг[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bкд[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bке[абвгеёжзикнорстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bкё[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bкж[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bкз[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bки[абгёжзийклмоуфхцчщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bкй[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bкк[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bкл[бвгдёжзйклмнпрстфхцчшщъыьэ]') then continue;
- if Regex.IsMatch(s2,'\bкм[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bкн[бвгдеёжзйклмнопрстфхцчшщъыьэю]') then continue;
- if Regex.IsMatch(s2,'\bко[аёйоухцъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bкп[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bкр[бвгдёжзйклмнпрстфхцчшщъьэ]') then continue;
- if Regex.IsMatch(s2,'\bкс[абвгдеёжзийклмнопрсуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bкт[абвгдеёжзийклмнпрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bку[агеёжийноуфцщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bкф[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bкх[бвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bкц[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bкч[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bкш[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bкщ[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bкъ[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bкы[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bкь[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bкэ[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bкю[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bкя[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- //\bл**-------------------------------------------------------------
- if Regex.IsMatch(s2,'\bла[абеёжилорухцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bлб[бвгдеёжзийклмнпрстфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bлв[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bлг[бвгдеёжзийклмнопрстфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bлд[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bле[абеёилморуфцшъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bлё[абвеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bлж[абвгдеёжзйклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bлз[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bли[агеёжийоущъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bлй[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bлк[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bлл[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bлм[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bлн[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bло[аеёийлнотуфхцчъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bлп[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bлр[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bлс[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bлт[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bлу[авдеёзйлмопрстуфхцшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bлф[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bлх[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bлц[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bлч[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bлш[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bлщ[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bлъ[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bлы[абвгдеёжзийклмнопртуфхцшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bль[абгеёжзийклмнопртуфхцчщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bлэ[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bлю[авгеёжзийклмнопртуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bля[абвдеёийклнопрстуфхцчшщъыьэюя]') then continue;
- //\bм**-------------------------------------------------------------
- if Regex.IsMatch(s2,'\bма[абвеёжиопуфцщъыьэю]') then continue;
- if Regex.IsMatch(s2,'\bмб[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bмв[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bмг[абвгдеёжзийклмопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bмд[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bме[авгеёзийкмопуфщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bмё[абвгеёжзийклмнопстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bмж[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bмз[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bми[абвдеёжийкопуфцщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bмй[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bмк[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bмл[абвгдёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bмм[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bмн[абвгдёжзйклмнпрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bмо[абвопуфщъыьэ]') then continue;
- if Regex.IsMatch(s2,'\bмп[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bмр[бвгдежзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bмс[абвгдеёжзийклмнопрсуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bмт[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bму[абвгеёийлмопуцшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bмф[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bмх[бвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bмц[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bмч[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bмш[абвгдеёжзйклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bмщ[абвгдёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bмъ[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bмы[абвгдеёжзийкмнопруфхцщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bмь[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bмэ[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bмю[абвгдеёжзийкмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bмя[абвдеёжзиймнопруфхцшщъыьэюя]') then continue;
- //\bн**-------------------------------------------------------------
- if Regex.IsMatch(s2,'\bна[аёфщъыьэю]') then continue;
- if Regex.IsMatch(s2,'\bнб[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bнв[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bнг[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bнд[абвгдеёжзийклмнопрсуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bне[фцщъыьэ]') then continue;
- if Regex.IsMatch(s2,'\bнё[абвгдеёжзийклнопртуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bнж[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bнз[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bни[авдеёийнпруфшъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bнй[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bнк[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bнл[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bнм[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bнн[абвгдеёжзийклмопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bно[абдёийклнопуфхцшщъыьэ]') then continue;
- if Regex.IsMatch(s2,'\bнп[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bнр[бвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bнс[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bнт[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bну[абвгдеёзийкнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bнф[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bнх[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bнц[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bнч[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bнш[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bнщ[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bнъ[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bны[абвгдеёжзийклмопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bнь[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bнэ[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bню[абвгдеёжзйклмнопрстуфцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bня[авгдеёжзийклмопрстуфхцчшщъыьэюя]') then continue;
- //\bо**-------------------------------------------------------------
- if Regex.IsMatch(s2,'\bоа[абвгдеёжийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bоб[бёйпфцьэю]') then continue;
- if Regex.IsMatch(s2,'\bов[бвгджзийкмнптуфхшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bог[абвгдеёжзийкмпстфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bод[бвгдёжзйклмпстфхцчшщъьэюя]') then continue;
- if Regex.IsMatch(s2,'\bое[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bоё[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bож[абвгдёжзйклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bоз[бвгдёжзйкмопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bои[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bой[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bок[бвгдеёжзйкмпсфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bол[абвгдёжзйклмнопрстуфхцчшщъыэюя]') then continue;
- if Regex.IsMatch(s2,'\bом[бвгдёжзийклмптуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bон[бвгдеёжзйклмнпрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bоо[абвгдеёжзийклнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bоп[бвгдёжзйклмнстфхцчшщъэю]') then continue;
- if Regex.IsMatch(s2,'\bор[бвёжзйлмнпрстфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bос[бгдёжзйфхцшщъьэюя]') then continue;
- if Regex.IsMatch(s2,'\bот[йфшщьэюя]') then continue;
- if Regex.IsMatch(s2,'\bоу[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bоф[абвгдеёжзйклмнопстухцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bох[бгдеёжзийкмпрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bоц[абвгдёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bоч[бвгдёжзийлмопрстфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bош[бвгдёжзйклмнопрсуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bощ[абвгдеёжзийклмнопрстфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bоъ[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bоы[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bоь[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bоэ[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bою[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bоя[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- //\bп**-------------------------------------------------------------
- if Regex.IsMatch(s2,'\bпа[абгёиофщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bпб[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bпв[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bпг[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bпд[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bпе[абеёжзикмоуфцщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bпё[абвгдеёжзийклмнопуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bпж[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bпз[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bпи[абгдёжзийкмнопуфхцчъыьэю]') then continue;
- if Regex.IsMatch(s2,'\bпй[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bпк[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bпл[бвгджзйклмнпрстфхцчшщъьэ]') then continue;
- if Regex.IsMatch(s2,'\bпм[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bпн[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bпо[афъыь]') then continue;
- if Regex.IsMatch(s2,'\bпп[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bпр[бвгдёжзйклмнпстфхцчшщъьэю]') then continue;
- if Regex.IsMatch(s2,'\bпс[бвгдеёжзйклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bпт[бвгдеёжзйклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bпу[авеёжийкмопруфцъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bпф[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bпх[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bпц[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bпч[абвгджзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bпш[абвгдёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bпщ[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bпъ[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bпы[абвгдеёжзийкмнопсуфцчщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bпь[абвгдёжзийклмнопрстуфхцчшщъыьэ]') then continue;
- if Regex.IsMatch(s2,'\bпэ[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bпю[абвгдеёжзийклмнортуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bпя[абвгдеёжзийкмнопрсуфхцчшщъыьэюя]') then continue;
- //\bр**-------------------------------------------------------------
- if Regex.IsMatch(s2,'\bра[аеёжилопртухчщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bрб[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bрв[бвгдеёжзийклмнпрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bрг[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bрд[абвгдёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bре[еёиорухщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bрё[авгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bрж[бвгдёжзйклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bрз[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bри[абвдеёжийклнопртуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bрй[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bрк[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bрл[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bрм[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bрн[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bро[аёиопруфхцчшъыьэю]') then continue;
- if Regex.IsMatch(s2,'\bрп[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bрр[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bрс[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bрт[бвгдеёжзйклмнпрстфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bру[авдеёзийлнопртуфхцщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bрф[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bрх[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bрц[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bрч[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bрш[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bрщ[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bръ[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bры[авгеёзийклмнопртуфхшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bрь[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bрэ[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bрю[абвгдеёжзийклноптуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bря[агеёжзийклмнопртуфхцчшщъыьэюя]') then continue;
- //\bс**-------------------------------------------------------------
- if Regex.IsMatch(s2,'\bса[агеёзикостуцчщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bсб[абвгдёжзйкмнпстфхцчшщъьэюя]') then continue;
- if Regex.IsMatch(s2,'\bсв[бвгджзйклмнпрстуфхцчшщъьэю]') then continue;
- if Regex.IsMatch(s2,'\bсг[абвгдеёжзйкмнпстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bсд[бгджзйклмнопрстфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bсе[еёжиоуфхцчшщъыьэю]') then continue;
- if Regex.IsMatch(s2,'\bсё[абвгдеёжзийклмнопртуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bсж[бвгджзйклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bсз[бвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bси[абеёийкопуфцчшщъыьэ]') then continue;
- if Regex.IsMatch(s2,'\bсй[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bск[бгдёжзйкмнпстфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bсл[бвгджзйклмнпрстфхцчшщъьэя]') then continue;
- if Regex.IsMatch(s2,'\bсм[бвгдёжзйклмнпстфхцчшщъьэю]') then continue;
- if Regex.IsMatch(s2,'\bсн[бвгдёжзйклмнпрстфхцчшщъьэю]') then continue;
- if Regex.IsMatch(s2,'\bсо[аёиъыьэя]') then continue;
- if Regex.IsMatch(s2,'\bсп[бвгдёжзйкмнпстфхцчшщъыьэю]') then continue;
- if Regex.IsMatch(s2,'\bср[бвгдёжзийклмнпрстфхцчшщъьэю]') then continue;
- if Regex.IsMatch(s2,'\bсс[бвгдеёжзийклмнпрстуфхцчшщъьэюя]') then continue;
- if Regex.IsMatch(s2,'\bст[бгджзймпстфхцчшщъьэюя]') then continue;
- if Regex.IsMatch(s2,'\bсу[авёзийлоуфцъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bсф[абвгдёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bсх[абгдеёжзийклмнпрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bсц[абвгдёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bсч[бвгджзйклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bсш[абвгдеёжзйклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bсщ[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bсъ[абвгдёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bсы[абвдеёжийклмопсуфхцчшъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bсь[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bсэ[абвгдеёжзийклмнопстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bсю[абвгеёжзийклмнопстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bся[абвгеёжзийклнопрстуфхцчшщъыьэюя]') then continue;
- //\bт**-------------------------------------------------------------
- if Regex.IsMatch(s2,'\bта[агдёжоуфцъыьэ]') then continue;
- if Regex.IsMatch(s2,'\bтб[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bтв[абвгджзийклмнпрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bтг[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bтд[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bте[вгдеёжзийуфцшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bтё[абвгдеёжзийкносуфхцчшъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bтж[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bтз[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bти[абвдеёжзийклморучщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bтй[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bтк[бвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bтл[абвгдёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bтм[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bтн[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bто[адеёзиоуфцщъыьэя]') then continue;
- if Regex.IsMatch(s2,'\bтп[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bтр[бвгджзйклмнпрстфхцчшщъыьэ]') then continue;
- if Regex.IsMatch(s2,'\bтс[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bтт[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bту[веёийкноуцщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bтф[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bтх[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bтц[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bтч[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bтш[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bтщ[бвгдёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bтъ[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bты[абвгдеёжзийлмнопртуфхцшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bть[абвгдеёжзийклнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bтэ[абвгдеёжзийклмопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bтю[абвгдеёжзийкмопсухцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bтя[абвдеёзийклмопрстуфхцчшщъыьэюя]') then continue;
- //\bу**-------------------------------------------------------------
- if Regex.IsMatch(s2,'\bуа[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bуб[абвгдёжзйклмнпстуфхцчшщъэюя]') then continue;
- if Regex.IsMatch(s2,'\bув[бвгдёжзйкмнпрстуфхцчшщъыьэю]') then continue;
- if Regex.IsMatch(s2,'\bуг[бвгдеёжзийкмпстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bуд[бгдёжзйклмнпрстфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bуе[абвгеёжийклмнопрстуфцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bуё[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bуж[бвгдёжзйклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bуз[бвгёжзиймпрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bуи[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bуй[абвгеёжзийклмнопрсуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bук[бвгдеёжзийкмнптфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bул[бвгджзйклмнпрстфхцчшщъэюя]') then continue;
- if Regex.IsMatch(s2,'\bум[бвгджзйклмптфхцчшщъьэюя]') then continue;
- if Regex.IsMatch(s2,'\bун[абвгёжзйклмнпрсуфхцчшщъьэюя]') then continue;
- if Regex.IsMatch(s2,'\bуо[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bуп[бвгджзйкмнпстфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bур[бвгдёжзийклмнпрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bус[бгдёжзйнрсфхцчшщъьэюя]') then continue;
- if Regex.IsMatch(s2,'\bут[абгджзйлмнпстуфхцчшщъьэ]') then continue;
- if Regex.IsMatch(s2,'\bуу[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bуф[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bух[бгдеёжзийклмнпрстфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bуц[абвгдёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bуч[бвгджзйклмнопсфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bуш[бвгджзйкмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bущ[абвгдёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bуъ[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bуы[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bуь[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bуэ[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bую[абвгдеёжзийклмнопрсуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bуя[абвгдеёжийклмнопртуфхцчшщъыьэюя]') then continue;
- //\bф**-------------------------------------------------------------
- if Regex.IsMatch(s2,'\bфа[авгдеёжийопуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bфб[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bфв[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bфг[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bфд[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bфе[абгеёжзийкмнопстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bфё[абвгеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bфж[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bфз[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bфи[бвдеёжиймопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bфй[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bфк[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bфл[бвгдёжзйклмнпрстуфхцчшщъыьэю]') then continue;
- if Regex.IsMatch(s2,'\bфм[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bфн[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bфо[абвгдеёжзилопуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bфп[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bфр[бвгдёжзйклмнпрстфхцчшщъыьэя]') then continue;
- if Regex.IsMatch(s2,'\bфс[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bфт[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bфу[абвгдеёжзийкмопсухцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bфф[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bфх[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bфц[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bфч[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bфш[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bфщ[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bфъ[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bфы[абвдеёжзийклмнопстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bфь[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bфэ[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bфю[абвгдеёжзийклмнопстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bфя[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- //\bх**-------------------------------------------------------------
- if Regex.IsMatch(s2,'\bха[абвгдеёжзийкмнстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bхб[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bхв[бвгдеёжзийклмнпрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bхг[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bхд[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bхе[абвгдеёжзийклмнопстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bхё[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bхж[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bхз[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bхи[абгдеёжзийклнопрсуфхцчшъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bхй[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bхк[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bхл[бвгдёжзийклмнпрстуфхцчшщъьэя]') then continue;
- if Regex.IsMatch(s2,'\bхм[абвгдёжзийклмнопрстфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bхн[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bхо[абвгеёийкнопсуфцшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bхп[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bхр[бвгдёжзйклмнпрстфхцчшщъыьэю]') then continue;
- if Regex.IsMatch(s2,'\bхс[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bхт[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bху[абвгеёзийклмнопрсуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bхф[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bхх[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bхц[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bхч[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bхш[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bхщ[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bхъ[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bхы[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bхь[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bхэ[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bхю[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bхя[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- //\bц**-------------------------------------------------------------
- if Regex.IsMatch(s2,'\bца[абвгдеёжзийклмнопстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bцб[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bцв[абвгдёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bцг[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bцд[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bце[абгдеёжзийкостуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bцё[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bцж[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bцз[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bци[абгдеёжзийклмопсухцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bцй[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bцк[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bцл[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bцм[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bцн[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bцо[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bцп[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bцр[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bцс[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bцт[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bцу[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bцф[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bцх[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bцц[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bцч[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bцш[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bцщ[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bцъ[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bцы[абвдеёжзийклмнорстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bць[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bцэ[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bцю[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bця[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- //\bч**-------------------------------------------------------------
- if Regex.IsMatch(s2,'\bча[абвёжзиклмноптуфцчъыьэ]') then continue;
- if Regex.IsMatch(s2,'\bчб[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bчв[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bчг[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bчд[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bче[абдеёжзикноуцшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bчё[абвгдеёжзийклнопстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bчж[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bчз[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bчи[авгдеёжзийлмопуфцчшъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bчй[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bчк[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bчл[абвгдёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bчм[абвгдеёжзийклмнпрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bчн[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bчо[абвгдеёжзийклмнорстуфцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bчп[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bчр[абвгдёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bчс[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bчт[абвгдёжзийклмнпрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bчу[абеёзийкмнопсуфцчшщъыьэю]') then continue;
- if Regex.IsMatch(s2,'\bчф[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bчх[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bчц[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bчч[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bчш[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bчщ[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bчъ[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bчы[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bчь[абвгдёжзйклмнопрстуфхцчшщъыьэ]') then continue;
- if Regex.IsMatch(s2,'\bчэ[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bчю[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bчя[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- //\bш**-------------------------------------------------------------
- if Regex.IsMatch(s2,'\bша[авдёзикосуцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bшб[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bшв[абвгдёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bшг[абвгдеёжзийклмнпрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bшд[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bше[абгёжзмнотуфхцчшщъыьэ]') then continue;
- if Regex.IsMatch(s2,'\bшё[абвгдеёжзийкмнорстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bшж[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bшз[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bши[авгдеёжзиймосухцчщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bшй[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bшк[бгдеёжзийклмнпрстфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bшл[бвгджзйклмнпрстуфхцчшщъыьэ]') then continue;
- if Regex.IsMatch(s2,'\bшм[абвгдеёжзийклмнопрстуфхцчшщъьэюя]') then continue;
- if Regex.IsMatch(s2,'\bшн[абвгдеёжзийклмнопрстфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bшо[абвгдеёжзийлноуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bшп[бвгдеёжзйклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bшр[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bшс[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bшт[бвгдеёжзйклмнпстфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bшу[авгдеёжзийкнопсуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bшф[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bшх[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bшц[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bшч[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bшш[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bшщ[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bшъ[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bшы[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bшь[абвгдежзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bшэ[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bшю[абвгдеёжзийклмнопрстуфхчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bшя[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- //\bщ**-------------------------------------------------------------
- if Regex.IsMatch(s2,'\bща[абгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bщб[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bщв[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bщг[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bщд[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bще[авеёжзийносуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bщё[абвгдеёжзиймнопрстуфхцшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bщж[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bщз[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bщи[абвгдеёжзийлмнорсуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bщй[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bщк[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bщл[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bщм[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bщн[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bщо[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bщп[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bщр[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bщс[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bщт[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bщу[абвгдеёжзийлмнопстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bщф[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bщх[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bщц[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bщч[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bщш[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bщщ[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bщъ[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bщы[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bщь[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bщэ[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bщю[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bщя[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- //\bъ**-------------------------------------------------------------
- if Regex.IsMatch(s2,'\bъа[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bъб[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bъв[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bъг[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bъд[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bъе[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bъё[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bъж[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bъз[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bъи[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bъй[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bък[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bъл[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bъм[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bън[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bъо[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bъп[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bър[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bъс[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bът[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bъу[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bъф[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bъх[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bъц[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bъч[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bъш[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bъщ[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bъъ[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bъы[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bъь[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bъэ[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bъю[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bъя[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- //\bы**-------------------------------------------------------------
- if Regex.IsMatch(s2,'\bыа[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bыб[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bыв[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bыг[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bыд[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bые[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bыё[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bыж[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bыз[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bыи[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bый[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bык[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bыл[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bым[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bын[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bыо[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bып[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bыр[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bыс[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bыт[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bыу[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bыф[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bых[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bыц[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bыч[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bыш[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bыщ[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bыъ[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bыы[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bыь[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bыэ[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bыю[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bыя[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- //\bь**-------------------------------------------------------------
- if Regex.IsMatch(s2,'\bьа[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bьб[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bьв[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bьг[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bьд[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bье[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bьё[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bьж[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bьз[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bьи[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bьй[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bьк[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bьл[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bьм[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bьн[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bьо[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bьп[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bьр[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bьс[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bьт[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bьу[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bьф[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bьх[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bьц[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bьч[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bьш[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bьщ[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bьъ[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bьы[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bьь[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bьэ[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bью[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bья[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- //\bэ**-------------------------------------------------------------
- if Regex.IsMatch(s2,'\bэа[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bэб[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bэв[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bэг[абвгдёжзийклмнпрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bэд[бгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bэе[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bэё[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bэж[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bэз[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bэи[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bэй[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bэк[бвгдеёжйклмнпртуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bэл[бвгдёжзийкмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bэм[бвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bэн[абвгдёжзийклмнопрсуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bэо[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bэп[абвгдеёжзйклмнпрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bэр[абвгдеёжзийкнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bэс[абвгдеёжзийлмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bэт[бвгдеёжзйклмпрстфхцчшщъыьэя]') then continue;
- if Regex.IsMatch(s2,'\bэу[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bэф[абвгдеёжзийклмнопрстухцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bэх[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bэц[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bэч[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bэш[бвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bэщ[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bэъ[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bэы[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bэь[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bээ[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bэю[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bэя[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- //\bю**-------------------------------------------------------------
- if Regex.IsMatch(s2,'\bюа[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bюб[абвгдеёжзйлмнпрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bюв[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bюг[абвгдёжзийклмнпрстфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bюд[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bюе[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bюё[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bюж[абвгдеёжзийклмопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bюз[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bюи[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bюй[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bюк[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bюл[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bюм[абвгдеёжзийклмнпрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bюн[абвгдеёжзийлмнпрстуфхцчшщъьэюя]') then continue;
- if Regex.IsMatch(s2,'\bюо[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bюп[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bюр[абвгдеёжзйклмнпрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bюс[абвгдеёжзийклмнопрсуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bют[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bюу[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bюф[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bюх[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bюц[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bюч[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bюш[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bющ[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bюъ[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bюы[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bюь[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bюэ[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bюю[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bюя[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- //\bя**-------------------------------------------------------------
- if Regex.IsMatch(s2,'\bяа[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bяб[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bяв[абвгдеёжзйкмопрстуфхцчшщъыьэю]') then continue;
- if Regex.IsMatch(s2,'\bяг[абвгеёжзийклмопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bяд[абвгдеёжзийклмнпстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bяе[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bяё[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bяж[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bяз[абгдеёжзийклмнопрстуфхцчшщъьэюя]') then continue;
- if Regex.IsMatch(s2,'\bяи[абвгдеёжзийклмнопрстуфхшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bяй[абвгдеёжзийклмнопрстуфхчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bяк[абвгдеёжзийклмнпрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bял[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bям[абвгдеёжзийклмнпрстуфхцчшъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bян[абвгдеёжзийклмнопрсуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bяо[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bяп[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bяр[абвгдеёжзийнпрстуфхцшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bяс[абвгдёжзийклмопрсуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bят[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bяу[абвгдеёжийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bяф[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bях[абвгдеёжзийклмнопрсуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bяц[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bяч[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bяш[абгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bящ[абвгдеёжзйклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bяъ[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bяы[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bяь[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bяэ[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bяю[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- if Regex.IsMatch(s2,'\bяя[абвгдеёжзийклмнопрстуфхцчшщъыьэюя]') then continue;
- //-----------------------------------------------------------------
- writeln(s2);
- inc(n);
- if n>1000 then halt(0);// при пессимистичном прогнозе
- end;
- end.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement