description
stringlengths
0
8.24k
regex
stringlengths
1
26.3k
text
stringlengths
0
2.47M
title
stringlengths
1
150
created_at
stringlengths
24
24
Regex to match any no of lines
((([A-z0-9]*(\s))*[a-z.])+)*(?!([A-z0-9]*(\s)))
The chair is the one that is destroyed. The animal ert. weerwer weeer. The asd. An in the house. The tyD 89 sd asd. The asd. tyty df .
Line match
2016-05-28T07:36:57.000Z
^(?:(?!\-)(?:(?!\:\.)[a-zA-Z0-9\-])*[^-]\.)*(?:(?!\-)(?:[a-zA-Z0-9\-]*(?<=[a-zA-Z])[0-9]*)+(?<!\-))$
plfgr.eu.org
detect if input is valid domain name
2016-03-06T19:03:40.000Z
widget\.method[\s]*\([\s]*[\'\"]([\w]*)[\'\"]
widget.method("submit1", function() { }); widget.method('submit2', function() { }); assdfasdfadfasdcsv@p[qw:;lmdc kasdmcslkndxkv hbq1097736ty98ue9dewsuydfg8eaf
find widget.method name
2018-02-06T06:39:27.000Z
https://docs.asciidoctor.org/asciidoc/latest/blocks/delimited/
(?m)^\={4}[\r\n]([\s\S]+?(?=^\={4}[\r\n]))^\={4}[\r\n]
fdfdsfds ==== fdff ===== nested ===== fdfsf ==== ===== sfdfds ===== ==== dfdfsd ====
AsciiDoc delimited block example
2022-10-10T10:07:59.000Z
^(31-(0[13578]|1[02])-(18|19|20)[0-9]{2})|((29|30)-(01|0[3-9]|1[1-2])-(18|19|20)[0-9]{2})|((0[1-9]|1[0-9]|2[0-8])-(0[1-9]|1[0-2])-(18|19|20)[0-9]{2})|(29-(02)-(((18|19|20)(04|08|[2468][048]|[13579][26]))|2000))$
31-07-2005
dd-mm-yyyy leap year
2017-10-18T20:11:45.000Z
Validate a unsigned integer in the range 1-65535 This can for example be a UDP or TCP port number
^([1-9]\d{0,3}|[1-5]\d{4}|6[0-4]\d{3}|65[0-4]\d{2}|655[0-2]\d|6553[1-5])$
1 1234 9999 12345 59999 64999 65499 65535 0 01 123456 65536 1234 -23 234-
Validate unsigned non null short integer (16bits / 2 Bytes)
2020-06-03T12:53:36.000Z
This Python regex allows you to split an audio filename with the sintax `Authors - Title (Text1) [Text2].extension` into: + Group 1: `Authors` + Group 2: `Title` + Group 3: `Text1` + Group 4: `Text2` + Group 5: `.extension` It is oriented to use `.fullmatch()` since the objective is to guarantee the capture of lastest groups. Moreover, it handles copies of the files thanks to the latest non-capturing group `(?:\s*-*[\w*\s*]*)?`. See the last example. I.e., for the following filenames: + `Author - Title.extension` - G1: `Author` - G2: `Title` - G3&4: None - G5: `.extension` + `Author1&Author2-This is a title(feat. Someone)[NoPremiere].mp3` - G1: `Author1&Author2` - G2: `This is a title` - G3: `feat. Someone` - G4: `NoPremiere` - G5: `.mp3` + `Author1 & Author2 - Title with & (This) (Is) [Too] [Spaced] .m4u` - G1: `Author1 & Author2` - G2: `Title with &` - G3: `Is` - G4: `Spaced` - G5: `.m4u` + `name1 - title1 ( album1 ) - copy.mp3` - G1: `name1` - G2: `title1` - G3: `album1` - G4: None - G5: `.extension` > **Note**: this regex will only get the latest string in the parentheses and in the square brackets and won't match more of them. In order to obtain all inside them, [re.findall()](https://docs.python.org/3/library/re.html#re.Pattern.findall) should be implemented. Also, non-word and non-whitespace characters are not supported after the last hyphen.
^(.+?)(?:\s*-\s*)([^.(]+)\b(?:\s*\((.*?)\))*?(?:\s*\[(.*?)\])*?\s*(\..*)
Author1 & Author2 - Rare & Title (リサ) (Spaced) [jklñ] [uiop] .m4u
Audio filename splitter
2020-03-02T19:37:38.000Z
Find optional decomposition in codebase
(.+\..)+.+\s&&.*\1
one.two.three && one.two.three.four
Optional decomposition
2018-09-12T08:53:34.000Z
(\([A-Za-z_]*\s)*\(*[A-Za-z_]*\s[A-Za-z_]*\s\)\d*\s\)\d*
(Macaca_mulatta Colobus_angolensis_palliatus (Pan_troglodytes_troglodytes ((Hylobates_agilis (Nomascus_leucogenys Symphalangus_syndactylus )21 )87 (Pongo_abelii (Homo_sapiens Gorilla_gorilla )64 )20 )12 )94 ) (Macaca_mulatta Colobus_angolensis_palliatus ((Nomascus_leucogenys (Symphalangus_syndactylus Hylobates_agilis )55 )100 (Pongo_abelii (Homo_sapiens (Pan_troglodytes_troglodytes Gorilla_gorilla )63 )100 )83 )100 ) (Macaca_mulatta Colobus_angolensis_palliatus ((Nomascus_leucogenys (Symphalangus_syndactylus Hylobates_agilis )86 )100 (Pongo_abelii (Gorilla_gorilla (Pan_troglodytes_troglodytes Homo_sapiens )99 )100 )73 )100 ) (Macaca_mulatta Colobus_angolensis_palliatus ((Symphalangus_syndactylus (Hylobates_agilis Nomascus_leucogenys )91 )100 (Pongo_abelii (Gorilla_gorilla (Pan_troglodytes_troglodytes Homo_sapiens )81 )100 )87 )100 ) (Macaca_mulatta Colobus_angolensis_palliatus ((Symphalangus_syndactylus (Hylobates_agilis Nomascus_leucogenys )72 )100 (Pongo_abelii (Gorilla_gorilla (Pan_troglodytes_troglodytes Homo_sapiens )94 )100 )93 )100 ) (Macaca_mulatta Colobus_angolensis_palliatus ((Symphalangus_syndactylus (Hylobates_agilis Nomascus_leucogenys )58 )100 (Pongo_abelii (Gorilla_gorilla (Pan_troglodytes_troglodytes Homo_sapiens )90 )100 )83 )100 ) (Macaca_mulatta Colobus_angolensis_palliatus ((Nomascus_leucogenys (Hylobates_agilis Symphalangus_syndactylus )68 )100 (Pongo_abelii (Gorilla_gorilla (Pan_troglodytes_troglodytes Homo_sapiens )81 )100 )72 )100 ) (Macaca_mulatta Colobus_angolensis_palliatus ((Symphalangus_syndactylus (Hylobates_agilis Nomascus_leucogenys )90 )100 (Pongo_abelii (Gorilla_gorilla (Pan_troglodytes_troglodytes Homo_sapiens )92 )100 )99 )100 ) (Macaca_mulatta Colobus_angolensis_palliatus ((Nomascus_leucogenys (Hylobates_agilis Symphalangus_syndactylus )68 )100 (Pongo_abelii (Homo_sapiens (Pan_troglodytes_troglodytes Gorilla_gorilla )89 )100 )99 )100 ) (Macaca_mulatta Colobus_angolensis_palliatus ((Symphalangus_syndactylus (Hylobates_agilis Nomascus_leucogenys )47 )100 (Pongo_abelii (Pan_troglodytes_troglodytes (Gorilla_gorilla Homo_sapiens )48 )100 )100 )100 ) (Macaca_mulatta Colobus_angolensis_palliatus ((Nomascus_leucogenys (Hylobates_agilis Symphalangus_syndactylus )81 )100 (Pongo_abelii (Gorilla_gorilla (Pan_troglodytes_troglodytes Homo_sapiens )71 )100 )100 )100 ) (Macaca_mulatta Colobus_angolensis_palliatus ((Pongo_abelii (Gorilla_gorilla (Pan_troglodytes_troglodytes Homo_sapiens )29 )67 )84 (Hylobates_agilis (Symphalangus_syndactylus Nomascus_leucogenys )36 )99 )98 ) (Macaca_mulatta Colobus_angolensis_palliatus ((Nomascus_leucogenys (Symphalangus_syndactylus Hylobates_agilis )58 )100 (Pongo_abelii (Gorilla_gorilla (Pan_troglodytes_troglodytes Homo_sapiens )82 )100 )93 )100 ) (Macaca_mulatta Colobus_angolensis_palliatus ((Nomascus_leucogenys (Hylobates_agilis Symphalangus_syndactylus )68 )100 (Pongo_abelii (Homo_sapiens (Gorilla_gorilla Pan_troglodytes_troglodytes )49 )100 )91 )100 ) (Macaca_mulatta Colobus_angolensis_palliatus ((Nomascus_leucogenys (Symphalangus_syndactylus Hylobates_agilis )58 )100 (Pongo_abelii (Gorilla_gorilla (Pan_troglodytes_troglodytes Homo_sapiens )45 )100 )99 )100 ) (Macaca_mulatta Colobus_angolensis_palliatus ((Hylobates_agilis (Symphalangus_syndactylus Nomascus_leucogenys )35 )100 (Pongo_abelii (Gorilla_gorilla (Pan_troglodytes_troglodytes Homo_sapiens )43 )100 )100 )100 ) (Macaca_mulatta Colobus_angolensis_palliatus ((Nomascus_leucogenys (Symphalangus_syndactylus Hylobates_agilis )45 )100 (Pongo_abelii (Gorilla_gorilla (Pan_troglodytes_troglodytes Homo_sapiens )90 )100 )100 )100 ) (Macaca_mulatta Colobus_angolensis_palliatus ((Symphalangus_syndactylus (Hylobates_agilis Nomascus_leucogenys )44 )100 (Pongo_abelii (Gorilla_gorilla (Pan_troglodytes_troglodytes Homo_sapiens )63 )100 )100 )100 ) (Macaca_mulatta Colobus_angolensis_palliatus ((Pongo_abelii (Gorilla_gorilla (Pan_troglodytes_troglodytes Homo_sapiens )97 )100 )97 ((Nomascus_leucogenys Symphalangus_syndactylus )40 Hylobates_agilis )100 )100 ) (Macaca_mulatta Colobus_angolensis_palliatus ((Nomascus_leucogenys (Hylobates_agilis Symphalangus_syndactylus )43 )100 (Pongo_abelii (Gorilla_gorilla (Pan_troglodytes_troglodytes Homo_sapiens )46 )100 )96 )100 ) (Macaca_mulatta Colobus_angolensis_palliatus ((Symphalangus_syndactylus (Hylobates_agilis Nomascus_leucogenys )46 )100 (Pongo_abelii (Gorilla_gorilla (Pan_troglodytes_troglodytes Homo_sapiens )100 )100 )99 )100 ) (Macaca_mulatta Colobus_angolensis_palliatus ((Symphalangus_syndactylus (Hylobates_agilis Nomascus_leucogenys )52 )100 (Pongo_abelii (Gorilla_gorilla (Pan_troglodytes_troglodytes Homo_sapiens )94 )100 )100 )100 ) (Macaca_mulatta Colobus_angolensis_palliatus ((Symphalangus_syndactylus (Hylobates_agilis Nomascus_leucogenys )57 )98 (Pongo_abelii (Gorilla_gorilla (Pan_troglodytes_troglodytes Homo_sapiens )53 )100 )84 )100 ) (Macaca_mulatta Colobus_angolensis_palliatus ((Symphalangus_syndactylus (Hylobates_agilis Nomascus_leucogenys )55 )100 (Pongo_abelii (Gorilla_gorilla (Pan_troglodytes_troglodytes Homo_sapiens )98 )100 )100 )100 ) (Macaca_mulatta Colobus_angolensis_palliatus ((Symphalangus_syndactylus (Hylobates_agilis Nomascus_leucogenys )75 )100 (Pongo_abelii (Gorilla_gorilla (Pan_troglodytes_troglodytes Homo_sapiens )85 )100 )100 )100 ) (Macaca_mulatta Colobus_angolensis_palliatus ((Nomascus_leucogenys (Symphalangus_syndactylus Hylobates_agilis )84 )100 (Pongo_abelii (Gorilla_gorilla (Pan_troglodytes_troglodytes Homo_sapiens )98 )100 )93 )100 ) (Macaca_mulatta Colobus_angolensis_palliatus ((Pongo_abelii (Gorilla_gorilla (Pan_troglodytes_troglodytes Homo_sapiens )58 )100 )99 (Symphalangus_syndactylus (Hylobates_agilis Nomascus_leucogenys )53 )100 )100 ) (Macaca_mulatta Colobus_angolensis_palliatus ((Nomascus_leucogenys (Symphalangus_syndactylus Hylobates_agilis )57 )100 (Pongo_abelii (Gorilla_gorilla (Pan_troglodytes_troglodytes Homo_sapiens )93 )100 )100 )100 ) (Macaca_mulatta Colobus_angolensis_palliatus ((Hylobates_agilis (Symphalangus_syndactylus Nomascus_leucogenys )39 )100 (Pongo_abelii (Gorilla_gorilla (Pan_troglodytes_troglodytes Homo_sapiens )95 )100 )100 )100 ) (Macaca_mulatta Colobus_angolensis_palliatus ((Nomascus_leucogenys (Hylobates_agilis Symphalangus_syndactylus )83 )100 (Pongo_abelii (Gorilla_gorilla (Pan_troglodytes_troglodytes Homo_sapiens )73 )100 )99 )100 ) (Macaca_mulatta Colobus_angolensis_palliatus ((Pongo_abelii (Gorilla_gorilla (Pan_troglodytes_troglodytes Homo_sapiens )85 )100 )99 ((Hylobates_agilis Symphalangus_syndactylus )68 Nomascus_leucogenys )100 )100 ) (Macaca_mulatta Colobus_angolensis_palliatus ((Nomascus_leucogenys (Symphalangus_syndactylus Hylobates_agilis )54 )100 (Pongo_abelii (Gorilla_gorilla (Pan_troglodytes_troglodytes Homo_sapiens )79 )100 )100 )100 ) (Macaca_mulatta Colobus_angolensis_palliatus ((Symphalangus_syndactylus (Hylobates_agilis Nomascus_leucogenys )37 )100 (Pongo_abelii (Gorilla_gorilla (Pan_troglodytes_troglodytes Homo_sapiens )55 )100 )99 )100 ) (Macaca_mulatta Colobus_angolensis_palliatus ((Pongo_abelii (Gorilla_gorilla (Homo_sapiens Pan_troglodytes_troglodytes )86 )100 )78 (Symphalangus_syndactylus (Hylobates_agilis Nomascus_leucogenys )64 )98 )100 ) (Macaca_mulatta Colobus_angolensis_palliatus ((Nomascus_leucogenys (Symphalangus_syndactylus Hylobates_agilis )55 )100 (Pongo_abelii (Gorilla_gorilla (Pan_troglodytes_troglodytes Homo_sapiens )92 )100 )98 )100 ) (Macaca_mulatta Colobus_angolensis_palliatus ((Pongo_abelii (Gorilla_gorilla (Pan_troglodytes_troglodytes Homo_sapiens )99 )100 )95 ((Hylobates_agilis Symphalangus_syndactylus )62 Nomascus_leucogenys )100 )100 ) (Macaca_mulatta Colobus_angolensis_palliatus ((Nomascus_leucogenys (Hylobates_agilis Symphalangus_syndactylus )76 )100 (Pongo_abelii (Gorilla_gorilla (Pan_troglodytes_troglodytes Homo_sapiens )92 )100 )99 )100 ) (Macaca_mulatta Colobus_angolensis_palliatus ((Symphalangus_syndactylus (Hylobates_agilis Nomascus_leucogenys )43 )100 (Pongo_abelii (Gorilla_gorilla (Pan_troglodytes_troglodytes Homo_sapiens )63 )100 )99 )100 ) (Macaca_mulatta Colobus_angolensis_palliatus ((Nomascus_leucogenys (Hylobates_agilis Symphalangus_syndactylus )75 )100 (Pongo_abelii (Gorilla_gorilla (Pan_troglodytes_troglodytes Homo_sapiens )94 )100 )100 )100 ) (Macaca_mulatta Colobus_angolensis_palliatus ((Symphalangus_syndactylus (Nomascus_leucogenys Hylobates_agilis )31 )100 (Pongo_abelii (Gorilla_gorilla (Pan_troglodytes_troglodytes Homo_sapiens )84 )100 )100 )100 ) (Macaca_mulatta Colobus_angolensis_palliatus ((Nomascus_leucogenys (Hylobates_agilis Symphalangus_syndactylus )60 )100 (Pongo_abelii (Gorilla_gorilla (Pan_troglodytes_troglodytes Homo_sapiens )92 )100 )95 )100 ) (Macaca_mulatta Colobus_angolensis_palliatus ((Pongo_abelii (Gorilla_gorilla (Pan_troglodytes_troglodytes Homo_sapiens )88 )100 )100 ((Hylobates_agilis Symphalangus_syndactylus )52 Nomascus_leucogenys )100 )100 ) (Macaca_mulatta Colobus_angolensis_palliatus ((Pongo_abelii (Gorilla_gorilla (Pan_troglodytes_troglodytes Homo_sapiens )99 )100 )99 ((Hylobates_agilis Symphalangus_syndactylus )43 Nomascus_leucogenys )100 )100 ) (Macaca_mulatta Colobus_angolensis_palliatus ((Nomascus_leucogenys (Hylobates_agilis Symphalangus_syndactylus )62 )100 (Pongo_abelii (Gorilla_gorilla (Pan_troglodytes_troglodytes Homo_sapiens )91 )100 )98 )100 ) (Macaca_mulatta Colobus_angolensis_palliatus ((Nomascus_leucogenys (Hylobates_agilis Symphalangus_syndactylus )54 )98 (Pongo_abelii (Homo_sapiens (Gorilla_gorilla Pan_troglodytes_troglodytes )48 )100 )84 )100 ) (Macaca_mulatta Colobus_angolensis_palliatus ((Nomascus_leucogenys (Symphalangus_syndactylus Hylobates_agilis )64 )100 (Pongo_abelii (Gorilla_gorilla (Pan_troglodytes_troglodytes Homo_sapiens )100 )100 )99 )100 ) (Macaca_mulatta Colobus_angolensis_palliatus ((Symphalangus_syndactylus (Hylobates_agilis Nomascus_leucogenys )65 )100 (Pongo_abelii (Gorilla_gorilla (Pan_troglodytes_troglodytes Homo_sapiens )76 )100 )99 )100 ) (Macaca_mulatta Colobus_angolensis_palliatus ((Nomascus_leucogenys (Symphalangus_syndactylus Hylobates_agilis )65 )100 (Pongo_abelii (Gorilla_gorilla (Pan_troglodytes_troglodytes Homo_sapiens )84 )100 )100 )100 ) (Macaca_mulatta Colobus_angolensis_palliatus ((Pongo_abelii (Gorilla_gorilla (Pan_troglodytes_troglodytes Homo_sapiens )98 )100 )94 ((Hylobates_agilis Symphalangus_syndactylus )40 Nomascus_leucogenys )100 )100 ) (Macaca_mulatta Colobus_angolensis_palliatus ((Symphalangus_syndactylus (Hylobates_agilis Nomascus_leucogenys )53 )100 (Pongo_abelii (Gorilla_gorilla (Pan_troglodytes_troglodytes Homo_sapiens )98 )100 )100 )100 ) (Macaca_mulatta Colobus_angolensis_palliatus ((Nomascus_leucogenys (Symphalangus_syndactylus Hylobates_agilis )58 )100 (Pongo_abelii (Gorilla_gorilla (Pan_troglodytes_troglodytes Homo_sapiens )89 )100 )100 )100 ) (Macaca_mulatta Colobus_angolensis_palliatus ((Nomascus_leucogenys (Hylobates_agilis Symphalangus_syndactylus )77 )100 (Pongo_abelii (Gorilla_gorilla (Pan_troglodytes_troglodytes Homo_sapiens )91 )100 )100 )100 ) (Macaca_mulatta Colobus_angolensis_palliatus ((Nomascus_leucogenys (Hylobates_agilis Symphalangus_syndactylus )52 )100 (Pongo_abelii (Gorilla_gorilla (Pan_troglodytes_troglodytes Homo_sapiens )89 )100 )100 )100 ) (Macaca_mulatta Colobus_angolensis_palliatus ((Nomascus_leucogenys (Hylobates_agilis Symphalangus_syndactylus )71 )100 (Pongo_abelii (Gorilla_gorilla (Pan_troglodytes_troglodytes Homo_sapiens )96 )100 )100 )100 ) (Macaca_mulatta Colobus_angolensis_palliatus ((Nomascus_leucogenys (Symphalangus_syndactylus Hylobates_agilis )59 )100 (Pongo_abelii (Gorilla_gorilla (Pan_troglodytes_troglodytes Homo_sapiens )92 )100 )100 )100 ) (Macaca_mulatta Colobus_angolensis_palliatus ((Nomascus_leucogenys (Hylobates_agilis Symphalangus_syndactylus )67 )100 (Pongo_abelii (Homo_sapiens (Pan_troglodytes_troglodytes Gorilla_gorilla )83 )100 )82 )100 ) (Macaca_mulatta Colobus_angolensis_palliatus ((Nomascus_leucogenys (Symphalangus_syndactylus Hylobates_agilis )70 )100 (Pongo_abelii (Gorilla_gorilla (Pan_troglodytes_troglodytes Homo_sapiens )99 )100 )100 )100 ) (Macaca_mulatta Colobus_angolensis_palliatus ((Nomascus_leucogenys (Hylobates_agilis Symphalangus_syndactylus )54 )100 (Pongo_abelii (Gorilla_gorilla (Pan_troglodytes_troglodytes Homo_sapiens )100 )100 )100 )100 ) (Macaca_mulatta Colobus_angolensis_palliatus ((Nomascus_leucogenys (Symphalangus_syndactylus Hylobates_agilis )63 )100 (Pongo_abelii (Gorilla_gorilla (Pan_troglodytes_troglodytes Homo_sapiens )92 )100 )100 )100 ) (Macaca_mulatta Colobus_angolensis_palliatus ((Nomascus_leucogenys (Hylobates_agilis Symphalangus_syndactylus )57 )100 (Pongo_abelii (Gorilla_gorilla (Pan_troglodytes_troglodytes Homo_sapiens )99 )100 )100 )100 ) (Macaca_mulatta Colobus_angolensis_palliatus ((Nomascus_leucogenys (Hylobates_agilis Symphalangus_syndactylus )62 )100 (Pongo_abelii (Gorilla_gorilla (Pan_troglodytes_troglodytes Homo_sapiens )99 )100 )100 )100 ) (Macaca_mulatta Colobus_angolensis_palliatus ((Nomascus_leucogenys (Hylobates_agilis Symphalangus_syndactylus )56 )100 (Pongo_abelii (Gorilla_gorilla (Pan_troglodytes_troglodytes Homo_sapiens )100 )100 )100 )100 ) (Macaca_mulatta Colobus_angolensis_palliatus ((Nomascus_leucogenys (Symphalangus_syndactylus Hylobates_agilis )63 )100 (Pongo_abelii (Gorilla_gorilla (Pan_troglodytes_troglodytes Homo_sapiens )99 )100 )100 )100 ) (Macaca_mulatta Colobus_angolensis_palliatus ((Nomascus_leucogenys (Symphalangus_syndactylus Hylobates_agilis )57 )100 (Pongo_abelii (Gorilla_gorilla (Pan_troglodytes_troglodytes Homo_sapiens )93 )100 )100 )100 ) (Macaca_mulatta Colobus_angolensis_palliatus ((Pongo_abelii (Gorilla_gorilla (Pan_troglodytes_troglodytes Homo_sapiens )95 )100 )100 ((Hylobates_agilis Symphalangus_syndactylus )39 Nomascus_leucogenys )100 )100 ) (Macaca_mulatta Colobus_angolensis_palliatus ((Nomascus_leucogenys (Hylobates_agilis Symphalangus_syndactylus )68 )100 (Pongo_abelii (Gorilla_gorilla (Pan_troglodytes_troglodytes Homo_sapiens )97 )100 )100 )100 ) (Macaca_mulatta Colobus_angolensis_palliatus ((Nomascus_leucogenys (Hylobates_agilis Symphalangus_syndactylus )49 )100 ((Pan_troglodytes_troglodytes (Homo_sapiens Gorilla_gorilla )48 )100 Pongo_abelii )61 )100 ) (Macaca_mulatta Colobus_angolensis_palliatus ((Nomascus_leucogenys (Symphalangus_syndactylus Hylobates_agilis )63 )100 (Pongo_abelii (Gorilla_gorilla (Pan_troglodytes_troglodytes Homo_sapiens )96 )100 )100 )100 ) (Macaca_mulatta Colobus_angolensis_palliatus ((Symphalangus_syndactylus (Hylobates_agilis Nomascus_leucogenys )97 )100 (Pongo_abelii (Gorilla_gorilla (Homo_sapiens Pan_troglodytes_troglodytes )73 )100 )97 )100 ) (Macaca_mulatta Colobus_angolensis_palliatus ((Nomascus_leucogenys (Hylobates_agilis Symphalangus_syndactylus )81 )100 (Pongo_abelii (Gorilla_gorilla (Pan_troglodytes_troglodytes Homo_sapiens )54 )100 )72 )100 )
2nd level for tree
2019-09-25T09:22:58.000Z
(Upper\S*)\s(\S+)
something Upper Hamptons is where i don't live
Word plus anyword
2015-08-21T14:40:55.000Z
(\w*.css{1,})
@@include(wrapper('./inject.css', 'file.css'))
File name
2015-05-29T22:51:58.000Z
tests for valid social security numbers according to the social security administration. more specifically: -disallows a group to have all 0s -disallows first group to have all 6s -disallows a ssn to begin with 9 note that this does not test for issued ssn's. that would be impossible to implement here, because the high group document is continuously updated on a monthly basis.
^((?!666|000)[0-8][0-9\_]{2}\-(?!00)[0-9\_]{2}\-(?!0000)[0-9\_]{4})*$
123-45-4891 098-18-6564 123-45-4848 009-95-8881 498-00-9859 908-78-0485 702-02-0202 001-84-0000 001-14-0004 987-65-4321
Social Security Number (SSN)
2015-07-08T20:29:58.000Z
\>(.*?)\<
<head><title>hello world</title><meta content="width=device-width, initial-scale=0.5, maximum-scale=1.0, user-scalable=no" name="viewport"></head>
InnerHTML
2016-06-23T11:46:30.000Z
Performs basic validation of a UK school student UPN. NOTE: this is not a guarantee that the UPN is valid, as further calculations must be done to verify the control character at the start of the UPN. See the official guidance for more details: https://www.gov.uk/government/publications/unique-pupil-numbers
^([A-HJ-NP-RT-Z])(\d{11})(\d|[A-HJ-NP-RT-Z])$
Y82020000903A
UK Student UPN Validation
2016-08-25T08:13:33.000Z
A search attribues in a image tag.
(?P<attr>javascript|longdesc|src|alt|style|class|title|data\-[\w\-]+)\=('|"|\\"|\\')(?P<value>[^\2]+?)?\2
<img src=\'king-crimson.jpg\' TITLE=\"This is my title\" javascript="play(this)" class="a" style="color:red;" data-foo="data string" alt="King Crimson"/>
Search for attributes
2016-04-20T09:32:18.000Z
(\[\[outlook:)([0-9A-Z]*)(\]\[)(.*)(\]\])
[[outlook:000000003730C053465F314590D066368CF3097B0700AAF83E03F96EDC42918E044642DEDDB3000013E2000E0000AAF83E03F96EDC42918E044642DEDDB3000013E2EFD30000][MESSAGE: RE: Subject of the Message (Sendername Senderfirstname) 2014-08-05 19:48]] [[http:000000003730C053465F314590D066368CF3097B0700AAF83E03F96EDC42918E044642DEDDB3000013E2000E0000AAF83E03F96EDC42918E044642DEDDB3000013E2EFD30000][MESSAGE: RE: Subject of the Message (Sendername Senderfirstname) 2014-08-05 19:48]]
Maintain portion in the middle
2014-08-06T10:03:26.000Z
num = num .replace(reg1, '') .replace(reg2, '') .replace(reg3, '$1_') .replace('.', '') .replace('_', '.');
^([\d]+)[.]+
123123.g
数字+一位小数点正则替换
2019-04-28T16:58:26.000Z
(?<!\d|-|\/|to|\$)(?<!\$(\d)\.)([1-9][0-9]{0,2}(\.\d{0,2})?\s?)(lbs|lb|LBS|LB|KG|kg|G|g|L|l+)(?!\d|\w)
10lb Potato bag Apples Gld Delicious 3lb Grandfer Rocha Pear2.5lbs CHIN.MAND.5LB Batata Veg (10LB) SIG 170LB99 Legging SzB 1ea ARJO CDA1450035 SupBlk 400LB1ea AHC EB205L DRI 10220-1 Bariatric500lb 1 ea TILDA SONA MASOORI 20 LBS OVAL ROASTER 9 - 12 LBS ORGANIC TRIPACK FRUIT 1.2 KG KGF5KT2404 PEPLUM T, PURPLE AIR 1773LB-XL 15-20 KnXL 1ea PLUM BAG 1KG US NEXT XTRA 100G SUDOCREM 60G EGGPLANT GRILLED IN OIL (3KG) CORONATION GRAPE 2L CA MEAT DEAL $11.00 KG LIVE LOBSTER- 2.00-3.00 LB-MSC PC MAGIC GROW 20-20-20 3.55KG KGF7W3409 KGVELCROWB,GREY TZATZIKI 500G 2+1 LEAD MIX
Retailer Regex
2020-04-21T17:54:20.000Z
<\s*\w*:*\w*label\s*\S*>(.*)<\/\s*\w*:*\w*label\s*\S*>
<label>Standard Label</label> <label id="mugs">Identified Label</label> <label>Included <span>Label</span></label> <ablative:label>Namespaced Label</ablative:label> <ablative:FancyLabel>Fancy Namespaced Label</ablative:FancyLabel>
Simple HTML Label Finder
2018-08-07T14:26:48.000Z
The regex verifies complex numbers in quite a few mixtures of different floating point representations, with extensive error checking - however, there may be edge cases which i haven't addressed, so feel free to put in more unit tests!
^(?<real>(?<decimal>[+-]?(?:\d*(?:\.(?=\d))?\d+))(?:(?:(?:(?<=\d)[Ee])?((?&decimal)))(?<=\d))?)(?:(?<=\d)[, ](?=\d|[+-]|\.)((?&real))[iIjJ])?$
-1.1E-2.2,1i
Complex numbers supporting scientific notation and extensive error-checking
2017-05-10T17:12:52.000Z
webpack igonore ionicon svg file
^(?!.*ionicons\.svg).*(jpeg|jpg|png|gif|svg)$
ionicons.svg ionicons.woff ionicons.woff2 ionicons.ttf ionicons.eot ionicons.jpeg ionicons.jpg ionicons.png ionicons.gif ionicons.svg a.jpeg a.jpg a.png a.gif a.svg ab.jpeg ab.jpg ab.png ab.gif ab.svg abc.jpeg abc.jpg abc.png abc.gif abc.svg
webpack igonore ionicon svg file
2019-02-21T04:29:00.000Z
^(https?:\/\/)?([a-zA-z0-9\-]+)(\.[a-zA-z0-9\-]+)+:?[1-9]?[0-9]*\/.*$
http://vubpaperboy.com/asdjn?rtrwt=asdahb https://vubpaperboy.com/asdjn?rtrwt=asdahb vubpaperboy.com/asdjn?rtrwt=asdahb http://asdafyg.vubpaperboy.com/asdjn?rtrwt=asdahb https://38trbfgbg54.vubpaperboy.com/asdjn?rtrwt=asdahb qw478t487.vubpaperboy.com/asdjn?rtrwt=asdahb https://subdomain.localhost:8000/ subdomain.localhost:8000/ http://u7otqmedxrm4c.eris-sascha:13081/portal/pb/index.xhtml
subdomain catcher
2018-07-10T11:48:38.000Z
extracting domain name from url
^(?:https?:\/\/)?(?:[^@\/\n]+@)?(?:www\.)?([^:\/\n]+)
http://stackoverflow.com/questions/25703360/regular-expression-extract-subdomain-domain
Extract domain name
2016-07-24T14:06:10.000Z
Reviews Pages
([^\/]+)reviews([\/])?([0-9]+)?
/te_st-reviews-example-reviews/23/
WP URL Rewrites
2016-01-05T20:41:57.000Z
This is for the validation of number
^([0-9]*)(^\S+)$
number
2016-03-28T05:55:25.000Z
([0-9]{1,2})\/([0-9]{1,2})\/([0-9]{4})\s([0-9]{1,2}):([0-9]{1,2})\s([0-9]{1,2}):([0-9]{1,2})\s([A-Za-z]+)\s([A-Za-z]+)\s([A-Z]{2})\-([0-9]+)
13/03/2016 14:55 18:55 Frankfurt Izmir XQ-971 A-AOW9 SunEco HK 30 13/03/2016 20:10 22:05 Izmir Trabzon XQ-9270 S-ADD 31/03/2016 12:00 13:50 Trabzon Antalya XQ-7619 S-ADD 31/03/2016 15:00 17:45 Antalya Frankfurt XQ-140 Z-ZOW8 SunEco HK 30 SunEco HK 30 ON SunEco HK 30 ON
sun-reservation-2-flights
2016-02-20T13:02:10.000Z
Regex to identify and split the components of a machine readable passport pattern text
(?<type>[A-Z])(?<subtype>[<A-Z])(?<country>\w{3})(?<lname>[A-Z]+)(?<lname2><[A-Z]+){0,}<<(?<fname>[A-Z]+)(?<mname1><[A-Z]+){0,}(?<complement><){0,}\n(?<pnum>[\d\w]{9})(?<pnumcheck>\d{1})(?<nat>\w{3})(?<yob>\d{2})(?<mob>\d{2})(?<dob>\d{2})(?<dobcheck>\d{1})(?<sex>M|F|<{1})(?<yoe>\d{2})(?<moe>\d{2})(?<doe>\d{2})(?<expcheck>\d{1})(?<pid>[\d\w<]{14})(?<pidcheck>\d{1})(?<generalcheck>\d{1})
P<USADOE<<JOHN<WILLIAM<<<<<<<<<<<<<<<<<<<<<< 5039927858USA5509298M2304090255136054<115916
Complete Machine Readable Passport pattern
2016-03-30T12:46:33.000Z
Extract jsfiddle links
(https?:\/\/[www]?jsfiddle\.net\/[^\"]*)
Body "<p>What you want can be done by CSS.</p> <p>Check out the following snippet and this <a href=""http://jsfiddle.net/x797dkth/"" rel=""nofollow"">jsfiddle</a></p> <p><div class=""snippet"" data-lang=""js"" data-hide=""false""> <div class=""snippet-code""> <pre class=""snippet-code-css lang-css prettyprint-override""><code>#circle64 { cursor: url('http://www.iconsdownload.net/icons/64/16574-black-circle.png'), pointer; } #circle32 { cursor: url('http://www.iconsdownload.net/icons/32/16574-black-circle.png'), pointer; } #circle24 { cursor: url('http://www.iconsdownload.net/icons/24/16574-black-circle.png'), pointer; }</code></pre> <pre class=""snippet-code-html lang-html prettyprint-override""><code>&lt;div id='circle64'&gt; Cursor will &lt;br&gt;be&lt;/br&gt;different here. &lt;/div&gt; &lt;br&gt; &lt;br&gt; &lt;br&gt; &lt;div id='circle32'&gt; Cursor will &lt;br&gt;be&lt;/br&gt;different here. &lt;/div&gt; &lt;br&gt; &lt;br&gt; &lt;br&gt; &lt;div id='circle24'&gt; Cursor will &lt;br&gt;be&lt;/br&gt;different here. &lt;/div&gt;</code></pre> </div> </div> </p> " "<p>You got very close to the solution.</p> <blockquote> <p>I am pretty sure it has something to do with the image going out side the video div, but I could be mistaken.</p> </blockquote> <p>The image won't go outside the <code>div</code>.</p> <p>For the image to look like the border of the video, we have to add <code>padding</code> to the <code>div</code>. (Also mentioned by @tylerism in comments)</p> <p>Check out this <a href=""http://jsfiddle.net/cksk6La9/"" rel=""nofollow"">fiddle</a>.</p> <p>Following are the changes I did in your code. <strike></p> <pre><code>text-align: center; background-size: 80%; </code></pre> <p></strike></p> <pre><code>padding: 10px 10px; </code></pre> <p>I used this <a href=""http://freedesignfile.com/upload/2012/12/Snow_backgrounds-2.jpg"" rel=""nofollow"">image</a> for testing purpose. You can replace the url.</p> " "<p>Add the following:</p> <pre><code>body { margin: 0; } </code></pre> <p>in the CSS.</p> <p>Here is the <a href=""http://jsfiddle.net/t07tccaz/"" rel=""nofollow"">fiddle</a>.</p> <p>I replaced <code>background-image</code> with <code>background : red;</code> for testing purpose as I didn't have the image</p> " "<p>Check out this <a href=""http://jsfiddle.net/70qu6fk6/2/"" rel=""nofollow"">fiddle</a>.</p> <p>It uses basic <strong>CSS</strong> and <strong>HTML</strong> and <strong>NO framework</strong>.</p> <p>The key elements which allows this type of positioning are these css properties: <code>left</code>, <code>right</code>, <code>top</code>, <code>bottom</code>.</p> <p>The demo uses these properties.</p> <p>Here is the snippet.</p> <p><div class=""snippet"" data-lang=""js"" data-hide=""false""> <div class=""snippet-code""> <pre class=""snippet-code-css lang-css prettyprint-override""><code>body { background: beige; margin: 0; } #header { width: 100%; height: 60px; text-align: center; background: #A7C942; color: #fff; font-family: ""Trebuchet MS"", Arial, Helvetica, sans-serif; font-size: 2em; } #leftDiv { position: absolute; float: left; width: 150px; top: 60px; bottom: 0; background: aquamarine; } #midDiv { position: absolute; float: left; top: 60px; bottom: 0; left: 150px; right: 365px; min-width: 50px; background: lightsalmon; } #rightDiv { position: absolute; float: right; width: 365px; top: 60px; bottom: 0; right: 0; background: green; } #topRow { position: absolute; width: 100%; top: 0; bottom: 50px; min-height: 20px; background-color: lightgoldenrodyellow; } #bottomRow { position: absolute; background-color: lightpink; width: 100%; height: 50px; bottom: 0; }</code></pre> <pre class=""snippet-code-html lang-html prettyprint-override""><code>&lt;div id=""body""&gt; &lt;div id=""main""&gt; &lt;div id=""header""&gt;my header&lt;/div&gt; &lt;div id=""leftDiv""&gt; &lt;p&gt;LEFT&lt;/p&gt; &lt;/div&gt; &lt;div id=""midDiv""&gt; &lt;p&gt;MIDDLE&lt;/p&gt; &lt;/div&gt; &lt;div id=""rightDiv""&gt; &lt;div id=""topRow""&gt;TOP&lt;/div&gt; &lt;div id=""bottomRow""&gt;BOTTOM&lt;/div&gt; &lt;/div&gt; &lt;/div&gt; &lt;/div&gt;</code></pre> </div> </div> </p> " "<p>Check out this <a href=""http://jsfiddle.net/2kev63mq/1/"" rel=""nofollow"">fiddle</a>.</p> <p>I have used a sample video and a sample circular image for testing purpose.</p> <p>Initially the image is hidden.</p> <p>When you click on the video, the image appears at the position where the click is done and the video pauses.</p> <p>I hope this helps.</p> <p>Here is the snippet.</p> <p><div class=""snippet"" data-lang=""js"" data-hide=""false""> <div class=""snippet-code""> <pre class=""snippet-code-js lang-js prettyprint-override""><code>$(""#vid"").click(function(e) { //height and width of the container var height = $(""#pcVideo"").height(); var width = $(""#pcVideo"").width(); //get click position inside container var relativeX = e.pageX - this.offsetLeft; var relativeY = e.pageY - this.offsetTop; $('#image').css( ""left"", relativeX - 25); $('#image').css( ""top"", relativeY - 25); $('#image').show(); //overlay var video = document.getElementById('vid'); video.pause(); });</code></pre> <pre class=""snippet-code-css lang-css prettyprint-override""><code>#image { position: absolute; display: none; } #vid { position: absolute; } div { width: 100%; }</code></pre> <pre class=""snippet-code-html lang-html prettyprint-override""><code>&lt;script src=""https://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js""&gt;&lt;/script&gt; &lt;div id=""container""&gt; &lt;video id=""vid"" src=""http://clips.vorwaerts-gmbh.de/big_buck_bunny.mp4"" width=""500"" heigh=""400"" preload=""auto"" controls&gt;&lt;/video&gt; &lt;img id=""image"" src=""http://www.gritengine.com/luaimg/circle.png"" /&gt; &lt;/div&gt;</code></pre> </div> </div> </p> " "<p>As mentioned in the <a href=""https://api.jquery.com/index/#index-element"" rel=""nofollow"">jQuery docs</a>,</p> <p>The function <code>.index()</code> takes an element as a parameter like this.</p> <pre><code>p.index($('.current')) </code></pre> <p>and <strong>NOT</strong> the class or id like this.</p> <p><strike><code>p.index('.current')</code></strike> <strong>OR</strong> <strike><code>p.index('#someId')</code></strike></p> <p>Here is the updated <a href=""http://jsfiddle.net/dmhsfds4/2/"" rel=""nofollow"">fiddle</a></p> " "<p>You just need to set background color to <code>outer-container</code>.</p> <p>When you set <code>background-color</code> to <code>&lt;a&gt;</code> tag, the background color is assigned to the text only.</p> <p>Here is you updated <a href=""http://jsfiddle.net/cr9m6k16/1/"" rel=""nofollow"">fiddle</a>.</p> <p>Here is the snippet.</p> <p><div class=""snippet"" data-lang=""js"" data-hide=""false""> <div class=""snippet-code""> <pre class=""snippet-code-css lang-css prettyprint-override""><code>.outer-container { text-align: center; vertical-align: middle; position: relative; background: #337AB7; } .inner-container { background-color: #337AB7; color: #fff; height: 100%; font-size: x-large; }</code></pre> <pre class=""snippet-code-html lang-html prettyprint-override""><code>&lt;div&gt; &lt;span&gt;Some other stuff&lt;/span&gt; &lt;/div&gt; &lt;div class=""outer-container""&gt; &lt;a class=""inner-container"" href=""http://www.google.com"" target=""_blank""&gt;Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cras vestibulum purus vel iaculis accumsan. Nulla vel massa velit. Proin a nisl vel tortor tincidunt pharetra. Nulla tristique porttitor erat. In laoreet, erat non ultricies vulputate, massa mauris tempor ligula, sed dignissim ex augue sit amet sapien. Donec malesuada massa eget turpis consectetur, at feugiat velit aliquam. Fusce dictum ornare dignissim. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Integer non consectetur nunc, at sollicitudin nibh.&lt;/a&gt; &lt;/div&gt; &lt;div&gt;More different stuff&lt;/div&gt;</code></pre> </div> </div> </p> " "<p>Check out this <a href=""https://jsfiddle.net/fawavmbo/2/"" rel=""nofollow"">fiddle</a>.</p> <p>I have used jQuery for the simplicity it provides.</p> <p>I made the following changes:</p> <ol> <li>Added a class <code>cost</code> to the checkboxes.</li> <li>Removed the <code>onClick</code> attribute.</li> <li>Added jQuery.</li> </ol> <p>For the code to work in you system, add the code below to your <code>&lt;head&gt;</code></p> <pre><code>&lt;script src=""https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js""&gt;&lt;/script&gt; </code></pre> <p>Here is the snippet.</p> <p><strong>HTML</strong></p> <pre><code>&lt;table&gt; &lt;tr&gt; &lt;td&gt;&lt;input class='cost' type=""checkbox"" value= ""8""&gt;&lt;/td&gt; &lt;td&gt;&amp;euro; 8&lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td&gt;&lt;input class='cost' type=""checkbox"" value= ""3""&gt;&lt;/td&gt; &lt;td&gt;&amp;euro; 3&lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td&gt;&lt;input class='cost' type=""checkbox"" value= ""19""&gt;&lt;/td&gt; &lt;td&gt;&amp;euro; 19&lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td&gt;&lt;input class='cost' type=""checkbox"" value= ""2""&gt;&lt;/td&gt; &lt;td&gt;&amp;euro; 2&lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td&gt;&lt;input class='cost' type=""checkbox"" value= ""15""&gt;&lt;/td&gt; &lt;td&gt;&amp;euro; 15&lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td&gt;&lt;input class='cost' type=""checkbox"" value= ""12""&gt;&lt;/td&gt; &lt;td&gt;&amp;euro; 12&lt;/td&gt; &lt;/tr&gt; &lt;/table&gt; &lt;table&gt; &lt;tr&gt; &lt;td width=""51""&gt;&lt;input type=""text"" id=""bedragen_selected"" name=""bedragen_selected"" value="""" size=""10"" style=""text-align:right;background-color: #e7e7e9"" readonly=""readonly"" /&gt;&lt;/td&gt; &lt;/tr&gt; &lt;/table&gt; </code></pre> <p><strong>JS</strong></p> <pre><code>var sum = 0; $('.cost').click(function() { if($(this).is(':checked')) { sum = sum + parseInt($(this).val()); } else { sum = sum - parseInt($(this).val()); } $('#bedragen_selected').val(sum); }); </code></pre> " "<p>Error in the code you provided.</p> <ul> <li>wrong anchor tag</li> <li>extra closing tags (<code>&lt;i&gt;</code>, <code>&lt;button&gt;</code>)</li> </ul> <p>The major changes I made in the code:</p> <ul> <li>removed <code>onclick</code> attribute</li> <li>added event listener in javascript</li> </ul> <p>Here is the <a href=""http://jsfiddle.net/6L3mqjsL/1/"" rel=""nofollow"">fiddle</a></p> <p>Here is the snippet.</p> <p><div class=""snippet"" data-lang=""js"" data-hide=""false""> <div class=""snippet-code""> <pre class=""snippet-code-js lang-js prettyprint-override""><code>function FBLogin() { //Fb app information// alert(""WORKING""); window.fbAsyncInit = function() { Parse.FacebookUtils.init({ appId: 'xxxxxxxxx', xfbml: true, version: 'v2.3' }); //rest of function here etc// } } document.getElementById('login').addEventListener(""click"", FBLogin);</code></pre> <pre class=""snippet-code-html lang-html prettyprint-override""><code>&lt;a id='login' href=""#"" role=""button"" class=""btn btn-successFbLi btn-lg fa fa-facebook""&gt; Sign in with Facebook&lt;/a&gt;</code></pre> </div> </div> </p> <p>More about Event Listeners <a href=""http://www.w3schools.com/js/js_htmldom_eventlistener.asp"" rel=""nofollow"">here</a></p> " "<p>Here is you updated <a href=""http://jsfiddle.net/r7dvay4o/2/"" rel=""nofollow"">fiddle</a>.</p> <p>I calculates the grand total of all the items.</p> <p>Here is the snippet.</p> <p><div class=""snippet"" data-lang=""js"" data-hide=""false""> <div class=""snippet-code""> <pre class=""snippet-code-js lang-js prettyprint-override""><code>$(document).ready(function() { function updateArticle1() { var Persons = parseFloat($(""#dare_price1"").val()); var total = (Persons) * 2.00; var total = total.toFixed(2); if (isNaN(total)) total = 0; $(""#total_price_amount1"").val(total); } function updateArticle2() { var Animals = parseFloat($(""#dare_price2"").val()); var total = (Animals) * 3.50; var total = total.toFixed(2); if (isNaN(total)) total = 0; $(""#total_price_amount2"").val(total); } function updateArticle3() { var Bedlinen = parseFloat($(""#dare_price3"").val()); var total = (Bedlinen) * 8.50; var total = total.toFixed(2); if (isNaN(total)) total = 0; $(""#total_price_amount3"").val(total); } function updateArticle4() { var Towels = parseFloat($(""#dare_price4"").val()); var total = (Towels) * 7.50; var total = total.toFixed(2); if (isNaN(total)) total = 0; $(""#total_price_amount4"").val(total); } function updateTotal() { var price1 = parseFloat($(""#total_price_amount1"").val()); var price2 = parseFloat($(""#total_price_amount2"").val()); var price3 = parseFloat($(""#total_price_amount3"").val()); var price4 = parseFloat($(""#total_price_amount4"").val()); var total = price1 + price2 + price3 + price4; if (isNaN(total)) total = 0; $(""#totalSum"").text(total); } $(document).on(""change, keyup"", ""#dare_price1"", updateArticle1); $(document).on(""change, keyup"", ""#dare_price2"", updateArticle2); $(document).on(""change, keyup"", ""#dare_price3"", updateArticle3); $(document).on(""change, keyup"", ""#dare_price4"", updateArticle4); $(document).on(""click"", ""#getTotal"", updateTotal); });</code></pre> <pre class=""snippet-code-html lang-html prettyprint-override""><code>&lt;script src=""https://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js""&gt;&lt;/script&gt; &lt;table&gt; &lt;tr&gt; &lt;td&gt;Persons?&lt;/td&gt; &lt;td&gt; &lt;input class=""span4 input-big"" id=""dare_price1"" name=""Persons"" value="""" size=""30"" type=""text"" /&gt; &lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td&gt;Animals?&lt;/td&gt; &lt;td&gt; &lt;input class=""span4 input-big"" id=""dare_price2"" name=""Animals"" value="""" size=""30"" type=""text"" /&gt; &lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td&gt;Bedlinen?&lt;/td&gt; &lt;td&gt; &lt;input class=""span4 input-big"" id=""dare_price3"" name=""Bedlinen"" value="""" size=""30"" type=""text"" /&gt; &lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td&gt;Towels?&lt;/td&gt; &lt;td&gt; &lt;input class=""span4 input-big"" id=""dare_price4"" name=""Towels"" value="""" size=""30"" type=""text"" /&gt; &lt;/td&gt; &lt;/tr&gt; &lt;/table&gt; &lt;table style=""width: 50%""&gt; &lt;tr&gt; &lt;td style=""width: 403px""&gt;&lt;/td&gt; &lt;td&gt;&lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td style=""width: 403px""&gt;Rentalprice&lt;/td&gt; &lt;td&gt;189.00&lt;/td&gt; &lt;td&gt;Euro&lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td style=""width: 403px""&gt;Taxes&lt;/td&gt; &lt;td style=""width: 50px""&gt; &lt;input style=""border: 0px;"" class=""style11 span4 input-big"" id=""total_price_amount1"" readonly=""readonly"" name=""PricePersons"" value="""" /&gt; &lt;/td&gt; &lt;td&gt;Euro&lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td style=""width: 403px""&gt;&lt;span lang=""nl""&gt;Animals&lt;/span&gt; &lt;/td&gt; &lt;td&gt; &lt;input style=""border: 0px;"" class=""style11 span4 input-big"" id=""total_price_amount2"" readonly=""readonly"" name=""PriceAnimals"" value="""" /&gt; &lt;/td&gt; &lt;td&gt;Euro&lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td style=""width: 403px""&gt;&lt;span lang=""nl""&gt;Bedlinen&lt;/span&gt; &lt;/td&gt; &lt;td&gt; &lt;input style=""border: 0px;"" class=""style11 span4 input-big"" id=""total_price_amount3"" readonly=""readonly"" name=""PriceBedlinen"" value="""" /&gt; &lt;/td&gt; &lt;td&gt;Euro&lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td style=""width: 403px""&gt;&lt;span lang=""nl""&gt;Towels&lt;/span&gt; &lt;/td&gt; &lt;td&gt; &lt;input style=""border: 0px;"" class=""style11 span4 input-big"" id=""total_price_amount4"" readonly=""readonly"" name=""PriceTowels"" value="""" /&gt; &lt;/td&gt; &lt;td&gt;Euro&lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td style=""width: 403px""&gt;Total&lt;/td&gt; &lt;td id=""totalSum""&gt;&amp;nbsp;&lt;/td&gt; &lt;td&gt;Euro&lt;/td&gt; &lt;/tr&gt; &lt;/table&gt; &lt;input id=""getTotal"" type=""button"" value=""Get Total"" /&gt;</code></pre> </div> </div> </p> <p>This code can be further optimized by replacing the 4 functions <code>replaceArticle1()</code>, <code>replaceArticle2()</code>, <code>replaceArticle3()</code>, <code>replaceArticle4()</code> with just a single function <code>replaceArticle()</code> and updating the respective elements using their <code>id</code>s.</p> " "<p>You can always do this..</p> <p>Here is the <a href=""http://jsfiddle.net/gq237zzg/"" rel=""nofollow"">fiddle</a>.</p> <p>Here is the snippet.</p> <p><div class=""snippet"" data-lang=""js"" data-hide=""false""> <div class=""snippet-code""> <pre class=""snippet-code-css lang-css prettyprint-override""><code>.red { color: red; } .blue { color: blue; } .yellow { color: yellow; }</code></pre> <pre class=""snippet-code-html lang-html prettyprint-override""><code>&lt;div&gt;Sally found all the &lt;span class=""red""&gt;RED&lt;/span&gt; seashells down by the &lt;span class=""blue""&gt;BLUE&lt;/span&gt; seashore out in the &lt;span class=""yellow""&gt;YELLOW&lt;/span&gt; sun&lt;/div&gt;</code></pre> </div> </div> </p> " "<p>Check out this <a href=""http://jsfiddle.net/xu0wjukn/"" rel=""nofollow"">fiddle</a>.</p> <p>It is just a sample.</p> <p>It converts <code>[[Google|https://www.google.com]]</code> to <code>&lt;a href='https://www.google.com'&gt;Google&lt;/a&gt;</code>, i.e. <a href=""https://www.google.com"" rel=""nofollow"">Google</a>.</p> <p>I used <a href=""http://regexr.com/3bb7g"" rel=""nofollow"">this</a> Regular Expression to detect the inline markup.</p> <p>It has some bugs, but I think it will help you to implement what you need.</p> <p>Here is the snippet.</p> <p><div class=""snippet"" data-lang=""js"" data-hide=""false""> <div class=""snippet-code""> <pre class=""snippet-code-js lang-js prettyprint-override""><code>$('.editor').keyup(function(e) { if (e.keyCode === 221) { var text = $('.editor').html(); var match = /\[\[(.+)\|(https?:\/\/.*\..+)\]\]/g.exec(text); if (match !== null) { text = text.replace(match[0], ""&lt;span&gt;&lt;a href='"" + match[2] + ""'&gt;"" + match[1] + ""&lt;/a&gt;&lt;/span&gt;""); $('.editor').html(text); } } });</code></pre> <pre class=""snippet-code-css lang-css prettyprint-override""><code>.editor { position: absolute; border: black dashed 2px; left: 5%; right: 5%; top: 10%; bottom: 10%; padding: 15px; font-family: 'Lucida Console'; font-weight: bold; }</code></pre> <pre class=""snippet-code-html lang-html prettyprint-override""><code>&lt;script src=""https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js""&gt;&lt;/script&gt; &lt;div class=""editor"" contenteditable='true'&gt;This is the Editor. write something here.&lt;/div&gt;</code></pre> </div> </div> </p> " "<p>That extra space above the text can be removed by the property <code>line-height</code>.</p> <pre><code>line-height: 0.5em; </code></pre> <p>See this <a href=""http://jsfiddle.net/9tcxosv9/1/"" rel=""nofollow"">fiddle</a></p> <p>Here is the snippet.</p> <p><div class=""snippet"" data-lang=""js"" data-hide=""false""> <div class=""snippet-code""> <pre class=""snippet-code-css lang-css prettyprint-override""><code>span { background-color: red; color: yellow; border: 1px solid blue; font-size: 58px; line-height: 0.5em; }</code></pre> <pre class=""snippet-code-html lang-html prettyprint-override""><code>&lt;span&gt;Fylgpm&lt;/span&gt;</code></pre> </div> </div> </p> " "<p>So the gist of you problem is you need a div which <strong>allows scrolling</strong> but the <strong>scrollbar should not be visible</strong>...</p> <p>See this <a href=""http://jsfiddle.net/8QzmH/"" rel=""nofollow"">fiddle</a>.</p> <p>Here is the snippet.</p> <p><div class=""snippet"" data-lang=""js"" data-hide=""false""> <div class=""snippet-code""> <pre class=""snippet-code-css lang-css prettyprint-override""><code>#container { height: 100%; width: 100%; overflow: hidden; } #content { width: 100%; height: 99%; overflow: auto; padding-right: 15px; } html, body { height: 99%; overflow: hidden; }</code></pre> <pre class=""snippet-code-html lang-html prettyprint-override""><code>&lt;div id=""container""&gt; &lt;div id=""content""&gt; testing &lt;br /&gt;testing &lt;br /&gt;testing &lt;br /&gt;testing &lt;br /&gt;testing &lt;br /&gt;testing &lt;br /&gt;testing &lt;br /&gt;testing &lt;br /&gt;testing &lt;br /&gt;testing &lt;br /&gt;testing &lt;br /&gt;testing &lt;br /&gt;testing &lt;br /&gt;testing &lt;br /&gt;testing &lt;br /&gt;testing &lt;br /&gt;testing &lt;br /&gt;testing &lt;br /&gt;testing &lt;br /&gt;testing &lt;br /&gt;testing &lt;br /&gt;testing &lt;br /&gt;testing &lt;br /&gt;testing &lt;br /&gt;testing &lt;br /&gt;testing &lt;br /&gt;testing &lt;br /&gt;testing &lt;br /&gt;testing &lt;br /&gt;testing &lt;br /&gt;testing &lt;br /&gt;testing &lt;br /&gt;testing &lt;br /&gt;testing &lt;br /&gt;testing &lt;br /&gt;testing &lt;br /&gt;testing &lt;br /&gt;testing &lt;br /&gt;testing &lt;br /&gt;testing &lt;br /&gt;testing &lt;br /&gt;testing &lt;br /&gt;testing &lt;br /&gt;testing &lt;br /&gt;testing &lt;br /&gt;testing &lt;br /&gt;testing &lt;br /&gt;testing &lt;br /&gt;testing &lt;br /&gt;testing &lt;br /&gt;testing &lt;br /&gt;testing &lt;br /&gt;testing &lt;br /&gt;testing &lt;br /&gt;testing &lt;br /&gt;testing &lt;br /&gt;testing &lt;br /&gt;testing &lt;br /&gt;testing &lt;br /&gt;testing &lt;br /&gt;testing &lt;br /&gt;testing &lt;br /&gt;testing &lt;br /&gt;testing &lt;br /&gt;testing &lt;br /&gt;testing &lt;br /&gt; &lt;/div&gt; &lt;/div&gt;</code></pre> </div> </div> </p> <p>Hope it helps..</p> " "<p>Check this <a href=""http://jsfiddle.net/68kkow8b/1/"" rel=""nofollow"">fiddle</a>.</p> <p>It uses a function <code>DrawLine(x1,y1,x2,y2)</code> to draw a line between the given co-ordinates.</p> <p>Basically, it creates <code>div</code>s with thin width and rotate them according the slope.</p> <p>Looks like a wheel with spokes.</p> <p>Here is a <a href=""http://jsfiddle.net/68kkow8b/2/"" rel=""nofollow"">wheel in action</a> if you need. </p> <p>Here is the snippet.</p> <p><div class=""snippet"" data-lang=""js"" data-hide=""false""> <div class=""snippet-code""> <pre class=""snippet-code-js lang-js prettyprint-override""><code>drawNLines(12, 40, 40, 40); function drawNLines(N, centreX, centreY, radius) { for (i = 0; i &lt; N; i++) { angle = 360 / N; x2 = centreX + radius * Math.cos(Math.PI * angle * i / 180); y2 = centreY + radius * Math.sin(Math.PI * angle * i / 180); DrawLine(centreX, centreY, x2, y2); } } function DrawLine(x1, y1, x2, y2) { if (y1 &lt; y2) { var pom = y1; y1 = y2; y2 = pom; pom = x1; x1 = x2; x2 = pom; } var a = Math.abs(x1 - x2); var b = Math.abs(y1 - y2); var c; var sx = (x1 + x2) / 2; var sy = (y1 + y2) / 2; var width = Math.sqrt(a * a + b * b); var x = sx - width / 2; var y = sy; a = width / 2; c = Math.abs(sx - x); b = Math.sqrt(Math.abs(x1 - x) * Math.abs(x1 - x) + Math.abs(y1 - y) * Math.abs(y1 - y)); var cosb = (b * b - a * a - c * c) / (2 * a * c); var rad = Math.acos(cosb); var deg = (rad * 180) / Math.PI htmlns = ""http://www.w3.org/1999/xhtml""; div = document.createElementNS(htmlns, ""div""); div.setAttribute('style', 'border:1px solid black;width:' + width + 'px;height:0px;-moz-transform:rotate(' + deg + 'deg);-webkit-transform:rotate(' + deg + 'deg);position:absolute;top:' + y + 'px;left:' + x + 'px;'); document.getElementById(""circle"").appendChild(div); }</code></pre> <pre class=""snippet-code-css lang-css prettyprint-override""><code>#circle { height: 80px; width: 80px; margin-left: 30px; margin-top: 30px; background-color: #fff; border: 2px solid blue; border-radius: 80px; position: absolute; }</code></pre> <pre class=""snippet-code-html lang-html prettyprint-override""><code>&lt;div id=""circle""&gt;&lt;/div&gt;</code></pre> </div> </div> </p> <p>Hope this helps. :)</p> " "<p>To achieve the effect mentioned, I followed the following approach.</p> <ol> <li>Create an image with required text on it (<code>StackOverflow</code> for example).</li> <li>Make the text on this image transparent. (I did it in <code>Microsoft Powerpoint</code>).</li> </ol> <p>This is how the image looks</p> <p><img src=""http://i.stack.imgur.com/plKV4.png"" alt=""enter image description here""></p> <p>Note that the text area is <strong>transparent</strong>. Download this image and open it in any image viewer to verify.</p> <ol start=""3""> <li>Then, Create a <a href=""http://www.w3schools.com/css/css3_gradients.asp"" rel=""nofollow"">gradient</a>. (You can use <a href=""http://angrytools.com/gradient/"" rel=""nofollow"">this</a> for simplicity)</li> </ol> <p>Combining the above resources, here is the <a href=""http://jsfiddle.net/h5z1dttw/"" rel=""nofollow"">fiddle</a>.</p> <p><div class=""snippet"" data-lang=""js"" data-hide=""false""> <div class=""snippet-code""> <pre class=""snippet-code-css lang-css prettyprint-override""><code>#color { position: absolute; width: 800px; height: 130px; background: -moz-linear-gradient(0deg, #ff0000 0%, #2AA830 25%, #05C1FF 50%, #ffff00 75%, #0808BF 100%); /* ff3.6+ */ background: -webkit-gradient(linear, left top, right top, color-stop(0%, #ff0000), color-stop(25%, #2AA830), color-stop(50%, #05C1FF), color-stop(75%, #ffff00), color-stop(100%, #0808BF)); /* safari4+,chrome */ background: -webkit-linear-gradient(0deg, #ff0000 0%, #2AA830 25%, #05C1FF 50%, #ffff00 75%, #0808BF 100%); /* safari5.1+,chrome10+ */ background: -o-linear-gradient(0deg, #ff0000 0%, #2AA830 25%, #05C1FF 50%, #ffff00 75%, #0808BF 100%); /* opera 11.10+ */ background: -ms-linear-gradient(0deg, #ff0000 0%, #2AA830 25%, #05C1FF 50%, #ffff00 75%, #0808BF 100%); /* ie10+ */ background: linear-gradient(90deg, #ff0000 0%, #2AA830 25%, #05C1FF 50%, #ffff00 75%, #0808BF 100%); /* w3c */ filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#ff0000', endColorstr='#0808BF', GradientType=1); /* ie6-9 */ } #text { position: absolute; width: 800px; height: 130px; background: url('http://i.stack.imgur.com/plKV4.png'); background-size: 100% 100%; } #slider { position: absolute; left: 0%; right: 0%; top: 0%; bottom: 0%; background: gray; animation: slide forwards 5s linear; } @keyframes slide { 0% { left: 0%; } 100% { left: 100%; } }</code></pre> <pre class=""snippet-code-html lang-html prettyprint-override""><code>&lt;div id=""color""&gt; &lt;div id=""slider""&gt;&lt;/div&gt; &lt;div id=""text""&gt;&lt;/div&gt; &lt;/div&gt;</code></pre> </div> </div> </p> <p>I have used <a href=""http://www.w3schools.com/css/css3_animations.asp"" rel=""nofollow""><code>keyframes animation</code></a> to fill the color.<br> It can be easily replaced by <code>jQuery</code></p> " "<p>Your code works fine on <a href=""http://jsfiddle.net/rzjrrer6/2/"" rel=""nofollow"">jsfiddle</a> when the JavaScript is included in <code>&lt;body&gt;</code></p> <ul> <li>Your code do not have <code>&lt;head&gt;</code> tag. Place your <code>CSS</code> inside <code>&lt;head&gt;</code> tag.</li> <li>Move you JavaScript to end of the <code>&lt;body&gt;</code> tag.</li> </ul> <p>Here is your code which works perfectly.</p> <pre><code>&lt;!DOCTYPE html&gt; &lt;html&gt; &lt;head&gt; &lt;style type=""text/css""&gt; canvas {border: 1px solid #000;} &lt;/style&gt; &lt;link rel=""stylesheet"" href=""stylespacewars.css"" /&gt; &lt;script src=""jsspacewars.js""&gt;&lt;/script&gt; &lt;script src=""jquery.js""&gt;&lt;/script&gt; &lt;title&gt;&lt;/title&gt; &lt;/head&gt; &lt;body onload=""popUpMessage()""&gt; &lt;div id=""images""&gt;&lt;/div&gt; &lt;canvas style=""margin:0;padding:0;position:relative;left:50px;top:50px;"" id=""imgCanvas"" width=""400"" height=""300"" onclick=""drawCircle(event)"" ondblclick=""changeColor(event)""&gt;&lt;/canvas&gt; &lt;script type=""text/javascript""&gt; // popup message when page loads function popUpMessage() { alert(""Please click left top corner""); } var canvas = document.getElementById(""imgCanvas""); var context = canvas.getContext(""2d""); // click canvas function clickCanvas(imageId) { canvas.style.display = ""block""; document.getElementById(""images"").style.overflowY = ""hidden""; var img = new Image(400, 300); img.src = document.getElementById(imageId).src; context.drawImage(img, (0), (0)); //onload.... } // draw red circle on click function drawCircle(e) { posx = 100; posy = 100; context.fillStyle = ""#FF0000""; context.beginPath(); context.arc(posx, posy, 100, 0, 2 * Math.PI); context.fill(); } // change from red to blue on double click function changeColor() { posx = 100; posy = 100; context.fillStyle = ""#0000FF""; context.beginPath(); context.arc(posx, posy, 100, 0, 2 * Math.PI); context.fill(); } window.drawCircle = drawCircle; &lt;/script&gt; &lt;/body&gt; &lt;/html&gt; </code></pre> " "<p>Check out this <a href=""http://jsfiddle.net/rtndsmmb/"" rel=""nofollow"">fiddle</a>. (I have used jQuery)</p> <ol> <li>Get the innerHTML by the mehod <code>.html()</code>.</li> <li>split it with regex <code>/\n/</code> (newLine).</li> <li>Concatenate the substrings with additional <code>""Read""</code>.</li> <li>Alert the final result.</li> </ol> <p>Here is the snippet.</p> <p><div class=""snippet"" data-lang=""js"" data-hide=""false""> <div class=""snippet-code""> <pre class=""snippet-code-js lang-js prettyprint-override""><code>$('#click').click(function() { var text = $('#targetTextArea').html(); var lines = text.split(/\n/); var finalText = ''; for (i in lines) { finalText = finalText + 'Read ' + lines[i] + '\n'; } alert(finalText); });</code></pre> <pre class=""snippet-code-html lang-html prettyprint-override""><code>&lt;script src=""https://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js""&gt;&lt;/script&gt; &lt;textarea rows=""20"" cols=""50"" id=""targetTextArea""&gt;How to print each line from textarea using innerHTML and javascript&lt;/textarea&gt; &lt;input type=""button"" value=""Click Me"" id=""click"" /&gt;</code></pre> </div> </div> </p> " "<p>Check out this <a href=""http://jsfiddle.net/quf1q271/"" rel=""nofollow"">fiddle</a>.</p> <p>I have used jQuery, which makes it very easy to implement.</p> <p>Here is the snippet.</p> <p><div class=""snippet"" data-lang=""js"" data-hide=""false""> <div class=""snippet-code""> <pre class=""snippet-code-js lang-js prettyprint-override""><code>$('.lunch').click(function() { $('#food').show(); if ($(this).val() == 1) { $('#food').removeAttr(""disabled""); } else { $('#food').attr(""disabled"", ""disabled""); } });</code></pre> <pre class=""snippet-code-css lang-css prettyprint-override""><code>#food { display: none; }</code></pre> <pre class=""snippet-code-html lang-html prettyprint-override""><code>&lt;script src=""https://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js""&gt;&lt;/script&gt; Do you want Lunch ? &lt;br&gt; &lt;input type=""radio"" name='lunch' value=""1"" class='lunch' /&gt;YES &lt;br&gt; &lt;input type=""radio"" name='lunch' value=""0"" class='lunch' /&gt;NO &lt;br&gt; &lt;select id='food'&gt; &lt;option&gt;PIZZA&lt;/option&gt; &lt;option&gt;BURGER&lt;/option&gt; &lt;option&gt;SAMOSA&lt;/option&gt; &lt;option&gt;KACHORI&lt;/option&gt; &lt;option&gt;POHE&lt;/option&gt; &lt;option&gt;DOSA&lt;/option&gt; &lt;/select&gt;</code></pre> </div> </div> </p> " "<p>Check out this <a href=""http://jsfiddle.net/shrinivas93/h2u7e7cb/"" rel=""nofollow"">fiddle</a>. You need to use <code>.css()</code> to change the style of any element.</p> <p>Here is the snippet.</p> <p><div class=""snippet"" data-lang=""js"" data-hide=""false""> <div class=""snippet-code""> <pre class=""snippet-code-js lang-js prettyprint-override""><code>var x; $(""button"").click(function() { x = $(""#width"").val(); $(""#square"").css(""width"", x); });</code></pre> <pre class=""snippet-code-css lang-css prettyprint-override""><code>#square { position: absolute; width: 20px; height: 20px; background: red; }</code></pre> <pre class=""snippet-code-html lang-html prettyprint-override""><code>&lt;script src=""https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js""&gt;&lt;/script&gt; &lt;div id=""square""&gt;&lt;/div&gt; &lt;br&gt; &lt;br&gt; &lt;input type=""number"" id=""width"" /&gt; &lt;button&gt;Click&lt;/button&gt;</code></pre> </div> </div> </p> " "<p>Check out this <a href=""http://jsfiddle.net/shrinivas93/yabyehq2/"" rel=""nofollow"">fiddle</a>.</p> <p>The constructor <code>Date(milliseconds)</code> of <code>class Date</code> can be used here.</p> <p>Here is the snippet.</p> <p><div class=""snippet"" data-lang=""js"" data-hide=""false""> <div class=""snippet-code""> <pre class=""snippet-code-js lang-js prettyprint-override""><code>var now = new Date(); alert(now); var milliseconds = new Date().getTime() + (1 * 60 * 60 * 1000); var later = new Date(milliseconds); alert(later);</code></pre> </div> </div> </p> " "<p>Check out this <a href=""http://jsfiddle.net/shrinivas93/emt34tu2/"" rel=""nofollow"">fiddle</a>.</p> <ol> <li>obtain the <code>div</code> by <code>document.getElementById()</code> method.</li> <li>Set value to its <code>innerHTML</code>.</li> </ol> <p>Here is the snippet.</p> <p><div class=""snippet"" data-lang=""js"" data-hide=""false""> <div class=""snippet-code""> <pre class=""snippet-code-js lang-js prettyprint-override""><code>document.getElementById(""external"").innerHTML = ""&lt;a href='http://www.google.com'&gt; Google &lt;/a&gt;"";</code></pre> <pre class=""snippet-code-html lang-html prettyprint-override""><code>&lt;div id=""external"" data-wow-delay=""0.25s"" class=""clearfix service-list odd wow fadeInLeft animated"" style=""visibility: visible; animation-delay: 0.25s; animation-name: fadeInLeft;""&gt; &lt;div class=""service-image""&gt; &lt;img alt=""test 1"" src=""http://localhost/onyx/wp-content/themes/accesspress-parallax/images/no-image.jpg""&gt; &lt;/div&gt; &lt;div class=""service-detail""&gt; &lt;h3&gt;test 1&lt;/h3&gt; &lt;div class=""service-content""&gt; &lt;p&gt;https://it.wikipedia.or /wiki/Pagina_principale&lt;/p&gt; &lt;p&gt;and&lt;/p&gt; &lt;p&gt;https://www.google.it/&lt;/p&gt; &lt;p&gt;&amp;nbsp;&lt;/p&gt; &lt;/div&gt; &lt;/div&gt; &lt;/div&gt;</code></pre> </div> </div> </p> " "<p>Check out this <a href=""http://jsfiddle.net/shrinivas93/zewk17vL/"" rel=""nofollow"">fiddle</a>.</p> <p>It uses <a href=""https://jquery.com/"" rel=""nofollow""><code>jQuery</code></a> which makes it much easier.</p> <p>Here is the snippet.</p> <p><div class=""snippet"" data-lang=""js"" data-hide=""false""> <div class=""snippet-code""> <pre class=""snippet-code-js lang-js prettyprint-override""><code>$(""#button"").click(function() { $(""#fn"").show(); $(""#ln"").show(); });</code></pre> <pre class=""snippet-code-html lang-html prettyprint-override""><code>&lt;script src=""https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js""&gt;&lt;/script&gt; &lt;input id=""button"" type=""button"" value=""Click""&gt; &lt;br&gt; &lt;div id=""fn"" hidden&gt;First Name : &lt;input type=""text"" /&gt; &lt;/div&gt; &lt;br&gt; &lt;div id=""ln"" hidden&gt;Last Name : &lt;input type=""text"" /&gt; &lt;/div&gt;</code></pre> </div> </div> </p> " "<p>Check out this <a href=""http://jsfiddle.net/shrinivas93/Lu4of1f1/1/"" rel=""nofollow"">fiddle</a>.</p> <p>It uses <code>@keyframes-animation</code> to achieve the desired effect.</p> <p>Its is not exactly what you want, but if given time this will help you to solve your problem.</p> <p>Here is the snippet.</p> <p><div class=""snippet"" data-lang=""js"" data-hide=""false""> <div class=""snippet-code""> <pre class=""snippet-code-js lang-js prettyprint-override""><code>var x = 0; $(""#cookie"").click(function(e) { x++; $(""#cookie"").append('&lt;div id=""x' + x + '"" hidden&gt;+1.0&lt;/div&gt;'); $(""#x"" + x).css(""top"", e.clientY); $(""#x"" + x).css(""left"", e.clientX - 10); $(""#x"" + x).css(""position"", ""absolute""); $(""#x"" + x).css(""width"", ""25px""); $(""#x"" + x).css(""height"", ""25px""); $(""#x"" + x).css(""color"", ""white""); $(""#x"" + x).css(""font-weight"", ""bold""); $(""#x"" + x).css(""animation"", ""GoUp 2s forwards linear""); $(""#x"" + x).show(); });</code></pre> <pre class=""snippet-code-css lang-css prettyprint-override""><code>#cookie { background: red; width: 300px; height: 300px; } @keyframes GoUp { 0% { opacity: 1; } 100% { top: 0px; opacity: 0; } }</code></pre> <pre class=""snippet-code-html lang-html prettyprint-override""><code>&lt;script src=""https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js""&gt;&lt;/script&gt; &lt;div id=""cookie""&gt; &lt;/div&gt;</code></pre> </div> </div> </p> " "<p>You have placed the following code outside the <code>function onrendered()</code>.</p> <pre><code>var dataURL = canvas.toDataURL(); console.log(dataURL); </code></pre> <p>Due to which it gets executed before the <code>canvas</code> is even rendered.</p> <p>Place this code inside <code>onrendered()</code>.</p> <p>Here is the updated <a href=""http://jsfiddle.net/shrinivas93/b7wgoL73/1/"" rel=""nofollow"">fiddle</a>.</p> <p>Here is the snippet.</p> <p><div class=""snippet"" data-lang=""js"" data-hide=""false""> <div class=""snippet-code""> <pre class=""snippet-code-js lang-js prettyprint-override""><code>function testScrnShot() { html2canvas(document.getElementById(""testing""), { onrendered: function(canvas) { document.body.appendChild(canvas); var dataURL = canvas.toDataURL(); console.log(dataURL); } }); }</code></pre> <pre class=""snippet-code-css lang-css prettyprint-override""><code>#testing { font-family: Arial, sans-serif; background: #000; color: #fff; display: inline-block; padding: 1em; border-radius: 2px; cursor: pointer; margin: 1em; } canvas { float: right; margin: 1em; }</code></pre> <pre class=""snippet-code-html lang-html prettyprint-override""><code>&lt;script src=""https://github.com/niklasvh/html2canvas/releases/download/0.5.0-alpha1/html2canvas.js""&gt;&lt;/script&gt; &lt;div id=""testing"" onclick=""testScrnShot();""&gt;&lt;strong&gt;Hello&lt;/strong&gt;, this is a test&lt;/div&gt;</code></pre> </div> </div> </p> <p>Prints the <code>data url</code> in the console now.</p> " "<p>The correct way to access the text of <code>&lt;a&gt;</code> tag is <code>.innerHTML</code> <strong>NOT</strong> <code>.value</code>.</p> <p>Check out this <a href=""http://jsfiddle.net/shrinivas93/g6dhp19n/"" rel=""nofollow"">fiddle</a>.</p> <p>Here is the snippet.</p> <p><div class=""snippet"" data-lang=""js"" data-hide=""false""> <div class=""snippet-code""> <pre class=""snippet-code-js lang-js prettyprint-override""><code>function check() { var inputs = document.getElementsByTagName('a'); for (var i = 0; i &lt; inputs.length; i += 1) { if (inputs[i].innerHTML == ""selected"") { alert(inputs[i].id); } } }</code></pre> <pre class=""snippet-code-html lang-html prettyprint-override""><code>&lt;a href=""www.google.com"" id=""1""&gt;selected&lt;/a&gt; &lt;a href=""www.facebook.com"" id=""2""&gt;select&lt;/a&gt; &lt;a href=""www.gmail.com"" id=""3""&gt;selected&lt;/a&gt; &lt;button onclick=""check()""&gt;Check!&lt;/button&gt;</code></pre> </div> </div> </p> " "<p>Just set the <code>opacity</code> to <code>0</code></p> <p>Check out this <a href=""http://jsfiddle.net/shrinivas93/qjwf4ukc/"" rel=""nofollow"">fiddle</a>.</p> <p>Here is the snippet.</p> <p><div class=""snippet"" data-lang=""js"" data-hide=""false""> <div class=""snippet-code""> <pre class=""snippet-code-css lang-css prettyprint-override""><code>#hide { opacity: 0; }</code></pre> <pre class=""snippet-code-html lang-html prettyprint-override""><code>&lt;span class=""commandButtonsRight""&gt; &lt;button id=""hide"" class=""k-button k-button-icontext"" data-bind=""click: save""&gt; &lt;span class=""k-icon k-update""&gt;&lt;/span&gt;Save &lt;/button&gt; &lt;button class=""k-button k-button-icontext"" data-bind=""click: cancel""&gt; &lt;span class=""k-icon k-cancel""&gt;&lt;/span&gt;Reset Form &lt;/button&gt; &lt;/span&gt;</code></pre> </div> </div> </p> " "<p>When you do <code>.brochureImg a img:nth-child(odd)</code>, you are saying ""Select odd <code>img</code> with <code>a</code> with <code>.brochureImg</code>"".</p> <p>But that is <strong>NOT</strong> what you want to say.</p> <p>Do this, <code>.brochureImg:nth-child(odd) a img</code> and you will be saying ""Select odd <code>.brochureImg</code> with <code>a</code> with <code>img</code>"".</p> <p>Here is the <a href=""http://jsfiddle.net/shrinivas93/vwLh1ktr/"" rel=""nofollow"">fiddle</a>.</p> <p>Here is the snippet.</p> <p><div class=""snippet"" data-lang=""js"" data-hide=""false""> <div class=""snippet-code""> <pre class=""snippet-code-css lang-css prettyprint-override""><code>.brochureImg { display: inline-block; margin: 0 auto; margin-top: -90px; padding: 0 16px 150px 0; position: relative; z-index: 100; } .brochureImg img { box-shadow: 3px 3px 8px #666666; } .brochureImg:nth-child(odd) a img { margin-top: -120px; } .brochureImg:nth-child(even) a img { margin-top: -60px; } .brochureImg.first { margin-left: 125px; }</code></pre> <pre class=""snippet-code-html lang-html prettyprint-override""><code>&lt;div class=""brochureBrand""&gt; &lt;ul&gt; &lt;li class=""brochureName hrDots""&gt;&lt;a href=""#""&gt;GP &amp; J Baker&lt;/a&gt; &lt;li class=""brochureImg first""&gt; &lt;a href=""#""&gt; &lt;img src=""http://placehold.it/125x175""&gt; &lt;/a&gt; &lt;/li&gt; &lt;li class=""brochureImg""&gt; &lt;a href=""#""&gt; &lt;img src=""http://placehold.it/125x175""&gt; &lt;/a&gt; &lt;/li&gt; &lt;li class=""brochureImg""&gt; &lt;a href=""#""&gt; &lt;img src=""http://placehold.it/125x175""&gt; &lt;/a&gt; &lt;/li&gt; &lt;li class=""brochureImg""&gt; &lt;a href=""#""&gt; &lt;img src=""http://placehold.it/125x175""&gt; &lt;/a&gt; &lt;/li&gt; &lt;li class=""brochureImg""&gt; &lt;a href=""#""&gt; &lt;img src=""http://placehold.it/125x175""&gt; &lt;/a&gt; &lt;/li&gt; &lt;li class=""brochureImg""&gt; &lt;a href=""#""&gt; &lt;img src=""http://placehold.it/125x175""&gt; &lt;/a&gt; &lt;/li&gt; &lt;li class=""brochureImg""&gt; &lt;a href=""#""&gt; &lt;img src=""http://placehold.it/125x175""&gt; &lt;/a&gt; &lt;/li&gt; &lt;/li&gt; &lt;/ul&gt; &lt;/div&gt;</code></pre> </div> </div> </p> " "<p>You can use <code>&gt;</code> to access the children.</p> <p>Here is the <a href=""http://jsfiddle.net/shrinivas93/cqo4dz3r/2/"" rel=""nofollow"">fiddle</a>.</p> <p>Here is the snippet.</p> <p><div class=""snippet"" data-lang=""js"" data-hide=""false""> <div class=""snippet-code""> <pre class=""snippet-code-css lang-css prettyprint-override""><code>#dash &gt; ul &gt; li { background: red; }</code></pre> <pre class=""snippet-code-html lang-html prettyprint-override""><code>&lt;div id=""dash""&gt; &lt;ul&gt; &lt;li&gt;&lt;a href=""#""&gt;home&lt;/a&gt; &lt;/li&gt; &lt;li&gt;&lt;a href=""#""&gt;about&lt;/a&gt; &lt;/li&gt; &lt;/ul&gt; &lt;/div&gt;</code></pre> </div> </div> </p> "
Extract jsfiddle links
2015-07-24T08:36:40.000Z
ENTITY(?:.*\r?\n)*?.*\((.*)\)
ENTITY first VHDL language standard: 3 (VHDL-2008) ARCHITECTURE BODY arch VHDL language standard: 3 (VHDL-2008)
شش
2015-11-23T14:07:44.000Z
test z wyrażeniem regularnym
^\sOrder NO:(\d*)\s.*Order Time:\s([0-9]{2}:[0-9]{2} .*\. [0-9]{2} [0-9]{4})\s(.*)\s(Chat now|Offline).*Contact Amount:\s(.*)
aliexpres
2015-02-07T16:38:18.000Z
Unique identifier guid generated by mssql databases
^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$
Guid for MSSQL
2016-09-03T00:16:48.000Z
(?s)(?:\s)\w*(?=\-.*)
This is [INFO] 29 Jun 2018 06:06:49,620 SYSLOG->|datetime:20180629060649618+0000| my first sentence. This is my [second] sentence.(?<=\[).*?(?=\].*)
Find between a space and a char/string
2018-08-04T17:51:26.000Z
(\b(?:(?:(?:(?:0[1-9])|(?:[1-2][0-9])|(?:3[0-1])|[1-9])[\/\-\.\s](?:(?:0[1-9])|1[0-2]|[1-9])[\/\-\.\s]\d\d(?:\d\d)?|(?:(?:0[1-9])|(?:[1-2][0-9])|(?:3[0-1])|[1-9])[\/\-\.\s](?:(?:0[1-9])|1[0-2]|[1-9])|(?:(?:0[1-9])|1[0-2]|[1-9])[\/\-\.\s]\d\d(?:\d\d)?|(?:(?:0[1-9])|(?:[1-2][0-9])|(?:3[0-1])|[1-9])[\/\-\.\s]\d\d(?:\d\d)?|\d\d(?:\d\d)?))\b)
day-month-year 27-6-1990 21-10-1990 21 6 88 day-month 21-10 17-09 18-02 day-year 10-1990 18-1990 30-1998 month-year 12/1990
day-month-year regex
2018-04-01T18:54:31.000Z
Regex for France phones (without +)
^((00|0)?33[1-9]{1}[0-9]{8,9})$
France Phones
2023-10-04T08:35:25.000Z
This regexp will check for valid swedish postnumber
^[0-9]{3}\s?[0-9]{2}$
566 33
Swedish postnumber
2016-08-17T11:02:42.000Z
us date format
[\d]{4}(-|\/)[\d]{2}(-|\/)[\d]{2}
2000-02-02 1987-02-02 1000-sd-65 2100-12-87
us date format
2015-11-16T14:44:51.000Z
Find Comments starting with # or //. Also finds Commentblocks starting with /* and ending with */.
((?<raute>#(?<raute_content>[^\n]*))|(?<doubleslashes>\/\/(?<doubleslashes_content>[^\n]*))|(?<block>\/\*(?<block_content>[^*]+|\*(?!\/))*+\*\/))
blah # ein Kommentar blah blah // ein Kommentar /* Ein Kommentar Block */ blah # ein weiteres Kommentar blah /* Zweiter Block Geht wieder über mehrere Zeilen */
Find comments or commentblocks in Code V1.01
2015-12-30T15:09:29.000Z
python def to assembly macro
def\s+(\w+)\((\w+),\s*(\w+)\):
def sync_device(cluster_id, tdsp_id):
def to macro
2016-01-06T21:58:13.000Z
Match Kaspersky Security Center KSN service domains for exclusion from DNS logs
^(?:(ds)|ksn-(?:a-(?:stat|p2p)|(?:file|verdict|url|c?info))-geo)\.kaspersky(?(1)|-labs)\.com$
ds.kaspersky.com ksn-a-stat-geo.kaspersky-labs.com ksn-a-p2p-geo.kaspersky-labs.com ksn-file-geo.kaspersky-labs.com ksn-verdict-geo.kaspersky-labs.com ksn-url-geo.kaspersky-labs.com ksn-info-geo.kaspersky-labs.com ksn-cinfo-geo.kaspersky-labs.com
Kaspersky Security Center KSN service domains (DNS)
2023-06-14T16:47:21.000Z
a-zA-Z + 0-9 + [!$%&?]
a-zA-Z + 0-9 + [!$%&?]
2015-06-23T22:43:16.000Z
'test' - no match 'test test' - no match ' test' - match (space at the start) 'test ' - match (space at the end) 'test test' - match (single space in the middle)
^ +|( )(?=\1)| +$
test
Match pointless spaces in space separated list
2015-12-31T20:22:01.000Z
(?<=(F\H)).*[\t\n\s\/]*
test <-"Chargé de recrutement (F/H) Consultant en recrutement (F/H)"
qfdqf
2016-08-30T09:25:30.000Z
matches currency with or without currency symbol
\s?[^0-9]?\s?[0-9,]+([\\.]{1})?[0-9]+\s?
$429.99
Currency matcher with curreny symbol
2016-07-05T19:24:13.000Z
(a)(\1(?1)?)
aaaaa
sub-pattern recursive with group backreference
2019-05-20T04:24:27.000Z
(?<=^\/)(ru|ua)(?=\/)
/ru/
before / after
2018-06-15T10:14:27.000Z
(?<!^\s)(?<=[\((\,\s?)])(FoX::)?Image\s?\*
, Image * ,Image * (Image * ( Image * , FoX::Image * ,FoX::Image * (FoX::Image * ( FoX::Image * /* [retval][out] */ ICscImage **pVal) = 0; Image* pImage = Image::Create(); Image* pImage = Image::Create();
replace type in function parameter
2019-07-08T07:42:49.000Z
Validate GUID using a regex expression. Does not allow: - Mismatched enclosing braces. - Incorrect numbers of characters per grouping. - Incorrect number of groupings. - Invalid characters Does allow: - Use of enclosing braces. - No enclosing braces. - Use of '-' to separate groupings. - Use of no '-' to separate groupings.
^(((?=.*}$){)|((?!.*}$)))((?!.*-.*)|(?=(.*[-].*){4}))[0-9a-fA-F]{8}[-]?([0-9a-fA-F]{4}[-]?){3}[0-9a-fA-F]{12}?[}]?$
//A valid guid without enclosing braces: 8be94c81-a218-42f5-bf1b-383f15490d42 //A valid guid with enclosing braces: {8be94c81-a218-42f5-bf1b-383f15490d42} // A valid guid without enclosing braces and grouping separators: 8be94c81a21842f5bf1b383f15490d42 // A valid guid with enclosing braces and no grouping separators: {8be94c81a21842f5bf1b383f15490d42} // Guids containing invalid characters (one in each grouping): 8bg94c81-a218-42f5-bf1b-383f15490d42 8be94c81-g218-42f5-bf1b-383f15490d42 8be94c81-a218-42g5-bf1b-383f15490d42 8be94c81-a218-42f5-bg1b-383f15490d42 8be94c81-a218-42f5-bf1b-383g15490d42 // Guids containing mismatched enclosing braces: {8be94c81-a218-42f5-bf1b-383f15490d42 8be94c81-a218-42f5-bf1b-383f15490d42} 8be94c81a21842f5bf1b383f15490d42} {8be94c81a21842f5bf1b383f15490d42 // Correct number of groupings, incorrect number of characters per grouping: 8be94c8-1a218-42f5-bf1b-383f15490d42 8be94c81-a21-842f5-bf1b-383f15490d42 8be94c81-a218-42f-5bf1b-383f15490d42 8be94c81-a218-42f5-bf1-b383f15490d42 // Incorrect number of grouping separators: {8be94c81a218-42f5-bf1b-383f15490d42} {8be94c81-a21842f5-bf1b-383f15490d42} {8be94c81-a218-42f5bf1b-383f15490d42} {8be94c81-a218-42f5-bf1b383f15490d42} {8be94c81a21842f5-bf1b-383f15490d42} {8be94c81-a21842f5bf1b-383f15490d42} {8be94c81-a218-42f5bf1b383f15490d42} {8be94c81a218-42f5bf1b-383f15490d42} {8be94c81a218-42f5-bf1b383f15490d42} {8be94c81-a21842f5-bf1b383f15490d42} // Same, with no enclosing braces: 8be94c81a218-42f5-bf1b-383f15490d42 8be94c81-a21842f5-bf1b-383f15490d42 8be94c81-a218-42f5bf1b-383f15490d42 8be94c81-a218-42f5-bf1b383f15490d42 8be94c81a21842f5-bf1b-383f15490d42 8be94c81-a21842f5bf1b-383f15490d42 8be94c81-a218-42f5bf1b383f15490d42 8be94c81a218-42f5bf1b-383f15490d42 8be94c81a218-42f5-bf1b383f15490d42 8be94c81-a21842f5-bf1b383f15490d42 // 1000 valid guids! 4084e7b0-aa01-4db2-b061-487df4ec66ea a0fdf64b-7f81-46a4-975f-4ef3ca36e247 1289e5e8-3df7-49b3-9d5e-5983bc8d0d5d 7b28c015-2c75-4c66-8842-e4af08b6ad99 5cbec6f6-5371-4ca2-bd29-4a1b1146925f 90f86100-0a73-4c7a-a4f5-10a442c66daa eb9b720f-549d-4a05-ba88-5400d597bff5 c0a00339-0d7b-45ff-90b9-401a5e6bf365 e8e0b71d-520e-4785-bc24-2fe581de782d c8722e1e-9296-496a-bdde-214e4a64c1a2 dde2dd1e-dcac-4162-8d9a-73e54e24923e 883ca836-0ffb-48cb-b9bc-34496c3df9da 1804a071-1516-4caf-a710-51bb00017eeb 69137ca3-66ae-42a4-a95f-09f819a8794b fdef824a-7431-42b5-a8a1-c6c5e84fd796 17efb580-c4de-434b-962f-5a21d9ea9179 8f03174a-5242-4ed1-93aa-b47c4876c850 019d0b27-b711-4a05-8433-cd92281d1a90 e74e5e66-1910-42b7-bf82-db0e889e2b93 dba1a2bc-0d74-4b2c-af54-26988c7275cd 0a404fe6-030a-4e07-8978-c511ca823ff0 0717a9a3-b258-4099-a3b8-058e4ce450fb 95a15e77-bd4f-4b51-b3ed-bf6977a5988b 194b9e45-68f0-40ce-acb4-ef4b82f02455 95c49e1e-0e5e-4ff9-84aa-5c43ea2618f6 0236c4e1-7baf-4734-a288-6f0f73ff6237 c20f7f96-d697-4f8b-8ba4-8cacbe811448 7bcf894f-31d6-4e07-883f-8d507e9ba28b d15a5f2c-6a2f-47a5-8e42-2d83f9672fab c6daac89-a864-4fe6-9e75-c6c63402fa3a e12ab678-54a9-4281-be21-3e8e145e1c3b 21f96980-b509-4c7f-bc79-6fbaf6a42e48 3c31de96-2cf1-4e5b-85fa-018ea8aba8c7 63deb79e-562a-4f2b-a42d-bcb23b13b30d 6f496380-73cf-4a73-8cbb-7d47a7c45b95 a9bf3d23-517e-4d87-81b5-08afca4e5bfd 0c9d13e3-1520-48c7-a4ee-51e549f9ef2e 27998107-82a0-4da5-83c7-15cfcac3eea4 375417e2-dc2f-404c-92f4-4669488baa7b 518a51a0-5239-4f61-8494-a56ba361efaa cfa099dc-9180-4e9c-ad84-8ec922514a0c 8297f3f2-cab9-4095-9efa-b65462f6ac0a 9e7e7baa-049a-4991-88b7-81e56ba8a074 302f2028-79ad-44cf-ab90-d6cc98f95794 540b48d6-8403-4609-ad31-3755e142cb3c d6906c2e-2051-4b3e-9204-154f1153007f 2dc64b09-64c9-452f-ab80-86dc61d70c75 6c0130d6-3533-41a0-97fb-0c9548357a2b 2705ab2a-1fe5-4ac0-a16d-9b2a2548a039 3de04c39-8077-4108-9e92-e7f26f9c3cf0 833459a6-dae5-4b92-9db2-6898f5d4c1d3 bd79b683-0e75-42bb-a0fc-70e18ae007c7 9fd56051-e366-4d80-ac1c-9025683e6995 a53bab87-722e-4d59-a938-c40cafddfe0f 24a2a50e-9e5c-4277-94ab-70b5b7429ec9 3847b84c-0ddc-4b9b-8063-71e28863ce87 44ff577f-7569-4a0e-9daa-8548d6160e93 5fd0743e-b677-43c8-97d9-fdcaa3a04f16 3f10bfeb-faeb-4c1b-94b0-682433f00a00 8aaa71aa-0912-4e3e-9c62-45ed1a06b107 f35624d2-66cd-4a73-b6fd-26694dbdd7fb 879a9375-d2c0-438a-ba54-a09995b1d628 e4909bfa-3258-4840-99dc-81db26bc689b b2b9b9b8-a030-4aba-8a70-b88b4927695b 16e0ba36-6ccb-445f-9305-359e63b0068f 66757435-6721-421a-bc4e-ce9190e4c71c fc6011fb-d101-4fa2-9699-0fe775ebba8f 3d756696-f5d5-40de-af76-21e57685172c 7b57bcdb-33c9-4447-8823-23ff549e9009 cc7cde4e-b658-4a35-9c8c-80337874d24e ccf4a257-f46e-4803-b89f-5ad4954ba171 e7f52c4f-efad-4d97-a497-1b318a25cce3 dcbdec62-02da-4c0a-ac5f-31d4981dace5 1c2b499d-7059-4678-bb85-09a3efb20204 daf8a36e-fbc7-4f62-98e7-8dde731fbbe1 7957a180-27bd-4fcc-b059-1259654f6477 dfaa8681-2b39-4225-b7be-b6776883d175 3aa2173e-7f3b-43ad-b248-c76f7ab2a103 4f4acff2-1c3b-469e-80f8-8498262cd3e9 7a89538c-5dcd-4b48-8d31-f3b796117993 ddb628df-67f5-4bda-93e3-d2c539fbad34 11b84099-44fb-4652-b4cd-1cba72b5dd28 362fe9af-c3ee-4809-ac84-867f60aeb594 878969a5-4401-48e1-972a-8752554e4a3e 3a97e029-a966-47cb-827c-e1995d7622e6 74e4b5c2-f9d3-4249-8433-c1e6ba0c2b01 6d25aec5-58c3-453e-8ae4-c6bb13a43761 b2bd876c-dfec-4923-8a6c-a5b861197d92 21f746e9-ce3f-47ae-843b-55b3ec6764d0 55259729-df02-48dd-97bb-37301fbb91fe a4c114ab-3c2f-44ea-8f1a-877e17fdbd6d 476876e0-565a-40d9-84fc-d8c249c7d162 e3ad1600-7285-43c3-8aa1-a400e918036e 76bafeec-d822-4d10-b7d9-51c8ced291af c05dbf36-4c09-4312-8354-cf1b90b1e8e5 708c8010-41fa-4039-a310-c12c10591c4f 5fa0f667-aa74-4c70-9f3b-7cfcd80d17ad 957b2802-0782-4aa4-a6e7-72b372d9f49f d19438d6-e099-48d2-8cd3-0c5c23a0a2f1 4a532bdd-cbab-44b7-af37-6ca134143ddd 90c5d8a3-20c1-4d08-b1f0-2885b0d0ca55 f2a22750-fc21-4abf-a34f-532614db0007 aa45ace2-0738-47a2-b8ca-34e932324455 2c60625a-c718-452f-bba7-002e0da29618 7670013a-4590-4413-86dc-de7ba6190646 74e7679a-bc8c-442c-8d52-4bde70d7a12c 93ecee39-6cf5-4cd2-a7cb-1166224261b4 e5cf314e-479c-47bb-b488-72565ab8882e 2faa3e3e-f147-4a21-92b5-dd61c586bb90 844c84ca-7817-4def-a108-35102a75947a 30011503-2902-4d56-b1eb-f9243c804566 0c98daa4-37ea-463c-a95c-37a5057c2cbe 15febf25-5ac8-40f4-865c-5fbd169db307 8fd0379b-b9f6-4c7c-88f4-03d2c27fb919 cf81657d-47b4-4750-a9a0-151f15de98ae fcc80b8d-c90a-4d0c-aeb9-939c9d337b43 80754389-9147-48f3-835b-f93da3466ac1 9edee65b-e5fb-4adf-b066-7c9d5a1f4440 3771b930-6daf-4b9b-8867-b60dfdc548d6 b12597f5-f364-4eef-9c01-f5a7a198ba98 a844470a-e13c-4f8c-a03e-eb06e80cff53 44596ca4-c6f8-4020-ae5c-7897d8cb959f 10dd362b-51b9-4921-bb3a-ccc8eb50bc48 792846d5-542c-4ff2-b987-c27a4ccdb8f6 61381721-d42c-43dd-a060-c4dec9e7d25b a5e66527-d41d-4f1f-a65d-840b0a4c492e 92960789-d5e6-4dde-93ac-4945b516c2fc 0b234b37-829a-4b60-9247-47cff40e54ca 64567d47-7423-4df1-a713-cde9477602fe fe98874d-f63c-4f1f-b92c-0317d15b6803 ff3d7d8e-fc2f-4013-9fc8-be8e3c2b44b0 0aa3f168-10dd-46b0-b6c3-ce731eb80c9f 9a15c7d8-6ce0-4553-b42c-c06cefe4fba1 9eab172a-b806-4226-9660-6b0016755135 c14cf136-ef6b-4ca7-8b24-6955ec72bcfc e7f8cf59-488b-4e66-9019-4f16a733d142 11b4292b-1df9-4f9b-a7ef-b83c0aa007be 88dd3c8a-0306-4b03-898b-dc8a301cc0f4 eecb8025-edd3-4128-896e-4aed7cfe92c9 27ab1392-ec3c-4002-9099-cdf81a005e94 a0bf88f6-3e4b-48db-a8a0-2ea00c12401d 6b974484-120c-4133-bbc6-c7a71751fcaa 0733a919-96da-4d23-9416-869ecf712ef8 0848dae8-e6f9-4d32-a51f-1b82152de87a 4a3055b5-3930-4586-8731-dae9b8a73948 849bc80a-c58b-4fff-99ca-e95b214bb481 449ef29d-3dbb-4259-96d7-496c55b6023d 7ca7707c-b844-450e-8c3d-7d425cf3b735 2abc9178-5808-48d8-9895-7c4537e86ba2 390ac91f-3278-4d30-9f2e-4584a376bc8b fc4c25e8-d06c-4fa1-ab66-3c8bfb3b7d50 72b56806-466b-40c0-8b23-0270943762ba c2db2a03-09c5-489e-bd13-3238619063e6 519cd5f4-f7a8-4d74-a6c8-c9638589dc99 6802fc65-50fc-4db6-8616-0490a3f00b14 761ca6ca-0ca6-476a-8373-62c96db3e9f4 8bf6ebe6-8caa-4d69-acbf-391792ce9e9e 70fdb21d-17c6-49b8-9aae-de14b1f5239d 20d269ae-c6c1-4236-ad94-e62f01db1093 edce045d-6b55-44c8-9a2b-b0dfdbf29fcc 4c7ababc-c2a0-4eb2-b6ac-eedd53e014ca 656946c4-652e-45e3-ba73-13ca1cdfca07 6d68ba65-874f-4c7b-98ce-6835493da0ff 32d512b6-22f8-41ec-93eb-b1065663d90c 78978a75-cc70-424f-b342-c2b35e8f75b1 40148fda-a9b3-4d3e-96b3-f8e254f1da7e 2662a1e9-556c-4699-b749-579c6c35c13e a024b618-d94d-4bca-93e9-92439342d438 07c7b9d3-8e53-488a-a476-dfb5db938514 bbe3b369-51be-422d-93d8-f940e8900792 a62cfdb5-1434-4bc2-8379-399485be2ea2 6616e70f-c79b-4a1b-94dc-aea57677c12b 0dbaf26d-89c5-42b1-a339-77766bd2945f 3d1c17c5-cb83-4d37-8585-fa42e4a26785 971ca5a8-ad44-43c9-b095-44b6f7086a5a 3b0eb2b8-d008-47bf-827a-78f6b66072ad aac6b3f9-d1c1-4e82-a8c7-409f00f8df1a bf675a51-6069-49b1-8aaf-ea6d3cf83ae2 1877ac17-3f78-45a1-8210-d5186a391b84 1ee1e430-498a-42d4-bbf6-e96df254e8b8 bd9ea41e-8c76-46cc-9096-38564865eeb1 f050e4bf-2d4f-42c8-8cc4-4afdac416246 aa9de2c3-80a5-4dfa-a377-65c3de004f09 30f623b4-d2cd-4ef4-b0de-33593c5b6d88 c82a8f59-8aa6-4dfc-bb40-5592ccb15434 564fce05-1866-47df-9b2e-1eb8a0f01690 25a87f44-6c67-47c7-9153-a482e42e40f4 b6372579-eade-47e1-a316-746d2788e3cf 0e36bac6-1a56-498b-870e-3f57d0732991 4aa95011-3b4e-4548-8055-f3159361066c 304a31fb-3077-4384-a1ed-55984ab1ca6d 4e60f310-b7ac-4f08-8ba0-5c96333b676c e5dbf876-8200-4f0f-aaf8-b8daec339cbb 96061509-42ba-4002-ac7a-062e422ce60b 9349f816-4f92-4486-8096-b8a59dc6db91 38581650-8919-4c2d-81bb-f068289f83de d745dcf0-b43a-40f5-a334-3f0d9471cd88 4340769d-bbca-418c-af97-d5bbc638512b 2bc85046-d30e-42e0-8bbf-cf1723b44a85 0da4ca44-2db2-428f-a9fa-431dbaca6cce 3592591a-130f-417b-89ef-6ed3d64ebd14 4de557da-62e0-4fb2-b574-8a6a0073bd06 ea7ff504-119f-4da8-b950-3f46cf022abb c98db7d5-555d-40b9-b4f2-730aab99337a a9208d3f-e23d-41d8-b32d-3d4f76151149 2af6adac-c1e7-423c-9ad6-297009f752f1 8baece71-c3bf-4f81-be67-95f4ac711381 1baf4ecb-c81a-467e-892a-0b5232cfe8f3 f778b5ba-6cce-43f1-8228-548d4d01f616 f845e617-0864-414f-942f-84377547fdef 97ad326e-e687-45b6-83e0-e9d91f82222d bddc653b-c456-4166-876b-45591126d3a0 50307e84-458d-44bc-97f8-290f1831d9b3 1ddbdf70-1430-4897-8792-5961578740d7 718290dc-d960-4bd2-a81b-ad7567331583 1ee9b672-3762-4e54-9a66-fb5518adced5 38df9de3-afe4-46a7-ba86-519df15b9555 e65050bd-8d09-40c2-876b-abc0deee6dba c3259d99-75cf-4cd7-aaa5-4c203941386b 49f2c244-cbb7-473b-a17a-f9152ad8c0a2 a04a629c-959f-4fe9-b273-8003f35638ee 6dacfac9-5a8d-49ff-a387-de296351fad0 fefe9ec0-5000-4194-88d5-7bca1b56c0a3 c3c8d88a-bedf-4fd3-9fcc-9d4be9560a7b 409216c4-ed25-4cf7-8005-94c67f7fab2b 5a737b28-6119-43ae-a7ba-0ff9af92e5a9 c9aefa37-2b3c-438e-aaf1-08ea11a54fa3 153c1277-bd1f-4182-86e8-393db2d7f795 82a95f0f-fe07-479e-9f87-bff434e945de 79e8c677-0fde-4c4d-b785-2e6dbf56890d 43ecaeed-6370-4ad2-9089-50b1a3be4546 abac7409-92d9-4af6-9195-2c9b5cd82d3b 7776445b-d4f5-45a8-aeaa-4d96955e4a1f 5ab141ae-b1f0-41b7-a960-b3ec17ba49b7 cca1cbc6-919d-4a6f-9eca-45f39e72ff4d b073c083-ae6d-447f-a3b4-c6961523691f fba885d1-4dfc-4dcb-b56b-c14c85956dd1 b6ffb3f6-cf6c-4c62-8e78-513158d60e37 9f036a62-5388-42b6-aa58-e62b8ad5f446 e50d9db7-0356-4077-a419-028ce9c88365 bcc93ab4-7880-41e6-85b4-b2427924faa2 33ea06ad-0df9-4e43-b5f5-38dd7e2739dc 039d92f3-8d7b-4712-88c9-260b1a72b34e e882eefb-d699-4cfe-8c46-ab1967351546 7601dffa-a5da-431e-aa40-c1c6cd319dc1 b0cebc3f-cca2-459b-a381-c5c2be3987a1 5269df26-729a-4a81-b949-59efd7ace0da e7cc071d-5eaa-4d65-bb32-ba3e12f1a2da 848048a7-d1f4-4ef6-b9a7-97f3aa067712 971dbf53-8368-442b-a8a6-deaf87fbae1c f6428cac-19ab-47d9-8d9d-dbcb41bb0584 beab28f0-f5db-4a67-87ed-624594987c8f ec11b5d3-9f2d-47d3-ace1-b9b4c4d43c5c 5d398999-5a94-4c0c-8ea2-509b09adeadb 955256dd-b0df-4694-9219-ed0eadf280fc 083adff2-a58d-435f-8af4-a45b7d3add01 869f31e7-ec8e-4a66-b492-84337713942e 33486606-77c0-4bba-aa56-3ddeab9ce880 21e1360a-6289-4ac0-b3c3-c9cf2997bc3c 2cf632b8-16d6-4104-a107-aefd666a36ef bcead47e-406c-456c-8f6a-15e08d0c1e8d 8c75e573-d9e7-4089-97b8-cd50b833f8a3 0f51b5ed-a28e-45c7-819f-91f4645a533f bba73b9f-8890-4602-ad18-f6023338482e 0d9262ee-38e2-4e01-947f-276d9f3eabff 2dd7db0e-08e7-4d73-b17d-0e9957ba2a05 dce4e885-fe2d-4773-bfdd-5e31895d2e5d 7778799b-c1c5-44c0-a918-3aac57f7e68f e8a296e1-e8f2-4098-8f0c-c277d53e216c 4f492786-0895-44a6-b78a-cbbdca2f0a6f 1b908f38-0d20-4b93-acfd-d364f5ab21bc 32c4b330-6c6d-4b1e-9d85-3b6b5c2fded9 7eda1f4d-8d9e-4704-94a3-d6d48244ce18 0cbee574-f0dc-47e9-a7e7-598b555a9671 3e57bb03-4d2e-4d85-b998-2470162cdbda e11986a5-50e4-4b3a-a380-dcee4aa40e25 3efeefbb-f591-4526-925b-3bbc97b7d1c6 fff73fda-c927-4e72-b5c2-84208511e2b2 c8799e12-3dcf-4625-b1ce-aef3f2cf791e d796e56b-37e3-4d8c-a778-5cd92f897eed 8af56c70-c969-444f-aacc-16324ad72747 7e658a6b-7757-441b-8df8-5e9a4dd53094 e1a098d9-5b69-4e27-9906-995b10ec681e aa115fc6-4d9b-4f79-8fec-ffa7939e45de 0af393a8-48be-4604-868f-d829abf2d9f8 8ea340c3-fdd4-4bc5-ac50-1bd4ecc1f34c 5725151e-3676-43c7-8c8b-30b480a46bb8 0d586d85-5490-47f1-b907-9c90b7f50d3a 4a773c8c-6cff-4b6e-af30-0bab370033a5 a39d5189-e276-4121-8723-23434b9ab28a b9f49d10-e72b-40d4-9222-daf5e0ceed1e dee50b4f-ae14-4dca-b305-7845bba2e78b e2f26566-ceeb-4ac5-8a76-101d823d84b6 10ae5ffd-391e-4741-a60d-092bad9d1b4b bbb24abf-5871-420d-9547-40ee75fd2114 79508577-9e21-4105-895c-ba8bc421970b f4585f4e-954a-49b2-873b-8acf518c402e f17747f0-3940-4e9c-9458-dfb63c49e512 e8c57999-beef-4498-9881-d14457d5feb6 5f9ae5e7-f0c2-4339-9b96-04b6b32a6759 99255120-a2fe-4d57-b990-ba53ddbca0cc 56c29aa0-4bcf-4675-bf58-b4e595a22502 8e4e378b-91e9-4c9b-a45c-232755101989 9d03ae0c-0906-4039-a830-3ca62cb651e2 023ff369-8f10-48a3-97b3-8a114831e6e8 60c96d80-7cec-47d4-9a04-9a201ca41174 5c850e3f-d9aa-484a-b7ea-01b6f48482d4 433a4be6-0188-4b1e-90e4-53ef1b5e5f9e 5e22b539-9337-4b25-af01-4de48dda34cc 1af4a927-24cc-4222-a192-79d0cec335ef 75946691-f9de-432d-88bd-f150ae367fa2 0b0ad044-5362-4194-a528-eddef8a0f1c8 05f40784-1174-4ab2-b930-1809ac4eb4da 1be05e64-7312-4cd3-bb0c-bafec95effc1 690391c0-1cda-46f7-a7b1-07abf05dcc77 b0c93616-3f1b-4a0c-a8c1-bf15cee14035 483efbaf-b900-49d7-82a6-489298e8a2ce 4b9d1ce1-4d51-4912-9a11-f304bfbd5fc8 4803cc40-76dc-4ff8-b1c0-a1632403ab90 972f3b13-8f41-4aaf-987e-90792b193b3d d53160a3-5ff8-434e-ad06-e5fa03d56683 6bef2f23-0fe4-4a54-980a-0fec1d831496 9a8c6a80-4c27-427b-94c3-90e5946c8215 fd277ae1-e5cb-475b-b2ab-0f4e69041f27 eca20068-2e5b-4d00-bc6e-a5f9c9a4e703 34b064a0-e9de-460a-975c-cc20c960d4c6 0df54721-5cbc-476b-8cc7-22d373eb264d ff27517c-bfea-4584-891b-8f45e35a4815 4ee817d3-4b98-4a59-bbd8-2ece4cbbdb2e 54a866d8-d187-47e3-a5f6-cd5e741555ef 74fbcebb-30ee-4486-b66b-b110297cdd03 b0761b26-5608-4582-8829-dfd4edf2e606 6b525235-09dc-4cd7-9504-a82bff59fa29 c914e7b0-c9b0-4d7d-8419-a4ff6ba1dbd6 0f642118-cfc2-4bf3-aa34-6dcdfbe0853b 517bdea7-04da-499e-9f55-6356f32cec20 087b1f19-db44-4ce6-8188-0dd7937c6532 850fae60-b4ce-4f58-8f14-b90c7b1065cf 9ecb90f0-03d5-44cc-b645-d69f7c099f19 909e3ff3-c6f1-4649-9d50-b230525e572b 031dbdb7-627b-4d4b-ae1d-3d4c616632d4 145bf271-8a99-405a-9b4d-4a914358bc61 78a1f5b5-32dd-4be2-986c-77a8bd35f8b2 5cc8af01-df44-4cc8-85ea-35ca90ad321a 115ec270-0403-4443-9085-9be4ddb9e169 e9dad8a6-1a95-4dab-b3e7-31ae6f98c289 56e1c55b-1eff-4dbe-8a70-7f64f6fc863b 5953b905-41de-4341-b603-03046e8041d1 94f3e0b3-1a66-4ae4-b9e2-50b09004a8e8 f06ef56c-4630-4035-9960-062b9c2acd8c 0285552e-0f5f-4c07-9276-fed994486fe2 32b27d92-c390-4b79-90e0-696b73b8b8b3 6fa4192e-13e8-4b2f-8a71-d6c20c328014 1e084b2c-6d3c-49a6-8a63-bfbf1b6ccf86 83e41b90-ad41-4d74-bd4e-c116d4baf294 b45f6071-07e7-4826-b335-5f7f8d87119a 959d0e2f-5947-42ef-8e7a-a91886a057b2 f0820ea1-4709-4bcd-8d00-0111d1adc12c b4e8e1d0-8b00-4ab2-bba9-6481d0af3d76 0f1ec501-e894-41bb-a128-0f87f8170700 fb5b4bda-247a-4686-a9f1-b6d378e3b872 5039fe55-5566-4554-9678-98de4ea6f705 864f60aa-b089-49ca-8566-6597dbd0bfc8 2fa68fef-7f85-4dbf-8dce-27e6c12cf747 e43f1f46-a16b-4717-9a3e-98ea9d6be62e 05a7700c-e25f-4f0b-9100-f79bab5d276a e2917123-79ba-4512-bc69-f5bd3fdca215 9af71610-487b-4a2b-89b7-4fe30608b8e6 e5b9c512-41be-49c3-a5b1-ab53c3d1e944 57748ca6-db54-4896-b5a5-4e5b55ef960a 11f03cd7-d7b1-4005-82ed-ee6bdb814396 9a1e3c5d-499e-40bf-b57c-9faf2ec01fc5 e16474cb-4d4d-4523-bedd-bb7e11ed60a8 444cca09-1500-4cfa-844c-971c5f29c9e9 c3782e18-95ff-447f-b4b6-22c56b68e8fb 938318a1-e972-4587-9801-1af8a257f5ca a5a6c943-7a0a-47eb-b3ff-056c52bf475c e1af06d3-e378-40d4-9893-98eec71c4f8b 4ddae670-7ac1-49bd-a076-1ba675f3e61d ec985246-8fcd-4901-ad46-bd769824bb2b aa883a95-c50e-4ebf-9d7c-b1a59e3d8055 05f4ea05-64ff-4ed8-b52f-2622853139b1 8a836d65-2719-4b42-a2e7-7c5b78a8360a 9777bf90-644e-45b6-83a9-ca4bd1367a55 2aed246f-dd25-4ea0-8561-e78eb64e6918 f7c9e78f-a003-4d50-b9ed-fc4dd4aba204 c1241379-2ae6-44a9-9ed4-d77efd419b4b ffaea313-687e-41b2-b9f5-b4ad133d9bd5 f4f53b20-a00c-4f4a-bc68-fc7d12083009 13c0a713-c53d-4b8e-ab3e-1cc8bacba078 9cf44895-fa72-4502-a513-f662b0f565a9 4e8bea30-d34b-429a-87b0-21379214eba2 316aaf62-42a8-47d7-a305-5bc5350b9c9b 618bde49-2b64-4b7a-b710-bd60408e5f1d 6937864e-8769-4535-8d2f-772e519a4055 ae0a215a-11f0-4ca2-8025-e5227ed6dc2b 54434578-45bc-4847-b246-ff9f39fefcef 1f9b51cc-9999-49d3-af21-472a0a3ab47d d445f6cf-62e8-456b-aec1-c47839fa7a2a beeae885-f397-4d73-835d-3313eb051b62 48c655da-f25a-46f0-aa9e-5bd685db5320 fe564430-5a57-4b69-90b8-9e4c70df367c 474128a1-6c7d-43bd-8ac2-f10a3a226f86 ffdd8da1-6a6d-42cb-adb9-9eb80ff4cb37 b0f5d827-4769-4e2b-8592-d8e948a25638 d956543e-14b7-4863-b665-e1455b5bd08a 0caca074-2899-4ed2-9aca-4a465d71c9d0 78353ed7-c90f-434d-8112-0b50536ce007 084b0087-5b3b-4395-b594-64e3ad29509d 8db3bf7e-9056-4083-9187-079e8fdd3028 953779d6-cbc8-4ba9-875d-dd296f34f176 c2262877-abad-4e44-9184-3473c419aa49 69f3730f-bf50-424e-a227-9603652ddcb4 88427768-5df0-4b1d-bde2-8d9beccb21db c31b0d2b-a934-4738-be6c-866bee114e1f f86e2110-40f4-4d83-acf6-621ad5894cb2 7589e452-db91-4049-9f96-8a80bba9ccb9 76b7b6ed-5964-4dae-822f-8e94a8f1acc5 ab637c21-331b-4a39-ad0b-8b1de1629f7b 2b5f7440-0628-41a6-9c93-8dbede0bdfc2 a045982b-6fdd-4029-a632-1f72d6873170 8fe3db5f-bc75-40a6-aae7-7a69ec08e808 656f6364-5d9d-4c33-9380-31347e1f8086 0bcf45cc-a7d3-46bb-b430-2497b3598468 09bb05ba-9075-4dae-9f3f-7ea7e8b2399d 972ceb3d-6234-410f-9d14-3e8197f355ce 7e22bc44-ef9b-46a9-952a-38a2c16eee8d cce9f9a0-ac9a-4bac-8e4d-78b171be9d23 e671d073-04d4-4ff3-ba9f-1558a6ab2353 29d377e6-9ce5-4bed-bc4a-34caf0a4f25a 42d8d520-d5dc-4c6d-8df6-380b645cd320 02b6f40a-aad5-4848-9411-b5239fc0ec0b 94359832-bb17-463e-901c-349a0ca45f61 4ef25cac-16fe-43cc-ae80-0936507bde09 ae229127-8710-4bf0-aee2-23680a7ebabb 060a8378-5105-4c7d-81fc-7f47ae137ce2 562fcae9-e213-4867-bb4a-e7dca01af4f3 e8253f72-15b5-40fa-9367-85a24d99e64a ebb25a75-b6ad-4102-9fbf-232396020427 6f0a73df-73e2-47f9-b05f-6691733c65cf c8161c54-f55f-4518-876e-c71f3572dcf8 26a95369-1fc8-4642-a977-a800627a93b4 aea56328-3791-488e-ac6f-52a65de736d5 7a89265d-1e66-4237-8501-f22e614f4b5f 0f2f7863-f551-4040-95de-3798f1024a2f a3b6279a-b6e2-422e-902d-99a46a30e47f 425407f3-a766-45f9-a4c6-3439971ab7d7 fc65c0ee-ebe1-4397-a3c6-57bd3e059020 7b2c0b38-2a68-4261-a39e-cc7cb6b29dc0 e269c020-e0f1-469d-b05f-a44bca7e0b26 b1da672e-1b1f-4fc5-93e9-06ab639f428d 6d9cae0a-6ed3-4480-8655-b64393a35e32 68005a3c-b633-4ad3-ab72-aadaba1777d5 df311d1c-2940-422e-a965-7fc663e65e5e e7315e74-a1ad-4aa0-8f0a-cd1ed37817ed 581af598-20df-40fb-b3ab-86eaa7b6b287 dc786fed-02b2-4059-8984-c68eee64f262 53f3e1c1-2f62-487a-b2fe-0fbfbf6c197a 5dd68c2e-faaa-4860-9e56-b99d2aa40ae0 4537bff0-aa2e-4016-b5f1-c6291d5b8d33 85a77ad9-31a1-4818-8088-4cd6c24f1a33 5e543cf4-61db-45f5-9522-43db76d67ff0 008252f1-5dcf-4988-85da-4746325f9621 2c34bab4-c5c4-4688-9df4-85c33f9d480a 4cc7bd15-b2a1-49b9-8c57-9ac85118ea5f 37def06d-3958-4f6b-9c2d-edb5ae00327e 0d2557e1-b4c6-411c-99db-5748f4fa023a b384f993-d9b4-4afe-b4f3-ebfdd79ea2c2 47e534df-6815-4974-bafa-9381c1a8112f fc94c2e0-6d49-40b5-b965-cdaef11ddb1d 789fd9dd-d794-4b0c-aee5-e93927cd0321 c14d5d60-2a1e-4071-823a-ff4e39f16dec 2bb39e1c-521c-462d-8303-c386b4211e8d cea545e5-6ba1-44e5-b6aa-dd2be4dafb5f a21f3c8e-158f-473a-b602-d7281afd8454 20bc39ba-2423-4766-a32f-8a2d6802f29e fc334ec5-03a7-42f6-8898-e017d9948dc4 45524b09-9bec-4cb5-81ac-b487bc799fd4 36d9504e-2b0b-4efa-aaaa-23f69bf122d7 dddc50f4-cff0-499a-a194-38d860302e67 2494b8cb-0dd3-4d58-9a3f-7abb48cf2a64 fa49a8d8-b66a-41da-b1bb-afc2431f51c6 ffbf281a-8a80-44d0-8cb6-7cda93cba5c9 c9af8452-6c8f-433c-844b-2ece73da2020 e3be93f6-e3a2-438a-a0e4-a736b234b9e5 c285335a-3d78-47fb-a22a-81fd87ec2974 fdbb3a3c-139f-4937-9824-4b75f6741a39 55bdcbfe-4529-4f24-ae14-4f010088c736 58a9eb8e-e7b0-4e56-90ac-6ff1a9f2ab1c 161d485d-b432-4b9f-9108-b7a032551c4b 70e8f2c0-b2eb-4ea8-a55f-82f9c81e0f3e cdbe2e01-205a-404f-9f28-4a53a2fbf19e 083854b2-6c23-4746-90a1-218f51538548 04886da1-952d-4db2-909e-9f629400ff9b 87aef2fc-8169-443c-b313-22bbf8907de3 a96d1f4c-892a-449c-b297-74189fa44c60 65782cff-15b3-4c21-b69e-f9c5ffbfa872 e9cc4fd7-0a48-4e62-afb0-cb44e82cb434 a43ddd16-43e3-4198-8066-e7292e4853a5 a78abc60-1270-4dde-950e-901ae427ebea 6f02cd73-e611-419c-acc2-cf0a8ac713e0 daaf239c-9bc7-4117-bb21-f9a5334d9ed6 d09cb141-7c69-43a8-9e3d-ccda6d4a50eb bb4f152b-286e-4ca7-8558-8d07b76ada0c 430f6006-3e35-4ace-8570-5afbc19af154 d2c80887-5eb4-47ee-a5ce-5ab36eade0a2 67235d6c-57f9-42c9-9478-ea7d12650946 67c6b3d6-5c11-446a-8a0c-fd11ed13222f 5e6b0151-5ff1-41d8-9b0e-c86b4c9c5e4b 7a25bad3-8ddf-4976-97c6-b2a16d4d6aaa 4445a5a5-98e6-4709-b38a-246c28af06aa 1f7639d0-5ab7-4464-bc74-5806e1f403ee 04c92d13-56c9-466f-a100-4d80f58c45cf 293dc960-2760-4a9a-8c9e-db421e67d1ed 75bf04df-f34e-4da3-89fd-a1ce1d87cf63 861784ca-c9fb-4d20-a54c-8d03c0798569 2e40950f-423a-4f55-9bba-682874483c97 c9106d83-23e4-4b88-b104-ff15b720cb9c d20c5185-02f7-4d52-beb7-8f5872d0aab0 324deda9-ae76-4d35-90fb-c496be9938f2 76cfadad-a467-4003-b678-cdef4d274cb0 e6c26aa0-ec29-48bd-8b6a-fd390b3fa3a2 c0b5fa28-e038-49eb-be34-c3897c92e89f 9fbeac5e-a5f5-4db9-a326-80f41364b770 5a1773f7-f0e1-4a64-aadc-a70e27bea350 a70573a1-72d8-4a9a-90a1-257388ef8248 40ada666-49a5-4470-8c52-c0735eae70aa 38944177-3dad-496d-9acb-baef52e3a9c5 d423adaa-c7fa-42be-a97c-11e41923c9c4 1ac9ea14-54e8-4ff2-97a0-cf94c2ebf503 c8ea32fd-9a59-44bd-bc95-fb784d99f488 78f0166f-a79a-400a-a33d-8d8a8c9e546f 5bc21793-f6d4-4efb-b66e-e69540a7478b 9472f23c-7019-46d9-8f33-a46f013c4688 f0087726-424e-4e5c-bf3b-6689db71f64c 74b1b1c7-2643-43f1-ad35-5a0e789c1e38 983c2172-3295-49ec-bfc6-5e04351b47f5 f02096d3-9d06-49d4-84d2-20f20876073e ef65aa95-af38-4f2c-8967-74ed0233c70c 1c35fb91-ad5c-4074-82cf-2804c7a84634 5c1d8abf-43a5-4f43-9b84-a22832ec08c9 e843dd44-1549-4c0a-a7f4-9086ba3bc05c 3dd06e17-d229-4443-9c93-4e369cce85fd c70b0a9d-c7e0-4024-8cfb-77259956cb35 1c9083f9-3489-4fe5-a63a-04388f5029f3 f42cdd27-95f3-4a19-ad3b-51ee6080f8ef a1476364-5a8b-4ffc-8145-e70551d9bd74 6e408c58-8ea3-4313-9c6b-6a294753c68b 9469ad63-9a47-45a5-af0a-0d85d08059c7 f6e855c0-5cb2-439e-aa7a-b5cc56e6be3b 760e0ef2-3368-4ff6-8977-3fdb86b670c9 a59ab2f4-2192-4418-bb47-86589d8bfb3c 6d6cc225-4999-4f7a-8c4d-ea6089353e0f bc4afb5d-661e-4a70-beef-5ab509ec79bc bf032590-7cee-432f-929c-148698c0e2f4 f421bfef-8d59-4251-ab70-f6a6da4665b9 6f3fb9df-b905-4314-9052-2b46a317d3f7 01c2464c-4de9-44d9-930c-af4aad8790da 157cbf11-549e-4745-a7ce-1a08c8e2ecdb b58c7eaa-2e34-4b6d-842a-be30bb42e13d acaab9f4-fb7d-49e3-a37d-937f78af998c c15de3ca-0eed-49b4-9f14-ed1b2e2b34c0 ca4b7a08-ffee-492e-aa5b-660253bdc3dc 1cd3fbc5-9cad-4a78-938e-12d01b89215f b22d9767-766e-4826-be05-cbdcb96eb354 b0a680bb-4a16-4283-8776-d967fb8cc91a 26fd7d55-f4ee-4300-b87e-aef87fa9668b 2ea2736a-f3b7-409c-b58d-125c7079dac1 2f9c2f01-c1c6-4d59-ad8f-215a22e6bfa4 185ecc91-c27a-41d2-ae82-a97c3b2f3f0a e8d0c2f5-5174-4103-877c-95573a72f2b7 762107a9-44df-42e2-a545-f5a0d620cb40 6675029b-d3b3-4277-9a12-a179d28d8b40 dabffd24-cc11-4dc2-b36f-f7245f1ba243 724aeec3-fe27-491f-a7dd-c53e175fcfbb 024a338b-ef2b-45bd-a438-fbbb70b06c75 ba4588e6-fba3-4eb5-aa9a-933ead29ad9a 024517b1-9f83-457b-bc55-6aed3c01596a d73083f7-8e8f-422e-bcec-32ee048d5a8e 721bb9b5-15d2-439e-93d3-b68fdc98e03d ea6b6795-26a2-48e6-b580-b39da87d6eb9 b44ce49e-ce01-4346-90e2-6063cd465745 fe675aeb-20cd-4b43-8e6e-8706f4a245eb ce7a4276-0144-42c4-91bc-6d040ad0cf1d ae16ecd4-9406-463c-a1bb-b9ecca4883f1 53b996ab-c783-467e-bb5a-e233ab3413a8 e3a25178-1e21-4467-84c9-536e073b3013 94ad7e50-326b-4c4e-a51f-ccd846e8a46f be54bcab-2f80-4e64-84f2-1cade041cd6e 7f22440b-b991-440d-97b1-a6f8178c37fa 650ad75b-e03f-4062-af02-d8628b50507f 0363e70b-485c-4f5e-ae81-290b76b282af 2334201a-444a-43b6-9bc8-fe9d52258f50 1d67c44f-91b8-4995-a360-7e17bf36a432 7788c8df-e152-4042-8eef-337ea09ca018 1d0cd4b5-c570-49f9-b22d-be8c069e56a4 5b8b6fac-8b6c-4ebc-acbb-4c2ef445e4a5 b81c365d-467e-45ae-b7e1-81ceb0d57892 e784f8d6-1f1e-4094-88f7-41d3a30a95da 51dbc4ea-cffc-4a07-883a-e106b63a1e35 32409617-764e-4c90-b99b-fe1a6a403984 8c45ea1f-1949-48de-891e-84ecf32e6096 a9945772-2676-4433-9ff0-2269a7f40286 61ae6c50-7457-4cad-b9da-a6ce7b12e328 00d7493a-487e-4e75-8915-9bb15fc4b985 58e2302f-c795-4daa-938d-bf826af4bc40 72416aea-88d9-4a64-a706-f4312fea1efe 8057aad3-6394-477c-a68b-6bd27f9140a3 dff7d3c6-745f-430e-bcb1-32e3714107c0 7c357707-2554-4c16-825c-b0cbcf80192e e493b7f2-fb0d-4c4c-8a97-1f5d43d6e143 3031de87-e56d-4b11-8bb2-2f8e58e51c40 c035f59e-884a-49e0-9276-b72d33dfbf93 1700f0c5-2f94-45ea-9c1b-bd77fb3a7c03 48a095a3-87a7-436e-998d-34fa8c671275 725faab6-d2a0-484b-855b-f8f73998852c a72d976c-4ff4-4867-be1b-cdc22cad0238 60309a66-cc33-4bf0-9978-9fe7d616447e f7e851fe-21e0-468c-ab4e-37fa7eb05210 88b18417-f70b-4cd9-a06a-c5d5a1c01c7c 210801a3-fbb8-4f8d-a5ca-84cb202761ed 673f2541-ef25-4de7-ab4e-f2af6c6f5ed0 e49f1273-2ec0-4272-84be-eae3f0b838be a88860e4-ffcf-4965-a5fb-8bcf7af49a29 2b2cf385-0bd3-491e-a870-f2dbfd0776f8 04143d98-893d-4772-b2e5-fcf5d1c0afc2 4385cb68-f486-496b-ae86-317c6a5d7157 9aacdc50-68d9-46a6-82e8-d9f68556a643 04713e33-5f9b-45fc-8dd6-23d20eb0b593 d8693db1-2d78-4e94-bcf7-44f05b8bc9ad ec46c286-0195-4f54-ad16-0de9c5e7b54b d9fb561a-9735-4fa7-8559-74e55b14127b caf42ac9-b081-4e45-9a9f-3c92c66a57a2 8416f203-0ee4-4ca6-902d-db091f86e746 b5b031c9-27be-4abc-ad57-ca9b5fac6c88 cf136cec-4c36-447a-9722-0d21a67b95b0 a439a98b-53f0-4df3-a1c0-cc51e5383183 9a88e67b-027a-467b-96b1-a209d132d32e 7fff6e9b-ecc6-41d0-a70f-13c1d98d4dcf 7aeb2160-6b4f-4ec8-8502-822b39caad2f f78d2dbc-b31b-4236-a98c-feb66d5f952f d07ef85f-9e13-43a7-ace8-f537467c925e c7afa51d-f7cb-4143-ad55-f40c3e845911 b028dfac-fde4-457b-9cc2-9d05d7918484 5463d1ae-4dee-4daa-a957-eef99a2c5de8 3c2ad4b2-52e4-4dff-b0b3-1fdb70b30b9a a081c308-7127-4b12-b24c-b830804ea5e1 5c52c1df-e795-48dd-a58a-b767a16b6c7a 2f7e7390-7cc8-4e30-91e5-c5e8b70753e9 ae099e75-26b5-4cba-aeda-02c593db4707 967f493d-6f5c-47ef-bf8f-0f4876218239 ecd53d5a-9899-40bd-b911-f3cf367507ed 43e6db7d-3252-495f-8e09-88220904e9fc 5beffa11-d89b-4ad2-868d-ebd8a59fd92d 148f595b-ed15-4122-a0e6-b727350488d6 c18df375-8c23-4c41-a78d-865936d181e5 fd0f67d5-6b68-4931-8fef-c56091ab1f3a a5d13f24-f1ce-4e3d-8ca8-1f1137b75be0 15631007-20c8-4aba-b3cc-236557ccc98e f2ab930f-72ba-4b76-9649-178f0be6696e 55a7e05c-9e6e-48a4-b34f-6be045dca43b 61affc95-7e83-4dd0-9ee2-ad27e15fcf35 56d3c677-d73a-4e5a-aa4a-1ef6f857d7e0 a6829638-c0e5-4171-8b90-f4774433d181 98f63dea-83b9-4e6c-a5c1-dc02783fe08d 02932daa-fc2f-4e7f-b6a7-5ebc74925907 e371099d-a06e-4609-b52f-ac3da4b4e4d1 02e2bb6c-2b66-49ea-94f1-32a37392d090 9bb7cb5b-2f38-4862-9c57-08749505b878 ca3f1fd8-402e-4d5e-9990-6a6525868b8c da6c7cb4-7ae9-4129-bd73-9ebac5b987ea c61d99aa-4961-45dc-9b43-2639f3a11da2 027887d0-ea03-4908-a2bf-6157dcbe69e7 07905b95-309b-4d5f-91ad-898ea134923a 4159586e-fc1b-44c8-81d7-59b9eb5c183f 584261cc-ad52-4319-a9c4-93c11f1291ff df3b0a11-f6bf-46b8-a562-df496df71fed 5db9c426-6152-4752-9b1a-9c425085575a cccd19f2-17c1-43a7-9b2a-a761a920d566 6c464c7d-0371-4d1c-8b8a-07066ed9508e b99972dd-710c-4b70-aff0-97846d22396c e65b75bd-233a-45cc-be29-7854237ee082 3b395edd-084f-4521-9fe0-d4459c73223d a849593e-da2a-48eb-9094-1a51c09e2c12 8435673a-3418-4340-8a57-be91e205fdcd 4024be04-02ff-4f95-89d6-8e35f1bc807d bbf306fd-e2c2-4e15-ada7-bfb18cba4e09 9edb42a2-9e65-4e4f-ae1e-e8fbd7ddb784 40983265-d609-406f-be23-c42423592b65 755dc147-06a8-4cc6-ab9b-a7d0279c4971 161ba2dc-8a4a-4f13-b274-e4f6428c7ef8 63d16770-306f-4b50-8580-6ef396eb7a54 4f84701a-0e99-40d9-ba6a-cde7052dd769 41529902-1de7-42ee-8f1f-9813aab979ba ec6c9c87-81a8-4603-88f6-b273e1b3c348 7700ee77-4044-4d42-b94d-94178b1308f5 e42f6f70-798e-46f5-b66d-ca7303d1591d 4922c965-6d04-49ac-a3b8-d98739157158 f046e34c-e817-46f1-934d-baad38409c65 394a4dce-2e64-455b-a117-36e8dae440ff 31e64f94-892d-48f4-ae76-5293ba3259f6 13354cf2-64fa-4965-a31d-0bdb27de9096 2010ddc1-564c-49d9-b10f-f8f68832a543 94f427f1-f195-4fa4-9612-b1902e610f5f 58fe5d3d-dfff-4a1b-8b20-3d6fc56e7ac7 daf24779-8956-4c3e-9510-b7bfce44ca52 c90ec513-5b0b-45f7-a44a-9841dfdaa4cf 4bb0adab-0169-4ed3-a246-cb48ca611882 213cee94-da2b-45f4-a27c-15555f072f18 86350979-3f85-48c8-93e2-633f8bf83e9a a1671321-5f7a-4455-aa7d-7ddb768c0d4e 52408bd0-54a8-4510-80f7-577f7b65e310 61fbd476-5001-4146-aa10-e3c06c428cbe 439217f2-536a-4832-bc5a-100927127b68 575cf556-6772-4df7-8a5f-c3bde4a65962 3459f6d6-97b3-4af6-b7c8-3b12ed8270b7 fc56c150-8ce0-465c-933d-f4f3feb9cdfd 95193f86-770e-4223-af85-3cd6b330eb2b 9c8c420e-940d-43ea-a521-348f74524ce6 67854e3c-fcc2-41b0-a408-80827c798257 34bb0aa6-d98e-4ccb-86ed-f73f0a8b82ea 3b5a10fc-c9c3-428b-84b5-239c69b3557d 88039f5e-5ccd-4e24-8df4-0cd1522759ca 4e6d549d-4660-48cc-b1fa-f5c0072a117d 32ed7abe-9fa5-43b6-9bfb-3b88db2cf4f0 e827f825-4200-4bed-ad10-f74bc75bf1cc df8126a9-c8fe-4006-b476-80734a585805 6d8fc0fa-da64-40a7-92a1-1b46f7b771e6 437cc9c2-2ae6-4d90-9c54-38ac9afab15b 7f02a046-6343-4196-8d95-a7155622fa97 c80369bd-3090-48ab-9768-e3bd350aef49 46a62f04-3242-4743-b44f-5ebe70743016 d410ecfc-c27a-4ce7-85d8-86c24c839bd4 1509fc9b-0906-46c1-8d41-06744191daba 2a2a89a8-853f-49bb-845d-ee3a206362b1 e737c399-b2f3-4401-afc9-c85e8e761a1e 4f99f5e0-5daf-40ed-9abf-eb42ef0e8a2e 2ca02cec-a6a8-4af7-baf2-9ff85388f01f 8ac6330f-25d4-4928-ace0-1c23e101412f 32fd22b6-728a-47d5-a720-b4746c7a190e b11f4d39-5902-40e3-b0b6-b6087ed2df7c 32fa194b-37e2-4c1e-a259-3b57fd9604e9 bae09e46-9f98-42ba-a5ce-0d5ebc9a61a8 88733ba9-e402-48af-aa9f-6cbcbb0e92f7 0532641d-f09b-4fa2-8bd0-c5eaf0bfb30a 32095b7d-d900-4a3d-828f-5ef7b360faa9 7671cfc0-ab4c-4bde-b434-1339e3545a7f 8b493e51-741b-4514-85a8-a9d7996844e5 bf746725-bbf7-485e-91af-48927c166fba 957d215a-2d64-402a-8b01-fcb101a3b286 7f0c46e2-76a5-443b-b2eb-a6f65c3c1575 2c6a3d90-5267-4a53-ac85-78db2fe78518 b74b6905-8d9c-4029-97aa-505ab4c3ce14 e28e4a2b-ac9a-4a5b-9764-d9143f6ad0f0 30ec1284-77f5-4e48-94a7-77d356e2fbd3 80aaee4a-9a67-490b-a33f-c63168bbb6f3 90cf2033-c0fb-4333-887c-ebda906f1416 898363ac-d330-471d-9720-c07dbd6743fb ed19854c-4cdb-4dd2-bbb7-3eb6f9871930 a6731cc4-8f66-461e-8fe7-b7afdb852e88 0bdecc0a-4144-495d-823b-271a11daf652 2792b855-d5df-41d2-8914-1f43ff351a89 4ccc68b6-55bd-4a8c-94e4-2185feaecf84 9126e7d8-2c19-452d-ae10-30de8c380e69 5b13d6a5-c0a2-439e-bb3d-9b1bbb069612 f95777e3-7ba8-4d46-8bb6-3aa56039e0c6 4d30623a-3a19-4a4f-92f8-d4868ec2115c 3f5a55a8-6e32-487b-ba41-86108ad47a06 6edbf937-0dcc-4660-8d6e-21cfe0baf54d e1d374cd-9837-4993-84c9-425e8adb39ec c782306c-fa9f-485e-ba42-a6c6c747a7e4 0a08832a-8bed-4642-a835-80e162a97f13 cdf8355f-3c52-4ee6-bf4a-b3cd6337ef0b 521b7c55-44bc-460e-ae0e-fce549ef0e76 7ca7438b-a31a-4ee4-9092-9e4834e54a0f f82c1b86-f8c4-4ff3-ae03-e0197f0424fc f92d54a8-5c10-43b5-a024-c50e6a86282c 06f40f7b-d67d-4602-9518-1612e2e7cab8 70e7cd8d-8abb-4bc6-82a8-f8c2956446cc 2dba2706-17bb-4f2f-898c-d2f525018d2e c17d51ba-c11a-4736-899b-91795cca2678 bcff66e7-3ca2-407b-a3a5-91bf85b226b7 56a4be74-f093-4b94-93f5-4326bb808672 f8345743-b59f-4eff-89cf-2e3f8cc7682e 9eda0fa9-693b-40ab-bb5d-198b9a3ffb7f 249da6c8-847c-464b-85d8-70a0f2f36c79 6b3d68bc-6930-4d2c-96a0-103c572a6fe1 55b023f8-5127-4426-8e62-84f35618fe9c 12f5472a-4ae5-4705-a411-23976fcd52ca b02969ff-a40a-496d-af5b-ea188781a8f0 e36be985-7f48-426b-9868-5a1e8ec8e9d9 de288d12-b7ad-4003-b491-8a555d733bae 2862b74d-26b3-43ca-8bee-cfd9c1de1bbd 1b90ff0c-1d86-402b-a149-7cdce20bd106 1dcea77a-f5eb-481b-b8e0-c1c8ce1d9c6e 39b694f1-c7ba-42e4-8591-f843b5d7872b e4f772bc-76a2-4453-80c7-b9a598bf27b1 7424f40e-7879-4e3a-84e7-1f71c6a06be9 00e56d84-b9f5-4556-abb1-3958178a4426 233ea7e7-3be6-4102-9be1-6cff24cafa4a 7c78a34d-290c-4024-91b7-0f9c6fd4bf99 67449465-42f4-4b95-8fdf-81d9a1378c19 a3609441-b1ec-4cec-b2ba-f5e40ecc8fe1 534fd74d-7751-4c42-9275-415f738205ef 1227b697-9629-4d85-8a45-7fd0359614da d190df89-2a0f-4300-9d2d-aec09928ec27 effc54fc-71f1-407c-9cd3-cb531f0d3bd2 3f65db7c-dc20-4e8d-b7a3-ddf7399ab95c 54bdf16f-df7c-49ad-ad95-8c5dd6da4adc 6bef21a5-0464-46eb-b4e3-9bd22b8d2b40 aaff4cdb-453b-4dfc-b368-df6c8789a02e 4310d644-97f4-41c7-ab3f-72f31bb8e67a 6dd1c99e-a7b4-4174-8219-af3d8b6fe489 231bd1d0-d537-4d68-8209-1ca194cc45fd 86c2f5df-2ae4-47f9-9db7-70e14a5eba20 2d1d9e3c-43f3-46a3-ab5a-3709fcafb99a bb9a2b33-01f2-48fc-a7ac-fac4b67997f7 82d51b12-5124-430e-8cba-a7aa46c1bd45 b84f3540-7bb0-40d3-92b0-929f2fca1883 d108f9b2-ff7a-454b-8353-3668e886b074 8f0b336f-bc30-4a30-81f0-86a43de10b18 ceeb2a8c-50e2-4cfd-8cb4-fcf32eb269d6 6a06b860-72cc-41e2-8d24-711189c3f5df 75815c46-8831-4ce7-ad49-f710d64261fa cbef09f7-5b3a-4bfc-b7ad-e29e4abf44b0 c96d07b6-8089-4f27-b28c-bae719938dd4 4308abce-bb73-43b3-bf67-ac9b9586ce89 f5ba5718-86ef-4d88-8881-b65b39706868 7e23b199-422e-495b-91cb-bbfc3ebbc2c4 10fb7054-2d41-4286-b0a4-baa776e3200b 3602b13b-a6f2-471a-9bb0-f8421a33b3d6 dc89dc3e-f34e-486c-95fe-895dfcab357e 7c4213f9-81a2-40e8-8291-4f9c14a7616d 45f61365-0d8e-4fba-9590-6116edcd6b81 196840b2-f98b-4cbf-bc85-b0bd0c4968bf 3e17315f-caee-4770-a787-fcbe4c103d05 31da4a44-6f35-4cd1-bfbc-f0886b75fe5b 7084902a-1a4a-4313-ae95-88b897163f38 2d18794d-28e8-43e1-842c-a45fe421716f 59ed884b-e6e5-4aa4-a30d-7117d29fdc63 308e8050-1459-4ee2-814e-8f3063a44a56 3afa7917-a532-44fb-83d4-9dbd7d2d87a9 8da46ff6-cc92-4eeb-891c-ac9a51710aaf 844a326d-1f4b-4691-b3a5-1c9537a884af 524bd094-414c-4d9d-ab03-17e15d078f3c 36ed5b8d-29dc-4ee7-a1be-27a2d295b67e ac2055e0-bf6b-4933-a315-8c81f0469077 7f829e33-5e30-4c34-9450-1fb8e5f708d8 d7b75c68-26d2-4b1d-bc19-32c182ef2820 05a67c61-25f4-4197-b0f6-b73c21a11e4c a16a5cd9-0c09-4cfc-8f27-da8603583e9d 3b650604-200c-487a-a3e7-617db9186f3a fdadbc6c-3026-45c2-9b15-238bbf0e6775 0e9e93fa-2a53-4a21-85a2-468ca124d270 c0d9008c-ca99-4505-8525-025fda3126a7 0505d354-3344-4a38-95ac-dbe4739fb94d 80129159-1a7d-4a93-a2ff-27fe4226dadf 3be3ec89-b864-479a-a702-6f66b80db2c7 9decd4aa-4e32-4f98-ade2-f748eb48d535 c012b4ee-f088-49ab-9e1f-a896b7fa52ac 0afadee2-d90a-4ba3-8b2d-3631e08cb537 5fb254cb-ea62-4716-b661-e3ddbac11a50 bbc4d47b-daf9-4808-9a70-e1bd22a80cbc 140e5866-6f8c-4ace-9786-e3191ff17358 d00796e4-8ee3-46df-bd09-afd115041485 2381ef62-f9aa-48f0-b58c-e49c4587c9ac cf50b9bc-fc2d-417c-abf9-46cb46057291 73304545-eec8-4b09-b91e-1225e402b7e5 7fdbb97c-3242-4cfa-a36b-77d9acd3a8e5 9df99afe-42c0-4fed-ab6f-6bcb12f5eab3 93cdc2c6-4a09-411e-bff7-1ea437b876d7 fe1cf439-ab47-4790-ab92-b5e48dda782e dc6a2638-7e24-4a34-ae14-b3b87b0e5341 a1143a50-9c75-4c1a-8411-beb8685d7640 338f39e6-7267-4f4f-a134-1443196a78c4 06eb602d-e1ff-480d-be4c-0d0f197cc1ce 8d98fea6-3f25-4a6d-b3ad-68183d02469b ad421d03-47d3-40c5-a2ae-0fe34d8b3995 af99221b-1a61-4365-b493-68a794df8b5e 43b46791-4187-45a0-834b-cc1645266663 a2301bd8-fc09-4c1a-bb5e-7ea71028acd7 432f7d0b-e708-4a56-a231-9b0d41a7b385 5cf3cf8a-d421-4024-9f28-41aee4ff872e 5fd3f277-7784-4895-8d18-b9035bbea964 38be263f-a00a-4fb0-8bcd-81190fb6c913 b94af7d3-28bf-4471-8eea-d63a0fad45a6 3a85d786-edc0-4cdf-a453-3852da5b5b4f 9271dd21-b777-4fa6-8700-01f98277024d a1b0eef3-9c83-4927-825f-1d018c6b141b d20e358b-e672-4fdb-ba99-f497d9a291f5 3fe1ffe7-1598-446e-84d2-c9eebe8db428 beed107d-de71-48c6-ae85-2a631aae5f31 eee1d89d-51c9-4005-9827-93a83bc5e70e 96f2c58e-4767-48ce-ad42-6909516e0368 f7101100-5819-492f-acd5-22589c4d7bb1 0b81d870-7b39-426d-ad1a-e8e77c10faf0 371e08bd-01f7-45a9-ad1c-b4cd3ff5bbb1 7c6ee581-edac-4654-970f-caa7a77fd3fb cfdfc5d7-e204-4492-a524-fb7b7bae564e 4d999ac3-8647-41d8-bc22-d0be02b52d0c 26e7dd5e-9a14-40ac-93aa-25a6cf832a15 215c6ba1-b7a8-4883-84ab-4267fa4b2b78 bc895ec4-46da-4a3d-960d-ef85328613dd 75424b64-ef69-4be5-a815-c04ecd212065 ea1b8bcd-85f1-4d45-b12d-f547de6b8c27 43ef9fc2-457f-4f13-a158-ba1d73d07bea 6b088644-75c6-4612-a4af-27869b2d2dc0 1cf9e87f-b74e-4357-8783-5311e0c28ebb 61c715de-6474-4be3-a4a4-ce6a46af157d ceca4ada-bb6f-4201-9fdc-eba3dbe6b3d1 d803dc8f-63ed-4ab2-83c9-7059eddada9d 839066c4-606e-46ee-be00-93e7a963dcf9 de96ef90-9aac-46c2-976d-abcf6d315c87 b4d531b6-a9a3-4468-82fe-1adba51d03b3 a86581d4-d41c-4dd4-a3df-8d1b4f502437 9880438f-1a3f-4658-9f7d-63ecda391fdd e4f73fc3-4332-4131-b424-6d82da53c679 27980fde-dff9-42d7-816b-9ea388099ba4 18fb726e-d706-4757-b151-39c75573ef0f 9ae69ea0-f8e2-409a-8f18-508b12db0a1a a9321cb3-9e3c-474c-aff0-8b3c19ca168a fc95d17d-fc19-49f0-9fb1-75e4ef70d699 6370bbe1-a8d8-4fd1-8d24-378d3598c458 70c98308-9ae8-4e2d-9ae8-f5e15fd1e331 aaa29e8e-136f-4832-9f0c-e6eb4818bf28 e7bdff73-184f-475f-8aab-d0b5b7b975fd d619081d-a515-409b-8c12-9f20ffe4bd25 331411dd-013d-4dc8-a5b8-e8113dffc106 db34c506-8053-43a0-b6a3-9f86916da889 2265d679-d5d4-4945-a7d4-e0e4576ab03f da92f5a8-f439-4308-8bb3-e019f4115a6c 9e8647c1-1f53-4d11-bd45-91270ee940b2 f17bcfcc-bb27-484b-8258-39b5b7a36431 0d8e87c5-a8a2-41cb-96e4-b17eeb4a05dd 0d3929d6-5363-4e2e-a948-bb68b8863369 70fbfcf3-5a40-4e7a-a11a-1b9173895428 58a95930-5787-408b-9113-141619e49603 8200c12d-5c33-4d57-a1bb-f87c3f74b59b f8b6cf3c-9051-4e6a-bc55-14ce4fd048f3 a7065b70-2beb-4d82-9b52-e9e2ca29c7c5 b4c9f611-bdf6-4e86-ab8b-6150c1cd95dc 332676be-30f4-4cd3-88c2-81d792d408ec bc54b28c-97ef-4b73-93f7-31c67ce82941 af5a45f3-6c7b-48fb-b37b-900e57591329 490d2e47-c0e8-41c7-8927-19676ea4ede4 799c79a3-5db0-4984-887a-2d2e0278b3d1 b1466594-1354-46d1-a3c1-8516411be705 16e9c7e9-ccec-49dd-944a-37aba5b10a3a d9a6245a-1b7d-499c-8f5a-fd57a6be48d9 ad002f58-7a81-4884-baac-52cb8fdb7c72 2cb457b5-baea-4774-9d30-e8bfb6e916f1 c5b01403-5d28-4cc1-91eb-ceff4c8baf91 16e645fe-7601-4279-9d43-e1f61b782d60 881b6889-9bf3-4d52-aaea-1cbe7cf87941 bb03ba80-6c21-438f-b0ae-d28c2c13dcb0 da67ee28-87bd-454b-96c0-b6a7cfe4cd13 cb2a1e80-9003-4397-a80f-5defafab755a 5c7727fa-6d81-406f-a80d-2219c45e2a7c ffe24c3a-fa03-4a49-a378-b3ad99196110 ea7f6085-d1d5-460a-98df-7c3249d07c37 24f4b973-dc7d-4fa3-a417-e5b947b228c1 f53e4b41-4031-4fa6-9e53-3f4ca2b23a64 f366bc71-34a0-429a-a7f3-74628f63a17a 6e60ada3-aa2d-4df2-b337-5c58478833ef 5c1275a8-c107-4620-b7c7-3ea973059164 dd14fcb6-1055-49f4-8b39-ebd077064a4c 1b84a395-264b-44b0-a270-a2cd1f0385fb dbe24e79-785a-4648-8ea2-941bff3b5f48 f7f51a71-66f1-4a54-8661-a605c1ec92d2 a916396e-530a-4548-9b4e-55cf8e2c83b3 a5ec5a9a-8155-4fd1-82b5-e48212064119 42fd7b9f-415c-4bd0-826c-6c494a320fde cee386c0-c874-431c-88a8-bea821f62251 63df8ca7-495c-4e32-9bc7-183e2f3fa15c 365b0838-84dd-4a6e-aa9e-33bdb3c32146 5a90679f-96cc-4670-9a3a-b5a39c722d46 1b8c5eda-1e22-4039-b0b0-1f61646d66db ea26c4a8-868d-4e75-a8cf-91241c33c5b3 396d2bb4-9818-4bb8-87dd-4fd8ce4694ff 00d2f913-6306-413a-99ed-ea186a335ea9 328abdd4-3da8-4614-b0ce-17f0b0695a98 ea9988e7-e586-4671-aeb7-bf3ba3dc80b3 7cbe8a59-77e4-454e-ad9e-76bc0d64e5df 3fa35eba-b08b-43a1-b2af-f9c80762fc24 a5dfe34b-4abd-4ae7-98f8-9c29eb660e03 0d48d0d6-1d65-457d-a58f-388d5500c698 98020921-0045-470e-9f4f-c319d5000eac 5da08c73-85d5-44ca-99e7-68c2fd5cdbab 33dbabdb-2157-48bf-b530-1ef313ef87cf 40cd9c73-bd6b-4526-9bcd-ece53fa0a14e ce5ae125-e923-4e36-9907-9b4d92032b0f f5e508e9-de0f-4254-8d5c-0ef65005f36a 23bf9407-7d50-4351-beb0-8fb1824c41ed 628b67df-6f71-404a-a2ef-67e301432c3a 67876263-a2bd-4b91-a46f-b7aeb9dfa03f 94e1e06f-3ef5-4559-a129-1ed8a109ba0d 2b9b05ed-1400-4df7-bfa8-8214aae46266 e29444cd-b93a-4cd7-bbcb-7015d038cf35 7bbdf0da-9510-4755-88ad-07b42daca701 69747e06-c0bf-4135-8469-0ada3bed9f45
Javascript GUID regex
2020-06-03T11:32:33.000Z
(\d\.*\d)*.+(fa-.+)\s\[&#x(.{4});\]
 fa-500px [&#xf26e;]  fa-adjust [&#xf042;]  fa-adn [&#xf170;]  fa-align-center [&#xf037;]  fa-align-justify [&#xf039;]  fa-align-left [&#xf036;]  fa-align-right [&#xf038;] 4.4  fa-amazon [&#xf270;]  fa-ambulance [&#xf0f9;] 4.6  fa-american-sign-language-interpreting [&#xf2a3;]  fa-anchor [&#xf13d;]  fa-android [&#xf17b;] 4.2  fa-angellist [&#xf209;]  fa-angle-double-down [&#xf103;]  fa-angle-double-left [&#xf100;]  fa-angle-double-right [&#xf101;]  fa-angle-double-up [&#xf102;]  fa-angle-down [&#xf107;]  fa-angle-left [&#xf104;]  fa-angle-right [&#xf105;]  fa-angle-up [&#xf106;]  fa-apple [&#xf179;]  fa-archive [&#xf187;] 4.2  fa-area-chart [&#xf1fe;]  fa-arrow-circle-down [&#xf0ab;]  fa-arrow-circle-left [&#xf0a8;]  fa-arrow-circle-o-down [&#xf01a;] 4.0  fa-arrow-circle-o-left [&#xf190;] 4.0  fa-arrow-circle-o-right [&#xf18e;]  fa-arrow-circle-o-up [&#xf01b;]  fa-arrow-circle-right [&#xf0a9;]  fa-arrow-circle-up [&#xf0aa;]  fa-arrow-down [&#xf063;]  fa-arrow-left [&#xf060;]  fa-arrow-right [&#xf061;]  fa-arrow-up [&#xf062;]  fa-arrows [&#xf047;]  fa-arrows-alt [&#xf0b2;]  fa-arrows-h [&#xf07e;]  fa-arrows-v [&#xf07d;] 4.6  fa-asl-interpreting (alias) [&#xf2a3;] 4.6  fa-assistive-listening-systems [&#xf2a2;]  fa-asterisk [&#xf069;] 4.2  fa-at [&#xf1fa;] 4.6  fa-audio-description [&#xf29e;] 4.1  fa-automobile (alias) [&#xf1b9;]  fa-backward [&#xf04a;] 4.4  fa-balance-scale [&#xf24e;]  fa-ban [&#xf05e;] 4.1  fa-bank (alias) [&#xf19c;]  fa-bar-chart [&#xf080;]  fa-bar-chart-o (alias) [&#xf080;]  fa-barcode [&#xf02a;]  fa-bars [&#xf0c9;] 4.4  fa-battery-0 (alias) [&#xf244;] 4.4  fa-battery-1 (alias) [&#xf243;] 4.4  fa-battery-2 (alias) [&#xf242;] 4.4  fa-battery-3 (alias) [&#xf241;] 4.4  fa-battery-4 (alias) [&#xf240;] 4.4  fa-battery-empty [&#xf244;] 4.4  fa-battery-full [&#xf240;] 4.4  fa-battery-half [&#xf242;] 4.4  fa-battery-quarter [&#xf243;] 4.4  fa-battery-three-quarters [&#xf241;] 4.3  fa-bed [&#xf236;]  fa-beer [&#xf0fc;] 4.1  fa-behance [&#xf1b4;] 4.1  fa-behance-square [&#xf1b5;]  fa-bell [&#xf0f3;]  fa-bell-o [&#xf0a2;] 4.2  fa-bell-slash [&#xf1f6;] 4.2  fa-bell-slash-o [&#xf1f7;] 4.2  fa-bicycle [&#xf206;] 4.2  fa-binoculars [&#xf1e5;] 4.2  fa-birthday-cake [&#xf1fd;]  fa-bitbucket [&#xf171;]  fa-bitbucket-square [&#xf172;]  fa-bitcoin (alias) [&#xf15a;] 4.4  fa-black-tie [&#xf27e;] 4.6  fa-blind [&#xf29d;] 4.5  fa-bluetooth [&#xf293;] 4.5  fa-bluetooth-b [&#xf294;]  fa-bold [&#xf032;]  fa-bolt [&#xf0e7;] 4.1  fa-bomb [&#xf1e2;]  fa-book [&#xf02d;]  fa-bookmark [&#xf02e;]  fa-bookmark-o [&#xf097;] 4.6  fa-braille [&#xf2a1;]  fa-briefcase [&#xf0b1;]  fa-btc [&#xf15a;]  fa-bug [&#xf188;] 4.1  fa-building [&#xf1ad;]  fa-building-o [&#xf0f7;]  fa-bullhorn [&#xf0a1;]  fa-bullseye [&#xf140;] 4.2  fa-bus [&#xf207;] 4.3  fa-buysellads [&#xf20d;] 4.1  fa-cab (alias) [&#xf1ba;] 4.2  fa-calculator [&#xf1ec;]  fa-calendar [&#xf073;] 4.4  fa-calendar-check-o [&#xf274;] 4.4  fa-calendar-minus-o [&#xf272;]  fa-calendar-o [&#xf133;] 4.4  fa-calendar-plus-o [&#xf271;] 4.4  fa-calendar-times-o [&#xf273;]  fa-camera [&#xf030;]  fa-camera-retro [&#xf083;] 4.1  fa-car [&#xf1b9;]  fa-caret-down [&#xf0d7;]  fa-caret-left [&#xf0d9;]  fa-caret-right [&#xf0da;]  fa-caret-square-o-down [&#xf150;] 4.0  fa-caret-square-o-left [&#xf191;]  fa-caret-square-o-right [&#xf152;]  fa-caret-square-o-up [&#xf151;]  fa-caret-up [&#xf0d8;] 4.3  fa-cart-arrow-down [&#xf218;] 4.3  fa-cart-plus [&#xf217;] 4.2  fa-cc [&#xf20a;] 4.2  fa-cc-amex [&#xf1f3;] 4.4  fa-cc-diners-club [&#xf24c;] 4.2  fa-cc-discover [&#xf1f2;] 4.4  fa-cc-jcb [&#xf24b;] 4.2  fa-cc-mastercard [&#xf1f1;] 4.2  fa-cc-paypal [&#xf1f4;] 4.2  fa-cc-stripe [&#xf1f5;] 4.2  fa-cc-visa [&#xf1f0;]  fa-certificate [&#xf0a3;]  fa-chain (alias) [&#xf0c1;]  fa-chain-broken [&#xf127;]  fa-check [&#xf00c;]  fa-check-circle [&#xf058;]  fa-check-circle-o [&#xf05d;]  fa-check-square [&#xf14a;]  fa-check-square-o [&#xf046;]  fa-chevron-circle-down [&#xf13a;]  fa-chevron-circle-left [&#xf137;]  fa-chevron-circle-right [&#xf138;]  fa-chevron-circle-up [&#xf139;]  fa-chevron-down [&#xf078;]  fa-chevron-left [&#xf053;]  fa-chevron-right [&#xf054;]  fa-chevron-up [&#xf077;] 4.1  fa-child [&#xf1ae;] 4.4  fa-chrome [&#xf268;]  fa-circle [&#xf111;]  fa-circle-o [&#xf10c;] 4.1  fa-circle-o-notch [&#xf1ce;] 4.1  fa-circle-thin [&#xf1db;]  fa-clipboard [&#xf0ea;]  fa-clock-o [&#xf017;] 4.4  fa-clone [&#xf24d;]  fa-close (alias) [&#xf00d;]  fa-cloud [&#xf0c2;]  fa-cloud-download [&#xf0ed;]  fa-cloud-upload [&#xf0ee;]  fa-cny (alias) [&#xf157;]  fa-code [&#xf121;]  fa-code-fork [&#xf126;] 4.1  fa-codepen [&#xf1cb;] 4.5  fa-codiepie [&#xf284;]  fa-coffee [&#xf0f4;]  fa-cog [&#xf013;]  fa-cogs [&#xf085;]  fa-columns [&#xf0db;]  fa-comment [&#xf075;]  fa-comment-o [&#xf0e5;] 4.4  fa-commenting [&#xf27a;] 4.4  fa-commenting-o [&#xf27b;]  fa-comments [&#xf086;]  fa-comments-o [&#xf0e6;]  fa-compass [&#xf14e;]  fa-compress [&#xf066;] 4.3  fa-connectdevelop [&#xf20e;] 4.4  fa-contao [&#xf26d;]  fa-copy (alias) [&#xf0c5;] 4.2  fa-copyright [&#xf1f9;] 4.4  fa-creative-commons [&#xf25e;]  fa-credit-card [&#xf09d;] 4.5  fa-credit-card-alt [&#xf283;]  fa-crop [&#xf125;]  fa-crosshairs [&#xf05b;]  fa-css3 [&#xf13c;] 4.1  fa-cube [&#xf1b2;] 4.1  fa-cubes [&#xf1b3;]  fa-cut (alias) [&#xf0c4;]  fa-cutlery [&#xf0f5;]  fa-dashboard (alias) [&#xf0e4;] 4.3  fa-dashcube [&#xf210;] 4.1  fa-database [&#xf1c0;] 4.6  fa-deaf [&#xf2a4;] 4.6  fa-deafness (alias) [&#xf2a4;]  fa-dedent (alias) [&#xf03b;] 4.1  fa-delicious [&#xf1a5;]  fa-desktop [&#xf108;] 4.1  fa-deviantart [&#xf1bd;] 4.3  fa-diamond [&#xf219;] 4.1  fa-digg [&#xf1a6;]  fa-dollar (alias) [&#xf155;] 4.0  fa-dot-circle-o [&#xf192;]  fa-download [&#xf019;]  fa-dribbble [&#xf17d;]  fa-dropbox [&#xf16b;] 4.1  fa-drupal [&#xf1a9;] 4.5  fa-edge [&#xf282;]  fa-edit (alias) [&#xf044;]  fa-eject [&#xf052;]  fa-ellipsis-h [&#xf141;]  fa-ellipsis-v [&#xf142;] 4.1  fa-empire [&#xf1d1;]  fa-envelope [&#xf0e0;]  fa-envelope-o [&#xf003;] 4.1  fa-envelope-square [&#xf199;] 4.6  fa-envira [&#xf299;]  fa-eraser [&#xf12d;]  fa-eur [&#xf153;]  fa-euro (alias) [&#xf153;]  fa-exchange [&#xf0ec;]  fa-exclamation [&#xf12a;]  fa-exclamation-circle [&#xf06a;]  fa-exclamation-triangle [&#xf071;]  fa-expand [&#xf065;] 4.4  fa-expeditedssl [&#xf23e;]  fa-external-link [&#xf08e;]  fa-external-link-square [&#xf14c;]  fa-eye [&#xf06e;]  fa-eye-slash [&#xf070;] 4.2  fa-eyedropper [&#xf1fb;] 4.6  fa-fa (alias) [&#xf2b4;]  fa-facebook [&#xf09a;]  fa-facebook-f (alias) [&#xf09a;] 4.3  fa-facebook-official [&#xf230;]  fa-facebook-square [&#xf082;]  fa-fast-backward [&#xf049;]  fa-fast-forward [&#xf050;] 4.1  fa-fax [&#xf1ac;]  fa-feed (alias) [&#xf09e;]  fa-female [&#xf182;]  fa-fighter-jet [&#xf0fb;]  fa-file [&#xf15b;] 4.1  fa-file-archive-o [&#xf1c6;] 4.1  fa-file-audio-o [&#xf1c7;] 4.1  fa-file-code-o [&#xf1c9;] 4.1  fa-file-excel-o [&#xf1c3;] 4.1  fa-file-image-o [&#xf1c5;] 4.1  fa-file-movie-o (alias) [&#xf1c8;]  fa-file-o [&#xf016;] 4.1  fa-file-pdf-o [&#xf1c1;] 4.1  fa-file-photo-o (alias) [&#xf1c5;] 4.1  fa-file-picture-o (alias) [&#xf1c5;] 4.1  fa-file-powerpoint-o [&#xf1c4;] 4.1  fa-file-sound-o (alias) [&#xf1c7;]  fa-file-text [&#xf15c;]  fa-file-text-o [&#xf0f6;] 4.1  fa-file-video-o [&#xf1c8;] 4.1  fa-file-word-o [&#xf1c2;] 4.1  fa-file-zip-o (alias) [&#xf1c6;]  fa-files-o [&#xf0c5;]  fa-film [&#xf008;]  fa-filter [&#xf0b0;]  fa-fire [&#xf06d;]  fa-fire-extinguisher [&#xf134;] 4.4  fa-firefox [&#xf269;] 4.6  fa-first-order [&#xf2b0;]  fa-flag [&#xf024;]  fa-flag-checkered [&#xf11e;]  fa-flag-o [&#xf11d;]  fa-flash (alias) [&#xf0e7;]  fa-flask [&#xf0c3;]  fa-flickr [&#xf16e;]  fa-floppy-o [&#xf0c7;]  fa-folder [&#xf07b;]  fa-folder-o [&#xf114;]  fa-folder-open [&#xf07c;]  fa-folder-open-o [&#xf115;]  fa-font [&#xf031;] 4.6  fa-font-awesome [&#xf2b4;] 4.4  fa-fonticons [&#xf280;] 4.5  fa-fort-awesome [&#xf286;] 4.3  fa-forumbee [&#xf211;]  fa-forward [&#xf04e;]  fa-foursquare [&#xf180;]  fa-frown-o [&#xf119;] 4.2  fa-futbol-o [&#xf1e3;]  fa-gamepad [&#xf11b;]  fa-gavel [&#xf0e3;]  fa-gbp [&#xf154;] 4.1  fa-ge (alias) [&#xf1d1;]  fa-gear (alias) [&#xf013;]  fa-gears (alias) [&#xf085;] 4.4  fa-genderless [&#xf22d;] 4.4  fa-get-pocket [&#xf265;] 4.4  fa-gg [&#xf260;] 4.4  fa-gg-circle [&#xf261;]  fa-gift [&#xf06b;] 4.1  fa-git [&#xf1d3;] 4.1  fa-git-square [&#xf1d2;]  fa-github [&#xf09b;]  fa-github-alt [&#xf113;]  fa-github-square [&#xf092;] 4.6  fa-gitlab [&#xf296;]  fa-gittip (alias) [&#xf184;]  fa-glass [&#xf000;] 4.6  fa-glide [&#xf2a5;] 4.6  fa-glide-g [&#xf2a6;]  fa-globe [&#xf0ac;] 4.1  fa-google [&#xf1a0;]  fa-google-plus [&#xf0d5;] 4.6  fa-google-plus-circle (alias) [&#xf2b3;] 4.6  fa-google-plus-official [&#xf2b3;]  fa-google-plus-square [&#xf0d4;] 4.2  fa-google-wallet [&#xf1ee;] 4.1  fa-graduation-cap [&#xf19d;]  fa-gratipay [&#xf184;]  fa-group (alias) [&#xf0c0;]  fa-h-square [&#xf0fd;] 4.1  fa-hacker-news [&#xf1d4;] 4.4  fa-hand-grab-o (alias) [&#xf255;] 4.4  fa-hand-lizard-o [&#xf258;]  fa-hand-o-down [&#xf0a7;]  fa-hand-o-left [&#xf0a5;]  fa-hand-o-right [&#xf0a4;]  fa-hand-o-up [&#xf0a6;] 4.4  fa-hand-paper-o [&#xf256;] 4.4  fa-hand-peace-o [&#xf25b;] 4.4  fa-hand-pointer-o [&#xf25a;] 4.4  fa-hand-rock-o [&#xf255;] 4.4  fa-hand-scissors-o [&#xf257;] 4.4  fa-hand-spock-o [&#xf259;] 4.4  fa-hand-stop-o (alias) [&#xf256;] 4.6  fa-hard-of-hearing (alias) [&#xf2a4;] 4.5  fa-hashtag [&#xf292;]  fa-hdd-o [&#xf0a0;] 4.1  fa-header [&#xf1dc;]  fa-headphones [&#xf025;]  fa-heart [&#xf004;]  fa-heart-o [&#xf08a;] 4.3  fa-heartbeat [&#xf21e;] 4.1  fa-history [&#xf1da;]  fa-home [&#xf015;]  fa-hospital-o [&#xf0f8;] 4.3  fa-hotel (alias) [&#xf236;] 4.4  fa-hourglass [&#xf254;] 4.4  fa-hourglass-1 (alias) [&#xf251;] 4.4  fa-hourglass-2 (alias) [&#xf252;] 4.4  fa-hourglass-3 (alias) [&#xf253;] 4.4  fa-hourglass-end [&#xf253;] 4.4  fa-hourglass-half [&#xf252;] 4.4  fa-hourglass-o [&#xf250;] 4.4  fa-hourglass-start [&#xf251;] 4.4  fa-houzz [&#xf27c;]  fa-html5 [&#xf13b;] 4.4  fa-i-cursor [&#xf246;] 4.2  fa-ils [&#xf20b;]  fa-image (alias) [&#xf03e;]  fa-inbox [&#xf01c;]  fa-indent [&#xf03c;] 4.4  fa-industry [&#xf275;]  fa-info [&#xf129;]  fa-info-circle [&#xf05a;]  fa-inr [&#xf156;] 4.6  fa-instagram [&#xf16d;] 4.1  fa-institution (alias) [&#xf19c;] 4.4  fa-internet-explorer [&#xf26b;] 4.3  fa-intersex (alias) [&#xf224;] 4.2  fa-ioxhost [&#xf208;]  fa-italic [&#xf033;] 4.1  fa-joomla [&#xf1aa;]  fa-jpy [&#xf157;] 4.1  fa-jsfiddle [&#xf1cc;]  fa-key [&#xf084;]  fa-keyboard-o [&#xf11c;]  fa-krw [&#xf159;] 4.1  fa-language [&#xf1ab;]  fa-laptop [&#xf109;] 4.2  fa-lastfm [&#xf202;] 4.2  fa-lastfm-square [&#xf203;]  fa-leaf [&#xf06c;] 4.3  fa-leanpub [&#xf212;]  fa-legal (alias) [&#xf0e3;]  fa-lemon-o [&#xf094;]  fa-level-down [&#xf149;]  fa-level-up [&#xf148;] 4.1  fa-life-bouy (alias) [&#xf1cd;] 4.1  fa-life-buoy (alias) [&#xf1cd;] 4.1  fa-life-ring [&#xf1cd;] 4.1  fa-life-saver (alias) [&#xf1cd;]  fa-lightbulb-o [&#xf0eb;] 4.2  fa-line-chart [&#xf201;]  fa-link [&#xf0c1;]  fa-linkedin [&#xf0e1;]  fa-linkedin-square [&#xf08c;]  fa-linux [&#xf17c;]  fa-list [&#xf03a;]  fa-list-alt [&#xf022;]  fa-list-ol [&#xf0cb;]  fa-list-ul [&#xf0ca;]  fa-location-arrow [&#xf124;]  fa-lock [&#xf023;]  fa-long-arrow-down [&#xf175;]  fa-long-arrow-left [&#xf177;]  fa-long-arrow-right [&#xf178;]  fa-long-arrow-up [&#xf176;] 4.6  fa-low-vision [&#xf2a8;]  fa-magic [&#xf0d0;]  fa-magnet [&#xf076;]  fa-mail-forward (alias) [&#xf064;]  fa-mail-reply (alias) [&#xf112;]  fa-mail-reply-all (alias) [&#xf122;]  fa-male [&#xf183;] 4.4  fa-map [&#xf279;]  fa-map-marker [&#xf041;] 4.4  fa-map-o [&#xf278;] 4.4  fa-map-pin [&#xf276;] 4.4  fa-map-signs [&#xf277;] 4.3  fa-mars [&#xf222;] 4.3  fa-mars-double [&#xf227;] 4.3  fa-mars-stroke [&#xf229;] 4.3  fa-mars-stroke-h [&#xf22b;] 4.3  fa-mars-stroke-v [&#xf22a;]  fa-maxcdn [&#xf136;] 4.2  fa-meanpath [&#xf20c;] 4.3  fa-medium [&#xf23a;]  fa-medkit [&#xf0fa;]  fa-meh-o [&#xf11a;] 4.3  fa-mercury [&#xf223;]  fa-microphone [&#xf130;]  fa-microphone-slash [&#xf131;]  fa-minus [&#xf068;]  fa-minus-circle [&#xf056;]  fa-minus-square [&#xf146;]  fa-minus-square-o [&#xf147;] 4.5  fa-mixcloud [&#xf289;]  fa-mobile [&#xf10b;]  fa-mobile-phone (alias) [&#xf10b;] 4.5  fa-modx [&#xf285;]  fa-money [&#xf0d6;]  fa-moon-o [&#xf186;] 4.1  fa-mortar-board (alias) [&#xf19d;] 4.3  fa-motorcycle [&#xf21c;] 4.4  fa-mouse-pointer [&#xf245;]  fa-music [&#xf001;]  fa-navicon (alias) [&#xf0c9;] 4.3  fa-neuter [&#xf22c;] 4.2  fa-newspaper-o [&#xf1ea;] 4.4  fa-object-group [&#xf247;] 4.4  fa-object-ungroup [&#xf248;] 4.4  fa-odnoklassniki [&#xf263;] 4.4  fa-odnoklassniki-square [&#xf264;] 4.4  fa-opencart [&#xf23d;] 4.1  fa-openid [&#xf19b;] 4.4  fa-opera [&#xf26a;] 4.4  fa-optin-monster [&#xf23c;]  fa-outdent [&#xf03b;] 4.0  fa-pagelines [&#xf18c;] 4.2  fa-paint-brush [&#xf1fc;] 4.1  fa-paper-plane [&#xf1d8;] 4.1  fa-paper-plane-o [&#xf1d9;]  fa-paperclip [&#xf0c6;] 4.1  fa-paragraph [&#xf1dd;]  fa-paste (alias) [&#xf0ea;]  fa-pause [&#xf04c;] 4.5  fa-pause-circle [&#xf28b;] 4.5  fa-pause-circle-o [&#xf28c;] 4.1  fa-paw [&#xf1b0;] 4.2  fa-paypal [&#xf1ed;]  fa-pencil [&#xf040;]  fa-pencil-square [&#xf14b;]  fa-pencil-square-o [&#xf044;] 4.5  fa-percent [&#xf295;]  fa-phone [&#xf095;]  fa-phone-square [&#xf098;]  fa-photo (alias) [&#xf03e;]  fa-picture-o [&#xf03e;] 4.2  fa-pie-chart [&#xf200;] 4.6  fa-pied-piper [&#xf2ae;] 4.1  fa-pied-piper-alt [&#xf1a8;] 4.1  fa-pied-piper-pp [&#xf1a7;]  fa-pinterest [&#xf0d2;] 4.3  fa-pinterest-p [&#xf231;]  fa-pinterest-square [&#xf0d3;]  fa-plane [&#xf072;]  fa-play [&#xf04b;]  fa-play-circle [&#xf144;]  fa-play-circle-o [&#xf01d;] 4.2  fa-plug [&#xf1e6;]  fa-plus [&#xf067;]  fa-plus-circle [&#xf055;]  fa-plus-square [&#xf0fe;] 4.0  fa-plus-square-o [&#xf196;]  fa-power-off [&#xf011;]  fa-print [&#xf02f;] 4.5  fa-product-hunt [&#xf288;]  fa-puzzle-piece [&#xf12e;] 4.1  fa-qq [&#xf1d6;]  fa-qrcode [&#xf029;]  fa-question [&#xf128;]  fa-question-circle [&#xf059;] 4.6  fa-question-circle-o [&#xf29c;]  fa-quote-left [&#xf10d;]  fa-quote-right [&#xf10e;] 4.1  fa-ra (alias) [&#xf1d0;]  fa-random [&#xf074;] 4.1  fa-rebel [&#xf1d0;] 4.1  fa-recycle [&#xf1b8;] 4.1  fa-reddit [&#xf1a1;] 4.5  fa-reddit-alien [&#xf281;] 4.1  fa-reddit-square [&#xf1a2;]  fa-refresh [&#xf021;] 4.4  fa-registered [&#xf25d;]  fa-remove (alias) [&#xf00d;]  fa-renren [&#xf18b;]  fa-reorder (alias) [&#xf0c9;]  fa-repeat [&#xf01e;]  fa-reply [&#xf112;]  fa-reply-all [&#xf122;] 4.1  fa-resistance (alias) [&#xf1d0;]  fa-retweet [&#xf079;]  fa-rmb (alias) [&#xf157;]  fa-road [&#xf018;]  fa-rocket [&#xf135;]  fa-rotate-left (alias) [&#xf0e2;]  fa-rotate-right (alias) [&#xf01e;] 4.0  fa-rouble (alias) [&#xf158;]  fa-rss [&#xf09e;]  fa-rss-square [&#xf143;] 4.0  fa-rub [&#xf158;] 4.0  fa-ruble (alias) [&#xf158;]  fa-rupee (alias) [&#xf156;] 4.4  fa-safari [&#xf267;]  fa-save (alias) [&#xf0c7;]  fa-scissors [&#xf0c4;] 4.5  fa-scribd [&#xf28a;]  fa-search [&#xf002;]  fa-search-minus [&#xf010;]  fa-search-plus [&#xf00e;] 4.3  fa-sellsy [&#xf213;] 4.1  fa-send (alias) [&#xf1d8;] 4.1  fa-send-o (alias) [&#xf1d9;] 4.3  fa-server [&#xf233;]  fa-share [&#xf064;] 4.1  fa-share-alt [&#xf1e0;] 4.1  fa-share-alt-square [&#xf1e1;]  fa-share-square [&#xf14d;]  fa-share-square-o [&#xf045;] 4.2  fa-shekel (alias) [&#xf20b;] 4.2  fa-sheqel (alias) [&#xf20b;]  fa-shield [&#xf132;] 4.3  fa-ship [&#xf21a;] 4.3  fa-shirtsinbulk [&#xf214;] 4.5  fa-shopping-bag [&#xf290;] 4.5  fa-shopping-basket [&#xf291;]  fa-shopping-cart [&#xf07a;]  fa-sign-in [&#xf090;] 4.6  fa-sign-language [&#xf2a7;]  fa-sign-out [&#xf08b;]  fa-signal [&#xf012;] 4.6  fa-signing (alias) [&#xf2a7;] 4.3  fa-simplybuilt [&#xf215;]  fa-sitemap [&#xf0e8;] 4.3  fa-skyatlas [&#xf216;]  fa-skype [&#xf17e;] 4.1  fa-slack [&#xf198;] 4.1  fa-sliders [&#xf1de;] 4.2  fa-slideshare [&#xf1e7;]  fa-smile-o [&#xf118;] 4.6  fa-snapchat [&#xf2ab;] 4.6  fa-snapchat-ghost [&#xf2ac;] 4.6  fa-snapchat-square [&#xf2ad;] 4.2  fa-soccer-ball-o (alias) [&#xf1e3;]  fa-sort [&#xf0dc;]  fa-sort-alpha-asc [&#xf15d;]  fa-sort-alpha-desc [&#xf15e;]  fa-sort-amount-asc [&#xf160;]  fa-sort-amount-desc [&#xf161;]  fa-sort-asc [&#xf0de;]  fa-sort-desc [&#xf0dd;]  fa-sort-down (alias) [&#xf0dd;]  fa-sort-numeric-asc [&#xf162;]  fa-sort-numeric-desc [&#xf163;]  fa-sort-up (alias) [&#xf0de;] 4.1  fa-soundcloud [&#xf1be;] 4.1  fa-space-shuttle [&#xf197;]  fa-spinner [&#xf110;] 4.1  fa-spoon [&#xf1b1;] 4.1  fa-spotify [&#xf1bc;]  fa-square [&#xf0c8;]  fa-square-o [&#xf096;] 4.0  fa-stack-exchange [&#xf18d;]  fa-stack-overflow [&#xf16c;]  fa-star [&#xf005;]  fa-star-half [&#xf089;]  fa-star-half-empty (alias) [&#xf123;]  fa-star-half-full (alias) [&#xf123;]  fa-star-half-o [&#xf123;]  fa-star-o [&#xf006;] 4.1  fa-steam [&#xf1b6;] 4.1  fa-steam-square [&#xf1b7;]  fa-step-backward [&#xf048;]  fa-step-forward [&#xf051;]  fa-stethoscope [&#xf0f1;] 4.4  fa-sticky-note [&#xf249;] 4.4  fa-sticky-note-o [&#xf24a;]  fa-stop [&#xf04d;] 4.5  fa-stop-circle [&#xf28d;] 4.5  fa-stop-circle-o [&#xf28e;] 4.3  fa-street-view [&#xf21d;]  fa-strikethrough [&#xf0cc;] 4.1  fa-stumbleupon [&#xf1a4;] 4.1  fa-stumbleupon-circle [&#xf1a3;]  fa-subscript [&#xf12c;] 4.3  fa-subway [&#xf239;]  fa-suitcase [&#xf0f2;]  fa-sun-o [&#xf185;]  fa-superscript [&#xf12b;] 4.1  fa-support (alias) [&#xf1cd;]  fa-table [&#xf0ce;]  fa-tablet [&#xf10a;]  fa-tachometer [&#xf0e4;]  fa-tag [&#xf02b;]  fa-tags [&#xf02c;]  fa-tasks [&#xf0ae;] 4.1  fa-taxi [&#xf1ba;] 4.4  fa-television [&#xf26c;] 4.1  fa-tencent-weibo [&#xf1d5;]  fa-terminal [&#xf120;]  fa-text-height [&#xf034;]  fa-text-width [&#xf035;]  fa-th [&#xf00a;]  fa-th-large [&#xf009;]  fa-th-list [&#xf00b;] 4.6  fa-themeisle [&#xf2b2;]  fa-thumb-tack [&#xf08d;]  fa-thumbs-down [&#xf165;]  fa-thumbs-o-down [&#xf088;]  fa-thumbs-o-up [&#xf087;]  fa-thumbs-up [&#xf164;]  fa-ticket [&#xf145;]  fa-times [&#xf00d;]  fa-times-circle [&#xf057;]  fa-times-circle-o [&#xf05c;]  fa-tint [&#xf043;]  fa-toggle-down (alias) [&#xf150;] 4.0  fa-toggle-left (alias) [&#xf191;] 4.2  fa-toggle-off [&#xf204;] 4.2  fa-toggle-on [&#xf205;]  fa-toggle-right (alias) [&#xf152;]  fa-toggle-up (alias) [&#xf151;] 4.4  fa-trademark [&#xf25c;] 4.3  fa-train [&#xf238;] 4.3  fa-transgender [&#xf224;] 4.3  fa-transgender-alt [&#xf225;] 4.2  fa-trash [&#xf1f8;]  fa-trash-o [&#xf014;] 4.1  fa-tree [&#xf1bb;]  fa-trello [&#xf181;] 4.4  fa-tripadvisor [&#xf262;]  fa-trophy [&#xf091;]  fa-truck [&#xf0d1;] 4.0  fa-try [&#xf195;] 4.2  fa-tty [&#xf1e4;]  fa-tumblr [&#xf173;]  fa-tumblr-square [&#xf174;] 4.0  fa-turkish-lira (alias) [&#xf195;] 4.4  fa-tv (alias) [&#xf26c;] 4.2  fa-twitch [&#xf1e8;]  fa-twitter [&#xf099;]  fa-twitter-square [&#xf081;]  fa-umbrella [&#xf0e9;]  fa-underline [&#xf0cd;]  fa-undo [&#xf0e2;] 4.6  fa-universal-access [&#xf29a;] 4.1  fa-university [&#xf19c;]  fa-unlink (alias) [&#xf127;]  fa-unlock [&#xf09c;]  fa-unlock-alt [&#xf13e;]  fa-unsorted (alias) [&#xf0dc;]  fa-upload [&#xf093;] 4.5  fa-usb [&#xf287;]  fa-usd [&#xf155;]  fa-user [&#xf007;]  fa-user-md [&#xf0f0;] 4.3  fa-user-plus [&#xf234;] 4.3  fa-user-secret [&#xf21b;] 4.3  fa-user-times [&#xf235;]  fa-users [&#xf0c0;] 4.3  fa-venus [&#xf221;] 4.3  fa-venus-double [&#xf226;] 4.3  fa-venus-mars [&#xf228;] 4.3  fa-viacoin [&#xf237;] 4.6  fa-viadeo [&#xf2a9;] 4.6  fa-viadeo-square [&#xf2aa;]  fa-video-camera [&#xf03d;] 4.4  fa-vimeo [&#xf27d;] 4.0  fa-vimeo-square [&#xf194;] 4.1  fa-vine [&#xf1ca;]  fa-vk [&#xf189;] 4.6  fa-volume-control-phone [&#xf2a0;]  fa-volume-down [&#xf027;]  fa-volume-off [&#xf026;]  fa-volume-up [&#xf028;]  fa-warning (alias) [&#xf071;] 4.1  fa-wechat (alias) [&#xf1d7;]  fa-weibo [&#xf18a;] 4.1  fa-weixin [&#xf1d7;] 4.3  fa-whatsapp [&#xf232;] 4.0  fa-wheelchair [&#xf193;] 4.6  fa-wheelchair-alt [&#xf29b;] 4.2  fa-wifi [&#xf1eb;] 4.4  fa-wikipedia-w [&#xf266;]  fa-windows [&#xf17a;]  fa-won (alias) [&#xf159;] 4.1  fa-wordpress [&#xf19a;] 4.6  fa-wpbeginner [&#xf297;] 4.6  fa-wpforms [&#xf298;]  fa-wrench [&#xf0ad;]  fa-xing [&#xf168;]  fa-xing-square [&#xf169;] 4.4  fa-y-combinator [&#xf23b;] 4.1  fa-y-combinator-square (alias) [&#xf1d4;] 4.1  fa-yahoo [&#xf19e;] 4.4  fa-yc (alias) [&#xf23b;] 4.1  fa-yc-square (alias) [&#xf1d4;] 4.2  fa-yelp [&#xf1e9;]  fa-yen (alias) [&#xf157;] 4.6  fa-yoast [&#xf2b1;]  fa-youtube [&#xf167;]  fa-youtube-play [&#xf16a;]  fa-youtube-square [&#xf166;]
Extract ClassName and Unicode fontawesome list
2016-07-26T08:34:29.000Z
Matches the following format of US address: Street, City, State|State Code, Zip Example: 765757 North Nevada Avenue, Colorado Springs, CO, 80918
(?:\s?[A-Za-z0-9.-]+[ ]?)+,\s?(?:[A-Z][a-z.-]+[ ]?)+,\s?(?:{Alabama|Alaska|Arizona|Arkansas|California|Colorado|Connecticut|Delaware|Florida|Georgia|Hawaii|Idaho|Illinois|Indiana|Iowa|Kansas|Kentucky|Louisiana|Maine|Maryland|Massachusetts|Michigan|Minnesota|Mississippi|Missouri|Montana|Nebraska|Nevada|New[ ]Hampshire|New[ ]Jersey|New[ ]Mexico|New[ ]York|North[ ]Carolina|North[ ]Dakota|Ohio|Oklahoma|Oregon|Pennsylvania|Rhode[ ]Island|South[ ]Carolina|South[ ]Dakota|Tennessee|Texas|Utah|Vermont|Virginia|Washington|West[ ]Virginia|Wisconsin|Wyoming}|{AL|AK|AS|AZ|AR|CA|CO|CT|DE|DC|FM|FL|GA|GU|HI|ID|IL|IN|IA|KS|KY|LA|ME|MH|MD|MA|MI|MN|MS|MO|MT|NE|NV|NH|NJ|NM|NY|NC|ND|MP|OH|OK|OR|PW|PA|PR|RI|SC|SD|TN|TX|UT|VT|VI|VA|WA|WV|WI|WY}),\s?(?:\b\d{5}(?:-\d{4})?\b)
765757 North Nevada Avenue, Colorado Springs, CO, 80918
Street, City, State|State Code, Zip
2015-10-08T11:54:13.000Z
a mac address separated by dashes or colons.
((?:[a-zA-Z0-9]{2}[:-]){5}[a-zA-Z0-9]{2})
Jul 11 18:09:06 ? user.info shepherd[366]: fifo: 8C:C1:21:A2:44:A3 is being marked undiscovered from state IS_IM_UNDELIV_DEST_UNDISC_MARKER_CLEAR by port removal
MAC address
2015-07-31T17:12:36.000Z
^[+-]?((0\.\d+)|([1-9]+(\d?\.\d+)?))$
abc
rr
2014-11-09T20:56:13.000Z
(?siU).*\"temp\":(.*),.*\"description\":\"(.*)\".*daily.*\"dt\":(.*),.*\"min\":(.*),.*\"max\":(.*),.*\"description\":\"(.*)\".*\"dt\":(.*),.*\"min\":(.*),.*\"max\":(.*),.*\"description\":\"(.*)\".*\"dt\":(.*),.*\"min\":(.*),.*\"max\":(.*),.*\"description\":\"(.*)\".*\"dt\":(.*),.*\"min\":(.*),.*\"max\":(.*),.*\"description\":\"(.*)\".*\"dt\":(.*),.*\"min\":(.*),.*\"max\":(.*),.*\"description\":\"(.*)\".*\"dt\":(.*),.*\"min\":(.*),.*\"max\":(.*),.*\"description\":\"(.*)\".*\"dt\":(.*),.*\"min\":(.*),.*\"max\":(.*),.*\"description\":\"(.*)\".*\"dt\":(.*),.*\"min\":(.*),.*\"max\":(.*),.*\"description\":\"(.*)\".*
{"lat":-34.08,"lon":150.79,"timezone":"Australia/Sydney","current":{"dt":1588385816,"sunrise":1588365147,"sunset":1588403702,"temp":17.07,"feels_like":11.01,"pressure":1003,"humidity":46,"dew_point":5.37,"uvi":3.47,"clouds":0,"wind_speed":7.15,"wind_deg":6,"wind_gust":12.52,"weather":[{"id":800,"main":"Clear","description":"clear sky","icon":"01d"}]},"daily":[{"dt":1588381200,"sunrise":1588365147,"sunset":1588403702,"temp":{"day":17.07,"min":8.55,"max":17.07,"night":8.55,"eve":14.09,"morn":17.07},"feels_like":{"day":12.24,"night":4.21,"eve":8.47,"morn":12.24},"pressure":1003,"humidity":46,"dew_point":5.37,"wind_speed":5.39,"wind_deg":279,"weather":[{"id":800,"main":"Clear","description":"clear sky","icon":"01d"}],"clouds":0,"uvi":3.47},{"dt":1588467600,"sunrise":1588451594,"sunset":1588490045,"temp":{"day":14.88,"min":7.68,"max":17.78,"night":8.4,"eve":16.89,"morn":8.56},"feels_like":{"day":10.2,"night":5.52,"eve":14.86,"morn":4.49},"pressure":1018,"humidity":44,"dew_point":3.39,"wind_speed":4.47,"wind_deg":218,"weather":[{"id":800,"main":"Clear","description":"clear sky","icon":"01d"}],"clouds":0,"uvi":3.57},{"dt":1588554000,"sunrise":1588538040,"sunset":1588576388,"temp":{"day":15.31,"min":6.68,"max":17.69,"night":9.37,"eve":15.32,"morn":6.83},"feels_like":{"day":13.61,"night":6.72,"eve":12.09,"morn":4.14},"pressure":1026,"humidity":55,"dew_point":6.95,"wind_speed":1.22,"wind_deg":179,"weather":[{"id":800,"main":"Clear","description":"clear sky","icon":"01d"}],"clouds":1,"uvi":3.58},{"dt":1588640400,"sunrise":1588624487,"sunset":1588662733,"temp":{"day":16.72,"min":9,"max":17.88,"night":11.03,"eve":17.09,"morn":9},"feels_like":{"day":15.02,"night":9.63,"eve":15.93,"morn":6.39},"pressure":1030,"humidity":63,"dew_point":10.15,"wind_speed":2.35,"wind_deg":188,"weather":[{"id":500,"main":"Rain","description":"light rain","icon":"10d"}],"clouds":20,"rain":0.46,"uvi":3.68},{"dt":1588726800,"sunrise":1588710934,"sunset":1588749078,"temp":{"day":16.47,"min":9.47,"max":20.25,"night":12.26,"eve":19.16,"morn":9.82},"feels_like":{"day":14.75,"night":11.65,"eve":17.97,"morn":8.33},"pressure":1029,"humidity":62,"dew_point":9.75,"wind_speed":2.2,"wind_deg":344,"weather":[{"id":803,"main":"Clouds","description":"broken clouds","icon":"04d"}],"clouds":64,"uvi":3.7},{"dt":1588813200,"sunrise":1588797380,"sunset":1588835425,"temp":{"day":17.89,"min":9.93,"max":21.04,"night":14.29,"eve":20.37,"morn":10.29},"feels_like":{"day":16.46,"night":13.24,"eve":19.37,"morn":9.06},"pressure":1025,"humidity":51,"dew_point":8.18,"wind_speed":1.25,"wind_deg":327,"weather":[{"id":804,"main":"Clouds","description":"overcast clouds","icon":"04d"}],"clouds":93,"uvi":3.88},{"dt":1588899600,"sunrise":1588883826,"sunset":1588921774,"temp":{"day":18.95,"min":10.71,"max":23.82,"night":14.21,"eve":22.89,"morn":11.2},"feels_like":{"day":17.59,"night":13.29,"eve":21.52,"morn":10.21},"pressure":1022,"humidity":55,"dew_point":10.17,"wind_speed":1.89,"wind_deg":334,"weather":[{"id":800,"main":"Clear","description":"clear sky","icon":"01d"}],"clouds":0,"uvi":3.45},{"dt":1588986000,"sunrise":1588970273,"sunset":1589008123,"temp":{"day":19.74,"min":11.48,"max":25.25,"night":14.53,"eve":23.02,"morn":11.73},"feels_like":{"day":18.36,"night":13.58,"eve":21.48,"morn":10.92},"pressure":1020,"humidity":52,"dew_point":10.27,"wind_speed":1.88,"wind_deg":336,"weather":[{"id":800,"main":"Clear","description":"clear sky","icon":"01d"}],"clouds":0,"uvi":3.42}]}
OpenWeather Regex for Rainmeter Weather.ini
2020-05-02T04:54:53.000Z
it detects binary numbers divislbe by 3
(1(01*0)*1(11)*0*)+
test for binary number divisible by 3
2021-05-03T18:02:51.000Z
(<([a-z]+)[^<>]*>[^<>]*(?R)*[^<>]*<\/\2>)|(<[a-z]+[^<>]*\/>)
<html>aaa<b></b><img src=”dfdfdfd” /> test </html> <html fdfdfdskjf hsdkjfh skjdf hdskj>aaa<b></b><img src=”dfdfdfd” /> test </html> <a><b /></a> <html>aaa<b></b><img src=”dfdfdfd”> df </img></html> <html>aaa<b><c/></b></html> <html> aaa <b><c src=”dfdfdfd” /></b> aaa </html> <html>aaa<b></b><img src=”dfdfdfd”> df </img></html> <a><b /></a> <b /> <a></a> invalid: <a><b></a></b>
Html for AU
2017-10-30T00:15:33.000Z
Capturing the content of column names which are duplicate in nature to extract the actual name and suffix ("right" / "left")
^(.*?)\s\((.*?)\)$
Job_Title (right)
Capturing groups with suffix
2023-07-17T08:05:56.000Z
^((([01]\d)|20|21|22|23)):([0-5][0-9])$
00:00 00:01 01:00 03:33 09:09 10:10 19:45 20:43 23:59 213:56 23:60 23:99 24:00 29:00 99:00 99:99
Exercicio_horário
2016-02-20T17:59:24.000Z
[0-9]+(.[0-9]+)?
58.5
Project
2015-11-27T12:59:49.000Z
for adding books
(([(|\[](?P<series>[^)\]]*)[)|\]]))?((?P<author>.*[^\s][^\-])[\s]+-[\s]*)?(?P<title>[^(]*)([(|\[](?:[\s]*(?P<published>(([12][\d]{3,3})(?:(?!([^.\)\-a-zA-Z_]*(-+[^.\)a-zA-Z_]+)+)))))?)?[\s]*([,]?[\s]*(?P<publisher>[\s\w\s]*)[\s]*)?([,]?[\s]*(isbn:|isbn[-]?13:)?(?P<isbn>[0-9-]+))?[)|\]])?
(1958, Open Road d34234234, 978-1-4532-1730-6).epub (1958, Open Ro234ad , 9781-4532-o1730-6).epub (1958, Open Rosd234ad ).epub ( 1958 ).epub (1958).epub ( Open Road ).epub (Open road , 9234-1-4532-17300-9-6).epub (1234, 9234-1-4532-17300-9-6).epub (91886).epub (9186).epub (1186).epub title (1958, Open Road34234234, 978-1-4532-1730-6).epub (asdf) author, a2 - title ioiuoi-uyoiu (1958, Open Ro234ad , 9781-4532-1730-6).epub author, adf - title ioiuoi-uyoiu (1958, Open Rosd234ad ).epub author, adf - title ioiuoi-uyoiu ( 1958 ).epub author, adf - title ioiuoi-uyoiu (1958).epub author, adf - title ioiuoi-uyoiu ( Open Road ).epub (dddfasdfasdf) author666, a66df - title ioiuoi-uyoiu (Open road , 9234-1-4532-17300-9-6).epub author, adf - title ioiuoi-uyoiu (1234, 9234-1-4532-17300-9-6).epub author, adf - title ioiuoi-uyoiu (1234, 923416).epub author, adf - title ioiuoi-uyoiu ( 91886-8).epub author, adf - title ioiuoi-uyoiu ( 9186 ).epub author, adf - title ioiuoi-uyoiu ( 1186 ).epub (dddfasdfasdf) author666, a66df - title ioiuoi-uyoiu ( Open road , isbn:9234-1-4532-17300-9-6).epub (dddfasdfasdf) author666, a66df - title ioiuoi-uyoiu ( Open road , isbn13:9234-1-4532-17300-9-6).epub (dddfasdfasdf) author666, a66df - title ioiuoi-uyoiu ( Open road , isbn-13:9234-1-4532-17300-9-6).epub (dddfasdfasdf) author666, a66df - title ioiuoi-uyoiu ( Open road , 9234-1-4532-17300-9-6).epub
for calibre
2018-09-24T12:19:37.000Z
(\((\d+)?\.?(\d+)?%\)\s?)
Rick Pino (100%) Rick Pino (50%) Adam Carpenter (50%) David Elam (50%) Rick Pino (50%) Adam Carpenter (90%) Joshua Carpenter (10%) Adam Carpenter (50%) Rick Pino (50%) Rick Pino (50%) Kari Jobe (50%) Rick Pino (100%) Robert Lowry (0%) Adam Carpenter (60%) Joshua Carpenter (30%) Dustin Horne (10%) Adam Carpenter (50%) Joshua Carpenter (50%) Curt Hawn (25%) Joshua Carpenter (25%) Adam Carpenter (50%) Adam Carpenter (100%) Rick Pino (70%) Adam Carpenter (30%) Joshua Carpenter (90%) Adam Carpenter (10%) Adam Rivera (100%) Courtney Rivera (80%) Adam Carpenter (20%) Adam Rivera (50%) Courtney Rivera (50%) Courtney Rivera (100%) Bryn Waddell (34%) Tyler England (33%) Tyler Richardson (33%) Michael Sainz (100%) Sean Feucht (100%) Stephen Roach (100%) Sean Feucht (80%) Kristene DiMarco (20%) Nathan Horst (100%) Olivia Dyer (100%) Sean Feucht (50%) Brandon Hampton (50%) Adam Cates (50%), Sean Feucht (50%) Brandon Hampton (70%) Sean Feucht (30%) Brandon Hampton (100%) Kayla Shubert (100%) Nathan Prior (100%) Darrell Evans (100%) Jeremy Burk (100%) Jeremy Burk (50%) Tandy Burk (50%) Jeremy Burk (34%) Tandy Burk (33%) Dane-Marc Kahreem Johnson (33%) Israel Houghton (60%) Micah Massey (30%) Adam Ranney (10%) Micah Massey (80%) Chris Garmon (20%) Chris Garmon (5%) Micah Massey (47.5%) Sean Hill (47.5%) Micah Massey (60%) Israel Houghton (40%) Micah Massey (50%) Sean Hill (50%) Adam Carpenter (60%) BJ Sullivan (40%) BJ Sullivan (50%) Lisa Sullivan (50%) BJ Sullivan (%) Vanessa Hughes (%) BJ Sullivan (45%) Lisa Sullivan (45%) Andrew Kurzweg (10%) BJ Sullivan (50%) KC Clark (50%) Evan Olsen (33.34%) Karina Olsen (33.34%) Rick Pino (33.32%) Adam Carpenter (70%) BJ Sullivan (30%) KC Clark (50%) Julie Clark (50%) KC Clark (70%) Julie Clark (30%) KC Clark (34%) Julie Clark (34%) Jeff Roy (33%) KC Clark (30%) Julie Clark (70%) Rick Pino (50%) Sean Feucht (50%) Amber Brooks (100%) Amber Brooks (63%) Micah Walley (30%) Jessi Moss (5%) Andy Squyres (2%) Amber Brooks (51%) Elijah Mosley (49%) Tyler England (100%) Tyler England (50%) Kyle Alfrey (50%) Tyler England (34%) Kyle Alfrey (33%) Aaron Stepp (33%) Christina Arceneaux (100%) Christina Arceneaux (95%) Luis Barragan (5%) Joanna Beasley (50%) Dustin Burnett (50%) Joanna Beasley (50%) Kristen NordhOff (50%) Joanna Beasley (75%) Kristen NordhOff (25%) Joanna Beasley (50%) Katie Gustafson (50%) Thomas Ken (0%) George Cocchini (40%) Joanna Beasley (30%) Drew Cline (30%) Joanna Beasley (34%) Dustin Burnett (33%) Shaina Goodman (33%) Joanna Beasley (50%) Chris McClarney (50%) Joanna Beasley (34%) Dustin Burnett (33%) Brian Hitt (33%) Joanna Beasley (50%) Stephen Leiweke (50%) Joanna Beasley (50%) Drew Cline (50%) Joanna Beasley (25%) Savannah Ellis (25%) Travis Collins (25%) Brandon Collins (25%) Josh Baldwin (100%) Josh Baldwin (50%) John Mark McMillan (50%) Josh Baldwin (75%) John Mark McMillan (25%) Bill Baldwin (100%) Josh Baldwin (50%) Devin Forbes (50%) Josh Baldwin (75%) Molly Williams (25%) Josh Baldwin (50%) David Puleo (50%) Adam Carpenter (70%) Lisa Sullivan (30%) Joshua Carpenter (80%) Adam Carpenter (20%) Kari Jobe (14.30%) Marty Sampson (14.30%) Mia Fieldes (14.28%) Ben Davis (14.28%) Grant Pittman (14.28%) Dustin Sauder (14.28%) Austin Davis (14.28%) Amy Davis (35%) Jason Ingram (25%) Kari Jobe (20%) Ben Davis (20%) Tyler Richardson (100%) Andy Squyres (100%) Andy Squyres (80%) Matthew Bollinger (20%) Andy Squyres (50%) Christine D’Clario (50%) Andy Squyres (40%) Jake Stevens (40%) Addison Moore (20%) Andy Squyres (80%) Anthony Skinner (20%) LaRue Howard (50%) Ed Anderson (50%) LaRue Howard (40%) Ed Anderson (40%) Vonte Boyd (20%) LaRue Howard (55%) Ed Anderson (45%) LaRue Howard (35%) Ed Anderson (35%) Jonathan Nelson (15%) Madelyn Howze (15%) LaRue Howard (50%) Anthony Jenkins (50%) LaRue Howard (60%) Ed Anderson (40%) Waldring Petit Homme (100%) Jeremy Hargis (100%) Timothy Honsalek (100%) Rachel Tuttle (100%) Rachel Tuttle / Brad Nyght Calie Garrett (100%) Daniel Garrett (50%) Calie Garrett (50%) Jessie Gonzalez (100%) Calie Garrett (34%) Trenton Starnes (33%) James Nichols (33%) Michael Merritt (50%) Marcee Merritt (25%) Dustin Sauder (25%) Mike Motley (100%) Catherine Mullins (100%) Catherine Mullins (80%) Valerie Mancini (20%) Catherine Mullins (100%) Robert Lowry (0%) Julie Clark (70%) Lisa Sullivan (30%) Joanna Beasley (100%) Israel Houghton (33.34%) Micah Massey (33.33%) Adam Ranney (33.33%) LaRue Howard (34%) Anthony Jenkins (33%) Marvin Jackson (33%) Todd Wilson (33%) LaRue Howard (34%) Ernest Collins Jr. (33%) Sean Feucht (75%) David Brymer (25%) LaRue Howard (50%) Ernest Collins Jr. (50%) Todd Wilson (26.6%) LaRue Howard (26.6%) Ernest Collins Jr. (26.6%) Meka King (20.2%) LaRue Howard (34%) Todd Wilson (33%) Ernest Collins Jr. (33%) LaRue Howard (40%) Ed Anderson (40%) Anthony Jenkins (20%) Chris Garmon (100%) Asiah Mehok (50%) Chris Garmon (50%) Asiah Mehok (50%) Philip Bixby (90%) Chris Garmon (10%) Lindsay Potter (80%) Adam Carpenter (20%) Philip Bixby (33.34%) DawnChere Wilkerson (33.33%) Shalom Andre (33.33%) Lindsay Potter (50%) Elizabeth Hunnicutt (50%) Amy Davis (100%) Amy Davis (50%) Ben Davis (50%) Cate Williams (50%) Gabriel Allred (50%) Jordan Deal (100%) Amy Davis (50%) Steve Wilson (50%) Brian Morykon (50%) Jacob Christopher Zachary (50%) Brian Morykon (100%) Jason Upton (100%) Jason Upton (85%) Brandon Hampton (15%) Jessie Goodman (50%) Jason Upton (50%) Amber Brooks (63%) Micah Walley (30%) Jessi Moss (5%) Andy Squyres (2%) Christine D’Clario (0%) Micah Massey (50%) Brett Younker (50%) Phil King (100%) Andrea Reagan (100%) Will Reagan (100%) Brock Human (100%) Pete Kipley (40%) Evan Wickham (40%) Michael Ketterer (20%) Will Reagan (34%) Jake LeBoeuf (33%) Brandon LeBoeuf (33%) Michael Ketterer (100%) Will Reagan (90%) Brandon Hampton (10%) Joe Choi (100%) Michael Ketterer (50%) Brandon Hampton (50%) Brandon Hampton (%) Jason May (%) Kevin Richardson (%) Kyl Means (%) Michael Ketterer (%) Will Reagan (%) Jason Borneman (100%) Will Reagan (25%) Andrea Reagan (25%) Stuart Jones (25%) Michael Ketterer (25%) Will Reagan (90%) Andrea Reagan (10%) Jake LeBoeuf (100%) Catherine Mullins (50%) Tyler England (35%) Bryn Waddell (15%) Israel Houghton, Micah Massey Tony Sutherland Darrell Evans (%) David Gungor (%) Michael Rossback (%) Darrell Evans (%) Steve Oberg (%) Darrell Evans (50%) Mike Weaver (50%) COffey Anderson (50%) Darrell Evans (50%) Will Reagan (50%) Brandon Hampton (50%) Chris Burns (100%) Wayne Campbell (50%) Chris Burns (50%) Adam Miller (100%) Ed Anderson (100%) Bryan Willard (50%) Jason Upton (50%) Jason Upton (75%) Micah Lother (25%) Bryan Willard (75%) Jason Upton (25%) Jason Upton (50%) Bryan Willard (50%) Jason Upton (75%) Bryan Willard (25%) Jason Upton (50%) Micah Lother (50%) Jason Upton (90%) Michael Larson (10%) Jason Upton (90%) Micah Lother (10%) Tyler Hook (100%) Taylor Turner (100%) Meredith Mauldin (80%) Taylor Lindsey (20%) Cody Lee (100%) Meredith Mauldin (75%) Traes Howard (25%) Wendy Guajardo (75%) Justin Williams (25%) Meredith Mauldin (95%) Cody Lee (5%) Meredith Mauldin (40%) Jamie Lyn Spires (20%) Lance Wallnau, Jr. (20%) Bob Randall (20%) Tyler Hook (80%) David Porcheddu (20%) Tyler Richardson (50%) Tyler England (50%) Meredith Mauldin (100%) KC Clark (25%) Julie Clark (25%) BJ Sullivan (25%) Lisa Sullivan (25%) Gentry Brown (100%) Micaiah Wesler (100%) Gabriel Martinez (34%) Tyler England (33%) Tyler Richardson (33%) Holli Johnson Micah Massey (33.32%) Sean Hill (33.34%) Israel Houghton (33.34%) Joanna Beasley (50%) Savannah Ellis (50%) Luke Smallbone (25%) Joel Smallbone (25%) Matt Hales (25%) Benjamin Backus (5%) Mark Campbell (5%) Timmy Jones (5%) Stephen Blake Kanicka (5%) Stephen Lynch (5%) Phil King (25%) Yvonne Chimwaza (25%) Tinashe Chimwaza (25%) Clay Vance (25%) Yvonne Chimwaza (100%) Yvonne Chimwaza (50%) Sarah Brown (50%) Phil King (50%) Ross Remedios (50%) Jason Castro (33.34%) Matt Bronleewe (33.34%) Blake Kanicka (33.32%) Holly McWilliams (100%) Lauren Chandler; Holly McWilliams; Jordan Bledsoe Lindey Duckworth (50%) Holly McWilliams (50%) Randy Fuller; Paul Morris; Holly McWilliams; Lindey Duckworth Lindey Duckworth (50%) Holly McWilliams (50%) Horatio Spafford (0%) Blake Kanicka Darrell Evans (70%) COffey Anderson (30%) Darrell Evans (50%) COffey Anderson (50%) Cody Cloe (100%) Rob Sperti (100%) Evangeline Sperti (35%) Rob Sperti (35%) Holli Johnson (30%) Evangeline Sperti (50%) Rob Sperti (50%) Evangeline Sperti (50%) Holli Johnson (50%) Rob Sperti (75%) Holli Johnson (25%) Evangeline Sperti (100%) Jason Upton (50%), Rob Sperti (50%) Lindsey Horst 85% Nathan Horst 15% Nathan Horst 85% Lindsey Horst 15% Lindsey Horst (100%) Nathan Horst 75% Lindsey Horst 25% Nathan Horst 70% Philip Payne 30% Nathan Horst 60% Lindsey Horst 40% Nathan Horst 50% Suzanna Espamer-Murrill 50% Nathan Horst 70% Suzanna Espamer-Murrill 30% Nathan Horst 80% Suzanna Espamer-Murrill 20% Garrett Chynoweth (16.67%) Nico Perez (16.67%) Gina Milne (16.67%) Ronnie Milne (16.67%) Tyler Cuchiaro (16.66%) James Guerra (16.66%) Whitney Vesterfelt (50%) Allen Vesterfelt (40%) Holli Johnson (10%) Whitney Vesterfelt (50%) Allen Vesterfelt (20%) Joe Musten (15%) Dusty Redman (15%) Whitney Vesterfelt (50%) Allen Vesterfelt (50%) LaRue Howard (45%) Daven-Roy Llewellyn (35%) Marvin Jackson (20%) LaRue Howard (100%) KC Clark (20%) Julie Clark (80%) Catherine Mullins (10%) Emma Back (9%) Matthew Back (9%) Kyle Alfrey (9%) Marlon Robertson (9%) Scott Hubbert (9%) Micaiah Wesler (9%) Tim Drewery (9%) Eric Green (9%) Anna Lauren Parker (9%) Kiel Washington (9%) Travis Motley (100%) Janell Belcher (20%) Jason Belcher (20%) Tim Peters (20%) Elliot Norton (20%) Evan Cooper (20%) Ed Cash (14.30%) Janell Belcher (14.30%) Jason Belcher (14.28%) Jordan Mackenzie (14.28%) Matthew Burrowes (14.28%) Tim Peters (14.28%) Kari Jobe (14.28%) Janell Belcher (20%) Jason Belcher (20%) Jordan MacKenzie (20%) Matthew Burrowes (20%) Tim Peters (20%) Elliot Norton (20%) Janell Belcher (20%) Jason Belcher (20%) Tim Peters (20%) Evan Cooper (20%) Janell Belcher (16%) Jason Belcher (16%) Jedidiah Lachmann (16%) Jordan MacKenzie (16%) Logan MacKenzie (16%) Ed Cash (20%) Janell Belcher (20%) Jason Belcher (20%) Jedidiah Lachmann (20%) Jordan MacKenzie (20%) Logan MacKenzie (20%) Janell Belcher (20%) Jason Belcher (20%) Matthew Burrowes (20%) Tim Peters (20%) Jordan MacKenzie (20%) Jason Belcher (50%) Zach Farro (50%) Janell Belcher (20%) Jason Belcher (20%) Jedidiah Lachmann (20%) Logan MacKenzie (20%) Jordan MacKenzie (20%) Janell Belcher (20%) Jason Belcher (20%) Elliot Norton (20%) Tim Peters (20%) Joel Bremner (20%) Janell Belcher (100%) Janell Belcher (14.28%) Jason Belcher (14.28%) Matt Burrowes (14.28%) Tim Peters (14.28%) Jordan MacKenzie (14.28%) Ed Cash (14.30%) Kari Jobe (14.30%) Jared Logan (34%) Aswan North (33%) Jeff Woods (33%) Laura-Lee (100%) Laura-Lee (34%) Aswan North (33%) Jared Logan (33%) LaRue Howard (60%) Clint Brown (40%) LaRue Howard (70%) Hollyday Simpson (30%) Karisha Nicole Leeper (100%) Chris Riley (100%) Jessica Riley (100%) Johnny Pike (30%) Jorge Mhondera (30%) Christy Nockels (25%) Molley Moody (5%) Nathan Nockels (5%) Willie Weeks (5%) Johnny Pike (32.50%) Jorge Mhondera (32.50%) Christy Nockels (20%) Nathan Nockels (15%) Jorge Mhondera (34%) Johnny Pike (33%) Kelly Minter (33%) Anthony Jenkins (100%) Ed Anderson (50%) LaRue Howard (50%) Jason Upton (50%) Rob Sperti (50%) Roman Pino (100%) Roman Pino (50%) Nigel Rowe (50%) Clayton Davis (25%) Zack Randolph (25%) Joel Parks (25%) Jeremiah Thompson (25%) Cate Williams (100%) Cate Williams (50%) Ashley McArtney (50%) Cate Williams (100%) Edward Mote (0%) Audrey Karrasch (31.8%) Aswan North (31.6%) Jared Logan (31.6%) Ben Woodward (5%) Audrey Karrasch (30%) Jared Logan (30%) Aswan North (30%) John McCants (10%) Audrey Karrasch (100%) Audrey Karrasch (30%) Jared Logan (30%) Aswan North (30%) Larry Lucky (10%) Audrey Karrasch (21.25%) Aaron Cooper (21.25%) Jared Logan (21.25%) Aswan North (21.25%) Aaron Swart (10%) Chloe Jacobson (5%) Lincoln Youree (100%) Lincoln Youree (50%) Jody Wilson (50%) Jody Wilson (100%) Jason Upton (50%) Ben Smith (50%) LaRue Howard (70%) John Dreher (30%) Sean Feucht (40%) Julie Meyer (40%) Heidi Baker (20% Lindsay Potter (50%) David Lyon (50%) Phil Joel (34%) David Porcheddu (33%) Antonio Porcheddu (33%) David Porcheddu (100%) David Porcheddu (80%) Antonio Porcheddu (20%) David Porcheddu (80%) Jeremy Shuck (20%) David Porcheddu (50%) Jeremy Shuck (50%) David Porcheddu (34%) Merrick Porcheddu (33%) Tyler Hook (33%) David Porcheddu (34%) Merrick Porcheddu (33%) Phil Joel (33%) Jimmy James (22%) Jorge Mhondera (22%) Obi Mhondera (22%) Lindsey West (22%) F. Michallik (12%) Jimmy James (22.5%) Jorge Mhondera (22.5%) Obi Mhondera (22.5%) Lindsey West (22.5%) Matt Redman (10%) Jimmy James (25%) Jorge Mhondera (25%) Obi Mhondera (25%) Lindsey West (25%) Simon Brading (33%) Anna Brading (34%) Jimmy James (11%) Jorge Mhondera (22%) Jimmy James (40%) Jorge Mhondera (10%) Obi Mhondera (10%) Lindsey West (40%) Jimmy James (20%) B. Guvna (10%) Jorge Mhondera (20%) Obi Mhondera (20%) R. Sullivan (10%) Lindsey West (20%) Austin Davis (100%) Austin Davis (50%) Ben Davis (12.5%) Kari Jobe (12.5%) Dustin Sauder (12.5%) Grant Pittman (12.5%) Janell Belcher (20%) Jason Belcher (20%) Jedidiah Lachmann (20%) Jordan McGee (20%) Logan MacKenzie (20%) Zach Farro (50%) Janell Belcher (10%) Jason Belcher (10%) Jedidiah Lachmann (10%) Jordan McGee (10%) Logan MacKenzie (10%) Damon Thompson (100%) Karen Wheaton (100%) Jaye Thomas (80%) Tyler Richardson (20%) Philip Herndon (50%) Nathan Horst (50%) Tyler Hornberger (50%) Nathan Horst (50%) Nathan Horst (80%) Philip Herndon (15%) John-Paul Gentile (5%) Tyler Hornberger (60%) Nathan Horst (40%) Philip Herndon (60%) Nathan Horst (40%) Waldring Petit-Homme (50%) LaRue Howard (30%) Jaylen Moore (20%) Andy Squyres (90%) Andy Cherry (10%) Andrew Ehrenzeller (100%) Calie Garrett (75%) Andrew Vutsinas (25%) Nick Rector (100%) Josh Varnadore (34%); Christine Poage (33%); Kyle Kempf (33%) Josh Varnadore (34%); Jeff Sutton (33%); Andreas Mannhardt (33%) James Tealy (34%); Christine Poage (33%); Jacob Ratliff (33%) Ethan Hulse (34%); Andy Rhea (33%); Kyle Kempf (33%) Josh Varnadore (25%); Chuck Dennie (25%); Ben Harris (25%); Andy Rhea (25%) Chuck Dennie (34%); Ben Harris (33%); Jason Chatterton (33%) Corey Voss (34%); Christine Poage (33%); Jeff Sutton (33%) Josh Varnadore (34%); Loretta Nobis (33%); Nathan Holland (33%) Josh Varnadore (34%); Chuck Dennie (33%); Ben Harris (33%) James Tealy (34%); Loretta Nobis (33%); Ben Harris (33%) Tyler Richardson (50%) John Brockman (50%)with in the 'Reference Lists' section.
Pull out percentages
2016-03-16T16:00:29.000Z
Soundcloud pattern
(?:(https?):\/\/)?(?:(?:www|m|api)\.)?(soundcloud\.com|snd\.sc)\/+([a-zA-Z0-9\-\.]+\/*[a-zA-Z0-9\-\.]*\/*[a-zA-Z0-9\-\.]*)
ERROR: type should be string, got "https://soundcloud.com/deejay-la-x\nhttps://soundcloud.com/deejay-la-x/my-christmas-mix-with-tarmac\nsdasdddd\nhttps://soundcloud.com/golden-rose-428706194/drip-vol2\nhttps://soundcloud.com/karyomusic/karyo-my-neck-lick-it?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing\nhttps://soundcloud.com/rnjonesnc/sets/30-flights-of-elevation\nhttps://on.soundcloud.com/5dTNx\n<iframe width=\"100%\" height=\"300\" scrolling=\"no\" frameborder=\"no\" allow=\"autoplay\" src=\"https://w.soundcloud.com/player/?url=https%3A//api.soundcloud.com/tracks/923619058&color=%23ff5500&auto_play=false&hide_related=false&show_comments=true&show_user=true&show_reposts=false&show_teaser=true&visual=true\"></iframe><div style=\"font-size: 10px; color: #cccccc;line-break: anywhere;word-break: normal;overflow: hidden;white-space: nowrap;text-overflow: ellipsis; font-family: Interstate,Lucida Grande,Lucida Sans Unicode,Lucida Sans,Garuda,Verdana,Tahoma,sans-serif;font-weight: 100;\"><a href=\"https://soundcloud.com/kaytranada\" title=\"&quot;KKAAYYTTRRAA&quot;\" target=\"_blank\" style=\"color: #cccccc; text-decoration: none;\">&quot;KKAAYYTTRRAA&quot;</a> · <a href=\"https://soundcloud.com/kaytranada/love-is-stronger-than-pride-kaytra-edit\" title=\"LOVE IS STRONGER THAN PRIDE (KAYTRA EDIT)\" target=\"_blank\" style=\"color: #cccccc; text-decoration: none;\">LOVE IS STRONGER THAN PRIDE (KAYTRA EDIT)</a></div>\n\n\n\n\n"
Soundcloud pattern
2022-10-06T09:58:43.000Z
(^https?:\/\/)
https://www-stg.ciudad.com.ar/ http://www-stg.ciudad.com.ar/ ttps://www-stg.ciudad.com.ar/ https://www-stg.https.com.ar/
Check if url start with https
2019-03-29T13:08:26.000Z
ckeck password
.*^(?=.{8,20})(?=.*[a-z])(?=.*[A-Z])(?=.*[0-9]).*$
adeffk3535 Abjdf83894
password checker
2019-09-09T10:02:01.000Z
match any email address in list
2015-01-26T19:57:32.000Z
Validate GUID using a regex expression
^[{]?[0-9a-fA-F]{8}[-]?([0-9a-fA-F]{4}[-]?){3}[0-9a-fA-F]{12}[}]?$
8be94c81-a218-42f5-bf1b-383f15490d42 0C885DD3-7DD9-484B-9B20-3E6552BCA144 {0C885DD3-7DD9-484B-9B20-3E6552BCA144} 0C885DD37DD9484B9B203E6552BCA144 {0C885DD3-7DD9-484B-9B20-1E6552BCA144} 0C885DD3-7DD9484B9B203E6552BCA144 0C885DD37DD9484B9B203E6552BCA14
Javascript GUID regex
2016-04-04T23:04:43.000Z
Regex for full url
(\b)(https?:\/\/)(www.)?[\w-]{2,}\.[a-zA-Z-]{2,}[\w\/\.?=&#-]*(\b)
Url
2016-06-22T14:09:52.000Z
(.*:.*)(')(.*)(')},$
"_v":[{ "CardTemplate": 56 },{ "CardAbilityContainer": 1 },{ "TemplateOverrideValues": 1 },{ "CardTemplateLayout": 5 },{ "SerializableTAC": 1 }], "_t":"Reckoning.Game.CardTemplate", "m_Id" : { "m_Guid" : '92807f9d-8b5c-4c59-a46f-61a5c68c3776'}, "m_SetId" : { "m_Guid" : 'fce480eb-15f9-4096-8d12-6beee9118652'}, "m_DesignerCardId" : "HEX_000995", "m_Name" : "Zin'xith Silk", "m_CardNumber" : 5, "m_Tradeable" : 1, "m_Faction" : "None", "m_SocketCount" : 0, "m_AttributeFlags" : "Unknown", "m_ColorFlags" : "Colorless", "m_ResourceCost" : 0, "m_Threshold" : [], "m_CardImagePath" : "Sets\\_ArtSource\\PVP0003\\a0001516.png", "m_CardType" : "Resource", "m_CardSubtype" : "", "m_BaseAttackValue" : 0, "m_BaseHealthValue" : 0, "m_FlavorText" : "", "m_CardRarity" : "Rare", "m_LineageId" : { "m_Guid" : '00000000-0000-0000-0000-000000000000'},
Fix Card Def
2016-01-24T15:29:22.000Z
parse the apache access log
(\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}) - - \[(\d{2}\/[a-zA-Z]{3}\/\d{4}:\d{2}:\d{2}:\d{2} (\+|\-)\d{4})\] ((\"(GET|POST|HEAD|OPTIONS) )(.+)(HTTP\/1\.(1|0)")) (\d{3}) (\d+) (["]((\-)|(.+))["]) (["](.+)["])
127.0.0.1 - - [19/Jan/2016:15:27:37 +0200] "GET / HTTP/1.1" 304 0 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.111 Safari/537.36" 127.0.0.1 - - [19/Jan/2016:15:27:37 +0200] "GET / HTTP/1.1" 304 0 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.111 Safari/537.36" 127.0.0.1 - - [19/Jan/2016:15:27:40 +0200] "GET /asd HTTP/1.1" 404 570 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.111 Safari/537.36" 127.0.0.1 - - [19/Jan/2016:15:27:44 +0200] "GET /asd HTTP/1.1" 404 570 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.111 Safari/537.36" 127.0.0.1 - - [19/Jan/2016:15:27:45 +0200] "GET /asd HTTP/1.1" 404 570 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.111 Safari/537.36"
apache access log
2016-01-19T14:35:57.000Z
(\((00|\+)39\)|(00|\+)39)?([[:space:]]+|\/|\_|\-|\.)?(38[0-9]|34[0-9]|36[0-9]|33[0-9]|32[0-9]|39[0-9])([[:space:]]+|\/|\_|\-|\.)?\d{3}([[:space:]]+|\/|\_|\-|\.)?\d{4}
Italian phone number
2019-03-08T15:00:41.000Z
\b(\w+)$
ANGULAR CONTACT (ROLLING) BEARING
Match last word in string
2017-09-23T21:16:44.000Z
^\s*(\S+)\s+(\S+)\s+(\S+)\s+(\S+)\s+(\S+)\s+(\S+)\s+(\S+)\s+(\S+)\s+(\S+)\s+(\S+)\s+(\S+)\s+(\S+)\s+(\S+)\s+(\S+)\s+(\S+)\s+(\S+)\s*$
1 2 3 4 5 6 7 8 9 10 11 3.5e10 -1 3 0 0
4x4 matrix
2018-07-05T17:29:09.000Z
CSN VR RAMAL RAMAL
(?P<mesini>\d{2})(?P<diaini>\d{2})(?P<horaini>\d{2})(?P<minini>\d{2})\s(?P<duracaosegundo>\d{5})\s\d{4}\s(\w|\s)\s{6}\s\s(?<rota>(\d{4})|\s{4})\s{6,18}(?<numerob>\d{4})\s(?<ramal>\d{4,8})\s{20,24}(?P<senha>(\d{6}|\s{6}))\s{8}\d{2}\s(?<tronco>(\d{5}|\s{5}))(?<nodetrunk>\d{4})\n
06191520 00102 0000 J 4776 6512 00 4776 06191522 00118 0000 4770 6512 00 024017001 06191535 00037 0000 I 6512 98311871 00 6512 06191532 00000 0000 B 6512 98311871 00 06191529 00141 0000 M 0 2470 999308509 6512 00 002002003 06191555 01854 0000 M 0 2470 33485083 6512 00 002002003 06191655 00151 0000 M 0 2470 01128983434 6512 00 002002003 06191656 00011 0000 M 0 2470 01128983434 6512 00 002002009 06191658 00130 0000 T 0 2470 01128983434 4776 00 002002009 06191701 00137 0000 M 0 2470 01128983434 6512 00 002002009 06191701 00000 0000 0 2470 01128983434 4776 00 002002009 06191632 00034 0000 J 4776 6512 00 4776 06191632 00034 0000 J 4776 6512 00 4776 06191634 00203 0000 T 0 2470 999308509 4776 00 002002001 06191630 00001 0000 J 6361 6512 00 6361 06191630 00001 0000 J 6361 6512 00 6361 06191644 00009 0000 M 0 2470 33283828 6512 00 002002007 06191645 00136 0000 T 0 2470 33283828 4776 00 002002007 06191632 00001 0000 M 0 2470 999308509 6512 00 002002001 06191634 00203 0000 T 0 2470 999308509 4776 00 002002001 06191656 00011 0000 M 0 2470 01128983434 6512 00 002002009 06191658 00130 0000 T 0 2470 01128983434 4776 00 002002009 06191644 00009 0000 M 0 2470 33283828 6512 00 002002007 06191645 00136 0000 T 0 2470 33283828 4776 00 002002007 06191632 00001 0000 M 0 2470 999308509 6512 00 002002001 06191634 00203 0000 T 0 2470 999308509 4776 00 002002001 06191652 00106 0000 M 0 2470 999308509 6512 00 002002003 06191652 00000 0000 0 2470 999308509 6512 00 002002003 06191656 00011 0000 M 0 2470 01128983434 6512 00 002002009 06191658 00130 0000 T 0 2470 01128983434 4776 00 002002009 06191701 00137 0000 M 0 2470 01128983434 6512 00 002002009 06191701 00000 0000 0 2470 01128983434 4776 00 002002009 06220921 00130 0000 M 0 2470 012997319079 6512 00 002002002 06220922 00004 0000 M 0 2470 012997319079 6512 00 002002005 06220924 00157 0000 T 0 2470 012997319079 4776 00 002002005 06220926 00144 0000 M 0 2470 012997319079 6512 00 002002006 06220926 00009 0000 0 2470 012997319079 4776 00 002002006 06220935 00347 0000 M 0 2470 33485083 6512 578129 00 002002001 06220938 00211 0000 M 0 2470 999308509 6512 578129 00 002002002
CSN VR RAMAL RAMAL 25-6-2020
2020-06-25T15:41:20.000Z
{tex\b([^{}]*({[^{}]*?([^{}]|(?R))*[^{}]*?}[^{}]*)*[^{}]*)}
# This is currently a test {nav Home} The statistical model estimated the probability, {tex f(x) = \int_{-\infty} ^\infty \hat f(\xi)\,e^{2 \pi \xi x} \,d\xi }, of capturing dolphins on a tow, {tex i}. A year effect, {tex \lambda_{acb_{j}}} was estimated for each year, {tex j}, allowing for annual variation in the capture event rates that was unrelated to the covariates, {tex x}. The contribution of each covariate, indexed by {tex c}, was governed by a regression coefficient, {tex \beta_c}, that was estimated by the model. The logit transform of the capture event probability was defined as the sum of the year effect, {tex \lambda_{lam} {lam} }, and the covariates: {tex \lambda_{lam}{lam} } {tex \lambda_{lam} {lam} } {tex \lambda_{lam}{lam}} katex {{{ logit(\pi_i) = \lambda_{j[i]} + \sum_c \beta_c x_{ic}. }}} determines the result. # The following is more tests katex {{{ f(x) = \int_{-\infty}^\infty \hat f(\xi)\,e^{2 \pi i \xi x} \,d\xi }}} katex {{{ \begin{bmatrix} a & b \\ c & a \end{bmatrix} }}} katex {{{ \begin{bmatrix} a & c \\ c & a \end{bmatrix} }}}
Capture Inline LaTeX
2016-02-20T07:33:22.000Z
* Allow only two or more labels. * Fix deprecated FQDN regexp not passing on test "dicas-l.com.br"
^((([a-z0-9][a-z0-9\-]*[a-z0-9])|[a-z0-9]+)\.)*([a-z]+|xn\-\-[a-z0-9]+)\.?$
terra.com.br
FQDN Fully Qualified Domain Name
2015-06-30T16:04:20.000Z
От начала строки, разделенных пробелом
^([-\p{L}_&]+)[\s]+\1(\W)
Баден&Баден K&K Top Top Букет Букет Букет невесты Констанция Букет,Букет Букет невесты Констанция Top Top D101, fdf1 ААА А АА А А А, Сумка 6030 Amethyst 1212, 3232 Букет100, невесты невесты& Букет невесты Жюльет B2 fd B xbckj 1 b xxbckj 2 f Njg100 Njg в в -B Конструктор Конструктор, Конструктор Chicco, Конструктор 5 в 1 Машины (40 деталей) Баден&Баден Букет Букет, Баден-Баден К & K ---- Дочки и Сыночки 2323-232-в Инфа Mert-Mert Mert, Mert D&D 1.1
Проверка повтора слов
2016-04-22T13:21:14.000Z
Strawberry
google.com
2016-01-16T07:14:44.000Z
matches the exact fields of CSV files supports: qouted fields quoted fields containing commas, doubble quoutes, and newlines empty fields empty records arbitrary white space in, and outside quoted fields
"(?:[^"]|"")*"|[^,\n]+|(?=,)(?<=,)|^|(?<=,)$
record 1:field 1,record 1:field 2,record 1:field 3 record 2:field 1,record 2:field 2,record 2:field 3 "quoted field","quoted field, with comma", "whitespace before & affer quote" ,"new line in field","double quotes ""in"" field","double quotes in field "","" with comma" ,,,<- empty fields at beging, , ,<-whitespace fields,empty fields at end ->,, ^empty records
CSV parsing
2015-06-17T16:30:18.000Z
^abc$|i10n
abc i10n 10abc abcабвгд abc.3
1
2015-10-17T05:25:49.000Z
Commit message for Gitlab's Push Rules
^([A-Z]+-\d+)(\s\([A-Z]+-\d+\))?(:\s)(([a-zA-Z0-9&, ])+)
JIRA-123: Please Commit & Message, 123 JIRA-123 (EPIC-222): Still working
Gitlab - Commit message
2021-06-30T21:46:38.000Z
^(?:[[:^print:][:cntrl:]\s]|GIF89.{0,20})*(?:<[^>]+>\s*)+.{0,150}?ilga gate<\/title>.{0,1300}?var\s*st\s*=\s*'aguardando\.\..{0,600}?ajax\(\{\s*url:\s*'apielo\.php.{0,1600}?function\s*esconderdie\(.{0,3000}?url\('imagem\/porn\.jpg.{0,1100}?>reejected<.{0,3000}?card[<\/\w>\s="]+result.{0,2700}?front\.js"><\/script[[:punct:]\s]+$
<!-- saved from url=(0038)https://chkfull24hr.000webhostapp.com/ --> <html><!-- Mirrored from editfly-chk.xyz/ by HTTrack Website Copier/3.x [XR&CO'2014], Thu, 25 Oct 2018 02:18:04 GMT --><!-- Added by HTTrack --><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><!-- /Added by HTTrack --> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <title id="title">ᏆhᎬ ᏆᎬᏟhᏒᎥm | ILGA Gate</title> <meta name="description" content=""> <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> <meta name="robots" content="all,follow"> <link rel="stylesheet" href="arquivos/bootstrap.min.css"> <script src="arquivos/jquery.min.js"></script> <link rel="stylesheet" href="arquivos/font-awesome.min.css"> <link rel="stylesheet" href="arquivos/fontastic.css"> <link rel="stylesheet" href="arquivos/css"> <link rel="stylesheet" href="arquivos/style.default.premium.css" id="theme-stylesheet"><link id="new-stylesheet" rel="stylesheet"><link id="new-stylesheet" rel="stylesheet"><link id="new-stylesheet" rel="stylesheet"> <link rel="stylesheet" href="arquivos/custom.css"> <script> var audio = new Audio('blop.mp3'); $(document).ready(function () { $('#testar').attr('disabled', null); $('#testar').click(function () { audio.play(); var line = $('#list').val().split('\n'); var total = line.length; var ap = 0; var rp = 0; var st = 'Aguardando...'; $('#carregadas').html(total); $('#status').html(st); line.forEach(function (value) { var list = value.split('|'); var cc = list[0]; var mes = list[1]; var ano = list[2]; var cvv = list[3]; var ajaxCall = $.ajax({ url: 'apielo.php', type: 'GET', data: 'lista=' + value, beforeSend: function () { $('#stop').attr('disabled', null); $('#testar').attr('disabled', 'disabled'); var st = 'Testando...'; $('#status').html(st); }, success: function(data){ if(data.indexOf("Aprovada") >= 0){ $("#lives").val(data + "\n" + $("#lives").val()); ap = ap + 1; document.getElementById("lives").innerHTML += data + ""; audio.play(); removelinha(); function escondelive() { $('#lives').toggle(200, function () { if ($(this).is(':visible')) { $('#btn_live').html('<i class="fa fa-minus-square"></i>'); } else { $('#btn_live').html('<i class="fa fa-plus-square"></i>'); } }); } }else{ $("#dies").val(data + "\n" + $("#dies").val()); rp = rp + 1; document.getElementById("employe").innerHTML += data + ""; removelinha(); function esconderdie() { $('#dies').toggle(200, function () { if ($(this).is(':visible')) { $('#escondedie').html('<i class="fa fa-minus-square">'); } else { $('#escondedie').html('<i class="fa fa-plus-square">'); } }); } } var fila = parseInt(ap) + parseInt(rp); $('#cLive').html(ap); $('#cDie').html(rp); $('#total').html(fila); var result = (fila/total)*100; $('#pct').html(result); $('#title').html('[' + fila + '/' + total + '] 𝑮𝑨𝑻𝑬 𝑬𝑳𝑶 𝟔𝟓'); document.getElementById("progreso").style.width = result + "%"; if (fila == total) { $('#testar').attr('disabled', null); $('#stop').attr('disabled', 'disabled'); audio.play(); var st = 'Finalizado'; $('#status').html(st); } } }); $('#stop').click(function () { ajaxCall.abort(); $('#testar').attr('disabled', null); $('#stop').attr('disabled', 'disabled'); var st = 'Pausado...'; $('#status').html(st); }); }); }); }); function stopado() { var lines = $("#list").val().split('\n'); lines.splice(0, 1); $("#list").val(lines.join("\n")); } function removelinha() { var lines = $("#list").val().split('\n'); lines.splice(0, 1); $("#list").val(lines.join("\n")); } </script><style type="text/css">/* Chart.js */ @-webkit-keyframes chartjs-render-animation{from{opacity:0.99}to{opacity:1}}@keyframes chartjs-render-animation{from{opacity:0.99}to{opacity:1}}.chartjs-render-monitor{-webkit-animation:chartjs-render-animation 0.001s;animation:chartjs-render-animation 0.001s;}</style><style type="text/css">/* Chart.js */ @-webkit-keyframes chartjs-render-animation{from{opacity:0.99}to{opacity:1}}@keyframes chartjs-render-animation{from{opacity:0.99}to{opacity:1}}.chartjs-render-monitor{-webkit-animation:chartjs-render-animation 0.001s;animation:chartjs-render-animation 0.001s;}</style></head> <style type="text/css"> body{ background: url('imagem/porn.jpg') no-repeat center center fixed; background-size: cover; background: background-size: 100% 100%; background-repeat: repeat; background-color: #101110; } </style> <body> <section class="dashboard-header"> <div class="container-fluid"> <div class="row"> <div class="statistics col-lg-3 col-s12"> <div class="statistic d-flex align-items-center bg-white has-shadow"> <div class="icon bg-green"><i style="padding-top: 25%;" class="fa fa-check"></i></div> <div class="text"><strong id="cLive">0</strong><br><small>Approved</small></div> </div> <div class="statistic d-flex align-items-center bg-white has-shadow"> <div class="icon bg-red"><i style="padding-top: 25%;" class="fa fa-close"></i></div> <div class="text"><strong id="cDie">0</strong><br><small>Reejected</small></div> </div> <div class="statistic d-flex align-items-center bg-white has-shadow"> <div class="icon bg-info"><i style="padding-top: 25%;" class="fa fa-battery-full"></i></div> <div class="text"><strong id="carregadas">0</strong><br><small>Loaded</small></div> </div> <div class="statistic d-flex align-items-center bg-white has-shadow"> <div class="icon bg-primary"><i style="padding-top: 25%;" class="fa fa-handshake-o "></i></div> <div class="text"><strong id="total">0</strong><br><small>Tested</small></div> </div></div> <div class="statistics col-lg-9 col-12"> <div class="statistic bg-white has-shadow"> <blockquote class="blockquote mb-0 card-body"> <center> <textarea rows="7" placeholder="ᏆhᎬ ᏆᎬᏟhᏒᎥm | ILGA Gate, 𝑮𝑨𝑻𝑬 𝑺𝑻𝑹𝑰𝑷𝑬" class="form-control" id="list" style="resize: none; outline: 0; text-align: center; width: 100%;"></textarea> <br><div class="progress"> <div role="progressbar" id="progreso" style="height: 100%; border: solid 1px purpul;" aria-valuenow="70" aria-valuemin="0" aria-valuemax="100" class="progress-bar bg-primary"></div> </div><br> <button id="testar" style="float: left; width: 48%;" class="btn btn-primary"> <i class="fa fa-play"></i> Start</button> <button disabled="" id="stop" style="float: left; width: 48%; margin-left: 3%;" class="btn btn-danger"><i class="fa fa-pause"></i> Pause</button><br> </center> </blockquote> </div> </div> <div style="margin-top: 10px;" class="statistics col-lg-20 col-12"> <div class="articles card"> <div class="card-close"> <div class="dropdown"> <span class="pull-right"> <button type="button" class="btn btn-xs btn-danger" onclick="document.getElementById('lives').innerHTML = ''"><i class="fa fa-close"> Clear </i></font></button> </span> </div> </div> <div class="card-header d-flex align-items-center"> <h2 class="h3">Approved <i class="fa fa-check"></i></h2> </div> <div class="card-body no-padding bg-white"> <table class="table table-bordered"> <thead> <tr> <th scope="col">#</th> <th scope="col">Card</th> <th scope="col">Information</th> <th scope="col">Gate</th> <th scope="col">Result</th> <th scope="col">Copyright</th> </tr> </thead> <tbody> </tr> <tbody id="lives"> </tbody> </table> </div> </div> </div> </div> <div style="margin-top: 10px;" class="statistics col-lg-15 col-15"> <div class="articles card"> <div class="card-close"> <div class="dropdown"> <span class="pull-right"> <button type="button" class="btn btn-xs btn-danger" onclick="document.getElementById('employe').innerHTML = ''"><i class="fa fa-close"> Clear </i></font></button> </span> </div> </div> <div class="card-header d-flex align-items-center"> <h2 class="h3">Rejected <i class="fa fa-close"></i></h2> </div> <div class="card-body no-padding bg-transparent"> <table class="table table-bordered"> <thead> <tr> <th scope="col">#</th> <th scope="col">Card</th> <th scope="col">Information</th> <th scope="col">Gate</th> <th scope="col">Result</th> <th scope="col">Copyright</th> </tr> </thead> <tbody> </tr> <tbody id="employe"> </tbody> </table> </div class="bg-white"> </div class="bg-white"> </div class="bg-white"> </div class="bg-white"> </div class="bg-white"> </div class="bg-white"> </section> <script src="arquivos/jquery.min.js(1)"></script> <script src="arquivos/popper.min.js"> </script> <script src="arquivos/bootstrap.min.js"></script> <script src="arquivos/jquery.cookie.js"> </script> <script src="arquivos/Chart.min.js"></script> <script src="arquivos/jquery.validate.min.js"></script> <script src="arquivos/charts-home.js"></script> <script src="arquivos/messenger-theme-flat.js"> </script> <script src="arquivos/home-premium.js"> </script> <script src="arquivos/front.js"></script>
tilak phishing
2020-04-09T18:05:12.000Z
Finds open reading frames in a dna sequence string.
(?=(A[TU]G(?:.{3}){4,}(?:[TU]AG|[TU]AA|[TU]GA)))
tatgaatgaatgffffffatgfftaaftaafatgfatgfffffsdfatgffatgfffstaafftaafffffffffffffffatgtaaataa atgffftaaf atgffatgftaafftaa
Orf Finder
2015-08-03T08:07:55.000Z
^[\w.-]*\@\w[\w.]*$
email validation
2015-07-01T21:16:30.000Z
\b( (?<!не\s)(?<!лет|или\s)(?<!года\s)(?<!работ\s)(?<!работы\s)(?<!связанны[ей]\s) (?: (?:со?\s (?: личн(?:ы(?:х|ми?)|ого|ой)| сво(?:ими?|его|ей|их)| собственн(?:ой|ого|ы(?:х|ми?))){0,1}\s{0,1} (?: легков(?:ой|ыми?)| пасс?ажирск(?:ой|ими?)| грузов(?:ой|ыми?)){0,1}\s{0,1} (?: (?:а(?:[./]?м|(?:вто(?:мобил[ея]ми?|транспортом){0,1})))| л[ ./]?[ат]| транспортом| грузовик[ао]ми?| тс| иномарк(?:ой|ами|и)| газел(?:ями|ью)))| (?:наличие\s (?: личн(?:ых|ого|ой)| сво(?:их|его|ей)| собственн(?:ого|ой|ых)){0,1}\s{0,1} (?: легков(?:ых|ого|ой)| пасс?ажирск(?:их|ого|ой)| грузов(?:ых|ого|ой)){0,1}\s{0,1} (?: (?:а(?:[./]?м|(?:вто(?:мобил(?:я|ей)|транспорта){0,1})))| л[ ./]?[ат]| транспорта| грузовик[ао]в?| тс| иномаро?ки?| газел[еи]й?))| (?:на\s (?: личн(?:ых|о[йм])| сво(?:их|[её][йм])| собственн(?:о[йм]|ых)){0,1}\s{0,1} (?: легков(?:ых|о[йм])| пасс?ажирск(?:их|о[йм])| грузов(?:ых|о[йм])){0,1}\s{0,1} (?: (?:а(?:[./]?м|(?:вто(?:мобил(?:ях?|е)|транспорте){0,1})))| л[ ./]?[ат]| транспорте| грузовик[ае]х?| тс| иномарк[еа]х?| газел[ия]х) ) ) )\b
Наличие личного авто Наличие личного автомобиля наличие личного а/м Наличие личного автотранспорта Наличие личного ам наличие личного легкового автотранспорта Наличие личного легкового автомобиля наличие личного полноприводного автомобиля наличие личного транспорта наличие личного грузового Наличие личного л/а Наличие личного а.м наличие личного л.а Наличие личного легкового автомобиля наличие личного. а/м наличие личного автомобильного транспорта Наличие личного легкового а/м Наличие личного л.а наличие личного автомобилем наличие личного автомобиля Наличие личного исправного а/м наличие личного(легкового) автомобиля наличие личного автомобиля Наличие личного а/транспорта наличие личного легкового авто
наличие личного авто
2016-02-25T14:53:44.000Z
1 letter - 1 number - 1 special character
^(?=.{8,})(?=.*[a-zA-Z])(?=.*[0-9])(?=.*[§'\"|;¥¨<>?,`€!£°@#:$%{}\-_~^&+=*\/()\[\]]).*$
Password
2016-08-22T13:43:32.000Z
Matches proxies in ip:port format. Takes into account that octets cant start with a 0, and that octets that are not the first octet can be a 0 if there are no more numbers behind it.
(([1-9][0-9]{2}|[1-9][0-9]|[1-9])\.([1-9][0-9]|[1-9][0-9]{2}|[0-9]))\.([0-9]|[1-9][0-9]|[1-9][0-9]{2})\.([0-9]|[1-9][0-9]|[1-9][0-9]{2})\:([1-9][0-9]{4}|[1-9][0-9]{3}|[1-9][0-9]{2}|[1-9][0-9]|[1-9])
123.123.123.123:12345 123.0.123.2:23 123.01.123.2:23 123.10.123.2:23 0.1.2.3:1 1.0.2.3:1 12.231.21.232:80
Proxy matcher
2016-03-29T00:35:20.000Z
Match liveleak videos
(?:http:\/\/)?www.liveleak.com\/view\?i=(\w{14})
www.liveleak.com/view?i=3f5_1213987712 http://www.liveleak.com/view?i=3f5_1213987712
Liveleak videos
2016-08-04T17:03:03.000Z
La contrasenã debe tener mínimo 8 caracteres y máximo 20, una letra, un número, un caracter especial y no puede repetir caracteres
^(?=.{8,20}$)(?=.*[A-Za-z])(?=.*(?=.*[0-9]))(?=.*?[#?!@$%^&*-])(?!.*(.)\1).+$
Duplic4do# Duuplic4do# Duplic44do#
Validar contraseña
2018-05-04T00:29:21.000Z
(0?[1-9]|1[012])\.(0?[1-9]|[12][0-9]|3[01])\.([2-9][0-9][0-9][0-9])
12/12/2015
date format for year 2000 above
2015-06-18T14:50:04.000Z
RegEx for finding creation of a function in **LScript** programming language
(private|public) ([A-Za-z_][A-Za-z_0-9.]*) ?\(((.*,)*.*)\) ?\{(.*)\}
public aboba(str in, box[int a, int b] c) {return $std:convert.toInt(in) + c;};
Function creation in LScript
2022-11-02T10:32:21.000Z
share(d)?\ an important document| shared with you| gorgeous\ women\ | email\ quota\ | someone attempted to login| sign-in attempt email verification's needed|undelivered mails|your mailbox|outlook corporation| mailbox administrator|email administrator|someone attempted to access|office365 user|activate your mailbox
Phishing
2018-06-05T14:54:38.000Z
支持仅有日期
(?:-|~|~|至|到)[\s\S]{0,15}(\d{4})[\s年-]+(\d{1,2})[\s月-]+(\d{1,2})\D+(?:(\d{1,2})[\s::时点]+(\d{2})?\D+){0,}
至2018年 8 月 12 日。八、采购项目联系(质疑)人姓名和电话:名称:冷水江市经济开发区科技创业园投资开发有限责任公司地址:冷水江市经济开 发区内联系人:谭先生电话: 13087389777  采购代理机构:国鼎和诚招标咨询有限公司联系地址:娄底市长青街鹏泰国际A座
从一个时间段中提取末尾时间点
2018-09-20T12:58:25.000Z
Parses Monkaa dataset filenames and extracts all the relevant labels
(?P<kind>(frames_cleanpass)|(disparity)|(optical_flow))/(?P<scene>[^/]+)_x2/(into_(?P<into>\w+)/)?(?P<view>left|right)/([^_]+_)?(?P<ID>\d{4})(_L|R)?\.(?P<ext>(?(2)png|pfm))
disparity/a_rain_of_stones_x2/left/0004.pfm optical_flow/a_rain_of_stones_x2/into_future/left/OpticalFlowIntoFuture_0005_L.pfm frames_cleanpass/a_rain_of_stones_x2/left/0002.png
Monkaa Dataset
2021-11-05T18:55:42.000Z
<\/i>(.*?)<i
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <meta name="viewport" content="initial-scale=1.0, maximum-scale=1.0, user-scalable=0"> <link rel="Shortcut Icon" href="//www.dpfile.com/s/res/favicon.5ff777c11d7833e57e01c9d192b7e427.ico" type="image/x-icon" /> <meta name="apple-mobile-web-app-status-bar-style" content="black" /> <meta name="format-detection" content="telephone=no" /> <meta name="format-detection" content="email=no" /> <meta name="apple-mobile-web-app-title" content="大众点评"> <meta name="location" content="province=湖北;city=武汉"> <link rel="apple-touch-icon-precomposed" href="//www.dpfile.com/m/img/app/dianping/logoforiphone.eb494fad081fe8a318aec427d5de0b43.png>" /> <link rel="apple-touch-startup-image" href="//www.dpfile.com/m/img/app/dianping/iphonesplash.88eba14b27357f754baa669bebbdd78b.png" /> <link rel="stylesheet" href="//www.dpfile.com/m/css/app/dianping/m.min.582950054934c1715c0170a250837783.css" type="text/css" /> <link rel="stylesheet" href="//www.dpfile.com/s/c/app/baby/pop_box.min.c35d50b401fd089d65542dcdd88c71f1.css" type="text/css" /> <link rel="stylesheet" href="//www.dpfile.com/s/c/app/baby/addbaby-shop.min.fb7723790da2b9cbd4d254e58919b0a4.css" type="text/css" /> <link rel="canonical" href="https://m.dianping.com/shop/24928984"/> <link rel="stylesheet" href="//www.dpfile.com/s/c/app/baby/mshop-wedding.min.89a81ca247f436abd72183b60df5e70f.css" type="text/css" /> <title>VIA婚礼电影地址,电话,价格(图)-武汉-大众点评网</title> <!-- OWL性能监控 --> <script type="text/javascript"> "use strict";!function(){var i=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"_Owl_",n=window,a={page:!0,resource:!0,js:!0};n[i]||(n[i]={isRunning:!1,isReady:!1,preTasks:[],config:a,dataSet:[],use:function(i,a){this.isReady&&n.Owl&&n.Owl[i](a),this.preTasks.push({api:i,data:[a]})},add:function(i){this.dataSet.push(i)},run:function(i){var a=this;if(!this.isRunning){this.isRunning=!0;var e=i||this.config;if(!1!==e.js){var t=n.onerror;n.onerror=function(){this.isReady||this.add({type:"jsError",data:arguments}),t&&t.apply(n,arguments)}.bind(this)}!1!==e.page&&n.addEventListener("load",function(){if(!a.isReady){var i=window.performance&&window.performance.timing;a.add({type:"pageTime",data:[i]})}}),!1!==e.resource&&(window.addEventListener("error",function(i){a.isReady||a.add({type:"resError",data:[i]})},!0),window.addEventListener("load",function(i){a.isReady||a.add({type:"resTime",data:[i]})}))}}})}(); //默认配置启动全部监控,业务可根据需要手动关闭其中任一种类的监控,_Owl_为全局变量 _Owl_.run({ page: true, //页面性能采集 js: true, //JS全局错误采集 resource: true //资源加载错误、性能采集 }) </script> <script src="//www.dpfile.com/app/owl/static/owl.min.6fc79953c93428c073682e6bd24e9e96.js"></script> <script type="text/javascript"> Owl.start({ // 建议使用前端项目名,package.json或者f2eci.json中的name project: 'wedding-h5-web', /* 强烈建议业务进行配置,有利于数据的聚合 * 当前页面所属的页面URL,默认会使用window.location.href * 建议不要直接使用location.href, * 可以是非URL,比如'toutiao-detail' */ pageUrl: 'https://m.dianping.com/shop' }) </script> <meta name="Keywords" content="VIA婚礼电影,婚礼跟拍,武汉,"/> <meta name="Description" content="武汉VIA婚礼电影人均:¥4550元。点击查看更多关于VIA婚礼电影的简介、地址、电话、营业时间介绍和周边停车、公交等交通信息,以及VIA婚礼电影的用户点评信息。"/> <script>var G_rtop=+new Date, _hip = [ ['_setPageId', 210008], ['_setCityId', 16] ]; </script> <script> (function(WIN) { var MIDASCOOKIE = 'midasclick', cookie, DOC = WIN.document, cookieArr = DOC.cookie.match(new RegExp("(^| )" + MIDASCOOKIE + "=([^;]*)(;|$)")), send = function(url) { new Image(1, 1).src = url; }, sendMidas = function(data) { var base; if (!/\.dianping\.com/.test(DOC.domain)) { base = 'https://mlog.51ping' + '.com/log?'; } else { base = 'https://mlog.dianping' + '.com/log?'; } send(base + data + '&act=2&t=' + new Date().getTime()); }; cookie = cookieArr == null ? '""' : decodeURIComponent(cookieArr[2]); if(cookie != '""') { var data = cookie.split('|'); sendMidas(data[0]); data[1] && send(data[1]); document.cookie = MIDASCOOKIE + '="";path=/'; } })(window); </script> <script> !function(e,t,n){function s(){var e=t.createElement("script");e.async=!0,e.src="https://s0.meituan.net/bs/js/?f=mta-js:mta.min.js";var n=t.getElementsByTagName("script")[0];n.parentNode.insertBefore(e,n)}if(e.MeituanAnalyticsObject=n,e[n]=e[n]||function(){(e[n].q=e[n].q||[]).push(arguments)},"complete"===t.readyState)s();else{var r="addEventListener",i="attachEvent";if(e[r])e[r]("load",s,!1);else if(e[i])e[i]("onload",s);else{var a=e.onload;e.onload=function(){s(),a&&a()}}}}(window,document,"mta"),function(e,t,n){if(t&&!("_mta"in t)){t._mta=!0;var s=e.location.protocol;if("file:"!==s){var r=e.location.host,i=t.prototype.open;t.prototype.open=function(t,n,a,o,h){if(this._method="string"==typeof t?t.toUpperCase():null,n){if(0===n.indexOf("http://")||0===n.indexOf("https://")||0===n.indexOf("//"))this._url=n;else if(0===n.indexOf("/"))this._url=s+"//"+r+n;else{var l=s+"//"+r+e.location.pathname;l=l.substring(0,l.lastIndexOf("/")+1),this._url=l+n}var u=this._url.indexOf("?");-1!==u?(this._searchLength=this._url.length-1-u,this._url=this._url.substring(0,u)):this._searchLength=0}else this._url=null,this._searchLength=0;return this._startTime=(new Date).getTime(),i.apply(this,arguments)};var a="onreadystatechange",o="addEventListener",h=t.prototype.send;t.prototype.send=function(t){function n(n,r){if(0!==n._url.indexOf(s+"//frep.meituan.net/_.gif")){for(var i="browser.ajax",a=[98,114,111,119,115,101,114,46,97,106,97,120],o=0,h=i.length;h>o;o++)if(i.charCodeAt(o)!==a[o])return;var l;if(n.response)switch(n.responseType){case"json":l=JSON&&JSON.stringify(n.response).length;break;case"blob":case"moz-blob":l=n.response.size;break;case"arraybuffer":l=n.response.byteLength;case"document":l=n.response.documentElement&&n.response.documentElement.innerHTML&&n.response.documentElement.innerHTML.length+28;break;default:l=n.response.length}e.mta("send",i,{url:n._url,method:n._method,error:!(0===n.status.toString().indexOf("2")||304===n.status),responseTime:(new Date).getTime()-n._startTime,requestSize:n._searchLength+(t?t.length:0),responseSize:l||0})}}if(o in this){var r=function(e){n(this,e)};this[o]("load",r),this[o]("error",r),this[o]("abort",r)}else{var i=this[a];this[a]=function(t){i&&i.apply(this,arguments),4===this.readyState&&e.mta&&n(this,t)}}return h.apply(this,arguments)}}}}(window,window.XMLHttpRequest,"mta"); // 初始化项目 mta("create","5875d3e36b783664e0db0ae4"); // 推荐设置上报地址为 HTTPS 协议,以获得更高的数据准确性,默认会和页面协议一致 mta("config", "beaconImage", "https://frep.meituan.com/_.gif"); // 发送页面性能指标,包括 ttfb(首字节)、domReady(可交互)、load(完全加载)等 mta("send","page"); </script> <!-- 上报通道标识 --> <!-- 用来替换掉3.0中的通道配置,如Analytics('use', 'wed') --> <meta name="lx:category" content="wed"> <!-- 上报应用标识 --> <!-- 用来替换掉3.0中的标识,如Analytics('config', 'appnm', 'dp_pc') --> <meta name="lx:appnm" content="dp_m"> <!-- 页面名称:点评结婚pc优惠券详情页,上报页面标识 --> <!-- 用来替换掉3.0中的cid配置,如Analytics('config', 'cid', 'c_j6wjibts') --> <meta name="lx:cid" content="dp210008"> <!-- 加载sdk --> <link rel="dns-prefetch" href="//analytics.meituan.net"/> <script type="text/javascript"> !(function (win, doc, ns) { var cacheFunName = '_MeiTuanALogObject'; win[cacheFunName] = ns; if (!win[ns]) { var _LX = function () { _LX.q.push(arguments); return _LX; }; _LX.q = _LX.q || []; _LX.l = +new Date(); win[ns] = _LX; } })(window, document, 'LXAnalytics'); //这里放置兼容代码 window.Analytics = function(eventStr, config) { if(eventStr != 'event') return; if(!config) return; var nm = config.nm; if(!nm) return; if(nm === 'mge'){ var eventType = config.event_type; if(eventType === 'click'){ window.LXAnalytics('moduleClick', config.val_bid, config.val_lab); return; } if(eventType === 'view'){ window.LXAnalytics('moduleView', config.val_bid, config.val_lab); return; } } if(nm === 'order'){ window.LXAnalytics('order', config.val_bid, config.val_lab.orderId, config.val_lab); return; } if(nm === 'pay'){ window.LXAnalytics('pay', config.val_bid, config.val_lab.orderId, config.val_lab); return; } if(nm === 'report' && config.val_act === 'quit'){ window.LXAnalytics('pageDisappear', config.val_lab); return; } }; </script> <script type="text/javascript"> var OPTION = { shopid:'24928984', cityid:'16' }; var lx_mge = function(bid,eventType,customOption){ Analytics && Analytics('event',{ nm:'mge', event_type:eventType, val_bid:bid, val_lab:{ custom:customOption } }); }; var lx_headpic = function(){lx_mge('b_p4ruj0id','click',OPTION)}; //点评M商详页-头图 var lx_address = function(){lx_mge('b_uflh7iq8','click',OPTION)}; //点评M商详页-地址 var lx_headphone = function(){lx_mge('b_xo8j77m5','click',OPTION)}; //点评M商详页-电话 var lx_bottomphone = function(){lx_mge('b_r3kg5p2t','click',OPTION)}; //点评M商详页-吸底电话 var lx_bottonbooking = function(){lx_mge('b_m27awl58','click',OPTION)}; //点评M商详页-吸底预约 var lx_promo = function(){lx_mge('b_bzla7o5l','click',OPTION)}; //点评M商详页-领取优惠 var lx_bottomzixun = function(){lx_mge('b_sgnmdp04','click',OPTION)}; //点评M商详页-吸底咨询 var lx_dangqi = function(){lx_mge('b_vznaip5e','click',OPTION)}; //点评M商详页-查询档期 var lx_dingzhi = function(){lx_mge('b_2bntzmll','click',OPTION)}; //点评M商详页-定制申请 var lx_allcases = function(){lx_mge('b_hepz01kp','click',OPTION)}; //点评M商详页-全部案例 var lx_case = function(){lx_mge('b_dharagxc','click',OPTION)}; //点评M商详页-案例展示 var lx_allproduct = function(){lx_mge('b_37cfvedh','click',OPTION)}; //点评M商详页-全部套餐 var lx_product = function(){lx_mge('b_i9nl3dzv','click',OPTION)}; //点评M商详页-套餐展示 var lx_deal = function(){lx_mge('b_kwq78m9d','click',OPTION)}; //点评M商详页-团购 var lx_review = function(){lx_mge('b_oyibebfz','click',OPTION)}; //点评M商详页-点评展示 var lx_album = function(){lx_mge('b_tpckedbz','click',OPTION)}; //点评M商详页-会员相册 var lx_shopinfo = function(){lx_mge('b_qpog17gk','click',OPTION)}; //点评M商详页-商户信息 </script> </head> <body> <div class="epoplayer Hide"></div> <header class="shop-head"> <a href="javascript:history.go(-1)" class="back"></a> <div class="placeholder"></div> <div class="title">商户详情</div> <a class="shop-share J_btnShare" href="javascript:;"></a> </header> <section class="shop-details"> <article class="pic"> <a onclick="_hip.push(['mv', {module:'viewphoto',action:'click',shopid:'24928984',categoryid:'185'}]);"> </a> <div class="img-part"> <div id="bannerSlide" class="over-hidden" style="visibility: visible;"> <div class="swipe-wrap"> <div class="img-item" data-index="0"><img src="//p0.meituan.net/wedding/7e24847608a706cb10bf2dd1da03273b1059646.jpg%40640w_360h_1e_1c_1l_85q%7Cwatermark%3D0" alt="VIA婚礼电影"></div> <div class="img-item" data-index="0"><img data-lazyload="//p1.meituan.net/wedding/e78e28cdd4e0a5233accf7e168a26370927987.jpg%40640w_360h_1e_1c_1l_85q%7Cwatermark%3D0" alt="VIA婚礼电影"></div> <div class="img-item" data-index="0"><img data-lazyload="//p0.meituan.net/wedding/fb24699bbbbebf9a147d82ef5f05b16e812521.jpg%40640w_360h_1e_1c_1l_85q%7Cwatermark%3D0" alt="VIA婚礼电影"></div> <div class="img-item" data-index="0"><img data-lazyload="//p0.meituan.net/wedding/0a4bf2e39240e1d773d102ad69a15159658204.jpg%40640w_360h_1e_1c_1l_85q%7Cwatermark%3D0" alt="VIA婚礼电影"></div> <div class="img-item" data-index="0"><img data-lazyload="//p0.meituan.net/wedding/e24aef07ae9585925b7ec2798caf4d5d545288.jpg%40640w_360h_1e_1c_1l_85q%7Cwatermark%3D0" alt="VIA婚礼电影"></div> </div> </div> <ul class="circles"> <li class="on"></li> <li></li> <li></li> </ul> </div> </article> <article class="text"> <h1 class="shopname">VIA婚礼电影</h1> <p> <span class="star star-40"></span> <span class="des">52条</span> <span class="line">|</span> <span class="aver">人均¥4550</span> </p> </article> </section> <section class="info-details"> <p class="top-border-height"></p> <article class="tel bottom-border"> <a id="telphone" href="tel:02765024020" onclick="_hip.push(['mv', {module:'mshopinfoq_tel',action:'click',shopid:'24928984' }]);lx_headphone();" > <i class="i-tel"></i>65024020<span class="tips">到店请提前预约</span><i class="arrow-ent right"></i> </a> </article> <a href="/shop/24928984/map" onclick="_hip.push(['mv', {module:'mshopinfoq_address',action:'click',shopid:'24928984'}]);lx_address();" > <article class="add bottom-border"> <i class="i-add"></i>江汉路宝利金国际广场A座822室<i class="arrow-ent right"></i> </article> </a> </section> <section class="pop-window" id="popWindow"> <h3>确认提示</h3> <div class="content"> <p>当前号码:65024020</p> <div class="btn-area Fix"> <button class="J-cancel button cancelbtn" onclick="_hip.push(['mv', {module:'actionbar_tel_cancel',action:'click',shopid:'24928984'}]);" >取消</button> <a href="tel:02765024020" class="J-call button callbtn" onclick="_hip.push(['mv', {module:'actionbar_tel_accept',action:'click',shopid:'24928984'}]);" >拨号</a> </div> </div> </section> <div class="pop-mask" id="popMask"></div> <!-- 新增商户服务楼层 16-02-23 shaochuanhe --> <section class="interest-details J_midas-21004"></section> <section class="hotsales-details"> <p class="top-border-height"></p> <ul class="con"> <li> <a href="/wed/mobile/shop/24928984/product/1233971" onclick="_hip.push(['mv', {module:'mshopinfoq_product',action:'click',shopid:'24928984',index:'0'}]);" > <img data-lazyload="//p0.meituan.net/wedding/bc5e6f750cc1176fd2fa0059250da9ed961567.jpg%40280w_210h_1e_1c_1l%7Cwatermark%3D0"> <h4>「总监高级档」婚礼摄像三机位(含小摇臂)</h4> <p> <mark>¥6800</mark> <span>¥6800</span> </p> </a> </li> <li> <a href="/wed/mobile/shop/24928984/product/1168008" onclick="_hip.push(['mv', {module:'mshopinfoq_product',action:'click',shopid:'24928984',index:'1'}]);" > <img data-lazyload="//p0.meituan.net/wedding/6b319814085ce8a1c327aa55794ba8d9767913.jpg%40280w_210h_1e_1c_1l%7Cwatermark%3D0"> <h4>东湖会所婚礼集锦『总监双机』</h4> <p> <mark>¥4800</mark> <span>¥4800</span> </p> </a> </li> <li> <a href="/wed/mobile/shop/24928984/product/1167708" onclick="_hip.push(['mv', {module:'mshopinfoq_product',action:'click',shopid:'24928984',index:'2'}]);" > <img data-lazyload="//p1.meituan.net/wedding/68920610c7885333ecbeed8a7a92fd731037427.jpg%40280w_210h_1e_1c_1l%7Cwatermark%3D0"> <h4>婚前MV+婚礼豪华套餐档</h4> <p> <mark>¥9800</mark> <span>¥9800</span> </p> </a> </li> <li> <a href="/wed/mobile/shop/24928984/product/1164712" onclick="_hip.push(['mv', {module:'mshopinfoq_product',action:'click',shopid:'24928984',index:'3'}]);" > <img data-lazyload="//p0.meituan.net/wedding/152f14468329801a8f4b1da39912c6e2700902.jpg%40280w_210h_1e_1c_1l%7Cwatermark%3D0"> <h4>「总监档」婚礼摄像双机位</h4> <p> <mark>¥4800</mark> <span>¥4800</span> </p> </a> </li> </ul> <p class="bottom-border-height"></p> </section> <section class="comment-details"> <p class="top-border-height"></p> <article class="tit"> <a href="/shop/24928984/review_all" onclick="_hip.push(['mv', {module:'mshopinfoq_viewreview',action:'click',shopid:'24928984'}]);lx_review();" > <h3>用户点评(18)<i class="arrow-ent right"></i></h3> </a> <p class="bottom-border-height"></p> </article> <article> <a class="comment-list" href="/shop/24928984/review_all" onclick="_hip.push(['mv', {module:'mshopinfoq_viewreview',action:'click',shopid:'24928984'}]);lx_review();" > <img src="https://p1.meituan.net/userheadpicbackend/f817a0e19cba7a274b44a18fd5f11ab459248.jpg%40120w_120h_1e_1c_1l%7Cwatermark%3D0" class="user-pic"> <figure class="comment"> <figcaption class="username">减肥中的珺珺</figcaption> <p class="info"> <span class="star star-50"></span> </p> <p class="comment-entry"> 婚礼准备和各项选择都是自己去跑的(除了酒店),当时下班过去探店,一工作室的帅哥啊!(我绝对不是因为这个定的)。<br/>看过他们几个片子,觉得还不错,也当场说了一下自己的想法和需求,价格比那种婚庆里面包的当然... </p> </figure> </a> </article> <p class="bottom-border-height"></p> </section> <section class="sign-details"> <p class="top-border-height"></p> <a href="/shop/24928984/photos" onclick="_hip.push(['mv', {module:'mshopinfoq_memalbum_more',action:'click',shopid:'24928984'}]);lx_album();" > <span class="title-item">会员相册<i class="arrow-ent right"></i></span> </a> <p class="bottom-border-height"></p> </section> <section class="sign-details"> <p class="top-border-height"></p> <a href="/shop/24928984/msgwall" onclick="_hip.push(['mv', {module:'mshopinfoq_viewcheckin',action:'click',shopid:'24928984'}]);" > <span class="title-item">网友签到(1)<i class="arrow-ent right"></i></span> </a> <p class="bottom-border-height"></p> </section> <section class="shopinfor-details"> <p class="top-border-height"></p> <article class="tit"> <a href="/wed/mobile/shopbrief/24928984" onclick="_hip.push(['mv', {module:'mshopinfoq_shopprofile',action:'click',shopid:'24928984'}]);lx_shopinfo();"> <h3 class="border-bottom-gray">商户信息<i class="arrow-ent right"></i></h3> </a> <p class="bottom-border-height"></p> </article> <article class="sersice"> <p>营业时间:周一至周日 09:00-12:30 14:30-18:30</p> </article> <p class="bottom-border-height"></p> </section> <footer class="footer"> <a href="javascript:window.location='/my'" title="">我的</a><em>|</em> <a href="javascript:window.location='/history'" title="">最近浏览</a><em>|</em> <a href="javascript:window.location='/shop/addshop'">添加商户</a><em>|</em> <a href="javascript:window.location='/feedback'" title="">意见反馈</a> <br> <a id="j-computer" href="https://www.dianping.com" title="">电脑版</a><em>|</em> <a onclick="document.cookie='wapredirecttom=1; domain=.dianping.com; path=/';" href="https://wap.dianping.com" title="">标准版</a><em>|</em> <a id="F_download" href="javascript:void(0)" title="">客户端</a> <br> <p class="copyright">copyright ©2015 dianping.com</p> </footer> <!-- gdajag--> <script> _hip.push(['mv', {module:'mshopinfoq_nonpaid',action:'browse',shopid:'24928984',note:''}]); </script> <script> var DATA = { cooperate: false, shopId: 24928984, shopName: 'VIA\u5A5A\u793C\u7535\u5F71', shopType: 55, cityId: 16, userId: 0, slotId: 21004, successUrl:'/wed/mobile/booking/wedBookingSuccess/shopId=24928984', shareUrl: 'https://m.dianping.com/shop/24928984', sharePic: '//p0.meituan.net/wedding/7e24847608a706cb10bf2dd1da03273b1059646.jpg%40120w_120h_1e_1c_1l_85q%7Cwatermark%3D0', shareDesc: 'VIA\u5A5A\u793C\u7535\u5F71', shareTitle: '商户详情', templateKey: 'ShopBottomForM', resultType: 'DTO', couponAttractUser:'0', clientSource:'0', bookingType:0, channel:0 }; </script> <div id="pop-top-main-share" class="pop-main-wrap hide"></div> <!--TODO 领券时输入手机号的弹框s--> <div class="overlay"></div> <div class="pop-box pop-send-SMS J_pop-send-SMS"> <div class="pop-hd">请输入手机号码</div> <div class="pop-bd"> <input type="number" class="input-num" value="" maxlength="11"> <p class="msg"></p> </div> <div class="pop-ft"> <button class="btn btn-cancel">取消</button> <button class="btn btn-primary">确定</button> </div> </div> <div class="tip-msg J_tip"></div> <!--领券时输入手机号的弹框end--> <script type="text/javascript" src="//www.dpfile.com/m/js/app/dianping/zepto.min.2ace041cc63911887f0ea7a3a3b724a2.js"></script> <script type="text/javascript" src="//www.dpfile.com/s/j/app/baby/common/midas.min.9a42c07defc75eaa44dbd4f6bc7502e0.js"></script> <script type="text/javascript" src="//www.dpfile.com/s/j/app/baby/common/swipe2.min.74ed8a11dd59fe1381acc322c04039dc.js"></script> <script type="text/javascript" src="//www.dpfile.com/s/j/app/baby/mobile/shop-wedding.min.5b1de8eb44fcefc09508664e434b043e.js"></script> <script type="text/javascript" src="//www.dpfile.com/s/j/app/baby/mobile/coupon_promo.min.2edce34e43eb550f49d3be369157afd4.js"></script> <script type="text/javascript"> window.addEventListener('load', function(){ setTimeout(function(){ var scripts = ["//www.dpfile.com/hls/hippo3.min.d30bc6de2d551d2b3f684d5486e0fedb.js", "//www.dpfile.com/s/j/app/mwedding/plugins/share.min.a03af364a14e4ffd4d6e27cc547dd5ee.js", "https://www.dpfile.com/mod/dpapp/1.7.0/src/standalone.js"]; scripts.forEach(function(src){ console.log(src); var script = document.createElement('script'); script.src = src; document.head.appendChild(script); }); }, 0); }); </script> <script src="//analytics.meituan.net/analytics.js" type="text/javascript" charset="utf-8" async defer></script> </body> </html>
大众点评手机号/地址
2018-01-13T01:49:16.000Z
the tag must be a minumum of 3 characters long so we don't catch any BR, HR, etc.
<((\w{3,100})+[^<>]+)\s\/>
<?xml version="1.0" encoding="UTF-8"?><feed xmlns="http://www.w3.org/2005/Atom" xmlns:newton="http://www.newtonsoftware.com" version="1.0"> <title>Newton Feed</title> <entry> <title>Technical Project Manager</title> <link rel="alternate" href="http://www.sencha.com/company/careers/?gnk=job&gni=8a29a0184c1c557d014c2456d58b6eaf" /> <category term="Consulting & Training (Services)" /> <author> <name>United States Redwood City CA 94063</name> </author> <id>8a29a0184c1c557d014c2456d58b6eaf</id> <updated>2015-04-17T18:27:41Z</updated> <published>2015-03-23T22:41:40Z</published> <summary type="html"><div><div>The Technical Project Manager will support the Global Professional Services organization in their quest to provide unparalleled service to their clients.</div><div>&nbsp;</div><div>The Technical Project Manager must have 5-10 years of experience in IT or related field, who can work with customers to gather and understand technical requirements, oversee estimation of technical tasks, define statements of work, manage client scope, manage client relationship on a day-to-day basis, lead teams in task completion, and report status in functional, technical, risk, and financial metrics.</div><div>&nbsp;</div><div>They must leverage their technical backgrounds and strong business management experience to provide clear communications between a number of different groups from within and without the company. This will be a key-contributing factor to their success in the technology centric projects they will undertake.&nbsp;</div><div>&nbsp;</div><div>Many of the projects will require a cross functional approach which involves variety of players across the organization and within client companies. The Technical Project manager must bring a cohesive team together, clarify the goal of the project and keep all of the team members focused on the business objectives to insure that projects are completed on time with the desired results.</div><div>&nbsp;</div><div>The Technical Project Manager will often times work on a number of simultaneous projects, with different timelines and must utilize a strong management approach to maintaining the correct priorities to each of the projects. They must demonstrate a commitment to success on each project and drive to meet the clients’ needs along with a sense of urgency and ownership to drive project to successful completion</div><div>&nbsp;</div><div>&nbsp;</div><div><b>ESSENTIAL SKILLS AND COMPETENCIES:&nbsp;</b></div><div>&nbsp;</div><div>Technical Project Management tasks include, but not limited to:</div><ul> <li> <div>5 -10 years of experience in IT or related field</div> </li> <li> <div>Facilitating setting of technical, functional and business requirements</div> </li> <li> <div>Defining project scope, deliverables, schedules, budgets and tasks list</div> </li> <li> <div>Conducting project kickoff, steering committee, and team meetings</div> </li> <li> <div>Conducting Brainstorming Sessions and other project meeting facilitation</div> </li> <li> <div>Estimating duration and resource requirements</div> </li> <li> <div>Developing detailed project plans including resource plans</div> </li> <li> <div>Working with functional and resource managers to acquire needed resources</div> </li> <li> <div>Tracking/managing projects from initiation to successful completion</div> </li> <li> <div>Identifying and escalating issues</div> </li> <li> <div>Communicating project status</div> </li> <li> <div>Resolving project issues, problems, and changes</div> </li> <li> <div>Leading projects to overall success</div> </li> <li> <div>Familiarity with technologies such as Javascript, JSON, CSS, HTML, and WebKit</div> </li> <li> <div>Startup experience preferred</div> </li> <li> <div>Bachelor’s degree in a technology field and PMP/Scrum certifications preferred</div> <div>&nbsp;</div> <div>&nbsp;</div> <div>&nbsp;</div> <div><b>LIMITATIONS AND DISCLAIMER:</b></div> <div>&nbsp;</div> <div>All job requirements are subject to possible modification to reasonably accommodate individuals with disabilities. Some requirements may exclude individuals who pose a direct threat or significant risk to the health and safety of themselves or other employees.</div> <div>This job description in no way states or implies that these are the only duties to be performed by the employee occupying this position. Employees will be required to follow any other job-related instructions and to perform other job-related duties requested by their supervisor in compliance with Federal and State Laws.</div> <div>&nbsp;</div> <div>Requirements are representative of minimum levels of knowledge, skills and/or abilities. To perform this job successfully, the employee must possess the abilities or aptitudes to perform each duty proficiently. Continued employment remains on an “at-will” basis.</div> <div>&nbsp;</div> </li></ul></div></summary> <newton:jobId>343US</newton:jobId> <newton:openings>0</newton:openings> <newton:department>Consulting & Training (Services)</newton:department> <newton:location>Redwood City</newton:location> <newton:priority>Normal</newton:priority> <newton:country>United States</newton:country> <newton:state>CA</newton:state> <newton:postal_code>94063</newton:postal_code> </entry> <entry> <title>Sales Director, East Region</title> <link rel="alternate" href="http://www.sencha.com/company/careers/?gnk=job&gni=8a3218144b0ab023014b567eb8a16b17" /> <category term="Sales" /> <author> <name>United States Remote</name> </author> <id>8a3218144b0ab023014b567eb8a16b17</id> <updated>2015-03-19T18:36:07Z</updated> <published>2015-02-05T04:44:41Z</published> <summary type="html"><div><div>Sencha is seeking talented and experienced Sales Director to join our Sales organization.</div><div>Sencha equips developers with frameworks, tools, and services to build highly functional and engaging Web application experiences using HTML5 and JavaScript. The company’s flagship product, Ext JS, is a cross-browser JavaScript framework for building rich internet applications. It includes high-performance, customizable UI building blocks, a well-architected, extensible component model, and an intuitive API. More than one million developers worldwide?—?representing more than 150,000 companies?—?use the Sencha family of software to build amazing application experiences.</div><div>&nbsp;</div><div>Responsibilities include: develop and execute plans to drive major opportunities in your region, achieve quarterly objectives, and provide accurate and timely reports/forecasts. This is an enterprise, outside sales position, with regional territory management of direct customers. You will be part of a focused team with the chance to make an impact, within a growth company.</div><h5><strong>Responsibilities</strong></h5><ul> <li> <div>Ability to function as a team player, with little tactical supervision</div> </li> <li> <div>Build and maintain a sales pipeline of 3X quarterly quota</div> </li> <li> <div>Strong work ethic: “Do what ever it takes” attitude to job and sales campaigns</div> </li> <li> <div>Intense, hungry, driven personality who must have a track record of winning</div> </li> <li> <div>Professional, confidence-inspiring business development personality, style and presence</div> </li> <li> <div>Proven track record of closing deals in complex software/professional services sales campaigns</div> </li> <li> <div>Proven, effective written and verbal presentation skills</div> </li> <li> <div>Able to motivate others through enthusiasm, passion and empathy in a team environment</div> </li> <li> <div>Serve as team-lead with pre-sales technical and inside sales</div> </li></ul><h5><strong>Minimum Requirements</strong></h5><ul> <li> <div>6 to 10 plus years sales experience selling license software solutions within large enterprise accounts.</div> </li> <li> <div>Demonstrates a successful track record of meeting and exceeding quotas of $2M plus in license revenue over the past five years.</div> </li> <li> <div>Experience &amp; proven track record in selling/presenting to "C", Line of Business, Software development and IT Management levels</div> </li> <li> <div>Superior business and negotiation skills</div> </li> <li> <div>Knowledge and experience in software development tools or infrastructure</div> </li> <li> <div>Knowledge and experience in OSS software and Web 2.0</div> </li> <li> <div>Knowledge and experience in MDM solutions, security, mobile device platforms and mobility a plus</div> </li> <li> <div>Experience in the Financial, Retail and Saas vertical is preferred</div> </li> <li> <div>Execute plans to increase product exposure &amp; identify key market opportunities and growth areas within assigned region&nbsp;</div> </li> <li> <div>Comfortable in selling &amp; demonstrating technical products to large and small audiences</div> </li> <li> <div>Able to structure complex sales campaigns</div> </li> <li> <div>Experience in Sales Methodologies (e.g.: SPIN, Miller Heiman, Solutions Selling)</div> </li> <li> <div>Strong prospecting, qualifying, closing and managing skills</div> </li> <li> <div>Excellent communication, proven presentation/demonstration and customer service skills</div> </li></ul><h5><strong>Minimum Experience Required</strong></h5><ul> <li>10 years of computer enterprise software sales experience</li> <li>BA/BS in relevant field required</li></ul><h5><strong>Travel Required</strong></h5><div>&nbsp;</div><div>&nbsp;</div></div></summary> <newton:jobId>342US</newton:jobId> <newton:openings>1</newton:openings> <newton:department>Sales</newton:department> <newton:location>Remote</newton:location> <newton:priority>Normal</newton:priority> <newton:country>United States</newton:country> <newton:state /> <newton:postal_code /> </entry> <entry> <title>Technical Trainer</title> <link rel="alternate" href="http://www.sencha.com/company/careers/?gnk=job&gni=8a87142e4b0ab094014b332b30d131f4" /> <category term="Consulting & Training (Services)" /> <author> <name>United States Remote</name> </author> <id>8a87142e4b0ab094014b332b30d131f4</id> <updated>2015-03-19T18:29:43Z</updated> <published>2015-02-03T21:07:24Z</published> <summary type="html"><div><div><b>POSITION OVERVIEW:&nbsp;</b></div><div>&nbsp;</div><div>Sencha is looking for outstanding Technical Trainers with excellent technical instruction, web development, and curriculum authoring skills. As a member of the Sencha Professional Services and Training team, the Technical Trainer is an outward-facing expert on Sencha development frameworks who develops and delivers compelling technical courses that enable users of Sencha products to be effective as quickly as possible. The Technical Trainer will develop and deliver courses on Ext JS Development, Sencha Touch, and possibly Sencha GXT. This position can be located anywhere in the U.S. or internationally in Europe, telecommute is OK.</div><div>&nbsp;</div><div>&nbsp;</div><div><b>ESSENTIAL DUTIES / RESPONSIBILITIES:&nbsp;</b></div><div>&nbsp;</div><ul> <li>Design, develop, and deliver high quality technical courses to software developer audiences covering web and mobile application development using Sencha products such as Sencha Touch, Ext JS, Sencha GXT, and Architect.</li> <li>Develop training schedules in conjunction with partners and customers</li> <li>Learn, understand, and express proper positioning of Sencha products vs. competitive offerings in the course of training delivery.</li> <li>Provide feedback on product features and priorities to the Sencha product management and engineering teams</li> <li>Develop sample applications, proofs-of-concept, and demonstrations to show the clear value of Sencha products, for training purposes</li> <li>Assist the Sencha marketing team by writing occasional blogs and technical articles and through delivering technical presentations at conferences</li> <li>Assist in planning the overall Sencha technical curriculum plan.</li> <li>Operate independently; managing classroom, software, and network setup and communicating with customers to ensure that training goes smoothly.</li></ul><div>&nbsp;</div><div><b>ESSENTIAL EDUCATION / EXPERIENCE:</b></div><div>&nbsp;</div><ul> <li>A bachelor’s degree is required – with a major in computer science or another technical discipline such as engineering preferred.</li> <li>5 years developing and delivering technical training curriculum for web and/or mobile application developers.</li> <li>Successful track record in development of online self-paced training programs using technologies like video, web applications, and podcasts.</li> <li>Web and/or mobile application development experience.</li> <li>Well-rounded individual, with demonstrated ability to operate independently in new environments.</li> <li>Impressive technical foundation as well as a proven history of successful interaction with customers in technical education contexts.</li> <li>Results-oriented with solid project management skills.</li> <li>Experience with technical certification programs and promotion of training events is a plus.</li> <li>Candidates selected for interviews should expect a technical discussion concerning their experience in user interface design, JavaScript, CSS, HTML/HTML5, and Ext JS, as well as overall technical reasoning capability.</li></ul><div>&nbsp;</div><div>&nbsp;</div><div><b>ESSENTIAL SKILLS AND COMPETENCIES:&nbsp;</b></div><div>&nbsp;</div><ul> <li>Ability to develop applications in JavaScript, HTML, CSS, AJAX, XML, JSON, Java, Ext JS, Sencha GXT or related technologies such as jQuery, YUI, GWT, or Flex.</li> <li>Solid understanding of Rich Internet Applications, their business value, and how they’re built</li> <li>Mobile application development training experience is a plus.</li> <li>Installation, configuration, and management of web servers like Apache or IIS.</li> <li>Working knowledge of database architectures, SQL and ability to interpret ERDs and other relational specifications is useful.</li> <li>Accountability and a strong customer service ethos are essential prerequisites for this critical role. An ability to achieve results while operating independently with minimal guidance is a must.</li> <li>Excellent written &amp; oral communication with strong presentation skills</li></ul><div><b>Travel:</b></div><div>&nbsp;</div><div>National and/or international travel will be required 20-40% of the time depending on project activity.</div><div>&nbsp;</div><div><b>LIMITATIONS AND DISCLAIMER</b></div><div>All job requirements are subject to possible modification to reasonably accommodate individuals with disabilities. Some requirements may exclude individuals who pose a direct threat or significant risk to the health and safety of themselves or other employees. This job description in no way states or implies that these are the only duties to be performed by the employee occupying this position. Employees will be required to follow any other job-related instructions and to perform other job-related duties requested by their supervisor in compliance with Federal and State Laws.</div><div>&nbsp;</div><div>Requirements are representative of minimum levels of knowledge, skills and/or abilities. To perform this job successfully, the employee must possess the abilities or aptitudes to perform each duty proficiently. Continued employment remains on an “at-will” basis.</div><div>&nbsp;</div></div></summary> <newton:jobId>341US</newton:jobId> <newton:openings>1</newton:openings> <newton:department>Consulting & Training (Services)</newton:department> <newton:location>Remote</newton:location> <newton:priority>Normal</newton:priority> <newton:country>United States</newton:country> <newton:state /> <newton:postal_code /> </entry> <entry> <title>Sr. Developer Relations Manager</title> <link rel="alternate" href="http://www.sencha.com/company/careers/?gnk=job&gni=8a29a0184afa3ea8014b04a34db81b69" /> <category term="Marketing" /> <author> <name>United States Redwood City CA 94063</name> </author> <id>8a29a0184afa3ea8014b04a34db81b69</id> <updated>2015-03-19T18:28:55Z</updated> <published>2015-01-20T00:59:48Z</published> <summary type="html"><div><b style="line-height: 1.6em;">POSITION OVERVIEW:</b></div><div>&nbsp;</div><div>As the Sencha developer relations manager, you'll be responsible for activities that inspire enterprise developers to engage with our technologies, and that educate and enable them to innovate and achieve success designing and developing HTML5 apps for mobile, tablet, and desktop environments. You are a compelling speaker, able to create robust technical content, and trusted web technology expert, able to effectively evangelize Sencha with deep credibility, coder-to-architect level development knowledge, and first-hand experience. You're comfortable presenting at conferences and industry events, creating demos and code samples, writing blog entries/books/articles, producing and contributing to open-source projects, and serving as key technical spokesperson. Successful evangelists often transition from professional services or consulting, training, technical product marketing, product management, or similar backgrounds</div><div>&nbsp;</div><div><b>ESSENTIAL DUTIES / RESPONSIBILITIES:&nbsp;</b></div><div>&nbsp;</div><div>· Evangelize Sencha products and technologies via interactions with the global developer community, including in-person events, blogs, articles, discussion forums, code samples, newsletters and webinars.</div><div>· Work with marketing leadership, engineering, and product managers to drive adoption of our technologies, and use of best practices in the developer community.</div><div>· Develop prototypes and demos showcasing the latest Sencha tools and technologies.</div><div>· Participate in architectural and design discussions with highly strategic customers and partners to speed their adoption and ensure best practices during implementation.</div><div>·Work closely with internal product and engineering teams to comprehend and influence upcoming platform technologies, features and tools.</div><div>·Develop and execute on strategy around both competitive and complementary tools and technologies.</div><div>·Provide live support to strategic events and marketing activities in the areas of product demonstrations and speaking engagements.</div><div>· Create and publish thought-leading commentary and opinion, as well demo assets, video materials and web content.</div><div>· Help establish and nurture influencers and "most valuable players" within the ecosystem.</div><div>· Publish content and code that allow developers, partners and customers to quickly understand and utilize our tools and technologies.</div><div>· Competencies for Success.</div><div>&nbsp;</div><div><b>ESSENTIAL SKILLS AND COMPETENCIES:&nbsp;</b></div><div>&nbsp;</div><div>· BA/BS in Computer Science or similar technical degree, or equivalent experience (many great evangelists are self-taught).</div><div>· 3-5+ years work experience as a software developer, architect, technology evangelist or advocate, consultant, or product manager for relevant web technologies.</div><div>· Passionate and knowledgeable about exploring and experimenting with the latest developer technologies and standards, and experience building thriving developer communities.</div><div>· Strong technical background and application development experience, including proven app dev abilities around JavaScript/ActionScript, HTML5, and related open standards technologies.</div><div>· Adept at object-oriented programming, MVC architectures, and complex app dev; experience with modern APIs and protocols (SOAP, REST, JSON).</div><div>· Experience with common enterprise integration patterns (SAP, Microsoft, Oracle, Salesforce, etc.) highly desirable.</div><div>· Excellent presentation, demonstration, and inter-personal communication skills; experienced speaker at industry events.</div><div>· Experience working with technology press, online journalists and bloggers.</div><div>· Strong user experience skills, with experience architecting solutions from database to user interface.</div><div>· Deep analytical skills enabling comprehension and development of complex business and technical issues, topics and plans.</div><div>· Methodical and organized; able to manage multiple opportunities, projects and priorities concurrently.</div><div>· Comfortable tracking and contributing to the developer technology blogosphere and other online forums, mailing lists, and newsgroups.</div><div>· Talented at explaining complex topics clearly and concisely, and effective at providing practical guidance.</div><div>&nbsp;</div><div><b>Travel:</b></div><div>&nbsp;Ability to travel internationally up to 50%</div><div>&nbsp;</div><div>LIMITATIONS AND DISCLAIMER</div><div>All job requirements are subject to possible modification to reasonably accommodate individuals with disabilities. Some requirements may exclude individuals who pose a direct threat or significant risk to the health and safety of themselves or other employees.</div><div>This job description in no way states or implies that these are the only duties to be performed by the employee occupying this position. Employees will be required to follow any other job-related instructions and to perform other job-related duties requested by their supervisor in compliance with Federal and State Laws.</div><div>&nbsp;</div><div>Requirements are representative of minimum levels of knowledge, skills and/or abilities. To perform this job successfully, the employee must possess the abilities or aptitudes to perform each duty proficiently. Continued employment remains on an “at-will” basis.</div><div>&nbsp;</div><div>&nbsp;</div></summary> <newton:jobId>336CA</newton:jobId> <newton:openings>1</newton:openings> <newton:department>Marketing</newton:department> <newton:location>Redwood City</newton:location> <newton:priority>Normal</newton:priority> <newton:country>United States</newton:country> <newton:state>CA</newton:state> <newton:postal_code>94063</newton:postal_code> </entry> <entry> <title>Software Engineer - GXT</title> <link rel="alternate" href="http://www.sencha.com/company/careers/?gnk=job&gni=8a8725d0499627f501499c304c96348c" /> <category term="Engineering" /> <author> <name>United States Remote</name> </author> <id>8a8725d0499627f501499c304c96348c</id> <updated>2015-03-19T18:28:25Z</updated> <published>2014-11-25T19:16:25Z</published> <summary type="html"><div><div>POSITION OVERVIEW:</div><div>&nbsp;</div><div>As a Sencha GXT Software Engineer, you will work on Java versions of Sencha application frameworks. GXT is a complete front-end application framework for desktop applications that is used by some of the largest companies in the Fortune 500.</div><div><br />&nbsp;</div><div>ESSENTIAL DUTIES / RESPONSIBILITIES:</div><div>·&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Build Java-based versions of Sencha UI frameworks, with a focus on performance, maintainability, accessibility, and Enterprise quality</div><div>·&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Work in a collaborative environment with product management, QA and documentation to create easy to use, efficient and powerful features</div><div>·&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Create tests, demos and documentation to help users take advantage of the features you create</div><div>&nbsp;</div><div>ESSENTIAL EXPERIENCE/EDUCATION:&nbsp;</div><div>·&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Significant development experience in Java and browser development</div><div>·&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Familiarity with the GWT framework and the Sencha GXT library</div><div>·&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Experience designing modular, object-oriented libraries, toolkits or frameworks</div><div>·&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; User Interface design knowledge</div><div>·&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Bachelors Degree preferred</div><div>·&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Must have the capability to be self-driven and to be effective working under remote management&nbsp;</div><div><br />&nbsp;</div><div>DESIRED SKILLS AND COMPETENCIES:&nbsp;</div><div>·&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Experience working in an Agile development environment</div><div>·&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Significant development experience developing complex business applications in C++, .Net or Java</div><div>·&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Experience with browser based Rich Internet Application (RIA) development</div><div>·&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Experience with server-side Java technologies such as Spring, Struts, or Server Faces</div><div>·&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;Experience with UI frameworks such as XUL, Flex, and XAML a plusExperience with other GWT technologies such as GWT MVP4G, Errai</div><div>·&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Experience with Maven, Ant, and other build tools</div><div><br /><br />&nbsp;</div><div>LIMITATIONS AND DISCLAIMER</div><div>All job requirements are subject to possible modification to reasonably accommodate individuals with disabilities. Some requirements may exclude individuals who pose a direct threat or significant risk to the health and safety of themselves or other employees.</div><div>This job description in no way states or implies that these are the only duties to be performed by the employee occupying this position. Employees will be required to follow any other job-related instructions and to perform other job-related duties requested by their supervisor in compliance with Federal and State Laws.</div><div>&nbsp;</div><div>Requirements are representative of minimum levels of knowledge, skills and/or abilities. To perform this job successfully, the employee must possess the abilities or aptitudes to perform each duty proficiently. Continued employment remains on an “at-will” basis.</div><div>&nbsp;</div></div></summary> <newton:jobId>330US</newton:jobId> <newton:openings>1</newton:openings> <newton:department>Engineering</newton:department> <newton:location>Remote</newton:location> <newton:priority>Normal</newton:priority> <newton:country>United States</newton:country> <newton:state /> <newton:postal_code /> </entry> <entry> <title>Software Engineer - Frameworks</title> <link rel="alternate" href="http://www.sencha.com/company/careers/?gnk=job&gni=8a8725d0481fbddd01485825c0d15c96" /> <category term="Engineering" /> <author> <name>United States Frederick, MD OR Lawrence, KS</name> </author> <id>8a8725d0481fbddd01485825c0d15c96</id> <updated>2015-03-19T18:27:10Z</updated> <published>2014-09-18T05:00:55Z</published> <summary type="html"><div><b><span style="line-height: 1.6em;">POSITION OVERVIEW:</span></b></div><div>As a Sencha Framework Engineer, you will help define, lead and deliver future releases of our JavaScript&nbsp;</div><div>frameworks ( Sencha Ext JS, Sencha Touch, ...) Sencha frameworks are object-oriented JavaScript&nbsp;</div><div>frameworks for building complex, cross-browser web applications for desktop and mobile. They feature&nbsp;</div><div>rich interface capabilities, a clean, extensible component model and are highly optimized for size and&nbsp;</div><div>performance..</div><div>&nbsp;</div><div><b>ESSENTIAL DUTIES / RESPONSIBILITIES:</b></div><div>Work in a collaborative environment with product management, QA and documentation to create easy to&nbsp;</div><div>use, efficient and powerful features. Push your javascript, HTML &amp; CSS capabilities to the max building&nbsp;</div><div>industry leading frameworks. Use your imagination to build the next generation of components that simplify&nbsp;</div><div>building world class web applications.</div><div>&nbsp;</div><div><b>ESSENTIAL EDUCATION / EXPERIENCE:</b></div><div>• BS/MS in Computer Science (or work equivalent)</div><div>• Expert Javascript Coding Skills</div><div>• Strong HTML, CSS knowledge</div><div>• Familiarity with OO Languages and Design</div><div>&nbsp;</div><div><b>DESIRED SKILLS AND COMPETENCIES:</b></div><div>• Experience working in Agile Environment</div><div>• Experience building UI Frameworks</div><div>• Ability to hold your own at the ping-pong table</div><div>• Experience with ExtJS, Sencha Touch</div><div>• Experience with Javascript Frameworks</div><div>• Experience Building Complex Applications with web technologies</div><div>&nbsp;</div><div><b>LOCATION:&nbsp;</b></div><div>• Redwood City, CA (HQ)</div><div>• Frederick, MD</div><div>• Lawrence, KS</div><div>&nbsp;</div><div><h3><b><i>LIMITATIONS AND DISCLAIMER:</i></b></h3><div>All job requirements are subject to possible modification to reasonably accommodate individuals with disabilities.&nbsp; Some requirements may exclude individuals who pose a direct threat or significant risk to the health and safety of themselves or other employees. &nbsp;<span style="line-height: 1.2em;">This job description in no way states or implies that these are the only duties to be performed by the employee occupying this position.&nbsp; Employees will be required to follow any other job-related instructions and to perform other job-related duties requested by their supervisor in compliance with Federal and State Laws.</span></div><div>&nbsp;</div><div>&nbsp;</div><div>Requirements are representative of minimum levels of knowledge, skills and/or abilities.&nbsp; To perform this job successfully, the employee must possess the abilities or aptitudes to perform each duty proficiently.&nbsp; Continued employment remains on an “at-will” basis.</div></div><div>&nbsp;</div><div>&nbsp;</div></summary> <newton:jobId>309CA</newton:jobId> <newton:openings>1</newton:openings> <newton:department>Engineering</newton:department> <newton:location>Frederick, MD OR Lawrence, KS</newton:location> <newton:priority>Normal</newton:priority> <newton:country>United States</newton:country> <newton:state /> <newton:postal_code /> </entry> <entry> <title>Sr. Solutions Engineer</title> <link rel="alternate" href="http://www.sencha.com/company/careers/?gnk=job&gni=8a87142e48c570110148d7d9f72d7d27" /> <category term="Consulting & Training (Services)" /> <author> <name>United States Remote in US or Remote International</name> </author> <id>8a87142e48c570110148d7d9f72d7d27</id> <updated>2014-10-17T00:38:42Z</updated> <published>2014-10-06T23:40:17Z</published> <summary type="html"><div><div><b>POSITION OVERVIEW:</b></div><div>&nbsp;</div><div>As part of the Sencha Professional Services team, the Solutions Engineer provides software development expertise and deep knowledge of best practices in the use of Sencha products directly to our customers as a team member on projects involving development of new web and mobile applications.</div><div>&nbsp;</div><div><b>ESSENTIAL DUTIES / RESPONSIBILITIES:&nbsp;</b></div><div>&nbsp;</div><div>·&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Design and development of web and mobile applications using Sencha products such as Sencha Touch, Ext JS, and Designer.</div><div>·&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Development and execution of testing plans designed to ensure Sencha services engagements meet customers’ technical and business objectives.</div><div>·&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Hands on assistance with user-interface design for customer applications, to include proper selection of Sencha products and their components.</div><div>·&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Familiarity with positioning of Sencha products vs. competitive offerings.</div><div>·&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Providing feedback on product features and priorities to the Sencha product management and engineering teams.</div><div>·&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Writing sample applications, proofs-of-concept and demonstrations to show the clear value of Sencha products, for both sales and training purposes.</div><div>·&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Assist Sencha marketing team by writing occasional blogs and technical Articles or through delivering technical presentations at conferences.</div><div>&nbsp;</div><div><b>ESSENTIAL EDUCATION / EXPERIENCE:</b></div><div>&nbsp;</div><div>· &nbsp; &nbsp; &nbsp; &nbsp;A bachelor's degree is required - with a major in computer science or another technical discipline such as engineering preferred.</div><div>·&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;Minimum 5 years technical work experience developing web and/or mobile applications.</div><div>·&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;The role will demand a well-rounded individual with an impressive technical foundation as well as a proven history of successful interaction with customers in service delivery and selling contexts.</div><div>·&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;Track record as a self-starter with solid time management skills.</div><div>·&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;Candidates selected for interviews expect a thorough technical assessment that will not only examine skills in user interface design, JavaScript, CSS, HTML/HTML5, and Ext JS, but overall technical reasoning capability.</div><div>&nbsp;</div><div><b>ESSENTIAL SKILLS AND COMPETENCIES:&nbsp;</b></div><div>&nbsp;</div><div>·&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Fluency in JavaScript, HTML, CSS, AJAX, XML, JSON, and Ext JS.</div><div>·&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Strong knowledge of modern Rich Internet Application frameworks in general and Ext JS specifically.</div><div>·&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Mobile application development experience is a plus.</div><div>·&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Knowledge of Solaris and/or Linux system administration as well as the networking tier is also a strong plus.</div><div>·&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Installation, configuration, and management Java application servers like BEA-WebLogic, Tomcat, Resin, Jetty, JBoss, Glassfish etc. is a plus.</div><div>·&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Working knowledge of database architectures, SQL and ability to interpret ERDs and other relational specifications is useful.</div><div>·&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Accountability and a strong customer service ethos are essential prerequisites for this critical role. An ability to achieve results while operating independently with minimal guidance is a must.</div><div>·&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; National and/or international travel will be required 30-40% of the time depending on project activity.</div><div>·&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Excellent written and oral communications with good presentation skills.</div><div>&nbsp;</div><div><div><b>LIMITATIONS AND DISCLAIMER:&nbsp;</b></div><div>All job requirements are subject to possible modification to reasonably accommodate individuals with disabilities. Some requirements may exclude individuals who pose a direct threat or significant risk to the health and safety of themselves or other employees. This job description in no way states or implies that these are the only duties to be performed by the employee occupying this position. Employees will be required to follow any other job-related instructions and to perform other job-related duties requested by their supervisor in compliance with Federal and State Laws.</div><div>&nbsp;</div><div>Requirements are representative of minimum levels of knowledge, skills and/or abilities. To perform this job successfully, the employee must possess the abilities or aptitudes to perform each duty proficiently. Continued employment remains on an “at-will” basis.</div><div>&nbsp;</div></div><div>&nbsp;</div></div></summary> <newton:jobId>P320INT</newton:jobId> <newton:openings>1</newton:openings> <newton:department>Consulting & Training (Services)</newton:department> <newton:location>Remote in US or Remote International</newton:location> <newton:priority>Normal</newton:priority> <newton:country>United States</newton:country> <newton:state /> <newton:postal_code /> </entry></feed>" .
Single xml tag close to separated
2015-04-19T01:22:35.000Z
[^\pL\pN!#$%&\'\*\+\-\/\=\?\^\_`\{\|\}\~\@\.\[\]]
unicode email sanitising
2014-04-29T13:04:14.000Z
Parse decimal numbers with optional thousands and/or decimal separator. #i18n #l11n #international
\b((?:\d{1,3})(?:([,. ']?)\d{3})?(?:\2\d{3})*)(?:(?:|(?!\2))([,./])(\d+))?\b
Decimal Number
2014-10-03T05:32:59.000Z
Find all inputs and buttons with class btn.
<(?:button|input)\s+[^>]*class\s*=\s*["'][^"']*btn[^"']*[^>]*>
<button type="submit" class="btn btn-default btn-block"> <input type="button" class="btn btn-default multilingual-helper" value="{{ language.code.upper() }}"/>
Find Bootstrap Buttons
2015-10-15T06:31:40.000Z
A basic and rude email validation
([\w][\w\d\-\.]*)@(([\w\d\-]+)(\.[\w\d\-]+){0,3})
Basic email validation
2015-10-06T13:59:24.000Z
Project\("(?<Guid1>\{[\w-]+\})"\)\s*=\s*"(?<ProjectName>[\w\.]+)",\s*"(?<Path>.+)"\s*,\s"(?<Guid2>\{[\w-]+\})"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Logger.Core", "..\..\Logger\Development\Logger.Core\Logger.Core.csproj", "{07095870-CF46-45F4-8E84-8B3C586BBF44}"
Datacon.Build.ProjectLine
2017-09-04T15:54:45.000Z
Validates dd-Month-year patterns
\d{2}-(January|February|March|April|May|June|July|August|September|October|November|December)-\d{4}
fdsfdf04-February-2016 fdfs
Date Validator Pattern
2016-02-04T04:53:45.000Z
Learning Regex for NLP
age [0-9]*.\n(.*)
Born Elon Reeve Musk June 28, 1971 (age 50) Pretoria, Transvaal, South Africa Citizenship South Africa (1971–present) Canada (1971–present) United States (2002–present) Education University of Pennsylvania (BS, BA) Title Founder, CEO and Chief Engineer of SpaceX CEO and product architect of Tesla, Inc. Founder of The Boring Company and X.com (now part of PayPal) Co-founder of Neuralink, OpenAI, and Zip2 Spouse(s) Justine Wilson ​ ​(m. 2000; div. 2008)​ Talulah Riley ​ ​(m. 2010; div. 2012)​ ​ ​(m. 2013; div. 2016)
NLP_Regex
2023-06-29T15:45:16.000Z