xpathInternals

Name

xpathInternals -- 

Synopsis



#define     xmlXPathSetError                (ctxt, err)
#define     xmlXPathSetArityError           (ctxt)
#define     xmlXPathSetTypeError            (ctxt)
#define     xmlXPathGetError                (ctxt)
#define     xmlXPathCheckError              (ctxt)
#define     xmlXPathGetDocument             (ctxt)
#define     xmlXPathGetContextNode          (ctxt)
int         xmlXPathPopBoolean              (xmlXPathParserContextPtr ctxt);
double      xmlXPathPopNumber               (xmlXPathParserContextPtr ctxt);
xmlChar*    xmlXPathPopString               (xmlXPathParserContextPtr ctxt);
xmlNodeSetPtr xmlXPathPopNodeSet            (xmlXPathParserContextPtr ctxt);
void*       xmlXPathPopExternal             (xmlXPathParserContextPtr ctxt);
#define     xmlXPathReturnBoolean           (ctxt, val)
#define     xmlXPathReturnTrue              (ctxt)
#define     xmlXPathReturnFalse             (ctxt)
#define     xmlXPathReturnNumber            (ctxt, val)
#define     xmlXPathReturnString            (ctxt, str)
#define     xmlXPathReturnEmptyString       (ctxt)
#define     xmlXPathReturnNodeSet           (ctxt, ns)
#define     xmlXPathReturnEmptyNodeSet      (ctxt)
#define     xmlXPathReturnExternal          (ctxt, val)
#define     xmlXPathStackIsNodeSet          (ctxt)
#define     xmlXPathStackIsExternal         (ctxt)
#define     xmlXPathEmptyNodeSet            (ns)
#define     CHECK_ERROR
#define     CHECK_ERROR0
#define     XP_ERROR                        (X)
#define     XP_ERROR0                       (X)
#define     CHECK_TYPE                      (typeval)
#define     CHECK_TYPE0                     (typeval)
#define     CHECK_ARITY                     (x)
#define     CAST_TO_STRING
#define     CAST_TO_NUMBER
#define     CAST_TO_BOOLEAN
xmlXPathObjectPtr (*xmlXPathVariableLookupFunc)
                                            (void *ctxt,
                                             const xmlChar *name,
                                             const xmlChar *ns_uri);
void        xmlXPathRegisterVariableLookup  (xmlXPathContextPtr ctxt,
                                             xmlXPathVariableLookupFunc f,
                                             void *data);
xmlXPathFunction (*xmlXPathFuncLookupFunc)  (void *ctxt,
                                             const xmlChar *name,
                                             const xmlChar *ns_uri);
void        xmlXPathRegisterFuncLookup      (xmlXPathContextPtr ctxt,
                                             xmlXPathFuncLookupFunc f,
                                             void *funcCtxt);
void        xmlXPatherror                   (xmlXPathParserContextPtr ctxt,
                                             const char *file,
                                             int line,
                                             int no);
void        xmlXPathDebugDumpObject         (FILE *output,
                                             xmlXPathObjectPtr cur,
                                             int depth);
void        xmlXPathDebugDumpCompExpr       (FILE *output,
                                             xmlXPathCompExprPtr comp,
                                             int depth);
int         xmlXPathNodeSetContains         (xmlNodeSetPtr cur,
                                             xmlNodePtr val);
xmlNodeSetPtr xmlXPathDifference            (xmlNodeSetPtr nodes1,
                                             xmlNodeSetPtr nodes2);
xmlNodeSetPtr xmlXPathIntersection          (xmlNodeSetPtr nodes1,
                                             xmlNodeSetPtr nodes2);
xmlNodeSetPtr xmlXPathDistinctSorted        (xmlNodeSetPtr nodes);
xmlNodeSetPtr xmlXPathDistinct              (xmlNodeSetPtr nodes);
int         xmlXPathHasSameNodes            (xmlNodeSetPtr nodes1,
                                             xmlNodeSetPtr nodes2);
xmlNodeSetPtr xmlXPathNodeLeadingSorted     (xmlNodeSetPtr nodes,
                                             xmlNodePtr node);
xmlNodeSetPtr xmlXPathLeadingSorted         (xmlNodeSetPtr nodes1,
                                             xmlNodeSetPtr nodes2);
xmlNodeSetPtr xmlXPathNodeLeading           (xmlNodeSetPtr nodes,
                                             xmlNodePtr node);
xmlNodeSetPtr xmlXPathLeading               (xmlNodeSetPtr nodes1,
                                             xmlNodeSetPtr nodes2);
xmlNodeSetPtr xmlXPathNodeTrailingSorted    (xmlNodeSetPtr nodes,
                                             xmlNodePtr node);
xmlNodeSetPtr xmlXPathTrailingSorted        (xmlNodeSetPtr nodes1,
                                             xmlNodeSetPtr nodes2);
xmlNodeSetPtr xmlXPathNodeTrailing          (xmlNodeSetPtr nodes,
                                             xmlNodePtr node);
xmlNodeSetPtr xmlXPathTrailing              (xmlNodeSetPtr nodes1,
                                             xmlNodeSetPtr nodes2);
int         xmlXPathRegisterNs              (xmlXPathContextPtr ctxt,
                                             const xmlChar *prefix,
                                             const xmlChar *ns_uri);
const xmlChar* xmlXPathNsLookup             (xmlXPathContextPtr ctxt,
                                             const xmlChar *prefix);
void        xmlXPathRegisteredNsCleanup     (xmlXPathContextPtr ctxt);
int         xmlXPathRegisterFunc            (xmlXPathContextPtr ctxt,
                                             const xmlChar *name,
                                             xmlXPathFunction f);
int         xmlXPathRegisterFuncNS          (xmlXPathContextPtr ctxt,
                                             const xmlChar *name,
                                             const xmlChar *ns_uri,
                                             xmlXPathFunction f);
int         xmlXPathRegisterVariable        (xmlXPathContextPtr ctxt,
                                             const xmlChar *name,
                                             xmlXPathObjectPtr value);
int         xmlXPathRegisterVariableNS      (xmlXPathContextPtr ctxt,
                                             const xmlChar *name,
                                             const xmlChar *ns_uri,
                                             xmlXPathObjectPtr value);
xmlXPathFunction xmlXPathFunctionLookup     (xmlXPathContextPtr ctxt,
                                             const xmlChar *name);
xmlXPathFunction xmlXPathFunctionLookupNS   (xmlXPathContextPtr ctxt,
                                             const xmlChar *name,
                                             const xmlChar *ns_uri);
void        xmlXPathRegisteredFuncsCleanup  (xmlXPathContextPtr ctxt);
xmlXPathObjectPtr xmlXPathVariableLookup    (xmlXPathContextPtr ctxt,
                                             const xmlChar *name);
xmlXPathObjectPtr xmlXPathVariableLookupNS  (xmlXPathContextPtr ctxt,
                                             const xmlChar *name,
                                             const xmlChar *ns_uri);
void        xmlXPathRegisteredVariablesCleanup
                                            (xmlXPathContextPtr ctxt);
xmlXPathParserContextPtr xmlXPathNewParserContext
                                            (const xmlChar *str,
                                             xmlXPathContextPtr ctxt);
void        xmlXPathFreeParserContext       (xmlXPathParserContextPtr ctxt);
xmlXPathObjectPtr valuePop                  (xmlXPathParserContextPtr ctxt);
int         valuePush                       (xmlXPathParserContextPtr ctxt,
                                             xmlXPathObjectPtr value);
xmlXPathObjectPtr xmlXPathNewString         (const xmlChar *val);
xmlXPathObjectPtr xmlXPathNewCString        (const char *val);
xmlXPathObjectPtr xmlXPathWrapString        (xmlChar *val);
xmlXPathObjectPtr xmlXPathWrapCString       (char *val);
xmlXPathObjectPtr xmlXPathNewFloat          (double val);
xmlXPathObjectPtr xmlXPathNewBoolean        (int val);
xmlXPathObjectPtr xmlXPathNewNodeSet        (xmlNodePtr val);
xmlXPathObjectPtr xmlXPathNewValueTree      (xmlNodePtr val);
void        xmlXPathNodeSetAdd              (xmlNodeSetPtr cur,
                                             xmlNodePtr val);
void        xmlXPathNodeSetAddUnique        (xmlNodeSetPtr cur,
                                             xmlNodePtr val);
void        xmlXPathNodeSetAddNs            (xmlNodeSetPtr cur,
                                             xmlNodePtr node,
                                             xmlNsPtr ns);
void        xmlXPathNodeSetSort             (xmlNodeSetPtr set);
void        xmlXPathRoot                    (xmlXPathParserContextPtr ctxt);
void        xmlXPathEvalExpr                (xmlXPathParserContextPtr ctxt);
xmlChar*    xmlXPathParseName               (xmlXPathParserContextPtr ctxt);
xmlChar*    xmlXPathParseNCName             (xmlXPathParserContextPtr ctxt);
double      xmlXPathStringEvalNumber        (const xmlChar *str);
int         xmlXPathEvaluatePredicateResult (xmlXPathParserContextPtr ctxt,
                                             xmlXPathObjectPtr res);
void        xmlXPathRegisterAllFunctions    (xmlXPathContextPtr ctxt);
xmlNodeSetPtr xmlXPathNodeSetMerge          (xmlNodeSetPtr val1,
                                             xmlNodeSetPtr val2);
void        xmlXPathNodeSetDel              (xmlNodeSetPtr cur,
                                             xmlNodePtr val);
void        xmlXPathNodeSetRemove           (xmlNodeSetPtr cur,
                                             int val);
xmlXPathObjectPtr xmlXPathNewNodeSetList    (xmlNodeSetPtr val);
xmlXPathObjectPtr xmlXPathWrapNodeSet       (xmlNodeSetPtr val);
xmlXPathObjectPtr xmlXPathWrapExternal      (void *val);
int         xmlXPathEqualValues             (xmlXPathParserContextPtr ctxt);
int         xmlXPathNotEqualValues          (xmlXPathParserContextPtr ctxt);
int         xmlXPathCompareValues           (xmlXPathParserContextPtr ctxt,
                                             int inf,
                                             int strict);
void        xmlXPathValueFlipSign           (xmlXPathParserContextPtr ctxt);
void        xmlXPathAddValues               (xmlXPathParserContextPtr ctxt);
void        xmlXPathSubValues               (xmlXPathParserContextPtr ctxt);
void        xmlXPathMultValues              (xmlXPathParserContextPtr ctxt);
void        xmlXPathDivValues               (xmlXPathParserContextPtr ctxt);
void        xmlXPathModValues               (xmlXPathParserContextPtr ctxt);
int         xmlXPathIsNodeType              (const xmlChar *name);
xmlNodePtr  xmlXPathNextSelf                (xmlXPathParserContextPtr ctxt,
                                             xmlNodePtr cur);
xmlNodePtr  xmlXPathNextChild               (xmlXPathParserContextPtr ctxt,
                                             xmlNodePtr cur);
xmlNodePtr  xmlXPathNextDescendant          (xmlXPathParserContextPtr ctxt,
                                             xmlNodePtr cur);
xmlNodePtr  xmlXPathNextDescendantOrSelf    (xmlXPathParserContextPtr ctxt,
                                             xmlNodePtr cur);
xmlNodePtr  xmlXPathNextParent              (xmlXPathParserContextPtr ctxt,
                                             xmlNodePtr cur);
xmlNodePtr  xmlXPathNextAncestorOrSelf      (xmlXPathParserContextPtr ctxt,
                                             xmlNodePtr cur);
xmlNodePtr  xmlXPathNextFollowingSibling    (xmlXPathParserContextPtr ctxt,
                                             xmlNodePtr cur);
