From 40e08de20ad09d7ac0b6c0adde39e737d9cdfe90 Mon Sep 17 00:00:00 2001 From: Martin Middel Date: Tue, 22 Oct 2024 08:47:44 +0200 Subject: [PATCH] Parse StringConstructors No need to process them yet. Parsing them is enough: they are used in source files that I'm trying to process. Look like this: ```xq let $str := ``[My string! With newlines! And `{fn:date()}` interpolation~ ]`` return $str ``` --- src/parsing/prscParser.ts | 54 +++++++++++++++++++++- src/parsing/tokens.ts | 6 +++ test/assets/failingXQueryXTestNames.csv | 25 ---------- test/assets/unrunnableTestCases.csv | 61 ++++++++++++------------- test/specs/parsing/parseScript.tests.ts | 10 ++++ 5 files changed, 99 insertions(+), 57 deletions(-) diff --git a/src/parsing/prscParser.ts b/src/parsing/prscParser.ts index 7f62f52f5..2dcb88137 100644 --- a/src/parsing/prscParser.ts +++ b/src/parsing/prscParser.ts @@ -90,6 +90,7 @@ import { import * as tokens from './tokens'; import { atomicOrUnionType, singleType, typeName } from './typesParser'; import { + char, explicitWhitespace, whitespace, whitespaceCache, @@ -713,6 +714,57 @@ function generateParser(options: { outputDebugInfo: boolean; xquery: boolean }): (x) => ['arrayConstructor', x], ); + const stringConstructorChars: Parser = map( + star( + preceded( + peek( + not( + or([ + tokens.STRING_INTERPOLATION_OPEN, + tokens.STRING_INTERPOLATION_CLOSE, + tokens.STRING_CONSTRUCTOR_CLOSE, + ]), + ['String constructors can not contain interpolation characters'], + ), + ), + char, + ), + ), + (x) => ['stringConstructorChars', x.join('')], + ); + + const stringConstructorInterpolation: Parser = map( + delimited(tokens.STRING_INTERPOLATION_OPEN, expr, tokens.STRING_INTERPOLATION_CLOSE, true), + (ast) => ['stringConstructorInterpolation', ast], + ); + + const stringConstructorContent: Parser = then( + stringConstructorChars, + star( + then(stringConstructorInterpolation, stringConstructorChars, (interpolation, chars) => [ + interpolation, + chars, + ]), + ), + (a, b) => { + const toReturn = [a]; + for (const [interpolation, chars] of b) { + toReturn.push(interpolation, chars); + } + return toReturn; + }, + ); + + const stringConstructor: Parser = map( + delimited( + tokens.STRING_CONSTRUCTOR_OPEN, + stringConstructorContent, + tokens.STRING_CONSTRUCTOR_CLOSE, + true, + ), + (contents) => ['stringConstructor', ...contents], + ); + const keySpecifier: Parser = or([ ncName as Parser, integerLiteral, @@ -986,7 +1038,7 @@ function generateParser(options: { outputDebugInfo: boolean; xquery: boolean }): functionItemExpr, mapConstructor, arrayConstructor, - // stringConstructor, + stringConstructor, unaryLookup, ]); diff --git a/src/parsing/tokens.ts b/src/parsing/tokens.ts index b62e7e7b2..57d972b8b 100644 --- a/src/parsing/tokens.ts +++ b/src/parsing/tokens.ts @@ -233,3 +233,9 @@ export const NAMESPACE_NODE_TEST = token('namespace-node()'); export const ANY_KIND_TEST = token('node()'); export const ITEM_TYPE_TEST = token('item()'); export const EMPTY_SEQUENCE_TEST = token('empty-sequence()'); + +export const BACKTICK = token('`'); +export const STRING_CONSTRUCTOR_OPEN = token('``['); +export const STRING_CONSTRUCTOR_CLOSE = token(']``'); +export const STRING_INTERPOLATION_OPEN = token('`{'); +export const STRING_INTERPOLATION_CLOSE = token('}`'); diff --git a/test/assets/failingXQueryXTestNames.csv b/test/assets/failingXQueryXTestNames.csv index 049247f69..3704e1c84 100644 --- a/test/assets/failingXQueryXTestNames.csv +++ b/test/assets/failingXQueryXTestNames.csv @@ -2641,35 +2641,10 @@ K2-Steps-19,result was not equal K2-Steps-20,result was not equal K2-Steps-7,result was not equal Steps-leading-lone-slash-13,Parse error -string-constructor-001,Parse error -string-constructor-002,Parse error -string-constructor-003,Parse error -string-constructor-004,Parse error -string-constructor-005,Parse error -string-constructor-006,Parse error -string-constructor-007,Parse error -string-constructor-008,Parse error -string-constructor-009,Parse error -string-constructor-010,Parse error -string-constructor-011,Parse error -string-constructor-012,Parse error -string-constructor-013,Parse error -string-constructor-014,Parse error -string-constructor-015,Parse error -string-constructor-016,Parse error -string-constructor-017,Parse error -string-constructor-018,Parse error -string-constructor-019,Parse error string-constructor-020,Parse error -string-constructor-021,Parse error -string-constructor-022,Parse error string-constructor-023,Parse error string-constructor-024,Parse error string-constructor-025,Parse error -string-constructor-026,Parse error -string-constructor-910,Parse error -string-constructor-911,Parse error -string-constructor-912,Parse error try-001,Parse error try-002,Parse error try-003,Parse error diff --git a/test/assets/unrunnableTestCases.csv b/test/assets/unrunnableTestCases.csv index 79a5f4877..3dcc816c4 100644 --- a/test/assets/unrunnableTestCases.csv +++ b/test/assets/unrunnableTestCases.csv @@ -1207,7 +1207,6 @@ fn-root-12,Error: No selector counterpart for: computedDocumentConstructor. fn-root-13,Error: No selector counterpart for: computedDocumentConstructor. fn-root-14,AssertionError: Expected XPath fn:root(fn:exactly-one(/langs[1]/para[1])) to resolve to the given XML. Expected
And now, and forever!
New German Orthography
to equal
And now, and forever!
New German Orthography
fn-root-15,AssertionError: Expected XPath fn:root(/langs[1]/para[1]/@xml:lang) to resolve to the given XML. Expected
And now, and forever!
New German Orthography
to equal
And now, and forever!
New German Orthography
-K-NodeRootFunc-2,AssertionError: expected [Function] to throw error matching /XPTY0004/ but got 'XPST0017: Function Q{http://www.w3.or…' K2-NodeRootFunc-8,Error: No selector counterpart for: computedDocumentConstructor. fn-roundintg1args-1,Error: FOCA0003: can not cast -999999999999999999 to xs:integer, it is out of bounds for JavaScript numbers. fn-roundintg1args-2,Error: FOCA0003: can not cast 830993497117024304 to xs:integer, it is out of bounds for JavaScript numbers. @@ -2462,8 +2461,8 @@ cbcl-cast-gYearMonth-003,AssertionError: expected [Function] to throw an error XQueryComment014,Error: 3: 4: 5: "10" cast as (: type comment :) xs:integer ? ^ 6: 7: = 10 Error: XPST0003: Failed to parse script. Expected end of input at <>:5:44 - 5:45 Constr-compattr-compname-20,Error: XQDY0074: The value "Q{http://example.com/x}y" of a name expressions cannot be converted to an expanded QName. Constr-compattr-compname-21,Error: XQDY0074: The value " Q{}y " of a name expressions cannot be converted to an expanded QName. -Constr-compattr-compname-22,Error: XQDY0074: The value " Q{http://example.com/x}y2023" of a name expressions cannot be converted to an expanded QName. -Constr-compattr-compname-23,Error: XQDY0074: The value "Q{}y2023" of a name expressions cannot be converted to an expanded QName. +Constr-compattr-compname-22,Error: XQDY0074: The value " Q{http://example.com/x}y2024" of a name expressions cannot be converted to an expanded QName. +Constr-compattr-compname-23,Error: XQDY0074: The value "Q{}y2024" of a name expressions cannot be converted to an expanded QName. Constr-compattr-id-2,AssertionError: Expected executing the XPath "element elem {attribute xml:id {" ab c d "}}" to resolve to one of the expected results, but got AssertionError: Expected XPath element elem {attribute xml:id {" ab c d "}} to resolve to the given XML. Expected to equal , AssertionError: expected [Function] to throw an error. K2-ComputeConAttr-34,AssertionError: Expected XPath { attribute name {xs:hexBinary("ff")}, attribute name2 {"content"} } to resolve to the given XML. Expected to equal K2-ComputeConAttr-48,AssertionError: Expected executing the XPath "string(attribute xml:id {" ab c d "})" to resolve to one of the expected results, but got AssertionError: string(attribute xml:id {" ab c d "}): expected ' ab c d ' to equal 'ab c d', AssertionError: expected [Function] to throw an error. @@ -2549,8 +2548,8 @@ cbcl-constr-compcomment-001,AssertionError: expected [Function] to throw an erro cbcl-constr-compcomment-002,AssertionError: expected [Function] to throw an error Constr-compelem-name-20,Error: XQDY0074: The value "Q{http://example.com/x}x" of a name expressions cannot be converted to an expanded QName. Constr-compelem-name-21,Error: XQDY0074: The value "Q{}x" of a name expressions cannot be converted to an expanded QName. -Constr-compelem-name-22,Error: XQDY0074: The value " Q{http://example.com/x}x2023" of a name expressions cannot be converted to an expanded QName. -Constr-compelem-name-23,Error: XQDY0074: The value " Q{}x2023 " of a name expressions cannot be converted to an expanded QName. +Constr-compelem-name-22,Error: XQDY0074: The value " Q{http://example.com/x}x2024" of a name expressions cannot be converted to an expanded QName. +Constr-compelem-name-23,Error: XQDY0074: The value " Q{}x2024 " of a name expressions cannot be converted to an expanded QName. Constr-compelem-name-24,AssertionError: element {" x" || year-from-date(current-date()) || " "} {}: expected false to be true Constr-compelem-constrmod-3,AssertionError: expected [Function] to throw error matching /FORG0001/ but got 'Not implemented: only module imports,…' Constr-compelem-constrmod-4,AssertionError: Expected executing the XPath "declare construction preserve; (element elem {xs:decimal((//decimal[1]))}) cast as xs:integer" to resolve to one of the expected results, but got Error: Not implemented: only module imports, namespace declarations, and function declarations are implemented in XQuery modules, AssertionError: expected [Function] to throw error matching /FORG0001/ but got 'Not implemented: only module imports,…'. @@ -2679,18 +2678,18 @@ contextDecl-043,Error: 1: 2: declare context item as xs:integer externa contextDecl-044,AssertionError: expected [Function] to throw error matching /XPTY0004/ but got '1: declare context item as xs:double…' contextDecl-045,AssertionError: expected [Function] to throw error matching /XPDY0002/ but got '1: declare context item as xs:double…' contextDecl-046,AssertionError: expected [Function] to throw error matching /XQST0099/ but got '1: \n2: declare context item …' -contextDecl-047,[object Object] +contextDecl-047,Error: 2: module namespace mod1="http://www.w3.org/TestModules/libmodule2"; 3: 4: declare context item as xs:date external; ^ Error: XPST0003: Failed to parse script. Expected end of input at <>:4:1 - 4:2 contextDecl-048,Error: Not implemented: only module imports, namespace declarations, and function declarations are implemented in XQuery modules -contextDecl-049,[object Object] -contextDecl-050,[object Object] -contextDecl-051,[object Object] -contextDecl-052,[object Object] +contextDecl-049,Error: 2: module namespace mod1="http://www.w3.org/TestModules/libmodule2"; 3: 4: declare context item as xs:date external; ^ Error: XPST0003: Failed to parse script. Expected end of input at <>:4:1 - 4:2 +contextDecl-050,Error: 2: module namespace mod1="http://www.w3.org/TestModules/libmodule2"; 3: 4: declare context item as xs:date external; ^ Error: XPST0003: Failed to parse script. Expected end of input at <>:4:1 - 4:2 +contextDecl-051,Error: 2: module namespace mod1="http://www.w3.org/TestModules/libmodule2"; 3: 4: declare context item as xs:date external; ^ Error: XPST0003: Failed to parse script. Expected end of input at <>:4:1 - 4:2 +contextDecl-052,Error: 2: module namespace mod1="http://www.w3.org/TestModules/libmodule1"; 3: 4: declare context item as xs:integer := 17; ^ Error: XPST0003: Failed to parse script. Expected end of input at <>:4:1 - 4:2 contextDecl-053,AssertionError: Expected executing the XPath " declare variable $p := "base-uri"; declare variable $f := function-lookup(xs:QName("fn:"||$p), 0); declare context item := $f(); . " to resolve to one of the expected results, but got AssertionError: expected [Function] to throw error matching /XPDY0002/ but got 'Not implemented: only module imports,…', AssertionError: expected [Function] to throw error matching /XQDY0054/ but got 'Not implemented: only module imports,…'. -contextDecl-054,[object Object] +contextDecl-054,Error: 2: module namespace mod1="http://www.w3.org/TestModules/libmodule2"; 3: 4: declare context item as xs:date external; ^ Error: XPST0003: Failed to parse script. Expected end of input at <>:4:1 - 4:2 contextDecl-055,Error: Not implemented: only module imports, namespace declarations, and function declarations are implemented in XQuery modules -contextDecl-056,[object Object] -contextDecl-057,[object Object] -contextDecl-058,[object Object] +contextDecl-056,Error: 2: module namespace mod4="http://www.w3.org/TestModules/libmodule4"; 3: import schema namespace u = "http://www.w3.org/XQueryTest/unionListDefined"; 4: declare context item as u:decimal-or-string external; ^ 5: declare variable $mod4:v := .; Error: XPST0003: Failed to parse script. Expected end of input at <>:4:1 - 4:2 +contextDecl-057,Error: 2: module namespace mod4="http://www.w3.org/TestModules/libmodule4"; 3: import schema namespace u = "http://www.w3.org/XQueryTest/unionListDefined"; 4: declare context item as u:decimal-or-string external; ^ 5: declare variable $mod4:v := .; Error: XPST0003: Failed to parse script. Expected end of input at <>:4:1 - 4:2 +contextDecl-058,Error: 1: 2: module namespace mod5="http://www.w3.org/TestModules/libmodule5"; 3: declare context item as function(xs:integer) as xs:string external; ^ 4: declare variable $mod5:v := .(2); Error: XPST0003: Failed to parse script. Expected end of input at <>:3:1 - 3:2 contextDecl-059,AssertionError: expected [Function] to throw error matching /XPTY0004/ but got 'Not implemented: only module imports,…' contextDecl-060,AssertionError: expected [Function] to throw error matching /XPTY0004/ but got 'Not implemented: only module imports,…' CurlyArray-002,Error: No selector counterpart for: typedArrayTest. @@ -2713,7 +2712,7 @@ decimal-format-17,Error: 1: 2: declare default decimal-format minus-si decimal-format-18,Error: 1: 2: declare default decimal-format minus-sign="_"; ^ 3: format-number(-26931.4,'###,###.###') Error: XPST0003: Failed to parse script. Expected ; at <>:2:40 - 2:41 decimal-format-19,Error: 1: 2: declare decimal-format myminus minus-sign="_"; ^ 3: concat(format-number(-26931.4,'###,###.###','myminus'), '/', 4: format-number(-42857.1,'###,###.###')) Error: XPST0003: Failed to parse script. Expected ; at <>:2:40 - 2:41 decimal-format-20,Error: 1: 2: declare namespace foo="http://foo.ns"; 3: declare decimal-format foo:decimal1 decimal-separator="!" grouping-separator="*"; ^ 4: declare decimal-format decimal1 decimal-separator="*" grouping-separator="!"; 5: format-number(1234.567,'#*###*###!###','foo:decimal1') Error: XPST0003: Failed to parse script. Expected ; at <>:3:46 - 3:47 -decimal-format-21,[object Object] +decimal-format-21,Error: 1: module namespace m = "http://www.w3.org/TestModules/dfd-module-001"; 2: 3: declare decimal-format df001 grouping-separator="'"; ^ 4: 5: declare function m:do() as xs:string Error: XPST0003: Failed to parse script. Expected ; at <>:3:30 - 3:31 decimal-format-31,AssertionError: expected [Function] to throw error matching /XQST0111/ but got 'Not implemented: only module imports,…' decimal-format-32,AssertionError: expected [Function] to throw error matching /XQST0111/ but got 'Not implemented: only module imports,…' decimal-format-33,Error: Not implemented: only module imports, namespace declarations, and function declarations are implemented in XQuery modules @@ -3386,8 +3385,8 @@ string-constructor-006,Error: 1: ( 2: declare variable $n as xs:integer string-constructor-007,Error: 1: ( 2: declare variable $n as xs:integer external := 10; ^ 3: ``[ `{$n}` `{$n+1}` `{$n+2}` ]`` 4: ) instance of xs:string Error: XPST0003: Failed to parse script. Expected -,+,validate,(#,(,#,parent::,ancestor::,preceding-sibling::,preceding::,ancestor-or-self::,..,child::,descendant::,attribute::,self::,descendant-or-self::,following-sibling::,following::,document-node(,element,attribute,schema-element,schema-attribute(,processing-instruction(,processing-instruction(),comment(),text(),namespace-node(),node(),:*,Q,[A-Z_a-z\xC0-\xD6\xD8-\xF6\xF8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD],[\uD800-\uDB7F],/,// at <>:2:17 - 2:18 string-constructor-008,Error: 1: ( 2: declare variable $n external := 10; ^ 3: ``[There were `{$n}` green bottles]`` 4: ) instance of xs:string Error: XPST0003: Failed to parse script. Expected -,+,validate,(#,(,#,parent::,ancestor::,preceding-sibling::,preceding::,ancestor-or-self::,..,child::,descendant::,attribute::,self::,descendant-or-self::,following-sibling::,following::,document-node(,element,attribute,schema-element,schema-attribute(,processing-instruction(,processing-instruction(),comment(),text(),namespace-node(),node(),:*,Q,[A-Z_a-z\xC0-\xD6\xD8-\xF6\xF8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD],[\uD800-\uDB7F],/,// at <>:2:17 - 2:18 string-constructor-009,Error: 1: ( 2: declare variable $n external := 10; ^ 3: ``[There were `{``[at least `{$n}`]``}` green bottles]`` 4: ) instance of xs:string Error: XPST0003: Failed to parse script. Expected -,+,validate,(#,(,#,parent::,ancestor::,preceding-sibling::,preceding::,ancestor-or-self::,..,child::,descendant::,attribute::,self::,descendant-or-self::,following-sibling::,following::,document-node(,element,attribute,schema-element,schema-attribute(,processing-instruction(,processing-instruction(),comment(),text(),namespace-node(),node(),:*,Q,[A-Z_a-z\xC0-\xD6\xD8-\xF6\xF8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD],[\uD800-\uDB7F],/,// at <>:2:17 - 2:18 -string-constructor-010,Error: 1: 2: declare variable $n external := 10; 3: {``[There were `{$n}` green bottles]``} ^ 4: Error: XPST0003: Failed to parse script. Expected -,+,validate,(#,(,#,parent::,ancestor::,preceding-sibling::,preceding::,ancestor-or-self::,..,child::,descendant::,attribute::,self::,descendant-or-self::,following-sibling::,following::,document-node(,element,attribute,schema-element,schema-attribute(,processing-instruction(,processing-instruction(),comment(),text(),namespace-node(),node(),:*,Q,[A-Z_a-z\xC0-\xD6\xD8-\xF6\xF8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD],[\uD800-\uDB7F],/,// at <>:3:12 - 3:13 -string-constructor-011,Error: 1: 2: declare variable $n external := 10; 3: ^ 4: Error: XPST0003: Failed to parse script. Expected -,+,validate,(#,(,#,parent::,ancestor::,preceding-sibling::,preceding::,ancestor-or-self::,..,child::,descendant::,attribute::,self::,descendant-or-self::,following-sibling::,following::,document-node(,element,attribute,schema-element,schema-attribute(,processing-instruction(,processing-instruction(),comment(),text(),namespace-node(),node(),:*,Q,[A-Z_a-z\xC0-\xD6\xD8-\xF6\xF8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD],[\uD800-\uDB7F],/,// at <>:3:12 - 3:13 +string-constructor-010,Error: No selector counterpart for: stringConstructor. +string-constructor-011,Error: No selector counterpart for: stringConstructor. string-constructor-012,Error: 1: ( 2: declare variable $n as xs:integer external := 10; ^ 3: if ($n lt 20) then ``[There were `{$n}` green bottles]`` else ``[There were many green bottles]`` 4: ) instance of xs:string Error: XPST0003: Failed to parse script. Expected -,+,validate,(#,(,#,parent::,ancestor::,preceding-sibling::,preceding::,ancestor-or-self::,..,child::,descendant::,attribute::,self::,descendant-or-self::,following-sibling::,following::,document-node(,element,attribute,schema-element,schema-attribute(,processing-instruction(,processing-instruction(),comment(),text(),namespace-node(),node(),:*,Q,[A-Z_a-z\xC0-\xD6\xD8-\xF6\xF8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD],[\uD800-\uDB7F],/,// at <>:2:17 - 2:18 string-constructor-013,Error: 1: ( 2: declare variable $n as xs:integer external := 10; ^ 3: ``[There were `{$n}` green bottles]``[$n lt 20] 4: ) instance of xs:string Error: XPST0003: Failed to parse script. Expected -,+,validate,(#,(,#,parent::,ancestor::,preceding-sibling::,preceding::,ancestor-or-self::,..,child::,descendant::,attribute::,self::,descendant-or-self::,following-sibling::,following::,document-node(,element,attribute,schema-element,schema-attribute(,processing-instruction(,processing-instruction(),comment(),text(),namespace-node(),node(),:*,Q,[A-Z_a-z\xC0-\xD6\xD8-\xF6\xF8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD],[\uD800-\uDB7F],/,// at <>:2:17 - 2:18 string-constructor-014,Error: 1: ( 2: declare variable $n as xs:integer external := 10; ^ 3: ``[There 4: were `{$n}` green Error: XPST0003: Failed to parse script. Expected -,+,validate,(#,(,#,parent::,ancestor::,preceding-sibling::,preceding::,ancestor-or-self::,..,child::,descendant::,attribute::,self::,descendant-or-self::,following-sibling::,following::,document-node(,element,attribute,schema-element,schema-attribute(,processing-instruction(,processing-instruction(),comment(),text(),namespace-node(),node(),:*,Q,[A-Z_a-z\xC0-\xD6\xD8-\xF6\xF8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD],[\uD800-\uDB7F],/,// at <>:2:17 - 2:18 @@ -3397,16 +3396,16 @@ string-constructor-017,Error: 1: ( 2: declare variable $n as xs:integer string-constructor-018,Error: 1: ( 2: declare variable $n as xs:integer external := 10; ^ 3: ``[There were `{$n, ()}` green bottles]`` 4: ) instance of xs:string Error: XPST0003: Failed to parse script. Expected -,+,validate,(#,(,#,parent::,ancestor::,preceding-sibling::,preceding::,ancestor-or-self::,..,child::,descendant::,attribute::,self::,descendant-or-self::,following-sibling::,following::,document-node(,element,attribute,schema-element,schema-attribute(,processing-instruction(,processing-instruction(),comment(),text(),namespace-node(),node(),:*,Q,[A-Z_a-z\xC0-\xD6\xD8-\xF6\xF8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD],[\uD800-\uDB7F],/,// at <>:2:17 - 2:18 string-constructor-019,Error: 1: ( 2: declare variable $n as xs:integer external := 10; ^ 3: ``[There were ``{$n}`` green bottles]`` 4: ) instance of xs:string Error: XPST0003: Failed to parse script. Expected -,+,validate,(#,(,#,parent::,ancestor::,preceding-sibling::,preceding::,ancestor-or-self::,..,child::,descendant::,attribute::,self::,descendant-or-self::,following-sibling::,following::,document-node(,element,attribute,schema-element,schema-attribute(,processing-instruction(,processing-instruction(),comment(),text(),namespace-node(),node(),:*,Q,[A-Z_a-z\xC0-\xD6\xD8-\xF6\xF8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD],[\uD800-\uDB7F],/,// at <>:2:17 - 2:18 string-constructor-020,Error: 1: ( 2: declare variable $n as xs:integer external := 10; ^ 3: ``[``[There were `{"`{"}``{$n}`}` green bottles`{"]``"}`]`` 4: ) instance of xs:string Error: XPST0003: Failed to parse script. Expected -,+,validate,(#,(,#,parent::,ancestor::,preceding-sibling::,preceding::,ancestor-or-self::,..,child::,descendant::,attribute::,self::,descendant-or-self::,following-sibling::,following::,document-node(,element,attribute,schema-element,schema-attribute(,processing-instruction(,processing-instruction(),comment(),text(),namespace-node(),node(),:*,Q,[A-Z_a-z\xC0-\xD6\xD8-\xF6\xF8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD],[\uD800-\uDB7F],/,// at <>:2:17 - 2:18 -string-constructor-021,Error: 1: 2: matches("""", ``[["']]``) ^ 3: Error: XPST0003: Failed to parse script. Expected end of input at <>:2:16 - 2:17 -string-constructor-022,Error: 1: ``[]`` = "" ^ Error: XPST0003: Failed to parse script. Expected -,+,validate,(#,(,#,parent::,ancestor::,preceding-sibling::,preceding::,ancestor-or-self::,..,child::,descendant::,attribute::,self::,descendant-or-self::,following-sibling::,following::,document-node(,element,attribute,schema-element,schema-attribute(,processing-instruction(,processing-instruction(),comment(),text(),namespace-node(),node(),:*,Q,[A-Z_a-z\xC0-\xD6\xD8-\xF6\xF8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD],[\uD800-\uDB7F],/,// at <>:1:1 - 1:2 -string-constructor-023,Error: 1: ``[` {$n}`]`` = "` {$n}`" ^ Error: XPST0003: Failed to parse script. Expected -,+,validate,(#,(,#,parent::,ancestor::,preceding-sibling::,preceding::,ancestor-or-self::,..,child::,descendant::,attribute::,self::,descendant-or-self::,following-sibling::,following::,document-node(,element,attribute,schema-element,schema-attribute(,processing-instruction(,processing-instruction(),comment(),text(),namespace-node(),node(),:*,Q,[A-Z_a-z\xC0-\xD6\xD8-\xF6\xF8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD],[\uD800-\uDB7F],/,// at <>:1:1 - 1:2 -string-constructor-024,Error: 1: ``[` *`{}`* `]`` = "` ** `" ^ Error: XPST0003: Failed to parse script. Expected -,+,validate,(#,(,#,parent::,ancestor::,preceding-sibling::,preceding::,ancestor-or-self::,..,child::,descendant::,attribute::,self::,descendant-or-self::,following-sibling::,following::,document-node(,element,attribute,schema-element,schema-attribute(,processing-instruction(,processing-instruction(),comment(),text(),namespace-node(),node(),:*,Q,[A-Z_a-z\xC0-\xD6\xD8-\xF6\xF8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD],[\uD800-\uDB7F],/,// at <>:1:1 - 1:2 -string-constructor-025,Error: 1: ``[` *`{(:Nothing here:)}`* `]`` = "` ** `" ^ Error: XPST0003: Failed to parse script. Expected -,+,validate,(#,(,#,parent::,ancestor::,preceding-sibling::,preceding::,ancestor-or-self::,..,child::,descendant::,attribute::,self::,descendant-or-self::,following-sibling::,following::,document-node(,element,attribute,schema-element,schema-attribute(,processing-instruction(,processing-instruction(),comment(),text(),namespace-node(),node(),:*,Q,[A-Z_a-z\xC0-\xD6\xD8-\xF6\xF8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD],[\uD800-\uDB7F],/,// at <>:1:1 - 1:2 -string-constructor-026,Error: 1: ``[ *`{xs:date('2012-05-05')}`* ]`` = " *2012-05-05* " ^ Error: XPST0003: Failed to parse script. Expected -,+,validate,(#,(,#,parent::,ancestor::,preceding-sibling::,preceding::,ancestor-or-self::,..,child::,descendant::,attribute::,self::,descendant-or-self::,following-sibling::,following::,document-node(,element,attribute,schema-element,schema-attribute(,processing-instruction(,processing-instruction(),comment(),text(),namespace-node(),node(),:*,Q,[A-Z_a-z\xC0-\xD6\xD8-\xF6\xF8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD],[\uD800-\uDB7F],/,// at <>:1:1 - 1:2 +string-constructor-021,Error: No selector counterpart for: stringConstructor. +string-constructor-022,Error: No selector counterpart for: stringConstructor. +string-constructor-023,Error: 1: ``[` {$n}`]`` = "` {$n}`" ^ Error: XPST0003: Failed to parse script. Expected ]`` at <>:1:9 - 1:10 +string-constructor-024,Error: 1: ``[` *`{}`* `]`` = "` ** `" ^ Error: XPST0003: Failed to parse script. Expected for,let,some,every,switch,typeswitch,if,insert,delete,rename,replace,copy,-,+,validate,(#,(,#,parent::,ancestor::,preceding-sibling::,preceding::,ancestor-or-self::,..,child::,descendant::,attribute::,self::,descendant-or-self::,following-sibling::,following::,document-node(,element,attribute,schema-element,schema-attribute(,processing-instruction(,processing-instruction(),comment(),text(),namespace-node(),node(),:*,Q,[A-Z_a-z\xC0-\xD6\xD8-\xF6\xF8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD],[\uD800-\uDB7F],/,// at <>:1:9 - 1:10 +string-constructor-025,Error: 1: ``[` *`{(:Nothing here:)}`* `]`` = "` ** `" ^ Error: XPST0003: Failed to parse script. Expected -,+,validate,(#,(,#,parent::,ancestor::,preceding-sibling::,preceding::,ancestor-or-self::,..,child::,descendant::,attribute::,self::,descendant-or-self::,following-sibling::,following::,document-node(,element,attribute,schema-element,schema-attribute(,processing-instruction(,processing-instruction(),comment(),text(),namespace-node(),node(),:*,Q,[A-Z_a-z\xC0-\xD6\xD8-\xF6\xF8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD],[\uD800-\uDB7F],/,// at <>:1:25 - 1:26 +string-constructor-026,Error: No selector counterpart for: stringConstructor. string-constructor-028,Error: 1: ( 2: declare variable $n external := 10; ^ 3: `{``[There were `{{``[at least `{$n}`]``}}` green bottles]``}` 4: ) instance of element(a) Error: XPST0003: Failed to parse script. Expected -,+,validate,(#,(,#,parent::,ancestor::,preceding-sibling::,preceding::,ancestor-or-self::,..,child::,descendant::,attribute::,self::,descendant-or-self::,following-sibling::,following::,document-node(,element,attribute,schema-element,schema-attribute(,processing-instruction(,processing-instruction(),comment(),text(),namespace-node(),node(),:*,Q,[A-Z_a-z\xC0-\xD6\xD8-\xF6\xF8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD],[\uD800-\uDB7F],/,// at <>:2:17 - 2:18 -string-constructor-910,AssertionError: expected [Function] to throw error matching /FOTY0013/ but got '1: \n2: declare variable $n e…' -string-constructor-911,AssertionError: expected [Function] to throw error matching /FOTY0013/ but got '1: \n2: declare variable $n e…' -string-constructor-912,Error: 1: 2: declare variable $n as xs:integer external := 10; 3: ``[There were `{1 to $n}` green bottles]`` ^ 4: = "There were 1 2 3 4 5 6 7 8 9 10 green bottles" Error: XPST0003: Failed to parse script. Expected -,+,validate,(#,(,#,parent::,ancestor::,preceding-sibling::,preceding::,ancestor-or-self::,..,child::,descendant::,attribute::,self::,descendant-or-self::,following-sibling::,following::,document-node(,element,attribute,schema-element,schema-attribute(,processing-instruction(,processing-instruction(),comment(),text(),namespace-node(),node(),:*,Q,[A-Z_a-z\xC0-\xD6\xD8-\xF6\xF8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD],[\uD800-\uDB7F],/,// at <>:3:9 - 3:10 +string-constructor-910,AssertionError: expected [Function] to throw error matching /FOTY0013/ but got 'No selector counterpart for: stringCo…' +string-constructor-911,AssertionError: expected [Function] to throw error matching /FOTY0013/ but got 'No selector counterpart for: stringCo…' +string-constructor-912,Error: No selector counterpart for: stringConstructor. switch-018,AssertionError: Expected XPath let $v := xs:time('00:00:00Z') return switch($v) case xs:time('24:00:00Z') return 1 default return 2 to resolve to 1: expected false to be true typeswitchhc16,Error: XPST0008, The variable i is not in scope. typeswitchhc20,Error: XPST0008, The variable i is not in scope. @@ -3647,7 +3646,7 @@ XQST0068,AssertionError: expected [Function] to throw error matching /XQST0068/ XQST0069,AssertionError: expected [Function] to throw error matching /XQST0069/ but got 'Not implemented: only module imports,…' XQST0070_1,AssertionError: expected [Function] to throw error matching /XQST0070/ but got 'Not implemented: only module imports,…' XQST0070_2,AssertionError: expected [Function] to throw error matching /XQST0070/ but got 'XQST0051: No modules found with the n…' -XQST0070_3,[object Object] +XQST0070_3,Error: 9: 1 10: } 11: ^ Error: XPST0003: Failed to parse script. Expected ; at <>:11:1 - 11:2 XQST0076,AssertionError: expected [Function] to throw an error XQST0085,AssertionError: expected [Function] to throw an error XQST0087,AssertionError: expected [Function] to throw an error @@ -3695,10 +3694,10 @@ xqhof18,Error: Not implemented: only module imports, namespace declarations, and xqhof19,Error: Not implemented: only module imports, namespace declarations, and function declarations are implemented in XQuery modules static-context-1,AssertionError: expected [Function] to throw an error surrogates07,AssertionError: string-to-codepoints("abc𝅖def"): expected '97 98 99 55348 56662 100 101 102' to equal '97 98 99 119126 100 101 102' -surrogates14,Error: FORX0002: SyntaxError: Invalid regular expression: /[𝅐-𝅘𝅥]/: Range out of order in character class +surrogates14,Error: FORX0002: SyntaxError: Invalid regular expression: /[𝅐-𝅘𝅥]/g: Range out of order in character class surrogates15,AssertionError: replace("abc𝅗def", "[^a-f]", "###"): expected 'abc######def' to equal 'abc###def' surrogates07a,AssertionError: string-to-codepoints("abc𝅖def"): expected '97 98 99 55348 56662 100 101 102' to equal '97 98 99 119126 100 101 102' -surrogates14a,Error: FORX0002: SyntaxError: Invalid regular expression: /[𝅐-𝅘𝅥]/: Range out of order in character class +surrogates14a,Error: FORX0002: SyntaxError: Invalid regular expression: /[𝅐-𝅘𝅥]/g: Range out of order in character class surrogates15a,AssertionError: replace("abc𝅗def", "[^a-f]", "###"): expected 'abc######def' to equal 'abc###def' XML10-4ed-Excluded-char-1,AssertionError: expected [Function] to throw an error XML11-1ed-Included-char-1,AssertionError: expected [Function] to throw an error @@ -3972,8 +3971,8 @@ d1e78807e,Error: XPST0017: Function Q{http://www.w3.org/2005/xpath-functions}xml d1e78807g,Error: XPST0017: Function Q{http://www.w3.org/2005/xpath-functions}parse-json with arity of 2 not registered. Did you mean "Q{http://www.w3.org/2005/xpath-functions}parse-json (xs:string)"? d1e78807h,Error: XPST0017: Function Q{http://www.w3.org/2005/xpath-functions}serialize with arity of 2 not registered. Did you mean "Q{http://www.w3.org/2005/xpath-functions}serialize (item()*)"? d1e78807i,Error: XPST0017: Function Q{http://www.w3.org/2005/xpath-functions}load-xquery-module with arity of 1 not registered. No similar functions found. -d1e78807j,[object Object] -d1e78807k,[object Object] +d1e78807j,Error: 1: xquery version "3.1"; 2: module namespace prod = "http://datypic.com/prod"; 3: declare context item as element(catalog) external; ^ 4: declare variable $prod:label as xs:string external; 5: declare variable $prod:prods as element(product)* := product; Error: XPST0003: Failed to parse script. Expected end of input at <>:3:1 - 3:2 +d1e78807k,Error: 1: xquery version "3.1"; 2: module namespace prod = "http://datypic.com/prod"; 3: declare context item as element(catalog) external; ^ 4: declare variable $prod:label as xs:string external; 5: declare variable $prod:prods as element(product)* := product; Error: XPST0003: Failed to parse script. Expected end of input at <>:3:1 - 3:2 XMark-Q18,AssertionError: Expected XPath (: Purpose: Convert the currency of the reserve of all open auctions to another currency. :) declare namespace local = "http://www.example.com/"; declare function local:convert($v as xs:decimal?) as xs:decimal? { 2.20371 * $v }; { let $auction := (/) return for $i in $auction/site/open_auctions/open_auction return local:convert(zero-or-one($i/reserve)) } to resolve to the given XML. Expected 546.7845252000001 487.1741697 286.8128565 35.920473 76.3585515 597.0070761000001 11.1287355 419.5423098 788.0907702000001 198.2457516 54.057006300000005 78.7165212 815.4608484 104.91863310000001 22.4117307 647.8246287000001 482.1276738 636.4534851 114.9014394 468.1120782 1236.3033471 1076.4462237 637.2468207000001 172.3521591 32.9013903 586.3631568 563.7971664 592.8861384 21.9930258 1213.2745776 1420.731837 1319.4713625 1383.5772864 175.5475386 1013.9490081 828.0881067 496.16530650000004 267.9931731 43.6775322 840.054252 17.916162300000003 1322.3361854999998 240.2484642 381.1096074 52.91107710000001 1126.1398842 2660.7153798000004 53.0653368 1404.3362346000001 991.3609806000001 496.8704937 2414.5168986000003 151.6593222 360.526956 1503.6354072000001 566.7721749 12.0322566 781.9424193 1039.1374134 1867.3577427 91.7845215 226.3650912 1058.0232081000001 142.1613321 109.70068380000001 109.4582757 328.7274207 33.8489856 119.2427481 3859.0047294000005 192.05332650000003 333.200952 24.196735800000003 72.08335410000001 901.0088706 149.52172349999998 1110.8902110000001 20.4063546 1521.4193469 790.9996674 204.9229929 56.3488647 81.2948619 281.8104348 659.7466998 1221.9131208000001 348.9354414 259.9716687 165.7410291 539.1376515000001 30.2789754 372.8456949 445.4579394 175.1508708 874.5202764 2120.1673539000003 2047.4008497000002 339.37134000000003 2125.6105176 5819.513293800001 369.98087189999995 1648.3310058000002 876.0849105000001 538.1239449 2418.5496879 955.7931012000001 7205.8452177 697.2979182 129.7764819 289.8099021 2041.1863875000001 133.8313083 356.18564729999997 369.121425 28.8245268 223.676565 2015.8216854 107.1443802 130.4375949 692.8023498 606.3728436000001 458.61408810000006 363.36974189999995 832.1870073 406.584495 666.2256072 71.53242660000001 1002.1371225 735.0474705 498.8097585 193.77222030000001 3815.2170117 2456.1449804999997 611.970267 643.1527635000001 187.64590650000002 117.1492236 40.8567834 34.9508406 2419.8058026 1744.5229473 173.6082738 821.4769767 127.15406700000001 2173.519173 325.31167020000004 171.0740073 1412.4458874000002 2032.7461782 349.5745173 435.1666137 1607.0995917 108.44456910000001 83.80709130000001 131.0766708 29.4856398 127.85925420000001 70.9374249 648.4416675 672.3078468 100.5112131 36.735845700000006 333.64169400000003 56.9659035 896.1607086000001 273.6346707 861.209868 56.7234954 366.2786391 259.6411122 1310.1717062999999 1211.2251273 923.6850465 1136.012505 299.88085680000006 415.37729790000003 447.4633155 393.3842721 200.9122407 208.691337 to equal undefined XMark-All,AssertionError: Expected XPath (: Written By: Frans Englich(maintainer, not original author) :) (: Purpose: Return the name of the person with ID `person0'. :) (: Date: 2007-03-09 :) declare namespace local = "http://www.example.com/"; declare function local:convert($v as xs:decimal?) as xs:decimal? { 2.20371 * $v (: convert Dfl to Euro :) }; { let $auction := (/) return for $b in $auction/site/people/person[@id = "person0"] return $b/name/text() } { let $auction := (/) return for $b in $auction/site/open_auctions/open_auction return {$b/bidder[1]/increase/text()} } { let $auction := (/) return for $b in $auction/site/open_auctions/open_auction where zero-or-one($b/bidder[1]/increase/text()) * 2.0 <= $b/bidder[last()]/increase/text() return } { let $auction := (/) return for $b in $auction/site/open_auctions/open_auction where some $pr1 in $b/bidder/personref[@person = "person20"], $pr2 in $b/bidder/personref[@person = "person51"] satisfies $pr1 << $pr2 return {$b/reserve/text()} } { let $auction := (/) return count(for $i in $auction/site/closed_auctions/closed_auction where $i/price/text() >= 40.0 return $i/price) } { let $auction := (/) return for $b in $auction//site/regions return count($b//item) } { let $auction := (/) return for $p in $auction/site return count($p//description) + count($p//annotation) + count($p//emailaddress) } { let $auction := (/) return for $p in $auction/site/people/person let $a := for $t in $auction/site/closed_auctions/closed_auction where $t/buyer/@person = $p/@id return $t return {count($a)} } { let $auction := (/) return let $ca := $auction/site/closed_auctions/closed_auction return let $ei := $auction/site/regions/europe/item for $p in $auction/site/people/person let $a := for $t in $ca where $p/@id = $t/buyer/@person return let $n := for $t2 in $ei where $t/itemref/@item = $t2/@id return $t2 return {$n/name/text()} return {$a} } { let $auction := (/) return for $i in distinct-values($auction/site/people/person/profile/interest/@category) let $p := for $t in $auction/site/people/person where $t/profile/interest/@category = $i return {$t/profile/gender/text()} {$t/profile/age/text()} {$t/profile/education/text()} {fn:data($t/profile/@income)} {$t/name/text()} {$t/address/street/text()} {$t/address/city/text()} {$t/address/country/text()} {$t/emailaddress/text()} {$t/homepage/text()} {$t/creditcard/text()} return {{$i}, $p} } { let $auction := (/) return for $p in $auction/site/people/person let $l := for $i in $auction/site/open_auctions/open_auction/initial where $p/profile/@income > 5000 * exactly-one($i/text()) return $i return {count($l)} } { let $auction := (/) return for $p in $auction/site/people/person let $l := for $i in $auction/site/open_auctions/open_auction/initial where $p/profile/@income > 5000.0 * exactly-one($i/text()) return $i where $p/profile/@income > 50000.0 return {count($l)} } { let $auction := (/) return for $i in $auction/site/regions/australia/item return {$i/description} } { let $auction := (/) return for $i in $auction/site//item where contains(string(exactly-one($i/description)), "gold") return $i/name/text() } { let $auction := (/) return for $a in $auction/site/closed_auctions/closed_auction/annotation/description/parlist/ listitem/ parlist/ listitem/ text/ emph/ keyword/ text() return {$a} } { let $auction := (/) return for $a in $auction/site/closed_auctions/closed_auction where not( empty( $a/annotation/description/parlist/listitem/parlist/listitem/text/emph/ keyword/ text() ) ) return } { let $auction := (/) return for $p in $auction/site/people/person where empty($p/homepage/text()) return } { let $auction := (/) return for $i in $auction/site/open_auctions/open_auction return local:convert(zero-or-one($i/reserve)) } { let $auction := (/) return for $b in $auction/site/regions//item let $k := $b/name/text() stable order by zero-or-one($b/location) ascending empty greatest return {$b/location/text()} } { let $auction := (/) return {count($auction/site/people/person/profile[@income >= 100000.0])} { count( $auction/site/people/person/ profile[@income < 100000.0 and @income >= 30000.0] ) } {count($auction/site/people/person/profile[@income < 30000.0])} { count( for $p in $auction/site/people/person where empty($p/profile/@income) return $p ) } } to resolve to the given XML. Expected Seongtaek Mattern10.503.0015.0025.506.0061.5034.5012.0010.503.0013.503.0042.0027.001.5039.007.5012.009.0015.0051.0012.0012.0013.503.009.0021.007.5015.009.003.003.0010.5015.0016.5033.009.0048.0031.501.5052.507.506.0015.003.0016.5013.501.5031.503.0031.5021.0015.003.006.0033.0025.507.5015.0057.004.5012.003.007.504.503.0019.509.001.5036.0025.5010.5012.009.006.009.0016.509.009.004.5028.5021.0051.007.501.509.0021.0031.5010.5013.507.5018.003.0028.501.5030.0013.5042.001.5021.0031.5022.507.501.501.501.5051.004.503.0049.503.003.0022.506.0051.006.0021.0013.5016.5025.5010.504.5031.5010.5024.0010.506.004.506.0013.509.0013.503.006.004.5045.0022.504.501.5019.5025.507.506.0024.006.003.009.003.001.5012.004.5022.5052.5027.004.5033.0022.506.0013.5019.506.0075.003.006.0025.509.001.503.004.503.0039.0094.5013.5045.006.0022.5016.5019.5040.506.007.5028.501.507.501.5016.5015.006.003.0033.004.5025.5034.5030.006.007.5018.0039.006.0013.507.5015.006.0016.5012.0015.006.0034.5025.503.0039.0018.0049.504.5018.003.0021.006.0022.501.5018.007.5022.5019.5010.5019.507.509.001.504.503.0052.507.506.007.5058.5031.506.0022.503.0021.007.503.001.501.503.009.007.503.0019.5018.004.509.0058.504.5027.007.509.0025.501.509.0016.5024.0036.0016.5010.501.5016.504.5069.004.507.5010.5015.003.0027.006.001.5025.506.0061.503.003.0031.507.5027.0015.001.5018.001.507.5013.5013.5094.5013.5012.004.509.009.0030.003.009.0025.5016.506.0036.0021.001.5058.5010.5064.5025.5022.5027.0030.0064.504.50200647273400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010010000000000000000000000001001000000010000010001100000001000000010000000000301100000040011000000010202001010021000212103000001210113000100121200120020010002312202121120311101413120500112211131016300302021301200312300420100103410121313101110112033001102131211201003033002220111201222123000001121111112003004100102010030000101000021110000010000000000010000100100000100000010012000000010000100000110000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000rights midwife embark learned ashy wither well over blister eros wench nails leisure slender manly leperous breathing put blush doing ford instantly copied boyet rear state amend issu dirt knows hovel towards apart drunk desartless not thunder exil round suits close reprove youths varying dallying deed blowing mistook sire sons grown earliest affliction earth flatterest fifty protector vessels almighty stomachs gentleman whom pity humbly shallow themselves mean bestow past burn coronet debtor concord quips slanders lust uncover zeal foolish against mightst winnowed greg remedy decorum inheritance legate tush mightier thereby bianca sons absurd fairly charity strikes inherited sorry argument amended full hast sempronius potent gracious fixture think mercutio goose peruse finding window sails assay excels burn preventions affects longaville fall mournings citizens revels utter revenged news milan despised spits fines watch flow rack dangers action seldom undid door becomes bestow held vessels ugly plenteous sold mingle singing sweetest several spok defeat gallant preventions tent day villainous oblivion shalt elbow provost lionel properer wooing ocean riot down retir protectorship confronted charg losing title barefac impostor anchises fiend advised particular pregnantly category0female39585.93Birkett Zedlitzmailto:Zedlitz@yorku.camaleCollege9876.00Kagan Takanomailto:Takano@uni-sb.defemale63811.82Lon Leifert45 McKenna StKansasUnited Statesmailto:Leifert@sunysb.eduhttp://www.sunysb.edu/~Leifert6789 8467 1353 5816male9876.00Zhensheng Laulheremailto:Laulhere@ucla.edu8065 4460 9357 8496male2621142.02Elihu Lorys60 Jantke StGenevaUnited Statesmailto:Lorys@berkeley.eduhttp://www.berkeley.edu/~Lorysmale2885711.23Maung Rainmailto:Rain@cas.czmale479876.00Zeljko Wolford13 Leaver StWorcesterUnited Statesmailto:Wolford@umd.eduhttp://www.umd.edu/~Wolford3364225.11Arjen Emden44 Goos StLexingtonUnited Statesmailto:Emden@forwiss.dehttp://www.forwiss.de/~Emden2468 4642 9646 5367female25High School9876.00Kendra Dunanmailto:Dunan@conclusivestrategies.com7343 3711 8611 7955maleGraduate School18103.99Raja Schroermailto:Schroer@ac.krmale69930.56Xiaoyu Willamowski48 Stefano StCharlestonUnited Statesmailto:Willamowski@bellatlantic.netfemaleCollege52198.30Eleanna Loulerguemailto:Loulergue@imag.fr29College85365.36Sushant Baransky39 Varpaaniemi StChicagoZambiamailto:Baransky@du.edu18Other9995.92Martial Chorvat65 Campadelli StMonterreyUnited Statesmailto:Chorvat@zambeel.com4079 3475 5627 8448female34591.18Roar Tepfenhart14 Marinissen StGuangzhouUnited Statesmailto:Tepfenhart@duke.eduhttp://www.duke.edu/~Tepfenhart1685 4065 5136 629873540.90Angel Kanamorimailto:Kanamori@telcordia.comhttp://www.telcordia.com/~KanamorimaleOther147002.31Nikolaos Birdsall20 Morillo StGrenadaUnited Statesmailto:Birdsall@clarkson.edufemale2933284.56Chams Michailidis11 Davoren StGainesvilleTanzaniamailto:Michailidis@ntua.grfemaleOther63285.36Roseane Henton21 Falkerngerg StArubaUnited Statesmailto:Henton@csufresno.eduhttp://www.csufresno.edu/~Hentonmale25728.38Priyadarshan Burgert53 Liberman StCorpusReunionmailto:Burgert@savera.comhttp://www.savera.com/~Burgertmale189876.00Ruben Paczkowski42 Osmani StKievUnited Statesmailto:Paczkowski@ac.jphttp://www.ac.jp/~Paczkowski5171 8849 3355 1220male88737.57Vanathi Takano39 Borowsky StIstanbulUnited Statesmailto:Takano@baylor.edu9748 8717 5684 69901867501.36Terunao Veccia53 Brightwell StToulouseHondurasmailto:Veccia@sbphrd.comGraduate School34738.51Singaravel Skurczynski41 Zhongxiu StPortlandSwitzerlandmailto:Skurczynski@ntua.grhttp://www.ntua.gr/~Skurczynski53Other48773.68Tetsurou Caugne19 Falgout StWorcesterUnited Statesmailto:Caugne@columbia.edu8535 6273 6608 32639876.00Dhritiman Schapiremailto:Schapire@ucd.iehttp://www.ucd.ie/~Schapire7089 9225 8648 445732Graduate School21453.40Kyujin Thenmozhimailto:Thenmozhi@sbphrd.comhttp://www.sbphrd.com/~Thenmozhi5667 1325 6395 3905679876.00Mehrdad Holldobler38 Delaune StMontrealUnited Statesmailto:Holldobler@sunysb.edufemale2425157.94Terrill Uchoamailto:Uchoa@co.inmale1821628.35Mehrdad Granlund2 Huttel StMontgomeryUnited Statesmailto:Granlund@concentric.net6039 9126 8908 863446College9876.00Ennio Fanchon44 Beeferman StStockholmVatican City Statemailto:Fanchon@bellatlantic.nethttp://www.bellatlantic.net/~FanchonmaleGraduate School23261.52Gioia Mulkersmailto:Mulkers@mitre.orghttp://www.mitre.org/~Mulkers3207 9504 9402 94403324186.28Marco Meszaros49 Wohn StKievSt. Vincent and Grenadinesmailto:Meszaros@ac.athttp://www.ac.at/~Meszaros6309 7243 2721 1636category11female39585.93Birkett Zedlitzmailto:Zedlitz@yorku.camaleCollege9876.00Kagan Takanomailto:Takano@uni-sb.defemale63811.82Lon Leifert45 McKenna StKansasUnited Statesmailto:Leifert@sunysb.eduhttp://www.sunysb.edu/~Leifert6789 8467 1353 581615620.89Frieder Basumailto:Basu@edu.aumale38High School35391.33Samson Scopinich22 Luit StNassauLithuaniamailto:Scopinich@forth.grhttp://www.forth.gr/~Scopinich7744 1014 3146 578752743.14Angel McDermid56 Deves StStockholmUnited Statesmailto:McDermid@ucdavis.eduhttp://www.ucdavis.edu/~McDermidfemale29College109893.20Bevin Keustermans55 Kluthe StCharlestonUnited Statesmailto:Keustermans@cwru.edu33857.61Kristof Pittmailto:Pitt@unf.edu6369 9760 9277 8247High School52123.17Athomas Roubieremailto:Roubiere@yorku.cafemale33532.36Ravindran Yacobi90 Cools StAlbanyLithuaniamailto:Yacobi@emc.commaleHigh School29348.51Yael Ritceymailto:Ritcey@csufresno.eduhttp://www.csufresno.edu/~Ritcey4175 3581 3728 53201880569.02Junzhong Hananimailto:Hanani@unizh.ch1828898.01Mimmo Stiftermailto:Stifter@edu.cnhttp://www.edu.cn/~Stifter3829 2675 8446 5011male72247.13Djordje Milesmailto:Miles@att.com4147 2060 2989 7208femaleOther76543.02Arno Takano2 Jezioranski StAkronUnited Statesmailto:Takano@uwo.cahttp://www.uwo.ca/~Takano1059 2269 8254 7515femaleHigh School95732.32Hagen Artosimailto:Artosi@clustra.comhttp://www.clustra.com/~Artosi7136 1358 8743 5847female3943323.95Mitsugu Thobenmailto:Thoben@sbphrd.com4537 1155 4156 664924141.45Yuan Tayara48 Kurita StPittsburghUnited Statesmailto:Tayara@purdue.eduhttp://www.purdue.edu/~TayaraHigh School32535.03Drago Showaltermailto:Showalter@auc.dk25High School36970.64Elihu Salinasmailto:Salinas@ucdavis.eduhttp://www.ucdavis.edu/~Salinasfemale17088.62Zicheng Raupp43 Clarke StTriUnited Statesmailto:Raupp@umd.edumale18Graduate School61397.86Atreye Livari18 Sangal StCincinnatiSenegalmailto:Livari@msn.comhttp://www.msn.com/~Livarimale1947616.43Gurmeet Beounesmailto:Beounes@yorku.camaleHigh School61094.02Mehrdad Bierbaum77 Heyderhoff StIdahoUnited Statesmailto:Bierbaum@sdsc.edu5223 3221 1166 7010female34591.18Roar Tepfenhart14 Marinissen StGuangzhouUnited Statesmailto:Tepfenhart@duke.eduhttp://www.duke.edu/~Tepfenhart1685 4065 5136 6298male26099.90Sheilah Takano27 Chandna StToledoUnited Statesmailto:Takano@neu.eduhttp://www.neu.edu/~Takano5166 3645 9483 2416maleOther147002.31Nikolaos Birdsall20 Morillo StGrenadaUnited Statesmailto:Birdsall@clarkson.edu48128.34Martien Noortwijk25 Melski StProvidencialesUnited Statesmailto:Noortwijk@co.inhttp://www.co.in/~Noortwijk3902 2842 7544 6492maleGraduate School48463.16Geraldine Relihan23 Meketon StKahuluiUnited Statesmailto:Relihan@toronto.eduhttp://www.toronto.edu/~Relihan24Graduate School20808.47Felip Veevers60 Gobioff StZihuatenejoIrelandmailto:Veevers@ualberta.ca2147 4781 9975 1452male32039.10Guanshan Keustermans5 Hazony StBudapestUnited Statesmailto:Keustermans@upenn.eduhttp://www.upenn.edu/~Keustermans7994 4699 1996 9940female31313.14Upendra Sueyoshi100 Iwayama StPensacolaUnited Statesmailto:Sueyoshi@msstate.edufemale2933284.56Chams Michailidis11 Davoren StGainesvilleTanzaniamailto:Michailidis@ntua.grHigh School22905.31Merce Beoumes17 Lattin StLawtonQatarmailto:Beoumes@washington.eduhttp://www.washington.edu/~BeoumesfemaleHigh School27442.54Linore Pradomailto:Prado@uta.edu3098 3930 3792 434943968.43Hausi Henriksson11 Shiota StSeattleUnited Statesmailto:Henriksson@uqam.cahttp://www.uqam.ca/~Henriksson27Graduate School35214.05Tobias Veeraraghavan41 Cavedoni StAguascalientesUnited Statesmailto:Veeraraghavan@umb.edu8969 5456 9679 133626College13999.18Yoko Meursmailto:Meurs@rpi.edu4761 5609 3284 980131377.71Douadi Newton100 Deb StTexarkanaUnited Statesmailto:Newton@acm.org42High School63869.30Waiman Sakomotomailto:Sakomoto@crossgain.commale1821628.35Mehrdad Granlund2 Huttel StMontgomeryUnited Statesmailto:Granlund@concentric.net6039 9126 8908 8634category2565739.54Niraj Fergany55 Rheingans StSaltGuineamailto:Fergany@uni-mb.simale64243.77Huican Szmurlo52 Ternovskaia StCodyUnited Statesmailto:Szmurlo@ucsd.eduhttp://www.ucsd.edu/~Szmurlo2217 9440 7362 340518College23941.65Rajaram Lease100 Preishuber StEastUnited Statesmailto:Lease@imag.frhttp://www.imag.fr/~Lease4948 9378 8238 360026770.70Fun Lattin93 Mutschke StPascoUnited Statesmailto:Lattin@forth.grhttp://www.forth.gr/~Lattinmale479876.00Zeljko Wolford13 Leaver StWorcesterUnited Statesmailto:Wolford@umd.eduhttp://www.umd.edu/~Wolfordfemale1866561.70Mara Tchuentemailto:Tchuente@telcordia.comhttp://www.telcordia.com/~Tchuentefemale29College109893.20Bevin Keustermans55 Kluthe StCharlestonUnited Statesmailto:Keustermans@cwru.edufemale9876.00Mehrdad Koszlajdamailto:Koszlajda@inria.frhttp://www.inria.fr/~Koszlajda18Other9876.00Jessie Goodrum33 Grabe StGulfportAfghanistanmailto:Goodrum@smu.eduhttp://www.smu.edu/~Goodrum4135 6305 3725 5036femaleGraduate School54668.95Joey Girouxmailto:Giroux@crossgain.comhttp://www.crossgain.com/~Giroux6425 5745 4662 1727female21College20347.38Isamu Kupiecmailto:Kupiec@twsu.eduhttp://www.twsu.edu/~Kupiec6071 5377 9019 296359420.56Ziqiang Businaro21 Coatta StMontrealUnited Statesmailto:Businaro@indiana.eduhttp://www.indiana.edu/~Businaromale70373.08Mehrdad Sevcikovamailto:Sevcikova@sds.nohttp://www.sds.no/~SevcikovafemaleCollege19207.80Bahaa Lortz24 Zaimov StAnchorageUnited Statesmailto:Lortz@toronto.edu1432 1375 9826 3007male1835487.60Mehrdad Huhdanpaamailto:Huhdanpaa@itc.ithttp://www.itc.it/~Huhdanpaamale3760708.89Nobuko Manara39 Pigeon StMontgomeryUnited Statesmailto:Manara@imag.frhttp://www.imag.fr/~Manara8751 5605 9270 8646College9876.00Odoardo Rajaraman39 Backelin StVillahermosaUnited Statesmailto:Rajaraman@ul.pthttp://www.ul.pt/~Rajaramanmale36914.75Howell Motley64 Lafortune StAthensUnited Statesmailto:Motley@uic.eduhttp://www.uic.edu/~Motley1828245.16Sachem Grab29 Fegeas StSalvadorUnited Statesmailto:Grab@indiana.edufemale3943323.95Mitsugu Thobenmailto:Thoben@sbphrd.com4537 1155 4156 6649female29High School44522.39Rupal Takanomailto:Takano@conclusivestrategies.comfemale459876.00Mehrdad Apperley12 Vinar StBucharestUnited Statesmailto:Apperley@ibm.com18109944.80Boon Oestreicher12 Moshman StMunichCroatiamailto:Oestreicher@ucf.eduhttp://www.ucf.edu/~Oestreicher9680 1053 2022 9885maleCollege62028.39Lucien Cunliffe11 Smotroff StMeridianVatican City Statemailto:Cunliffe@mit.edu2139 7205 4141 4885female34591.18Roar Tepfenhart14 Marinissen StGuangzhouUnited Statesmailto:Tepfenhart@duke.eduhttp://www.duke.edu/~Tepfenhart1685 4065 5136 629875125.30Randal Roushmailto:Roush@msstate.edu6224 7382 7689 876618High School47967.41Naoki Osterloh7 Ghandeharizadeh StCairoTanzaniamailto:Osterloh@ask.comhttp://www.ask.com/~Osterloh7741 8229 7494 194344100064.62Oddvar Kamijomailto:Kamijo@ou.eduhttp://www.ou.edu/~Kamijo4434 7244 4200 847924Graduate School20808.47Felip Veevers60 Gobioff StZihuatenejoIrelandmailto:Veevers@ualberta.ca2147 4781 9975 1452femaleHigh School57624.85Srihari Murrillmailto:Murrill@edu.cnfemale2933284.56Chams Michailidis11 Davoren StGainesvilleTanzaniamailto:Michailidis@ntua.grmaleGraduate School43412.47Mehrdad Ewards9 Mosedale StMumbaiUnited Statesmailto:Ewards@edu.hkhttp://www.edu.hk/~Ewardsmale45100.26Knuth Grandbois27 Newton StBudapestUnited Statesmailto:Grandbois@ibm.com3277 5711 2104 1479female18High School32207.29Jessie Courymailto:Coury@computer.orghttp://www.computer.org/~Coury3948 9942 2047 3209maleOther9876.00Benny Maraist38 Coscoy StVeniceUnited Statesmailto:Maraist@acm.org1444 4160 5898 7668female2425157.94Terrill Uchoamailto:Uchoa@co.infemale19Other49367.09Armond Hebert54 Cooley StFrankfurtCanadamailto:Hebert@rpi.eduhttp://www.rpi.edu/~Hebertfemale67651.65Yoshinari Rajamailto:Raja@nodak.eduhttp://www.nodak.edu/~Raja7807 3048 4554 4266maleCollege94906.70Maura Clasenmailto:Clasen@ucf.eduhttp://www.ucf.edu/~Clasen5915 1705 9308 1877category865739.54Niraj Fergany55 Rheingans StSaltGuineamailto:Fergany@uni-mb.si4137695.50Miron Rivals33 Besancenot StShannonUnited Statesmailto:Rivals@ac.be5183 2729 4304 4288male64243.77Huican Szmurlo52 Ternovskaia StCodyUnited Statesmailto:Szmurlo@ucsd.eduhttp://www.ucsd.edu/~Szmurlo2217 9440 7362 340515620.89Frieder Basumailto:Basu@edu.au34High School9876.00Fazli Elsanadidimailto:Elsanadidi@memphis.eduhttp://www.memphis.edu/~Elsanadidi3924 1056 9280 8856male4522589.34Noelle Ramrasmailto:Ramras@dauphine.fr1834791.61Limor Schlichtermailto:Schlichter@dauphine.fr2262 3605 4735 371526770.70Fun Lattin93 Mutschke StPascoUnited Statesmailto:Lattin@forth.grhttp://www.forth.gr/~Lattinfemale63Other71946.13Herbert Kleiser100 Raghavendra StGeorgeUnited Statesmailto:Kleiser@washington.eduhttp://www.washington.edu/~Kleiser4454 8668 5057 15745018437.40Vinot Thomsen2 Kishida StChattanoogaUnited Statesmailto:Thomsen@cornell.eduhttp://www.cornell.edu/~Thomsen33857.61Kristof Pittmailto:Pitt@unf.edu6369 9760 9277 8247female9876.00Mehrdad Koszlajdamailto:Koszlajda@inria.frhttp://www.inria.fr/~Koszlajdafemale80670.94Shiquan Wixonmailto:Wixon@pi.it40268.84Zosimo Basmailto:Bas@uta.edu3953 1957 8995 9210maleGraduate School18103.99Raja Schroermailto:Schroer@ac.krmale4262287.09Suvo Fiutem69 Luff StWindhoekSouth Africamailto:Fiutem@co.jp5089 1407 5205 539135Other95431.89Raimondas Holtmanmailto:Holtman@indiana.eduhttp://www.indiana.edu/~Holtmanmale3760708.89Nobuko Manara39 Pigeon StMontgomeryUnited Statesmailto:Manara@imag.frhttp://www.imag.fr/~Manara8751 5605 9270 864618Graduate School30851.14LouAnn Mulvany13 Whitt StBarcelonaUnited Statesmailto:Mulvany@ucla.eduhttp://www.ucla.edu/~Mulvany6788 3544 7141 9025College9876.00Odoardo Rajaraman39 Backelin StVillahermosaUnited Statesmailto:Rajaraman@ul.pthttp://www.ul.pt/~Rajaramanmale22Graduate School36448.54Alassane Brown19 Steingart StTallahasseeTurkeymailto:Brown@ac.be4583 2923 3450 3894male19764.36Jacky Kunieda31 Malabarba StGuaymasUnited Statesmailto:Kunieda@uni-mannheim.de4090 9244 8696 7598female44Graduate School62236.54Fano Usmanimailto:Usmani@unf.eduhttp://www.unf.edu/~Usmani4826 7793 3421 79141889413.77Rosalyn Borrowman71 Mekaouche StCasperUnited Statesmailto:Borrowman@panasonic.comOther18748.51Honari Vendrig59 Dougherty StBolognaUnited Statesmailto:Vendrig@bell-labs.comhttp://www.bell-labs.com/~VendrigmaleHigh School22127.36Yannik Hamblinmailto:Hamblin@cohera.commaleOther147002.31Nikolaos Birdsall20 Morillo StGrenadaUnited Statesmailto:Birdsall@clarkson.eduOther12631.68Jawed Grundmannmailto:Grundmann@purdue.edu29Other56634.76Lai Greenwaldmailto:Greenwald@filelmaker.comhttp://www.filelmaker.com/~Greenwald9722 4263 8015 608351Other23226.04Yoshiki Blumbergmailto:Blumberg@ask.com2926 2408 8275 2143maleGraduate School48463.16Geraldine Relihan23 Meketon StKahuluiUnited Statesmailto:Relihan@toronto.eduhttp://www.toronto.edu/~Relihanmale1835295.10Navdeep Tyszermailto:Tyszer@utexas.edufemale31313.14Upendra Sueyoshi100 Iwayama StPensacolaUnited Statesmailto:Sueyoshi@msstate.edufemale2933284.56Chams Michailidis11 Davoren StGainesvilleTanzaniamailto:Michailidis@ntua.gr9876.00Renzo Collavizzamailto:Collavizza@ul.pt6044 5884 4789 419831377.71Douadi Newton100 Deb StTexarkanaUnited Statesmailto:Newton@acm.org34032.09Francesca Weismantelmailto:Weismantel@ucla.edu2763 1794 7943 4753female2425157.94Terrill Uchoamailto:Uchoa@co.infemaleOther98527.30Witold Straneymailto:Straney@cas.cz2461 6546 4698 2228female67651.65Yoshinari Rajamailto:Raja@nodak.eduhttp://www.nodak.edu/~Raja7807 3048 4554 4266category1065739.54Niraj Fergany55 Rheingans StSaltGuineamailto:Fergany@uni-mb.simale64243.77Huican Szmurlo52 Ternovskaia StCodyUnited Statesmailto:Szmurlo@ucsd.eduhttp://www.ucsd.edu/~Szmurlo2217 9440 7362 340561161.12Shiby Ginneken58 Nisonger StNewcastleUnited Statesmailto:Ginneken@yorku.cahttp://www.yorku.ca/~Ginneken5020 5482 5482 3578Other9876.00Bharadwaj Nozawa58 Regoli StWarsawUnited Statesmailto:Nozawa@cas.czhttp://www.cas.cz/~Nozawa3284 7939 4808 3523Other9876.00Shuji Kandlur84 Ullah StCasperUnited Statesmailto:Kandlur@usa.nethttp://www.usa.net/~Kandlur2302 1799 1932 631134High School9876.00Fazli Elsanadidimailto:Elsanadidi@memphis.eduhttp://www.memphis.edu/~Elsanadidi3924 1056 9280 8856male2885711.23Maung Rainmailto:Rain@cas.czfemale3449147.80Frantisek Speltmailto:Spelt@versata.comhttp://www.versata.com/~Spelt27College40010.92Prabuddha Chattopadhyaymailto:Chattopadhyay@nwu.edufemale1866561.70Mara Tchuentemailto:Tchuente@telcordia.comhttp://www.telcordia.com/~Tchuente5018437.40Vinot Thomsen2 Kishida StChattanoogaUnited Statesmailto:Thomsen@cornell.eduhttp://www.cornell.edu/~Thomsenfemale18Other50634.45Sidd Zfiramailto:Zfira@uga.eduhttp://www.uga.edu/~Zfira33857.61Kristof Pittmailto:Pitt@unf.edu6369 9760 9277 8247male19High School38050.91Mauri Takanomailto:Takano@sbphrd.comhttp://www.sbphrd.com/~Takanofemale9876.00Mehrdad Koszlajdamailto:Koszlajda@inria.frhttp://www.inria.fr/~KoszlajdaGraduate School9876.00Kristof Grafe94 Ingolfsdottir StCopenhagenZimbabwemailto:Grafe@lante.comhttp://www.lante.com/~Grafefemale80670.94Shiquan Wixonmailto:Wixon@pi.itCollege106547.20Khatoun Rankamailto:Ranka@clarkson.eduhttp://www.clarkson.edu/~Rankamale72247.13Djordje Milesmailto:Miles@att.com4147 2060 2989 7208male69930.56Xiaoyu Willamowski48 Stefano StCharlestonUnited Statesmailto:Willamowski@bellatlantic.netmaleGraduate School9876.00Andreas Weijland80 Okasaki StBatonUnited Statesmailto:Weijland@conclusivestrategies.comhttp://www.conclusivestrategies.com/~Weijlandmale3760708.89Nobuko Manara39 Pigeon StMontgomeryUnited Statesmailto:Manara@imag.frhttp://www.imag.fr/~Manara8751 5605 9270 864618Other32519.99Merrick Rapin78 Melcarne StMobileParaguaymailto:Rapin@csufresno.eduCollege9876.00Odoardo Rajaraman39 Backelin StVillahermosaUnited Statesmailto:Rajaraman@ul.pthttp://www.ul.pt/~Rajaramanfemale3943323.95Mitsugu Thobenmailto:Thoben@sbphrd.com4537 1155 4156 6649femaleOther44792.93Hagbae Gershkovich62 Soinard StBrusselsAmerican Samoamailto:Gershkovich@llnl.govhttp://www.llnl.gov/~Gershkovich36Other62943.64Bartek Schumaker83 Kumaresan StLimaArgentinamailto:Schumaker@labs.comhttp://www.labs.com/~Schumaker3597 8655 2603 6797female459876.00Mehrdad Apperley12 Vinar StBucharestUnited Statesmailto:Apperley@ibm.comfemale19High School47409.99Wieb Baummailto:Baum@bell-labs.comhttp://www.bell-labs.com/~BaumHigh School32535.03Drago Showaltermailto:Showalter@auc.dk28College22854.05Mas Bretthauermailto:Bretthauer@uu.se6903 3735 8900 1605male18Graduate School61397.86Atreye Livari18 Sangal StCincinnatiSenegalmailto:Livari@msn.comhttp://www.msn.com/~LivarimaleCollege62028.39Lucien Cunliffe11 Smotroff StMeridianVatican City Statemailto:Cunliffe@mit.edu2139 7205 4141 4885female34591.18Roar Tepfenhart14 Marinissen StGuangzhouUnited Statesmailto:Tepfenhart@duke.eduhttp://www.duke.edu/~Tepfenhart1685 4065 5136 629818High School47967.41Naoki Osterloh7 Ghandeharizadeh StCairoTanzaniamailto:Osterloh@ask.comhttp://www.ask.com/~Osterloh7741 8229 7494 194351Other23226.04Yoshiki Blumbergmailto:Blumberg@ask.com2926 2408 8275 214344100064.62Oddvar Kamijomailto:Kamijo@ou.eduhttp://www.ou.edu/~Kamijo4434 7244 4200 8479female26High School9876.00Etsuo Plessier50 Littlestone StLorientUnited Statesmailto:Plessier@labs.comhttp://www.labs.com/~Plessier26419.07Yukata Beauducel47 Araya StCharlottesvilleUnited Statesmailto:Beauducel@poznan.plhttp://www.poznan.pl/~Beauducel7393 8354 9466 4534female18Graduate School36875.04Vwani Guck59 Carapuca StTulsaUnited Statesmailto:Guck@ubs.comhttp://www.ubs.com/~Guck8540 5460 1107 6135maleGraduate School43412.47Mehrdad Ewards9 Mosedale StMumbaiUnited Statesmailto:Ewards@edu.hkhttp://www.edu.hk/~Ewardsfemale18129137.70Khedija Yonezawa57 Naixiao StToulouseChilemailto:Yonezawa@clustra.comhttp://www.clustra.com/~Yonezawa2333 2094 5586 4351femaleHigh School27442.54Linore Pradomailto:Prado@uta.edu3098 3930 3792 434929College10406.64Mingzeng Uchoa76 Vongsathorn StAcapulcoUnited Statesmailto:Uchoa@baylor.edu8084 7023 9186 61281867501.36Terunao Veccia53 Brightwell StToulouseHondurasmailto:Veccia@sbphrd.com32College31589.10Daria McDermid79 Harllee StCalgaryTurkeymailto:McDermid@acm.orghttp://www.acm.org/~McDermid42High School63869.30Waiman Sakomotomailto:Sakomoto@crossgain.com34032.09Francesca Weismantelmailto:Weismantel@ucla.edu2763 1794 7943 4753female2425157.94Terrill Uchoamailto:Uchoa@co.inmaleGraduate School23261.52Gioia Mulkersmailto:Mulkers@mitre.orghttp://www.mitre.org/~Mulkers3207 9504 9402 9440Other49831.44Shyam Taganskymailto:Tagansky@cwru.eduhttp://www.cwru.edu/~Tagansky78286.48Kunimasa Useltonmailto:Uselton@utexas.edu8164 1978 5759 3010category1865739.54Niraj Fergany55 Rheingans StSaltGuineamailto:Fergany@uni-mb.sifemale28College23070.82Hakim Savarammailto:Savaram@nyu.eduhttp://www.nyu.edu/~SavaramHigh School46542.05Leighton Odbergmailto:Odberg@cwi.nlhttp://www.cwi.nl/~Odberg55498.73Mehrdad Barroso23 Grabner StRapidUnited Statesmailto:Barroso@uwo.caHigh School52123.17Athomas Roubieremailto:Roubiere@yorku.camale18Other84592.63Jayakrishnan Turakainenmailto:Turakainen@evergreen.edu50Other55383.43Nidapan Stassinopoulosmailto:Stassinopoulos@lante.comCollege106547.20Khatoun Rankamailto:Ranka@clarkson.eduhttp://www.clarkson.edu/~Ranka40268.84Zosimo Basmailto:Bas@uta.edu3953 1957 8995 92101944492.43Sajoong Bottoni56 Isman StWashingtonUnited Statesmailto:Bottoni@ucsd.eduhttp://www.ucsd.edu/~Bottoni4979 4485 7219 1879male72247.13Djordje Milesmailto:Miles@att.com4147 2060 2989 720818Graduate School41595.76Nevio Drashansky60 Petry StElUnited Statesmailto:Drashansky@evergreen.edu7712 4592 2474 5574female46814.24Keumog Gellerich43 Gove StGenevaKenyamailto:Gellerich@ab.cafemale18High School57378.24Joonsoo Pollaciamailto:Pollacia@co.inmale36Other46000.68Sudip Rekhtermailto:Rekhter@cas.cz4959 8573 1371 9567femaleHigh School95732.32Hagen Artosimailto:Artosi@clustra.comhttp://www.clustra.com/~Artosi7136 1358 8743 584728College22854.05Mas Bretthauermailto:Bretthauer@uu.se6903 3735 8900 1605female44Graduate School62236.54Fano Usmanimailto:Usmani@unf.eduhttp://www.unf.edu/~Usmani4826 7793 3421 7914female24High School53332.77Berardo Radwanmailto:Radwan@clarkson.eduhttp://www.clarkson.edu/~Radwan5362 4892 6180 721418Other9995.92Martial Chorvat65 Campadelli StMonterreyUnited Statesmailto:Chorvat@zambeel.com4079 3475 5627 84482739491.29Hideo Korachmailto:Korach@cas.czhttp://www.cas.cz/~Korach8091 7556 8996 4369female34591.18Roar Tepfenhart14 Marinissen StGuangzhouUnited Statesmailto:Tepfenhart@duke.eduhttp://www.duke.edu/~Tepfenhart1685 4065 5136 629830College9876.00Asha Dumasmailto:Dumas@twsu.edu9876.00Pragnesh Takanomailto:Takano@labs.comhttp://www.labs.com/~Takano8238 8564 3820 4678maleOther147002.31Nikolaos Birdsall20 Morillo StGrenadaUnited Statesmailto:Birdsall@clarkson.edufemale209876.00Alban Kossowskimailto:Kossowski@emc.com2606 3971 1356 1048male32039.10Guanshan Keustermans5 Hazony StBudapestUnited Statesmailto:Keustermans@upenn.eduhttp://www.upenn.edu/~Keustermans7994 4699 1996 9940male3959387.85Allison Balazsmailto:Balazs@ibm.comhttp://www.ibm.com/~Balazsfemale2933284.56Chams Michailidis11 Davoren StGainesvilleTanzaniamailto:Michailidis@ntua.grHigh School22905.31Merce Beoumes17 Lattin StLawtonQatarmailto:Beoumes@washington.eduhttp://www.washington.edu/~Beoumes18High School31438.50Yeogirl Wing3 Tambouris StTwinUnited Statesmailto:Wing@csufresno.eduhttp://www.csufresno.edu/~Wingmale88737.57Vanathi Takano39 Borowsky StIstanbulUnited Statesmailto:Takano@baylor.edu9748 8717 5684 6990femaleHigh School27442.54Linore Pradomailto:Prado@uta.edu3098 3930 3792 434943968.43Hausi Henriksson11 Shiota StSeattleUnited Statesmailto:Henriksson@uqam.cahttp://www.uqam.ca/~Henriksson39920.17Leslie Trystrammailto:Trystram@yahoo.com1867501.36Terunao Veccia53 Brightwell StToulouseHondurasmailto:Veccia@sbphrd.commale58High School53088.84Honglan Hagimontmailto:Hagimont@edu.auhttp://www.edu.au/~HagimontGraduate School52300.25Berto Parisi18 Cagley StColumbusTaiwanmailto:Parisi@sfu.cahttp://www.sfu.ca/~Parisi2059 3864 2375 29749876.00Dhritiman Schapiremailto:Schapire@ucd.iehttp://www.ucd.ie/~Schapire7089 9225 8648 4457female2425157.94Terrill Uchoamailto:Uchoa@co.infemaleOther98527.30Witold Straneymailto:Straney@cas.cz2461 6546 4698 2228female36High School37546.25Masali Ruedamailto:Rueda@cwi.nlhttp://www.cwi.nl/~Rueda7296 2605 7171 67983324186.28Marco Meszaros49 Wohn StKievSt. Vincent and Grenadinesmailto:Meszaros@ac.athttp://www.ac.at/~Meszaros6309 7243 2721 1636category2765739.54Niraj Fergany55 Rheingans StSaltGuineamailto:Fergany@uni-mb.si61161.12Shiby Ginneken58 Nisonger StNewcastleUnited Statesmailto:Ginneken@yorku.cahttp://www.yorku.ca/~Ginneken5020 5482 5482 3578male12885.30Mehrdad Schimmler76 McMorrow StAlbuquerqueUnited Statesmailto:Schimmler@evergreen.eduhttp://www.evergreen.edu/~Schimmler5264 9278 9093 16322870444.29Mountaz Ossenbruggenmailto:Ossenbruggen@whizbang.com15620.89Frieder Basumailto:Basu@edu.au1852503.82Garnik Takano43 Hendren StMexicoEl Salvadormailto:Takano@ask.comhttp://www.ask.com/~Takano6865 4881 8965 2217male38High School35391.33Samson Scopinich22 Luit StNassauLithuaniamailto:Scopinich@forth.grhttp://www.forth.gr/~Scopinich7744 1014 3146 5787female18Graduate School24387.33Mehrdad Christ96 Servatius StMilwaukeeIndonesiamailto:Christ@newpaltz.eduhttp://www.newpaltz.edu/~Christmale4522589.34Noelle Ramrasmailto:Ramras@dauphine.fr1834791.61Limor Schlichtermailto:Schlichter@dauphine.fr2262 3605 4735 3715female20230.96Radhia Lakshmipathymailto:Lakshmipathy@clustra.com5449328.84Von Hancox55 Pollermann StMelbourneUnited Statesmailto:Hancox@versata.com27College40010.92Prabuddha Chattopadhyaymailto:Chattopadhyay@nwu.edufemale1866561.70Mara Tchuentemailto:Tchuente@telcordia.comhttp://www.telcordia.com/~Tchuentefemale28College23070.82Hakim Savarammailto:Savaram@nyu.eduhttp://www.nyu.edu/~Savaramfemale33532.36Ravindran Yacobi90 Cools StAlbanyLithuaniamailto:Yacobi@emc.comfemale9876.00Mehrdad Koszlajdamailto:Koszlajda@inria.frhttp://www.inria.fr/~Koszlajda50Other55383.43Nidapan Stassinopoulosmailto:Stassinopoulos@lante.com1944492.43Sajoong Bottoni56 Isman StWashingtonUnited Statesmailto:Bottoni@ucsd.eduhttp://www.ucsd.edu/~Bottoni4979 4485 7219 1879male70373.08Mehrdad Sevcikovamailto:Sevcikova@sds.nohttp://www.sds.no/~Sevcikova35Other95431.89Raimondas Holtmanmailto:Holtman@indiana.eduhttp://www.indiana.edu/~HoltmanfemaleHigh School9901.94Kaisa McNaught60 Kader StButteUnited Statesmailto:McNaught@ufl.edu18High School23748.90Bette Erevmailto:Erev@nyu.eduhttp://www.nyu.edu/~Erev4584 3851 4962 47661828245.16Sachem Grab29 Fegeas StSalvadorUnited Statesmailto:Grab@indiana.edu36Other62943.64Bartek Schumaker83 Kumaresan StLimaArgentinamailto:Schumaker@labs.comhttp://www.labs.com/~Schumaker3597 8655 2603 6797Graduate School69779.69Nathalie Rychlymailto:Rychly@cti.grmale22Graduate School36448.54Alassane Brown19 Steingart StTallahasseeTurkeymailto:Brown@ac.be4583 2923 3450 3894female56Graduate School9876.00Ardaman Underwood6 Anrig StBerlinUnited Statesmailto:Underwood@ucdavis.edufemale17088.62Zicheng Raupp43 Clarke StTriUnited Statesmailto:Raupp@umd.edu1889413.77Rosalyn Borrowman71 Mekaouche StCasperUnited Statesmailto:Borrowman@panasonic.comOther18748.51Honari Vendrig59 Dougherty StBolognaUnited Statesmailto:Vendrig@bell-labs.comhttp://www.bell-labs.com/~Vendrig56Other9876.00Magy Yuval52 Penniman StDothanUnited Statesmailto:Yuval@sds.nohttp://www.sds.no/~Yuval6960 5979 2083 3011maleOther147002.31Nikolaos Birdsall20 Morillo StGrenadaUnited Statesmailto:Birdsall@clarkson.edumaleGraduate School48463.16Geraldine Relihan23 Meketon StKahuluiUnited Statesmailto:Relihan@toronto.eduhttp://www.toronto.edu/~RelihanmaleGraduate School28135.59Arup Zhongxiumailto:Zhongxiu@savera.comhttp://www.savera.com/~Zhongxiu8907 5377 1768 2366femaleOther63285.36Roseane Henton21 Falkerngerg StArubaUnited Statesmailto:Henton@csufresno.eduhttp://www.csufresno.edu/~HentonmaleGraduate School43412.47Mehrdad Ewards9 Mosedale StMumbaiUnited Statesmailto:Ewards@edu.hkhttp://www.edu.hk/~Ewards18Graduate School45123.63Radhia Tamches63 Kitano StHonoluluUnited Statesmailto:Tamches@uni-trier.dehttp://www.uni-trier.de/~Tamches6565 7684 2833 7108femaleHigh School27442.54Linore Pradomailto:Prado@uta.edu3098 3930 3792 4349male319876.00Gita Polstermailto:Polster@ask.comhttp://www.ask.com/~Polster52371.54Georgi Adolphe74 Marzullo StCharlestonUnited Statesmailto:Adolphe@verity.comGraduate School34738.51Singaravel Skurczynski41 Zhongxiu StPortlandSwitzerlandmailto:Skurczynski@ntua.grhttp://www.ntua.gr/~Skurczynski9876.00Dhritiman Schapiremailto:Schapire@ucd.iehttp://www.ucd.ie/~Schapire7089 9225 8648 445732Graduate School21453.40Kyujin Thenmozhimailto:Thenmozhi@sbphrd.comhttp://www.sbphrd.com/~Thenmozhi5667 1325 6395 3905femaleCollege18089.31Newton Geibel55 McKinley StWestUnited Statesmailto:Geibel@lbl.gov6955 5513 9649 3373female36High School37546.25Masali Ruedamailto:Rueda@cwi.nlhttp://www.cwi.nl/~Rueda7296 2605 7171 679818College9876.00Mehrdad Abdennadher46 Machin StPortEgyptmailto:Abdennadher@co.inhttp://www.co.in/~Abdennadher4565 8396 6582 1590female19Other49367.09Armond Hebert54 Cooley StFrankfurtCanadamailto:Hebert@rpi.eduhttp://www.rpi.edu/~Hebertfemale67651.65Yoshinari Rajamailto:Raja@nodak.eduhttp://www.nodak.edu/~Raja7807 3048 4554 4266category19female63811.82Lon Leifert45 McKenna StKansasUnited Statesmailto:Leifert@sunysb.eduhttp://www.sunysb.edu/~Leifert6789 8467 1353 581615620.89Frieder Basumailto:Basu@edu.aumale1857760.56Shinji Varhegyi60 Candan StDothanUnited Statesmailto:Varhegyi@forth.grhttp://www.forth.gr/~Varhegyi6982 5985 8455 8370male4522589.34Noelle Ramrasmailto:Ramras@dauphine.frfemale63Other71946.13Herbert Kleiser100 Raghavendra StGeorgeUnited Statesmailto:Kleiser@washington.eduhttp://www.washington.edu/~Kleiser4454 8668 5057 1574female1866561.70Mara Tchuentemailto:Tchuente@telcordia.comhttp://www.telcordia.com/~Tchuentefemale4268999.45Quinlong Usdinmailto:Usdin@imag.fr18High School9876.00Avshalom Attimonellimailto:Attimonelli@uic.eduhttp://www.uic.edu/~Attimonelli7686 9066 7885 14095018437.40Vinot Thomsen2 Kishida StChattanoogaUnited Statesmailto:Thomsen@cornell.eduhttp://www.cornell.edu/~Thomsenfemale33532.36Ravindran Yacobi90 Cools StAlbanyLithuaniamailto:Yacobi@emc.com49Graduate School71359.18Felip Fujisakimailto:Fujisaki@itc.itfemale9876.00Mehrdad Koszlajdamailto:Koszlajda@inria.frhttp://www.inria.fr/~KoszlajdaGraduate School9876.00Kristof Grafe94 Ingolfsdottir StCopenhagenZimbabwemailto:Grafe@lante.comhttp://www.lante.com/~Grafemale4262287.09Suvo Fiutem69 Luff StWindhoekSouth Africamailto:Fiutem@co.jp5089 1407 5205 5391College9876.00Avinash McNeillmailto:McNeill@verity.com8232 2154 3640 2295femaleOther76543.02Arno Takano2 Jezioranski StAkronUnited Statesmailto:Takano@uwo.cahttp://www.uwo.ca/~Takano1059 2269 8254 75152948525.86Jens Rodigermailto:Rodiger@uqam.cahttp://www.uqam.ca/~Rodiger7366 1702 9623 9871female46814.24Keumog Gellerich43 Gove StGenevaKenyamailto:Gellerich@ab.caGraduate School31807.68Kendra Kumaresan85 Metze StBerlinChristmas Islandmailto:Kumaresan@llnl.govhttp://www.llnl.gov/~Kumaresan3525 1127 3070 9580femaleGraduate School56956.07Sukhmay Schwartzbauermailto:Schwartzbauer@purdue.edu4381 3385 4917 12801830444.53Tamitha Iwanski39 Falgout StFlorenceUnited Statesmailto:Iwanski@auth.grfemale76520.37Yahui Tanemomailto:Tanemo@uqam.ca9174 1888 2967 7251High School48609.71Neelam Passafiumemailto:Passafiume@hitachi.comhttp://www.hitachi.com/~Passafiume2967 5196 1495 5214female459876.00Mehrdad Apperley12 Vinar StBucharestUnited Statesmailto:Apperley@ibm.commale19764.36Jacky Kunieda31 Malabarba StGuaymasUnited Statesmailto:Kunieda@uni-mannheim.de4090 9244 8696 7598male18Graduate School61397.86Atreye Livari18 Sangal StCincinnatiSenegalmailto:Livari@msn.comhttp://www.msn.com/~Livarifemale66College23852.19Nataraj Tasistromailto:Tasistro@ac.jphttp://www.ac.jp/~Tasistro9876.00Pragnesh Takanomailto:Takano@labs.comhttp://www.labs.com/~Takano8238 8564 3820 467851Other23226.04Yoshiki Blumbergmailto:Blumberg@ask.com2926 2408 8275 214344100064.62Oddvar Kamijomailto:Kamijo@ou.eduhttp://www.ou.edu/~Kamijo4434 7244 4200 8479female1848441.07Marleen Hancartmailto:Hancart@unical.it8644 5992 4180 8611High School44591.54Thyagaraju Papadias36 Razdan StProvidencialesUnited Statesmailto:Papadias@uni-mb.si9846 8257 2339 235339920.17Leslie Trystrammailto:Trystram@yahoo.com52371.54Georgi Adolphe74 Marzullo StCharlestonUnited Statesmailto:Adolphe@verity.comfemale48896.64Tinko Reinhart100 Dhagat StZihuatenejoBahrainmailto:Reinhart@crossgain.comhttp://www.crossgain.com/~Reinhart9876.00Dhritiman Schapiremailto:Schapire@ucd.iehttp://www.ucd.ie/~Schapire7089 9225 8648 445746College9876.00Ennio Fanchon44 Beeferman StStockholmVatican City Statemailto:Fanchon@bellatlantic.nethttp://www.bellatlantic.net/~Fanchon78286.48Kunimasa Useltonmailto:Uselton@utexas.edu8164 1978 5759 301018Graduate School61430.09Sabrina Blackallmailto:Blackall@poly.eduhttp://www.poly.edu/~Blackallfemale22High School9876.00Narcis Theodoratos93 Sudkamp StOrlandoDenmarkmailto:Theodoratos@berkeley.educategory2female63811.82Lon Leifert45 McKenna StKansasUnited Statesmailto:Leifert@sunysb.eduhttp://www.sunysb.edu/~Leifert6789 8467 1353 58162920536.39Marit Ozols39 Olivo StViennaUnited Statesmailto:Ozols@clarkson.eduhttp://www.clarkson.edu/~Ozols7994 7972 6209 734915620.89Frieder Basumailto:Basu@edu.au18College23941.65Rajaram Lease100 Preishuber StEastUnited Statesmailto:Lease@imag.frhttp://www.imag.fr/~Lease4948 9378 8238 3600female18Graduate School24387.33Mehrdad Christ96 Servatius StMilwaukeeIndonesiamailto:Christ@newpaltz.eduhttp://www.newpaltz.edu/~Christ52743.14Angel McDermid56 Deves StStockholmUnited Statesmailto:McDermid@ucdavis.eduhttp://www.ucdavis.edu/~McDermidmale2885711.23Maung Rainmailto:Rain@cas.czfemale1866561.70Mara Tchuentemailto:Tchuente@telcordia.comhttp://www.telcordia.com/~Tchuente1875013.99Filipe Pappasmailto:Pappas@ac.at5070 6126 9654 699535Other95431.89Raimondas Holtmanmailto:Holtman@indiana.eduhttp://www.indiana.edu/~Holtman59596.19Jurgen Desprez10 Jushchenko StHarrisburgUnited Statesmailto:Desprez@nyu.edufemaleOther44792.93Hagbae Gershkovich62 Soinard StBrusselsAmerican Samoamailto:Gershkovich@llnl.govhttp://www.llnl.gov/~Gershkovichmale19764.36Jacky Kunieda31 Malabarba StGuaymasUnited Statesmailto:Kunieda@uni-mannheim.de4090 9244 8696 7598female17088.62Zicheng Raupp43 Clarke StTriUnited Statesmailto:Raupp@umd.edu30Graduate School46548.36Suneeta Baptiste47 Decugis StDurangoUnited Statesmailto:Baptiste@neu.edumaleCollege62028.39Lucien Cunliffe11 Smotroff StMeridianVatican City Statemailto:Cunliffe@mit.edu2139 7205 4141 4885male18College44173.97Takaaki Carrick53 Blom StBrunswickUnited Statesmailto:Carrick@washington.eduhttp://www.washington.edu/~Carrickmale13990.17Faraz Kendallmailto:Kendall@ucf.eduhttp://www.ucf.edu/~Kendall5984 6936 6736 385475125.30Randal Roushmailto:Roush@msstate.edu6224 7382 7689 8766maleCollege45623.75Shooichi Raither67 Andernach StZihuatenejoUnited Statesmailto:Raither@concordia.caOther18748.51Honari Vendrig59 Dougherty StBolognaUnited Statesmailto:Vendrig@bell-labs.comhttp://www.bell-labs.com/~Vendrig9876.00Pragnesh Takanomailto:Takano@labs.comhttp://www.labs.com/~Takano8238 8564 3820 4678maleOther147002.31Nikolaos Birdsall20 Morillo StGrenadaUnited Statesmailto:Birdsall@clarkson.edu18High School47967.41Naoki Osterloh7 Ghandeharizadeh StCairoTanzaniamailto:Osterloh@ask.comhttp://www.ask.com/~Osterloh7741 8229 7494 194329Other56634.76Lai Greenwaldmailto:Greenwald@filelmaker.comhttp://www.filelmaker.com/~Greenwald9722 4263 8015 6083maleGraduate School48463.16Geraldine Relihan23 Meketon StKahuluiUnited Statesmailto:Relihan@toronto.eduhttp://www.toronto.edu/~RelihanOther69247.75Sanford Mergenmailto:Mergen@msstate.edu34032.09Francesca Weismantelmailto:Weismantel@ucla.edu2763 1794 7943 4753female2425157.94Terrill Uchoamailto:Uchoa@co.in2219500.74Fons Grabnermailto:Grabner@indiana.eduhttp://www.indiana.edu/~Grabnerfemale18Other59467.28Hiroyoshi Takanomailto:Takano@utexas.eduhttp://www.utexas.edu/~Takano4727 1469 2323 6305category24female63811.82Lon Leifert45 McKenna StKansasUnited Statesmailto:Leifert@sunysb.eduhttp://www.sunysb.edu/~Leifert6789 8467 1353 581661161.12Shiby Ginneken58 Nisonger StNewcastleUnited Statesmailto:Ginneken@yorku.cahttp://www.yorku.ca/~Ginneken5020 5482 5482 357834541.24Emilo Schahnmailto:Schahn@filemaker.comhttp://www.filemaker.com/~Schahn5877 8225 7127 2717female18Graduate School24387.33Mehrdad Christ96 Servatius StMilwaukeeIndonesiamailto:Christ@newpaltz.eduhttp://www.newpaltz.edu/~Christfemale29College109893.20Bevin Keustermans55 Kluthe StCharlestonUnited Statesmailto:Keustermans@cwru.edu5018437.40Vinot Thomsen2 Kishida StChattanoogaUnited Statesmailto:Thomsen@cornell.eduhttp://www.cornell.edu/~ThomsenHigh School52123.17Athomas Roubieremailto:Roubiere@yorku.cafemale33532.36Ravindran Yacobi90 Cools StAlbanyLithuaniamailto:Yacobi@emc.commale19High School38050.91Mauri Takanomailto:Takano@sbphrd.comhttp://www.sbphrd.com/~Takanomale70373.08Mehrdad Sevcikovamailto:Sevcikova@sds.nohttp://www.sds.no/~Sevcikovamale45College81262.14Changsik Demirozmailto:Demiroz@umd.edu2601 7963 2940 9617female459876.00Mehrdad Apperley12 Vinar StBucharestUnited Statesmailto:Apperley@ibm.comfemale19High School47409.99Wieb Baummailto:Baum@bell-labs.comhttp://www.bell-labs.com/~BaumHigh School32535.03Drago Showaltermailto:Showalter@auc.dkmale19764.36Jacky Kunieda31 Malabarba StGuaymasUnited Statesmailto:Kunieda@uni-mannheim.de4090 9244 8696 7598female17088.62Zicheng Raupp43 Clarke StTriUnited Statesmailto:Raupp@umd.edumaleCollege9876.00Asmus Hanekemailto:Haneke@unical.ithttp://www.unical.it/~Haneke6994 8976 8481 7963female34591.18Roar Tepfenhart14 Marinissen StGuangzhouUnited Statesmailto:Tepfenhart@duke.eduhttp://www.duke.edu/~Tepfenhart1685 4065 5136 62989876.00Pragnesh Takanomailto:Takano@labs.comhttp://www.labs.com/~Takano8238 8564 3820 467818High School47967.41Naoki Osterloh7 Ghandeharizadeh StCairoTanzaniamailto:Osterloh@ask.comhttp://www.ask.com/~Osterloh7741 8229 7494 1943femaleCollege32788.80Mitchel Cunliffemailto:Cunliffe@dauphine.frhttp://www.dauphine.fr/~Cunliffe44100064.62Oddvar Kamijomailto:Kamijo@ou.eduhttp://www.ou.edu/~Kamijo4434 7244 4200 8479male3959387.85Allison Balazsmailto:Balazs@ibm.comhttp://www.ibm.com/~Balazs26419.07Yukata Beauducel47 Araya StCharlottesvilleUnited Statesmailto:Beauducel@poznan.plhttp://www.poznan.pl/~Beauducel7393 8354 9466 4534male88737.57Vanathi Takano39 Borowsky StIstanbulUnited Statesmailto:Takano@baylor.edu9748 8717 5684 699032College31589.10Daria McDermid79 Harllee StCalgaryTurkeymailto:McDermid@acm.orghttp://www.acm.org/~McDermidfemale21High School43968.24Yelena Takano10 Luit StAmarilloSaudi Arabiamailto:Takano@uga.edufemaleCollege18089.31Newton Geibel55 McKinley StWestUnited Statesmailto:Geibel@lbl.gov6955 5513 9649 3373female2425157.94Terrill Uchoamailto:Uchoa@co.infemaleCollege66111.11Quanfeng Grahn1 Billinghurst StOrlandoUnited Statesmailto:Grahn@edu.cnhttp://www.edu.cn/~Grahn6176 5125 1462 2376category6female63811.82Lon Leifert45 McKenna StKansasUnited Statesmailto:Leifert@sunysb.eduhttp://www.sunysb.edu/~Leifert6789 8467 1353 5816male71962.16Fillia Wichlaczmailto:Wichlacz@ou.eduhttp://www.ou.edu/~Wichlacz1848 6469 5307 63722920536.39Marit Ozols39 Olivo StViennaUnited Statesmailto:Ozols@clarkson.eduhttp://www.clarkson.edu/~Ozols7994 7972 6209 7349male12885.30Mehrdad Schimmler76 McMorrow StAlbuquerqueUnited Statesmailto:Schimmler@evergreen.eduhttp://www.evergreen.edu/~Schimmler5264 9278 9093 16321852503.82Garnik Takano43 Hendren StMexicoEl Salvadormailto:Takano@ask.comhttp://www.ask.com/~Takano6865 4881 8965 221718College23941.65Rajaram Lease100 Preishuber StEastUnited Statesmailto:Lease@imag.frhttp://www.imag.fr/~Lease4948 9378 8238 3600male2885711.23Maung Rainmailto:Rain@cas.czfemale63Other71946.13Herbert Kleiser100 Raghavendra StGeorgeUnited Statesmailto:Kleiser@washington.eduhttp://www.washington.edu/~Kleiser4454 8668 5057 15743364225.11Arjen Emden44 Goos StLexingtonUnited Statesmailto:Emden@forwiss.dehttp://www.forwiss.de/~Emden2468 4642 9646 5367female1866561.70Mara Tchuentemailto:Tchuente@telcordia.comhttp://www.telcordia.com/~Tchuentefemale24039.95May Ramsden33 Tano StCaracasGeorgiamailto:Ramsden@brandeis.edufemale4268999.45Quinlong Usdinmailto:Usdin@imag.frfemale29College109893.20Bevin Keustermans55 Kluthe StCharlestonUnited Statesmailto:Keustermans@cwru.edu5018437.40Vinot Thomsen2 Kishida StChattanoogaUnited Statesmailto:Thomsen@cornell.eduhttp://www.cornell.edu/~Thomsen49Graduate School71359.18Felip Fujisakimailto:Fujisaki@itc.itfemale9876.00Mehrdad Koszlajdamailto:Koszlajda@inria.frhttp://www.inria.fr/~Koszlajda32165.04Margrethe Dowellmailto:Dowell@brandeis.eduGraduate School9876.00Kristof Grafe94 Ingolfsdottir StCopenhagenZimbabwemailto:Grafe@lante.comhttp://www.lante.com/~Grafefemale80670.94Shiquan Wixonmailto:Wixon@pi.it47Graduate School9876.00Ebbe Kawashima23 Rinn StHelenaUnited Statesmailto:Kawashima@gmu.edumaleGraduate School18103.99Raja Schroermailto:Schroer@ac.kr35Other95431.89Raimondas Holtmanmailto:Holtman@indiana.eduhttp://www.indiana.edu/~HoltmanfemaleOther76543.02Arno Takano2 Jezioranski StAkronUnited Statesmailto:Takano@uwo.cahttp://www.uwo.ca/~Takano1059 2269 8254 7515male3760708.89Nobuko Manara39 Pigeon StMontgomeryUnited Statesmailto:Manara@imag.frhttp://www.imag.fr/~Manara8751 5605 9270 864618High School23748.90Bette Erevmailto:Erev@nyu.eduhttp://www.nyu.edu/~Erev4584 3851 4962 4766female19High School47409.99Wieb Baummailto:Baum@bell-labs.comhttp://www.bell-labs.com/~Baumfemale44Graduate School62236.54Fano Usmanimailto:Usmani@unf.eduhttp://www.unf.edu/~Usmani4826 7793 3421 79141889413.77Rosalyn Borrowman71 Mekaouche StCasperUnited Statesmailto:Borrowman@panasonic.comfemale24High School53332.77Berardo Radwanmailto:Radwan@clarkson.eduhttp://www.clarkson.edu/~Radwan5362 4892 6180 7214male1947616.43Gurmeet Beounesmailto:Beounes@yorku.camaleCollege62028.39Lucien Cunliffe11 Smotroff StMeridianVatican City Statemailto:Cunliffe@mit.edu2139 7205 4141 4885Other18748.51Honari Vendrig59 Dougherty StBolognaUnited Statesmailto:Vendrig@bell-labs.comhttp://www.bell-labs.com/~VendrigmaleHigh School22127.36Yannik Hamblinmailto:Hamblin@cohera.com56Other9876.00Magy Yuval52 Penniman StDothanUnited Statesmailto:Yuval@sds.nohttp://www.sds.no/~Yuval6960 5979 2083 301118High School47967.41Naoki Osterloh7 Ghandeharizadeh StCairoTanzaniamailto:Osterloh@ask.comhttp://www.ask.com/~Osterloh7741 8229 7494 1943female31313.14Upendra Sueyoshi100 Iwayama StPensacolaUnited Statesmailto:Sueyoshi@msstate.edu1867501.36Terunao Veccia53 Brightwell StToulouseHondurasmailto:Veccia@sbphrd.comfemale48896.64Tinko Reinhart100 Dhagat StZihuatenejoBahrainmailto:Reinhart@crossgain.comhttp://www.crossgain.com/~ReinhartfemaleOther98527.30Witold Straneymailto:Straney@cas.cz2461 6546 4698 2228Other49831.44Shyam Taganskymailto:Tagansky@cwru.eduhttp://www.cwru.edu/~Tagansky44103147.12Jamaludin Pigeot64 Gire StMonroeZambiamailto:Pigeot@toronto.eduhttp://www.toronto.edu/~Pigeot6115 7380 3797 5687female22High School9876.00Narcis Theodoratos93 Sudkamp StOrlandoDenmarkmailto:Theodoratos@berkeley.educategory154137695.50Miron Rivals33 Besancenot StShannonUnited Statesmailto:Rivals@ac.be5183 2729 4304 4288male4522589.34Noelle Ramrasmailto:Ramras@dauphine.frfemale1866561.70Mara Tchuentemailto:Tchuente@telcordia.comhttp://www.telcordia.com/~Tchuentemale18Other84592.63Jayakrishnan Turakainenmailto:Turakainen@evergreen.edu1828898.01Mimmo Stiftermailto:Stifter@edu.cnhttp://www.edu.cn/~Stifter3829 2675 8446 50113456260.67Liesbeth Slutz5 Seneviratne StOntarioUnited Statesmailto:Slutz@berkeley.edu5271 5154 7113 9635Graduate School9876.00Kristof Grafe94 Ingolfsdottir StCopenhagenZimbabwemailto:Grafe@lante.comhttp://www.lante.com/~GrafefemaleGraduate School54668.95Joey Girouxmailto:Giroux@crossgain.comhttp://www.crossgain.com/~Giroux6425 5745 4662 1727female309876.00Gertrud Zschoche77 Lyle StMexicoMacaumailto:Zschoche@microsoft.comhttp://www.microsoft.com/~ZschocheCollege48030.11Apostol Federico100 Fussichen StDublinUnited Statesmailto:Federico@duke.edu9540 9764 8697 345418Graduate School41595.76Nevio Drashansky60 Petry StElUnited Statesmailto:Drashansky@evergreen.edu7712 4592 2474 5574High School9876.00Guoping Ghazaliemailto:Ghazalie@sunysb.eduCollege26548.80Martial Miaramailto:Miara@lante.comfemaleHigh School11071.29Grady Bitnermailto:Bitner@uwindsor.cafemaleHigh School95732.32Hagen Artosimailto:Artosi@clustra.comhttp://www.clustra.com/~Artosi7136 1358 8743 5847female76520.37Yahui Tanemomailto:Tanemo@uqam.ca9174 1888 2967 7251femaleOther44792.93Hagbae Gershkovich62 Soinard StBrusselsAmerican Samoamailto:Gershkovich@llnl.govhttp://www.llnl.gov/~Gershkovichfemale459876.00Mehrdad Apperley12 Vinar StBucharestUnited Statesmailto:Apperley@ibm.comHigh School32535.03Drago Showaltermailto:Showalter@auc.dk23Other32990.55Endre Schmeck91 Hokimoto StKansasUnited Statesmailto:Schmeck@ucf.edu6028 9130 7525 92761835873.68Hercules Fornemailto:Forne@ac.krmale18Other78929.23Pierrette Valiente10 Gurevitch StMulhouseRussian Federationmailto:Valiente@ask.comfemaleCollege32788.80Mitchel Cunliffemailto:Cunliffe@dauphine.frhttp://www.dauphine.fr/~CunliffeCollege79398.49Remigijus Przuljmailto:Przulj@rwth-aachen.defemale2933284.56Chams Michailidis11 Davoren StGainesvilleTanzaniamailto:Michailidis@ntua.grmaleGraduate School43412.47Mehrdad Ewards9 Mosedale StMumbaiUnited Statesmailto:Ewards@edu.hkhttp://www.edu.hk/~Ewardsmale5438040.25Mehrdad Dundas48 Junior StRoanokeUnited Statesmailto:Dundas@ac.ukfemale18129137.70Khedija Yonezawa57 Naixiao StToulouseChilemailto:Yonezawa@clustra.comhttp://www.clustra.com/~Yonezawa2333 2094 5586 4351Graduate School46598.25Adonios Genssler37 Fadgyas StMeridaUnited Statesmailto:Genssler@ou.edu9347 7564 5309 6289Graduate School52300.25Berto Parisi18 Cagley StColumbusTaiwanmailto:Parisi@sfu.cahttp://www.sfu.ca/~Parisi2059 3864 2375 29742983848.21Yuguang Uhrik44 Dahlhaus StVeniceUnited Statesmailto:Uhrik@telcordia.comhttp://www.telcordia.com/~Uhrikfemale21High School43968.24Yelena Takano10 Luit StAmarilloSaudi Arabiamailto:Takano@uga.edufemale67651.65Yoshinari Rajamailto:Raja@nodak.eduhttp://www.nodak.edu/~Raja7807 3048 4554 4266female1857957.32Shiquan Cappellimailto:Cappelli@uiuc.educategory13female9876.00Hiro Bergere94 Nissenbaum StMelbourneUnited Statesmailto:Bergere@prc.comhttp://www.prc.com/~Bergere9941 5989 9575 1127male64243.77Huican Szmurlo52 Ternovskaia StCodyUnited Statesmailto:Szmurlo@ucsd.eduhttp://www.ucsd.edu/~Szmurlo2217 9440 7362 3405female93942.48Abdelilah Chepyzhov93 Milgrom StHuntsvilleUnited Statesmailto:Chepyzhov@fsu.edu8729 1525 7474 9453male14407.23Ljupco Cappello55 Lotkin StConakryBelgiummailto:Cappello@zambeel.comhttp://www.zambeel.com/~Cappello2870444.29Mountaz Ossenbruggenmailto:Ossenbruggen@whizbang.comfemale21Graduate School34281.58Lilly Zuiderveld62 Lamma StElUnited Statesmailto:Zuiderveld@computer.orghttp://www.computer.org/~Zuiderveld26770.70Fun Lattin93 Mutschke StPascoUnited Statesmailto:Lattin@forth.grhttp://www.forth.gr/~LattinOther54432.83Charlotte Clasenmailto:Clasen@evergreen.eduhttp://www.evergreen.edu/~Clasen8141 8906 4540 295733857.61Kristof Pittmailto:Pitt@unf.edu6369 9760 9277 8247female33532.36Ravindran Yacobi90 Cools StAlbanyLithuaniamailto:Yacobi@emc.comGraduate School10605.72Katashi Landymailto:Landy@wisc.eduGraduate School9876.00Kristof Grafe94 Ingolfsdottir StCopenhagenZimbabwemailto:Grafe@lante.comhttp://www.lante.com/~GrafemaleGraduate School18103.99Raja Schroermailto:Schroer@ac.krmale1835487.60Mehrdad Huhdanpaamailto:Huhdanpaa@itc.ithttp://www.itc.it/~Huhdanpaa18Graduate School41595.76Nevio Drashansky60 Petry StElUnited Statesmailto:Drashansky@evergreen.edu7712 4592 2474 5574High School27555.24Rosli Horndaschmailto:Horndasch@bell-labs.com1669 2715 2205 1746female46814.24Keumog Gellerich43 Gove StGenevaKenyamailto:Gellerich@ab.ca3222366.88Eneko Leask63 Lester StAmsterdamMarshall Islandsmailto:Leask@versata.com3921 5024 9469 9080Graduate School9876.00Tokinori Pinzanimailto:Pinzani@forth.grhttp://www.forth.gr/~Pinzani7965 8729 6099 5583femaleHigh School11071.29Grady Bitnermailto:Bitner@uwindsor.cafemale3943323.95Mitsugu Thobenmailto:Thoben@sbphrd.com4537 1155 4156 6649femaleOther44792.93Hagbae Gershkovich62 Soinard StBrusselsAmerican Samoamailto:Gershkovich@llnl.govhttp://www.llnl.gov/~Gershkovichfemale29High School44522.39Rupal Takanomailto:Takano@conclusivestrategies.comfemale459876.00Mehrdad Apperley12 Vinar StBucharestUnited Statesmailto:Apperley@ibm.comfemale14853.15Rostam Littlestone64 Pokoski StParisUnited Statesmailto:Littlestone@sdsc.edu9723 1922 2703 4762female34591.18Roar Tepfenhart14 Marinissen StGuangzhouUnited Statesmailto:Tepfenhart@duke.eduhttp://www.duke.edu/~Tepfenhart1685 4065 5136 6298male26099.90Sheilah Takano27 Chandna StToledoUnited Statesmailto:Takano@neu.eduhttp://www.neu.edu/~Takano5166 3645 9483 2416female3889088.09Masamitsu Andaleonmailto:Andaleon@cti.grfemaleHigh School57624.85Srihari Murrillmailto:Murrill@edu.cnfemale2933284.56Chams Michailidis11 Davoren StGainesvilleTanzaniamailto:Michailidis@ntua.grfemale18129137.70Khedija Yonezawa57 Naixiao StToulouseChilemailto:Yonezawa@clustra.comhttp://www.clustra.com/~Yonezawa2333 2094 5586 435139920.17Leslie Trystrammailto:Trystram@yahoo.commale58High School53088.84Honglan Hagimontmailto:Hagimont@edu.auhttp://www.edu.au/~Hagimontmale34Other41124.07Hongsheng Marrakchimailto:Marrakchi@edu.au4697 8715 7524 3687male3318777.80Wil Herleymailto:Herley@brown.eduhttp://www.brown.edu/~Herley9077 3456 8000 1843female2425157.94Terrill Uchoamailto:Uchoa@co.in44103147.12Jamaludin Pigeot64 Gire StMonroeZambiamailto:Pigeot@toronto.eduhttp://www.toronto.edu/~Pigeot6115 7380 3797 568735High School104197.29Arne Ohori80 Belleghem StManchesterUnited Statesmailto:Ohori@concordia.ca5057 7242 3265 1360category14male71962.16Fillia Wichlaczmailto:Wichlacz@ou.eduhttp://www.ou.edu/~Wichlacz1848 6469 5307 6372male64243.77Huican Szmurlo52 Ternovskaia StCodyUnited Statesmailto:Szmurlo@ucsd.eduhttp://www.ucsd.edu/~Szmurlo2217 9440 7362 3405male12885.30Mehrdad Schimmler76 McMorrow StAlbuquerqueUnited Statesmailto:Schimmler@evergreen.eduhttp://www.evergreen.edu/~Schimmler5264 9278 9093 16322870444.29Mountaz Ossenbruggenmailto:Ossenbruggen@whizbang.comOther9876.00Bharadwaj Nozawa58 Regoli StWarsawUnited Statesmailto:Nozawa@cas.czhttp://www.cas.cz/~Nozawa3284 7939 4808 3523female3449147.80Frantisek Speltmailto:Spelt@versata.comhttp://www.versata.com/~Spelt3364225.11Arjen Emden44 Goos StLexingtonUnited Statesmailto:Emden@forwiss.dehttp://www.forwiss.de/~Emden2468 4642 9646 5367female28College23070.82Hakim Savarammailto:Savaram@nyu.eduhttp://www.nyu.edu/~Savaramfemale4268999.45Quinlong Usdinmailto:Usdin@imag.fr18High School9876.00Avshalom Attimonellimailto:Attimonelli@uic.eduhttp://www.uic.edu/~Attimonelli7686 9066 7885 1409female29College109893.20Bevin Keustermans55 Kluthe StCharlestonUnited Statesmailto:Keustermans@cwru.edu5018437.40Vinot Thomsen2 Kishida StChattanoogaUnited Statesmailto:Thomsen@cornell.eduhttp://www.cornell.edu/~Thomsen55498.73Mehrdad Barroso23 Grabner StRapidUnited Statesmailto:Barroso@uwo.cafemale33532.36Ravindran Yacobi90 Cools StAlbanyLithuaniamailto:Yacobi@emc.comGraduate School10605.72Katashi Landymailto:Landy@wisc.edufemale70860.02Horward Hammerschmidtmailto:Hammerschmidt@uni-mannheim.defemaleGraduate School54668.95Joey Girouxmailto:Giroux@crossgain.comhttp://www.crossgain.com/~Giroux6425 5745 4662 1727female21College20347.38Isamu Kupiecmailto:Kupiec@twsu.eduhttp://www.twsu.edu/~Kupiec6071 5377 9019 2963College106547.20Khatoun Rankamailto:Ranka@clarkson.eduhttp://www.clarkson.edu/~Ranka38High School50055.21Ermanno Shilovmailto:Shilov@uta.edu9902 7401 7046 402579483.09Rafik Mahmudmailto:Mahmud@sleepycat.comhttp://www.sleepycat.com/~Mahmud18Graduate School30851.14LouAnn Mulvany13 Whitt StBarcelonaUnited Statesmailto:Mulvany@ucla.eduhttp://www.ucla.edu/~Mulvany6788 3544 7141 902541Other9876.00Rattasit Brookman3 Heiman StCalgaryUnited Statesmailto:Brookman@edu.sg8108 2667 4487 40983432403.38Subash Takano2 Stranks StKalamazooSan Marinomailto:Takano@sybase.com8809 7276 9678 1558femaleOther44792.93Hagbae Gershkovich62 Soinard StBrusselsAmerican Samoamailto:Gershkovich@llnl.govhttp://www.llnl.gov/~Gershkovichfemale459876.00Mehrdad Apperley12 Vinar StBucharestUnited Statesmailto:Apperley@ibm.com28College22854.05Mas Bretthauermailto:Bretthauer@uu.se6903 3735 8900 1605male19764.36Jacky Kunieda31 Malabarba StGuaymasUnited Statesmailto:Kunieda@uni-mannheim.de4090 9244 8696 7598female17088.62Zicheng Raupp43 Clarke StTriUnited Statesmailto:Raupp@umd.edu29864.60Staphane Ariola92 Philbin StAbuGuatemalamailto:Ariola@unf.eduhttp://www.unf.edu/~Ariola8610 1268 6870 4995College79398.49Remigijus Przuljmailto:Przulj@rwth-aachen.demaleGraduate School28135.59Arup Zhongxiumailto:Zhongxiu@savera.comhttp://www.savera.com/~Zhongxiu8907 5377 1768 236626419.07Yukata Beauducel47 Araya StCharlottesvilleUnited Statesmailto:Beauducel@poznan.plhttp://www.poznan.pl/~Beauducel7393 8354 9466 4534High School22905.31Merce Beoumes17 Lattin StLawtonQatarmailto:Beoumes@washington.eduhttp://www.washington.edu/~BeoumesHigh School44591.54Thyagaraju Papadias36 Razdan StProvidencialesUnited Statesmailto:Papadias@uni-mb.si9846 8257 2339 235339920.17Leslie Trystrammailto:Trystram@yahoo.com1867501.36Terunao Veccia53 Brightwell StToulouseHondurasmailto:Veccia@sbphrd.com26College13999.18Yoko Meursmailto:Meurs@rpi.edu4761 5609 3284 980131109.71Stefano Veselmailto:Vesel@hp.comfemale2425157.94Terrill Uchoamailto:Uchoa@co.infemaleOther98527.30Witold Straneymailto:Straney@cas.cz2461 6546 4698 2228Other49831.44Shyam Taganskymailto:Tagansky@cwru.eduhttp://www.cwru.edu/~Tagansky2219500.74Fons Grabnermailto:Grabner@indiana.eduhttp://www.indiana.edu/~Grabner53Graduate School33338.11Kwangjo Benainimailto:Benaini@uga.edufemale22High School9876.00Narcis Theodoratos93 Sudkamp StOrlandoDenmarkmailto:Theodoratos@berkeley.edufemale24Graduate School50690.73Tevfik Shumilov79 Nisiyama StCincinnatiUnited Statesmailto:Shumilov@ou.edu7217 8872 1602 19673324186.28Marco Meszaros49 Wohn StKievSt. Vincent and Grenadinesmailto:Meszaros@ac.athttp://www.ac.at/~Meszaros6309 7243 2721 1636category17male71962.16Fillia Wichlaczmailto:Wichlacz@ou.eduhttp://www.ou.edu/~Wichlacz1848 6469 5307 637234541.24Emilo Schahnmailto:Schahn@filemaker.comhttp://www.filemaker.com/~Schahn5877 8225 7127 2717male2885711.23Maung Rainmailto:Rain@cas.czmale4522589.34Noelle Ramrasmailto:Ramras@dauphine.fr1834791.61Limor Schlichtermailto:Schlichter@dauphine.fr2262 3605 4735 3715female63Other71946.13Herbert Kleiser100 Raghavendra StGeorgeUnited Statesmailto:Kleiser@washington.eduhttp://www.washington.edu/~Kleiser4454 8668 5057 15743364225.11Arjen Emden44 Goos StLexingtonUnited Statesmailto:Emden@forwiss.dehttp://www.forwiss.de/~Emden2468 4642 9646 53672868050.59Rogerio Kuemmerle97 McAfee StStockholmUnited Statesmailto:Kuemmerle@njit.edu4349 1772 6659 58015018437.40Vinot Thomsen2 Kishida StChattanoogaUnited Statesmailto:Thomsen@cornell.eduhttp://www.cornell.edu/~Thomsenfemale33532.36Ravindran Yacobi90 Cools StAlbanyLithuaniamailto:Yacobi@emc.comGraduate School9876.00Kristof Grafe94 Ingolfsdottir StCopenhagenZimbabwemailto:Grafe@lante.comhttp://www.lante.com/~GrafefemaleGraduate School54668.95Joey Girouxmailto:Giroux@crossgain.comhttp://www.crossgain.com/~Giroux6425 5745 4662 17271944492.43Sajoong Bottoni56 Isman StWashingtonUnited Statesmailto:Bottoni@ucsd.eduhttp://www.ucsd.edu/~Bottoni4979 4485 7219 1879College48030.11Apostol Federico100 Fussichen StDublinUnited Statesmailto:Federico@duke.edu9540 9764 8697 3454female49245.92Yongjian Dechter88 Schwederski StGreatUnited Statesmailto:Dechter@ernet.in3385 8194 5484 288579483.09Rafik Mahmudmailto:Mahmud@sleepycat.comhttp://www.sleepycat.com/~Mahmud2948525.86Jens Rodigermailto:Rodiger@uqam.cahttp://www.uqam.ca/~Rodiger7366 1702 9623 987141Other9876.00Rattasit Brookman3 Heiman StCalgaryUnited Statesmailto:Brookman@edu.sg8108 2667 4487 4098Graduate School9876.00Tokinori Pinzanimailto:Pinzani@forth.grhttp://www.forth.gr/~Pinzani7965 8729 6099 55831828245.16Sachem Grab29 Fegeas StSalvadorUnited Statesmailto:Grab@indiana.edu29College85365.36Sushant Baransky39 Varpaaniemi StChicagoZambiamailto:Baransky@du.eduCollege56284.41Burkhard Guardalben83 Iliopoulos StMeridianUnited Statesmailto:Guardalben@nodak.edu4905 6016 2395 4392High School32535.03Drago Showaltermailto:Showalter@auc.dk1889413.77Rosalyn Borrowman71 Mekaouche StCasperUnited Statesmailto:Borrowman@panasonic.com2739491.29Hideo Korachmailto:Korach@cas.czhttp://www.cas.cz/~Korach8091 7556 8996 4369105623.69Yanni Montemayormailto:Montemayor@ac.athttp://www.ac.at/~MontemayormaleCollege9876.00Asmus Hanekemailto:Haneke@unical.ithttp://www.unical.it/~Haneke6994 8976 8481 796329864.60Staphane Ariola92 Philbin StAbuGuatemalamailto:Ariola@unf.eduhttp://www.unf.edu/~Ariola8610 1268 6870 499573540.90Angel Kanamorimailto:Kanamori@telcordia.comhttp://www.telcordia.com/~Kanamori29Other56634.76Lai Greenwaldmailto:Greenwald@filelmaker.comhttp://www.filelmaker.com/~Greenwald9722 4263 8015 6083femaleCollege32788.80Mitchel Cunliffemailto:Cunliffe@dauphine.frhttp://www.dauphine.fr/~CunliffeCollege79398.49Remigijus Przuljmailto:Przulj@rwth-aachen.de44100064.62Oddvar Kamijomailto:Kamijo@ou.eduhttp://www.ou.edu/~Kamijo4434 7244 4200 8479Other69247.75Sanford Mergenmailto:Mergen@msstate.edumale32039.10Guanshan Keustermans5 Hazony StBudapestUnited Statesmailto:Keustermans@upenn.eduhttp://www.upenn.edu/~Keustermans7994 4699 1996 9940579876.00Mandayam Wittlichmailto:Wittlich@ogi.eduhttp://www.ogi.edu/~WittlichmaleGraduate School43412.47Mehrdad Ewards9 Mosedale StMumbaiUnited Statesmailto:Ewards@edu.hkhttp://www.edu.hk/~Ewards29College10406.64Mingzeng Uchoa76 Vongsathorn StAcapulcoUnited Statesmailto:Uchoa@baylor.edu8084 7023 9186 612839920.17Leslie Trystrammailto:Trystram@yahoo.commale4641437.21Chanderjit Takanomailto:Takano@savera.comhttp://www.savera.com/~Takano5097 6993 1970 6644male58High School53088.84Honglan Hagimontmailto:Hagimont@edu.auhttp://www.edu.au/~HagimontOther9876.00Tsunehiro Erdogan58 Tedijanto StCairoUnited Statesmailto:Erdogan@prc.com679876.00Mehrdad Holldobler38 Delaune StMontrealUnited Statesmailto:Holldobler@sunysb.edumale3318777.80Wil Herleymailto:Herley@brown.eduhttp://www.brown.edu/~Herley9077 3456 8000 1843female2425157.94Terrill Uchoamailto:Uchoa@co.inHigh School21237.58Masahito Bratsberg81 Nakatani StBamakoIvory Coastmailto:Bratsberg@savera.comhttp://www.savera.com/~Bratsbergfemale36High School37546.25Masali Ruedamailto:Rueda@cwi.nlhttp://www.cwi.nl/~Rueda7296 2605 7171 679818Graduate School61430.09Sabrina Blackallmailto:Blackall@poly.eduhttp://www.poly.edu/~Blackallcategory1male64243.77Huican Szmurlo52 Ternovskaia StCodyUnited Statesmailto:Szmurlo@ucsd.eduhttp://www.ucsd.edu/~Szmurlo2217 9440 7362 3405male38High School35391.33Samson Scopinich22 Luit StNassauLithuaniamailto:Scopinich@forth.grhttp://www.forth.gr/~Scopinich7744 1014 3146 57873960267.78Sahrah Takano64 Csaba StGuatemalaNepalmailto:Takano@concordia.cahttp://www.concordia.ca/~Takano5018437.40Vinot Thomsen2 Kishida StChattanoogaUnited Statesmailto:Thomsen@cornell.eduhttp://www.cornell.edu/~Thomsenfemale9876.00Mehrdad Koszlajdamailto:Koszlajda@inria.frhttp://www.inria.fr/~KoszlajdafemaleCollege29478.84Panayotis Kuemmerlemailto:Kuemmerle@edu.sgfemale49245.92Yongjian Dechter88 Schwederski StGreatUnited Statesmailto:Dechter@ernet.in3385 8194 5484 2885female32High School47370.23Manish Jupinmailto:Jupin@uni-muenster.de18Graduate School41595.76Nevio Drashansky60 Petry StElUnited Statesmailto:Drashansky@evergreen.edu7712 4592 2474 5574High School27555.24Rosli Horndaschmailto:Horndasch@bell-labs.com1669 2715 2205 17462948525.86Jens Rodigermailto:Rodiger@uqam.cahttp://www.uqam.ca/~Rodiger7366 1702 9623 9871High School9876.00Guoping Ghazaliemailto:Ghazalie@sunysb.eduCollege9876.00Odoardo Rajaraman39 Backelin StVillahermosaUnited Statesmailto:Rajaraman@ul.pthttp://www.ul.pt/~RajaramanfemaleHigh School95732.32Hagen Artosimailto:Artosi@clustra.comhttp://www.clustra.com/~Artosi7136 1358 8743 5847High School32535.03Drago Showaltermailto:Showalter@auc.dkfemale17088.62Zicheng Raupp43 Clarke StTriUnited Statesmailto:Raupp@umd.edufemale2652187.04Bokyung Ranganath63 Lanteri StEvansvilleUnited Statesmailto:Ranganath@lante.com6624 8488 5785 495418Other9995.92Martial Chorvat65 Campadelli StMonterreyUnited Statesmailto:Chorvat@zambeel.com4079 3475 5627 8448maleCollege9876.00Asmus Hanekemailto:Haneke@unical.ithttp://www.unical.it/~Haneke6994 8976 8481 7963female34591.18Roar Tepfenhart14 Marinissen StGuangzhouUnited Statesmailto:Tepfenhart@duke.eduhttp://www.duke.edu/~Tepfenhart1685 4065 5136 6298Other18748.51Honari Vendrig59 Dougherty StBolognaUnited Statesmailto:Vendrig@bell-labs.comhttp://www.bell-labs.com/~Vendrig9876.00Pragnesh Takanomailto:Takano@labs.comhttp://www.labs.com/~Takano8238 8564 3820 4678maleOther147002.31Nikolaos Birdsall20 Morillo StGrenadaUnited Statesmailto:Birdsall@clarkson.edu48128.34Martien Noortwijk25 Melski StProvidencialesUnited Statesmailto:Noortwijk@co.inhttp://www.co.in/~Noortwijk3902 2842 7544 649218High School47967.41Naoki Osterloh7 Ghandeharizadeh StCairoTanzaniamailto:Osterloh@ask.comhttp://www.ask.com/~Osterloh7741 8229 7494 1943female3889088.09Masamitsu Andaleonmailto:Andaleon@cti.grmaleGraduate School28135.59Arup Zhongxiumailto:Zhongxiu@savera.comhttp://www.savera.com/~Zhongxiu8907 5377 1768 2366female17100.56Kyosun Takanomailto:Takano@umb.eduhttp://www.umb.edu/~Takano4914 3209 2337 5612male5438040.25Mehrdad Dundas48 Junior StRoanokeUnited Statesmailto:Dundas@ac.ukmale88737.57Vanathi Takano39 Borowsky StIstanbulUnited Statesmailto:Takano@baylor.edu9748 8717 5684 699043968.43Hausi Henriksson11 Shiota StSeattleUnited Statesmailto:Henriksson@uqam.cahttp://www.uqam.ca/~Henriksson27Graduate School35214.05Tobias Veeraraghavan41 Cavedoni StAguascalientesUnited Statesmailto:Veeraraghavan@umb.edu8969 5456 9679 1336female21High School43968.24Yelena Takano10 Luit StAmarilloSaudi Arabiamailto:Takano@uga.edufemale2425157.94Terrill Uchoamailto:Uchoa@co.inmaleCollege79622.37Yehuda Benkahlamailto:Benkahla@ac.krhttp://www.ac.kr/~Benkahla4916 7773 2536 95043324186.28Marco Meszaros49 Wohn StKievSt. Vincent and Grenadinesmailto:Meszaros@ac.athttp://www.ac.at/~Meszaros6309 7243 2721 1636category20male64243.77Huican Szmurlo52 Ternovskaia StCodyUnited Statesmailto:Szmurlo@ucsd.eduhttp://www.ucsd.edu/~Szmurlo2217 9440 7362 340561161.12Shiby Ginneken58 Nisonger StNewcastleUnited Statesmailto:Ginneken@yorku.cahttp://www.yorku.ca/~Ginneken5020 5482 5482 35782870444.29Mountaz Ossenbruggenmailto:Ossenbruggen@whizbang.commale1857760.56Shinji Varhegyi60 Candan StDothanUnited Statesmailto:Varhegyi@forth.grhttp://www.forth.gr/~Varhegyi6982 5985 8455 837034541.24Emilo Schahnmailto:Schahn@filemaker.comhttp://www.filemaker.com/~Schahn5877 8225 7127 2717maleGraduate School47377.02Sanjai Dangedejmailto:Dangedej@unf.eduhttp://www.unf.edu/~Dangedej1212 9452 9839 41591834791.61Limor Schlichtermailto:Schlichter@dauphine.fr2262 3605 4735 3715female1866561.70Mara Tchuentemailto:Tchuente@telcordia.comhttp://www.telcordia.com/~TchuentemaleHigh School30401.42Yonghoan Baba95 Shioya StGuangzhouUnited Statesmailto:Baba@llnl.govfemale9876.00Mehrdad Koszlajdamailto:Koszlajda@inria.frhttp://www.inria.fr/~KoszlajdafemaleGraduate School54668.95Joey Girouxmailto:Giroux@crossgain.comhttp://www.crossgain.com/~Giroux6425 5745 4662 172740268.84Zosimo Basmailto:Bas@uta.edu3953 1957 8995 9210maleGraduate School18103.99Raja Schroermailto:Schroer@ac.krfemaleCollege19207.80Bahaa Lortz24 Zaimov StAnchorageUnited Statesmailto:Lortz@toronto.edu1432 1375 9826 3007male72247.13Djordje Milesmailto:Miles@att.com4147 2060 2989 7208High School66838.04Claudine Mihalisinmailto:Mihalisin@cabofalso.comhttp://www.cabofalso.com/~Mihalisin6184 8660 1839 1662female29Other34068.64Katsumasa Takano61 Claudson StKilleenUnited Statesmailto:Takano@uni-mb.sihttp://www.uni-mb.si/~Takano9056 8763 7140 1944female62083.70Jaejin Hauswirth32 Zrehen StJacksonUnited Statesmailto:Hauswirth@pitt.eduhttp://www.pitt.edu/~Hauswirth6218 3179 2347 5721female3943323.95Mitsugu Thobenmailto:Thoben@sbphrd.com4537 1155 4156 6649femaleOther44792.93Hagbae Gershkovich62 Soinard StBrusselsAmerican Samoamailto:Gershkovich@llnl.govhttp://www.llnl.gov/~Gershkovich36Other62943.64Bartek Schumaker83 Kumaresan StLimaArgentinamailto:Schumaker@labs.comhttp://www.labs.com/~Schumaker3597 8655 2603 679761041.02Baruch Karcichmailto:Karcich@inria.frhttp://www.inria.fr/~Karcich28College22854.05Mas Bretthauermailto:Bretthauer@uu.se6903 3735 8900 1605male19764.36Jacky Kunieda31 Malabarba StGuaymasUnited Statesmailto:Kunieda@uni-mannheim.de4090 9244 8696 7598Other20588.39Elham Pelletreau10 Rodding StHermosilloQatarmailto:Pelletreau@ul.ptfemale17088.62Zicheng Raupp43 Clarke StTriUnited Statesmailto:Raupp@umd.edu18Other9995.92Martial Chorvat65 Campadelli StMonterreyUnited Statesmailto:Chorvat@zambeel.com4079 3475 5627 8448Other18748.51Honari Vendrig59 Dougherty StBolognaUnited Statesmailto:Vendrig@bell-labs.comhttp://www.bell-labs.com/~Vendrigfemale3192544.56Kalappa Melkman4 Bober StJohannesburgFrench Southern Territorymailto:Melkman@uu.sehttp://www.uu.se/~Melkmanfemale2933284.56Chams Michailidis11 Davoren StGainesvilleTanzaniamailto:Michailidis@ntua.grmale319876.00Gita Polstermailto:Polster@ask.comhttp://www.ask.com/~Polster43968.43Hausi Henriksson11 Shiota StSeattleUnited Statesmailto:Henriksson@uqam.cahttp://www.uqam.ca/~Henrikssonmale4641437.21Chanderjit Takanomailto:Takano@savera.comhttp://www.savera.com/~Takano5097 6993 1970 664442High School63869.30Waiman Sakomotomailto:Sakomoto@crossgain.comfemale55Other67566.93Tran Babayanmailto:Babayan@informix.commale1821628.35Mehrdad Granlund2 Huttel StMontgomeryUnited Statesmailto:Granlund@concentric.net6039 9126 8908 863453Graduate School33338.11Kwangjo Benainimailto:Benaini@uga.edu44103147.12Jamaludin Pigeot64 Gire StMonroeZambiamailto:Pigeot@toronto.eduhttp://www.toronto.edu/~Pigeot6115 7380 3797 5687category4male64243.77Huican Szmurlo52 Ternovskaia StCodyUnited Statesmailto:Szmurlo@ucsd.eduhttp://www.ucsd.edu/~Szmurlo2217 9440 7362 34052870444.29Mountaz Ossenbruggenmailto:Ossenbruggen@whizbang.commale2621142.02Elihu Lorys60 Jantke StGenevaUnited Statesmailto:Lorys@berkeley.eduhttp://www.berkeley.edu/~Lorys1834791.61Limor Schlichtermailto:Schlichter@dauphine.fr2262 3605 4735 3715female28College23070.82Hakim Savarammailto:Savaram@nyu.eduhttp://www.nyu.edu/~Savaramfemale29College109893.20Bevin Keustermans55 Kluthe StCharlestonUnited Statesmailto:Keustermans@cwru.edu55498.73Mehrdad Barroso23 Grabner StRapidUnited Statesmailto:Barroso@uwo.cafemale33532.36Ravindran Yacobi90 Cools StAlbanyLithuaniamailto:Yacobi@emc.comfemale9876.00Mehrdad Koszlajdamailto:Koszlajda@inria.frhttp://www.inria.fr/~Koszlajda50Other55383.43Nidapan Stassinopoulosmailto:Stassinopoulos@lante.com59420.56Ziqiang Businaro21 Coatta StMontrealUnited Statesmailto:Businaro@indiana.eduhttp://www.indiana.edu/~Businaro1875013.99Filipe Pappasmailto:Pappas@ac.at5070 6126 9654 6995maleGraduate School18103.99Raja Schroermailto:Schroer@ac.krmale70373.08Mehrdad Sevcikovamailto:Sevcikova@sds.nohttp://www.sds.no/~Sevcikovamale3760708.89Nobuko Manara39 Pigeon StMontgomeryUnited Statesmailto:Manara@imag.frhttp://www.imag.fr/~Manara8751 5605 9270 8646femaleHigh School9901.94Kaisa McNaught60 Kader StButteUnited Statesmailto:McNaught@ufl.edu2948525.86Jens Rodigermailto:Rodiger@uqam.cahttp://www.uqam.ca/~Rodiger7366 1702 9623 9871College26548.80Martial Miaramailto:Miara@lante.comfemale3943323.95Mitsugu Thobenmailto:Thoben@sbphrd.com4537 1155 4156 6649female459876.00Mehrdad Apperley12 Vinar StBucharestUnited Statesmailto:Apperley@ibm.commale71019.05Ayakannu Stemannmailto:Stemann@unizh.ch25High School36970.64Elihu Salinasmailto:Salinas@ucdavis.eduhttp://www.ucdavis.edu/~Salinas1889413.77Rosalyn Borrowman71 Mekaouche StCasperUnited Statesmailto:Borrowman@panasonic.commaleCollege9876.00Asmus Hanekemailto:Haneke@unical.ithttp://www.unical.it/~Haneke6994 8976 8481 7963maleCollege62028.39Lucien Cunliffe11 Smotroff StMeridianVatican City Statemailto:Cunliffe@mit.edu2139 7205 4141 4885male18College44173.97Takaaki Carrick53 Blom StBrunswickUnited Statesmailto:Carrick@washington.eduhttp://www.washington.edu/~Carrick75125.30Randal Roushmailto:Roush@msstate.edu6224 7382 7689 8766Other18748.51Honari Vendrig59 Dougherty StBolognaUnited Statesmailto:Vendrig@bell-labs.comhttp://www.bell-labs.com/~Vendrigmale32039.10Guanshan Keustermans5 Hazony StBudapestUnited Statesmailto:Keustermans@upenn.eduhttp://www.upenn.edu/~Keustermans7994 4699 1996 9940female1848441.07Marleen Hancartmailto:Hancart@unical.it8644 5992 4180 8611female2933284.56Chams Michailidis11 Davoren StGainesvilleTanzaniamailto:Michailidis@ntua.gr42582.85Herb Heisermanmailto:Heiserman@gatech.edu1770 6901 9126 7641male319876.00Gita Polstermailto:Polster@ask.comhttp://www.ask.com/~Polsterfemale18High School32207.29Jessie Courymailto:Coury@computer.orghttp://www.computer.org/~Coury3948 9942 2047 3209maleOther9876.00Benny Maraist38 Coscoy StVeniceUnited Statesmailto:Maraist@acm.org1444 4160 5898 766831377.71Douadi Newton100 Deb StTexarkanaUnited Statesmailto:Newton@acm.org34College71769.15LuoQuan Takano94 Cejtlin StToulouseSomaliamailto:Takano@lbl.gov3815 2171 1002 1862female2425157.94Terrill Uchoamailto:Uchoa@co.in9876.00Bernd Kruschinski16 Dienes StChicagoUnited Statesmailto:Kruschinski@unizh.chhttp://www.unizh.ch/~Kruschinskimale259876.00Hava Sieglmailto:Siegl@sun.com46College9876.00Ennio Fanchon44 Beeferman StStockholmVatican City Statemailto:Fanchon@bellatlantic.nethttp://www.bellatlantic.net/~Fanchon18Graduate School61430.09Sabrina Blackallmailto:Blackall@poly.eduhttp://www.poly.edu/~Blackallcategory3female93942.48Abdelilah Chepyzhov93 Milgrom StHuntsvilleUnited Statesmailto:Chepyzhov@fsu.edu8729 1525 7474 9453female32289.52Lynne Chongmailto:Chong@brandeis.edu52743.14Angel McDermid56 Deves StStockholmUnited Statesmailto:McDermid@ucdavis.eduhttp://www.ucdavis.edu/~McDermidfemale21Graduate School34281.58Lilly Zuiderveld62 Lamma StElUnited Statesmailto:Zuiderveld@computer.orghttp://www.computer.org/~Zuiderveldmale4522589.34Noelle Ramrasmailto:Ramras@dauphine.frfemale20230.96Radhia Lakshmipathymailto:Lakshmipathy@clustra.comfemale3449147.80Frantisek Speltmailto:Spelt@versata.comhttp://www.versata.com/~Speltfemale21College20347.38Isamu Kupiecmailto:Kupiec@twsu.eduhttp://www.twsu.edu/~Kupiec6071 5377 9019 296340268.84Zosimo Basmailto:Bas@uta.edu3953 1957 8995 92101944492.43Sajoong Bottoni56 Isman StWashingtonUnited Statesmailto:Bottoni@ucsd.eduhttp://www.ucsd.edu/~Bottoni4979 4485 7219 1879High School66838.04Claudine Mihalisinmailto:Mihalisin@cabofalso.comhttp://www.cabofalso.com/~Mihalisin6184 8660 1839 166218Graduate School41595.76Nevio Drashansky60 Petry StElUnited Statesmailto:Drashansky@evergreen.edu7712 4592 2474 557418Graduate School30851.14LouAnn Mulvany13 Whitt StBarcelonaUnited Statesmailto:Mulvany@ucla.eduhttp://www.ucla.edu/~Mulvany6788 3544 7141 9025female29Other34068.64Katsumasa Takano61 Claudson StKilleenUnited Statesmailto:Takano@uni-mb.sihttp://www.uni-mb.si/~Takano9056 8763 7140 1944College26548.80Martial Miaramailto:Miara@lante.comfemale76520.37Yahui Tanemomailto:Tanemo@uqam.ca9174 1888 2967 7251femaleOther44792.93Hagbae Gershkovich62 Soinard StBrusselsAmerican Samoamailto:Gershkovich@llnl.govhttp://www.llnl.gov/~Gershkovichfemale29High School44522.39Rupal Takanomailto:Takano@conclusivestrategies.comHigh School48609.71Neelam Passafiumemailto:Passafiume@hitachi.comhttp://www.hitachi.com/~Passafiume2967 5196 1495 5214female19High School47409.99Wieb Baummailto:Baum@bell-labs.comhttp://www.bell-labs.com/~Baummale22Graduate School36448.54Alassane Brown19 Steingart StTallahasseeTurkeymailto:Brown@ac.be4583 2923 3450 38941889413.77Rosalyn Borrowman71 Mekaouche StCasperUnited Statesmailto:Borrowman@panasonic.com18Graduate School21774.64Odinaldo Couclelismailto:Couclelis@savera.com4312 2173 2656 5795female24High School53332.77Berardo Radwanmailto:Radwan@clarkson.eduhttp://www.clarkson.edu/~Radwan5362 4892 6180 7214maleCollege62028.39Lucien Cunliffe11 Smotroff StMeridianVatican City Statemailto:Cunliffe@mit.edu2139 7205 4141 4885male18College44173.97Takaaki Carrick53 Blom StBrunswickUnited Statesmailto:Carrick@washington.eduhttp://www.washington.edu/~CarrickHigh School12698.35Willemien Nollmann94 Finsterwalder StMinneapolisUnited Statesmailto:Nollmann@ucd.iehttp://www.ucd.ie/~Nollmann1120 5614 6835 1026Other18748.51Honari Vendrig59 Dougherty StBolognaUnited Statesmailto:Vendrig@bell-labs.comhttp://www.bell-labs.com/~VendrigmaleHigh School22127.36Yannik Hamblinmailto:Hamblin@cohera.commaleOther147002.31Nikolaos Birdsall20 Morillo StGrenadaUnited Statesmailto:Birdsall@clarkson.edumale32039.10Guanshan Keustermans5 Hazony StBudapestUnited Statesmailto:Keustermans@upenn.eduhttp://www.upenn.edu/~Keustermans7994 4699 1996 9940female1848441.07Marleen Hancartmailto:Hancart@unical.it8644 5992 4180 8611male25728.38Priyadarshan Burgert53 Liberman StCorpusReunionmailto:Burgert@savera.comhttp://www.savera.com/~BurgertmaleGraduate School43412.47Mehrdad Ewards9 Mosedale StMumbaiUnited Statesmailto:Ewards@edu.hkhttp://www.edu.hk/~Ewardsfemale319876.00Arvola Takanomailto:Takano@fernuni-hagen.demale5438040.25Mehrdad Dundas48 Junior StRoanokeUnited Statesmailto:Dundas@ac.ukfemale18129137.70Khedija Yonezawa57 Naixiao StToulouseChilemailto:Yonezawa@clustra.comhttp://www.clustra.com/~Yonezawa2333 2094 5586 4351male88737.57Vanathi Takano39 Borowsky StIstanbulUnited Statesmailto:Takano@baylor.edu9748 8717 5684 699043968.43Hausi Henriksson11 Shiota StSeattleUnited Statesmailto:Henriksson@uqam.cahttp://www.uqam.ca/~HenrikssonfemaleHigh School38558.87Samantha Lofgrenmailto:Lofgren@telcordia.comhttp://www.telcordia.com/~Lofgrenmale4641437.21Chanderjit Takanomailto:Takano@savera.comhttp://www.savera.com/~Takano5097 6993 1970 6644female1837579.45Lena Haworth55 Sanabria StMoscowUnited Statesmailto:Haworth@ac.behttp://www.ac.be/~Haworthfemale2425157.94Terrill Uchoamailto:Uchoa@co.inOther49831.44Shyam Taganskymailto:Tagansky@cwru.eduhttp://www.cwru.edu/~Taganskycategory5female93942.48Abdelilah Chepyzhov93 Milgrom StHuntsvilleUnited Statesmailto:Chepyzhov@fsu.edu8729 1525 7474 94532920536.39Marit Ozols39 Olivo StViennaUnited Statesmailto:Ozols@clarkson.eduhttp://www.clarkson.edu/~Ozols7994 7972 6209 7349male38High School35391.33Samson Scopinich22 Luit StNassauLithuaniamailto:Scopinich@forth.grhttp://www.forth.gr/~Scopinich7744 1014 3146 5787female21Graduate School34281.58Lilly Zuiderveld62 Lamma StElUnited Statesmailto:Zuiderveld@computer.orghttp://www.computer.org/~Zuiderveldmale2885711.23Maung Rainmailto:Rain@cas.czfemale9876.00Mehrdad Koszlajdamailto:Koszlajda@inria.frhttp://www.inria.fr/~Koszlajda59420.56Ziqiang Businaro21 Coatta StMontrealUnited Statesmailto:Businaro@indiana.eduhttp://www.indiana.edu/~Businarofemale72664.29Celia Bahk32 Knauer StOuagadougouUnited Statesmailto:Bahk@fsu.eduhttp://www.fsu.edu/~Bahk1944492.43Sajoong Bottoni56 Isman StWashingtonUnited Statesmailto:Bottoni@ucsd.eduhttp://www.ucsd.edu/~Bottoni4979 4485 7219 187935Other95431.89Raimondas Holtmanmailto:Holtman@indiana.eduhttp://www.indiana.edu/~HoltmanmaleGraduate School9876.00Andreas Weijland80 Okasaki StBatonUnited Statesmailto:Weijland@conclusivestrategies.comhttp://www.conclusivestrategies.com/~Weijland59596.19Jurgen Desprez10 Jushchenko StHarrisburgUnited Statesmailto:Desprez@nyu.edu18Graduate School41595.76Nevio Drashansky60 Petry StElUnited Statesmailto:Drashansky@evergreen.edu7712 4592 2474 55742487581.80Kazuyo Mouzakismailto:Mouzakis@ucla.eduhttp://www.ucla.edu/~Mouzakis1208 4748 3095 6188High School27555.24Rosli Horndaschmailto:Horndasch@bell-labs.com1669 2715 2205 1746femaleHigh School9901.94Kaisa McNaught60 Kader StButteUnited Statesmailto:McNaught@ufl.edumale3727628.58Duri Allisonmailto:Allison@microsoft.comhttp://www.microsoft.com/~AllisonfemaleCollege52198.30Eleanna Loulerguemailto:Loulergue@imag.fr32College9876.00Lizya Takanomailto:Takano@sbphrd.comhttp://www.sbphrd.com/~Takano1201 1542 8852 7037male45College81262.14Changsik Demirozmailto:Demiroz@umd.edu2601 7963 2940 9617female76520.37Yahui Tanemomailto:Tanemo@uqam.ca9174 1888 2967 7251female17088.62Zicheng Raupp43 Clarke StTriUnited Statesmailto:Raupp@umd.edu1889413.77Rosalyn Borrowman71 Mekaouche StCasperUnited Statesmailto:Borrowman@panasonic.com30Graduate School46548.36Suneeta Baptiste47 Decugis StDurangoUnited Statesmailto:Baptiste@neu.edumaleCollege62028.39Lucien Cunliffe11 Smotroff StMeridianVatican City Statemailto:Cunliffe@mit.edu2139 7205 4141 4885female34591.18Roar Tepfenhart14 Marinissen StGuangzhouUnited Statesmailto:Tepfenhart@duke.eduhttp://www.duke.edu/~Tepfenhart1685 4065 5136 6298Other18748.51Honari Vendrig59 Dougherty StBolognaUnited Statesmailto:Vendrig@bell-labs.comhttp://www.bell-labs.com/~Vendrig18High School47967.41Naoki Osterloh7 Ghandeharizadeh StCairoTanzaniamailto:Osterloh@ask.comhttp://www.ask.com/~Osterloh7741 8229 7494 1943male32039.10Guanshan Keustermans5 Hazony StBudapestUnited Statesmailto:Keustermans@upenn.eduhttp://www.upenn.edu/~Keustermans7994 4699 1996 9940maleGraduate School28135.59Arup Zhongxiumailto:Zhongxiu@savera.comhttp://www.savera.com/~Zhongxiu8907 5377 1768 2366female18Graduate School36875.04Vwani Guck59 Carapuca StTulsaUnited Statesmailto:Guck@ubs.comhttp://www.ubs.com/~Guck8540 5460 1107 6135male5438040.25Mehrdad Dundas48 Junior StRoanokeUnited Statesmailto:Dundas@ac.uk42582.85Herb Heisermanmailto:Heiserman@gatech.edu1770 6901 9126 764139920.17Leslie Trystrammailto:Trystram@yahoo.comfemale1837579.45Lena Haworth55 Sanabria StMoscowUnited Statesmailto:Haworth@ac.behttp://www.ac.be/~HaworthfemaleOther9876.00Ashish Rattanmailto:Rattan@hp.comhttp://www.hp.com/~Rattan32Graduate School21453.40Kyujin Thenmozhimailto:Thenmozhi@sbphrd.comhttp://www.sbphrd.com/~Thenmozhi5667 1325 6395 3905female2425157.94Terrill Uchoamailto:Uchoa@co.in28036.78Sadegh Borgelt96 Tapken StCopenhagenUnited Statesmailto:Borgelt@yahoo.comhttp://www.yahoo.com/~Borgelt3641 4212 4374 193053Graduate School33338.11Kwangjo Benainimailto:Benaini@uga.edu44103147.12Jamaludin Pigeot64 Gire StMonroeZambiamailto:Pigeot@toronto.eduhttp://www.toronto.edu/~Pigeot6115 7380 3797 5687female67651.65Yoshinari Rajamailto:Raja@nodak.eduhttp://www.nodak.edu/~Raja7807 3048 4554 4266category232920536.39Marit Ozols39 Olivo StViennaUnited Statesmailto:Ozols@clarkson.eduhttp://www.clarkson.edu/~Ozols7994 7972 6209 7349male14407.23Ljupco Cappello55 Lotkin StConakryBelgiummailto:Cappello@zambeel.comhttp://www.zambeel.com/~CappellofemaleOther40371.20Tonia Kamble69 Westby StAnchorageMyanmarmailto:Kamble@cmu.edu4335 3345 5137 36373210607.38Benedita Matternmailto:Mattern@evergreen.eduhttp://www.evergreen.edu/~Mattern3960267.78Sahrah Takano64 Csaba StGuatemalaNepalmailto:Takano@concordia.cahttp://www.concordia.ca/~Takano5018437.40Vinot Thomsen2 Kishida StChattanoogaUnited Statesmailto:Thomsen@cornell.eduhttp://www.cornell.edu/~Thomsen33857.61Kristof Pittmailto:Pitt@unf.edu6369 9760 9277 824755498.73Mehrdad Barroso23 Grabner StRapidUnited Statesmailto:Barroso@uwo.camale19High School38050.91Mauri Takanomailto:Takano@sbphrd.comhttp://www.sbphrd.com/~Takanomale34Graduate School9876.00Keijo Hmelo11 Dulong StGuatemalaNigermailto:Hmelo@cnr.ithttp://www.cnr.it/~Hmelo8292 3598 3299 9658female9876.00Mehrdad Koszlajdamailto:Koszlajda@inria.frhttp://www.inria.fr/~KoszlajdafemaleGraduate School54668.95Joey Girouxmailto:Giroux@crossgain.comhttp://www.crossgain.com/~Giroux6425 5745 4662 172747Graduate School9876.00Ebbe Kawashima23 Rinn StHelenaUnited Statesmailto:Kawashima@gmu.edumale72247.13Djordje Milesmailto:Miles@att.com4147 2060 2989 7208Graduate School61917.13Isidore Takano32 Sambasivam StMinneapolisUnited Statesmailto:Takano@computer.orghttp://www.computer.org/~Takano9963 9779 2196 523218Graduate School41595.76Nevio Drashansky60 Petry StElUnited Statesmailto:Drashansky@evergreen.edu7712 4592 2474 5574femaleOther76543.02Arno Takano2 Jezioranski StAkronUnited Statesmailto:Takano@uwo.cahttp://www.uwo.ca/~Takano1059 2269 8254 7515459876.00Innes Ulfberg13 Kabat StSantiagoUnited Statesmailto:Ulfberg@propel.comhttp://www.propel.com/~UlfbergfemaleGraduate School56956.07Sukhmay Schwartzbauermailto:Schwartzbauer@purdue.edu4381 3385 4917 1280female3943323.95Mitsugu Thobenmailto:Thoben@sbphrd.com4537 1155 4156 6649High School48609.71Neelam Passafiumemailto:Passafiume@hitachi.comhttp://www.hitachi.com/~Passafiume2967 5196 1495 5214male19764.36Jacky Kunieda31 Malabarba StGuaymasUnited Statesmailto:Kunieda@uni-mannheim.de4090 9244 8696 7598female17088.62Zicheng Raupp43 Clarke StTriUnited Statesmailto:Raupp@umd.edufemale3550655.89Liujian Stanger11 Nollmann StKahuluiMayottemailto:Stanger@ubs.com1889413.77Rosalyn Borrowman71 Mekaouche StCasperUnited Statesmailto:Borrowman@panasonic.commaleCollege62028.39Lucien Cunliffe11 Smotroff StMeridianVatican City Statemailto:Cunliffe@mit.edu2139 7205 4141 4885male13990.17Faraz Kendallmailto:Kendall@ucf.eduhttp://www.ucf.edu/~Kendall5984 6936 6736 3854maleOther147002.31Nikolaos Birdsall20 Morillo StGrenadaUnited Statesmailto:Birdsall@clarkson.eduCollege79398.49Remigijus Przuljmailto:Przulj@rwth-aachen.demaleGraduate School48463.16Geraldine Relihan23 Meketon StKahuluiUnited Statesmailto:Relihan@toronto.eduhttp://www.toronto.edu/~Relihanmale32039.10Guanshan Keustermans5 Hazony StBudapestUnited Statesmailto:Keustermans@upenn.eduhttp://www.upenn.edu/~Keustermans7994 4699 1996 9940579876.00Mandayam Wittlichmailto:Wittlich@ogi.eduhttp://www.ogi.edu/~Wittlichfemale1848441.07Marleen Hancartmailto:Hancart@unical.it8644 5992 4180 8611Graduate School21339.80Vesna Stabell42 Trauth StPragueLatviamailto:Stabell@yahoo.comhttp://www.yahoo.com/~StabellfemaleCollege41385.84Xuejia Matternmailto:Mattern@sun.comhttp://www.sun.com/~Mattern5224 7860 2997 1000male88737.57Vanathi Takano39 Borowsky StIstanbulUnited Statesmailto:Takano@baylor.edu9748 8717 5684 6990High School44591.54Thyagaraju Papadias36 Razdan StProvidencialesUnited Statesmailto:Papadias@uni-mb.si9846 8257 2339 2353male319876.00Gita Polstermailto:Polster@ask.comhttp://www.ask.com/~Polsterfemale53Other9876.00Michaela DeMori24 Schmidmaier StLaUnited Statesmailto:DeMori@mit.eduhttp://www.mit.edu/~DeMoriGraduate School86363.75Sinisa Takano20 Philipose StBaselUnited Statesmailto:Takano@uwo.cahttp://www.uwo.ca/~Takano2838 1561 4278 7793male34Other41124.07Hongsheng Marrakchimailto:Marrakchi@edu.au4697 8715 7524 368734032.09Francesca Weismantelmailto:Weismantel@ucla.edu2763 1794 7943 475331109.71Stefano Veselmailto:Vesel@hp.commale18High School11680.33Hairuo Babymailto:Baby@compaq.comhttp://www.compaq.com/~Baby5040 8822 2575 9695College9876.00Siau Luskmailto:Lusk@dauphine.frhttp://www.dauphine.fr/~Lusk9351 9086 1389 9982female36High School37546.25Masali Ruedamailto:Rueda@cwi.nlhttp://www.cwi.nl/~Rueda7296 2605 7171 67983324186.28Marco Meszaros49 Wohn StKievSt. Vincent and Grenadinesmailto:Meszaros@ac.athttp://www.ac.at/~Meszaros6309 7243 2721 1636category212870444.29Mountaz Ossenbruggenmailto:Ossenbruggen@whizbang.com52743.14Angel McDermid56 Deves StStockholmUnited Statesmailto:McDermid@ucdavis.eduhttp://www.ucdavis.edu/~McDermid3831289.78Yongqiao Shanbhoguemailto:Shanbhogue@newpaltz.edufemale3949111.85Mohammad Varker71 Linzer StLomeUnited Statesmailto:Varker@panasonic.com2868050.59Rogerio Kuemmerle97 McAfee StStockholmUnited Statesmailto:Kuemmerle@njit.edu4349 1772 6659 5801female1866561.70Mara Tchuentemailto:Tchuente@telcordia.comhttp://www.telcordia.com/~Tchuentefemale29College109893.20Bevin Keustermans55 Kluthe StCharlestonUnited Statesmailto:Keustermans@cwru.edu5018437.40Vinot Thomsen2 Kishida StChattanoogaUnited Statesmailto:Thomsen@cornell.eduhttp://www.cornell.edu/~Thomsenfemale18Other50634.45Sidd Zfiramailto:Zfira@uga.eduhttp://www.uga.edu/~ZfiramaleHigh School29348.51Yael Ritceymailto:Ritcey@csufresno.eduhttp://www.csufresno.edu/~Ritcey4175 3581 3728 5320femaleGraduate School54668.95Joey Girouxmailto:Giroux@crossgain.comhttp://www.crossgain.com/~Giroux6425 5745 4662 1727College106547.20Khatoun Rankamailto:Ranka@clarkson.eduhttp://www.clarkson.edu/~RankafemaleOther44792.93Hagbae Gershkovich62 Soinard StBrusselsAmerican Samoamailto:Gershkovich@llnl.govhttp://www.llnl.gov/~Gershkovichfemale29High School44522.39Rupal Takanomailto:Takano@conclusivestrategies.comHigh School32535.03Drago Showaltermailto:Showalter@auc.dkfemale56Graduate School9876.00Ardaman Underwood6 Anrig StBerlinUnited Statesmailto:Underwood@ucdavis.edu25High School36970.64Elihu Salinasmailto:Salinas@ucdavis.eduhttp://www.ucdavis.edu/~SalinasOther20588.39Elham Pelletreau10 Rodding StHermosilloQatarmailto:Pelletreau@ul.ptfemale17088.62Zicheng Raupp43 Clarke StTriUnited Statesmailto:Raupp@umd.eduCollege20705.54Jianli Gide15 Bergevin StToledoUnited Statesmailto:Gide@fsu.eduhttp://www.fsu.edu/~Gide6804 8139 3232 3580maleHigh School61094.02Mehrdad Bierbaum77 Heyderhoff StIdahoUnited Statesmailto:Bierbaum@sdsc.edu5223 3221 1166 7010female34591.18Roar Tepfenhart14 Marinissen StGuangzhouUnited Statesmailto:Tepfenhart@duke.eduhttp://www.duke.edu/~Tepfenhart1685 4065 5136 629830College9876.00Asha Dumasmailto:Dumas@twsu.edufemale3889088.09Masamitsu Andaleonmailto:Andaleon@cti.grmale25728.38Priyadarshan Burgert53 Liberman StCorpusReunionmailto:Burgert@savera.comhttp://www.savera.com/~Burgertmale88737.57Vanathi Takano39 Borowsky StIstanbulUnited Statesmailto:Takano@baylor.edu9748 8717 5684 699043968.43Hausi Henriksson11 Shiota StSeattleUnited Statesmailto:Henriksson@uqam.cahttp://www.uqam.ca/~HenrikssonOther9876.00Tsunehiro Erdogan58 Tedijanto StCairoUnited Statesmailto:Erdogan@prc.comfemaleCollege18089.31Newton Geibel55 McKinley StWestUnited Statesmailto:Geibel@lbl.gov6955 5513 9649 3373female2425157.94Terrill Uchoamailto:Uchoa@co.in28036.78Sadegh Borgelt96 Tapken StCopenhagenUnited Statesmailto:Borgelt@yahoo.comhttp://www.yahoo.com/~Borgelt3641 4212 4374 1930College9876.00Siau Luskmailto:Lusk@dauphine.frhttp://www.dauphine.fr/~Lusk9351 9086 1389 998241High School90426.38Nieves Wicklinemailto:Wickline@oracle.com1216 7004 4794 4730female67651.65Yoshinari Rajamailto:Raja@nodak.eduhttp://www.nodak.edu/~Raja7807 3048 4554 4266category162870444.29Mountaz Ossenbruggenmailto:Ossenbruggen@whizbang.comfemale32289.52Lynne Chongmailto:Chong@brandeis.edumale4522589.34Noelle Ramrasmailto:Ramras@dauphine.fr26770.70Fun Lattin93 Mutschke StPascoUnited Statesmailto:Lattin@forth.grhttp://www.forth.gr/~Lattin3364225.11Arjen Emden44 Goos StLexingtonUnited Statesmailto:Emden@forwiss.dehttp://www.forwiss.de/~Emden2468 4642 9646 5367female28College23070.82Hakim Savarammailto:Savaram@nyu.eduhttp://www.nyu.edu/~SavarammaleHigh School30401.42Yonghoan Baba95 Shioya StGuangzhouUnited Statesmailto:Baba@llnl.gov3960267.78Sahrah Takano64 Csaba StGuatemalaNepalmailto:Takano@concordia.cahttp://www.concordia.ca/~Takanofemale9876.00Mehrdad Koszlajdamailto:Koszlajda@inria.frhttp://www.inria.fr/~Koszlajdafemale21College20347.38Isamu Kupiecmailto:Kupiec@twsu.eduhttp://www.twsu.edu/~Kupiec6071 5377 9019 2963High School41734.15Jago Mayerwiesermailto:Mayerwieser@arizona.edu1875013.99Filipe Pappasmailto:Pappas@ac.at5070 6126 9654 6995female49245.92Yongjian Dechter88 Schwederski StGreatUnited Statesmailto:Dechter@ernet.in3385 8194 5484 2885male72247.13Djordje Milesmailto:Miles@att.com4147 2060 2989 7208female46814.24Keumog Gellerich43 Gove StGenevaKenyamailto:Gellerich@ab.caCollege26548.80Martial Miaramailto:Miara@lante.commale22Graduate School36448.54Alassane Brown19 Steingart StTallahasseeTurkeymailto:Brown@ac.be4583 2923 3450 389424College44907.27Chinya Uludagmailto:Uludag@airmail.netfemale17088.62Zicheng Raupp43 Clarke StTriUnited Statesmailto:Raupp@umd.edufemale24High School53332.77Berardo Radwanmailto:Radwan@clarkson.eduhttp://www.clarkson.edu/~Radwan5362 4892 6180 72142739491.29Hideo Korachmailto:Korach@cas.czhttp://www.cas.cz/~Korach8091 7556 8996 4369maleCollege9876.00Asmus Hanekemailto:Haneke@unical.ithttp://www.unical.it/~Haneke6994 8976 8481 7963Other18748.51Honari Vendrig59 Dougherty StBolognaUnited Statesmailto:Vendrig@bell-labs.comhttp://www.bell-labs.com/~Vendrig56Other9876.00Magy Yuval52 Penniman StDothanUnited Statesmailto:Yuval@sds.nohttp://www.sds.no/~Yuval6960 5979 2083 3011maleOther147002.31Nikolaos Birdsall20 Morillo StGrenadaUnited Statesmailto:Birdsall@clarkson.edu29Other56634.76Lai Greenwaldmailto:Greenwald@filelmaker.comhttp://www.filelmaker.com/~Greenwald9722 4263 8015 6083female19Graduate School17213.74Murthy Kobsa3 Marefat StFortalezaUnited Statesmailto:Kobsa@cmu.eduhttp://www.cmu.edu/~Kobsa9601 9505 5627 9097female31313.14Upendra Sueyoshi100 Iwayama StPensacolaUnited Statesmailto:Sueyoshi@msstate.edufemale18129137.70Khedija Yonezawa57 Naixiao StToulouseChilemailto:Yonezawa@clustra.comhttp://www.clustra.com/~Yonezawa2333 2094 5586 4351femaleOther9876.00Mehrdad Osgood18 Bias StRoanokePortugalmailto:Osgood@gte.comhttp://www.gte.com/~Osgood39920.17Leslie Trystrammailto:Trystram@yahoo.commale58High School53088.84Honglan Hagimontmailto:Hagimont@edu.auhttp://www.edu.au/~HagimontGraduate School52300.25Berto Parisi18 Cagley StColumbusTaiwanmailto:Parisi@sfu.cahttp://www.sfu.ca/~Parisi2059 3864 2375 2974female2425157.94Terrill Uchoamailto:Uchoa@co.infemale4430932.28Mingzeng Fanchonmailto:Fanchon@ucsb.eduhttp://www.ucsb.edu/~Fanchon2370 1296 2256 476935High School104197.29Arne Ohori80 Belleghem StManchesterUnited Statesmailto:Ohori@concordia.ca5057 7242 3265 136041High School90426.38Nieves Wicklinemailto:Wickline@oracle.com1216 7004 4794 4730female61896.87Gor Pratimailto:Prati@uni-muenchen.decategory72870444.29Mountaz Ossenbruggenmailto:Ossenbruggen@whizbang.comfemale21Graduate School34281.58Lilly Zuiderveld62 Lamma StElUnited Statesmailto:Zuiderveld@computer.orghttp://www.computer.org/~Zuiderveldfemale1866561.70Mara Tchuentemailto:Tchuente@telcordia.comhttp://www.telcordia.com/~Tchuente18High School9876.00Avshalom Attimonellimailto:Attimonelli@uic.eduhttp://www.uic.edu/~Attimonelli7686 9066 7885 140955498.73Mehrdad Barroso23 Grabner StRapidUnited Statesmailto:Barroso@uwo.camale19High School38050.91Mauri Takanomailto:Takano@sbphrd.comhttp://www.sbphrd.com/~Takano49Graduate School71359.18Felip Fujisakimailto:Fujisaki@itc.itGraduate School9876.00Kristof Grafe94 Ingolfsdottir StCopenhagenZimbabwemailto:Grafe@lante.comhttp://www.lante.com/~Grafe47Graduate School9876.00Ebbe Kawashima23 Rinn StHelenaUnited Statesmailto:Kawashima@gmu.edumale70373.08Mehrdad Sevcikovamailto:Sevcikova@sds.nohttp://www.sds.no/~Sevcikovamale4262287.09Suvo Fiutem69 Luff StWindhoekSouth Africamailto:Fiutem@co.jp5089 1407 5205 5391female32High School47370.23Manish Jupinmailto:Jupin@uni-muenster.de35Other95431.89Raimondas Holtmanmailto:Holtman@indiana.eduhttp://www.indiana.edu/~Holtman18Graduate School41595.76Nevio Drashansky60 Petry StElUnited Statesmailto:Drashansky@evergreen.edu7712 4592 2474 5574male36Other46000.68Sudip Rekhtermailto:Rekhter@cas.cz4959 8573 1371 956729College85365.36Sushant Baransky39 Varpaaniemi StChicagoZambiamailto:Baransky@du.edufemaleOther44792.93Hagbae Gershkovich62 Soinard StBrusselsAmerican Samoamailto:Gershkovich@llnl.govhttp://www.llnl.gov/~Gershkovichfemale29High School44522.39Rupal Takanomailto:Takano@conclusivestrategies.comfemale17088.62Zicheng Raupp43 Clarke StTriUnited Statesmailto:Raupp@umd.edumaleCollege9876.00Asmus Hanekemailto:Haneke@unical.ithttp://www.unical.it/~Haneke6994 8976 8481 7963maleHigh School61094.02Mehrdad Bierbaum77 Heyderhoff StIdahoUnited Statesmailto:Bierbaum@sdsc.edu5223 3221 1166 7010female34591.18Roar Tepfenhart14 Marinissen StGuangzhouUnited Statesmailto:Tepfenhart@duke.eduhttp://www.duke.edu/~Tepfenhart1685 4065 5136 62983963067.83Beshir Takano65 Lackinger StBostonUnited Statesmailto:Takano@edu.cnhttp://www.edu.cn/~TakanoOther18748.51Honari Vendrig59 Dougherty StBolognaUnited Statesmailto:Vendrig@bell-labs.comhttp://www.bell-labs.com/~VendrigOther12631.68Jawed Grundmannmailto:Grundmann@purdue.edu29Other56634.76Lai Greenwaldmailto:Greenwald@filelmaker.comhttp://www.filelmaker.com/~Greenwald9722 4263 8015 608351Other23226.04Yoshiki Blumbergmailto:Blumberg@ask.com2926 2408 8275 2143male32039.10Guanshan Keustermans5 Hazony StBudapestUnited Statesmailto:Keustermans@upenn.eduhttp://www.upenn.edu/~Keustermans7994 4699 1996 9940female31313.14Upendra Sueyoshi100 Iwayama StPensacolaUnited Statesmailto:Sueyoshi@msstate.edumale189876.00Ruben Paczkowski42 Osmani StKievUnited Statesmailto:Paczkowski@ac.jphttp://www.ac.jp/~Paczkowski5171 8849 3355 1220femaleHigh School27442.54Linore Pradomailto:Prado@uta.edu3098 3930 3792 434939920.17Leslie Trystrammailto:Trystram@yahoo.comfemaleHigh School38558.87Samantha Lofgrenmailto:Lofgren@telcordia.comhttp://www.telcordia.com/~Lofgrenfemale2425157.94Terrill Uchoamailto:Uchoa@co.in46College9876.00Ennio Fanchon44 Beeferman StStockholmVatican City Statemailto:Fanchon@bellatlantic.nethttp://www.bellatlantic.net/~Fanchonfemale24Graduate School50690.73Tevfik Shumilov79 Nisiyama StCincinnatiUnited Statesmailto:Shumilov@ou.edu7217 8872 1602 1967category12male1857760.56Shinji Varhegyi60 Candan StDothanUnited Statesmailto:Varhegyi@forth.grhttp://www.forth.gr/~Varhegyi6982 5985 8455 837026770.70Fun Lattin93 Mutschke StPascoUnited Statesmailto:Lattin@forth.grhttp://www.forth.gr/~Lattinfemale1866561.70Mara Tchuentemailto:Tchuente@telcordia.comhttp://www.telcordia.com/~Tchuentefemale9876.00Mehrdad Koszlajdamailto:Koszlajda@inria.frhttp://www.inria.fr/~Koszlajda59420.56Ziqiang Businaro21 Coatta StMontrealUnited Statesmailto:Businaro@indiana.eduhttp://www.indiana.edu/~BusinaroCollege106547.20Khatoun Rankamailto:Ranka@clarkson.eduhttp://www.clarkson.edu/~Rankamale70373.08Mehrdad Sevcikovamailto:Sevcikova@sds.nohttp://www.sds.no/~Sevcikovafemale49245.92Yongjian Dechter88 Schwederski StGreatUnited Statesmailto:Dechter@ernet.in3385 8194 5484 2885male72247.13Djordje Milesmailto:Miles@att.com4147 2060 2989 7208High School27555.24Rosli Horndaschmailto:Horndasch@bell-labs.com1669 2715 2205 1746femaleCollege52198.30Eleanna Loulerguemailto:Loulergue@imag.frCollege9876.00Odoardo Rajaraman39 Backelin StVillahermosaUnited Statesmailto:Rajaraman@ul.pthttp://www.ul.pt/~RajaramanCollege26548.80Martial Miaramailto:Miara@lante.comfemale29High School44522.39Rupal Takanomailto:Takano@conclusivestrategies.commale19764.36Jacky Kunieda31 Malabarba StGuaymasUnited Statesmailto:Kunieda@uni-mannheim.de4090 9244 8696 7598female56Graduate School9876.00Ardaman Underwood6 Anrig StBerlinUnited Statesmailto:Underwood@ucdavis.edu189876.00Mehrdad Rivenburgh86 Stepanov StCincinnatiUnited Statesmailto:Rivenburgh@ac.krGraduate School9876.00Zerksis Bustard80 Lodder StWarsawIraqmailto:Bustard@duke.eduhttp://www.duke.edu/~BustardmaleCollege62028.39Lucien Cunliffe11 Smotroff StMeridianVatican City Statemailto:Cunliffe@mit.edu2139 7205 4141 4885female34591.18Roar Tepfenhart14 Marinissen StGuangzhouUnited Statesmailto:Tepfenhart@duke.eduhttp://www.duke.edu/~Tepfenhart1685 4065 5136 629830College9876.00Asha Dumasmailto:Dumas@twsu.edumaleOther147002.31Nikolaos Birdsall20 Morillo StGrenadaUnited Statesmailto:Birdsall@clarkson.edu51Other23226.04Yoshiki Blumbergmailto:Blumberg@ask.com2926 2408 8275 2143female3889088.09Masamitsu Andaleonmailto:Andaleon@cti.grmale32039.10Guanshan Keustermans5 Hazony StBudapestUnited Statesmailto:Keustermans@upenn.eduhttp://www.upenn.edu/~Keustermans7994 4699 1996 9940femaleHigh School27442.54Linore Pradomailto:Prado@uta.edu3098 3930 3792 434939920.17Leslie Trystrammailto:Trystram@yahoo.com9876.00Dhritiman Schapiremailto:Schapire@ucd.iehttp://www.ucd.ie/~Schapire7089 9225 8648 445731377.71Douadi Newton100 Deb StTexarkanaUnited Statesmailto:Newton@acm.org34College71769.15LuoQuan Takano94 Cejtlin StToulouseSomaliamailto:Takano@lbl.gov3815 2171 1002 1862female2425157.94Terrill Uchoamailto:Uchoa@co.in46College9876.00Ennio Fanchon44 Beeferman StStockholmVatican City Statemailto:Fanchon@bellatlantic.nethttp://www.bellatlantic.net/~Fanchon35High School104197.29Arne Ohori80 Belleghem StManchesterUnited Statesmailto:Ohori@concordia.ca5057 7242 3265 1360category26Other9876.00Bharadwaj Nozawa58 Regoli StWarsawUnited Statesmailto:Nozawa@cas.czhttp://www.cas.cz/~Nozawa3284 7939 4808 3523male3141827.28Chunming Purvy17 Cin StOrangeUnited Statesmailto:Purvy@uwo.ca4356 3148 2060 9632male479876.00Zeljko Wolford13 Leaver StWorcesterUnited Statesmailto:Wolford@umd.eduhttp://www.umd.edu/~Wolfordfemale29College109893.20Bevin Keustermans55 Kluthe StCharlestonUnited Statesmailto:Keustermans@cwru.edu5018437.40Vinot Thomsen2 Kishida StChattanoogaUnited Statesmailto:Thomsen@cornell.eduhttp://www.cornell.edu/~Thomsenfemale33532.36Ravindran Yacobi90 Cools StAlbanyLithuaniamailto:Yacobi@emc.com49Graduate School71359.18Felip Fujisakimailto:Fujisaki@itc.itGraduate School9876.00Kristof Grafe94 Ingolfsdottir StCopenhagenZimbabwemailto:Grafe@lante.comhttp://www.lante.com/~GrafefemaleGraduate School54668.95Joey Girouxmailto:Giroux@crossgain.comhttp://www.crossgain.com/~Giroux6425 5745 4662 172718Graduate School41595.76Nevio Drashansky60 Petry StElUnited Statesmailto:Drashansky@evergreen.edu7712 4592 2474 5574femaleHigh School9901.94Kaisa McNaught60 Kader StButteUnited Statesmailto:McNaught@ufl.edufemale46814.24Keumog Gellerich43 Gove StGenevaKenyamailto:Gellerich@ab.caCollege26548.80Martial Miaramailto:Miara@lante.commale22Graduate School36448.54Alassane Brown19 Steingart StTallahasseeTurkeymailto:Brown@ac.be4583 2923 3450 3894female17088.62Zicheng Raupp43 Clarke StTriUnited Statesmailto:Raupp@umd.edu18Graduate School21774.64Odinaldo Couclelismailto:Couclelis@savera.com4312 2173 2656 5795male18College44173.97Takaaki Carrick53 Blom StBrunswickUnited Statesmailto:Carrick@washington.eduhttp://www.washington.edu/~Carrickfemale34591.18Roar Tepfenhart14 Marinissen StGuangzhouUnited Statesmailto:Tepfenhart@duke.eduhttp://www.duke.edu/~Tepfenhart1685 4065 5136 629875125.30Randal Roushmailto:Roush@msstate.edu6224 7382 7689 8766Other21142.54Sueli Heinisuomailto:Heinisuo@uic.edufemale209876.00Alban Kossowskimailto:Kossowski@emc.com2606 3971 1356 1048College79398.49Remigijus Przuljmailto:Przulj@rwth-aachen.de26419.07Yukata Beauducel47 Araya StCharlottesvilleUnited Statesmailto:Beauducel@poznan.plhttp://www.poznan.pl/~Beauducel7393 8354 9466 4534femaleOther63285.36Roseane Henton21 Falkerngerg StArubaUnited Statesmailto:Henton@csufresno.eduhttp://www.csufresno.edu/~Hentonmale88737.57Vanathi Takano39 Borowsky StIstanbulUnited Statesmailto:Takano@baylor.edu9748 8717 5684 69901867501.36Terunao Veccia53 Brightwell StToulouseHondurasmailto:Veccia@sbphrd.comGraduate School34738.51Singaravel Skurczynski41 Zhongxiu StPortlandSwitzerlandmailto:Skurczynski@ntua.grhttp://www.ntua.gr/~Skurczynski9876.00Dhritiman Schapiremailto:Schapire@ucd.iehttp://www.ucd.ie/~Schapire7089 9225 8648 4457male26College9876.00Tru Feldmeier21 Poujol StSacramentoUnited Statesmailto:Feldmeier@unf.edu5066 9195 3036 1472female24828.93Bhabani Sawaya81 Cowan StNashvilleUnited Statesmailto:Sawaya@yahoo.comcategory2234541.24Emilo Schahnmailto:Schahn@filemaker.comhttp://www.filemaker.com/~Schahn5877 8225 7127 271734High School9876.00Fazli Elsanadidimailto:Elsanadidi@memphis.eduhttp://www.memphis.edu/~Elsanadidi3924 1056 9280 8856male4522589.34Noelle Ramrasmailto:Ramras@dauphine.fr26770.70Fun Lattin93 Mutschke StPascoUnited Statesmailto:Lattin@forth.grhttp://www.forth.gr/~Lattinfemale63Other71946.13Herbert Kleiser100 Raghavendra StGeorgeUnited Statesmailto:Kleiser@washington.eduhttp://www.washington.edu/~Kleiser4454 8668 5057 1574female1866561.70Mara Tchuentemailto:Tchuente@telcordia.comhttp://www.telcordia.com/~Tchuentefemale28College23070.82Hakim Savarammailto:Savaram@nyu.eduhttp://www.nyu.edu/~SavarammaleHigh School30401.42Yonghoan Baba95 Shioya StGuangzhouUnited Statesmailto:Baba@llnl.gov5018437.40Vinot Thomsen2 Kishida StChattanoogaUnited Statesmailto:Thomsen@cornell.eduhttp://www.cornell.edu/~Thomsen33857.61Kristof Pittmailto:Pitt@unf.edu6369 9760 9277 824755498.73Mehrdad Barroso23 Grabner StRapidUnited Statesmailto:Barroso@uwo.ca32165.04Margrethe Dowellmailto:Dowell@brandeis.eduGraduate School9876.00Kristof Grafe94 Ingolfsdottir StCopenhagenZimbabwemailto:Grafe@lante.comhttp://www.lante.com/~Grafe47Graduate School9876.00Ebbe Kawashima23 Rinn StHelenaUnited Statesmailto:Kawashima@gmu.edumaleGraduate School18103.99Raja Schroermailto:Schroer@ac.krfemale46814.24Keumog Gellerich43 Gove StGenevaKenyamailto:Gellerich@ab.cafemaleGraduate School56956.07Sukhmay Schwartzbauermailto:Schwartzbauer@purdue.edu4381 3385 4917 1280femaleHigh School95732.32Hagen Artosimailto:Artosi@clustra.comhttp://www.clustra.com/~Artosi7136 1358 8743 584729603.62Shreesh Atchley20 Guaiana StSyracuseIrelandmailto:Atchley@edu.cn3623 8474 9910 8198Other20588.39Elham Pelletreau10 Rodding StHermosilloQatarmailto:Pelletreau@ul.ptfemale17088.62Zicheng Raupp43 Clarke StTriUnited Statesmailto:Raupp@umd.edu1889413.77Rosalyn Borrowman71 Mekaouche StCasperUnited Statesmailto:Borrowman@panasonic.comfemale24High School53332.77Berardo Radwanmailto:Radwan@clarkson.eduhttp://www.clarkson.edu/~Radwan5362 4892 6180 72149876.00Pragnesh Takanomailto:Takano@labs.comhttp://www.labs.com/~Takano8238 8564 3820 467856Other9876.00Magy Yuval52 Penniman StDothanUnited Statesmailto:Yuval@sds.nohttp://www.sds.no/~Yuval6960 5979 2083 3011female9876.00Hichem Galianamailto:Galiana@ust.hk51Other23226.04Yoshiki Blumbergmailto:Blumberg@ask.com2926 2408 8275 2143female17100.56Kyosun Takanomailto:Takano@umb.eduhttp://www.umb.edu/~Takano4914 3209 2337 5612female19Graduate School17213.74Murthy Kobsa3 Marefat StFortalezaUnited Statesmailto:Kobsa@cmu.eduhttp://www.cmu.edu/~Kobsa9601 9505 5627 909718Graduate School45123.63Radhia Tamches63 Kitano StHonoluluUnited Statesmailto:Tamches@uni-trier.dehttp://www.uni-trier.de/~Tamches6565 7684 2833 7108male45100.26Knuth Grandbois27 Newton StBudapestUnited Statesmailto:Grandbois@ibm.com3277 5711 2104 1479femaleOther9876.00Mehrdad Osgood18 Bias StRoanokePortugalmailto:Osgood@gte.comhttp://www.gte.com/~Osgoodmale319876.00Gita Polstermailto:Polster@ask.comhttp://www.ask.com/~Polster1867501.36Terunao Veccia53 Brightwell StToulouseHondurasmailto:Veccia@sbphrd.commale4641437.21Chanderjit Takanomailto:Takano@savera.comhttp://www.savera.com/~Takano5097 6993 1970 6644679876.00Mehrdad Holldobler38 Delaune StMontrealUnited Statesmailto:Holldobler@sunysb.edumale3318777.80Wil Herleymailto:Herley@brown.eduhttp://www.brown.edu/~Herley9077 3456 8000 1843femaleCollege18089.31Newton Geibel55 McKinley StWestUnited Statesmailto:Geibel@lbl.gov6955 5513 9649 3373female2425157.94Terrill Uchoamailto:Uchoa@co.in35High School104197.29Arne Ohori80 Belleghem StManchesterUnited Statesmailto:Ohori@concordia.ca5057 7242 3265 1360female24Graduate School50690.73Tevfik Shumilov79 Nisiyama StCincinnatiUnited Statesmailto:Shumilov@ou.edu7217 8872 1602 19673324186.28Marco Meszaros49 Wohn StKievSt. Vincent and Grenadinesmailto:Meszaros@ac.athttp://www.ac.at/~Meszaros6309 7243 2721 1636category9male2885711.23Maung Rainmailto:Rain@cas.cz1834791.61Limor Schlichtermailto:Schlichter@dauphine.fr2262 3605 4735 3715female1866561.70Mara Tchuentemailto:Tchuente@telcordia.comhttp://www.telcordia.com/~Tchuentefemale29College109893.20Bevin Keustermans55 Kluthe StCharlestonUnited Statesmailto:Keustermans@cwru.edufemale33532.36Ravindran Yacobi90 Cools StAlbanyLithuaniamailto:Yacobi@emc.com49Graduate School71359.18Felip Fujisakimailto:Fujisaki@itc.itfemale9876.00Mehrdad Koszlajdamailto:Koszlajda@inria.frhttp://www.inria.fr/~Koszlajda32165.04Margrethe Dowellmailto:Dowell@brandeis.eduGraduate School9876.00Kristof Grafe94 Ingolfsdottir StCopenhagenZimbabwemailto:Grafe@lante.comhttp://www.lante.com/~GrafefemaleGraduate School54668.95Joey Girouxmailto:Giroux@crossgain.comhttp://www.crossgain.com/~Giroux6425 5745 4662 1727male189876.00Bala Hellwagnermailto:Hellwagner@uta.eduhttp://www.uta.edu/~Hellwagner3122 2389 9697 9706female80670.94Shiquan Wixonmailto:Wixon@pi.it38Graduate School88176.71Asaf Lucio10 Pinkas StBrusselsUnited Statesmailto:Lucio@intersys.comhttp://www.intersys.com/~Lucio5868 1339 2892 761368416.39Fazli Nocettimailto:Nocetti@rutgers.edu5986 2877 5306 19542487581.80Kazuyo Mouzakismailto:Mouzakis@ucla.eduhttp://www.ucla.edu/~Mouzakis1208 4748 3095 6188male3727628.58Duri Allisonmailto:Allison@microsoft.comhttp://www.microsoft.com/~Allisonfemale46814.24Keumog Gellerich43 Gove StGenevaKenyamailto:Gellerich@ab.caCollege26548.80Martial Miaramailto:Miara@lante.comfemale3943323.95Mitsugu Thobenmailto:Thoben@sbphrd.com4537 1155 4156 6649female76520.37Yahui Tanemomailto:Tanemo@uqam.ca9174 1888 2967 7251femaleOther44792.93Hagbae Gershkovich62 Soinard StBrusselsAmerican Samoamailto:Gershkovich@llnl.govhttp://www.llnl.gov/~Gershkovichfemale19High School47409.99Wieb Baummailto:Baum@bell-labs.comhttp://www.bell-labs.com/~Baum25High School36970.64Elihu Salinasmailto:Salinas@ucdavis.eduhttp://www.ucdavis.edu/~Salinasfemale17088.62Zicheng Raupp43 Clarke StTriUnited Statesmailto:Raupp@umd.edu1889413.77Rosalyn Borrowman71 Mekaouche StCasperUnited Statesmailto:Borrowman@panasonic.comCollege20705.54Jianli Gide15 Bergevin StToledoUnited Statesmailto:Gide@fsu.eduhttp://www.fsu.edu/~Gide6804 8139 3232 35802739491.29Hideo Korachmailto:Korach@cas.czhttp://www.cas.cz/~Korach8091 7556 8996 4369maleCollege62028.39Lucien Cunliffe11 Smotroff StMeridianVatican City Statemailto:Cunliffe@mit.edu2139 7205 4141 4885female34591.18Roar Tepfenhart14 Marinissen StGuangzhouUnited Statesmailto:Tepfenhart@duke.eduhttp://www.duke.edu/~Tepfenhart1685 4065 5136 629818High School47967.41Naoki Osterloh7 Ghandeharizadeh StCairoTanzaniamailto:Osterloh@ask.comhttp://www.ask.com/~Osterloh7741 8229 7494 194329Other56634.76Lai Greenwaldmailto:Greenwald@filelmaker.comhttp://www.filelmaker.com/~Greenwald9722 4263 8015 6083maleGraduate School48463.16Geraldine Relihan23 Meketon StKahuluiUnited Statesmailto:Relihan@toronto.eduhttp://www.toronto.edu/~Relihanmale3959387.85Allison Balazsmailto:Balazs@ibm.comhttp://www.ibm.com/~Balazs26419.07Yukata Beauducel47 Araya StCharlottesvilleUnited Statesmailto:Beauducel@poznan.plhttp://www.poznan.pl/~Beauducel7393 8354 9466 453418Graduate School45123.63Radhia Tamches63 Kitano StHonoluluUnited Statesmailto:Tamches@uni-trier.dehttp://www.uni-trier.de/~Tamches6565 7684 2833 7108male73615.90Yuguang Coomanmailto:Cooman@berkeley.eduhttp://www.berkeley.edu/~Cooman1887 8458 2855 874927Graduate School35214.05Tobias Veeraraghavan41 Cavedoni StAguascalientesUnited Statesmailto:Veeraraghavan@umb.edu8969 5456 9679 1336male4641437.21Chanderjit Takanomailto:Takano@savera.comhttp://www.savera.com/~Takano5097 6993 1970 6644female48896.64Tinko Reinhart100 Dhagat StZihuatenejoBahrainmailto:Reinhart@crossgain.comhttp://www.crossgain.com/~ReinhartmaleOther9876.00Benny Maraist38 Coscoy StVeniceUnited Statesmailto:Maraist@acm.org1444 4160 5898 7668female21High School43968.24Yelena Takano10 Luit StAmarilloSaudi Arabiamailto:Takano@uga.edumale28498.40Neelam Rowanmailto:Rowan@ucf.edufemale2425157.94Terrill Uchoamailto:Uchoa@co.in44103147.12Jamaludin Pigeot64 Gire StMonroeZambiamailto:Pigeot@toronto.eduhttp://www.toronto.edu/~Pigeot6115 7380 3797 568718Graduate School9876.00Mikiya Munozmailto:Munoz@filemaker.comhttp://www.filemaker.com/~Munoz02800470183343027653553430670041800005000600005000600351303604923024030055503000900300240000013003500028002203224000030630122418034330055834003443350034284950481313022364903200250037640080000353524003600653530000632800070230980202760319530003650003036230318300503503082339006030355075283105633420008005034007180000041240055650490480004075035000041490326069030000339305700064184147000300027000002318003422000323035000220532313024303230000131203330000026041360003000360031831518600226930630017130360570031424103134030490205032260002301280413230312600803703503523065007601000240035680327007400303032004100213503224000341413162456301390420175505318311030398000003403590340753623130000240210000365060071003467000000354982239318080030240036081834000022234200171201000260003030296000273240022870008003100031653320550018030314303100028240049273030360000233503035410002435003400003276223564340003303302902200010004302422496230031800000188000047435500170103190533001300094770350180080582303220327001072041039736503400303314030600060003500013030034004149360684743655543674150353649553563554335494836497640353536653563986053363650353960557556507141556549484075354149606939576441473541363660696336574241495041353565763574413541415642559859366560716735493936428765554936353541353564434962474355477058724139736560603541493668 hark guiltless coldly regan plot mourn bravely whining pen wise approach wounds gain soothsayer deities pardon humbled these graces shepherdess vill arrogant places lost odd looking bodies unaccustom prize miracle pity disease beauty serpent perjure bedlam troilus sorrow arbitrate wrath wring music remember royal resolve fingers hanging when preventions accustom honoured sicilia recoil perseus knees greyhound pursuit blot arthur fornication stuck rabble mask time stolen entreat swift need wrinkles virtue unjust way world mention kept help does posture pavilion windy since brabantio wench spain argues otherwise parted affright repair instrument redemption form yet stain liberty court infamy progeny countess wonted pursuing now worth conditions mowbray gon silken spirits sweeter withal experience school peter reports revels pay trudge touches spurn unwash tom singular partly leon style receive nile giddy potion peace stomach mindless wings stirr unfurnish allay osw give toil royalties water bigger overdone lane suppose rough treason brook axe rebuke drift rings pedant knows stead birds cupid wake semblance london may remedies bad joy mends coward bloody employment mind soldiers nuncle stop dote surely presumption prattling educational soil pedro nevil eyes along cockle cliff mowbray law followed sanctuary wont offend hercules fertile windows albeit loves galen arms throw since care therefore oppress tending epithet medlars open hubert fresh thunders heart long forsake spider toward lips importune costard pearls pottle adventure wench glou abroad uphold precious hear entrails dangerous stab necessity evil following telling bark removed verge depended wrong probable reprehended congruent spleen lip flame manage pith teeth albion quake brain bit congeal short fortunes stabbing under bade unlike write invocation skies knew unbolt eunuch benediction legions whilst tapster windy capulets preventions mild unexpected wheels greater triple rare eyes lords alack believing rich than preventions laboring execute defend retreat whether trouble battlements been bowstring void remembers creature puissance ent bleaching days run arms nurs suspend spilling demands circumstance clos robes centaurs each suit gods mediators palace made foining knit overgo rare hedge gaudy breach silver lovedst rare injure riddling noble appeal reap mahu regan trifling stale weariest spare mer yonder cunning acre residence mounts fancy hermione liest drives doom collatinus blushing translate prevail occasions spy spake cabin enter coat put pair finger sigh dear rosalind edward tire let skein parted travell presence care hath nails stare beyond says clock poisons darkness strange both shaft beard willingly times weight retir owe manner hollow knowest unseen wits princely virtue impart educational weeping doreus wast wounded modern renders emilia flexible till towards arraign vill signior respected kiss abide dying knowing suddenly have sweeter caught fruit murd new tears lift par rarest fence fellow drink haviour cell worth expedition fresher other friend unkindest denmark attest whensoever bowstring hat north standards beholding knock other how wards ward vanquished other often lamented ajax with sustaining alone villain procures lead horse corrupted whoever tree about man adoreth upbraid coat fifty take rod displeased glib wrathful moody sluts cripple plume contrive trust casca remuneration mouse mixtures guiltiness already thick command meant idol garments said faint hurdle respected rag convert evil render thrifty wall cassius wring lim distracted hor weary danc peeping lord ascends help wink faster cries sea unseen walk souls pompey was scurvy evil con quench drawer personal revenge gift aid blue crave leave noted girl rom egypt warble brook pawning win runs obtain ely beggar hurl pause tangle subjected article stew mistress spider bankrupt post stop jewel clarence serpent nest pound greet court rheum thrown war continue asleep bull damn grave hoar bad indiscreet met loss knowledge tent secret presents left odds hadst sexton character languish keys begins appear timandra odds beautify spot song axe approved apemantus single merchant dozen operation welkin canst secrets prompt answer sinews calling unhappy attendant muster eternal nor art bookish deceit shows murther truest upright brainsick properly require freely our sanctify pray christian swear threat confer joint mitigation smoke pair ranks sadly signify prophesy ribs taste leading sick run fine avoided gentlewoman entire partake bandy smiles unfit whirlwinds dole entertain nights whether foolery subject chanson slay friends rising calchas say casting gift cry choke not heedful toad rot damask abroad secure hips slumbers strength arrive anointed enjoy wrinkled sceptres youth tempt through evil preventions vapour wink crying women conspires alexandria plainness party bleat aye islanders breath sauce preventions lot lying reckon unmannerly roaring preventions visiting implore treasure descended senses hopes julius proceeding kerns cicero hence twice cruel gallant public whom anger lives eve kissing sonnet cool teacher fighting nimble uses liking sanctimony fright rise acold rememb baser sweating does home preventions ado dying demands shamed reap began attain wast song venture large quantity avaunt forthcoming ink paths tower harlot satisfy gent troubled haud turn insinuation finding rounds orchard branches doct keeps foe lacking legacy overture suspect difference juliet fourth ass salvation eleven sham garden world lin balance peace chang lafeu metellus blame revenge ambitious soldier eleanor prevention cradle are ploughman preventions picture violent over pure ganymede bell deceive fertile foes angel postmaster reign puffing hangs fled wounds earnest subject one rails yield necessity eats receive ladyship pluto heavily worst still estimation thrown think cudgel afflicted trouble witty stride shadows bak wanted thought footing headborough hears deceiv parson assembly commit chastity eagle promethean curfew rogue courtly archers suspicion book pine glassy ungain dares undergo carbuncled embark revenges enrag chid gallows pembroke wings lion patroclus offense mortality musty serv tune device manage hateful trash cheerly posterity may blasted kills must moon interim dolefull object passengers hecuba amazes gentry ours exit welcome thrive bow larded subjects unsoil whoever straight courts noblest wild upshoot sham pray gibbet good south kennel penny belike impeach quarrels dowry harm inspir rocks jot acquit desires look promethean stirr touching merriment arch because quarter wept wander butcher let northern can reason ordering feeling well meantime extended distinction howe dungeon honey mouse great elements welkin age landed chances reg cheap proper cor forget warp throughly harmony reverse hear stirr ceres prepare convenient haste adelaide though pompey vanity smoothly banish epitaph this oswald steward fierce slumber confidently taking infants vision speechless torn lusty expect peeps silvius paris sheep craft unprevailing pulling name for giant guil memory heavy idle shouldst false oregon mightst honorable weather lowing cor utterly bountiful slips canopy skin acquainted writ write heads marketplace theatre warning minute thoroughly forces favours snake book untasted pastime against expectation guilt villainous fiend tend consenting bade mechanical hats word ass magic damnable mark need purg chaste unveil remains grey bodies scurvy believes who benefit fifty press thy neither youth stable wart eat liv wanting revive attire truths sight ransom berwick during language manly pursuest pol metheglins sport doings holp sentence wait called bay wrinkled bail affection marry waving sister gladly holiness gentlemen minds stuck mutual could troubled compounded sorry minister stain approaches acknowledg northumberland study perceived taste goodliest goes prerogative sort day treasure shrink nature unhappy humane stol sooth damnation cook ridges rascals almost prouds priest war empty hive answer kites clown token thetis tongues service wounds promis galen daws dishclout blust forms audience placket breakfast citizens ill depart amorous dreams daughters table provoke said learned side devise grossly cobham affliction brief precise assure publish furrow girls honors fooling write prisons fairies powerful fat write bird preventions anything appear headed renascence treason tyranny suffer rid safer caves equal rheum too worthier thence besort accoutrement brokers unlawful aumerle outward presentation amiss letting poor corporal prepares weary judge traduced proud wink testament lies roderigo triumph him affair decay squar rock flint unpaid die suspicion expectation approves reliev furnish submission labouring taking whereon noblest direful weeping proper whistle prevent knock theme islanders vowed pluck unkindness falstaff dealing murmuring jack canary champion draw watch wittenberg broad fill stuck watchman care speaks shoulders dukes trick right polixenes curtain embracing alter thereof london story volumnius itself laertes who secondary choice want stabb applied fit edm undoubted conversation cozen buck make additions crush preceptial husbands propertied grecian lucius colours heme every enough not follows office immortal having nod beholding old minister aweless sallet game cry suspect catechize crieth rain being keeping charg done gray takes country meetly grass whispers instruments taught beseeming forest plenteous foot size double tune smacks roll head via bate europa for humbly shirt younger flattering precise pass sprites coward smoke especially oblivion same feathers pluck beaks subject toward refresh brown fleer dress quality attendants chase brother mile plummet finger frenchman speedily wakes beaks did chill claws fair northumberland polluted letter lady place bad tripp venice mon touches bestrid salisbury doom pack people comparisons chastisement clamour profit wales customary anger discomfort acceptance likelihoods hallow plantain marriage saw arithmetic farms shot mind eyes charm confirm shrunk morrow loyal taunts are unkindness unnatural dauphin securely cordial carcass creatures told surpris speech raise sports follow big affections bed nature stealing miles appeased alone hangs large antiquity longing cloud physic saint pissing county beautified bear gobbets rebellion beauty year night despairing wealthy mess march mangled ambassador poniards coat embracing bay wanton gone banners mightily hovers same youth showest noble sadly polecats rank affright regent facing borrow braggart dauphin wars fairies search throw liar revengeful oregon sorry protect four whoever weight continent pity something ghostly flaminius climb judge army midnight radiance breath ourself combined frank fouler play gave desires straight them humble compell publicly dignity acts integrity young though wrathful transform bora scroll ungor proudly likes kill heavy display unyoke presses where coronet protest forc doctor rage parchment taught seems shield since derived mutiny frighted gasted moved herne lawful morn admitted spare heartbreak girl show leap inward foam touches preventions striving favour slew cheek negligence gods chance sheet morning his troops vowing resolutes exempt bee flavius continue rais breach scroll standards power means widow thence profit runs bear simply higher friendly tempted creep lightning steps explication forgot shoots seize sweets report promotion truncheon deprive pay race subtle deny athens women man attempt violet offences virginity channel cupid sick smelt suspecteth storm emperor gravity sooner cipher usurers vaunt lion sleeps preserve hor sirrah locks past played two lying pillar vanish ends until blushing degree bluntly thorough whereto highness labienus swift done makes armipotent cock second meats frederick summer ban benvolio none promising vacant liberty evening tokens wherever lived post spare lessen parolles armourer wheel wast choice censured ago britaine flight thinkest peer excess mortifying lineaments honest rul train though laurence priam fairies vale alcides cressid bed shape imprison absent vaunt air faults sayest traitor graves custom speaks sing egypt upon censure disjoin thunders kings late sad evils serves rings prayers passage piety drawn captain abused flask dug laments scambling isle beard came laughter snarling mellow envies excuse disdain sickly stranger aged points whispers scald spirits offer week first two damn pope company household resistance remorseful head the commodity discredited queen roderigo sick own best swain queens terrors fears heavily carlisle varnish glimpses deceiv free clouds mightst find aforehand delivered thieves fleet spark removed please montague beggar become defend hugg urinals dolts rhyme beat venge despite stops unseen harder faster accounted king holy disperse exultation relent war credence weak baggage capulet passage persuaded dictynna moves impose being beams outrage hastings largest affright parson advis contain ador deeds great looks doth gratis vaughan known fast albany earth moe petitioner fools dim preventions hooted idle midnight touch sake short holding diapason paid lechery shelter wants clitus brags trifles disfurnish quiet drivelling penny want hung dislik drum court toad forbid county champion deer asses because isabel dust judgement familiar climbing debt takes bee knavery alias nature says brows thence pendent truly safety slander breathless tonight may sheepcote planets commoners bold public night this senate groom heap rudand save cannot bud upon justly moves furnish quotidian bid slides nobler prevail seeming beholds secure enrapt marcellus supplication put penny inward shalt tyranny breach beyond report drinks hop ass gently leisure calpurnia princess morning truth jupiter how hull after endeavour preventions bald confess angelo arden witnesseth tybalt eyeless unscarr squire birds mouth conquerors care twenty substitute gentlemen martyred yead homely velvet passion greek mowbray indirectly manhood persuaded warmth office robber ensue songs tend emperor disposing glad inside days queen prolong pranks employ inquire pluck invocation retort dido bright nosegays living blind rattle green puts cape wing commotion fet lov patience judgment living slumbers sacrament miserable pours bail whizzing scarce godlike beat harm liable clamours crabbed bracelet disobedient living works vows dance preventions lions rail wont jove shakespeare place hundred lie,and anything whipt flight lifts rough preventions abroad passing enemy alexandria rosalind alcibiades tied slight offend hast green diamonds general clothe cor laertes catch void sighted whose die tomb befriend titinius craving revenge short cozen blust through ophelia tripping homage lancaster tells tugg starve frosts worse larded nightly strove gentlemen bud requests shadows circled truncheon kill swear loathsomeness choice nest servants particularly weather kingdom english ben weep procurator yourself faith girl allay methinks number mowbray rosalind employment making danger gentlemen straight priam rightly why trust girls content elsinore strew flood abode keep reconcile baser remains preventions kindness easiness conceive sickness less break kill grievously replete embrace lucky ratcliff baby trick tricks seldom dragons silly pyramides bravery conflict spend sheets flourishes runs succeed travel unhandsome king conclude stab land clowns gnaw unwholesome years striking following ourselves remote holy rightful leathern boyet muffled lepidus service breaking grovel puddle duteous forget prophets cage swears knee spirits figs business bribe mercy charter proclaim requital remember nought rainold beauteous disdain wide ears thrown hills breathe marseilles disdainful came reported suit hen traveller naked let possible francisco berwick beam deed sailors quicken hawk lucifer ventidius confine luck pleasures thersites cease frederick hag sore posterns sundays cull spite adjunct gall ill sixteen filling caught serious fool market disease plague apparent sick neither letters wand tide itself masterly tongues marvellous cowards prevented magistrates amends wednesday inclination display within fifty whole pow overthrows respected ignorant thaw habit purse swell warrant mark meetings countrymen dozen preventions ignoble rate idolatry drinks grant much ruffle strange mess standards broad boar unwieldy unkindest sighing loathes imposition sevennight feels burial hourly hates because girls reach expedition division supper maiden jaques company flight palpable gallowglasses meat creep impart months whirl loads leave rather story forms downward willow stood bated shoulders rote belike dares have monster work beget palate bully doubted furies talking four grosser prosper theirs philippe was stand evidence quarrel plotted treason includes territory torment merits little vanity yoked methinks naughty rebel delight pleases leave comparison selfsame saint tell loving fearfully employment desert perjur stands wind suck fear morrow dreadful british coin hail troth residing beauteous pass mar fence troth ugly bid borachio unseen extremity cull felon trash lieutenant house return hers together mer grows blood says having youth trojan obstacles yonder dost three curled pulse pound tardy unfit just chiding cease preventions flourish porter seen sickness count goodness winds wail bleeds like whoe ransom goodness store fiend troyan ring strange study spotted implore prologue fairer wood octavius venturing offence prisoners yes fellow batter titinius cease rebels forget spirit gear hills drawing doubt thus hands surrey foot despite arrests expedition worthiness stripp dug biting mistakes choice shakespeare dispos compact sweetheart again pride chronicle fight rainold made ear accidental expert lest meaning pursues choke due portents shrewd honourable then metres wronged stars possession nought nuncle droop desdemona knowledge led grave enjoin fourteen spend pompey howling incorporate beggary loud joints unless norway thrice paint traitor plays tiger mild conduct bridegroom fixture blanch niece madam regiment fools cursy pays drinking after despite leaves intend majesty evil contemplation whose swallow certainty fault supply growing hoo tybalt wed anything afar please sickly mistake entertainment need lived attending outworn worm wards note princely but end constable enterprise yielded tents rank whet lechery inky tyrant argus shoot faces breasts another pol applause skin strucken preventions square dreamt separation scap bardolph beaten paunches excellency hedge knees service spots windows hazard fortunes iras suppos following souse somewhat curses tigers harry deaths bubble wander again enters hairs free truer bold manifold bald horse sun convince art print very casca polixenes fetter company turn kneel cudgel showers week rise scene hell next aim curst curing kind language springs immured flood beatrice mariana jet spectacles reclusive nathaniel hat folks woodcock begins rank perspicuous sorts paper support deni languishes left wrong preventions retires betrayed whit rosalind harm broader distemp gad intercepted nourishing proculeius knees almighty war brows snatches earl rightful sister advis truest struck urg edmund loss earl marry seeming temperance intents university wheels hurts cautelous their living conceal minister fee wards torn mercy creatures appointment country friend evil ancient apprehension ripe letter break sphere seem helmet cousin enemies smiles blaze sinon odds iron bootless favour familiarity retire small diable gratulate marcade intelligence born sepulchre peasant commonwealth visitation ready composition bosom underneath bora attir execution cannot beggar attended pale ends yield sprung curse stranger seduc servile purest keeps sports swords consider quickly properly perdition compass low crows saw told brave debtor deliver amorous daughters maliciously drown slubber infection scolding staff behalf logotype spake thereto much imagine excuse counsel sententious conjecture lying life honor seas bid unseen interchange loving damnable cote storm monuments dying perverse night medicine rob years oaths large compel neither lusty maiden flexible elizabeth capitol emulation poor flesh ginger suffolk promising values peers princes minister gulf army lives repay serpent agamemnon rose drums hail slander brave pledge ourselves cham avoid either desperation winking feats tapers ursley eden herald ill blessings butcher patiently grange mince head loved lose preventions imagination dolphin chides didst injustice rude day chang breeding duke midnight alarums lost constantly wrack bed wanton patch florence rocks perish address study hangman despise hose makes colliers crabbed afford join mutual prevail ornament apollo observe carve murderous falcon looks brightness collatine selling harry custom ceremony cheek napkin residence witb ounce households kent lean adieu warwick villainy ominous slain symbols bathe peaceable pair everlastingly babe follows strive pow beware cold rage cell unlook imagine long map hears cheeks censure fears need antony archbishop deny seest prosperity sound propose spy wot mounted begins adelaide own doomsday careless miracle fortunes surrender understand wretch slave whilst should next harder moiety broken pilgrim parthia provide latter napkin laughter spoke multiplying finds same joints sigh dear shouldst scorn try tomorrow antonio reads help instalment faintly wisely satisfaction unhappied guts exil harms brawl commiseration clearly pardon revelling fool substitutes turning low heavenly wildness bending page pandarus could when betake camps spoil much just wager merry mangled ominous glories lands whole titles quoth books confess blows quarrelsome foolery priam stand gig ladder fighting bold guard rom think refrain venetians sues heme rightful manacle jewry needful unloose crimeful compassion princes swoons trampled senseless liest bondman lodovico degree posted terms talents ere coldly heads marry exploit garments greatness prodigy heavier deeds less honour yea sufferance your beats revolting intrude nature nature two millions interred stubborn appeal hyperion christopher judgement empire engend realm terror untrue pet respects ears week about hop yond strongly forfeits petticoat met breach osw attempt confirm understand chiefest dearly edgar degree majesty battlements hateful precious retain passion thyself parentage designs gowns arithmetic decorum pearl painted beggar passeth honour desire aeneas potency half thrice tricks treads shuffled cry just acquit courtesy pow carried away perpetual threaten detested rank bearing signs external honor happy cut weasel pass produce virgin oracle room freely ingrateful listen shelter homage showers flaminius feast bend neither swain out duller remedy cannot examination posts retire backs woeful sick carved carriage weak walking according examine weather apparent most keep are thank stockings alms worms fact propose trencher priest steps honor complimental twelve transported later high suit those cousin seat career villain aloof wheel prayer unsettled fancy now replete whereupon coxcomb clutch wish guides admir only cease extremities must aloft state brutus caroused except humphrey wed blows caps george grief nurse commonwealth italian heresy prostrate educational obtain murder easily losses colours gallop scratch smile fields trial hot sorrow decius sighing miser clean are jar sooner bohemia greeks oregon mock wounds commit victory gossips antony waters male sworn daylight stumblest prophetic musty few instructed wage beheaded lords lip professions then grows watch built treacherous shape cut leave womb sighing unruly fourscore nurse lusts conquerors alps lesser plucks hypocrisy portly band favour secrecy combined marks leonato abominable discern deniest strong loss rome having etna goodyears charles unmeasurable idle avails delightful speedy superfluous saw aloft drab perdition ours gentlemen talk ratcliff suits smell affair place jupiter wrestled common dark preventions greatness cease motions dogs broad exclaim upright seen indeed way fresh does four mothers having mountain pass suspect defence school impon pale banishment nurse showers eating menelaus thus rest likewise forsook deal party pale varro blades sights lack days render purposes bliss crept fann which dance ears different capulet proof servilius midnight external coz fasting people anne protected herein attend centre enjoin toward stings train siege simple dissolve career warrant laurence balthasar build dispatch liv dancing gloz thread henry set pol prepare dealing laws came mighty higher creep tread luxury church ranks interest lend squar rustic collatinus sweeter chests thither amazement toasted clitus dishonour rowland friendship marg orchard through penance endeavour clamours treachery proclaim nephew rather roman whereat rule jove numb travels rule enforce brings bands likeness seems cart yielded despite flourish musical deserve merited muse resign shroud plucked warmth stamp safe scarce rotten scope white fox list privately innocence arbitrate forehorse nony rul helen amplest offence metal blemishes sufficeth sitting meddle happiness logotype alexas compare fairy keep learn worth infection characters provide gardens next mounted harsh passion disease adornings labour retires kite prepar doors abstract preventions mine errands crust lucrece turn protector preventions musing esteem bills needs observe steward exclaim beg fowl who art executed round hags obsequious division nilus mus baser divine cressids apprehended eternal william grant interruption tut aloud more restless unique juliet why authority softly strangeness joy smilingly instrument courteous sitting aged rise york infamy con least bless access within embassage perforce infortunate however mouth great wonder lawyer margaret stick revenged moist fools necessary hardness ill punishment hearts eye treasure younger wed money plots drew subdu moe follows unproportion sicilia gate backs journeymen indeed gentle rebels uncles thrice solicit secret simples dialect accident guarded bedash certes tithing despised remove liberty advancement away nod precepts tickling gentlemen metellus twist senses departed charity tenour fardel plentiful enjoy restraint meed placket apart soothsayer bridegroom matches easy imperious fat act lesser death reply swoons falling amen ladyship editions blanks throbbing teem amiss hoarse souls row kissing similes desolate strength pillow wall tent ever tapster dogberry strengthless robert repeal guide found luck oppressing arbour wretch proved stronger gratiano take deliver denied place iniquity current seethes plac pleads neither string forth preventions tax troyan carping spectacles preventions falls know provok hard new thy poet falsely said awful instructions pole laughed sue cressida english unity each aumerle cop abuses savouring breach antic taste accept with faster dismay advise down stale vipers visor wake morrow apish spent find carry clapped neglect borachio divers vile hours precedent tennis imperial leather casca hue rash ended unbridled tall given philip raw wheel ant statutes cause fire precepts pipe late leaves yellow brave come cimber apply ford fall shamed liking william graces contradict grief critic those battle flagging preventions ready fled hamlet winters stood ever staining romeo lay unto cleopatra brothers stone lance form pella isabel bethink purposed flaminius preventions regan geffrey daylight talents sheets moon isle procure osr lock suspect cousin boldness hat plenteous calendar virgins qualified eterne sluic vane ominous numbers antigonus falstaffs brutus flight courtiers feared inform showed giving perchance disposition reprehend torments murk require wench early property silent quick amaz yesterday taken dole hence hold obligation borders once spur valour brook priest debt found asleep deceive advice pupil piteous white sun charles descended priest grudge rightly fights grudging friendship doubtful present slumbers opinion wafts quicken calais delivered rous mouth hollow save children dat hill gotten frame pretence breathless employ occupation rated cuckoldly year virginity patents kill sceptre imagination dispositions module forget hell thaw hiss fruit more dower surmises bloods bernardo sure combating cross brow writing safety letter than mercutio veins dancing william five wall slander coat happily travels strikes libertine ransom advice smiled bought imprisonment sting plots edm deputy bias monstrousness troth trunk handkerchief satisfy vantage four dark revelling gives shepherd gear beaver mortimer leave prophesy profession thomas courtly wooing varlet custom nails require chain likeness weighs liar heroical prophecy shuts dangerous osw rom cain honours follies ranker further meagre along wrong why and chides are austere coward laughter poniards suitors descry sleeping father challenge rote modest inhuman array know alms first hardly slander flourish contains preventions breath unlawful roderigo solely endure visiting rightly your fellowships met beats consequence disclose warmer professed contention free turbulent publication courtiers sobbing two discord latin him sailors bondslave reg breathe follies off land chipp buckle outrage everlasting woeful ascend wings congeal wary percy senators apollo spark pulls dramatis false lay hath servants grieve woodcock lucius yesterday overheard detested expostulation imagination because attach serpent usurer bees knowing secure cank axe picked speedier lower led pattern before coat shoulder turk necessitied replies marg request interprets full grandam stirring applause viler guard favours litter copyright garboils rome same confession unworthy degree white cullionly albany greeks not taste surety aunt jack streams denounce iniquity naughty strangely dighton profanation piety hunting skull willingly turning hangs capitol bawdry own club rage conduct shaking while purse solicits blind garments lower softly cureless potion rogue dismiss harm child vendible beaten escape regent said west bastardizing lightning hair receiv dare earnest ken majesties malice feel bosom south foresters perturbations tasted salvation murmuring approve saw fearful truth falls spot cowardly choice extremest relish menace yonder dreams chamberlain reputation store troyan gloucester slaves preventions servants daff bowels breed kingdoms wrought conclusion shent running content slumber hoop called pouch plague gnaw unfold flesh yet account ros shadow beatrice space carp walking conjoin bondman colour hitherto bene hostess tailors preserve wrinkled danger dreadfully marquis wrap easy kingly ascend maids horatio collatine every state thrumm hinges incomparable unshunnable breed mus adventure temples anne nurse bound testimony lour changed not thousand latin con grown abroad new approve went knowing stand marvellous charge mild while under rascally shoulder can dignity pieces thus picture conduct cheerly trade dishonour empty own wrought add irishman freely brethren impossible bastard politic heme mouths courtesies imprisonment stained antonio falsely toad sleeve fox shepherd cur taught sword moon hit bathe deep retreat goodly wets limbs foil courtier such ice musicians claud endeavour angle adversaries full parliament quite text wild descend round tomorrow harping hard hawk forehead peat prey suburbs sings hum devour our reportingly lieutenant lecherous smother henry resolution trojan must falconbridge discretion hastings tetchy scarcely frock radiant marvel con extol logotype powerful scrap blame metal entreats unstain wounded second suitors sell cuts bitt whipt civil thoughts nonprofit bravely pleases kingly salt shell stand motley air stole livelong dispense worthy way skins queen third owe courtship briefly loved about hatches proved honesty jealousy dole abraham offended villain cruelty bloody nilus appointed diseases they happily bones etc heavens gentleman hungerly slavish dares thrown sound drink instant shortens witness fatal oft tongues bin blasting stone stays propertied comforts tides plough made reported break poet soft persons lovel poor pent skilless preventions alters lecherous suck wreck little alarums hearts rudeness these stealeth lancaster priz just bottled wash victories ignobly excuses interest wine narrow gaunt combined handiwork nature charity speaks judgement obsequies signs sir seek wedlock wears forbid grecian cassius pulpit wooes jupiter earth hopes bastards nights fiery drawing fearing lend abhors stephen bosom done begot apart flowers ran gazed steals like reverse pale reading report wales passing fantastical protestation surrender heirs certainly figs forsworn chang lordship centre lies bid minister give antigonus ladies mummy descend mars hymen glorious starts said goes cargo quake earth ruin plead angel shake pure loos gentleman requests gnaws scorn villany aged strain thunderbolts answer laid thieves have reaching stone spite warn verily tongues motion witness shines pertains forced gentleness woman creation opposites scene fost distract stuck advise tempt flesh bending unwedgeable lay might easily blest word where stay unwholesome mildness sorrowed taught shoot frown provoke possess islanders evils art mud edg spotless memory wall faints noes lordship blaze lisping fir arm goodly fix serves appointed covetous pity realm heroical highness lady wept falling trumpets yea serve statue suit foul him hart wretched lewis pink functions earn finds teen obloquy turns matters torch street counsel pays merriest gown master dagger open forsworn draws poison manage cost swing pawn pure instrument but miscarried harness broke play tempt crown besiege ill affrighted travel overheard innocent swallowed closet dreams wittenberg dallies instrument scores stay sitting caught humphrey wav happy hallowmas daring besort incision get lift distracted glory rough instrument breathe foretells unbruised manhood rouse mattock such preventions haps james bishop lordship citizens fish everyone cup took messenger heal war bully perform event absolute are host vainly juliet sat nuncle tyrrel hard couldst traces possession wrath blushes sheets shameful bents ever flavius quarrelling trencher alack undo help dexterity sworder whipping portents taste cardinal speech pains appeased drown piece wretch monsieur let paris partridge capulet woman minute agree washes declin philosopher mad parley royalty preventions lease deaths without seeing music body deny bid meddle untrue busy reasons cleomenes resides whatever tom buckingham spoken ring himself remainder gallant requir marquis brave succour one driven cudgell wrench juliet assault hotter estate kings aloud vigour proclaimed commit doublet southwark rheum devil however fates toys wink angel weet within reverence omitted aid yesterday countries curse preventions counterfeit palate housewife elements whiles knavish court creature except forget prays plague sufficiently parthian thus leaps certain marullus past wasting hamlet red trot boy miracles peaten resides joyless spectacle mer fail galled rebellious stones grief appeal ophelia compassion canonize wast exit alike oil stood blood numbers bid incline warrant fell already rocks hollow geese sprays ruled owes alban consist antony praise hume stoutly yours attendant adversary jaquenetta depose carrier motion hir deed fighting whispers field kings caps strings asleep comely lies destroy stew terms use delver alas extreme condign mark romeo ladies grounds borachio tisick might hereford feasts glad maids troyans art epilogue ent strut sounding strong bears divine madmen higher mutual perish thence preventions orlando timon burst arras strives margaret preventions point distraction pox wears post reproach firm bolts hellish humility wine osric fat earl swift violence throng scorn recover vaunting augurers dreadful sicily brag tears growing bowl below debt replies sland forsooth hen domine breath thin ling late money unruly descried crave woo assured briefly workman toad magnanimous terrible married merciful afternoon immortal church grise indeed romans veil dame ancient loves vengeance covet affairs marriage soonest ring vouch troubled mak begin sit exit cimber dearest decius frown tent their clouts dash lion audacious pause incertain zealous troop conquest trotting proof vengeance castle brother torments straw toys sacred commission always titles michael sheriff platform erected taking venom lambs slack get laugh frowns she antique trebonius trembled commodity niggard rid shines damned almost brought liberty straight chances vainly fitness red whereupon hers ilium and urg verse mixture odds disorder dealing women january palace denying shouldst masters dame principle visit preventions slander vaults shining heed shop stay entame mercy try rogues denmark yon nor liking agony honourable excellence flatter fathers eve unnatural countryman egypt sleep hereford hark ambassador nails sue death bail clock sentence welcome breed clothes afternoon bounds forth deposing madam desir master imminent parentage fashion shun binds suddenly antonio endless earl met defend wrestler kept set gaming swears mould ingratitude keeping noble treaty actor eaves sister therefore working bastard gentles murtherer dead require these fantasies proclaimed surfeit sadly public leprosy wooden youth less allowed seduce hay thirsty flinty loyal adieu joint yield letters adversaries lips brotherhoods shade physician march crosby standards pavilion full function wrong mirror spit deal desires nineteen inform indeed adieu opens twice ended sleeping sake nightgown distill dear turf better here takes madness whose bawd smil timorous eros marvel boats bootless gone engag priests unruly where lusts knowest parcel but beheaded gifts composition enmity pocket mars bones ear paper gentleman pinch foreign disorder seal shoe stol lucullus eyes falt covering treacherous attentive books frenzy depos support approaches lay stood woe surely durst abed translated thron forsake rhyme accompanied discredited both dorset bite taking borne after ptolemy folded haunts birds provok laboring slow mould hector pestilence redemption parishioners prove proud warrant home weapon heard forceless sympathy unjustly slipp pain ass ransom whereto cipher cousin rail himself tybalt throw mettle tightly doth avoid charity quote sleep smack bell court tom superfluous into language foolish incomparable hie ransom moment generous granted ribs pulls sepulchre conveniency contract dispos beget villainy finely greeting them commenting upon triumph infect gentle conquer depart dawning appellant punish tread preventions disgrac knew been country tatt hack cheerful guide physic covertly smile less chuck castle peers aeneas received marvellous bids executed monk touches rhyme certainly saw arched contented fore denied disposed threat favor nothing county degree fiftyfold doubt draught heifer serpents souls afterwards actors burglary fly impediments sculls serv brazen ruthless paint writings command paradise alexander samson couple paper faith conspirator philippan amiss steward bring france gillyvors room body wrinkle mankind pour device immediate device babe blushest even plung rancour pay wind blame gave ruler prisoner capital ancient utmost liege tied late life traitor cursed varld rhyme state greet crest sat beshrew eye palace don tailors stream wag darkly its courage alike mine commoners misfortunes riot myrmidons dream curl york demand plot birth bones fasten clothes deck met publicly ambiguous remember rebel heavy whispering awooing mantle hits trust different beggars dropping bankrupt edg destiny seat opportunity build wears six theme gon fast sizes lips whereof advantage extended goddess payment web claud promis farther contract bare depend hers story goddess snakes exhort justly itself gait preventions buckingham goose rememb anne tutor ghostly wak ring hair francis impatient redeem stomach wickedness grave stops fled murdered favour stout drink taken command estate moreover motive poison pour created virgins open sluts his push wagtail die remember delight appearance grating lengthens titinius sexton reputation sits consorted got cast rosencrantz hundred cited marks unnatural person gossip level foes lack this interjections counts merciful domestic quills daring recantation tell disguise him goodwin enters tomb doubt infants their engraven chamber wouldst marked rome glide garden lean preparation yeoman renders works unhappy frenchman helm host deeper rue climbs nails dugs granted once shall ache worship apparition proportioned vast bearing revengeful confound dateless pursy large few rustic solemnity affection marketplace bora sadly error joyless wonderful veil shut bruis bawd rare excuse florence command sister imitari end devils assist subjects iago portion man joys grand camillo inn base dispensation enjoying mature remains strike blessed deserts tucket appointment met alms heart performance ist denmark richard open speech future shapes blemishes dishes humour testimony rot spirits dumb mount prov resemblance brave work vow sayest orphan temples courtly prolong action read breast mischance oak wheresoe lights make preventions tell files thievish bought bosom hanging nothings deep fit bones vanish air betray three depth shoe most conditions pin thrust falconers preventions allies should freely embrac hind purer pains groan infection chain convenient mortimer open carrying gives trebonius erecting masters berowne works madam most breath calf sit liberty taken dies soon lark blacker ram nay moons beat hath william ticklish hermione worser try joys having missingly travail knighthood confines moved greets transformations trophies was rely yea cordial host villainies pause northumberland temperate greatly invites how know nobleness apothecary virtue beasts harbour framed want beaten unquestion form prepared should request tell threw gig straggling sudden sister sum stopp accusation bound enforcement iteration obloquy kerns uprighteously repenting matters mind thereto small sleeve corrupted stand eagles citizen yield reinforcement blue loose curer harness turned alive carous walls kiss for silk enrag serpent your semblance token revels dumb interpreter least progress preventions duty unshaken shore powers napkin foresee pick crown there desperate villain attending creature practice presented boggle stalk bless slander age arms mayor samson cursed icy lusts going sleeve how falchion differences knightly satisfied huge confesses bend liking look prison find woe heels rage diomed redressed set suffolk countess disgrace ben right calls process assure imposition approved cold husbandry watch wretch begging bites mouths weal cade ward wares champion already stoop steals farthest grows just wherewith slough towns confusions strain breaks cancelled ravens striking north mar venerable eringoes neighbour treachery urs cardinal constant calm doct should due among life chid expiration wealth sheriff shoot fellows laurence notest codpiece kindred guardian wondrous wanton almost apprehend there commonwealth orts neither credulous scholar darker mutual bed top manacle supposed wail rousillon define exploit afire anne died level captain know compel begun hark rites verg semblance fiction change examination dreamt mood countermand forfeited beat neglected rough judge superfluous begs lighted shakespeare grievous flats smulkin modest command diffidence got mouth pillicock palter sanctuary intend george immoderately female beshrew walls thousand ran bade loins courtier houses planted flower ligarius naturally glares didst sainted numb coronation banquet halloa bad tile mobled desires humour piece hoise soldier appellants evil repeal cheerly thinks third beautify threats moe chief men bastards voice betwixt creatures sadly mere cloudy behind straws throat bodies grace tyrant cancelled trophies fate hollow noise gives renowned honours rear continues gyve die manet request waxen griefs bon sharp quarter beauty thersites doing ostentation preventions leon walk balls lieutenant ladder difference kindness please horrible casca grecians league hereditary placed potion smile tearing blame thunders methinks easy large call ways assurance heartily oswald devise league corn roman hammers mus roars sixty hearer kite hum cursed stop desdemona ours esteemed monarch prisoner age craftily mariners divinity cloud kiss devotion exchange withal blow blade neither plight vice shoes nuncle casement porter common star greeks article ample owl damn hundred water found pick continue spider acquaintance leon harmless remov maine britaine forgot clerk lives proceed beware generous slanderer perpetual ruffian wood apish oddest sinful gillyvors towards counted weapon moor cheek shall leaning codpiece command guil northampton happy thinking maidens shames focative hateth frights lord man brawls proposed exquisite subject resemble prevail fairy protest plague reynaldo wild crushing wakes laertes skulls julius sours charmian dreaded boy unking mistress enters backs imp wallow officer certainty digest success compare cardinal recoveries friar hero forgiveness immediately nobleness shoe dogs past brethren worships lamely ready office works companions daylight cloak innocence request doublet maine gallants meet disdainful murder ulcer ounce derive fiery barbason angel title resolved ages circumstance enrolled banish behind companion guildenstern amazed till admired achilles tomb entertainment britaine wax shadows hero helm abandon commandment dog convinced fie roaring preventions esteems sirs fate hide careful angiers winning espous bought paint necessities innocent lov warm meant denial engage epithet pith infant cannot unto continue hold confusion infection almost judgment stream drums bending load could imbecility anne from morrow keeps people youthful amend between withdrew sit oracle safer husband strongest eyes cozener slip forestall grossly night torture advantage cowardly warwick consorted mistake turn malice mercury sith preventions god thereof casca summon rites lights vessel serve gon god rose religious practise rebels ignorant text employ white gets diest reflecting start pull prefer wake nessus helen poet respect con yoke many sexton uncouth beauty lest attendants conspiracy while hare spade imaginations closet seen cicatrice note usurers smooth bridge fist had defect agamemnon root posset masters battery beaten phoebus heels backward considerate this monuments purblind buzz sometimes hung messenger wanteth sides crab retires answer apprehend dwarfish saying carried somerset yourself rome government rey reproach bent project entreats reference cruelty feature choughs cozening living till warrant unborn come woes denies claims offend banishment romeo exil parting sounding place engage ugly marvel rul daily windows charity whose lucio blood wage impediment armed withal roars staring tough children maimed brothers wisdom louder bed malice appetite sale earl seas ostentation sweetest wither arm presumption wink busy thou writs especial placed champion camillo consent touch draw got though increased process fickle these strangeness distress outrage practice lap fashions choplogic mightier grace contradict chat sennet litter former educational commander romeo ungovern whip destroy virtuous greece divide sirrah advis royal feed rotten robert lily clouds embassage course sanctuary double doubtless setting wedlock round give arrests countrymen comforter whether supposed leave knotted proceed toads roderigo till sitting puissant steps forbid preventions desolation each glove prerogative chamber monster breathes copied shriek act oliver gain comely firm clouded deserve fright caught inflict spot stream scape crowns amend comforted tickling york isabel question disgrace afford gorge offending cannot meets pen highness woes flying bury choose morn mutiny hook helmets marquis don refined asp lady people brushes pomander adheres fifth coz easily fang bor palace revolt perjury upshot swain images can benedick tender rend lust encourage would waist dramatis brothers dinner deceiv pit dwarf hideous guil happiness particulars youthful goods protest paste tempts handkerchief profit cap loyalty babes hazard amongst swift sue prick isabel thyself toil caught fee conclusions discontented wreck allegiance wronged shade crystal accusation committed fleet bags hor dispositions meaner waited like grecian competitors recreant flaminius london censured host womanish instructs sought cook thereof abhorred says unequal interruption groom grace witness forsworn winchester where brabantio sex calumny faction tybalt globe finger occasions hent amiss source their strain obligation murmuring threats sense frenchman anointed pretty petitions afeard thicker sphere between shoot affections strange eagle moralize furbish commend certain enrich grasps worths forest con ready afoot aside mowbray treasons queen unjust presence liquor carries throws liquid preventions close tall beast preventions three slaves babe enter merriment full naming testimony liege olympian crying into cut excuse parts stranger hum sworn whisp gives preventions like fearful either butcher chok taking wast reproof par accidents becomes amaz richly several serve flattered blots scornful deceitful cardinal mercutio hours thine wards retire indies finer goodly springs distinguish exhort reasons kindred casca conrade stick thoughts abraham shape syllable supper feeds which employ troilus pages out chid tarquin strong oath weigh glasses farewell shallow beards fortunate burnt commencement unadvised for adelaide nave cop satisfied reputes osw servius confederates break early their goods sweating most altogether guest julius build coney rat instantly inform affections pert guildenstern cease satyr above some sup repair beneath groats brook sometimes impossible fair swear secure bate halters painted can rail swoon tarry grapes preventions sighing devouring old retain bound morrow sun trifling woo noon misfortune post quis haply profession nearer shrieve properly discover note within conflict stoccadoes sing battle make title below thersites priam landed singing style pribbles important thunder hat race gown whip flies coward story flower interpret horn tooth change sharp wise interpose unsure finds diomedes judgement behove conception capulet hatch count noses where heavens storm abroach compounded blows laid sunset verona thine presently delivered performance distracts venetian osiers court womb perfect broken flock lepidus jealousy extremes spy dungeon wonder egyptian lordship both comes natural gladly mickle contemplative sooth always sail prophesy sceptre strain elsinore perceive wait against royalty bitter untune teachest shaking babe untasted realm peevish covert sometime pay briefly sold neighbour eyes become arms disgrace fruit hurt horridly ates welcome charg waking doubt kerns ragged privilege practise dominions twinn dishonour stood frank gage maid inheritor counted rack surnamed bull fortune shakespeare mean sleep incurable lancaster sorry fann seemeth cut silent duke faces marvellous ber yet damned plain edge spirit roderigo hearts demand tavern blastments everything princes hound manners loath half lays abuse spain provided detain evil swears nation fare pope stained resolve sighs eat teachest deserve absent grant give unless puddle courtesy bourn serpigo steps justice sheep red faults instantly easily procure rough grace fore fond permit smiles impose riders swain unhappy prefix keep hoo each abrook profound belov fail late ours venison cunning groaning liest tent preventions fearful wood thought too flavius child mapp praise choice clapp with spans avoid pageants misprision ajax looks hath hung relish superscript intelligence preventions ducat feast unrest curs government riddle seat hole dishes obedient fairer bridge afford copy voluntary dearer did yond weeps levity immediately submission services misprizing thump burden propos assembly mourn encompass incensed exchange measure foils kill merciful master able lov subdue magic sisters achilles falsehood owning passion choke three curs keeps loathe rugby tune fasting spider sheriff gibbet seriously advantage mouth spare laid pitiful blessed cornwall they destroy hanging perdita hateful husbands showing cousin welshmen ruinous charity discourse give transformed fistula streams marked odd duties spear message artemidorus plays maiden rustic eternal tower alencon inviolable cripple under discipline minister admitted purge isis sufferance procure banish war phoebus ambassador each talks twice gods sauce brown glance sadly malicious bears blows throughout sensible long fair sought waiting superflux sing recompense unique nay befall march distracted usurer gloucester seem profane miss ise worthily drunk torchlight drugs making livia along merchant visor countrymen don agamemnon sustain power moving deathsman caitiff heirs answered blushing liquid necessary sorts proclaimed buoy forward walls salutation breaks tears pain coffer strives bohemia challenge darkness verse lies imminent curse plays carnation circumstance hedge peace dolabella measur ben opposite gust sluttishness bestowing constraint monsters jump transgression the unworthy preventions brag steps went march shadows opinion while lowly resolution acquaint conspirators strengthen bilberry hoo sphere weeds note neptune now speaking gnaw friends bawds may sinewy brutus addressed starts proclaims mutiny bunch dere followers lowly cannon promise procures corky wouldst defiance conceive enrolled retail beaufort errs moiety rid corn mus brightness almost alice rated goods pandarus wondrous pastime sit may unkennel wrong dispositions fools necessities naughty sardis model lunacy waiting rushes braved tree pass wrinkled sun rivers yond confused amaz tide strucken imperial ceremony jay dearly pitch nam simple himself aunt beseech moming holy his couldst emulous paces bodies strong wrestling than worse semblance beware moralize preventions puts embrace alas ruminate back rosalind forsook place rags feels street honest tybalt lean field over impious villains fetter appointment this set down approof crow poisoned stopp now murd modern deadly bohemia frames sphere gaunt alone tower whereof doubting hood arguments father athens especially undertakings chat actor blemish foe thwarted limb requests heels rhyme frown grossly goose finding attire waftage charity disarm sickness expectation armies tame nakedness copyright slay impediment fetch green says hangs battlements suddenly groan morton thersites prisoner dolphin very precious turns shallow beg carriages fair flatt usually lent acted life until appointed strikes passado servant strange bonds advis brook bankrupt gypsy world jewel protest teeth liege sacred burden soil rudiments ballad your difference forswear nourish petition elected attempt complaint more infancy grasped traitor give traded daily silence breathed shelter rioter slanders precious into scripture prevent fool serv pest elflocks austria hard elbow grow beloved meddle attend pull easy fiend stocks taken practices royal tott project successors legions just very wherein successfully sincerity waters illustrate poor subject ruptures breeds lip prevail executed ease slept hypocrite clout farther father commanded arrive assur begins moiety days cock mortimer scope vex theme minutes contents men widow cage cressid spoke mighty uncover new would cunning still streaks verity whoever tutor rails corse hand shapeless lightning merciful dukedom high meditating belonging forth boot rancour lie stroke despis tree scar evils actor stonish unpath roundest ballad still rebuke eternal first needeth spurs bosom frost crier like par preventions henry england debt studied glad smile torment prevented galley confound abuses came commission dinner familiar shame learned hamlet rhymes power using filthy expect sol madam hurts idly plague storms pith intrude strew messenger whiles ocean delay rags drudge pasture lamentation serious misshapen foolish kingdoms liest doors crest maid churchyard under follow nevil cheeks crowned turn practices memory advantage merits truncheon knog rememb caitiff nonprofit leading dew unless degree destin remains satisfied for cade reported eighteen wishes soil trumpet given cruel quarrel shield speedy sold shouldst brawling bitter fix smile bruit veil regards conceive met magnificence perceives relates spacious supposed sickness return student angiers chin brawl burn forc nuncle tamworth leaving cue preventions ambition living business france elder actor limit two please everything weeps behaviours sing winters masked bravely unseen flourish fee credit sons ten meanest vulgar honour garrison without george having formal tribunal comments qualifies fire wanton tooth boist beastliest books loose exile stay last cupid jealous skull creating presently orphans chamber novice estate earnestly afterward quarrel contumelious warp constrain loving tread hind tempt goose art society scour given deputy rogues scarcely manka straining babe done plenteous gates enemies concluded consorted cool image night protector fie wrongs curled chestnut proceeding disguised children bait single sending cease lip oil bertram hour dearer humble sting bottom beginners universal whole sun proud hold crosses blest poetry slack damnable winds early monarchs army who born woe edm council faintly codpiece espouse thrall nettles romans tend valour bloods justice gods knowing luxurious perform home people yarely when afar giddy play general beaufort singing secret shun plough supposed flood spend axe smell freezing horses hardly plaints pace speaks vehement disguise thee craftily recompense queasy yea refrain delaying ice vicious weak lucifer ent blest lank brace valor wars surge churchyard learn knock serve christian dungeons laugh native lest designs rank missing consent rememb lowest weeping revengeful zeal guerdon tardy meanest league earth canst tempest sick gallows qualified helm chamberlain honest like sufficeth altar pill know sent sting seems object must leaves enemies chamber shores tale whereupon toy dignity either break stopp debase mayor citadel residing match watch beholds stratagem headstrong boy should diffused shouting angry true alliance withal flaming boot speech helpless tired valour bountiful jul andromache abode pursue hate badge against fort suffice park spiteful art his instructions gloucester sentenc pleasure mirror abroad his simple parts spies threaten gonzago enquire weaker losing shocks enchanting witch physic deer grows yet total verge roman repent bene indeed sap all foe hollowness constrain cassius rabblement habits exchange royalties derived times discarded cited low gone behaviour below riddles career pleasing cordelia numb most fact infant joyful personae non perjur friar increaseth perjured compare acquaintance powerful close adsum read ligarius freshly concluded rutland bastard ros session prorogue merciful hobgoblin reputing fearful read conference prize find sin blister mrs babe smells hereby dish form gasping chief constraint aloud morning drunkard preventions shadow sustain fortunes adore differences churchyard quickly govern seem deal torches traitors afternoon pleasures melancholy sequent tooth rights liver pour vessels divers goneril cassio content reynaldo guildenstern fear special grows ophelia blast sole cures author volumes flout more event protection hyperion bounty quit tidings expert lest continue debts stain are preparedly entertain whom directly repaid george pale offence duty aspect forth low underminers ligarius threw done ward hang something suburbs flight put intend beard sceptre must unspotted rise plashy haught politic excite power rosemary model fox yielded eaten fly coming mud maids correction novice waking well fairies bears post them beggary terrors entreats humor ransom conscience not troth carlot wouldst manifest says cliff melancholy curse was heir yare charged dank confess hits lame pueritia crack defeat mayst strong soil foot oph anatomy rational cock days sides spout slender her jovial thought residence according noble shot stands puts tears moving dogberry wither stoops ply soldiers recourse claud quarrels late wedding drift speaks sights countess whence philosopher vault what digs hector dancing desert forage forehead allegiance wholly proposed claudio university frailty execution preventions executed citizen spotted liberty happen deficient period article replenish iras parts gilt debauch blame poet illustrious own bosom gallant vowed pricket continuance slanders exit fee respect threat scolds air husbands spake wherein alter tiber rash liberty clown mole quick security smothered blessing doubts villainous food deliver vessels evil merry forgo shake daughters bleed unfelt fit garments confirm lay fitzwater runs manchus blue oft sold denounce lordly stubborn sirs silken brings solemn both spread wasp brothel cheek set ant under fellows anchors venom send shoot madness broken princes quoth counterfeit loving gold please wont aiding whale ancestor disloyal feeble true furnish lands noting dinner lent affected throat brainsick rarest deed strokes these sinews unconstant business drives issues albany cost governor curious publisher railest must whet venerable impossible misconstrues play nephew season mischance fourteen far sow violently water piteous band rhymes much blind box despite confusion ruinate bucklers capt struck cassius idly corner storm bastards presentation deaf fantasy taken arthur birth birds privy accents large stabbing perceive wager fearfulness habiliments seat flow peck hereford liv everlasting vouchers inkhorn hug instance secretly overset wafts acts who welcom bellies supposed bora doters rotten reasons tongue undo gilt unlocks disparage monstrous came judgment alb viewed lovers carry trick falls urs robb arguments counted heal weep pronouncing virtues customers cap pomfret contemplation rais carriage patiently descried meant affords raised nine tarr boyet grandsire attendants durst jewels brands counts bounteous ability normandy current geffrey bestow octavius prevent rumours tires takes med brat martext rid entreat devouring triumph traffic house edm desolate replenished leontes opens extempore excuse apace expend flow follow dying may esteem whom flaunts distrust mightst cassio melt fat peer pink fitzwater dissembling dearly spear bridal murther should creeping preventions demands preventions tilting interest majesty worthy worshipp shakespeare but latter hit daughter offender declare pretty humours perceive forthcoming fill sides factious damnable sheathe isabella china respect italy understood richard secure news deal chatillon heir semblance world isabel assured hardly vane neighbour advise sharp fleet currents foi tutor found will womanish hers gon isle rom mass niece assault understood finger russian egyptian joy lodovico aptly glasses doomsday quit tailors griev point napkin foster married aged fair cuts more catch raging suspicion preventions gentle cool meantime spar afford estates intellect summon came walk intents froth realms gait qualifies brought sheep cordial sleeps allons past motive warm peter counterfeit exit noon ros nonprofit state twelve next prize carefully sudden endeavours condition sing deliver wink conclusion immortal rhym preventions denmark length evidence thereto vincere revel strumpet counts peruse persuade shilling asking garden bail assure puppets sent unacquainted intermix dauntless privilege throne compulsion haud arrived puff she nature rook tarry churl pit page servingman publisher pollute heavier size dead parson bolster varro grasp keep hearken gate moment angelo book thereon bought dishonoured truant growing cat alive honourable hubert granted clown roderigo theft fan apprehend summer alarm feathers tewksbury execution wake knocking merrily utmost apart cloven leave foils weeping folks aloft neighbours climbing wooden worth cyprus shrilly antigonus brawls suspect waters cape custom blotted purchase commends flame apt maid strong achilles walks heroes faces spot distraction stalk absolution masque kneels dice desolation fairly precedent forehorse sardinia ilion opposite heavens newly burial upper juice adverse oration melt fisnomy both marjoram page nephew fulvia steel preventions deadly deceive crutch scope preventions swift live swift heavy muleteers merely discovered kinsmen fifty profit counsellor seldom fares ocean hose badness assure keeps measure truth breaths mistake florence defended ram name greatly enchanting bora mettle highness gentlewoman notorious cuckold imagine noblest joys desdemona whip demonstrate grounded wills pieces john along messenger preventions thrice twain cover tarried ang nothing dolabella slaughters say labouring hoping quits asham likewise graves keep craft devour glou wail sounded tell purse quarter thwart wept fie parthia prayer consorted that steward feeding took ghastly servingman sores garland lightnings prettiest sects want fasting character lesson alone cassio shore page desiring consider supposed car forbearance purchase wont manent wench stands whit ben wrongs rages complain monuments defy fiery deliver pills forc pray pretty condemn inhoop lads budge proverb stand mighty led receiving touch tybalt mayst third crimson seals recompense painting sick march egg flint yourself born tiber lear discontent fool spurn presume wind whirlwind prophesied drain instrument taste wears poisonous coldly herself paltry stanley exempt puzzles mer tent match asia pale subtle fulvia heal cope pain siege charmian two contriving approbation well virtues incenses cyprus courses gold cease heirs mountebank fond lads sliver invention shortly misprizing come monster cleopatra infection burgundy looks rosalinde pomfret lifeless them endure seek love bladders disguis ever chimney commanders need impasted prevails beadle precious require thine world like forc rive amazedly neighbouring sky kingly sell sent humbles augury repeal armies reads steps sorel relent tokens parted discover greatly epitaph quiet league parliament downright sorry descend water pricket awful art dangers stole into liv monstrous excellent houses oracle lovely pebble torment return couch lordship speedily mettle tradesmen never requital longaville reconcile lightning charitable battlements slanderer highly capulet distress troy fife schools weigh lordship let concludes assur relics prioress meddling stronger flax windows wherefore quit winters sleep helps heels accesses cards best dances discord plague horn hard unforc sorrow compos captain venus quod tripp ears keeper cousin certain weaker rivers modesty steward enmity francis entreated rebuke divisions filth worldlings banished blushing laer fardel limb saints pack resemble ninth moment setting nest dues serpent may mardian cleansing wherefore kindle sighs has humorous revolted hearers turkish personal sepulchre wife desp mild lighted lack circumstance supple society justly smallest turks truce breed tenth bal declare depart crying bless emptiness spoke grosser merry vengeance meteors pit canst source call fierce jul oblivion skull face hearing weapons preposterous frampold preventions notes detain enter pow marching saucy suddenly huge repose obedience cool tie conceal fowl constantly stabbing chaste nothing debauch nobody league remain served brawn children yond slept philippi peers storm cor dallies accident brutus found ignorant greater outcry preventions dramatis event check threats deserv prove perceive conversation trouble equall vanquish rey humour difficulty wits blushes mayor distress salt despise gilded pain still were richly but spent withheld hear mint hour girls select determination pawn prologue true passion material bidding hour surely spightfully should pate slanderous guide deflow first womb interpreter thou having visiting neglect young sensible moor severally down stanley filthy send lays vigour metal reconciler money helping acquaintance window dejected amazes latest wretched ink strangers serve adventurous emilia attend dull rising nurse affray disperse nunnery divines jesu selves approve crew pursu affairs sure sums grieve sups discords special given cursed comforter conjunction ominous sword slanderous slow peter potency hor breathe help loath murmur think unity sick amazed taught rivals vile chair bids heroical designs diadem gait spokes jul men word howe lie rules ambitious philotus mistaking greg signories comments abhorson serves flagging crack profits lapwing wings springs saint begun prithee words verse suffolk having fore fence eighteen pronounc perplex apt spite harms wouldst public blister murders untainted law mystery orb hunter friendship herbs ruffian tallow ireland sorry burning seated guilty nice glory temper grievous alone unquiet rate rosencrantz work weep fastened wat humbled wound hair parallel wounds chat thrust scratch enjoy lepidus majesty banqueting cloak learned muddied well curse masked juliet troth shape cited shout preventions rather alarum provoke knave thirsty reproach infected alter like advantage revenge comes pregnant predominant trembling hollow patch killing assume were bone nature sting solitary maidenheads dish serv the harry proud sirs horns nell purse thyself lift intelligent hare sable uncle smallest silk west virtue snatch brooks casca sweet partner rightly marking set mine ghost employ can crept throw family stones yesterday maggots cloths olive appliance mercy urs opens remove vouchsafe renascence remain smoothly heavens prating signal letters while terrible earthly hurt wish most mowbray roll wits case equal pox lodging undone padua listen forsooth carries departed coupled enemy request return reform pluck innocent harlotry hind horner behold tutors recall smell visit merry bore nap compelled thickest authentic beholdest depose surcease helen spirit exile chamber grim cope ajax comest manner rome means cake edgar maine repliest favor splenitive derby traitors discredited numbers foulness distain stronger spite forswear bolder afford constant undergo touraine possession beasts scratch perfect damp aquitaine ages thatch land events vice hate drive there gramercy divide payment troubled taper hither might tell morn main hostages ancient realm graves thine spilt lancaster remiss invention undeserved unto turn notice mess princes neglect port freely gone bastard debonair fight returned dream quarrel ruler damnable soon bitter forcing ever eastern covetous less flies throat methoughts bears affin break heard arras beauties melted palm sun harm unmask signs flags furnish phrygian whoreson frogmore won mockwater copy accent ourselves sink excess oracle spotted wilt strife buds guilty love bind match excellence mum pistol clothe ordered greeks leather peer incaged apology caused hills oils jack bastard greater murmuring strange case coming counsels spring delights youthful wat under discharge compare member excepted preventions vengeance thus nether stole charge guilt palace boy interpreted antenor dancing taste youthful hent fellow day sun horse larks offences ambassadors garments spit buy says whereof robert leaves calchas rhetoric companion troops forsooth cassio persuades caesar blank complexion upon whe conflict fellowship defeat commits cashier pages assay villainy labours princely harmless youthful alighted bespeak fine forc madman preventions remembrance offence vaulty command intent burden palace park spirits oph folded torch bladders deserv titinius finely beatrice broken spur dardanius moment decayed gout drunken ourselves plain fills pattern dane way model professes pleas spear songs star borders virtues shroud florentine richer blame says remain territories degenerate prate frowns hearing safety same ebbs varied brabant needs indeed index piteous tapster liberty hour marshal horse damn told substance time whose plum throwing than mounted pages plainness nobody difference abides engender convey force sickness cumberland easily chairs galen lawful foils imperial provide preventions deaths pretty image betroth shoots deny iras grow serpents see stall aye ordering pilgrim writ argument courtiers bubble tree octavia shallow keys begin thunder offic desire engag god verity never howsoever mark pain phrygian presentation sadness seed burgundy wives devour drums protestation wit breathe scurvy julius write scarce ham read held jupiter injurious succeeders paths usurer phebe louder raught happiness invite lath scurrilous conference compound tremble athenian speak play likely pierc george musician came mutiny delights post insociable grain chaps dram messenger paid army animals queen disturb converted less rear why suggested line feeling imitate places partly lanthorn far prepared tybalt heal both usuring wretch signior event bridegroom itself deities dangerous gav minion beheaded royal the persuaded fashion wretch use found earnestly jar cut welkin yesternight sometimes hath rarity parthia peering alchemist through bushy prison condition visit succeeders couples impose english invisible unseasonable forfeit robert knaves agamemnon ear figure burns case charms would perchance loose crowned half fain entituled goatish add instant meanest rey directly latin prays beholding charm unhappiness armour loving garcon larger mum crowns terror thereof service covet light besides pound subjects quoth declined foils aloud preventions virtues embrace hit shepherd seeing wild city many valiantly betake hark stranger willing prevented shadows scolding malicious dam pandarus sardis albany infamy brush fram murdered maiden wickedness loving regent crow phoebus worthless rowland lepidus france meddler earnest acquainted hive boisterous friar vehement humour finish vastidity appetite eel beseech appertaining goal lordship daughter cockatrice peace glad thrice morning another fortunes her worthiest drown maidenhood heavens converse quake loneliness edg clouds poorest practices sift lances iniquity flow authentic measur foot look uneven laugh bloody delight contrive mile trick already pastimes steer humanity lose confound lascivious doth preventions summer many buy high worthiness wonder bolts bareheaded lend pieces dancing park chill ensued rightly door exception lost eat bastard athens anon aboard ounces serves goddess inferior find cell profession lock justice fares dishes stol thread loath wail countenance affected burdens prayer prithee sadness descends famous copy hearing hills novice occasions beguiles ears bed patience sociable punished mistress rights selves ring boldly died affliction shelves giddy gifts lodge flat lethargies send sister palate need states osr amongst gloucester heigh dreadful cureless skin bachelor carry antony bring prayers athwart verse modest requires chafes tod sword births modestly disguis cousin berkeley why window cause gold ruminated commands better tent tokens superstitious sixth buy preventions rancour angling ventur fort combat cydnus having chests knees pestilence feet hardly needless others tomb foul trial his submission secrets acquaint enjoined deserved shock counterfeited seems discharg partly strains had grew securely austere thy off oppress meteors knowing battles rivet virtuous eyes ducats grimly urg bewrayed commended rank remorse guests stumbling rank each preventions smell crimson clown children ragozine winking anybody greekish furrow wrath mouths souls delivers priest model grave requited dog transcendence cups saving small shines dearer cave royally joints devilish cares smock according ewe threatens favorably unmask ballads digging antony conception clutch wives iago pace follow throat sensible field wine preventions taunts woes jest banished wanted pretty friend sulphur moreover dungeon win assist among breaths strato curan pregnant yond bids patience prisoner pulls pray ourselves chin fell squire off fery gentler most falls wilt months fled victorious princes purpos injuries appear equalities sudden lady paulina niece swore disguise monarchy possession saint recorded playfellow soundly michael embowell ravens preventions cry almost vainly wait stabb chests reprove youngest yea rainy island stood triumphed maid ingener custom separated afford future humbled depart carelessly divinity polack calls pyrrhus flatterers sex steads fed tarry token subscribe linen middle attempt drawn attaint writes falchion lett denmark fooling lamps groaning led led gar slept regan lengthen proscription merry sepulchre tiberio bills business monument better sweet death sorely necessaries pieces slew leg thus princely damsel message victory respects wrought buckingham far mirth report empty filching beads fat prefixed thersites idle woman sworn erring executioner wing power twigs thanks ought nurs dim leopard windsor kent quickly afeard educational conversation seven clamour spoil bridge remember staves bred corrections victorious adieu rogues older imperious stronger gone tell tragic barr domitius bleeds despite speedy grown griefs self plucks proverb twenty monarch trade robb employ defective hum lifeless avoid ago coming plain dog bread commons tuft earn last heartily sipping asp charged marvellous descry berries elves credulous wisest marg throat tyranny eyes plantagenet preventions sentence giving did breathe never adverse proserpina rack for cyprus malice his vents falstaff ear grandam once betumbled poor gentleman colours walks greatness editions clarence tut peter note brotherhood armed sprite slept which fierce ghostly trick bernardo basis fornication afric fairly search fortunes voices flattering widow tomorrow approv pitch expect woods sleep wrong wishing suffered whipp guide converting nobly leaden brothers follies bawd honours fever florizel isabel provincial fighting closely wearing fragment honester instant withdrawing libels suit merit beseech man heaviness cried wert did mouths thick mayst breed liquid michael albans tapster sway manner reversion breadth examine unclean hor sables suddenly tends bribes yorkshire perceive married hum market text daylight subjects impasted steward delighted boldly boldly seems disgrace keeper everything spain dance raven presently claudio fam building winds opportunity chin scorns dried host keep ancient handsome collatine makes help depart preventions misty coz alack hermione marvellous nathaniel worthy cheeks behind tend drums weight want rich ill compounds asunder torches seal wounds disguis threats woe ride dark wonder jar ease upward loud alone dragg falconbridge tewksbury trail bedew broken earthquake quoted working deep deputation bridge navarre subscribes finger pompous dear boasted hereafter wak assured yonder fought body apemantus wrack knighted into shepherd profane spears flung fault easily lank beatrice peating plaining gold wide emulation star resolved daughters wink tempest oph cicero shadow provoked there charg palace stern fan penurious brothers truncheon offend deeds abus person them impiety conscience awhile junius stage boy braggart gamester diana fellow similes jests doubt dangerous galley concern fairies sends pinch bene laugh thoughts base control subjects solus henry heartily forehead always thereat manhood drink use paul complain short enough design sainted intents prithee epitaph messina confederates mayor doctrine hundred enemies loyal epitaph sword bound breathing cool pilot lov print desired privilege sour partly cursed monstrous royal want crown goats return fights gainsaying winnowed morrow swift hearer chronicle pindarus suitor ransack par gaudy house preventions lordship guests preventions ladies dares hour vilely dumain nobody nineteen fright worthily regreet take collected seest henry cool them mistook power air bertram ever disguise beggars report chooser delay sleeps note creditor sums raz tax bigot calm thousand galathe ask bids graces overture queen fairies bleak colourable silly giving limed tread five honor ensue palm supposed doing seemeth revenges times caius held albany paltry spring nether juno beg topful tower sets bride devoured nations sans creatures spoiled how accompt ordered charged thorns though drab grandam wicked sailing ulysses strangeness smother knave gazing rosaline castles kent mariana grace hist garter silence tailor deeds method mouths regal acquaintance weighty spake worm preventions myrmidons jump complaint made pleaseth rousillon promises special change osr colours slow maccabaeus uncleanly slow strato stanley good true embowell murd humble made likely plots mildly worthy shakespeare chi misled unfelt bane jourdain receipts prov sigh shouldst expressly applause tune good reported slander canon eating enemies denmark talk means couch rite unworthy zeal pride dumb robb properer paradoxes private garlands roses suddenly hast madam slaves god lost praises spaniard preventions vanish example remember crave figure italy ostrich greatest norway prophets doomsday belonging grow story knoll ages joys befall takes preventions denied speed dover wants tarquin oaths pleases edict kingdoms mean remember geffrey bounds conceit derby southern shoots topp covert thereby antonio translate selling injuries beauty mutual picture imagination choice being melt tie suddenly either smoky traitors stain conquer place innocent you fast brought gregory hor board space lived spur wolf fitting paltry england dear mettle thank shift hear melt eat your gertrude perfectly legate beshrew gentler thrown women sky stifle prescience course volume light fault buckingham while deserving edward confusion neck thought poor adversary traverse seeking graft discontent courtier bastard past oppression speaks thus ophelia laertes coted wept alone yielding petitions reave pattern main preventions rumour murthers bears craves spent diest remembrance sing unique medicines given woman bride very truly wore gave below pil unjustly serv under borrowing partake dead charge earnestly secrecy ground weakness depending bargain moral miracle rebellious ewe phebe cousins husks peers laud lead angels wished fills heap haste further distinction brief aches uneven allies doth lordship cradle prologue awake sinews strengthen afar drunk cheek strange resemble impatience wring swerve forbidden thereupon new more mort waking oaks commission jewry shops preparation geffrey kneeling can crave approved spokes corrupted danger prescribe sworn prime messenger apprehension stirr bushy sound sakes withal mars victors eruptions fortunes thrice extremes killing poisoner son bernardo knocking falls enriched assigns text famous keeps slip verona mine bites theatre stars stumbling books thinkest foot den dream unmannerly wolves rod argument ancestors monarch valentine lieutenant dover trembling fight owing aches where salisbury grand followers full forty odd enemy city stale tears preventions assembly forfend rebellious worthy eminence safe catastrophe audience gertrude whence manner how marrying remedies might something observance stream nobly bones lives madness approach wild hope speedily edm devis centre virtuous abbreviated careless sleep fights orbs intending led teeth troyans devis divide penury behalf top error fires morrow conductor means berowne preventions glove concern worcester summers carry drink avouch deceive stroke nigh hither jig buttonhole compel clown all moderately residing reign isle logotype requite benedick grossly powerful ground noble respect envious surplice excellence palace mouth execution children preventions greek forgive apace suit courtesy careful ones antique among norfolk feats plenteous feel quit weigh bucklers pull gladness detest whiles forgery therefore easy camp venuto humphrey favour drinks vengeance chaps payment conveyance argument mince silk pardoning ensign deformed unworthy importunate courtesies hairs blow hearing page brothel free tract gods kill grey deserving punishment accuse taking carnal pity oaks debt six stone exploit whored way purse ensues sad pursued old heal gregory entirely host cheerfully fine stoop phebe thank points grass thwart herald rite invisible conscience loathsome welshman wisest harlots backward adopt say cornwall knack attended hies light perjury wings term swells sire banish shore pirates body pant urge solomon paper springs giving couch generally masters chin claim accoutrement lord boys laertes washes mount brother discover marshal jove blank nuptial unknown deeds honest paint torch verg way steads builds away sorrow subcontracted cassius cowards blood blank wooing ripening cassius milk medlar hush bondage wedding sickly beneath bows whetstone tears whoe bleat accident sails painted houses pale illegitimate francis believe preventions fits wherefore hit sight balls distracted disembark visage ely flay france dine fruit learned bodies because breach caius flood remov saint terrible convertite stol uses debate feed angle wine cured madness hurried greekish dispense sometime foresee suffolk marg cup englishman spent pyrrhus breaths rarely third paper entreatments years sum thursday bodykins who devise chas subscribe mends keen affairs embrac sting through statue hatch entame bags thought since commenting dispers mischief however severe council gnaw distemper bustle behalf shadow flatterer ventur hew robes capt feel nilus breath pace aught weeping jove armado lucrece priz sallet lover saints under throws farewell grave otherwise gar recall night necessities tackle cor damn bright terms worcester stopp bewitch restraint mark particular youngest eye unless dam parasites design greet until rewards displeasure unity alb state walter wedded far gracious antonio preventions grows rites casca entirely lily remorseless trim divinity drums tent glass clay perfume leaf sirs commenting points gentlewoman doctrine upmost health mine wonder any blemish memory they action self unkindness beggary belied sheweth vessel hiding present admittance like blame mayst cyprus keep favourites loving sugar spain gon days brutus beggar nation musical strikes character surprise senses grange hear daintiest wit whale duke chased doomsday spear villainy cloaks musical tartar working policy madness stripp soft first wooed credit gods misfortunes render mercutio shall permit venit hence redress plays gentlemen scape green incident keys unto asp shake herring descry basely sold confusion realms hunt wanderers persons etc admirable companies profession amazement entreat dolabella disloyal poverty cassius instruments harder venison standing text just dauphin nonprofit discipline seduced arrow opportunity domine summons retire julius hairs since affectation drum style learn chose pipe derive athens wits dreamt provoke curses hastings regiment videlicet pass mass cutting marry proud tapster more celerity scorn entertainment usurp sextus dealt drinks blows report speed shape whipt jest harm wilt shore jocund delay silvius sent unable maids belied approof humbly metal hawking choler exterior surly sake poverty cloak lance queen kneels forsooth error which flaminius vantage ribs drunkards rusty dance crutch harmless level satisfied beshrew loath preventions edgar clock everywhere contract voice odd cordial rite anon visage committing frenzy locusts vanish unbloodied drown com dialogue plucks uncropped lies slave conscience drink hautboys some letters verses shift whipt that flash calling account vowed burial goodyear prophetic slander brace wretched armed maiden project gaze palates dominions news madman herein alarums meditation sobs champion even dead apprehended tonight london progress protect wonted deserved pronouncing blessing derived harness day wearers grievously naming appetite assay melancholy embracing wolf fever theatre honour howl undoubted learn trebonius grossly soar straggling deceit yea undertaking wore wicked comparing squabble willow assist becomes any silent tak ireland grove proofs ache cast charity unpolicied rat mar lurch valentine antigonus conjointly room diet not grace incense wisdom preparation resolve article ken drowns mute sits foison aloft beauty jewry lock flattering applied gracious generally determine can kennel mortality imports scroll drinks patch deck sixteen far old resides secret beards prove flowers receiv pound lines object tithing drop meaning slain beaten whipping child qualities speaking shores doe health therein fly prayer dishclout turn pall been afflicted far reform hear choice grim manner survivor palate stalk weal while human painted toward deformed offense maiden pant subscribe slept spark devise list they apply swore deformed undeserved graceless bans self woodman error toys what doors heav heraldry approved chapel apparel spoken arrant backward geffrey preventions defacing flock stay secrecy corporal wrought mend preventions winged rugby perish tread contempt benefit task used gilt goods unity musters costard deep royal father love sententious awake streams dangerous six gage melancholy greeks perforce catlike waken coz reap holding beastly beam lucio citizen rats seizure hast pursued arrived convoy hart tower tickle spies foolish inform attain forward ordered despairing catch profess thersites confession courage year order cloudy sound foes edgar interest starings beg bin alacrity right soldiers couple web keen machinations pray chamber blessing enraged tybalt ambassadors images romeo manners blade prick self ambush serv sway sweeps jephthah sicilia pipe loins preventions door trib safety saying trunks deserved already besort signify surmise packing beck climbing edg befits sometimes ruler compare persuade imprisoned greatest woes sits fellow salt stare cream victory offend seest hostess ford drawing preventions bitterness lov saying prevail heifer son intended impossible without peculiar purple unwieldy chamber resistance coz understood gentleman arden feel sacred plung shun deserver discourse block cope soonest son render dreamt caesar unskilful everlasting strikes throne rests sin mighty personae only circled wheresoe prate peers worldly pitiful preventions slips clitus get since creatures yield supper rude speed sworn obey service crying vailing low age intelligence according like beastly amen ope instances defence dispersed speech cause cloak lighted following montano snuff rosencrantz vienna scorch quoth mouth deadly regent bridegroom tyrrel thankfulness witch yield sung buttock hungry stroke wish window pardon rey mutiny egypt paris musty remember few hands breathe laws prosper south liquid bawd impatience keys immortal nay mows compelled sorrowed harm norman receive arithmetic lungs spent fry sounds trembling appears quite malice dowry estimation bora use irons doers paris dire enforce grandsire bottle swear will built tediousness daughters jot thereof burns conjures bow lecture changeling warwick wit try lip fogs filths call urg ask enters ordering committed apron amaze garland prick made then crest sister wooer spur deliver read honour needs paint something repetition aim add tax caius rhymes rest heard sleeping incontinent jacks partner litter touch imprisonment folded society fleshly branches refuse sweat thrive comparing buckets cares blowing hangs tame knight occupation deeds here grief pasture hatred wat bald farthest practice praises pulpit hor mortimer die cardinal traitors ambitious paint worship property together helpful end head young hecuba reads save paw forest arraign street passion reach which goodliest deadly garish joy wenches regard slower hairs living escap entertainment type sly rude perfections sov through thereto parson careless broach herdsmen become list close feelingly decrees vigitant joint heartly despised wicked suppos mysteries pierce videlicet promised notable university proclaimed giving less apt affords sudden questions bottom guiltless grow quit because newly said natural ship sovereign leads harmony ginger arch grievously octavius deserv merrily honorable courtesy undone aim faithful enchanting affright lack dardanius sit drift paulina rhyme cor senate growth can spain leg troyan meant antipodes resty assist shall bosoms preventions sup welkin alack boys ours endur contract fears receipt killing head qualities away oppress understand end confess trouble manifested parts well awe heap spleen don martial provoke england mowbray message sigh claudius honor ask capable unite revolt rose herb fled take black passing piece perjure bids pink temper guildenstern woful rage ask from return summons arn watchful audrey supply nose reproach side eggshell slight condition out lady offer troyans tall thieves urinals minime beseech disputation childness humbly denied hubert speak passing posture service lucrece lend size nights shines crept gone drunken proscription unwilling vouchsafe principal claim sixth trash omne hated though enforced blessed edgar constable beasts desire dotage legions preventions taint ber tainture violated scorns herod trenchant substance humphrey stooping law quoth bush abhorr northumberland cheers drew preventions francisco equally manage painter affability whereto respectively notice smiles feeders often wolf faculties grants unseen fathom fretful slander wicked faith longaville thatch villain scope curtsies fertile bell gone earnest private hard confusion whoe chest bearing distemp catesby certainly girdle says perish penitent fought noble taste nodded shrubs ford determine sweetly nothing spells thither infinite betwixt stars sug hug jesters disloyal sometimes philosopher solemnity bridal push preventions welcome vice spirit excuse saint hungary hoarding already masters art paths roaring rankest cor ache rat arriv thitherward accept preventions happy irish alive silver place hit through poor longaville instruction quip look insinuation free policy out wicked madam shadows royally censured russet argument hereafter age table rough fractions whispers guilty chiefly cornwall author kinds strikes sparrows yesterday perpetual matter balk aliena propos brainford gertrude royalties assist anguish tied craves weeds bond thrown attempt shadow rabble montague challenge here dian furor knees business reside betwixt extremes reap cries contrary mankind tower innocent petitioner marriage pottle feeling mistrusted knowest offers behold contain heavens who unquietness offers spots suitor several something upon contempt magician fulness means sweetly sin age turn reverend albeit attribute suggestions dread property hunter admits distempered faction boys unwholesome conception well cook wreaths showed intend putting cottage had beam drugs knowledge fright did spake controversy nettles contempt damned cried been tend fairies cassio serv married smother wherefore extent sets nunnery ding easiness etc tame find norfolk bidding face doleful pleading unaccustom sourest falls turlygod lamentably wheels lives election light drop sullen tail precious true camp might fair reveal point won treason likewise old bushy wise cried sins affecteth without displeasure kings bend confess occupation cadent testimony please place avert stretch tune newly ended shows tastes friends one pines saint beaten swits preventions years valiant account spend notwithstanding canker ten master rashness couch utmost truer aboard marry sung virginity syrups softly heal opposed sun pretty just owner peremptory ladies streams other silent brain guildhall liest block nell flower count complaints labourers waves derived counterfeit whom juvenal victory jaques supply mowbray rais cities violent unborn renouncement blinds intending intimation darkly reads humour hills venomous rash pay propose sodden far assur cups sums whereon forge pawn proculeius comes unurg labours accompany uncle presume attires labour says will dire child fail pandarus with mates third temptation asham copyright integrity consider dark tapster unity moons smother respect pilgrimage guiltier adventure berowne swore growth verona ireland closet harshly heraldry freed green lewd reck effects testament weep catch warlike diameter season sure cold filling talk anybody britaine purse washes loads public name windows interchangeably attending defend tully gave gets honourable galls champion access bold separate beguile morning rivers fret bounteous night duke admir hurricanoes sooth vilely thread holds bargain dine weight wedded yawn transcends audience graves sue content deathsman complexions talent struck sometimes tooth praying sailing blame receiv questions doth brook foe buckingham concerns courtier lov soul kindred gentlemen resolve pedro con antony garden benefactors share safety freely deputy policy conquering foretell prison rousillon welcome direct nephew customary medicine heavy toys blind caius wisdom pawn dane answers adheres yet amen cross folly antenor canst prophesier hisperia posset marcellus bending evidence food moe piety betide thankful joyful thing dare baseness properer ancient couple nights dog runs weary how fault eagle valour till blemishes form assault plain cato none drave borne matter gualtier affect cassius measure honors weaves service count sinon trifles whole fix hold uncles sorry war soul seventh rome gotten galen innocent earnest attend unconstrained away tediousness trumpet royalty borne cover rack revolt sleep ber constant days trial plants abhor peradventure dozen loathe well whom apollo mote ten mercy project exhibition cold mystery torn diminution suspicion faint went provide fat bawd clown ago shamefully bosoms curtains treads martial preventions character hive wanton hush hell higher difference part aloft disdain bent iden melted parolles thirsty swing quickly brutus rampir robb lowness whipp pure crutches bessy along thatch bears iago planted rosalinda hercules misery process chants spotted wrack charmian snake laboured thee russians households wedded her romeo bethink gash joyful casca jays releas strange ranting darts wine judge paint appoint shown brabantio weary counsel formal unto image surrey skittish monsieur punish rapiers home insolence wishes perform ruffian sulphurous joyful birth april shortly boarded force battlements bequeathed notice scratch lubber smelt removed fill ways safety suppose discourse indistinct chance velvet eyesight modestly toads troublesome sprung arm drawn tales fault nurse then sins edmund perceive finds bachelor pains pair speech follow masters piteous grove feel methought had term edition accusers cap norfolk despite commodity stay senses does fenton denied wrought hector fond affairs manly alarum horrible built vassals gold cassio danish daws sells menelaus own hurl tide roar torch snarleth peasant instrument justly deem priam underprop corrigible corruption dwells liege england fret tut hinder befits capulets pray united supernatural corse beasts unless exceeds strange venus blood proceeding gift reckonings ancient boot such crowd doctor end misconster all maine nemean preventions kent unquestionable discover fell toward blush less tickling passing fairy wenches vow varnish bora sixth fright forfeited protestations pick visage brain sign parcel hidest endeared hands edm rememb biscuit bloody cares besiege journey locks fie whirl shakespeare suffolk aweary town thumb gap ambassadors abed wooers thy sleeve gets wretches melancholy naked worn spent qui coming mercy armed paris decay hercules shalt hence rash gav streets sum dull used fifty date measures hangs avert fares fathers adelaide warrant virginity parted defunct dispraise abbey enter prosper staying wrongfully bridegroom unthankfulness justice assembly rocks threatens matters hand noise repair custom mus sisters birth minstrels prattling reasons dram wander aquitaine bed metal signior conscience crows assured truly foolery leonato earl eagle verity garlands argument believe smoothing spring hearts brutus poor jealous dinner prisons upward time hoodwink william gold along humane fact project hate dispatch son whiles rested weedy idly fit motley ours mirth recover untrue allow dramatis cables follies red servant debtors purg haughty hasten applause comfortable guts dare yea anjou grant scarce mule pattern bears ides field proves wild sable speeds flourish party innocent dim greatly rais whose rul forsooth princes instruct prevail likelihood revolt commendations whey especially pandulph regent wealth blessing mingle devotion search under rise procure undertakes spoke crafty thence awry ache familiar exeter wed swords passage cheerly scratching thank special root weapon jot pilgrim speaking isabel darker staff press amiss edm itself joys torches dukes pale refuse ample reconcile city phrygian number subdu tent fetch married prison kindred beau bedew tyranny alone outward large marks direction hue logotype gave bind disjoint balm cliff power part suggestions elder cock provided monarch geffrey honors discreet born lanthorn birth nimbly bawd mongrel catch denote performance cure chastely venge can blot mon love quietly demands elbow dwarf supper stomach masker breeding attend lip huge there humbleness straight words perform belie charity bowl warwick blush william fifth fitzwater rid mask fist preventions thefts forsake beget leans monster hams pair motion nails course meeting hymen war goneril ere cast parching upon halters labouring imagin cardinal differences comes dogged west judge watches greatly angling troilus flourish inclining haunt fed france despised retirement spied scar longing heel feature watch what seem palmers sap surfeit longaville monument stables life bag italian met envy back sup angel coldly armour reg sanctuary exterior discretion wall plants advancing king proceed reputation employment stage touching aumerle defeat slender which conduct tough beats heave borne preventions attending proud troyan abuse some willow reproach platform thrusting nest makes afoot loud dispossess pranks stops esteem compounded care lowness loo close was alt cannot exacted norway thine calls german letter bruit service aspic hark liv younger rugged constable web spurn resign mines promis wisdom dishonest blunt stones imagination rein testament form yielding sits teach faults grapes liquor tall unfurnish invade reported sirs young bolingbroke ours buckingham rank vici consent open drum limbs rogue countrymen certain apparition araise kings fairest yicld naughty nobody sups spite constance ballads worth breath treacherous contented dick vial had cure detestable thine wretchedness news fulness nan etc lamentation brain critic call guiding ducats cheapside smart midnight earth roofs speaks gods threats southerly thou asleep wasteful married council opportunity dear variance impetuous alarums spirit odd beating first prove dogged well rare mind liar wenches severity knavery eyes oracle plain touches distinguish inch preventions worldly bliss meant betrothed authentic blackheath pluck towns rivers chief quiet exhales scope sixteen lenity white patience princely mere desdemona travail hang march reverence blush wait fat need impon thanks circumstance poverty goal reignier strumpet knights thenceforth snares withal kiss pin kin worst together multitude cloud ransom bear malice admitted wimpled pomp lion serv exclaims trudge somewhat but urs pernicious gave hates blind soundly ladies containing quench spend grapple steal bosom soften master followed teeth messenger proposes combat dozen amend clients flew preventions condemn approves unloose freshness swallowing low house tougher stayed surly ready fight dare following england sing editions gets falcon tells henry mocks sadness wrought sentence fall mournings hovel towards utter revenged news genius judgment mask done sway join fasten regard whisper fruitful suggest nervii dealing session sign crack cursy dangers uncover action seldom called ranks lies faded merry cherry citizens revels simple mace muddy fair horse letter spring ransom tenth hands dishonour beheld discourse cried whipping attempt northumberland makes aquitaine ivory lift looks doth gratis rate hither cordelia calamity gone loss pace flint marvel mettle bound peremptory dearest fitting rocks rotten betwixt already fail bleeding ability secure pleading custom except lately brows sees note kissing falls deserts rock tunes gain lands appetite ground hercules palace went bows hercules pillars reversion angel songs defy hast success 546.7845252000001 487.1741697 286.8128565 35.920473 76.3585515 597.0070761000001 11.1287355 419.5423098 788.0907702000001 198.2457516 54.057006300000005 78.7165212 815.4608484 104.91863310000001 22.4117307 647.8246287000001 482.1276738 636.4534851 114.9014394 468.1120782 1236.3033471 1076.4462237 637.2468207000001 172.3521591 32.9013903 586.3631568 563.7971664 592.8861384 21.9930258 1213.2745776 1420.731837 1319.4713625 1383.5772864 175.5475386 1013.9490081 828.0881067 496.16530650000004 267.9931731 43.6775322 840.054252 17.916162300000003 1322.3361854999998 240.2484642 381.1096074 52.91107710000001 1126.1398842 2660.7153798000004 53.0653368 1404.3362346000001 991.3609806000001 496.8704937 2414.5168986000003 151.6593222 360.526956 1503.6354072000001 566.7721749 12.0322566 781.9424193 1039.1374134 1867.3577427 91.7845215 226.3650912 1058.0232081000001 142.1613321 109.70068380000001 109.4582757 328.7274207 33.8489856 119.2427481 3859.0047294000005 192.05332650000003 333.200952 24.196735800000003 72.08335410000001 901.0088706 149.52172349999998 1110.8902110000001 20.4063546 1521.4193469 790.9996674 204.9229929 56.3488647 81.2948619 281.8104348 659.7466998 1221.9131208000001 348.9354414 259.9716687 165.7410291 539.1376515000001 30.2789754 372.8456949 445.4579394 175.1508708 874.5202764 2120.1673539000003 2047.4008497000002 339.37134000000003 2125.6105176 5819.513293800001 369.98087189999995 1648.3310058000002 876.0849105000001 538.1239449 2418.5496879 955.7931012000001 7205.8452177 697.2979182 129.7764819 289.8099021 2041.1863875000001 133.8313083 356.18564729999997 369.121425 28.8245268 223.676565 2015.8216854 107.1443802 130.4375949 692.8023498 606.3728436000001 458.61408810000006 363.36974189999995 832.1870073 406.584495 666.2256072 71.53242660000001 1002.1371225 735.0474705 498.8097585 193.77222030000001 3815.2170117 2456.1449804999997 611.970267 643.1527635000001 187.64590650000002 117.1492236 40.8567834 34.9508406 2419.8058026 1744.5229473 173.6082738 821.4769767 127.15406700000001 2173.519173 325.31167020000004 171.0740073 1412.4458874000002 2032.7461782 349.5745173 435.1666137 1607.0995917 108.44456910000001 83.80709130000001 131.0766708 29.4856398 127.85925420000001 70.9374249 648.4416675 672.3078468 100.5112131 36.735845700000006 333.64169400000003 56.9659035 896.1607086000001 273.6346707 861.209868 56.7234954 366.2786391 259.6411122 1310.1717062999999 1211.2251273 923.6850465 1136.012505 299.88085680000006 415.37729790000003 447.4633155 393.3842721 200.9122407 208.691337AlbaniaAlbaniaAlgeriaAmerican SamoaAngolaAngolaAntarcticaAntiguaArmeniaArubaAustriaAzerbaijanBahamasBahamasBahrainBangladeshBangladeshBarbadosBarbadosBelarusBelarusBelgiumBelgiumBelgiumBermudaBhutanBotswanaBritish Virgin IslandsBrunei DarussalamBrunei DarussalamBulgariaBurundiBurundiCacos IslandsCambodiaCameroonCameroonCape VerdeCayman IslandsChadChinaColombiaColombiaCosta RicaCroatiaCyprusCzech RepublicCzech RepublicDenmarkDjiboutiDjiboutiDjiboutiDominicaEast TimorEgyptEgyptEgyptEl SalvadorEquatorial GuineaEritreaEstoniaEthiopiaFaroe IslandsFaroe IslandsFaroe IslandsFutuna IslandsFutuna IslandsGabonGambiaGambiaGeorgiaGermanyGreeceGrenadaGuatemalaHong KongHong KongHong KongHungaryIndiaIndonesiaIraqIrelandIsraelIvory CoastJapanJordanKazakhstanKenyaKorea, Democratic People's RepKorea, Democratic People's RepKuwaitLao People's Democratic RepublLebanonLesothoLibyan Arab JamahiriyaMalaysiaMaliMaltaMarshall IslandsMarshall IslandsMartiniqueMauritaniaMayotteMexicoMicronesiaMoldova, Republic OfMoldova, Republic OfMontserratMoroccoMyanmarMyanmarMyanmarNamibiaNauruNepalNetherlandsNew CaledoniaNew ZealandNorfolk IslandNorwayNorwayOmanPakistanPakistanPakistanPalauPalauPalauParaguayPhilippinesPuerto RicoRomaniaRussian FederationSaint KittsSamoaSan MarinoSao TomeSingaporeSolomon IslandsSomaliaSouth AfricaSouth AfricaSouth GeorgiaSri LankaSri LankaSri LankaSt. HelenaSt. PierreSt. PierreSt. Vincent and GrenadinesSudanSurinameSvalbard and Jan Mayen IslandSvalbard and Jan Mayen IslandSwazilandTaiwanTaiwanTanzaniaThailandTogoTogoTokelauTokelauTrinidadTrinidadTunisiaTurkeyTurkmenistanTurks IslandsTuvaluUgandaUgandaUgandaUkraineUnited Arab EmiratesUnited KingdomUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUnited StatesUs Virgin IslandsUs Virgin IslandsVanuatuVatican City StateVatican City StateVenezuelaViet NamZimbabweZimbabwe12227150375 to equal undefined fo-test-fn-format-integer-001,AssertionError: Expected XPath format-integer(123, '0000') to (deep equally) resolve to "0123": expected false to be true diff --git a/test/specs/parsing/parseScript.tests.ts b/test/specs/parsing/parseScript.tests.ts index 045014512..afdff101e 100644 --- a/test/specs/parsing/parseScript.tests.ts +++ b/test/specs/parsing/parseScript.tests.ts @@ -10,6 +10,7 @@ import { evaluateXPathToString, evaluateXPathToStrings, executePendingUpdateList, + Language, parseScript, ReturnType, } from 'fontoxpath'; @@ -162,6 +163,15 @@ some-function#0() chai.assert.isTrue(result); }); + it('can parse an AST containing a string constructor expression', () => { + const ast = parseScript( + 'let $a := "my" return ``[Hello "`{$a}`" world!]``', + { language: Language.XQUERY_3_1_LANGUAGE }, + new Document(), + ); + chai.assert.isOk(ast); + }); + it('can execute an AST, using variables', () => { const ast = parseScript('$var', {}, new Document()); const result = evaluateXPathToBoolean(ast, null, null, { var: true });