xmlNodePtr  xmlXPathNextFollowing           (xmlXPathParserContextPtr ctxt,
                                             xmlNodePtr cur);
xmlNodePtr  xmlXPathNextNamespace           (xmlXPathParserContextPtr ctxt,
                                             xmlNodePtr cur);
xmlNodePtr  xmlXPathNextAttribute           (xmlXPathParserContextPtr ctxt,
                                             xmlNodePtr cur);
xmlNodePtr  xmlXPathNextPreceding           (xmlXPathParserContextPtr ctxt,
                                             xmlNodePtr cur);
xmlNodePtr  xmlXPathNextAncestor            (xmlXPathParserContextPtr ctxt,
                                             xmlNodePtr cur);
xmlNodePtr  xmlXPathNextPrecedingSibling    (xmlXPathParserContextPtr ctxt,
                                             xmlNodePtr cur);
void        xmlXPathLastFunction            (xmlXPathParserContextPtr ctxt,
                                             int nargs);
void        xmlXPathPositionFunction        (xmlXPathParserContextPtr ctxt,
                                             int nargs);
void        xmlXPathCountFunction           (xmlXPathParserContextPtr ctxt,
                                             int nargs);
void        xmlXPathIdFunction              (xmlXPathParserContextPtr ctxt,
                                             int nargs);
void        xmlXPathLocalNameFunction       (xmlXPathParserContextPtr ctxt,
                                             int nargs);
void        xmlXPathNamespaceURIFunction    (xmlXPathParserContextPtr ctxt,
                                             int nargs);
void        xmlXPathStringFunction          (xmlXPathParserContextPtr ctxt,
                                             int nargs);
void        xmlXPathStringLengthFunction    (xmlXPathParserContextPtr ctxt,
                                             int nargs);
void        xmlXPathConcatFunction          (xmlXPathParserContextPtr ctxt,
                                             int nargs);
void        xmlXPathContainsFunction        (xmlXPathParserContextPtr ctxt,
                                             int nargs);
void        xmlXPathStartsWithFunction      (xmlXPathParserContextPtr ctxt,
                                             int nargs);
void        xmlXPathSubstringFunction       (xmlXPathParserContextPtr ctxt,
                                             int nargs);
void        xmlXPathSubstringBeforeFunction (xmlXPathParserContextPtr ctxt,
                                             int nargs);
void        xmlXPathSubstringAfterFunction  (xmlXPathParserContextPtr ctxt,
                                             int nargs);
void        xmlXPathNormalizeFunction       (xmlXPathParserContextPtr ctxt,
                                             int nargs);
void        xmlXPathTranslateFunction       (xmlXPathParserContextPtr ctxt,
                                             int nargs);
void        xmlXPathNotFunction             (xmlXPathParserContextPtr ctxt,
                                             int nargs);
void        xmlXPathTrueFunction            (xmlXPathParserContextPtr ctxt,
                                             int nargs);
void        xmlXPathFalseFunction           (xmlXPathParserContextPtr ctxt,
                                             int nargs);
void        xmlXPathLangFunction            (xmlXPathParserContextPtr ctxt,
                                             int nargs);
void        xmlXPathNumberFunction          (xmlXPathParserContextPtr ctxt,
                                             int nargs);
void        xmlXPathSumFunction             (xmlXPathParserContextPtr ctxt,
                                             int nargs);
void        xmlXPathFloorFunction           (xmlXPathParserContextPtr ctxt,
                                             int nargs);
void        xmlXPathCeilingFunction         (xmlXPathParserContextPtr ctxt,
                                             int nargs);
void        xmlXPathRoundFunction           (xmlXPathParserContextPtr ctxt,
                                             int nargs);
void        xmlXPathBooleanFunction         (xmlXPathParserContextPtr ctxt,
                                             int nargs);
void        xmlXPathNodeSetFreeNs           (xmlNsPtr ns);

Description

Details

xmlXPathSetError()

#define     xmlXPathSetError(ctxt, err)

Raises an error.

ctxt : 
err : 


xmlXPathSetArityError()

#define     xmlXPathSetArityError(ctxt)

Raises an XPATH_INVALID_ARITY error.

ctxt : 


xmlXPathSetTypeError()

#define     xmlXPathSetTypeError(ctxt)

Raises an XPATH_INVALID_TYPE error.

ctxt : 


xmlXPathGetError()

#define     xmlXPathGetError(ctxt)

Get the error code of an XPath context.

ctxt : 


xmlXPathCheckError()

#define     xmlXPathCheckError(ctxt)

Check if an XPath error was raised.

ctxt : 


xmlXPathGetDocument()

#define     xmlXPathGetDocument(ctxt)

Get the document of an XPath context.

ctxt : 


xmlXPathGetContextNode()

#define     xmlXPathGetContextNode(ctxt)

Get the context node of an XPath context.

ctxt : 


xmlXPathPopBoolean ()

int         xmlXPathPopBoolean              (xmlXPathParserContextPtr ctxt);

Pops a boolean from the stack, handling conversion if needed. Check error with xmlXPathCheckError.

ctxt : 
Returns : 


xmlXPathPopNumber ()

double      xmlXPathPopNumber               (xmlXPathParserContextPtr ctxt);

Pops a number from the stack, handling conversion if needed. Check error with xmlXPathCheckError.

ctxt : 
Returns : 


xmlXPathPopString ()

xmlChar*    xmlXPathPopString               (xmlXPathParserContextPtr ctxt);

Pops a string from the stack, handling conversion if needed. Check error with xmlXPathCheckError.

ctxt : 
Returns : 


xmlXPathPopNodeSet ()

xmlNodeSetPtr xmlXPathPopNodeSet            (xmlXPathParserContextPtr ctxt);

Pops a node-set from the stack, handling conversion if needed. Check error with xmlXPathCheckError.

ctxt : 
Returns : 


xmlXPathPopExternal ()

void*       xmlXPathPopExternal             (xmlXPathParserContextPtr ctxt);

Pops an external object from the stack, handling conversion if needed. Check error with xmlXPathCheckError.

ctxt : 


xmlXPathReturnBoolean()

#define     xmlXPathReturnBoolean(ctxt, val)

Pushes the boolean val on the context stack.

ctxt : 
val : 


xmlXPathReturnTrue()

#define     xmlXPathReturnTrue(ctxt)

Pushes true on the context stack.

ctxt : 


xmlXPathReturnFalse()

#define     xmlXPathReturnFalse(ctxt)

Pushes false on the context stack.

ctxt : 


xmlXPathReturnNumber()

#define     xmlXPathReturnNumber(ctxt, val)

Pushes the double val on the context stack.

ctxt : 
val : 


xmlXPathReturnString()

#define     xmlXPathReturnString(ctxt, str)

Pushes the string str on the context stack.

ctxt : 
str : 


xmlXPathReturnEmptyString()

#define     xmlXPathReturnEmptyString(ctxt)

Pushes an empty string on the stack.

ctxt : 


xmlXPathReturnNodeSet()

#define     xmlXPathReturnNodeSet(ctxt, ns)

Pushes the node-set ns on the context stack.

ctxt : 
ns : 


xmlXPathReturnEmptyNodeSet()

#define     xmlXPathReturnEmptyNodeSet(ctxt)

Pushes an empty node-set on the context stack.

ctxt : 


xmlXPathReturnExternal()

#define     xmlXPathReturnExternal(ctxt, val)

Pushes user data on the context stack.

ctxt : 
val : 


xmlXPathStackIsNodeSet()

#define     xmlXPathStackIsNodeSet(ctxt)

Check if the current value on the XPath stack is a node set or an XSLT value tree.

ctxt : 


xmlXPathStackIsExternal()

#define     xmlXPathStackIsExternal(ctxt)

Checks if the current value on the XPath stack is an external object.

ctxt : 


xmlXPathEmptyNodeSet()

#define     xmlXPathEmptyNodeSet(ns)

Empties a node-set.

ns : 


CHECK_ERROR

#define     CHECK_ERROR

Macro to return from the function if an XPath error was detected.


CHECK_ERROR0

#define     CHECK_ERROR0

Macro to return 0 from the function if an XPath error was detected.


XP_ERROR()

#define     XP_ERROR(X)

Macro to raise an XPath error and return.

X : 


XP_ERROR0()

#define     XP_ERROR0(X)

Macro to raise an XPath error and return 0.

X : 


CHECK_TYPE()

#define     CHECK_TYPE(typeval)

Macro to check that the value on top of the XPath stack is of a given type.

typeval : 


CHECK_TYPE0()

#define     CHECK_TYPE0(typeval)

Macro to check that the value on top of the XPath stack is of a given type. Return(0) in case of failure

typeval : 


CHECK_ARITY()

#define     CHECK_ARITY(x)

Macro to check that the number of args passed to an XPath function matches.

x : 


CAST_TO_STRING

#define     CAST_TO_STRING

Macro to try to cast the value on the top of the XPath stack to a string.


CAST_TO_NUMBER

#define     CAST_TO_NUMBER

Macro to try to cast the value on the top of the XPath stack to a number.


CAST_TO_BOOLEAN

#define     CAST_TO_BOOLEAN

Macro to try to cast the value on the top of the XPath stack to a boolean.


xmlXPathVariableLookupFunc ()

xmlXPathObjectPtr (*xmlXPathVariableLookupFunc)
                                            (void *ctxt,
                                             const xmlChar *name,
                                             const xmlChar *ns_uri);

Prototype for callbacks used to plug variable lookup in the XPath engine.

ctxt : 
name : 
ns_uri : 
Returns : 


xmlXPathRegisterVariableLookup ()

void        xmlXPathRegisterVariableLookup  (xmlXPathContextPtr ctxt,
                                             xmlXPathVariableLookupFunc f,
                                             void *data);

register an external mechanism to do variable lookup

ctxt : 
f : 
data : 


xmlXPathFuncLookupFunc ()

xmlXPathFunction (*xmlXPathFuncLookupFunc)  (void *ctxt,
                                             const xmlChar *name,
                                             const xmlChar *ns_uri);

Prototype for callbacks used to plug function lookup in the XPath engine.

ctxt : 
name : 
ns_uri : 
Returns : 


xmlXPathRegisterFuncLookup ()

void        xmlXPathRegisterFuncLookup      (xmlXPathContextPtr ctxt,
                                             xmlXPathFuncLookupFunc f,
                                             void *funcCtxt);

Registers an external mechanism to do function lookup.

ctxt : 
f : 
funcCtxt : 


xmlXPatherror ()

void        xmlXPatherror                   (xmlXPathParserContextPtr ctxt,
                                             const char *file,
                                             int line,
                                             int no);

Formats an error message.

ctxt : 
file : 
line : 
no : 


xmlXPathDebugDumpObject ()

void        xmlXPathDebugDumpObject         (FILE *output,
                                             xmlXPathObjectPtr cur,
                                             int depth);

Dump the content of the object for debugging purposes

output : 
cur : 
depth : 


xmlXPathDebugDumpCompExpr ()

void        xmlXPathDebugDumpCompExpr       (FILE *output,
                                             xmlXPathCompExprPtr comp,
                                             int depth);

Dumps the tree of the compiled XPath expression.

output : 
comp : 
depth : 


xmlXPathNodeSetContains ()

int         xmlXPathNodeSetContains         (xmlNodeSetPtr cur,
                                             xmlNodePtr val);

checks whether cur contains val

cur : 
val : 
Returns : 


xmlXPathDifference ()

xmlNodeSetPtr xmlXPathDifference            (xmlNodeSetPtr nodes1,
                                             xmlNodeSetPtr nodes2);

Implements the EXSLT - Sets difference() function: node-set set:difference (node-set, node-set)

nodes1 : 
nodes2 : 
Returns : 


xmlXPathIntersection ()

xmlNodeSetPtr xmlXPathIntersection          (xmlNodeSetPtr nodes1,
                                             xmlNodeSetPtr nodes2);

Implements the EXSLT - Sets intersection() function: node-set set:intersection (node-set, node-set)

nodes1 : 
nodes2 : 
Returns : 


xmlXPathDistinctSorted ()

xmlNodeSetPtr xmlXPathDistinctSorted        (xmlNodeSetPtr nodes);

Implements the EXSLT - Sets distinct() function: node-set set:distinct (node-set)

nodes : 
Returns : 


xmlXPathDistinct ()

xmlNodeSetPtr xmlXPathDistinct              (xmlNodeSetPtr nodes);

Implements the EXSLT - Sets distinct() function: node-set set:distinct (node-set) nodes is sorted by document order, then exslSetsDistinctSorted is called with the sorted node-set

nodes : 
Returns : 


xmlXPathHasSameNodes ()

int         xmlXPathHasSameNodes            (xmlNodeSetPtr nodes1,
                                             xmlNodeSetPtr nodes2);

Implements the EXSLT - Sets has-same-nodes function: boolean set:has-same-node(node-set, node-set)

nodes1 : 
nodes2 : 
Returns : 


xmlXPathNodeLeadingSorted ()

xmlNodeSetPtr xmlXPathNodeLeadingSorted     (xmlNodeSetPtr nodes,
                                             xmlNodePtr node);

Implements the EXSLT - Sets leading() function: node-set set:leading (node-set, node-set)

nodes : 
node : 
Returns : 


xmlXPathLeadingSorted ()

xmlNodeSetPtr xmlXPathLeadingSorted         (xmlNodeSetPtr nodes1,
                                             xmlNodeSetPtr nodes2);

Implements the EXSLT - Sets leading() function: node-set set:leading (node-set, node-set)

nodes1 : 
nodes2 : 
Returns : 


xmlXPathNodeLeading ()

xmlNodeSetPtr xmlXPathNodeLeading           (xmlNodeSetPtr nodes,
                                             xmlNodePtr node);

Implements the EXSLT - Sets leading() function: node-set set:leading (node-set, node-set) nodes is sorted by document order, then exslSetsNodeLeadingSorted is called.

nodes : 
node : 
Returns : 


xmlXPathLeading ()

xmlNodeSetPtr xmlXPathLeading               (xmlNodeSetPtr nodes1,
                                             xmlNodeSetPtr nodes2);

Implements the EXSLT - Sets leading() function: node-set set:leading (node-set, node-set) nodes1 and nodes2 are sorted by document order, then exslSetsLeadingSorted is called.

nodes1 : 
nodes2 : 
Returns : 


xmlXPathNodeTrailingSorted ()

xmlNodeSetPtr xmlXPathNodeTrailingSorted    (xmlNodeSetPtr nodes,
                                             xmlNodePtr node);

Implements the EXSLT - Sets trailing() function: node-set set:trailing (node-set, node-set)

nodes : 
node : 
Returns : 


xmlXPathTrailingSorted ()

xmlNodeSetPtr xmlXPathTrailingSorted        (xmlNodeSetPtr nodes1,
                                             xmlNodeSetPtr nodes2);

Implements the EXSLT - Sets trailing() function: node-set set:trailing (node-set, node-set)

nodes1 : 
nodes2 : 
Returns : 


xmlXPathNodeTrailing ()

xmlNodeSetPtr xmlXPathNodeTrailing          (xmlNodeSetPtr nodes,
                                             xmlNodePtr node);

Implements the EXSLT - Sets trailing() function: node-set set:trailing (node-set, node-set) nodes is sorted by document order, then xmlXPathNodeTrailingSorted is called.

nodes : 
node : 
Returns : 


xmlXPathTrailing ()

xmlNodeSetPtr xmlXPathTrailing              (xmlNodeSetPtr nodes1,
                                             xmlNodeSetPtr nodes2);

Implements the EXSLT - Sets trailing() function: node-set set:trailing (node-set, node-set) nodes1 and nodes2 are sorted by document order, then xmlXPathTrailingSorted is called.

nodes1 : 
nodes2 : 
Returns : 


xmlXPathRegisterNs ()

int         xmlXPathRegisterNs              (xmlXPathContextPtr ctxt,
                                             const xmlChar *prefix,
                                             const xmlChar *ns_uri);

Register a new namespace. If ns_uri is NULL it unregisters the namespace

ctxt : 
prefix : 
ns_uri : 
Returns : 


xmlXPathNsLookup ()

const xmlChar* xmlXPathNsLookup             (xmlXPathContextPtr ctxt,
                                             const xmlChar *prefix);

Search in the namespace declaration array of the context for the given namespace name associated to the given prefix

ctxt : 
prefix : 
Returns : 


xmlXPathRegisteredNsCleanup ()

void        xmlXPathRegisteredNsCleanup     (xmlXPathContextPtr ctxt);

Cleanup the XPath context data associated to registered variables

ctxt : 


xmlXPathRegisterFunc ()

int         xmlXPathRegisterFunc            (xmlXPathContextPtr ctxt,
                                             const xmlChar *name,
                                             xmlXPathFunction f);

Register a new function. If f is NULL it unregisters the function

ctxt : 
name : 
f : 
Returns : 


xmlXPathRegisterFuncNS ()

int         xmlXPathRegisterFuncNS          (xmlXPathContextPtr ctxt,
                                             const xmlChar *name,
                                             const xmlChar *ns_uri,
                                             xmlXPathFunction f);

Register a new function. If f is NULL it unregisters the function

ctxt : 
name : 
ns_uri : 
f : 
Returns : 


xmlXPathRegisterVariable ()

int         xmlXPathRegisterVariable        (xmlXPathContextPtr ctxt,
                                             const xmlChar *name,
                                             xmlXPathObjectPtr value);

Register a new variable value. If value is NULL it unregisters the variable

ctxt : 
name : 
value : 
Returns : 


xmlXPathRegisterVariableNS ()

int         xmlXPathRegisterVariableNS      (xmlXPathContextPtr ctxt,
                                             const xmlChar *name,
                                             const xmlChar *ns_uri,
                                             xmlXPathObjectPtr value);

Register a new variable value. If value is NULL it unregisters the variable

ctxt : 
name : 
ns_uri : 
value : 
Returns : 


xmlXPathFunctionLookup ()

xmlXPathFunction xmlXPathFunctionLookup     (xmlXPathContextPtr ctxt,
                                             const xmlChar *name);

Search in the Function array of the context for the given function.

ctxt : 
name : 
Returns : 


xmlXPathFunctionLookupNS ()

xmlXPathFunction xmlXPathFunctionLookupNS   (xmlXPathContextPtr ctxt,
                                             const xmlChar *name,
                                             const xmlChar *ns_uri);

Search in the Function array of the context for the given function.

ctxt : 
name : 
ns_uri : 
Returns : 


xmlXPathRegisteredFuncsCleanup ()

void        xmlXPathRegisteredFuncsCleanup  (xmlXPathContextPtr ctxt);

Cleanup the XPath context data associated to registered functions

ctxt : 


xmlXPathVariableLookup ()

xmlXPathObjectPtr xmlXPathVariableLookup    (xmlXPathContextPtr ctxt,
                                             const xmlChar *name);

Search in the Variable array of the context for the given variable value.

ctxt : 
name : 
Returns : 


xmlXPathVariableLookupNS ()

xmlXPathObjectPtr xmlXPathVariableLookupNS  (xmlXPathContextPtr ctxt,
                                             const xmlChar *name,
                                             const xmlChar *ns_uri);

Search in the Variable array of the context for the given variable value.

ctxt : 
name : 
ns_uri : 
Returns : 


xmlXPathRegisteredVariablesCleanup ()

void        xmlXPathRegisteredVariablesCleanup
                                            (xmlXPathContextPtr ctxt);

Cleanup the XPath context data associated to registered variables

ctxt : 


xmlXPathNewParserContext ()

xmlXPathParserContextPtr xmlXPathNewParserContext
                                            (const xmlChar *str,
                                             xmlXPathContextPtr ctxt);

Create a new xmlXPathParserContext

N_ bqZH#5l@Fiu6pP $ b1ưz_J P5首Vl+PbwMYx5t\`\&\)y35neX{m.ج ,0LȒ/sR k$[E71۟NAz;JT*DZ10s+ $˜hP>̻{ eWѱÂ=qsf!{ ,j,/65Uo՞#CGjDO`bE  dB^vJ; 3RJͻi !'BWy5u҃I5+ib}ouH 2lAߏqEW$<~~4躜2yxx{PM[ :;Qq9z==d@SpgC@mA0pqF0@sYf# |&BP=l&LaȆOq15nrP go{;6a%(V|_u.ѯdW!=a0Rn㍑7ahYk{ u$S-N0$'[BzMѭ,tVG B,7m0@#Q =OP>fudd11ȔER:wD—D踊>x:ӥjd W>f =z~crEdKLR?@cOP~cCL)\`k oP:'MÐcϧ85%ngG0"ÎՉmH 5y{-6uIG/u>/g$6@"0fV;}<:Nw8>qTU,ԋR| ӵU64m-Y JügNVw /-hf@WT=TYF,i KUzݪ!HL `r1PybֽW{p,PT:3~&^W7ˬK-|+%_yc1nt@ I O1X (]AΥ'G.Oú*M1zVaurAa<8{ ;UU9LX7^OM_vb*Kei29>m зArA^@8жN&otUHV2b( kGg&"'9L!-7޸+3)BO5XpqsVY{t'eѽϸrTv7>b: q%&.Y۱V-atA.'-G~-iwsoI ;SAT[jz7), TF f?1#rj4,Mvߏ*c۾CQ]nϯVۦqw&Q$p>㧅H-&^^X.vSL1^XxS}(eeA0ٯuPOqwsK`-0p񺅠=oz,LZD)#*.I|mcS9 VoG xʪtgi;rCICC̷Iz2Н#)"SLgc V6kJ1XB6)NQntb}pKϕ8B%TV08wpB=)K" bKoόswaD7(U3 z{gm~"s F{i CbtBz <tsw('+E ]ԫPa qo;~es}0UObv^2J"G]H3k2&ry /t+H`P!nkP=g@o#/zٟI/W̎ Y9w(Ub^-O[ C8I{99ĴL2T$R&[ ~ˬ1z%@ O͞LsR5~ѝŦ47i =Zzd@THD:)^a+;:t^U _,r:Ղ9bJ631D:{٧FBЙHQOc!3rD3($7s(˝OWBR`#D>7!;>#q2WɣMĸlC]@+EM'M2|o~PhnlEx;;Q+ DψV1ŐۻQw .`xEK,#(,^TkMȃ=y&x6!YFa:) n ‘Iu,x uxТygk,ː?^E2Ny+5sWGtw[ x7XuTf{=yGKA{ uKepCZxЪ\V+!F60MOO jwګ7|U MO*g)H~(rsHMzgOq$T*ir=tE;t}xGC?ͭi!3f]g-Ẃ\\ Yc"-a/1rޟVCg \ɦ3l혨^|'(VNKRr&[h\)ɧ€*>pJ<_꼈@8y9W*)) U寥&`[𯫺ÂUnN\rHf&sp '0P)N7sp}#`]U/f`M0n9F$ f+2/$Kqy۳p@W~F_áuAȖ] #a?;P2k&ńեhBe I( {DT` 2o3Mpt[ dTn # 3E 5|Tdj \N /tM!SGb'Z06svS1"lV)yHLL,Mk~e͂ܲxѾ(N<'ɵ5uDr([:X_`rdfEplpAx[ىBf,T}.E{YB4C"`*79pi1\GHiOP7uLm׍|%*[U~uEx`` -2v}~#9Õ6~8jv9GjJZcn" `qk7 YoTrxrC$(~ U][OQ J:1fIj Zm.^qkzTQ5MԤ\9¹@h, , MQe0員|jY\xGE$ApD!ݳD$YdnA܀ʤ*qǍy ܏Д.73YDXP^J3_;QċVQUB@z6fN(u/yeHpגptFcԴSնː8#Z݃=|p W/"/ZbW)\tRf;:bod.BB&쓶}R,y#"ȦW ]g#w<͟%:_3P|%yW.+aJ'K%A)1HE$AEBvxv"UHrE Kapj@n6ITc%fg%R]˝ǔ0; 5ujb6WǓo)Q)ܐ8iK#fLг')]@FHҸvj$evʿA%Q2}3+(CNBnD*F~) !7 #(iƂF"[!O:_$ zAQ]/"kH6i AMe"o#]L hq^R]z{$(Wpʤ [V"B'p chf=05a|pJ6g@z{NZXS"QXj{Hx߹]%PS^Ja^ &1P%ήϰ72 LHHi8l> Z>[a+Fw1T~E?Kn ,so?['kx,]<ʀDp_u^YMDoFeלZz#”a× IG)@r_u ii~5a߁b;wi`69s qD#aFȃz{Dc땝FE$ G>uv$K}_BS>Z 7 L=v4 9W!3F.. mdh\$Iq&4 <-Yztb7n]HWG#DɁ"ȶײv9+%BE#]֠V_jvA{g 7gkvPC`;=cTPÎ=/'t Kz?ފ[ 4 ,Gfy`U77<ޭRbD㙔PH2[ ('5ydRV'YO]C5>=A92 9Ί맹I:3eoT8O ќs#ƐǹNĥ'kwⓤgҕxr@F_<=gr>̈5]`ONKg V0 P9{@7CPi:;^0T3$sVzI[մʂ'|i3 `4qIŒ!9&:%n%D0 3)}m(v>pIp:߁+MK/.iצ1"dGWM21&9k($!|IU߶ XT+W})ǶxqVw!FGp '`Xu᭲6ƨu:{o2?;t)cf&5תq%WZݝ &(B}¹ML;ۨhhϗLCr&gdG}[u3$j"" 5?:?f!TMS;=U X ,}vX"s~&h-z8&1MS:&O۟2&T H.(ggHzRXEk B溫1qP(`1up3Ћ)co׸{N!giQM!6kj>'::^X%-GQ"D+YƜ))/6VSȢd i2VOv& Qwu^q9$pVow*<&wLiEdSS =gtS9<{zeIb@Wx_5O[ӫ\yHB=bQ- IYoY^&/OfNVĂ,i=Kt)%ŔKg׵U{S-4JBO1'u`:4@ H!]ezx*7Yu߿Tߜ:?'ʼn3g#z*Ժ勉4hZXě*`c/ x;2)b>F7MMn2 wX6>2UT#lX]S4ӂHchߖ)`̵K1Z '|gj zdTY׈|+$ϽR|&h#ņ2Xs`ص=S/xШi3?wfO* W΢U ᛶKv_R!7ӢP\ #Et\*I3HAk%%ddaz4vFzIVEnvynmy9OI(\\/5!60&/?xhJ#|q0SwD^lV$RHe]ldeZHdDxiʆ"楦M׸0C@toj;fhR ӔЫB-M6 3b}xX$a].xlcRn슴g˰"<4+E3 *>te'C; b1zMXϘL+Z{HɇûP:"̎8|~9%̓ުi:7&F"R,/ :c#0}s$>ԡ"F7O1vFdEpH* h ?'ָ{joS b zz~+ Mq\XI0rgJbJ(g-j-"hZ5 9~vuHU&[G|MiP [odI*(1)ʖUKO,Tkb#:/ vSh9s?'ݨq=1:/-i'2gt E)R!@`Y͚>JT`|ա'@[3{BFwO \D;ܼVZ&m^; 9v룁* ' ^*7JC*,)c-3!6Ϫ`~B-K8i5ɔ~sw򱾾vѯ`$6v>WSu0u骸ii>"}LJG-rQ-GOO&G>vXN1s4$ֹ_!T͐D5 |]Q8sa=oqf4J+X̑,PM;L@y&x*eRxYepMq\^]mꜨ"Ep,C_#KIt4T^n :,dC[Bް4|>$@bwA)%\"Wo$-sWAp%Y# \x#|L䙉ig@+˪;f{Mr \x`Z#h>57%xs 17h|,=<A!Xu!'EBBu;+9C2w ͛mxMC;Ȳ,7v? ]Həc9BhSI.$B.ԳqOoK+fO!(3/,AiAhyy%b] K É|C22}D6~5-WK(uJy]'6qyUPBE$ K&jw**grܠZ?8 c!ʷe)ݺ!|*r)rg)GST oJ;9JC~Kr vJJz loUnLkSk`j8Su%OVӋ9@Bɔl8T",PxxP7?LQڢ,"ԂЂ,<l&Hu) 1E0EH1,ǓDAktJ{UTϤ"l^%I\&mVZ2R"۱l4!d kN hB˹7N_3zJ-p܀Kk:|:*Wiπta IP780: kڧ?/@ ͏ԈU:&,dVjՕ1Yŗbc2 +-~^- ]BA}soi~8aL6g?ZBN[kk#y&U2nUle.X$H 6dj&CHOMvY>7a[lΌ#3}?^FAmL9TQv"WS  V^b\ 5˲")9 HWԴԱ.!dK'Fe|Sйc|zo* oJ#qK+;삕R \ vDLa9_RD' ># B~Q5qw3;7pES)zBEx9'/?ܶNer[lX8bM&n$f~D;^nmJ?ቲz&4$Vuap ZIj!\a&]fj$Is @MvO#WVxպ PWE"R 05So%0sq8_p%~KvA|v\#o)Q+ Dq}.V5ǓB*VCxP Sac2\:lg3{O\@EdqX#ժ-HT3Hu\qP$pv)ICut,t1`q$Kg+tΤNm< / ]hV1Gv cϡFoқ;a%܎ra~>|2­\'Y)fEwi{ތ;=) ۥ&WQJ)ѿx7^-D4t4zKĝfr8 rOH+Q,"`6AhI]u it9bbZ݃ZB\gM.:4MUh às1Us9o=zc< ﲇ.* C3üiX݉>)Ԏ(V b!֩<=~j VܵAJp2~iґ#b&ؓd`?wR*Tep3Lw CEuj;{Jj/[$ŸK̖hʗ'{Y2x݅o Lly6fuM]*m.|&A;ޘt J/,XXH7t#UUc_[m!קEBqAv숀SwEyaaSq!$HA8e8DNI07L"?MVq||:RzA/;ȁWP@U5 -]$cg K`O=x/8z5ѯ!#XZRQG}<  D|+e*NZcn /4G7Z?JL#a{A>5=d>3ó+ݯg NG;/7fRUZ zNꎲY\N3zq?@Nq^w}0S6 ib0!yX&tn8ǻiTHcӊMRXCiϠXٍc^M]glSt1zq3\~Z.&:5`Tka@[?EXc$("|XyO`{еɈ>juҏƿd]}{f8rB9!SddD3 @$,\P}|om_TH~Q:eq CG:{-k//d[o=W3;EssNLU.: [~T.v) "j57UR6,#Both -m| ;{>B}O CN|smSUY$^y)CS ڀk?WS4U+Gi35[,eܽY>LIp:{N2߾Ctf_ZI\f_²I̭";}O8$h@:].|PH$=:KN|°A"gOڤt -<yUo:rKvkNe* nzٲDlz&jUVϸv[WUZ*#l~n*@EY>À*ӳ܍~=g?:ŸvItGj%53량,y9hq%_ ʮ*EgIєR$z`E@9ch8#^L[@$5ZA#K"HM>Wֲs&#ĄQo#뒀Ūʢ%ͭH%m\B#RI!K2WĘ*h\4mѺtKP]|M2M wU-;0Hk64gvey̼qGbbi<7}IGpVZ"y@ݬ3V(dN-o_h h3f /$֧ = !8GOn>X/C)- A&5 :R0 5ݐYA j0}E>E'HpEʀ&߾fPh\Ǖh.:"ٍ0=Oٗ _ƒ)iE/5Χ m,}O LB(Ge̦prLnXK9X^]ɒIՊSX!WrVPMZTk\{ >i} 6}5RUq(D  x6 ʝ\c7tVhOa܆pq6oMdaTb9f"79()ir]է=ݨ˔\8'+ !ޕtTWy9)KЮ-$r|U@5R:؉p2Ăn&=U|UFcX 5m j̇CbNQGbZiՙkSZi$p͍ٞTV70p #JvA&^( A-Z(*׮ҵmV{/QiX"!V6IAEYw/GmRJNE*fz'@5D)+i;:hfKCp(MCo7xj_:SnM{N 7S =`2ُeJ& ^R:͢,[f ̓=k4+Q`MRH_r3!萄[Tv/W")/NNS5Z'_ux~~BX[d0yK*[`vE퀎 {oy \E/4 t"Q #>hz󦕋J$D.] .OjVĤ_9 zn-Dw6?.V #MPF͋J E6 *4^ 4VO}ԇ #RgSū+: d?7 $ZPo& ~K"eyQ(ʉVݛ˵ii!N|J83`r?L J<4FU4nT9līFOȲz  #x#޿`2t{[`Fb7o )㋷|}$k#<7x di3@~XV,U9LfGG LqcM)>#3aЌ@ ɇ-[TT dfzx^jdw [XV[GS6VzK}<1R۳_2[:AlIp"W%6+Fٵn{`%R濔}.0f_ػ =ȺwBbDl ^짮0]ڬM,!ݤYW6T,A"%8v,Am<t+=wQG*@*Bݨ'@ѿwOOOwnzIrh+sQ)#1Vͣ!Rk6TkW^4rRףI|Cwx|y qQax]\GrΦp=R'4}#GJ䓙;X"u&NI۸T62- =|%⇿#a;WUsB+t}' =sn_0.)Gx쮉=W5SpNFwhJmpZ;D%zH<#gۑ:N~c\\oAYn)w.W nGWS5p2ܱu4@}M@-R:OQjo?w8I0zle=Ztd̫~\J.ANQ _l=)Y915hQam4zp&cfQ7i˳p.n?y>:Z7Mwc!X:Uè3am^GT2=n6vquyǜiɐj&'$JtNL쌳% ✩hV‰T8PIl I޴^sM8/7хȴd_%5Ɩ@`iHM%P p4k ·%?BX?u}̦|:Wެ4NJ<,,Ž.bdZNq+0uZPP0G, r03Cw_UX3;tXfD0̿8J%Xh"nzeZ5J +M[h1 Gd$}z]riW,CwkIMK (Ma"+QJ,mI [x1ml D-Z~bqufyQBa}$1o3޿4Gv'݌ Г,flؿ3KjVw8ǟhKMUI'`g 1 @.אF MN gEDAV[vHcm_8j14Hu"Yɚ58e~Yn%v/׵;V,ٶDS F!*y({[z۩~81 vEˠ>WJU9&gt%^pirTۼ83T&gҡϏ3@{ÆPرz&!\d-Wmu@[wuy[{i .*+ i^؝'*w ^$r(׎Lazڌrv֥M=VuKZ]QߪiH|d;I"Jį Ƃ3.}yhRo|%nZaeQh`$:!5HX#ٖ M4V=4|v1 cuG\N h/5 *:ĢZ$o] $[]ɥ+v֨RZtgף#(d2h :C#c0 >5`xݿE8sٵ B.XbeA83-X+6Cd<:,t6 y{F oeCyrqs+?fǥ)**йau֘eoK'&t h]7 Ӫ~O|P:rJGH|Y]ozI-yݲFT܍&cډ[2fFX׆5=~\UART[IH7N~\^EކhaēQz3:C[?I>MȱFMD4o?>joDO:.hFTh=¼!H ⴉǡjN!gCL,!rVyHкcEoOACS-#VF\$jD[]|'C̩`Y˚_^PVZ6pxA#NYU_+D\Sh0+ciN<\1FdUyFG/8WdkRPFt28%&> !Bѻ>8b]w: q#bbW$4-p٭+}]oS;p=˽]F*=w4-p#δY;a6;W~Nܿa{GȱSze3ǻP=\\8INJ!f(XQ1LbSFt= ~p$| -j{_e!A}#/(b)z\r+/\ũվI:/MRdJi}dVq۫a=Yq\)Tit@ecm\O!U䨑, -[yV@w\NAdYVq_9{{<-Ys\AcDU^!:O,c:8|gg1Qyr8gJV48;Ĕ|~s 2c(qnD ޤ Hb6Z S{yU$A-.Tb#I2fzG3@oadf"k}(PAƅ|͕) F[r"n8e:3n_wʆiAq]4FVTK:5yKHTx,Auu_ v0a4r0X%fS<xtoW*M畲e eR*։6k~R4,(ZD[va 0K"s954k~hXS?&}ʝGA{+/Gk!K F0L^J Z)w~8vСGLm74WG=Uv9` 'C9 cB7w0ޥ[Kd#=n ]PTctЗTI7UwԺ_gTt V 1U~b._AfnaOB1۳U35@t#m׭ؒ✘]WP{Rol (L#fM)'!7l=׺t_ 9W)+l㍧)\λ3q >l+IxCbn)_(Q>KZ|5G9߷Xitb6+==_8^68,R1291j w>5"zgU@H:~+C!LV)x|JEDGoaz˚ݯU]|zoRJVDXָ'RQ2ae^_jv i3JtI~߹A. 7gDt6WR1[zy1Aт'gj=jσHm*& D4JJl Z-,+Ɓa8n8 Β#V)Y]6!DֳhEnU4G7 2 I8,{@Kfб_ C9qjێ SL4[u1˵6I"쁟sIqAnޭRhuOeL*ENtՀ^7i5'pOy ޠ|sy a{bPwQb3O>z{tyk T|R*FC"~?=10 xX3kK-*l9x,g^%sƴ~" VwVs+Oj;jE!颣HAyPT_|W?ahA:ɵh>¾5b0 7FD^QVvPs81p-_/i3q+]i'sl/3H#J j0߁^*0y,Y %B=&B`*jHO)6g+ċ_ϟ$V%D _+;7;hBðvк(Nt?xjwĂ ?o{: 9)/,=tBcxv[y~)Fj+ bi[;e8Yg~q(KSX' !C{Ķvsɥ THyHg5 BO }7Ɔz ٬k#y@.)j@U Z^fmF&Y8tj†_[uϵO}Qs)(QM W@ 甅 RKa혝R(;|UQnIV}`k@*IŀzeTr[B#[&0bL^g;zm#9o%Q"L Vx+LDOQP'4 hY% B0>:T8{!(#A' K(9b/;,A wKsY#xSclq=n~d{e`%*E+f`@O(+./SZ\ENV. Nsq:f:oR@uMc$`s8 gS 4FmJnC;F9wrΧ;W-v$q%g.䓄 81T0gJqLm9|hYm|\ _^ iJsvXuApcfk{A ]"y:XW OsXM QH#Ek0w֠bvF .W]bt(ƝnEϛ\ĢERM4Fg;P0sfۑQī±ӌodo 0"2SJj\&)D;5C+y0?-_^NCFQ?xۦe1: ]?K?˗od%Ot єr1r6M֣Ţ7}Hl$1xZAH.'Jĩ _c)~@ p<FG{)!X*@8H7$jfI"."g(7^yw[XHLS}X@yx7NTD3SE<@%'h:ɏ6NΌ2q'2002"y IS/a,;Y^/9 V(CRz Z'YKR.#:A؆c".sG0}u ࡫]Uرy-ph"u Wƻry2KL.q30=8G38,-c)ϱCçcAu.vYVc 5֒wɣG&8W>,] _w،|>bӿ3reT}"aF)Z*3W[V|_8}vBփYr 6TkR4NJ7bK55A qQIQol1~Y{C.F+%IV@bԚA9*j@S-qV~+.Z.):D=?A@ ('MOk,k-Yb6߷ z=_apFFe7u(6."F9)En Y<𙆰P2k,ᠦn}ZBdPڃݿ+OMUtۃW<:ڀ.Ɵ{֒u3'βV]+V;̙:c#]:LA 53 ~[q"ezֆy-(ɟڛaAM zKoְ`4!;^Eَ+j;BκXBoEw@+W6P zT\?yH#QC7lgw%BB oгjD5J08h=y zɮ Ɂn@!GD2OGz>ߖ1Š9+9>kDh^=*]dW[hzZ,@ f9k-EPe>H#,qs.C,lPl:H>[Dz":WjJ3 YTF.q#dX+.HbIA= T%Rj"ij|jc=a#[[%N­?Kxɯ~D ߑTzfA^sÏN (.*2q >Ajx&>XvrKH/k_ԏV*]Aiv,8@f PaP'}&u'/E[eȿdXnAJR=c,N%HϚyoE$1/ueϥ0 "Ƕ<#4 &dI(<,Wڤ3a2O0ov &NVyi8TD 5;Ht=,Y|iNөw)?((1s `[}zXoS@y]mx;ЁNv3(*ZNaICiARbInAxg9+7r_JӃNx(kۢ8U?f8C3z sZ ԛ #qS T'b*G|(\<~d),)%,{gJtUx'[16SƗ}]%Ʀӧķ91toj㨧ic)ft r(XsPsսIԓҕ0Ffg6teQ:JyNrTA<|P&sf5x}GM@SR=h$EmUADu4)ڣYBds91? 62 `՟tqgoOrL̙\IndN5euJN~P7`XE * <꧶ χ1g@ \ȗ ϹU>ԣ_1IT ҟL)=0-a̹\4vw,4~$)fda~Ű0ŝ e5B(.6UxmDԠ" ;iPbg1&^^f s*rrYoG9q+0^[89zٰ\=O!$+&$RNem@dM$HuɘQ{栟D-+pl&-xLtc1A@iz ;xjO##^Ǔ'/+l |&J cΙj|堋߼J١$;kx{e={jkj'#cQxQP<@"yb  M=!p!A ڬJ UKfvQ@^EGI -( cHg2'!)%ې[UXzuD2j{' }CAVROkN ]c֋HⲮ\`$?BUim}R=-EߤZB a`ozzlk>ŇhBˆrxƐ9$c&SyDT3b>=8֧9Z}u=^ﷵf1f.L2 ,Vj4/ kMRat|{8=s2G {qV 3Hꏩ` IofcinðT&r;lWŲ &U5cP(8^!]g,CXE-\r+䣷jt+s 5BHɹoR8PXN8@ QQ$](aIɲ R\=VoDҩjLgbxSC.0) ޑ/jڕNj#a .9dϐOCF(1C * /`l Sm}J3k-%˞8S[%D]ؗ⍪M|%Sc}B# UԪКV\@LhF5QerI{#!pz~, ; %Ru{^ZKKI *-W&&(ceujL{rjmJ)f|D0{@jZQyOe""Hoa;gW# $[6Oj x4K]LuhE~]-~r+r_$w(OVզJQ?6-D{ԋai yR4z^}j5,6i#\j՛kPkp9µ߳]`}<ӟ}9 C޻+z.vLCR8y D&Kժ/ A=ʂ4%)ֳhUO#ҁk$2z*ﰱLz8.ɬ%/Yasa:VBpF 'It'<` "0~W{mE8&_鉲ImXz\Ϣ2&`q2LGNQ c xͅ>wM SBh $AIP >^v(1XqY[Bl AƼFnAW5|,r)yliYa}^Vkc]#-Nᷪ|6GגcL+3M&d{~9JRLݶ$K(YiyLFp&7"rNpcpj%E?}=hn+F^nC=R;fvÔJIsJhu!辟5;\PŦ2/Č kq\(჻d!?_덿o&V ݒ-hl$WHy_ aJz^>;YVɴy#`w\vVvMN#/|VupR?D\Fp@ U7 :-k(hK٪(6MmNJq01!5 @P4b߫/gh/-:8L' lzIh-,R( hh*JO: 32]bS?Q0{G-;Xl|95*<_q̿]D{ g!Gr][h3ponyӗ8]Fiɦ ?ћOj<@^B-B>/p儽Y|gŲ"):$U^V@zlKELHiG2,`vjS3+]v_$,j ar`ca}=k5lU!= v0lL/G}j[6Yw`4Fց8U9?A ԴwHGk/ pq?@2)Q(xQ=%paHg%ISQ(PDŽ_ zb?V$ %w^6Dy[U+*-g vwֳ,%@Zh,6 VHJ$Z7˔2H#d#e[<e]WdFAH#FO^3ʄU~-p]OWCj^g>U)5gg1Vp! <}c>G/:~A ;?0n2_џpj20q^F=ccZ3^"l-Ϟ-\49}ğxJ GZZ->z-|4G-B?0nDNwk+8tYHAR7=sW7no}iҝ't55'@1;bI:8 <"2'ՑYV hM)no&5z)Q4evT[Ƨ`nJʦyھEe *J6; r>fBqk  ^_0w<1&KԆG?vEau ; OjUC5 vXT{1.(v"bR R"=unVb9u!W 9 IrHDCxk~ B}ԡ:,U׌zr"JӇqVY@i0d^3Mе F܄m?)6T!#!EQ'ʚ.1ALoX@ /2hG'1c.z\}̮餲IWh4OaVQ+WohD vfT b]aI.ee-H@?F?!htr/ 7aI#JNJJgwí_l$y\q:Yݪt=me)閥9j㉺y 'L#Y Y{ TP$}vipɲO *e(._%J3Q)?iU}<8rF/ ~aA="ap.)%n$QF5a&/ #H3T~5/$eߺv=R.eb06Pb ou+h-MrB7 sd |V8LYx3BG CY#P=a_ "v`q&zcr_*P\b" f"Z@Ma#&Gt~S$Ƽ6v1L4/EbFD? g_#@YtG/5O$5l/D2 Bg0.MQH572[|̌&`wJSMؒp]2E jvqCFYܫ'Ƽqă!Ii!t!EKأu :ˏ:x }`Hj~]d^gE`Ux;Z%z,h(4,cL@,GNإЅ.jLR'_.c@=OJ(t$B.iva?b o :LwTW55;XVT|iN:ͮrNQi ՂQ\Z0w_?Njso0?Ni^-d]T}Æ`C}iS T}yr%Y`-y 9D}|x>cWc|l8򌯾@ǣށUo7@|PW ߡm(!Lv\BG{%GV0 xu,#$PmY1y늊pmil\|r&C|(KN":+xEuR]T-v\i =hH}GnB'g&~K*~RdH.&<Ң ˘j)T%na_d<%P,֞>Ŵ9'$eyc|S=y*gRm|qrvϼ-i%.Ȟ\. 6q6CpV&t$@ F/Ӗ}QmCB8R@pZPP(2Ed~BɓlW>řEN{/wm@Kք6/BQI&z(9(ѩ?<Ґǜv_B$ $Myjv~Mr5,'緋>w`կR6RZDO6w,OaxV6^7tp[k ᔗ%| o^<13Az'kw6źCw,NI,Xܻ-fR$z|l&[ G {Q´EV?):HnƤSN~Ğ\{o684LYSZ2^.6܋[U՘&6'<ʛPY(0*6}T{q~ꉅ\fƬ,p< ̚c>[V^o 5vOXl|\^'sՍ5<ϡy>DFfIYB\Zr|eMU%iUAv>+{V9.>e\vwMM]3W.]a X+ K)#^ŵvLO5RE;?P5@&g )+<`q=/Zdnl(p!QK3{ge6|ƌm:(TEPZ>쒡NJ=z[ ͘sa`)wv;]9S?E]el] G{RNSk7|ʒZAͩ#)8QI.TgSZvwԨaT^YrF:[K`oZgF)ҩ2]Hڲ2M-/0wߍ0 ä3=t$5H4#ރ Hs[Gz_\B.XBEfƎ ;ljWT0/Ojy &2:"0/dHx8=KpIk&:*H΀=٘ݗ>2لOO&hiA!\l3]>%!dq:l1 e'k2*pl!%|RJs}*}vAƨnо/*DNKUKW3crKHۂk\@4hһP3i{y j G(PznڍMt{ڈOQvRXv3g 7.92&eً 88oͧ^+xhZ}2U,?4umZ,jD %u'( X +((DR2M~yyXB/4cb{_H%-- H5?g5!U뚰%LR󏬱@Ƨ.w77";]60r k2L*HrQc'tnS* 0bYhtP 0$JBm=幝&+ե U{}s!cAYFxzkv{"wJ91+rMmW3EdiOO@rAܭRq.:}9J$_y~g~:KGa=/1w;QFx$n!;%+g%`#3y:t\TNk~$150Y~R;oK+0V0 &Dpsx;]4Џ.Z*M6\ n}O [n8HKE)u3JBp& gYBq |s Kpo3/䯃V"5uA$Gnt%ݦST8+L5S`dm4 ˨B0#S߮8,sO$(,0jɒG{HbcJ3U 9|A&gE3K@=Kpbxql)@轝P͍ 4OGV&ptu W&LD3.-,UTkpvGCs~D;A%]cr &$V'AaLB~Eo =Kz0f;@w9hV9!R3*y|c^g(\ hf Ĭ 1/z OP,RwF ȦL |,ռ?Uڡnѯ<=5q+/x+`5鉇jS3YS%|9VxO}6ͪk!3s:LŸ@Gi.eG+ap [djNKg-n6|JIʰ/pS[2_+WuJ!TBxޚN/|ϻ;˃KP^^gܥ;f r|>ס=zPSDYWj+X+-H1iZV*o/ZM{0Ƹ8,gl[n4|T1vATOXOrEקZK ?ur!,u rV^T!%#kSn ?ʗE2ӬL 3 -I㿬#1Yb^z+@OC1/)͊tHO)9 {گ @%b=$oHxPcp-g=V!_r8<.~v5 D:aL Hͳ~:PIrk|<}-i4Fj="\Y i: :xO`Ɂ[}k)[N̾L;ҘT>i*)L⍁6k׫OSo@/#OFNv]8Dpf6:Wk'_ĵg'Qrl. -_tӸWk)J*Ioè1d^V k+;rMvySzU^"6Y\6 #EFF;\;j!ͨ.T k6kMٽQH"ޭ{K^I-}~![ٗ#9rkB]%ORq'$!eQ'Ml||RT EDlyGZ}`B jOl{LUS5-4&28Ҁ _K J֓PPL\Q6.tz}CuO23q5'Cb3?} W:s\M65ͧyN)_0f^hJKu˿Qcyƣ s4BM "Ekm!c]S $w\,G9d@KA~ѣ^Dšܶ:t\d=/p^Ayo eKj^@+t ;lnE@YSD-7pY ~Վ4vT}Gkei?u#ʲM6 3(q4a54pǖ8M>K#RtR^Jvo?WV?i챠d[p DMX-3 W͏cf.Zih7z*]oʜ}q/%=m͏Æ׊=hr b;{[[0:V"s݇Xdt,04:q ![Η+g0&>2۝|0Nŏ+߶mUO<.ʻvwX8lY̚א$჏v3'.~-n2`!dѡ~ K͂c$,5R-L Cʽܩ>3I;$;G16%qU 6`ԟ+^o/GI׫{jkʹDԪ>o51o>>TvVCŒ{h'Pi K0q2F-J"&giv!4ܿSlByPyGf'+䣟L0P5Y-'arUC9էXL*q1F4$o5HkhW;攈!z'VߥJB b~ sutS&h /xUHðzvA/=SVdv[Yl0$N0wq[}㱉Ipp";4"+5׆i8bЪpyMwqI)+eÄVoeyDly;\A.?eo1pX:(GF$r'5@:ܕQ??B@d*E-QFB`Wy!cWsS.xi;6i㳮cxC47ANԙGV|r>s]QSa:e\n/?B#fb/XҕTkSX\E;́9v%2&P6ĶWB*8yޘN&cհHmUm&e6#oT38};jɱ6B'l>u8d vU1 ՄךK N[KUF ggX)RLYq! ڏq- MA\A7zS0P@9 ӹ`K=C.nol TE|U &l)]d3H/Z4]]k-ۨ z6cAW K]CqoV cdp|9iT19JM%Sq"-'Eؘif Wp7aĩR)촲![=? 1T$kĊfpN8!ksh[#von+to>_!9Sz< SlS=ye&82CJɬrGN+cBtܬA kFxjʂdٝRLӛB,y=_ #huѦ)`Dpxx?^QZ,?,^#'š D?1-Z DinH 0hk+k;Edz3$>,tAI;}}I5UIZ^* 29ۉ_,L!~>@5x='BG).-K2/ $&ಫa^<%?ۊ5ɤ8̕񈻡K~83=lYĔȫd"7[zkp_+ g!8s*u93ۊ˭x49E[D)rsO xaTBTPPr%8 7F/7n{6f9IzM5sQ&H")^'IGgZ6VيXTsu5`Η]J 2t=st~gL<  7^-%Nq"hxPوd!4!弇 "I SIRm I.n55BHQ ro@LtKItuu!T[&^癕˸+Qk` ڧfASCp"2&ZYT@NN_L\$l Um Kp./,µ +:T#tV׽:pu&a6]2%Z8`FAPC m;o\07:6"Qb<ы8c{=z[}$ii zܧ~Tw +6KjOg1JMOF!ui9*e)5n#%/_GWhʷC7}3h& ipĤL?5.Cc2}̈F>'`qA)b!'r[e7&.:3sD)H Ov4 u=bxxNURlO [˙E*%sbQA$Y 巪Rg֒=Cݔ#,Ba '`b4o%>8 <1 A+%/LKQZg:&ɁwQrw8@)#>85_.5pqޑ ,W-hyƟ-9m4⾫3S$Z2)R=~`msE\sό,8½+49#^ĈG$:U`DeE\jƦ&ܦv8*3DH1QH 3t8)BT\]펋&>mo-0^2uVزivFm6BI4622.4嵌r X1qBWD-[!^1j@5{<~F߮75+2uTԑ+Ca_֚ŝ&"de =Ec3ħECUx|]yPeun<͢w w‘ whC{S0ţ &?g_j1ؖ~!٫ psjyb1r٭Vgȉ1f_?:Htǁa#[pY?vlet4Y2C6EjE.PUDUPQ-Gg*ux&pl۵g]5JŸO|(&4Ŕ-g>"Svna2ia1Ù4V,Bgu\uƼl|̨_+p&ػe^Juu]cg[dJ2]X}ַvjP z')PvԨ>w@#j·l[Rs7mD;}:vtѨx?Py:^1?јy,PsMG} o!G-PBL}LO_W ʏXt)S:·[Nn≏zms:4?үm=I[)dJƼ׶fI9[U澅.LXY7v-fMp{ u/BV[/i)y=NXuWn Ml=RJ^ڛ9uyvM PKӢm427ry, H9^\܊!֒)*ZZ"r i4/G.c-ewYmT".Xg8{NF0J2^cm"5vw8b2gv]gscXWώBUzG &̋=(, PgHE-<} 8.0Y tIƯe{8g-u#d`m?VDm03>]X qN%*\Wy35J[@LÎ߫D'R!)C Hf+2ork4؄?'I ψAbcʄ,k5yHťoP"0o_nixg 7{_R-Բ?X6hȏ#30JSJe䵠L|n_88qo%o}((0ՍIVE5U.'eYbN(HoQ (6NhUAN˄ٚy0_uWha>6ɖSvId}cn?ef)AnChVx@Ńpg \^I.ro16HUiS&:y~atg*(겔:=W{} {_ƤZhg()ѧ#U)ďCkeeѼ@TkNI'ǭ^V$iVD(#~ٷ$@t#,MXc#W)\#DjT|ڠ/\O'6TI^˄>6*Gh+;>x-?_MzH9hz֫Uϕ*X* +F WG)* ER+ Wj1YfWҗbl8|.Ba e!Owa^)$LAnԕxrO9}#L疡CQ$4=R Y?v3[,b5L XY7g~tܯ?du.Nu)!`>}Dsv  ,, 2:~30y)H ,vAAcM:BОrxj)0(DvsZ)񮃠oN/ָ^;7`CRX[RudI.8%ϿvQ|1U6[on] ǷέMnx U$gnDnKrSL=L#p@ [(fG@ aw@N+nd D0|Q˾s/^;%)jtu8 CTݙr,^Y4<[Fd uK1Cv/ }X*MVPt)FoÅ^(I\&WMVد7Eo%0^Mf>#0&vr<7\.%\PLVMH#,_ӏq^>OʞHw0@bRVS@Ch &Le8mHųob}8=SĪAExǤVX-R$tiܟ鑌qWm79Xi WqFKoVY`SҳVqS"VRd(" k&PeѸɏ_(ʠ$PooYߑzH 6CUaS]bȈeQL(Ʒ/]UoRAW$-̋A'AQlA& +a8cij%ʪbommCj/]\($vdޏkjc3Skɮۛ[qRbʹn6l 6hoL^$+oتu1,v?{26FZǗík>4 ctgM,GW)^ME >}4kҋZ_;hf64֪lO Ep^d?Le ş}xB!ydV0O1fʨWc`~SЂTiF5սtH+yDHͯ^@m2J0ߗke\' viOxǮNw;Lɠx[Xyɗ+'`t\b-G",TT. 6$ӨGJaηZޥUJ0 f%3W5mʩ=3*m^|$ KsseЙ zJYQS%5ʅ|Zz,h1 XX{/js8'9[@ڮT˲C {%f(AT+-3IgCpt\NKшR< KE%"У`qXyS1hN:AWC`>(>2^vpVW32O3vB dm.0T )q*M}H:6^Ƞ?5Hۗce S&wUe!7ƜjKsКnաY<40+,`H`džqZ~SUT\| mx)Arǝ#0c[p"5\RБ$y^ jiTe/wݡ Y,~(EDn`u-:OtY[25 yhG buI?$Hi,0!A,1KL+ՏGf9 ۙgc@v?)+ȾNFsi7v]9"ޖc9Y**Y(vE>CлzYXAy& A3$CG"pX+>iP<'+ƇLBg~J:7mV (ѳ&"vd*%]U|Ƥ Bd@^O Sz'?&<<; a~4|Gp91_o$R3C8l2bc"|y,L(P*I-%y*mNm^!5"irT/R}.I2nnM GcNvHu+(^H(.M%>*yG,-_& wPMڔR1bI|L -268W+94vS8z v/O5LJBr᳴z<,!NDŮsD(DJEZP:w$V=hD52[XK1|@A2!F%ws-Y̷b׼B u;[K˘+yL0h4WfUb=51^ 3A@$R%D:Y-ۇatʛ2\xI4w(bjw(yBydw`q2|`=R; PRIBߓ arA֟P +BUOFCMp0^Ԍ.+ ~6>b!a#1/F|Sp~OIFfbPtHٌjm'Fq=*Z";t 4)hQFbƎmF;EәL.sOWt1I ցU Ğեz~ X|^Ֆk/`h9E]!o\_UX#,HmkJ[sWP _P!N @2?6lu=?e:.Ml>k*̔]%8=@A}_0~6 (3 I5js/V) ?DAr(%䔣b[hJzjvoV6M *w HcxsMJE{\< Ɨj^~Z3tn\كٺx͝3Y˕]th ̱&),en/=I_nO%s5Z9_7 dG `vI 7eȳUē+&f6.W_9ns#^S &BV(笤s7<uq\>]ǙKF `lA:$raTJ,$l-qi wf}<^| Yչ ~If?7A\;KB7>gL1@\ewP6wԫ>0yŪh{ o?|DwwʼnPYy%T Nޘ]=‹`Ǧ3NK .q:5{€,y{\ /p#XYK$#_^c=F4 ZQ^C8d#R1s x܎&!5e7ZE۱]9bq"ttKr12m$!~ճtb[*>\S t}Ʋ7ta[qζ7vP徯Hm- mxXHBPJ+&^kP1FXm#5=~=S.F0*Ujuq".h,(#50H||n.hʹ.(Ɗ V l+f9 [I5 I꣏;ݧ~@&h Z0寶)˖{t88Ϙ8Uڃ7jg jqm%.0H=ӌR  81oys2zf4k,;'aP  9t׫$aSAfEDe낟鮡UҲ; q%"(! ŏTƺNWF3>ZI]!uV|}_EΨi:g)#OBz$B|trN_ޙ}1_ߐu<\%ӆÎ6xtw_҅Z5͝DSXI8)Uங!4\ eR@c >IB"I rpwNBկVʼnR9E5rBl'ǼZ.ġ.M%=`=aIfT]Qɭ桱BwIm2l'Yx[9dA5Pg`;M.q:Zl1К Kqhm q#k.`pk=~]FY`8F+\ڲr{s>P@8+[nTU"@ϱUJYx_qѲj1Z;i}ن"i~oyɚ#V"lmޏd4|8j~` SNq%)kk;3 ܔwpCԠ'ζ܏oA+EQo0>D_!O5?18=߶0mC䓆*-0W_.*aEGƣVIa|Jjbmp3쳪j;3Γ(E t&'b_ĄN 㨢6] YPuh#?>fUT 7+0 w7'nvJ3xTarGAG؍%G3zc^/۷'0%M]R I)xvL5--uv?uIw>p5s˷<DuPdOKJAȧ+!:uY1B q]"V  $ {J&#/m`Gwg} ΃gEf,$?W=m ęj_Q30'%J{s8^}odp{5!]f7IyhMc9旨7`P=Ċr60*)/ Nb 1La)1KU' '~ı~rY5:1Fȿ";qI%UEj>ܬiE/SV& u !K%HK!UJ,}X$^C)o 慲.X'%6>ɖFZrLUxA iG,@o[|;#JNkN 9|tYJQ3s)ݲAf㴤 ns{cD,77',I}rȬ`rN^Ge$paӮ}▱16-5A z5 V ߏs.[,og1ٶ fj2Kʂ5Y\F<`\n]2exj^6DBDwm/UOϨ_*Zc|9؎XXQ MlR9@47EGv5W>e.*$hƩ{GojɈ˛!B :WzC~eDr*mwBŦ6gp$.B ~Nh?$ ڝ&6U)S&~:@ye.AgXi/O8œy RU]׎Nt"ڀfM՚'6Y,;%[F_ Eu131a޼C4z !L-IK]Gf(1|RS% z u?WAY^ruwx$reCpՒoֳkHmßȞ̓/>y ׈k,0%, 4xt+xJ`quxwiobk&S/G"p/Ѷaro FMBG)_M.S0C fe!1"+R hZ{xx^=aC_ 9}UKذw:{ Bi, ; 3jO8@ h=q3+UIfL}%a72Z+QRz{H|5'̤]L@|$O~qwQT7a.]AncI,1^uu(."ph%({CqNrd+5HdN? 'mFDz]J 8iʉma#lNCX]-w;` KtKN!;D}`זQ9ҎI:8Q[9!Ƙɛѭ,7EkF(7U4:ڪmB5*f>P!N6-Vn$x Z%ϢX (QM(8Dy~Uhb|GC;Jquyv^w˾hFk[f >˺F07nn&]}#FS!cqƋvEK7ff,K4s)1 VP[DXdZY{s&Ou*zAx4$ 5K\t&/v`TX@=ѭܚ2g{i֬CJ}tPlʬMÇH:]`>VGL9 N%JC;y'8 [Z/Ttfz]S7μ{Lz MHĵ2nѐvh/1CGI~LAHРu-??&߳4IƑ]Ugb_z!gE+C =6BwR`+ქzL]|Aђ~ق %[5q﹛ȋst+gl õw *+"rnÓiVͳ}ZB*Cx:W`\5>_4epR 03NU8 +2mN\ EOΟ"!ޙ@5xY̿y{jͳnkaX{~rǟ7!ke">m޿x,^-y£jׂ u``+G60K*V_A1]ppw$6IRft^sԟuC?@2$99*ݡ8N'o[cЩ멅,u.Aׯіk*Ru8{KLWmTL,uꕕo)w9b:Ft=9Pprsxoęly^ِG.6:[|֝mvj<JKM؛yM>`}޻ۚIfv !ڟs4Y u,Kp,@s .I fdĖJ})t?Ų{NӭI3Tn8Uemcl͡L5;2,\l 4-+^0jT*Puk{|4 XLND2|8G"پ=BS1 !gcn F8ĉEX1Qۼީdĸ { )O+^;[;j2䵩}kM@`{Rb_cymظ K=9H\[d/'#lr",a Ñ8~jn*Āc;Gssp=p0*[J ?DE.IB4CHWg3NlD6˻A b'kV'<{vv{^̠W{Ro(fNj(áTg?3fkU-'Bo&|QÚ>Y1<P~KMu9D'f%bU7jx[Ɠ\[ >Voq^ocMIMeOQk w3b>|`BƎ[N@  667꠽Bc@fxr" <1_:)Hͦ;qG'5IXؓ)g3F=Z^;X $%K :V%/-#DO>&ya !I^/CxC^o,JWa>{P8PI9l# y~92_x!՞ǹ؏.\c6ÒU+uok(@9I?q~uQ8Iǐ0A+S2zSxѶ 4 ӰD +GA\iO|ui„_X2ee˜;Nմ5fbx]9xk%~n aR{t+ޒV6]74F~TWFặyO6Z9Bc4ϬS[KQg!Y , lM?5gb+vʽ kg(|o {iu(搴$1Z^n o'%;5?,@ lPz!(;n(*˵Edn莑59 mlpeIˆ?pVB',C[;1 I%fƶYfBi&i,VRe/*eʱW_pz~ԧ*1,DUGlL(܁?&0T7ț@)hFnIՌ6OԀɯ'V׬5RjK# tPGz8U+lDhliEQy:M.8#Ns,]*L]1Sc*^]5FUW7UfNd?V:ɡ> 'i5d琟?dtʢbgr7k]zȶg:VZcRJXhڸ.5WWp$:=]Ywp#0$<n߇Bz=M S0ow[( `G=-&5blIiM/i1moF'-jE^,{v=<{M;s/3 6n[TjC<J;` λ_# v2a FQҶՍgw7X!9nK$xk8"rl+y4 tG޼jBݹn2jf&"|b9fRq*UgM*tSW۲ކwPQ]96&6{)Xyħ\rT:Ԋuc(ԕ3-2~I:&W`N4'LWD=cvc!Ǽ7ns8h9'31IEyX}l~E]Z_ w1ru+GuPp!w?^EtZ,צ2{݀֞4^n`˓ks  l ؠ #I6ApqEuY. c p2LmE2YQ<{ xCCrzcIE_E}#$M#etaoe*|(ɦ[}ūE(W&J3ʤ[_Exv^i{Vꃕr+OڙOްZPq v hw(v#_Yl1^ӕ𻓦7cƌ#SlZI:p,UX]H\k'#XTC}2 ڵLa; SN 9\+r>`JA6JR*~t@/q18#xKl|a(ºjmg7l?2MK7dk6Bۼy,/^~\y zhHE]N=P;U9:hu<7lmٳ(L7T$e9 6ΦؖS|gmy!X&OֶlNs׏08|/; R/H9!k{4UqP b6oSWh",Ny)XeQ[MءI4qq2N_-^A҇?bg:4,De02_6Bh8.е+P-k19RAHn9nW"0IdC<seڲL. Ƒley*N&p7Il8('Zت٪4K ~ jѫhh&Rk6 3L65o:Dީ6A;+KBڃݸ2tnxEqiT3.910hǡrԴ$Q.F8g:wdPds/!Fc% En}NhENζU`#NCfSRK'x^Qe4w^RQԖFc$e@yrpu (|Ke"(Ƶ.6@h%,Fat#.Klq!<7S8JRZ_L{m'8LMwP?-"TLS2ګVzYv&/C2tZ:K'C׀Xb\$ćI 7 NlAH( ^U w!uzEN\m LӦ_T'i_1HMagB)B5䙾Yt(ϥ<ۣ4\To! R]nŠf[W!g/_;RPoˆ(1dʻhJ6=ld 3@COnEQpe-*%w]jLJ.<_]X/k|0, 1YY#5 K<@`vwp췚Z?zw/T2UPi9*w0*&)#׶CPR;mלw@KL5J%d=@*ŷ19y*ߜl<_<,9;Y tW3(tB x0!!USm=W[c"* 1 ,EszmOMKd ^~H{US(2/:̅0eĪ;̳Yte'U3~^P9&0moj$J@aS3e d %5ѽ,d 2Bg8 =a&PEevږ—-2zܫ۪$Pvg`VgQp{>ap" J.qp> c,OuxнeNfz㳖(Ō/4X^  v^t'[*aȴL}̓?V%דd>|ƿ+ V9faѰ ]mb(jͺ#QtTFJ*E栛[R*"ދ<2/IϻXAG7JCdՉhĂ)R8)T33Oi (a8#lcpíjsDZk<|h>[%0%^f MGusN[-Mt#G76/L[}2UO,aUxpK|]Mpܟ֤ؒRU Rčbģ=4⾣)_D</ g۞i@Wv^| qegyap@9L_gR~? W' "?E'༛l.p06A]@jk*Y D|굣)$cJSQڃUǃKkE <5 [س6ƽSt;522Œw7C长31HUNB1`(Vk&V1e6cPn!hӌxފնO<*/[ p9'G'c7c8,=ݿrUxHn Eo !g"\νQ.PE{% N%Wl;VIטe i/X%&`6w1g?Q5\}+%VQi`1-?>~ A*H`@:GkW{56 ֕;l$6wڌ?Qyrk ݵ⋃u1k0yX)ك(@ J7w+fXק2D.7b y)4*LV7 ,Ciĭn+ O'!諜*z*! |"뒎'e,m0C ;y<։q 0)meʇUy|.S7`y8aj.ʿ܋A" 'ObM$mK+KT0*;J֎E95BEk(ї@~rgb왶 ȓPDw@xX(}3l"puń mwiL#8-*]>SfiP*U-hV$vlcjWՠA H)Zϒo:*# xa`W Kr%5~&f'?NFn 7nܠ|:{ T2Ixh)Ƅ2LK˝.}dhZ=ӦnM4,lӳ毂|Vrfݳ4¹ ; Mz"q\6cro :4ޑ dSyDgqMnZZgccojL ?ccU"pS"<W)/өAxFL@#"ɃEs=WY4#E͐P!)gk|R(_wc?K5ŃřUmQ}~E[,OͰ'! n/#oKGԪ&Y_;:W qs] DΓi &YPIv^R**Ѯk+q{}<ѯ d _Pb=ضi!@=+߿RogK|pi)' J mTYmbA"/ԗ.t jהy*36܀/~ThR2 oʒg B ~C2 <{Y+uK,'.utȨOhx!;~ig5"(ў?B14*Q90VJ;Lul.?s9N{`hC-Ziaa/9JW,0OIUų4ZXVj,C鞷m LOGv6E1aWzﰼ=]Q݇%Z3)|;{ʡ,ְ 38mt/d^$ i_Ĩ^ӧƙUZ O1(%

str : 
ctxt :
ctxt : 
nargs : 


xmlXPathIdFunction ()

void        xmlXPathIdFunction              (xmlXPathParserContextPtr ctxt,
                                             int nargs);

Implement the id() XPath function node-set id(object) The id function selects elements by their unique ID (see [5.2.1 Unique IDs]). When the argument to id is of type node-set, then the result is the union of the result of applying id to the string value of each of the nodes in the argument node-set. When the argument to id is of any other type, the argument is converted to a string as if by a call to the string function; the string is split into a whitespace-separated list of tokens (whitespace is any sequence of characters matching the production S); the result is a node-set containing the elements in the same document as the context node that have a unique ID equal to any of the tokens in the list.

ctxt : 
nargs : 


xmlXPathLocalNameFunction ()

void        xmlXPathLocalNameFunction       (xmlXPathParserContextPtr ctxt,
                                             int nargs);

Implement the local-name() XPath function string local-name(node-set?) The local-name function returns a string containing the local part of the name of the node in the argument node-set that is first in document order. If the node-set is empty or the first node has no name, an empty string is returned. If the argument is omitted it defaults to the context node.

ctxt : 
nargs : 


xmlXPathNamespaceURIFunction ()

void        xmlXPathNamespaceURIFunction    (xmlXPathParserContextPtr ctxt,
                                             int nargs);

Implement the namespace-uri() XPath function string namespace-uri(node-set?) The namespace-uri function returns a string containing the namespace URI of the expanded name of the node in the argument node-set that is first in document order. If the node-set is empty, the first node has no name, or the expanded name has no namespace URI, an empty string is returned. If the argument is omitted it defaults to the context node.

ctxt : 
nargs : 


xmlXPathStringFunction ()

void        xmlXPathStringFunction          (xmlXPathParserContextPtr ctxt,
                                             int nargs);

Implement the string() XPath function string string(object?) he string function converts an object to a string as follows: - A node-set is converted to a string by returning the value of the node in the node-set that is first in document order. If the node-set is empty, an empty string is returned. - A number is converted to a string as follows + NaN is converted to the string NaN + positive zero is converted to the string 0 + negative zero is converted to the string 0 + positive infinity is converted to the string Infinity + negative infinity is converted to the string -Infinity + if the number is an integer, the number is represented in decimal form as a Number with no decimal point and no leading zeros, preceded by a minus sign (-) if the number is negative + otherwise, the number is represented in decimal form as a Number including a decimal point with at least one digit before the decimal point and at least one digit after the decimal point, preceded by a minus sign (-) if the number is negative; there must be no leading zeros before the decimal point apart possibly from the one required digit immediately before the decimal point; beyond the one required digit after the decimal point there must be as many, but only as many, more digits as are needed to uniquely distinguish the number from all other IEEE 754 numeric values. - The boolean false value is converted to the string false. The boolean true value is converted to the string true.

If the argument is omitted, it defaults to a node-set with the context node as its only member.

ctxt : 
nargs : 


xmlXPathStringLengthFunction ()

void        xmlXPathStringLengthFunction    (xmlXPathParserContextPtr ctxt,
                                             int nargs);

Implement the string-length() XPath function number string-length(string?) The string-length returns the number of characters in the string (see [3.6 Strings]). If the argument is omitted, it defaults to the context node converted to a string, in other words the value of the context node.

ctxt : 
nargs : 


xmlXPathConcatFunction ()

void        xmlXPathConcatFunction          (xmlXPathParserContextPtr ctxt,
                                             int nargs);

Implement the concat() XPath function string concat(string, string, string*) The concat function returns the concatenation of its arguments.

ctxt : 
nargs : 


xmlXPathContainsFunction ()

void        xmlXPathContainsFunction        (xmlXPathParserContextPtr ctxt,
                                             int nargs);

Implement the contains() XPath function boolean contains(string, string) The contains function returns true if the first argument string contains the second argument string, and otherwise returns false.

ctxt : 
nargs : 


xmlXPathStartsWithFunction ()

void        xmlXPathStartsWithFunction      (xmlXPathParserContextPtr ctxt,
                                             int nargs);

Implement the starts-with() XPath function boolean starts-with(string, string) The starts-with function returns true if the first argument string starts with the second argument string, and otherwise returns false.

ctxt : 
nargs : 


xmlXPathSubstringFunction ()

void        xmlXPathSubstringFunction       (xmlXPathParserContextPtr ctxt,
                                             int nargs);

Implement the substring() XPath function string substring(string, number, number?) The substring function returns the substring of the first argument starting at the position specified in the second argument with length specified in the third argument. For example, substring("12345",2,3) returns "234". If the third argument is not specified, it returns the substring starting at the position specified in the second argument and continuing to the end of the string. For example, substring("12345",2) returns "2345". More precisely, each character in the string (see [3.6 Strings]) is considered to have a numeric position: the position of the first character is 1, the position of the second character is 2 and so on. The returned substring contains those characters for which the position of the character is greater than or equal to the second argument and, if the third argument is specified, less than the sum of the second and third arguments; the comparisons and addition used for the above follow the standard IEEE 754 rules. Thus: - substring("12345", 1.5, 2.6) returns "234" - substring("12345", 0, 3) returns "12" - substring("12345", 0 div 0, 3) returns "" - substring("12345", 1, 0 div 0) returns "" - substring("12345", -42, 1 div 0) returns "12345" - substring("12345", -1 div 0, 1 div 0) returns ""

ctxt : 
nargs : 


xmlXPathSubstringBeforeFunction ()

void        xmlXPathSubstringBeforeFunction (xmlXPathParserContextPtr ctxt,
                                             int nargs);

Implement the substring-before() XPath function string substring-before(string, string) The substring-before function returns the substring of the first argument string that precedes the first occurrence of the second argument string in the first argument string, or the empty string if the first argument string does not contain the second argument string. For example, substring-before("1999/04/01","/") returns 1999.

ctxt : 
nargs : 


xmlXPathSubstringAfterFunction ()

void        xmlXPathSubstringAfterFunction  (xmlXPathParserContextPtr ctxt,
                                             int nargs);

Implement the substring-after() XPath function string substring-after(string, string) The substring-after function returns the substring of the first argument string that follows the first occurrence of the second argument string in the first argument string, or the empty stringi if the first argument string does not contain the second argument string. For example, substring-after("1999/04/01","/") returns 04/01, and substring-after("1999/04/01","19") returns 99/04/01.

ctxt : 
nargs : 


xmlXPathNormalizeFunction ()

void        xmlXPathNormalizeFunction       (xmlXPathParserContextPtr ctxt,
                                             int nargs);

Implement the normalize-space() XPath function string normalize-space(string?) The normalize-space function returns the argument string with white space normalized by stripping leading and trailing whitespace and replacing sequences of whitespace characters by a single space. Whitespace characters are the same allowed by the S production in XML. If the argument is omitted, it defaults to the context node converted to a string, in other words the value of the context node.

ctxt : 
nargs : 


xmlXPathTranslateFunction ()

void        xmlXPathTranslateFunction       (xmlXPathParserContextPtr ctxt,
                                             int nargs);

Implement the translate() XPath function string translate(string, string, string) The translate function returns the first argument string with occurrences of characters in the second argument string replaced by the character at the corresponding position in the third argument string. For example, translate("bar","abc","ABC") returns the string BAr. If there is a character in the second argument string with no character at a corresponding position in the third argument string (because the second argument string is longer than the third argument string), then occurrences of that character in the first argument string are removed. For example, translate("--aaa--","abc-","ABC")

ctxt : 
nargs : 


xmlXPathNotFunction ()

void        xmlXPathNotFunction             (xmlXPathParserContextPtr ctxt,
                                             int nargs);

Implement the not() XPath function boolean not(boolean) The not function returns true if its argument is false, and false otherwise.

ctxt : 
nargs : 


xmlXPathTrueFunction ()

void        xmlXPathTrueFunction            (xmlXPathParserContextPtr ctxt,
                                             int nargs);

Implement the true() XPath function boolean true()

ctxt : 
nargs : 


xmlXPathFalseFunction ()

void        xmlXPathFalseFunction           (xmlXPathParserContextPtr ctxt,
                                             int nargs);

Implement the false() XPath function boolean false()

ctxt : 
nargs : 


xmlXPathLangFunction ()

void        xmlXPathLangFunction            (xmlXPathParserContextPtr ctxt,
                                             int nargs);

Implement the lang() XPath function boolean lang(string) The lang function returns true or false depending on whether the language of the context node as specified by xml:lang attributes is the same as or is a sublanguage of the language specified by the argument string. The language of the context node is determined by the value of the xml:lang attribute on the context node, or, if the context node has no xml:lang attribute, by the value of the xml:lang attribute on the nearest ancestor of the context node that has an xml:lang attribute. If there is no such attribute, then lang

ctxt : 
nargs : 


xmlXPathNumberFunction ()

void        xmlXPathNumberFunction          (xmlXPathParserContextPtr ctxt,
                                             int nargs);

Implement the number() XPath function number number(object?)

ctxt : 
nargs : 


xmlXPathSumFunction ()

void        xmlXPathSumFunction             (xmlXPathParserContextPtr ctxt,
                                             int nargs);

Implement the sum() XPath function number sum(node-set) The sum function returns the sum of the values of the nodes in the argument node-set.

ctxt : 
nargs : 


xmlXPathFloorFunction ()

void        xmlXPathFloorFunction           (xmlXPathParserContextPtr ctxt,
                                             int nargs);

Implement the floor() XPath function number floor(number) The floor function returns the largest (closest to positive infinity) number that is not greater than the argument and that is an integer.

ctxt : 
nargs : 


xmlXPathCeilingFunction ()

void        xmlXPathCeilingFunction         (xmlXPathParserContextPtr ctxt,
                                             int nargs);

Implement the ceiling() XPath function number ceiling(number) The ceiling function returns the smallest (closest to negative infinity) number that is not less than the argument and that is an integer.

ctxt : 
nargs : 


xmlXPathRoundFunction ()

void        xmlXPathRoundFunction           (xmlXPathParserContextPtr ctxt,
                                             int nargs);

Implement the round() XPath function number round(number) The round function returns the number that is closest to the argument and that is an integer. If there are two such numbers, then the one that is even is returned.

ctxt : 
nargs : 


xmlXPathBooleanFunction ()

void        xmlXPathBooleanFunction         (xmlXPathParserContextPtr ctxt,
                                             int nargs);

Implement the boolean() XPath function boolean boolean(object) he boolean function converts its argument to a boolean as follows: - a number is true if and only if it is neither positive or negative zero nor NaN - a node-set is true if and only if it is non-empty - a string is true if and only if its length is non-zero

ctxt : 
nargs : 


xmlXPathNodeSetFreeNs ()

void        xmlXPathNodeSetFreeNs           (xmlNsPtr ns);

Namespace node in libxml don't match the XPath semantic. In a node set the namespace nodes are duplicated and the next pointer is set to the parent node in the XPath semantic. Check if such a node need to be freed

ns :