ÿØÿà JFIF    ÿÛ „ ( %!1!%*+...983,7(-.- JSON/XS.pm000044400000266002152344706520006221 0ustar00package Cpanel::JSON::XS; our $VERSION = '4.39'; our $XS_VERSION = $VERSION; # $VERSION = eval $VERSION; =pod =head1 NAME Cpanel::JSON::XS - cPanel fork of JSON::XS, fast and correct serializing =head1 SYNOPSIS use Cpanel::JSON::XS; # exported functions, they croak on error # and expect/generate UTF-8 $utf8_encoded_json_text = encode_json $perl_hash_or_arrayref; $perl_hash_or_arrayref = decode_json $utf8_encoded_json_text; # OO-interface $coder = Cpanel::JSON::XS->new->ascii->pretty->allow_nonref; $pretty_printed_unencoded = $coder->encode ($perl_scalar); $perl_scalar = $coder->decode ($unicode_json_text); # Note that 5.6 misses most smart utf8 and encoding functionalities # of newer releases. # Note that L will automatically use Cpanel::JSON::XS # if available, at virtually no speed overhead either, so you should # be able to just: use JSON::MaybeXS; # and do the same things, except that you have a pure-perl fallback now. Note that this module will be replaced by a new JSON::Safe module soon, with the same API just guaranteed safe defaults. =head1 DESCRIPTION This module converts Perl data structures to JSON and vice versa. Its primary goal is to be I and its secondary goal is to be I. To reach the latter goal it was written in C. As this is the n-th-something JSON module on CPAN, what was the reason to write yet another JSON module? While it seems there are many JSON modules, none of them correctly handle all corner cases, and in most cases their maintainers are unresponsive, gone missing, or not listening to bug reports for other reasons. See below for the cPanel fork. See MAPPING, below, on how Cpanel::JSON::XS maps perl values to JSON values and vice versa. =head2 FEATURES =over 4 =item * correct Unicode handling This module knows how to handle Unicode with Perl version higher than 5.8.5, documents how and when it does so, and even documents what "correct" means. =item * round-trip integrity When you serialize a perl data structure using only data types supported by JSON and Perl, the deserialized data structure is identical on the Perl level. (e.g. the string "2.0" doesn't suddenly become "2" just because it looks like a number). There I minor exceptions to this, read the MAPPING section below to learn about those. =item * strict checking of JSON correctness There is no guessing, no generating of illegal JSON texts by default, and only JSON is accepted as input by default. the latter is a security feature. =item * fast Compared to other JSON modules and other serializers such as Storable, this module usually compares favourably in terms of speed, too. =item * simple to use This module has both a simple functional interface as well as an object oriented interface. =item * reasonably versatile output formats You can choose between the most compact guaranteed-single-line format possible (nice for simple line-based protocols), a pure-ASCII format (for when your transport is not 8-bit clean, still supports the whole Unicode range), or a pretty-printed format (for when you want to read that stuff). Or you can combine those features in whatever way you like. =back =head2 cPanel fork Since the original author MLEHMANN has no public bugtracker, this cPanel fork sits now on github. src repo: L original: L RT: L or L B - bare hashkeys are now checked for utf8. (GH #209) - stricter decode_json() as documented. non-refs are disallowed. safe by default. added a 2nd optional argument. decode() honors now allow_nonref. - fixed encode of numbers for dual-vars. Different string representations are preserved, but numbers with temporary strings which represent the same number are here treated as numbers, not strings. Cpanel::JSON::XS is a bit slower, but preserves numeric types better. - numbers ending with .0 stray numbers, are not converted to integers. [#63] dual-vars which are represented as number not integer (42+"bar" != 5.8.9) are now encoded as number (=> 42.0) because internally it's now a NOK type. However !!1 which is wrongly encoded in 5.8 as "1"/1.0 is still represented as integer. - different handling of inf/nan. Default now to null, optionally with stringify_infnan() to "inf"/"nan". [#28, #32] - added C extension, non-JSON and non JSON parsable, allows C<\xNN> and C<\NNN> sequences. - 5.6.2 support; sacrificing some utf8 features (assuming bytes all-over), no multi-byte unicode characters with 5.6. - interop for true/false overloading. JSON::XS, JSON::PP and Mojo::JSON representations for booleans are accepted and JSON::XS accepts Cpanel::JSON::XS booleans [#13, #37] Fixed overloading of booleans. Cpanel::JSON::XS::true stringifies again to "1", not "true", analog to all other JSON modules. - native boolean mapping of yes and no to true and false, as in YAML::XS. In perl C is yes, C is no. The JSON value true maps to 1, false maps to 0. [#39] - support arbitrary stringification with encode, with convert_blessed and allow_blessed. - ithread support. Cpanel::JSON::XS is thread-safe, JSON::XS not - is_bool can be called as method, JSON::XS::is_bool not. - performance optimizations for threaded Perls - relaxed mode, allowing many popular extensions - protect our magic object from corruption by wrong or missing external methods, like FREEZE/THAW or serialization with other methods. - additional fixes for: - #208 - no security-relevant out-of-bounds reading of module memory when decoding hash keys without ending ':' - [cpan #88061] AIX atof without USE_LONG_DOUBLE - #10 unshare_hek crash - #7, #29 avoid re-blessing where possible. It fails in JSON::XS for READONLY values, i.e. restricted hashes. - #41 overloading of booleans, use the object not the reference. - #62 -Dusequadmath conversion and no SEGV. - #72 parsing of values followed \0, like 1\0 does fail. - #72 parsing of illegal unicode or non-unicode characters. - #96 locale-insensitive numeric conversion. - #154 numeric conversion fixed since 5.22, using the same strtold as perl5. - #167 sort tied hashes with canonical. - #212 fix utf8 object stringification - public maintenance and bugtracker - use ppport.h, sanify XS.xs comment styles, harness C coding style - common::sense is optional. When available it is not used in the published production module, just during development and testing. - extended testsuite, passes all http://seriot.ch/projects/parsing_json.html tests. In fact it is the only know JSON decoder which does so, while also being the fastest. - support many more options and methods from JSON::PP: stringify_infnan, allow_unknown, allow_stringify, allow_barekey, encode_stringify, allow_bignum, allow_singlequote, dupkeys_as_arrayref, sort_by (partially), escape_slash, convert_blessed, ... optional decode_json(, allow_nonref) arg. relaxed implements allow_dupkeys. - support all 5 unicode L's: UTF-8, UTF-16LE, UTF-16BE, UTF-32LE, UTF-32BE, encoding internally to UTF-8. =cut our @ISA = qw(Exporter); our @EXPORT = qw(encode_json decode_json to_json from_json); sub to_json($@) { if ($] >= 5.008) { require Carp; Carp::croak ("Cpanel::JSON::XS::to_json has been renamed to encode_json,". " either downgrade to pre-2.0 versions of Cpanel::JSON::XS or". " rename the call"); } else { _to_json(@_); } } sub from_json($@) { if ($] >= 5.008) { require Carp; Carp::croak ("Cpanel::JSON::XS::from_json has been renamed to decode_json,". " either downgrade to pre-2.0 versions of Cpanel::JSON::XS or". " rename the call"); } else { _from_json(@_); } } use Exporter; use XSLoader; =head1 FUNCTIONAL INTERFACE The following convenience methods are provided by this module. They are exported by default: =over 4 =item $json_text = encode_json $perl_scalar, [json_type] Converts the given Perl data structure to a UTF-8 encoded, binary string (that is, the string contains octets only). Croaks on error. This function call is functionally identical to: $json_text = Cpanel::JSON::XS->new->utf8->encode ($perl_scalar, $json_type) Except being faster. For the type argument see L. =item $perl_scalar = decode_json $json_text [, $allow_nonref [, my $json_type ] ] The opposite of C: expects an UTF-8 (binary) string of an json reference and tries to parse that as an UTF-8 encoded JSON text, returning the resulting reference. Croaks on error. This function call is functionally identical to: $perl_scalar = Cpanel::JSON::XS->new->utf8->decode ($json_text, $json_type) except being faster. Note that older decode_json versions in Cpanel::JSON::XS older than 3.0116 and JSON::XS did not set allow_nonref but allowed them due to a bug in the decoder. If the new 2nd optional $allow_nonref argument is set and not false, the C option will be set and the function will act is described as in the relaxed RFC 7159 allowing all values such as objects, arrays, strings, numbers, "null", "true", and "false". See L below, why you don't want to do that. For the 3rd optional type argument see L. =item $is_boolean = Cpanel::JSON::XS::is_bool $scalar Returns true if the passed scalar represents either C or C, two constants that act like C<1> and C<0>, respectively and are used to represent JSON C and C values in Perl. (Also recognizes the booleans produced by L.) See MAPPING, below, for more information on how JSON values are mapped to Perl. =back =head1 DEPRECATED FUNCTIONS =over =item from_json from_json has been renamed to decode_json =item to_json to_json has been renamed to encode_json =back =head1 A FEW NOTES ON UNICODE AND PERL Since this often leads to confusion, here are a few very clear words on how Unicode works in Perl, modulo bugs. =over 4 =item 1. Perl strings can store characters with ordinal values > 255. This enables you to store Unicode characters as single characters in a Perl string - very natural. =item 2. Perl does I associate an encoding with your strings. ... until you force it to, e.g. when matching it against a regex, or printing the scalar to a file, in which case Perl either interprets your string as locale-encoded text, octets/binary, or as Unicode, depending on various settings. In no case is an encoding stored together with your data, it is I that decides encoding, not any magical meta data. =item 3. The internal utf-8 flag has no meaning with regards to the encoding of your string. =item 4. A "Unicode String" is simply a string where each character can be validly interpreted as a Unicode code point. If you have UTF-8 encoded data, it is no longer a Unicode string, but a Unicode string encoded in UTF-8, giving you a binary string. =item 5. A string containing "high" (> 255) character values is I a UTF-8 string. =item 6. Raw non-Unicode characters below U+10FFFF are allowed. The 66 Unicode noncharacters U+FDD0..U+FDEF, and U+*FFFE, U+*FFFF are allowed without warning, as JSON::PP does, see L. But illegal surrogate pairs fail to parse. =item 7. Raw non-Unicode characters above U+10FFFF are disallowed. Raw non-Unicode characters outside the valid unicode range fail to parse, because "A string is a sequence of zero or more Unicode characters" RFC 7159 section 1 and "JSON text SHALL be encoded in Unicode RFC 7159 section 8.1. We use now the UTF8_DISALLOW_SUPER flag when parsing unicode. =item 8. Lone surrogates or illegal surrogate pairs are disallowed. Since RFC 3629, U+D800 through U+DFFF are not legal Unicode values and their UTF-8 encodings must be treated as an invalid byte sequence. RFC 8259 section 8.2 admits the spec allows string values that contain bit sequences that cannot encode Unicode characters and that the behavior of software that receives such values is unpredictable. To avoid introducing non-Unicode strings into Perl we use the UTF8_DISALLOW_SURROGATE flag when parsing Unicode and verify escaped surrogates form valid pairs. =back I hope this helps :) =head1 OBJECT-ORIENTED INTERFACE The object oriented interface lets you configure your own encoding or decoding style, within the limits of supported formats. =over 4 =item $json = new Cpanel::JSON::XS Creates a new JSON object that can be used to de/encode JSON strings. All boolean flags described below are by default I. The mutators for flags all return the JSON object again and thus calls can be chained: my $json = Cpanel::JSON::XS->new->utf8->space_after->encode ({a => [1,2]}) => {"a": [1, 2]} =item $json = $json->ascii ([$enable]) =item $enabled = $json->get_ascii If C<$enable> is true (or missing), then the C method will not generate characters outside the code range C<0..127> (which is ASCII). Any Unicode characters outside that range will be escaped using either a single C<\uXXXX> (BMP characters) or a double C<\uHHHH\uLLLLL> escape sequence, as per RFC4627. The resulting encoded JSON text can be treated as a native Unicode string, an ascii-encoded, latin1-encoded or UTF-8 encoded string, or any other superset of ASCII. If C<$enable> is false, then the C method will not escape Unicode characters unless required by the JSON syntax or other flags. This results in a faster and more compact format. See also the section I later in this document. The main use for this flag is to produce JSON texts that can be transmitted over a 7-bit channel, as the encoded JSON texts will not contain any 8 bit characters. Cpanel::JSON::XS->new->ascii (1)->encode ([chr 0x10401]) => ["\ud801\udc01"] =item $json = $json->latin1 ([$enable]) =item $enabled = $json->get_latin1 If C<$enable> is true (or missing), then the C method will encode the resulting JSON text as latin1 (or ISO-8859-1), escaping any characters outside the code range C<0..255>. The resulting string can be treated as a latin1-encoded JSON text or a native Unicode string. The C method will not be affected in any way by this flag, as C by default expects Unicode, which is a strict superset of latin1. If C<$enable> is false, then the C method will not escape Unicode characters unless required by the JSON syntax or other flags. See also the section I later in this document. The main use for this flag is efficiently encoding binary data as JSON text, as most octets will not be escaped, resulting in a smaller encoded size. The disadvantage is that the resulting JSON text is encoded in latin1 (and must correctly be treated as such when storing and transferring), a rare encoding for JSON. It is therefore most useful when you want to store data structures known to contain binary data efficiently in files or databases, not when talking to other JSON encoders/decoders. Cpanel::JSON::XS->new->latin1->encode (["\x{89}\x{abc}"] => ["\x{89}\\u0abc"] # (perl syntax, U+abc escaped, U+89 not) =item $json = $json->binary ([$enable]) =item $enabled = $json = $json->get_binary If the C<$enable> argument is true (or missing), then the C method will not try to detect an UTF-8 encoding in any JSON string, it will strictly interpret it as byte sequence. The result might contain new C<\xNN> sequences, which is B. The C method forbids C<\uNNNN> sequences and accepts C<\xNN> and octal C<\NNN> sequences. There is also a special logic for perl 5.6 and utf8. 5.6 encodes any string to utf-8 automatically when seeing a codepoint >= C<0x80> and < C<0x100>. With the binary flag enabled decode the perl utf8 encoded string to the original byte encoding and encode this with C<\xNN> escapes. This will result to the same encodings as with newer perls. But note that binary multi-byte codepoints with 5.6 will result in C errors, unlike with newer perls. If C<$enable> is false, then the C method will smartly try to detect Unicode characters unless required by the JSON syntax or other flags and hex and octal sequences are forbidden. See also the section I later in this document. The main use for this flag is to avoid the smart unicode detection and possible double encoding. The disadvantage is that the resulting JSON text is encoded in new C<\xNN> and in latin1 characters and must correctly be treated as such when storing and transferring, a rare encoding for JSON. It will produce non-readable JSON strings in the browser. It is therefore most useful when you want to store data structures known to contain binary data efficiently in files or databases, not when talking to other JSON encoders/decoders. The binary decoding method can also be used when an encoder produced a non-JSON conformant hex or octal encoding C<\xNN> or C<\NNN>. Cpanel::JSON::XS->new->binary->encode (["\x{89}\x{abc}"]) 5.6: Error: malformed or illegal unicode character in binary string >=5.8: ['\x89\xe0\xaa\xbc'] Cpanel::JSON::XS->new->binary->encode (["\x{89}\x{bc}"]) => ["\x89\xbc"] Cpanel::JSON::XS->new->binary->decode (["\x89\ua001"]) Error: malformed or illegal unicode character in binary string Cpanel::JSON::XS->new->decode (["\x89"]) Error: illegal hex character in non-binary string =item $json = $json->utf8 ([$enable]) =item $enabled = $json->get_utf8 If C<$enable> is true (or missing), then the C method will encode the JSON result into UTF-8, as required by many protocols, while the C method expects to be handled an UTF-8-encoded string. Please note that UTF-8-encoded strings do not contain any characters outside the range C<0..255>, they are thus useful for bytewise/binary I/O. In future versions, enabling this option might enable autodetection of the UTF-16 and UTF-32 encoding families, as described in RFC4627. If C<$enable> is false, then the C method will return the JSON string as a (non-encoded) Unicode string, while C expects thus a Unicode string. Any decoding or encoding (e.g. to UTF-8 or UTF-16) needs to be done yourself, e.g. using the Encode module. See also the section I later in this document. Example, output UTF-16BE-encoded JSON: use Encode; $jsontext = encode "UTF-16BE", Cpanel::JSON::XS->new->encode ($object); Example, decode UTF-32LE-encoded JSON: use Encode; $object = Cpanel::JSON::XS->new->decode (decode "UTF-32LE", $jsontext); =item $json = $json->pretty ([$enable]) This enables (or disables) all of the C, C and C (and in the future possibly more) flags in one call to generate the most readable (or most compact) form possible. Example, pretty-print some simple structure: my $json = Cpanel::JSON::XS->new->pretty(1)->encode ({a => [1,2]}) => { "a" : [ 1, 2 ] } =item $json = $json->indent ([$enable]) =item $enabled = $json->get_indent If C<$enable> is true (or missing), then the C method will use a multiline format as output, putting every array member or object/hash key-value pair into its own line, indenting them properly. If C<$enable> is false, no newlines or indenting will be produced, and the resulting JSON text is guaranteed not to contain any C. This setting has no effect when decoding JSON texts. =item $json = $json->indent_length([$number_of_spaces]) =item $length = $json->get_indent_length() Set the indent length (default C<3>). This option is only useful when you also enable indent or pretty. The acceptable range is from 0 (no indentation) to 15 =item $json = $json->space_before ([$enable]) =item $enabled = $json->get_space_before If C<$enable> is true (or missing), then the C method will add an extra optional space before the C<:> separating keys from values in JSON objects. If C<$enable> is false, then the C method will not add any extra space at those places. This setting has no effect when decoding JSON texts. You will also most likely combine this setting with C. Example, space_before enabled, space_after and indent disabled: {"key" :"value"} =item $json = $json->space_after ([$enable]) =item $enabled = $json->get_space_after If C<$enable> is true (or missing), then the C method will add an extra optional space after the C<:> separating keys from values in JSON objects and extra whitespace after the C<,> separating key-value pairs and array members. If C<$enable> is false, then the C method will not add any extra space at those places. This setting has no effect when decoding JSON texts. Example, space_before and indent disabled, space_after enabled: {"key": "value"} =item $json = $json->relaxed ([$enable]) =item $enabled = $json->get_relaxed If C<$enable> is true (or missing), then C will accept some extensions to normal JSON syntax (see below). C will not be affected in anyway. I. I suggest only to use this option to parse application-specific files written by humans (configuration files, resource files etc.) If C<$enable> is false (the default), then C will only accept valid JSON texts. Currently accepted extensions are: =over 4 =item * list items can have an end-comma JSON I array elements and key-value pairs with commas. This can be annoying if you write JSON texts manually and want to be able to quickly append elements, so this extension accepts comma at the end of such items not just between them: [ 1, 2, <- this comma not normally allowed ] { "k1": "v1", "k2": "v2", <- this comma not normally allowed } =item * shell-style '#'-comments Whenever JSON allows whitespace, shell-style comments are additionally allowed. They are terminated by the first carriage-return or line-feed character, after which more white-space and comments are allowed. [ 1, # this comment not allowed in JSON # neither this one... ] =item * literal ASCII TAB characters in strings Literal ASCII TAB characters are now allowed in strings (and treated as C<\t>) in relaxed mode. Despite JSON mandates, that TAB character is substituted for "\t" sequence. [ "Hello\tWorld", "HelloWorld", # literal would not normally be allowed ] =item * allow_singlequote Single quotes are accepted instead of double quotes. See the L option. { "foo":'bar' } { 'foo':"bar" } { 'foo':'bar' } =item * allow_barekey Accept unquoted object keys instead of with mandatory double quotes. See the L option. { foo:"bar" } =item * allow_dupkeys Allow decoding of duplicate keys in hashes. By default duplicate keys are forbidden. See L: RFC 7159 section 4: "The names within an object should be unique." See the C option. =back =item $json = $json->canonical ([$enable]) =item $enabled = $json->get_canonical If C<$enable> is true (or missing), then the C method will output JSON objects by sorting their keys. This is adding a comparatively high overhead. If C<$enable> is false, then the C method will output key-value pairs in the order Perl stores them (which will likely change between runs of the same script, and can change even within the same run from 5.18 onwards). This option is useful if you want the same data structure to be encoded as the same JSON text (given the same overall settings). If it is disabled, the same hash might be encoded differently even if contains the same data, as key-value pairs have no inherent ordering in Perl. This setting has no effect when decoding JSON texts. This is now also done with tied hashes, contrary to L. But note that with most large tied hashes stored as tree it is advised to sort the iterator already and don't sort the hash output here. Most such iterators are already sorted, as such e.g. L with C. =item $json = $json->sort_by (undef, 0, 1 or a block) This currently only (un)sets the C option, and ignores custom sort blocks. This setting has no effect when decoding JSON texts. This setting has currently no effect on tied hashes. =item $json = $json->escape_slash ([$enable]) =item $enabled = $json->get_escape_slash According to the JSON Grammar, the I character (U+002F) C<"/"> need to be escaped. But by default strings are encoded without escaping slashes in all perl JSON encoders. If C<$enable> is true (or missing), then C will escape slashes, C<"\/">. This setting has no effect when decoding JSON texts. =item $json = $json->unblessed_bool ([$enable]) =item $enabled = $json->get_unblessed_bool $json = $json->unblessed_bool([$enable]) If C<$enable> is true (or missing), then C will return Perl non-object boolean variables (1 and 0 as numbers or "1" and "" as strings) for JSON booleans (C and C). If C<$enable> is false, then C will return C objects for JSON booleans. =item $json = $json->allow_singlequote ([$enable]) =item $enabled = $json->get_allow_singlequote $json = $json->allow_singlequote([$enable]) If C<$enable> is true (or missing), then C will accept JSON strings quoted by single quotations that are invalid JSON format. $json->allow_singlequote->decode({"foo":'bar'}); $json->allow_singlequote->decode({'foo':"bar"}); $json->allow_singlequote->decode({'foo':'bar'}); This is also enabled with C. As same as the C option, this option may be used to parse application-specific files written by humans. =item $json = $json->allow_barekey ([$enable]) =item $enabled = $json->get_allow_barekey $json = $json->allow_barekey([$enable]) If C<$enable> is true (or missing), then C will accept bare keys of JSON object that are invalid JSON format. Same as with the C option, this option may be used to parse application-specific files written by humans. $json->allow_barekey->decode('{foo:"bar"}'); =item $json = $json->allow_bignum ([$enable]) =item $enabled = $json->get_allow_bignum $json = $json->allow_bignum([$enable]) If C<$enable> is true (or missing), then C will convert the big integer Perl cannot handle as integer into a L object and convert a floating number (any) into a L. $int = $json->allow_nonref->allow_bignum->decode(1); # => 1 $bigint = $json->allow_bignum->decode('100000000000000000000000000000000000000'); $bigfloat = $json->allow_bignum->decode(1.0); On the contrary, C converts C objects and C objects into JSON numbers with C enable. $json->allow_nonref->allow_blessed->allow_bignum; $bigfloat = $json->decode('2.000000000000000000000000001'); print $json->encode($bigfloat); # => 2.000000000000000000000000001 See L about the normal conversion of JSON number. =item $json = $json->allow_bigint ([$enable]) This option is obsolete and replaced by allow_bignum. =item $json = $json->allow_nonref ([$enable]) =item $enabled = $json->get_allow_nonref If C<$enable> is true (or missing), then the C method can convert a non-reference into its corresponding string, number or null JSON value, which is an extension to RFC4627. Likewise, C will accept those JSON values instead of croaking. If C<$enable> is false, then the C method will croak if it isn't passed an arrayref or hashref, as JSON texts must either be an object or array. Likewise, C will croak if given something that is not a JSON object or array. Example, encode a Perl scalar as JSON value with enabled C, resulting in an invalid JSON text: Cpanel::JSON::XS->new->allow_nonref->encode ("Hello, World!") => "Hello, World!" =item $json = $json->allow_unknown ([$enable]) =item $enabled = $json->get_allow_unknown If C<$enable> is true (or missing), then C will I throw an exception when it encounters values it cannot represent in JSON (for example, filehandles) but instead will encode a JSON C value. Note that blessed objects are not included here and are handled separately by c. If C<$enable> is false (the default), then C will throw an exception when it encounters anything it cannot encode as JSON. This option does not affect C in any way, and it is recommended to leave it off unless you know your communications partner. =item $json = $json->allow_stringify ([$enable]) =item $enabled = $json->get_allow_stringify If C<$enable> is true (or missing), then C will stringify the non-object perl value or reference. Note that blessed objects are not included here and are handled separately by C and C. String references are stringified to the string value, other references as in perl. This option does not affect C in any way. This option is special to this module, it is not supported by other encoders. So it is not recommended to use it. =item $json = $json->require_types ([$enable]) =item $enable = $json->get_require_types $json = $json->require_types([$enable]) If C<$enable> is true (or missing), then C will require either enabled C or second argument with supplied JSON types. See L. When C is not enabled or second argument is not provided (or is undef), then C croaks. It also croaks when the type for provided structure in C is incomplete. =item $json = $json->type_all_string ([$enable]) =item $enable = $json->get_type_all_string $json = $json->type_all_string([$enable]) If C<$enable> is true (or missing), then C will always produce stable deterministic JSON string types in resulted output. When C<$enable> is false, then result of encoded JSON output may be different for different Perl versions and may depends on loaded modules. This is useful it you need deterministic JSON types, independently of used Perl version and other modules, but do not want to write complicated type definitions for L. =item $json = $json->allow_dupkeys ([$enable]) =item $enabled = $json->get_allow_dupkeys If C<$enable> is true (or missing), then the C method will not die when it encounters duplicate keys in a hash. C is also enabled in the C mode. The JSON spec allows duplicate name in objects but recommends to disable it, however with Perl hashes they are impossible, parsing JSON in Perl silently ignores duplicate names, using the last value found. See L: RFC 7159 section 4: "The names within an object should be unique." =item $json = $json->dupkeys_as_arrayref ([$enable]) =item $enabled = $json->get_dupkeys_as_arrayref If enabled, allow decoding of duplicate keys in hashes and store the values as arrayref in the hash instead. By default duplicate keys are forbidden. Enabling this also enables the L option, but disabling this does not disable the L option. Example: $json->dupkeys_as_arrayref; print encode_json ($json->decode ('{"a":"b","a":"c"}')); => {"a":["b","c"]} This changes the result structure, thus cannot be enabled by default. The client must be aware of it. The resulting arrayref is not yet marked somehow (blessed or such). =item $json = $json->allow_blessed ([$enable]) =item $enabled = $json->get_allow_blessed If C<$enable> is true (or missing), then the C method will not barf when it encounters a blessed reference. Instead, the value of the B option will decide whether C (C disabled or no C method found) or a representation of the object (C enabled and C method found) is being encoded. Has no effect on C. If C<$enable> is false (the default), then C will throw an exception when it encounters a blessed object without C and a C method. This setting has no effect on C. =item $json = $json->convert_blessed ([$enable]) =item $enabled = $json->get_convert_blessed If C<$enable> is true (or missing), then C, upon encountering a blessed object, will check for the availability of the C method on the object's class. If found, it will be called in scalar context and the resulting scalar will be encoded instead of the object. If no C method is found, a stringification overload method is tried next. If both are not found, the value of C will decide what to do. The C method may safely call die if it wants. If C returns other blessed objects, those will be handled in the same way. C must take care of not causing an endless recursion cycle (== crash) in this case. The same care must be taken with calling encode in stringify overloads (even if this works by luck in older perls) or other callbacks. The name of C was chosen because other methods called by the Perl core (== not by the user of the object) are usually in upper case letters and to avoid collisions with any C function or method. If C<$enable> is false (the default), then C will not consider this type of conversion. This setting has no effect on C. =item $json = $json->allow_tags ([$enable]) =item $enabled = $json->get_allow_tags See L for details. If C<$enable> is true (or missing), then C, upon encountering a blessed object, will check for the availability of the C method on the object's class. If found, it will be used to serialize the object into a nonstandard tagged JSON value (that JSON decoders cannot decode). It also causes C to parse such tagged JSON values and deserialize them via a call to the C method. If C<$enable> is false (the default), then C will not consider this type of conversion, and tagged JSON values will cause a parse error in C, as if tags were not part of the grammar. =item $json = $json->filter_json_object ([$coderef->($hashref)]) When C<$coderef> is specified, it will be called from C each time it decodes a JSON object. The only argument is a reference to the newly-created hash. If the code references returns a single scalar (which need not be a reference), this value (i.e. a copy of that scalar to avoid aliasing) is inserted into the deserialized data structure. If it returns an empty list (NOTE: I C, which is a valid scalar), the original deserialized hash will be inserted. This setting can slow down decoding considerably. When C<$coderef> is omitted or undefined, any existing callback will be removed and C will not change the deserialized hash in any way. Example, convert all JSON objects into the integer 5: my $js = Cpanel::JSON::XS->new->filter_json_object (sub { 5 }); # returns [5] $js->decode ('[{}]') # throw an exception because allow_nonref is not enabled # so a lone 5 is not allowed. $js->decode ('{"a":1, "b":2}'); =item $json = $json->filter_json_single_key_object ($key [=> $coderef->($value)]) Works remotely similar to C, but is only called for JSON objects having a single key named C<$key>. This C<$coderef> is called before the one specified via C, if any. It gets passed the single value in the JSON object. If it returns a single value, it will be inserted into the data structure. If it returns nothing (not even C but the empty list), the callback from C will be called next, as if no single-key callback were specified. If C<$coderef> is omitted or undefined, the corresponding callback will be disabled. There can only ever be one callback for a given key. As this callback gets called less often then the C one, decoding speed will not usually suffer as much. Therefore, single-key objects make excellent targets to serialize Perl objects into, especially as single-key JSON objects are as close to the type-tagged value concept as JSON gets (it's basically an ID/VALUE tuple). Of course, JSON does not support this in any way, so you need to make sure your data never looks like a serialized Perl hash. Typical names for the single object key are C<__class_whatever__>, or C<$__dollars_are_rarely_used__$> or C<}ugly_brace_placement>, or even things like C<__class_md5sum(classname)__>, to reduce the risk of clashing with real hashes. Example, decode JSON objects of the form C<< { "__widget__" => } >> into the corresponding C<< $WIDGET{} >> object: # return whatever is in $WIDGET{5}: Cpanel::JSON::XS ->new ->filter_json_single_key_object (__widget__ => sub { $WIDGET{ $_[0] } }) ->decode ('{"__widget__": 5') # this can be used with a TO_JSON method in some "widget" class # for serialization to json: sub WidgetBase::TO_JSON { my ($self) = @_; unless ($self->{id}) { $self->{id} = ..get..some..id..; $WIDGET{$self->{id}} = $self; } { __widget__ => $self->{id} } } =item $json = $json->shrink ([$enable]) =item $enabled = $json->get_shrink Perl usually over-allocates memory a bit when allocating space for strings. This flag optionally resizes strings generated by either C or C to their minimum size possible. This can save memory when your JSON texts are either very very long or you have many short strings. It will also try to downgrade any strings to octet-form if possible: perl stores strings internally either in an encoding called UTF-X or in octet-form. The latter cannot store everything but uses less space in general (and some buggy Perl or C code might even rely on that internal representation being used). The actual definition of what shrink does might change in future versions, but it will always try to save space at the expense of time. If C<$enable> is true (or missing), the string returned by C will be shrunk-to-fit, while all strings generated by C will also be shrunk-to-fit. If C<$enable> is false, then the normal perl allocation algorithms are used. If you work with your data, then this is likely to be faster. In the future, this setting might control other things, such as converting strings that look like integers or floats into integers or floats internally (there is no difference on the Perl level), saving space. =item $json = $json->max_depth ([$maximum_nesting_depth]) =item $max_depth = $json->get_max_depth Sets the maximum nesting level (default C<512>) accepted while encoding or decoding. If a higher nesting level is detected in JSON text or a Perl data structure, then the encoder and decoder will stop and croak at that point. Nesting level is defined by number of hash- or arrayrefs that the encoder needs to traverse to reach a given point or the number of C<{> or C<[> characters without their matching closing parenthesis crossed to reach a given character in a string. Setting the maximum depth to one disallows any nesting, so that ensures that the object is only a single hash/object or array. If no argument is given, the highest possible setting will be used, which is rarely useful. Note that nesting is implemented by recursion in C. The default value has been chosen to be as large as typical operating systems allow without crashing. See L, below, for more info on why this is useful. =item $json = $json->max_size ([$maximum_string_size]) =item $max_size = $json->get_max_size Set the maximum length a JSON text may have (in bytes) where decoding is being attempted. The default is C<0>, meaning no limit. When C is called on a string that is longer then this many bytes, it will not attempt to decode the string but throw an exception. This setting has no effect on C (yet). If no argument is given, the limit check will be deactivated (same as when C<0> is specified). See L, below, for more info on why this is useful. =item $json->stringify_infnan ([$infnan_mode = 1]) =item $infnan_mode = $json->get_stringify_infnan Get or set how Cpanel::JSON::XS encodes C, C<-inf> or C for numeric values. Also qnan, snan or negative nan on some platforms. C: infnan_mode = 0. Similar to most JSON modules in other languages. Always null. stringified: infnan_mode = 1. As in Mojo::JSON. Platform specific strings. Stringified via sprintf(%g), with double quotes. inf/nan: infnan_mode = 2. As in JSON::XS, and older releases. Passes through platform dependent values, invalid JSON. Stringified via sprintf(%g), but without double quotes. "inf/-inf/nan": infnan_mode = 3. Platform independent inf/nan/-inf strings. No QNAN/SNAN/negative NAN support, unified to "nan". Much easier to detect, but may conflict with valid strings. =item $json_text = $json->encode ($perl_scalar, $json_type) Converts the given Perl data structure (a simple scalar or a reference to a hash or array) to its JSON representation. Simple scalars will be converted into JSON string or number sequences, while references to arrays become JSON arrays and references to hashes become JSON objects. Undefined Perl values (e.g. C) become JSON C values. Neither C nor C values will be generated. For the type argument see L. =item $perl_scalar = $json->decode ($json_text, my $json_type) The opposite of C: expects a JSON text and tries to parse it, returning the resulting simple scalar or reference. Croaks on error. JSON numbers and strings become simple Perl scalars. JSON arrays become Perl arrayrefs and JSON objects become Perl hashrefs. C becomes C<1>, C becomes C<0> and C becomes C. For the type argument see L. =item ($perl_scalar, $characters) = $json->decode_prefix ($json_text) This works like the C method, but instead of raising an exception when there is trailing garbage after the first JSON object, it will silently stop parsing there and return the number of characters consumed so far. This is useful if your JSON texts are not delimited by an outer protocol and you need to know where the JSON text ends. Cpanel::JSON::XS->new->decode_prefix ("[1] the tail") => ([1], 3) =item $json->to_json ($perl_hash_or_arrayref) Deprecated method for perl 5.8 and newer. Use L instead. =item $json->from_json ($utf8_encoded_json_text) Deprecated method for perl 5.8 and newer. Use L instead. =back =head1 INCREMENTAL PARSING In some cases, there is the need for incremental parsing of JSON texts. While this module always has to keep both JSON text and resulting Perl data structure in memory at one time, it does allow you to parse a JSON stream incrementally. It does so by accumulating text until it has a full JSON object, which it then can decode. This process is similar to using C to see if a full JSON object is available, but is much more efficient (and can be implemented with a minimum of method calls). Cpanel::JSON::XS will only attempt to parse the JSON text once it is sure it has enough text to get a decisive result, using a very simple but truly incremental parser. This means that it sometimes won't stop as early as the full parser, for example, it doesn't detect mismatched parentheses. The only thing it guarantees is that it starts decoding as soon as a syntactically valid JSON text has been seen. This means you need to set resource limits (e.g. C) to ensure the parser will stop parsing in the presence of syntax errors. The following methods implement this incremental parser. =over 4 =item [void, scalar or list context] = $json->incr_parse ([$string]) This is the central parsing function. It can both append new text and extract objects from the stream accumulated so far (both of these functions are optional). If C<$string> is given, then this string is appended to the already existing JSON fragment stored in the C<$json> object. After that, if the function is called in void context, it will simply return without doing anything further. This can be used to add more text in as many chunks as you want. If the method is called in scalar context, then it will try to extract exactly I JSON object. If that is successful, it will return this object, otherwise it will return C. If there is a parse error, this method will croak just as C would do (one can then use C to skip the erroneous part). This is the most common way of using the method. And finally, in list context, it will try to extract as many objects from the stream as it can find and return them, or the empty list otherwise. For this to work, there must be no separators between the JSON objects or arrays, instead they must be concatenated back-to-back. If an error occurs, an exception will be raised as in the scalar context case. Note that in this case, any previously-parsed JSON texts will be lost. Example: Parse some JSON arrays/objects in a given string and return them. my @objs = Cpanel::JSON::XS->new->incr_parse ("[5][7][1,2]"); =item $lvalue_string = $json->incr_text (>5.8 only) This method returns the currently stored JSON fragment as an lvalue, that is, you can manipulate it. This I works when a preceding call to C in I successfully returned an object, and 2. only with Perl >= 5.8 Under all other circumstances you must not call this function (I mean it. although in simple tests it might actually work, it I fail under real world conditions). As a special exception, you can also call this method before having parsed anything. This function is useful in two cases: a) finding the trailing text after a JSON object or b) parsing multiple JSON objects separated by non-JSON text (such as commas). =item $json->incr_skip This will reset the state of the incremental parser and will remove the parsed text from the input buffer so far. This is useful after C died, in which case the input buffer and incremental parser state is left unchanged, to skip the text parsed so far and to reset the parse state. The difference to C is that only text until the parse error occurred is removed. =item $json->incr_reset This completely resets the incremental parser, that is, after this call, it will be as if the parser had never parsed anything. This is useful if you want to repeatedly parse JSON objects and want to ignore any trailing data, which means you have to reset the parser after each successful decode. =back =head2 LIMITATIONS All options that affect decoding are supported, except C. The reason for this is that it cannot be made to work sensibly: JSON objects and arrays are self-delimited, i.e. you can concatenate them back to back and still decode them perfectly. This does not hold true for JSON numbers, however. For example, is the string C<1> a single JSON number, or is it simply the start of C<12>? Or is C<12> a single JSON number, or the concatenation of C<1> and C<2>? In neither case you can tell, and this is why Cpanel::JSON::XS takes the conservative route and disallows this case. =head2 EXAMPLES Some examples will make all this clearer. First, a simple example that works similarly to C: We want to decode the JSON object at the start of a string and identify the portion after the JSON object: my $text = "[1,2,3] hello"; my $json = new Cpanel::JSON::XS; my $obj = $json->incr_parse ($text) or die "expected JSON object or array at beginning of string"; my $tail = $json->incr_text; # $tail now contains " hello" Easy, isn't it? Now for a more complicated example: Imagine a hypothetical protocol where you read some requests from a TCP stream, and each request is a JSON array, without any separation between them (in fact, it is often useful to use newlines as "separators", as these get interpreted as whitespace at the start of the JSON text, which makes it possible to test said protocol with C...). Here is how you'd do it (it is trivial to write this in an event-based manner): my $json = new Cpanel::JSON::XS; # read some data from the socket while (sysread $socket, my $buf, 4096) { # split and decode as many requests as possible for my $request ($json->incr_parse ($buf)) { # act on the $request } } Another complicated example: Assume you have a string with JSON objects or arrays, all separated by (optional) comma characters (e.g. C<[1],[2], [3]>). To parse them, we have to skip the commas between the JSON texts, and here is where the lvalue-ness of C comes in useful: my $text = "[1],[2], [3]"; my $json = new Cpanel::JSON::XS; # void context, so no parsing done $json->incr_parse ($text); # now extract as many objects as possible. note the # use of scalar context so incr_text can be called. while (my $obj = $json->incr_parse) { # do something with $obj # now skip the optional comma $json->incr_text =~ s/^ \s* , //x; } Now lets go for a very complex example: Assume that you have a gigantic JSON array-of-objects, many gigabytes in size, and you want to parse it, but you cannot load it into memory fully (this has actually happened in the real world :). Well, you lost, you have to implement your own JSON parser. But Cpanel::JSON::XS can still help you: You implement a (very simple) array parser and let JSON decode the array elements, which are all full JSON objects on their own (this wouldn't work if the array elements could be JSON numbers, for example): my $json = new Cpanel::JSON::XS; # open the monster open my $fh, "incr_parse ($buf); # void context, so no parsing # Exit the loop once we found and removed(!) the initial "[". # In essence, we are (ab-)using the $json object as a simple scalar # we append data to. last if $json->incr_text =~ s/^ \s* \[ //x; } # now we have the skipped the initial "[", so continue # parsing all the elements. for (;;) { # in this loop we read data until we got a single JSON object for (;;) { if (my $obj = $json->incr_parse) { # do something with $obj last; } # add more data sysread $fh, my $buf, 65536 or die "read error: $!"; $json->incr_parse ($buf); # void context, so no parsing } # in this loop we read data until we either found and parsed the # separating "," between elements, or the final "]" for (;;) { # first skip whitespace $json->incr_text =~ s/^\s*//; # if we find "]", we are done if ($json->incr_text =~ s/^\]//) { print "finished.\n"; exit; } # if we find ",", we can continue with the next element if ($json->incr_text =~ s/^,//) { last; } # if we find anything else, we have a parse error! if (length $json->incr_text) { die "parse error near ", $json->incr_text; } # else add more data sysread $fh, my $buf, 65536 or die "read error: $!"; $json->incr_parse ($buf); # void context, so no parsing } This is a complex example, but most of the complexity comes from the fact that we are trying to be correct (bear with me if I am wrong, I never ran the above example :). =head1 BOM Detect all unicode B on decode. Which are UTF-8, UTF-16LE, UTF-16BE, UTF-32LE and UTF-32BE. The BOM encoding is set only for one specific decode call, it does not change the state of the JSON object. B: With perls older than 5.20 you need load the Encode module before loading a multibyte BOM, i.e. >= UTF-16. Otherwise an error is thrown. This is an implementation limitation and might get fixed later. See L I<"JSON text SHALL be encoded in UTF-8, UTF-16, or UTF-32."> I<"Implementations MUST NOT add a byte order mark to the beginning of a JSON text", "implementations (...) MAY ignore the presence of a byte order mark rather than treating it as an error".> See also L. Beware that Cpanel::JSON::XS is currently the only JSON module which does accept and decode a BOM. The latest JSON spec L forbid the usage of UTF-16 or UTF-32, the character encoding is UTF-8. Thus in subsequent updates BOM's of UTF-16 or UTF-32 will throw an error. =head1 MAPPING This section describes how Cpanel::JSON::XS maps Perl values to JSON values and vice versa. These mappings are designed to "do the right thing" in most circumstances automatically, preserving round-tripping characteristics (what you put in comes out as something equivalent). For the more enlightened: note that in the following descriptions, lowercase I refers to the Perl interpreter, while uppercase I refers to the abstract Perl language itself. =head2 JSON -> PERL =over 4 =item object A JSON object becomes a reference to a hash in Perl. No ordering of object keys is preserved (JSON does not preserve object key ordering itself). =item array A JSON array becomes a reference to an array in Perl. =item string A JSON string becomes a string scalar in Perl - Unicode codepoints in JSON are represented by the same codepoints in the Perl string, so no manual decoding is necessary. =item number A JSON number becomes either an integer, numeric (floating point) or string scalar in perl, depending on its range and any fractional parts. On the Perl level, there is no difference between those as Perl handles all the conversion details, but an integer may take slightly less memory and might represent more values exactly than floating point numbers. If the number consists of digits only, Cpanel::JSON::XS will try to represent it as an integer value. If that fails, it will try to represent it as a numeric (floating point) value if that is possible without loss of precision. Otherwise it will preserve the number as a string value (in which case you lose roundtripping ability, as the JSON number will be re-encoded to a JSON string). Numbers containing a fractional or exponential part will always be represented as numeric (floating point) values, possibly at a loss of precision (in which case you might lose perfect roundtripping ability, but the JSON number will still be re-encoded as a JSON number). Note that precision is not accuracy - binary floating point values cannot represent most decimal fractions exactly, and when converting from and to floating point, C only guarantees precision up to but not including the least significant bit. =item true, false When C is set to true, then JSON C becomes C<1> and JSON C becomes C<0>. Otherwise these JSON atoms become C and C, respectively. They are C objects and are overloaded to act almost exactly like the numbers C<1> and C<0>. You can check whether a scalar is a JSON boolean by using the C function. The other round, from perl to JSON, C which is represented as C becomes C, and C which is represented as C becomes C. Via L you can now even force negation in C, without overloading of C: my $false = Cpanel::JSON::XS::false; print($json->encode([!$false], [JSON_TYPE_BOOL])); => [true] =item null A JSON null atom becomes C in Perl. =item shell-style comments (C<< # I >>) As a nonstandard extension to the JSON syntax that is enabled by the C setting, shell-style comments are allowed. They can start anywhere outside strings and go till the end of the line. =item tagged values (C<< (I)I >>). Another nonstandard extension to the JSON syntax, enabled with the C setting, are tagged values. In this implementation, the I must be a perl package/class name encoded as a JSON string, and the I must be a JSON array encoding optional constructor arguments. See L, below, for details. =back =head2 PERL -> JSON The mapping from Perl to JSON is slightly more difficult, as Perl is a truly typeless language, so we can only guess which JSON type is meant by a Perl value. =over 4 =item hash references Perl hash references become JSON objects. As there is no inherent ordering in hash keys (or JSON objects), they will usually be encoded in a pseudo-random order that can change between runs of the same program but stays generally the same within a single run of a program. Cpanel::JSON::XS can optionally sort the hash keys (determined by the I flag), so the same datastructure will serialize to the same JSON text (given same settings and version of Cpanel::JSON::XS), but this incurs a runtime overhead and is only rarely useful, e.g. when you want to compare some JSON text against another for equality. =item array references Perl array references become JSON arrays. =item other references Other unblessed references are generally not allowed and will cause an exception to be thrown, except for references to the integers C<0> and C<1>, which get turned into C and C atoms in JSON. With the option C, you can ignore the exception and return the stringification of the perl value. With the option C, you can ignore the exception and return C instead. encode_json [\"x"] # => cannot encode reference to scalar 'SCALAR(0x..)' # unless the scalar is 0 or 1 encode_json [\0, \1] # yields [false,true] allow_stringify->encode_json [\"x"] # yields "x" unlike JSON::PP allow_unknown->encode_json [\"x"] # yields null as in JSON::PP =item Cpanel::JSON::XS::true, Cpanel::JSON::XS::false These special values become JSON true and JSON false values, respectively. You can also use C<\1> and C<\0> or C and C directly if you want. encode_json [Cpanel::JSON::XS::false, Cpanel::JSON::XS::true] # yields [false,true] encode_json [!1, !0], [JSON_TYPE_BOOL, JSON_TYPE_BOOL] # yields [false,true] eq/ne comparisons with true, false: false is eq to the empty string or the string 'false' or the special empty string C or C, i.e. C, or the numbers 0 or 0.0. true is eq to the string 'true' or to the special string C (i.e. C) or to the numbers 1 or 1.0. =item blessed objects Blessed objects are not directly representable in JSON, but C allows various optional ways of handling objects. See L, below, for details. See the C and C methods on various options on how to deal with this: basically, you can choose between throwing an exception, encoding the reference as if it weren't blessed, use the objects overloaded stringification method or provide your own serializer method. =item simple scalars Simple Perl scalars (any scalar that is not a reference) are the most difficult objects to encode: Cpanel::JSON::XS will encode undefined scalars or inf/nan as JSON C values and other scalars to either number or string in non-deterministic way which may be affected or changed by Perl version or any other loaded Perl module. If you want to have stable and deterministic types in JSON encoder then use L. Alternative way for deterministic types is to use C method when all perl scalars are encoded to JSON strings. Non-deterministic behavior is following: scalars that have last been used in a string context before encoding as JSON strings, and anything else as number value: # dump as number encode_json [2] # yields [2] encode_json [-3.0e17] # yields [-3e+17] my $value = 5; encode_json [$value] # yields [5] # used as string, but the two representations are for the same number print $value; encode_json [$value] # yields [5] # used as different string (non-matching dual-var) my $str = '0 but true'; my $num = 1 + $str; encode_json [$num, $str] # yields [1,"0 but true"] # undef becomes null encode_json [undef] # yields [null] # inf or nan becomes null, unless you answered # "Do you want to handle inf/nan as strings" with yes encode_json [9**9**9] # yields [null] You can force the type to be a JSON string by stringifying it: my $x = 3.1; # some variable containing a number "$x"; # stringified $x .= ""; # another, more awkward way to stringify print $x; # perl does it for you, too, quite often You can force the type to be a JSON number by numifying it: my $x = "3"; # some variable containing a string $x += 0; # numify it, ensuring it will be dumped as a number $x *= 1; # same thing, the choice is yours. Note that numerical precision has the same meaning as under Perl (so binary to decimal conversion follows the same rules as in Perl, which can differ to other languages). Also, your perl interpreter might expose extensions to the floating point numbers of your platform, such as infinities or NaN's - these cannot be represented in JSON, and thus null is returned instead. Optionally you can configure it to stringify inf and nan values. =back =head2 OBJECT SERIALIZATION As JSON cannot directly represent Perl objects, you have to choose between a pure JSON representation (without the ability to deserialize the object automatically again), and a nonstandard extension to the JSON syntax, tagged values. =head3 SERIALIZATION What happens when C encounters a Perl object depends on the C, C and C settings, which are used in this order: =over 4 =item 1. C is enabled and the object has a C method. In this case, C uses the L object serialization protocol to create a tagged JSON value, using a nonstandard extension to the JSON syntax. This works by invoking the C method on the object, with the first argument being the object to serialize, and the second argument being the constant string C to distinguish it from other serializers. The C method can return any number of values (i.e. zero or more). These values and the paclkage/classname of the object will then be encoded as a tagged JSON value in the following format: ("classname")[FREEZE return values...] e.g.: ("URI")["http://www.google.com/"] ("MyDate")[2013,10,29] ("ImageData::JPEG")["Z3...VlCg=="] For example, the hypothetical C C method might use the objects C and C members to encode the object: sub My::Object::FREEZE { my ($self, $serializer) = @_; ($self->{type}, $self->{id}) } =item 2. C is enabled and the object has a C method. In this case, the C method of the object is invoked in scalar context. It must return a single scalar that can be directly encoded into JSON. This scalar replaces the object in the JSON text. For example, the following C method will convert all L objects to JSON strings when serialized. The fact that these values originally were L objects is lost. sub URI::TO_JSON { my ($uri) = @_; $uri->as_string } =item 3. C is enabled and the object has a stringification overload. In this case, the overloaded C<""> method of the object is invoked in scalar context. It must return a single scalar that can be directly encoded into JSON. This scalar replaces the object in the JSON text. For example, the following C<""> method will convert all L objects to JSON strings when serialized. The fact that these values originally were L objects is lost. package URI; use overload '""' => sub { shift->as_string }; =item 4. C is enabled. The object will be serialized as a JSON null value. =item 5. none of the above If none of the settings are enabled or the respective methods are missing, C throws an exception. =back =head3 DESERIALIZATION For deserialization there are only two cases to consider: either nonstandard tagging was used, in which case C decides, or objects cannot be automatically be deserialized, in which case you can use postprocessing or the C or C callbacks to get some real objects our of your JSON. This section only considers the tagged value case: I a tagged JSON object is encountered during decoding and C is disabled, a parse error will result (as if tagged values were not part of the grammar). If C is enabled, C will look up the C method of the package/classname used during serialization (it will not attempt to load the package as a Perl module). If there is no such method, the decoding will fail with an error. Otherwise, the C method is invoked with the classname as first argument, the constant string C as second argument, and all the values from the JSON array (the values originally returned by the C method) as remaining arguments. The method must then return the object. While technically you can return any Perl scalar, you might have to enable the C setting to make that work in all cases, so better return an actual blessed reference. As an example, let's implement a C function that regenerates the C from the C example earlier: sub My::Object::THAW { my ($class, $serializer, $type, $id) = @_; $class->new (type => $type, id => $id) } See the L section below. Allowing external json objects being deserialized to perl objects is usually a very bad idea. =head1 ENCODING/CODESET FLAG NOTES The interested reader might have seen a number of flags that signify encodings or codesets - C, C, C and C. There seems to be some confusion on what these do, so here is a short comparison: C controls whether the JSON text created by C (and expected by C) is UTF-8 encoded or not, while C and C only control whether C escapes character values outside their respective codeset range. Neither of these flags conflict with each other, although some combinations make less sense than others. Care has been taken to make all flags symmetrical with respect to C and C, that is, texts encoded with any combination of these flag values will be correctly decoded when the same flags are used - in general, if you use different flag settings while encoding vs. when decoding you likely have a bug somewhere. Below comes a verbose discussion of these flags. Note that a "codeset" is simply an abstract set of character-codepoint pairs, while an encoding takes those codepoint numbers and I them, in our case into octets. Unicode is (among other things) a codeset, UTF-8 is an encoding, and ISO-8859-1 (= latin 1) and ASCII are both codesets I encodings at the same time, which can be confusing. =over 4 =item C flag disabled When C is disabled (the default), then C/C generate and expect Unicode strings, that is, characters with high ordinal Unicode values (> 255) will be encoded as such characters, and likewise such characters are decoded as-is, no changes to them will be done, except "(re-)interpreting" them as Unicode codepoints or Unicode characters, respectively (to Perl, these are the same thing in strings unless you do funny/weird/dumb stuff). This is useful when you want to do the encoding yourself (e.g. when you want to have UTF-16 encoded JSON texts) or when some other layer does the encoding for you (for example, when printing to a terminal using a filehandle that transparently encodes to UTF-8 you certainly do NOT want to UTF-8 encode your data first and have Perl encode it another time). =item C flag enabled If the C-flag is enabled, C/C will encode all characters using the corresponding UTF-8 multi-byte sequence, and will expect your input strings to be encoded as UTF-8, that is, no "character" of the input string must have any value > 255, as UTF-8 does not allow that. The C flag therefore switches between two modes: disabled means you will get a Unicode string in Perl, enabled means you get an UTF-8 encoded octet/binary string in Perl. =item C, C or C flags enabled With C (or C) enabled, C will escape characters with ordinal values > 255 (> 127 with C) and encode the remaining characters as specified by the C flag. With C enabled, ordinal values > 255 are illegal. If C is disabled, then the result is also correctly encoded in those character sets (as both are proper subsets of Unicode, meaning that a Unicode string with all character values < 256 is the same thing as a ISO-8859-1 string, and a Unicode string with all character values < 128 is the same thing as an ASCII string in Perl). If C is enabled, you still get a correct UTF-8-encoded string, regardless of these flags, just some more characters will be escaped using C<\uXXXX> then before. Note that ISO-8859-1-I strings are not compatible with UTF-8 encoding, while ASCII-encoded strings are. That is because the ISO-8859-1 encoding is NOT a subset of UTF-8 (despite the ISO-8859-1 I being a subset of Unicode), while ASCII is. Surprisingly, C will ignore these flags and so treat all input values as governed by the C flag. If it is disabled, this allows you to decode ISO-8859-1- and ASCII-encoded strings, as both strict subsets of Unicode. If it is enabled, you can correctly decode UTF-8 encoded strings. So neither C, C nor C are incompatible with the C flag - they only govern when the JSON output engine escapes a character or not. The main use for C or C is to relatively efficiently store binary data as JSON, at the expense of breaking compatibility with most JSON decoders. The main use for C is to force the output to not contain characters with values > 127, which means you can interpret the resulting string as UTF-8, ISO-8859-1, ASCII, KOI8-R or most about any character set and 8-bit-encoding, and still get the same data structure back. This is useful when your channel for JSON transfer is not 8-bit clean or the encoding might be mangled in between (e.g. in mail), and works because ASCII is a proper subset of most 8-bit and multibyte encodings in use in the world. =back =head2 JSON and ECMAscript JSON syntax is based on how literals are represented in javascript (the not-standardized predecessor of ECMAscript) which is presumably why it is called "JavaScript Object Notation". However, JSON is not a subset (and also not a superset of course) of ECMAscript (the standard) or javascript (whatever browsers actually implement). If you want to use javascript's C function to "parse" JSON, you might run into parse errors for valid JSON texts, or the resulting data structure might not be queryable: One of the problems is that U+2028 and U+2029 are valid characters inside JSON strings, but are not allowed in ECMAscript string literals, so the following Perl fragment will not output something that can be guaranteed to be parsable by javascript's C: use Cpanel::JSON::XS; print encode_json [chr 0x2028]; The right fix for this is to use a proper JSON parser in your javascript programs, and not rely on C (see for example Douglas Crockford's F parser). If this is not an option, you can, as a stop-gap measure, simply encode to ASCII-only JSON: use Cpanel::JSON::XS; print Cpanel::JSON::XS->new->ascii->encode ([chr 0x2028]); Note that this will enlarge the resulting JSON text quite a bit if you have many non-ASCII characters. You might be tempted to run some regexes to only escape U+2028 and U+2029, e.g.: # DO NOT USE THIS! my $json = Cpanel::JSON::XS->new->utf8->encode ([chr 0x2028]); $json =~ s/\xe2\x80\xa8/\\u2028/g; # escape U+2028 $json =~ s/\xe2\x80\xa9/\\u2029/g; # escape U+2029 print $json; Note that I: the above only works for U+2028 and U+2029 and thus only for fully ECMAscript-compliant parsers. Many existing javascript implementations, however, have issues with other characters as well - using C naively simply I cause problems. Another problem is that some javascript implementations reserve some property names for their own purposes (which probably makes them non-ECMAscript-compliant). For example, Iceweasel reserves the C<__proto__> property name for its own purposes. If that is a problem, you could parse try to filter the resulting JSON output for these property strings, e.g.: $json =~ s/"__proto__"\s*:/"__proto__renamed":/g; This works because C<__proto__> is not valid outside of strings, so every occurrence of C<"__proto__"\s*:> must be a string used as property name. Raw non-Unicode characters outside the valid unicode range fail now to parse, because "A string is a sequence of zero or more Unicode characters" RFC 7159 section 1 and "JSON text SHALL be encoded in Unicode RFC 7159 section 8.1. We use now the UTF8_DISALLOW_SUPER flag when parsing unicode. Since RFC 3629, U+D800 through U+DFFF are not legal Unicode values and their UTF-8 encodings must be treated as an invalid byte sequence. RFC 8259 section 8.2 admits the spec allows string values that contain bit sequences that cannot encode Unicode characters and that the behavior of software that receives such values is unpredictable. To avoid introducing non-Unicode strings into Perl we use the UTF8_DISALLOW_SURROGATE flag when parsing Unicode and verify escaped surrogates form valid pairs. If you know of other incompatibilities, please let me know. =head2 JSON and YAML You often hear that JSON is a subset of YAML. I that works in all cases. If you really must use Cpanel::JSON::XS to generate YAML, you should use this algorithm (subject to change in future versions): my $to_yaml = Cpanel::JSON::XS->new->utf8->space_after (1); my $yaml = $to_yaml->encode ($ref) . "\n"; This will I generate JSON texts that also parse as valid YAML. =head2 SPEED It seems that JSON::XS is surprisingly fast, as shown in the following tables. They have been generated with the help of the C program in the JSON::XS distribution, to make it easy to compare on your own system. JSON::XS is with L and L one of the fastest serializers, because JSON and JSON::XS do not support backrefs (no graph structures), only trees. Storable supports backrefs, i.e. graphs. Data::MessagePack encodes its data binary (as Storable) and supports only very simple subset of JSON. First comes a comparison between various modules using a very short single-line JSON string (also available at L). {"method": "handleMessage", "params": ["user1", "we were just talking"], "id": null, "array":[1,11,234,-5,1e5,1e7, 1, 0]} It shows the number of encodes/decodes per second (JSON::XS uses the functional interface, while Cpanel::JSON::XS/2 uses the OO interface with pretty-printing and hash key sorting enabled, Cpanel::JSON::XS/3 enables shrink. JSON::DWIW/DS uses the deserialize function, while JSON::DWIW::FJ uses the from_json method). Higher is better: module | encode | decode | --------------|------------|------------| JSON::DWIW/DS | 86302.551 | 102300.098 | JSON::DWIW/FJ | 86302.551 | 75983.768 | JSON::PP | 15827.562 | 6638.658 | JSON::Syck | 63358.066 | 47662.545 | JSON::XS | 511500.488 | 511500.488 | JSON::XS/2 | 291271.111 | 388361.481 | JSON::XS/3 | 361577.931 | 361577.931 | Storable | 66788.280 | 265462.278 | --------------+------------+------------+ That is, JSON::XS is almost six times faster than JSON::DWIW on encoding, about five times faster on decoding, and over thirty to seventy times faster than JSON's pure perl implementation. It also compares favourably to Storable for small amounts of data. Using a longer test string (roughly 18KB, generated from Yahoo! Locals search API (L). module | encode | decode | --------------|------------|------------| JSON::DWIW/DS | 1647.927 | 2673.916 | JSON::DWIW/FJ | 1630.249 | 2596.128 | JSON::PP | 400.640 | 62.311 | JSON::Syck | 1481.040 | 1524.869 | JSON::XS | 20661.596 | 9541.183 | JSON::XS/2 | 10683.403 | 9416.938 | JSON::XS/3 | 20661.596 | 9400.054 | Storable | 19765.806 | 10000.725 | --------------+------------+------------+ Again, JSON::XS leads by far (except for Storable which non-surprisingly decodes a bit faster). On large strings containing lots of high Unicode characters, some modules (such as JSON::PC) seem to decode faster than JSON::XS, but the result will be broken due to missing (or wrong) Unicode handling. Others refuse to decode or encode properly, so it was impossible to prepare a fair comparison table for that case. For updated graphs see L =head1 INTEROP with JSON and JSON::XS and other JSON modules As long as you only serialize data that can be directly expressed in JSON, C is incapable of generating invalid JSON output (modulo bugs, but C has found more bugs in the official JSON testsuite (1) than the official JSON testsuite has found in C (0)). C is currently the only known JSON decoder which passes all L tests, while being the fastest also. When you have trouble decoding JSON generated by this module using other decoders, then it is very likely that you have an encoding mismatch or the other decoder is broken. When decoding, C is strict by default and will likely catch all errors. There are currently two settings that change this: C makes C accept (but not generate) some non-standard extensions, and C or C will allow you to encode and decode Perl objects, at the cost of being totally insecure and not outputting valid JSON anymore. JSON-XS-3.01 broke interoperability with JSON-2.90 with booleans. See L. Cpanel::JSON::XS needs to know the JSON and JSON::XS versions to be able work with those objects, especially when encoding a booleans like C<{"is_true":true}>. So you need to load these modules before. true/false overloading and boolean representations are supported. JSON::XS and JSON::PP representations are accepted and older JSON::XS accepts Cpanel::JSON::XS booleans. All JSON modules JSON, JSON, PP, JSON::XS, Cpanel::JSON::XS produce JSON::PP::Boolean objects, just Mojo and JSON::YAJL not. Mojo produces Mojo::JSON::_Bool and JSON::YAJL::Parser just an unblessed IV. Cpanel::JSON::XS accepts JSON::PP::Boolean and Mojo::JSON::_Bool objects as booleans. I cannot think of any reason to still use JSON::XS anymore. =head2 TAGGED VALUE SYNTAX AND STANDARD JSON EN/DECODERS When you use C to use the extended (and also nonstandard and invalid) JSON syntax for serialized objects, and you still want to decode the generated serialize objects, you can run a regex to replace the tagged syntax by standard JSON arrays (it only works for "normal" package names without comma, newlines or single colons). First, the readable Perl version: # if your FREEZE methods return no values, you need this replace first: $json =~ s/\( \s* (" (?: [^\\":,]+|\\.|::)* ") \s* \) \s* \[\s*\]/[$1]/gx; # this works for non-empty constructor arg lists: $json =~ s/\( \s* (" (?: [^\\":,]+|\\.|::)* ") \s* \) \s* \[/[$1,/gx; And here is a less readable version that is easy to adapt to other languages: $json =~ s/\(\s*("([^\\":,]+|\\.|::)*")\s*\)\s*\[/[$1,/g; Here is an ECMAScript version (same regex): json = json.replace (/\(\s*("([^\\":,]+|\\.|::)*")\s*\)\s*\[/g, "[$1,"); Since this syntax converts to standard JSON arrays, it might be hard to distinguish serialized objects from normal arrays. You can prepend a "magic number" as first array element to reduce chances of a collision: $json =~ s/\(\s*("([^\\":,]+|\\.|::)*")\s*\)\s*\[/["XU1peReLzT4ggEllLanBYq4G9VzliwKF",$1,/g; And after decoding the JSON text, you could walk the data structure looking for arrays with a first element of C. The same approach can be used to create the tagged format with another encoder. First, you create an array with the magic string as first member, the classname as second, and constructor arguments last, encode it as part of your JSON structure, and then: $json =~ s/\[\s*"XU1peReLzT4ggEllLanBYq4G9VzliwKF"\s*,\s*("([^\\":,]+|\\.|::)*")\s*,/($1)[/g; Again, this has some limitations - the magic string must not be encoded with character escapes, and the constructor arguments must be non-empty. =head1 RFC7159 Since this module was written, Google has written a new JSON RFC, RFC 7159 (and RFC7158). Unfortunately, this RFC breaks compatibility with both the original JSON specification on www.json.org and RFC4627. As far as I can see, you can get partial compatibility when parsing by using C<< ->allow_nonref >>. However, consider the security implications of doing so. I haven't decided yet when to break compatibility with RFC4627 by default (and potentially leave applications insecure) and change the default to follow RFC7159, but application authors are well advised to call C<< ->allow_nonref(0) >> even if this is the current default, if they cannot handle non-reference values, in preparation for the day when the default will change. =head1 SECURITY CONSIDERATIONS JSON::XS and Cpanel::JSON::XS are not only fast. JSON is generally the most secure serializing format, because it is the only one besides Data::MessagePack, which does not deserialize objects per default. For all languages, not just perl. The binary variant BSON (MongoDB) does more but is unsafe. It is trivial for any attacker to create such serialized objects in JSON and trick perl into expanding them, thereby triggering certain methods. Watch L for an exploit demo for "CVE-2015-1592 SixApart MovableType Storable Perl Code Execution" for a deserializer which expands objects. Deserializing even coderefs (methods, functions) or external data would be considered the most dangerous. Security relevant overview of serializers regarding deserializing objects by default: Objects Coderefs External Data Data::Dumper YES YES YES Storable YES NO (def) NO Sereal YES NO NO YAML YES NO NO B::C YES YES YES B::Bytecode YES YES YES BSON YES YES NO JSON::SL YES NO YES JSON NO (def) NO NO Data::MessagePack NO NO NO XML NO NO YES Pickle YES YES YES PHP Deserialize YES NO NO When you are using JSON in a protocol, talking to untrusted potentially hostile creatures requires relatively few measures. First of all, your JSON decoder should be secure, that is, should not have any buffer overflows. Obviously, this module should ensure that. Second, you need to avoid resource-starving attacks. That means you should limit the size of JSON texts you accept, or make sure then when your resources run out, that's just fine (e.g. by using a separate process that can crash safely). The size of a JSON text in octets or characters is usually a good indication of the size of the resources required to decode it into a Perl structure. While JSON::XS can check the size of the JSON text, it might be too late when you already have it in memory, so you might want to check the size before you accept the string. Third, Cpanel::JSON::XS recurses using the C stack when decoding objects and arrays. The C stack is a limited resource: for instance, on my amd64 machine with 8MB of stack size I can decode around 180k nested arrays but only 14k nested JSON objects (due to perl itself recursing deeply on croak to free the temporary). If that is exceeded, the program crashes. To be conservative, the default nesting limit is set to 512. If your process has a smaller stack, you should adjust this setting accordingly with the C method. Also keep in mind that Cpanel::JSON::XS might leak contents of your Perl data structures in its error messages, so when you serialize sensitive information you might want to make sure that exceptions thrown by JSON::XS will not end up in front of untrusted eyes. If you are using Cpanel::JSON::XS to return packets to consumption by JavaScript scripts in a browser you should have a look at L to see whether you are vulnerable to some common attack vectors (which really are browser design bugs, but it is still you who will have to deal with it, as major browser developers care only for features, not about getting security right). You might also want to also look at L special escape rules to prevent from XSS attacks. =head1 "OLD" VS. "NEW" JSON (RFC 4627 VS. RFC 7159) TL;DR: Due to security concerns, Cpanel::JSON::XS will not allow scalar data in JSON texts by default - you need to create your own Cpanel::JSON::XS object and enable C: my $json = JSON::XS->new->allow_nonref; $text = $json->encode ($data); $data = $json->decode ($text); The long version: JSON being an important and supposedly stable format, the IETF standardized it as RFC 4627 in 2006. Unfortunately the inventor of JSON Douglas Crockford unilaterally changed the definition of JSON in javascript. Rather than create a fork, the IETF decided to standardize the new syntax (apparently, so I as told, without finding it very amusing). The biggest difference between the original JSON and the new JSON is that the new JSON supports scalars (anything other than arrays and objects) at the top-level of a JSON text. While this is strictly backwards compatible to older versions, it breaks a number of protocols that relied on sending JSON back-to-back, and is a minor security concern. For example, imagine you have two banks communicating, and on one side, the JSON coder gets upgraded. Two messages, such as C<10> and C<1000> might then be confused to mean C<101000>, something that couldn't happen in the original JSON, because neither of these messages would be valid JSON. If one side accepts these messages, then an upgrade in the coder on either side could result in this becoming exploitable. This module has always allowed these messages as an optional extension, by default disabled. The security concerns are the reason why the default is still disabled, but future versions might/will likely upgrade to the newer RFC as default format, so you are advised to check your implementation and/or override the default with C<< ->allow_nonref (0) >> to ensure that future versions are safe. =head1 THREADS Cpanel::JSON::XS has proper ithreads support, unlike JSON::XS. If you encounter any bugs with thread support please report them. From Version 4.00 - 4.19 you couldn't encode true with threads::shared magic. =head1 BUGS While the goal of the Cpanel::JSON::XS module is to be correct, that unfortunately does not mean it's bug-free, only that the author thinks its design is bug-free. If you keep reporting bugs and tests they will be fixed swiftly, though. Since the JSON::XS author refuses to use a public bugtracker and prefers private emails, we use the tracker at B, so you might want to report any issues twice. Once in private to MLEHMANN to be fixed in JSON::XS and one to our the public tracker. Issues fixed by JSON::XS with a new release will also be backported to Cpanel::JSON::XS and 5.6.2, as long as cPanel relies on 5.6.2 and Cpanel::JSON::XS as our serializer of choice. L =head1 LICENSE This module is available under the same licences as perl, the Artistic license and the GPL. =cut sub allow_bigint { Carp::carp("allow_bigint() is obsoleted. use allow_bignum() instead."); } BEGIN { package JSON::PP::Boolean; require overload; local $^W; # silence redefine warnings. no warnings 'redefine' does not help # These already come with JSON::PP::Boolean. Avoid redefine warning. if (!defined $JSON::PP::Boolean::VERSION or $JSON::PP::VERSION lt '4.00') { &overload::unimport( 'overload', '0+', '++', '--' ); &overload::import( 'overload', "0+" => sub { ${$_[0]} }, "++" => sub { $_[0] = ${$_[0]} + 1 }, "--" => sub { $_[0] = ${$_[0]} - 1 }, ); } # workaround 5.6 reserved keyword warning &overload::unimport( 'overload', '""', 'eq', 'ne' ); &overload::import( 'overload', '""' => sub { ${$_[0]} == 1 ? '1' : '0' }, # GH 29 'eq' => sub { my ($obj, $op) = $_[2] ? ($_[1], $_[0]) : ($_[0], $_[1]); #warn "eq obj:$obj op:$op len:", length($op) > 0, " swap:$_[2]"; if (ref $op) { # if 2nd also blessed might recurse endlessly return $obj ? 1 == $op : 0 == $op; } # if string, only accept numbers or true|false or "" (e.g. !!0 / SV_NO) elsif ($op !~ /^[0-9]+$/) { return "$obj" eq '1' ? 'true' eq $op : 'false' eq $op || "" eq $op; } else { return $obj ? 1 == $op : 0 == $op; } }, 'ne' => sub { my ($obj, $op) = $_[2] ? ($_[1], $_[0]) : ($_[0], $_[1]); #warn "ne obj:$obj op:$op"; return !($obj eq $op); }, fallback => 1); } our ($true, $false); BEGIN { if ($INC{'JSON/XS.pm'} and $INC{'Types/Serialiser.pm'} and $JSON::XS::VERSION ge "3.00") { $true = $Types::Serialiser::true; # readonly if loaded by JSON::XS $false = $Types::Serialiser::false; } else { $true = do { bless \(my $dummy = 1), "JSON::PP::Boolean" }; $false = do { bless \(my $dummy = 0), "JSON::PP::Boolean" }; } } BEGIN { my $const_true = $true; my $const_false = $false; *true = sub () { $const_true }; *false = sub () { $const_false }; } sub is_bool($) { shift if @_ == 2; # as method call (ref($_[0]) and UNIVERSAL::isa( $_[0], JSON::PP::Boolean::)) or (exists $INC{'Types/Serialiser.pm'} and Types::Serialiser::is_bool($_[0])) } XSLoader::load 'Cpanel::JSON::XS', $XS_VERSION; 1; =head1 SEE ALSO The F command line utility for quick experiments. L, L, L, L, L, L, L, L, L, L, L, L, L L L =head1 AUTHOR Reini Urban Marc Lehmann , http://home.schmorp.de/ =head1 MAINTAINER Reini Urban =cut JSON/XS/Type.pm000044400000024035152344706520007140 0ustar00package Cpanel::JSON::XS::Type; =pod =head1 NAME Cpanel::JSON::XS::Type - Type support for JSON encode =head1 SYNOPSIS use Cpanel::JSON::XS; use Cpanel::JSON::XS::Type; encode_json([10, "10", 10.25], [JSON_TYPE_INT, JSON_TYPE_INT, JSON_TYPE_STRING]); # '[10,10,"10.25"]' encode_json([10, "10", 10.25], json_type_arrayof(JSON_TYPE_INT)); # '[10,10,10]' encode_json(1, JSON_TYPE_BOOL); # 'true' my $perl_struct = { key1 => 1, key2 => "2", key3 => 1 }; my $type_spec = { key1 => JSON_TYPE_STRING, key2 => JSON_TYPE_INT, key3 => JSON_TYPE_BOOL }; my $json_string = encode_json($perl_struct, $type_spec); # '{"key1":"1","key2":2,"key3":true}' my $perl_struct = { key1 => "value1", key2 => "value2", key3 => 0, key4 => 1, key5 => "string", key6 => "string2" }; my $type_spec = json_type_hashof(JSON_TYPE_STRING); my $json_string = encode_json($perl_struct, $type_spec); # '{"key1":"value1","key2":"value2","key3":"0","key4":"1","key5":"string","key6":"string2"}' my $perl_struct = { key1 => { key2 => [ 10, "10", 10.6 ] }, key3 => "10.5" }; my $type_spec = { key1 => json_type_anyof(JSON_TYPE_FLOAT, json_type_hashof(json_type_arrayof(JSON_TYPE_INT))), key3 => JSON_TYPE_FLOAT }; my $json_string = encode_json($perl_struct, $type_spec); # '{"key1":{"key2":[10,10,10]},"key3":10.5}' my $value = decode_json('false', 1, my $type); # $value is 0 and $type is JSON_TYPE_BOOL my $value = decode_json('0', 1, my $type); # $value is 0 and $type is JSON_TYPE_INT my $value = decode_json('"0"', 1, my $type); # $value is 0 and $type is JSON_TYPE_STRING my $json_string = '{"key1":{"key2":[10,"10",10.6]},"key3":"10.5"}'; my $perl_struct = decode_json($json_string, 0, my $type_spec); # $perl_struct is { key1 => { key2 => [ 10, 10, 10.6 ] }, key3 => 10.5 } # $type_spec is { key1 => { key2 => [ JSON_TYPE_INT, JSON_TYPE_STRING, JSON_TYPE_FLOAT ] }, key3 => JSON_TYPE_STRING } =head1 DESCRIPTION This module provides stable JSON type support for the L encoder which doesn't depend on any internal perl scalar flags or characteristics. Also it provides real JSON types for L decoder. In most cases perl structures passed to L come from other functions or from other modules and caller of Cpanel::JSON::XS module does not have control of internals or they are subject of change. So it is not easy to support enforcing types as described in the L section. For services based on JSON contents it is sometimes needed to correctly process and enforce JSON types. The function L takes optional third scalar parameter and fills it with specification of json types. The function L takes a perl structure as its input and optionally also a json type specification in the second parameter. If the specification is not provided (or is undef) internal perl scalar flags are used for the resulting JSON type. The internal flags can be changed by perl itself, but also by external modules. Which means that types in resulting JSON string aren't stable. Specially it does not work reliable for dual vars and scalars which were used in both numeric and string operations. See L. To enforce that specification is always provided use C. In this case when C is called without second argument (or is undef) then it croaks. It applies recursively for all sub-structures. =head2 JSON type specification for scalars: =over 4 =item JSON_TYPE_BOOL It enforces JSON boolean in resulting JSON, i.e. either C or C. For determining whether the scalar passed to the encoder is true, standard perl boolean logic is used. =item JSON_TYPE_INT It enforces JSON number without fraction part in the resulting JSON. Equivalent of perl function L is used for conversion. =item JSON_TYPE_FLOAT It enforces JSON number with fraction part in the resulting JSON. Equivalent of perl operation C<+0> is used for conversion. =item JSON_TYPE_STRING It enforces JSON string type in the resulting JSON. =item JSON_TYPE_NULL It represents JSON C value. Makes sense only when passing perl's C value. =back For each type, there also exists a type with the suffix C<_OR_NULL> which encodes perl's C into JSON C. Without type with suffix C<_OR_NULL> perl's C is converted to specific type according to above rules. =head2 JSON type specification for arrays: =over 4 =item [...] The array must contain the same number of elements as in the perl array passed for encoding. Each element of the array describes the JSON type which is enforced for the corresponding element of the perl array. =item json_type_arrayof This function takes a JSON type specification as its argument which is enforced for every element of the passed perl array. =back =head2 JSON type specification for hashes: =over 4 =item {...} Each hash value for corresponding key describes the JSON type specification for values of passed perl hash structure. Keys in hash which are not present in passed perl hash structure are simple ignored and not used. =item json_type_hashof This function takes a JSON type specification as its argument which is enforced for every value of passed perl hash structure. =back =head2 JSON type specification for alternatives: =over 4 =item json_type_anyof This function takes a list of JSON type alternative specifications (maximally one scalar, one array, and one hash) as its input and the JSON encoder chooses one that matches. =item json_type_null_or_anyof Like L|/json_type_anyof>, but scalar can be only perl's C. =back =head2 Recursive specifications =over 4 =item json_type_weaken This function can be used as an argument for L, L or L functions to create weak references suitable for complicated recursive structures. It depends on L module. See following example: my $struct = { type => JSON_TYPE_STRING, array => json_type_arrayof(JSON_TYPE_INT), }; $struct->{recursive} = json_type_anyof( json_type_weaken($struct), json_type_arrayof(JSON_TYPE_STRING), ); If you want to encode all perl scalars to JSON string types despite how complicated is input perl structure you can define JSON type specification for alternatives recursively. It could be defined as: my $type = json_type_anyof(); $type->[0] = JSON_TYPE_STRING_OR_NULL; $type->[1] = json_type_arrayof(json_type_weaken($type)); $type->[2] = json_type_hashof(json_type_weaken($type)); print encode_json([ 10, "10", { key => 10 } ], $type); # ["10","10",{"key":"10"}] An alternative solution for encoding all scalars to JSON strings is to use C method of L itself: my $json = Cpanel::JSON::XS->new->type_all_string; print $json->encode([ 10, "10", { key => 10 } ]); # ["10","10",{"key":"10"}] =back =head1 AUTHOR Pali Epali@cpan.orgE =head1 COPYRIGHT & LICENSE Copyright (c) 2017, GoodData Corporation. All rights reserved. This module is available under the same licences as perl, the Artistic license and the GPL. =cut use strict; use warnings; BEGIN { if (eval { require Scalar::Util }) { Scalar::Util->import('weaken'); } else { *weaken = sub($) { die 'Scalar::Util is required for weaken' }; } } # This exports needed XS constants to perl use Cpanel::JSON::XS (); use Exporter; our @ISA = qw(Exporter); our @EXPORT = our @EXPORT_OK = qw( json_type_arrayof json_type_hashof json_type_anyof json_type_null_or_anyof json_type_weaken JSON_TYPE_NULL JSON_TYPE_BOOL JSON_TYPE_INT JSON_TYPE_FLOAT JSON_TYPE_STRING JSON_TYPE_BOOL_OR_NULL JSON_TYPE_INT_OR_NULL JSON_TYPE_FLOAT_OR_NULL JSON_TYPE_STRING_OR_NULL JSON_TYPE_ARRAYOF_CLASS JSON_TYPE_HASHOF_CLASS JSON_TYPE_ANYOF_CLASS ); use constant JSON_TYPE_WEAKEN_CLASS => 'Cpanel::JSON::XS::Type::Weaken'; sub json_type_anyof { my ($scalar, $array, $hash); my ($scalar_weaken, $array_weaken, $hash_weaken); foreach (@_) { my $type = $_; my $ref = ref($_); my $weaken; if ($ref eq JSON_TYPE_WEAKEN_CLASS) { $type = ${$type}; $ref = ref($type); $weaken = 1; } if ($ref eq '') { die 'Only one scalar type can be specified in anyof' if defined $scalar; $scalar = $type; $scalar_weaken = $weaken; } elsif ($ref eq 'ARRAY' or $ref eq JSON_TYPE_ARRAYOF_CLASS) { die 'Only one array type can be specified in anyof' if defined $array; $array = $type; $array_weaken = $weaken; } elsif ($ref eq 'HASH' or $ref eq JSON_TYPE_HASHOF_CLASS) { die 'Only one hash type can be specified in anyof' if defined $hash; $hash = $type; $hash_weaken = $weaken; } else { die 'Only scalar, array or hash can be specified in anyof'; } } my $type = [$scalar, $array, $hash]; weaken $type->[0] if $scalar_weaken; weaken $type->[1] if $array_weaken; weaken $type->[2] if $hash_weaken; return bless $type, JSON_TYPE_ANYOF_CLASS; } sub json_type_null_or_anyof { foreach (@_) { die 'Scalar cannot be specified in null_or_anyof' if ref($_) eq ''; } return json_type_anyof(JSON_TYPE_CAN_BE_NULL, @_); } sub json_type_arrayof { die 'Exactly one type must be specified in arrayof' if scalar @_ != 1; my $type = $_[0]; if (ref($type) eq JSON_TYPE_WEAKEN_CLASS) { $type = ${$type}; weaken $type; } return bless \$type, JSON_TYPE_ARRAYOF_CLASS; } sub json_type_hashof { die 'Exactly one type must be specified in hashof' if scalar @_ != 1; my $type = $_[0]; if (ref($type) eq JSON_TYPE_WEAKEN_CLASS) { $type = ${$type}; weaken $type; } return bless \$type, JSON_TYPE_HASHOF_CLASS; } sub json_type_weaken { die 'Exactly one type must be specified in weaken' if scalar @_ != 1; die 'Scalar cannot be specfied in weaken' if ref($_[0]) eq ''; return bless \(my $type = $_[0]), JSON_TYPE_WEAKEN_CLASS; } 1; JSON/XS/Boolean.pm000044400000000726152344706520007577 0ustar00=head1 NAME Cpanel::JSON::XS::Boolean - true and false values =head1 SYNOPSIS # do not "use" yourself See L =head1 DESCRIPTION This module exists only to provide overload resolution for Storable and similar modules and interop with L booleans. See L for more info about this class. =cut use Cpanel::JSON::XS (); 1; =head1 AUTHOR Marc Lehmann http://home.schmorp.de/ =cut JSON/XS/.packlist000064400000000636152345456470007506 0ustar00/usr/local/bin/cpanel_json_xs /usr/local/lib64/perl5/Cpanel/JSON/XS.pm /usr/local/lib64/perl5/Cpanel/JSON/XS/Boolean.pm /usr/local/lib64/perl5/Cpanel/JSON/XS/Type.pm /usr/local/lib64/perl5/auto/Cpanel/JSON/XS/XS.so /usr/local/share/man/man1/cpanel_json_xs.1 /usr/local/share/man/man3/Cpanel::JSON::XS.3pm /usr/local/share/man/man3/Cpanel::JSON::XS::Boolean.3pm /usr/local/share/man/man3/Cpanel::JSON::XS::Type.3pm JSON/XS/XS.so000055500001564430152345456470006601 0ustar00ELF>.@@8 @%$8989 P:P:!P:! h:h:!h:!888$$999 Std999 Ptd)))QtdRtdP:P:!P:!GNU.@9#|q pP  psBE|>uqXfx @IVel9Uyoer @/l.Eof Nx#Q1U5A%`', b7F"C "@!5@!b ` )@!__gmon_start___ITM_deregisterTMCloneTable_ITM_registerTMCloneTable__cxa_finalizelibpthread.so.0memcmpPerl_sv_growPerl_sv_2pv_flags__stack_chk_failPerl_hv_commonstrtodPerl_sv_free2PL_thr_keypthread_getspecificPerl_sv_cmp_flagsPerl_newSVpvn_flagsPerl_sv_derived_fromPerl_croak_nocontextPerl_croak_xs_usagePerl_sv_newmortalPerl_sv_setiv_mgPerl_sv_2iv_flagsPerl_stack_growPerl_sv_2uv_flagsPerl_sv_chopPerl_sv_setuv_mgPerl_warn_nocontextPerl_newSVPerl_gv_stashpvPerl_newRV_noincPerl_sv_blessPerl_sv_2mortalPerl_gv_stashpvnPerl_push_scopePerl_newSVpvnPerl_load_modulePerl_pop_scopestrlenPerl_get_cvn_flagsPerl_call_svPerl_markstack_growPerl_utf8_lengthPerl_get_svPerl_newSVpvmemcpyPerl_utf8n_to_uvuniPerl_newSVsv__sprintf_chkPL_hexdigitPerl_hv_placeholders_getPerl_newSV_typePerl_newRVPerl_amagic_callPerl_sv_copypv_flagsPerl_mg_getPerl_sv_pvutf8n_forcePerl_mg_setPerl_sv_taintedPerl_sv_setsv_flagsPerl_hv_common_key_lenPerl_av_pushPerl_av_lenPerl_gv_stashsvPerl_gv_fetchmethod_autoloadPerl_savetmpsPerl_av_fetchPerl_free_tmpsPerl_sv_catpvn_flagsPerl_eval_svPerl_newSVivPerl_grok_numberPerl_newSVnvPerl_gv_add_by_typePerl_sv_2bool_flagsPerl_hv_iterinitPerl_hv_iternext_flagsPerl_hv_iterkeysvPerl_av_extendPerl_av_storePerl_newSVuvPerl_sv_utf8_upgrade_flags_growPerl_sv_upgradePerl_sv_utf8_downgradePerl_save_vptrPerl_pv_uni_displaymemmovePerl_block_gimmePL_utf8skipstrcmpgcvtstrchrmodf__snprintf_chkPerl_sv_2nv_flagsPL_nanPL_infPerl_call_methodmemsetPerl_hv_itervalqsortPerl_safesysfreePerl_safesyscallocPerl_mg_findPerl_safesysreallocboot_Cpanel__JSON__XSPerl_xs_handshakePerl_newXS_deffilePerl_apply_attrs_stringPerl_newXS_flagsPerl_my_cxt_initPerl_newCONSTSUBPerl_get_cvPerl_xs_boot_epiloglibperl.so.5.26libc.so.6_edata__bss_start_endGLIBC_2.2.5GLIBC_2.14GLIBC_2.4GLIBC_2.3.4U ui :Fii Qui :ti [P:!.X:!.`:!`:!?!?!?!+?!=?!\?!]?!c?!h?!l!4>!5>!6>!7 >!8(>!90>!:8>!;@>!<H>!>P>!?X>!@`>!Ah>!Bp>!Cx>!D>!E>!F>!G>!H>!I>!J>!K>!L>!M>!N>!O>!P>!Q>!R>!S>!T?!U?!V?!W?!X ?!Y(?!Z0?![8?!^@?!_H?!`P?!aX?!b`?!dh?!ep?!fx?!g?!h?!i?!j?!k?!m?!n?!oHH!HtH5J!%K!hhhhhhhhqhah Qh Ah 1h !h hhhhhhhhhhqhahQhAh1h!hhhh h!h"h#h$h%h&h'qh(ah)Qh*Ah+1h,!h-h.h/h0h1h2h3h4h5h6h7qh8ah9Qh:Ah;1h<!h=h>h?h@hAhBhChDhEhFhGqhHahIQhJAhK1hL!hMhNhOhPhQhRhShThUhVhWqhXahYQhZAh[1h\!h]h^h_h`hahbhchdhehf%!D%!D%!D%!D%!D%!D%!D%!D%!D%!D%!D%}!D%u!D%m!D%e!D%]!D%U!D%M!D%E!D%=!D%5!D%-!D%%!D%!D%!D% !D%!D%!D%!D%!D%!D%!D%!D%!D%!D%!D%!D%!D%!D%!D%!D%!D%!D%}!D%u!D%m!D%e!D%]!D%U!D%M!D%E!D%=!D%5!D%-!D%%!D%!D%!D% !D%!D%!D%!D%!D%!D%!D%!D%!D%!D%!D%!D%!D%!D%!D%!D%!D%!D%}!D%u!D%m!D%e!D%]!D%U!D%M!D%E!D%=!D%5!D%-!D%%!D%!D%!D% !D%!D%!D%!D%!D%!D%!D%!D%!D%!D%!D%!D%!D%!DH=!H!H9tH!Ht H=!H5!H)HHH?HHtH}!HtfD=y!u+UH=Z!Ht H= !dQ!]wHHwH9s9I&A$ wIsH9vHHfD#t f.GtH9vHP EtH HA w MIIAHH9wUSHHHHyH@HcOHcPHpH9HHHGH)DDH[]HH H9NvfUHSHHHvH+nHHH9HCHTFu HH9QseHsHFHHHHVH@HDHCH[]ff.HV dH%(HD$1ʃ wFH$t5 uBHHPHFH$Hu1t 0t+H|$dH3<%(uHÐH1H$1Ht&:xCDIHIH8x'L9uE1HjAPAH1j$H(A?-t 1@HH1fW9H@HtVvV@ff.H HcN!HoxHHp0H@0HtF u<t%= tVvVf;ff.H !ATIUHS8HHEH8H@HHt HcPu@HhI$H8HHHHt HcQuCHqHH߹[]A\CLH HLHH yH@UHSHHH !8HUH HHIHRHqHRH1[]ff.ATUSHGxHHHPHWxHWHchHH)HHHcL$LH2F HNAt~Lcg !H H9JHH9t!HOHt>HSLHHHHAHx8ueH@0H8HHDHHCLH[]A\ÐHCH@ DtH=1DH=Y1 f.H=i1HH5AUATUSHHHGxHHPHWxHWHchHH)HH7HG@#HHHGL,HcH4L$F HNALc !H H9JHH9tHHPt\HSHHHHAJl"PEAE t}IUAE LmLcL#H[]A\A]@HCH@ DtH=1DH=1f.HSILHM~HH5YfAWAVAUATUSHHHGxL?HPLHWxHcHGIDjHH)HUgMcJ4V HNALc !H H9JHH9t#HHHCJHJLqAMcJ4F % =HH@ HHcAFEHC HI)L)HHCIwJIGH3H[]A\A]A^A_JP ftH=1DH=91f.ofDH#MfDLLHeITHH5iH=E1~ff.AUATUSHHHGxHHPHWxHWHchHH)HH7HG@#HHHGL,HcH4L$F HNALc!H H9JHH9tHHt\HSHHHHAJl"HcPAE t}IUAE LmLcL#H[]A\A]@HCH@ DtH=<1=DH=y1*f.HSILH~HH5fAWAVAUATUSHHHGxL?HPLHWxHWHcIDhHH)HE7McJ4F HNALc,!H H9JHH9tHHgt{HSJHHLq1~$AMcJ4F % =~H@ HcIFHC HI)L)H~vHCIwJIGH3H[]A\A]A^A_@HCJ@ DtH=1DH=1fH3t@LLH%IoHH5>Nff.AWAVAUATUSHHHGxL?HPLHWxHWHcIDhHH)HE7McJ4F HNALc!H H9JHH9tHtHt{HSJHHLq~ AMcJ4F % =uH@ HcAFHC HI)L)H~wHCIwJIGH3H[]A\A]A^A_DHCJ@ DtH=1DH=A1fHufDLLHInHH5ff.AUATUSHHHHCxL#HPLHSxHSHchHH)HHHcH4F HVBHHc=!H Dh(H HHH9tHH%HCHtIHPHjHS ID$H)H~`DmHhHPHEHPL#H[]A\A]@ DtH=1DH=1fHHH-L`H5 [ff.AWAVAUATUSHHHHCxL+HPLHSxHcHCIDbHH)HUMcJ4V HNAHLc!H9Dz(H JHH9t#HzHHCJHJLAANHcH4ȋF % =HP AAD!AHcHS HI)L)HHSIEJIUHH[]A\A]A^A_JP ftH=1DH=)1f.AD ADA\HLD$LD$*fLLH=I;H5ifATUSHHHCxHKH3HPHSxHchHH)HHHcH4L$F HVBLc H H:JHH9tHHtiHKHHPHjHU8Ht9Hu0F % =u}HFHHHE8E@EDHKJD!H[]A\f.HCH@ DtH=<1=DH=y1*f.1ҹHqHU8Hu0kH5AUATUSHHHGxHHPHWxHWHchHH)HH7HG@#HHHGL,HcH4L$F HNALc% H H9JHH9tH H`t\HSHHHHIAE Jl"Qt~IUAE LmLcL#H[]A\A]DHCH@ DtH=1DH=1f. HSILHm}HH5.ifAUATUSHHHGxHHPHWxHWHchHH)HH7HG@#HHHGL,HcH4L$F HNALc H H9JHH9tH}Ht\HSHHHHIAE Jl"Qt~IUAE LmLcL#H[]A\A]DHCH@ DtH=,1-DH=i1f.{HSILH}HH5fAWAVAUATUSHHHGxL/HPLHWxHcHGIDbHH)HUgMcJ4V HNALc H H9JHH9t#HHWHCJHJLyANHcH4ȋF % =H@ H=1KHcHS HI)L)HHSIEJIUHH[]A\A]A^A_JP tH=|1}DH=1jf.AGwfHLfDLLHI\HH5>ff.AWAVAUATUSHHHHCxH+HKHPHHSxHcPHH)HHTHcLeH4ыF % =L~HcL H PHL,fHIƋ@ %_DAF IF@@@@ @0HH@HNOSJHC L)HHJSON::XSI3WHCpanel::I3H tRLHbILHLHHHHKID$H+H[]A\A]A^A_@AuMm1HIfLLH-IHh?H5UDU 1HSHHH5~!H9t1ɺH5nH1H9H[]HL VIxJJI x=DBOEx.DRO ExH HHH IHL L fHHHff.UHSHHCt>Hc' H H HHH9QH9Q@ H9Q H[]fH(¸yCuH1[]ff.AVIAUIATUSHL'H5?H#E1E11H¾1HHHHCxHPHSxH;LH+CHHC L)HLIl$LHHID$HC H)H~LmH HH+H5HߺHH+H߅x HE@ u:[L]A\A]A^fD#HEH [HE]A\A]A^HHHuHfDHHLLH=IDH6HHr HDHHHHHÐAVIAUIATMUHSHF tCHH@ HEI$S AEyC t,HH@ I$HE[]A\A]A^@191HLs̐AVAUATUHH5jSHHHEH5o1ɺHHEH5U1ɺHHEH5;HHDH}HE0Hc H H5˹HL4кILh@ I$H:AM Hc H5HAL$ Le H L4кILh@ tKI$H:tAAM H1AL$ H5:Le( HE0H []A\A]A^%LHAD$ Ae IV_D%LHAD$ Ae IV7fHES7HHoxYHc HHpH HHH2ooHNoP V H@0HF0[AWAVAUATUSL$HH $L9uHhE1T$HDLd$@H|$H(HD$8Ht$dH4%(H$X@1D$ HD$(LEIL6\R_+HUHLI$@H9ULuD9u'%L)MyIEHxHpH;H9w4HHH9HBHTAEuH9sH|$LIEHxI}HLIEHXD$8E3MMAE IU%_DAE IEH@D$ tAM HD$L0fUBHD$@NHD$HUH5HEHMH5H rH|$HHuH H7<HI$@HUHH9|fIL)MH|$HLIHD$HH(LpHHL HmIIGII }\q}ugHD$HH(HII.HH$HzI HMN$LHHD$ H CLH ? CLH? CL؃? CB HUHH. HUHH HUHH HUHHHUHHHD$@PHD$L0E0HHU0HcHM0HcH}H|$HHuHH7<LKfHD$@t''HUHHCHUHH0HD$H5rHpHD$E1H(H$X@dH3<%(LHh@[]A\A]A^A_Ht$NxL<  HUHLHD$@H5iLHppfDHvHHt$ H)H><EDHPH9HPH\HHPH"fHPH9HPH\HHPH\wCSHPH9HPH\HHPH/=DHsH~H)HHHDHTFu HH9PsLHL$lHsHL$H~HHHHNHRHTHSHPHD$(dH3%( H8[]A\A]A^A_DHHPH9SqHPHH\HHPHrsHHPH9SsHPHH\HHPHf;HHPH9ScHPHH\HHPHnHHPH9SHPHH\HHPHtHHPH9S.HPHH\HHPHbT$Ct ĀHD$ IĀIUIH;HG H9C DIH%I H wDE1H Hl$ LH)HA>A}O?UMHD$ ? LcL9kp ĀD$ HLHIkLA?LHɀHHPHHsHNH)IHHHBITFu HH9PsLTHsHNJ)HHHNHRHTHSHsHNH)IHHHBITFu HH9PsLHsHNJ)HHHNHRHTHSHHPH9SHPH\HHPHH xH HAHLAHB*HHHH HHPH9SHPLHH \HHPHuHHBHH   H HQHLHH HQHLAHB(HHJH tHLHHPHD(RHvIL+vLHH9HBITFu HH9QsL{HsHFLHHHVH@HDHCHsHNH)IHHHBITFu HH9PsLHsHNJ)HHHNHRHTHS*HsHNH)IHHHBITFu HH9PsLHsHNJ)HHHNHRHTHSoHsIŹL+nLHHHBITFu HH9QsLSHsHFLHHHNHRHTHS-HsHNH)IHHHBITFu HH9PsLHsHNJ)HHHNHRHTHS:HsHNH)IHHHBITFu HH9PsLHsHNJ)HHHNHRHTHS%HL$HLEAA-H|$ ICKHsHNH)IHHHBITFu HH9PsLHsHNJ)HHHNHRHTHSHT$ HLHHHPHUHl$ u&HsLFL)HH HH HBHTFu HH;PvLHL$OHsHL$LFI<H;HHVH@HDHCHsH~H)HHHHBHTFu HH;PvLHL$HsHL$H~HHHHNHRHTHSHsHH+NHHHHBHTFu H>H;WvLHL$uHsHL$HFHHHHNHRHTHSIw2LH LA?HL?ɀʀHPHPwHIgLHHLH ?ɀHLA?H?ɀHLɀH%LH=Z1{HH=1jDAUATIUHSHHHHxH;~$H;HH"1)ALHHBHHHH;KYH "C u-HHHH;KsDH :C@H[]A\A]DHHHH;KH HHHH;KrHsIĿL+fLHHDITFu H>H9WsHHsHFLHHHHHvHRHTHSZfHHHH;KH H[]A\A]fDHvIAL+nLHIDITFu LI9PsHL$ HsL$ HFLHxHHHvHRHTHSqDHsIĿL+fLHHDITFu H>H9WsHHsHFLHHHHHvHRHTHSEfDHsIĿL+fLHHDITFu H>H9WsH9HsHFLHHHHHvHRHTHSfDHsIĿL+fLHHDITFu H>H9WsHѿHsHFLHHHHHvHRHTHSfDAWAVAUATUSHHHGxL?HPLHWxHcHGIDbHH)HU)McJ4V HNAAULc HcHH;WvL葹HsHFHHHHHHvHRHTHSfDHsHſH+nHHHDHTFu H>H;WvL)HsHFHHHHHHvHRHTHSfDH$E1HLAVIAVsDLLŹAF aH,$IM+E 2AH $ALHLkfDMufD@ }%9= I$Md$H@H$HLPHHLAHJH "H $LHLHHPH"HcUQULLHL0IxLLM&MA?+E H5LǶt=H5sL诶t%H5`L藶t A?-infyHELH0wbC]z<NH5LG7H5L+H5ؒLE1EHHLmLLb DHLLL荹AD$ 覴HL{LH`HL@ % =t]VLH;1LH EHH5HDH= H1肶AAiLH޶H@E1HLHnHLE1HOLLDHsHL(~LHcH@f.AWIAVAUATUSHhHdH%(HD$X1 A@HH A_H$AGhAGhA;GM7IwI9AA$H&AAЀ I H L裶LHHD$(胱IH9t"HHL(E@MtAUAUM7A<} A"|$߁|$߁|$D߁\$@HD|$ ID\$D\$E<"3I1M7INfjA@8ILH)HD$H=^HE1HAjL$ LHt$.IXZMD$08IwIFIH9A~:JIFIH9A>:AN:"HIH9 A$ * H&H H9vHIf.HHHt Hװ"LLWH@H|$XdH3<%(HHh[]A\A]A^A_f.HH OHAGhAGhA;GIIwH9I&A$ +mIcH9vHIDHFH)H~ ;falsoH1IG-DF@HVHHH9 %A$I&< 6IH9sHIH؀-u HCHK00 HIJЀ v.߀EH)IHtHL<-cA H5DHcH>DFHHHt H轮'LL=HDHFH)HO;nullCHHHt HjI$8LZHfHFH)H_;trueSHc H HL,HHt HAG@}I$hLH%DHٖ1IGfDH$HtZ L~LHH$_IH9t"HHLE@MtAUAUI&I8]{E1Ht1L֬H4$LHIĮLLLfHtCHHL裮IIwH9SA$р HzIGHtSSAoh11LLIHZ@ %L-I8)QHI1LLIH@ H@x H$Hc I$ LH4$H,a1LLHD$OI$H1HHLέHD$H/LLID$xHID$xI;$lHHL$I+T$HHID$ H)HH9HCLsHD$HE0HCHD$HH~^1Lt$L4$Ll$ IHfLLLMHJDII9uHD$LLt$Ll$ HHD$HD$LI$HD$H@HpήA`NOSJI$AVgAVLLHCHHtCI$ID$XI9D$PL@HD$(Hv#O ]n,\HPIH9A$< &IH9vHI<# ]AGHIIH9HIQHf.Iu LtH@HPI@0< ZfHIHЀ v:kIFIL9A<@<\@@DT$E@8ui@E1Mt<1LL\$8ɢHLHjL$ IA$Ht$8I蓦^_L\$8LLLL\$89IHtaL$ t|$0L\$8 L$H4$HLvIIwH9sO$ HIGH$HP P@} ,uLpM7I9R$AЀ v H&HL9vIM7#uAGUH9w:t,HI w HHH҃H9wH9Q @LLHHHE1E11jHLjjHt$ H HID$ IIWH9sGA$ H~IGfH&HLd:uHIH9s7A$ w#H&HsH9sHIDE1Mt91L6HE1E1j1HLPHD$HjHt$H0H LT$0LLLH t$ „T$t M HE1E11jHLPjHt$ עH SSF@#AGH9vHPf@I Hп w LHH׃HH9wf.$р SA>:O/@#A>:#WAGH9v@Hp@t+I7H w LHH׃HH9wH9@8#'AGH9vHpf@I7H w LHH׃HH9wf.<#H9sHCD@IHÿ w LHH׃HH9wf.#?AG4H9vHP @I Hп w LHH׃HH9wf.#?EL9IF t,IIƺ w LHH҃HL9w@L9GIM7;H`{IG1nfDH&HH9HItAGH9HPfD@I Hп w LHH׃HH9wfH&HeHHIPHȍr@ 'H1IGAGH9 HBfD@!IH¿ w LHH׃HH9wf.HHy1IGfDH1HFfDHIGHIG{eHc_ H HL,HHt H[AG@tI$PLDH|@Iu(L,Hd@HxE1IGDP9T$<"t<'^<''DI1M7@HLHHIIGNAkH×DHcH>CSi'SiS4PCkdHcHL耞HxCSi/SkdS4PCSkd0C4BCCPs0Ha1IGfDAGI9sIFfDIIƺ w HHH҃HL9wZH-wIGD$DD$ E1ۅHE1A HjL$ LHt$襜AYAZLMtACDD$@E~A{ `ICx RHIGMDIsHLL\$0TL\$0HLL$H4$MYT$@AgD$@LL1苜LL{HHIPHDL$DEDD$ E1EHE1E11jHLjjHt$ šH LpMtAF|$@A~ IFx fDH1IGDtHHz Hff.@(H4$L耛HLpAGH9HP EI HA w IIIAHH9wH1IG&HpI7HHHsIGCLLؚRHL)HLLL訚1LٚH@H+HI1HLdHLϔOHNHC80?F IHIIMƉn<IIUHhH9s HAHAE1ɺLH覒D$H$AG u%IHyHWoH9QeDAoEAoMAoU Ao]0Aoe@$D$x$$$IGHD$`IHBH$HD$pHD$hDŽ$L$xHD$`Ht$hH9|$xA$I& IH9vHHD$`fHHzLHHH蜒INj@ <hLH辏Sf1LHD$H$xfDLH#'LHt$`HIMHD$`IW1H9rI7H~HHHH)H9HFH<$I $M D$yuAF 'IvH諮|$HL荑H$dH3%(H[]A\A]A^A_@HmHD$`Ht$hH9s(|$xA$I& 6hH9u4>u/H<$BH$I)GIHh"@#HlHD$pAVAVH<$HMg蠒HT$`HHo()l$op)t$ ox )|$0oh0)l$@op@)t$PH;T$hI+WAG tLH_HHt$pH=k1蹏fH$@H$I)GIHhH@H9r HHD$` w LHH҃H9w@IH9wHHD$`iAVAVH=y1fDAG ZIE8H$HIIO<HϺHL$H5jTHL$AEH$ƒAEIJHUIGL$HPAO Ae6fDHL-UjHD$P@HHHD$HT$`HL$hHAHHH)AH)HT$`H;T$hsE % =LmI+WAG tLH@HHt$pLH=vx1藍!H9r JHHD$` w LHH҃H9wHH=w1;LH-1ҹHHnHT$`I;LHHc[9OLH5hHIAEƒAEJL$K1蚌Ht9tf9t f9LH5hH<$#f.AUATUSHHHxLHKdH%(HD$h1HCxMHPHSxHcLHpHI)EI(LHDPA[HcHcHL,I)LŃrHcH4HcLLd$fDL$HD$HD$AD$AD$,AD$HCJ@ DtH=|e1}DH=e1jf.H< ~<#AFDDA lDAn@HHFx}wPIcL>>tKAFDH<"u"~fDt,HHp@<"a<\u~HFuAFDHIVH+qIv8H9s HAV@AFD<L;Iv0E1LLHUHS IHH)HL@Iv0LxHHD$HVI)F8AF@AFDHnHC@"<„(fDL;HD$dH3%(H([]A\A]A^A_fDA t&Eu @H< uAVDWAVD@H8<hfDEF@HAFDE2DHT$LHHT$IfDH؂IwHHAIF81ɺLHAD$ @A~@A~@WAV@A;VH=g1蕀DAFDDHA DAFDHqA~@WAV@*HD111ɺLH^IF8HIV0HrH= HHD H HHuH)IV81H5\HIIF0HHHLD$X|LD$?fDAFD^~HuIF8HH@]HHHfDHP@%IGHH=si1}@El$ EAA MD$A@ %=  IHHt @ AG % =DIoD% =It$HDH=i1}@I$H@ HAG HhI9 HPI9 AA xE1%IWB E% = IHPIGHT$@HD$Ht$1Hz '/H5jH{~HL$@HT$HIHAxLHAHWxLH`}LHHHFL0MAF $ < HH0HHF % =HHPHT$@LvA>+OHHHH}HELHT$@H|$HD$izHUHD$@Lu.H€t AG HF AG HhI9teHPI9u<t IHH@HwHIG80E1HHH Uvk@nuYu<t%=  E Ao % =!IGHƉH=i1yfMgAD$ Щ) (  LH~3E  @LHzHHyLHߋ@ % = zHHy1HHwHH=mf1yfD<%= E1HHH>THD$HdH3%(XHX[]A\A]A^A_E1HD$0HD$8D$, IHR D$,HT$8HT$0?HD$8HxH=;Ld$8HH|HELuDHD$DA1A-HEA)HEEihDҍJ0@AC@HUHU@΍y0@%@:@HUHU@΍y0@%@:@HUHUy0@:1@%HUHU0HEHPHU@EnAG @cMgLLuLIHHLhHD$LuHE~{HELHPHUL"EG A HHHHC{HEHPHU"HEE ufI@(/HHD$zHEED$HD$HEHD$0f(fT tf. t~ f.fH~AHJtHD$D$Ht$vLuA>infA>nanA>-EEo A@tIGLHHD$kt#EL"sIAeLDsHEL.sHH|$.sHj.0Cf H]HrHJD}]f(fT rsf. sw f.Lt$AnullAFLu@LHUuAL$ DA NIWr A1 EH{vHHtP IAG  :DHt_EIH|$@@(qf.erLgqIH]f.I9 AG  @q% =iIMgH@HD$@HHwHEHPHUL"EG HL$@A HHtHHwHEHPHU"JMgAD$ Щx LH߃   wzbE1HHHM@ILd$0IwHLHPq|HT$0HD$,H9cHHT$8HT$0oEe @H5a`HqtIWAHIILHHn8LHAHj`nLHUsLHw}`NOSJHHFL MAD$  u<t  I$HH@H@LH=$M1;q]f.H|$0xHHxuHET$,LuHD$LL$8LML1H8mHHE`DHH@HRHDH0HDxt H6H1HH=4M11LH[qH*L AD$ D&AG % =IGHH=\1oDA~infA~nanE]<b < <EAG @IGLHHD$PnIHHL`HD$HEHD$HEsHELHPHUHT$"EG A RIMgH@HD$@HL$8HT$,LHLD$0辎D$,DLL$0LK LHHJ+DHT$@1LHmHT$@HD$9DE LHpHHnLHߋ@ % =oHHn1HHlHH=]1n@AG D1LH[mwfD1LH>lEl$ HE]<W <LH5jLuHH HjHhHPI9HHqHEE1HPHUHG"K1HLHHI\LjIvLHHBD1HL$8HT$,MLHxD$,HIHH@H]LH=]H1tl@tIHz yIff.@(afDHT$@1LHvjIfDƒT$, H?HT$@H.jHT$@IpIWB(EHL"M1ɺ H5EHsi1ɺHH5EHD$XiI9E1L;d$AG % =]IH@HD$@MgA<$+mA<$NaNA<$nanA<$infH5\FLiQHD$@HHHPHoH}HT$@LjHD$@HEHEEHCXH9CP HgtIHz Iff.@(fDL1HhHfDAG % =oMoAl$ % =:It$LH=8V1iHHT$0HT$8gfDE1f/%h'hʁ 1LHeHH0HHF % =MHHPHT$@LfA<$+5 HHHmH}HT$@LPhHD$@HEHELHpiAD$ HHFmHEE1HPHUHC"TA~n H!}  H Hc5:} I<$H4HH9NAH9NAEH9N|E ut O  t H $ff.G(|@MoAEH Hc {| H IUHH9Q@H9Q@@u H9QHEHPH9U HPHU"AE % =/ IEHx E1 HAHHbHEHPH9UHuH+FIHHDITFu HH9Ps HfHuHFLHEHHNHRHTHU@1LH#cK1HhH@L0Hc5I{ H I $HL1L9r@L9r@@L9rE@f8;LHgHHfLHߋ@ % = gHHlf1HH:d(D% =uiH TL1HcH1LHcI{Hz fWcLHaHHߺ2H5LOgIWHAIILHHaLHAH@a HT$@H+fA>Nat[fA>nafA>intSHD$@A>-infHP'Hs fW\fHT$@1LH\IA~NuA~fuHr IHl$@kUt@I$1ɺ HH5/8L([I9tu1ɺH5!8H[I9tZUЀ}1LHHELHGH&HID$80[LHHrwH8HHfLHYHE1111LHmYLLHYIHuH+FIHHDITFu HH9Ps H[HuHFLHEHHNHRHTHUAG % =u`IoD% =u9ID$HHD1H=I:\HcJDD AE111LHkZ븹1LHWZEt$ HHE]HT$@1LH.ZIAG 3HL#]HZHCxHHCxH;LH+SHHC L)HM|$IHL#H58DXHH0LhH\F AAA< t~HCxL+HHCxH;WLH+SHHC L)HM}IEH]7L+H5M7HHDAWHL8HH=tSHHqH@Hv!A\HVDFH=HFE180A*t9t HHz u HE1ff.@(ADE1H^VDE1LLHVINH[$IHl$@LLHSVIHH]L,6HIH}1UHEHH]IL5LE1HHH 3=aI$1H@t*HH@HRHDH0HtxtH6HtHH=G1XHZ'LLHaUIHYZHHXH@F1LHVYHHXH@$1LHV@1LHzVYHHXH@O1LHJVpYHHUXLHߋ@ % =GYHH,X1HHUHH=0E1WIH|$@@(wUf.U1HLEo HHI\I$1H@t*HH@HRHDH0HtxtH6HtHH=E1VXHHmWH@JE1111VH=D1VLHEXHH*WH@AWAVAUATUSHdH%(H$1F9FhA HHII<H$ HHHH;K H LH{CXVD$D$ AE t7^E1A1LHOTHuLHDd$ VD$ H$|$ @HD$D$E11LHSIHwH|$IcAH NjD$L9D$uIWHcB_D D$fkUuWAE uMH;HSHGH99 H}H$dH3%(HĨ[]A\A]A^A_f.1LH3SIHtC@ChL|$@L|$MMgAD$IHcATHHمLED$H<$D$rAE IWLHH21LHRIH HHHH;KH ,C@GHHHH;K H C-DchDc H;McJ'H9CL QL#MgAD$MD$AP % =u7IM`H@ HHPH;SH CHT$LƹHLD$fQLD$IHD$@AP CkhDHB@ % D$;HLE1jHt$A HTZYH0 L0AE _LLHTHJf.HsIĿL+fLHHDITFu H>H;WvHYQHsHFLHHHHHvHRHTHSfDD;d$  Hct$ ~7D\$EDT$H|$H _YHUEHDNCDd$ Ht$@ChHt$(ALl$ Lt$Ht$IcLH9WsH1LHsHFLHHHHHvHRHTHSfDHH@QHHPH ChH;HSD`DchCDc McJ'H9GL JH;HSLH;]HsIL+vLHL9IBITFu HH9PsH[KHsH~LH;HHVH@HDHCt@HsHH+NHHL9IBHTFu HH;PvHHL$JHsHL$H~HH;HHVH@HDHC f.HsHNH)IHHDITFu HH;PvHJHsHNJ!HHHNHRHTHSHPDHsIĿL+fLHHDITFu H>H9WsH!JHsHFLHHHHHvHRHTHSfDHsIL+fLHHDITFu HH;QvHIHsH~LHGH;HHNHRHTHSefDL4$M@HH@HRHDH0H8@t H6H%HH=:H$DHsIĿL+fLHHDITFu H>H;WvHHHsHFLHHHHHvHRHTHSfDHsH~H)IHHDITFu HH9PsHyHHsH~J7HHHNHRHTHSHP^DHHo)D$@oH)L$PoP )T$`oX0)\$po`@d$x)$JHGHHJDL$HD$@H HPHct$ H|$HEHXOHD_EHEXH9EPHEMLHIHHHLH@ % =lIHHH1HHoFIA^ % =IvLH=41GH'Ia]IHHBHLhfIHH2@(HH@HIHLHH It HHHpH=#$1ɺLHGHHL AD$ u<t LMt$AV %HsIƿL+vLHHDITFu H>H9WsHEHsHFLHHHHHvHRHTHSLH=6oFMMFLH=6UFL1HDHHsIL+nLHL9IBITFu HH;PvH6EHsH~LH;HHVH@HDHC]L1H-DHPGHH5FL`LH1GHHFLH@ % =tz GHHE1HHCIA^ % =u/IFHL1H=10ELHEAD$ 1LHiCFHHwEL`H=,1DB|$H!T$ DH5!H=4HD1DLH7FHHELH@ % =FHHD1HHBHH=W41PDLHEHHDLH@ % =EHHD1HH_BIA\$ % =u4ID$HL1H=0CYEHH>DH@T1LHB,EHHDLhff.AWIHAVAUATUHSH(HT$H $@IAGA9Gh; H$@ <E1 IHHI;OI[MAGhAGh1HI9Ht$1HHCIMt1HLHCHtHH$AGMH $ILHI9~IHHI;OI,AG@gIHHI;OHI I9PI?IWAGAohHGH9 I]H([]A\A]A^A_AOhAO I?HcHI9G[Hʾ HL$?HL$IME1LHHr IHPI;WI @I?IWK@H$L@A@  H$L$ o< zH$HHHt @Ht$HmBHHRAHt$H@ % =BBHH'A1HH>IDc D% =]HsLDH=J-1c@IwIL+FLHHDITFu H>H;Wv!HLD$T?IwLD$HFLHHIHHvHRHTIW@HGH9cI AGhI?IWXA_hAGA_ HcHH9Hھ =IIWHI@IHHI;O9I |@IwIL+VLHH9HBITFu HH9Ps'HLT$HL$Y>IwLT$HL$H~LI?HHVH@HDIG5IwHH+^HHHDHTFu HH9QsH=IwH^HHCI?HHNHRHTIWfDIwHÿH+^HHHDHTFu H>H9WsH=IwHFHHHIHHvHRHTIWfDHH@HRHDH0H@t H6HH H=/E1f.IwH~H)HHHDHTFu HH9PsHHL$HH=Ht$H@ % =,>HH=1HHS;IH4$^ % =HvLH=)1HH0=LhH4$H9I9L,$H$jIwIL+FLHHDITFu H>H;Wv!HLD$y;IwLD$HFLHHIHHvHRHTIWIHHBH HRHIHLHHIt HHHrH=€uj1ɺLHH9WsH7:IwHFHHHIHHvHRHTIWeIwIL+fLHH9HBITFu HH9PsH9IwH~LI?HHVH@HDIGIwHH+^HHHDHTFu HH9QsHy9IwH^HHCI?HHNHRHTIW;H޹1Hl8HH4$1HQ8Ht;HHY:L`HHU:C 4Ht$H@;HH%:Ht$H@ % =ti;HH91HH7IH4$^ % =uHFHL1H=%:9H4$1H7:HH9L`H=8 19Ht$H:HHi9Ht$H@ % =t3]:HHB91HH7HH=^)18*:HH9H@Ht$H :HH8Ht$H@ % =9HH81HH6IDc D% =HCHLD1H=$7C % =H[Ht$Hk9HHP8Ht$H@ % =tfD9HH)81HH5HHH=z(171HH5V8HH7Lh"8HH7H@H޹1H5H;AUIATIUHSHHdH%(HD$x1uF uHv\TdooK HoS o[0oc@D$L$(T$8\$Hd$X4HH 7HD$HPH$HHQL$D$hHT$-HT$pHLL` _HD$HH DLD$HT$H$H H+BHAHD$HHPHAD$t6H\$uFH|$xdH3<%(H,HĈ[]A\A]HD$H D$H\$tHH2HHxHwH9pw=H\$fDH=&1b5fH$HHH;L$sIH $ $DHpH{6HCDHҁHDHt$HAH~H)HHIDHTFu LI9PsH3Ht$H~HHHH$HHRHTHT$PL2ff.USHHHhH LCdH%(HD$X1HCxIHPHSxHcLHpII)EI(LHDPAHcHcHI4H)HH8~ HcI HfH;HD$ HBLBB,BH55"H@(-HH>H5="H@(f-HH>H5E"H@( F-HH>H5M"H@(@&-HHl>H5 H@( -HHL>H5 H@(,HH,>H5"H@(,HH >H5"H@(,HH=H5"H@(,HH=H5-"H@(f,HH=H5 H@(F,HH=H5 H@(&,HHl=H5 H@(,HHL=H5!H@(+HH,=H5 H@(+HH =H5!H@(+HHH5 )HHpWH5 t)HHXH5 ^)E1HL H SHH5 )E1HLx HH )HyH5 @(f)E1HL HH HH5q @(5)E1LV H HHHWH5] @()8HH5E= H@(%HHHHߺH52 B&H߾Hb*H- HHH%H߾@*H HHHk%H߾*H HHHI%H߾)HHHH'%H߾)HHHH%H߾)HHHH$H߾)HHHH$H߾t)HHHH$H߾R)HHHH}$H߾0)HHHH[$HߺH5$7)HHHH2$HߺH5[)HHH|H $HߺH5e(HHHjH#HH5^1%DHHH\[]A\$HHselfCpanel::JSON::XSself, infnan_mode= 1self, max_size= 0self, max_depth= 0x80000000ULself, enable= 1self, val= INDENT_STEPklassMath::BigIntMath::BigFloatEncodeEncode::decodeJSON::PP::BooleanJSON::XS::BooleanMojo::JSON::_BoolCpanel::JSON::XS::trueCpanel::JSON::XS::false'"' expectedsurrogate pair expectedself, cb= &PL_sv_undefself, cb= &PL_sv_yes\u%04x\u%04xself, key, cb= &PL_sv_undefreferencenullNaNnan-inf'"' or ''' expectedDuplicate keys not allowed':' expectedHash key too large) expected after tagTHAW");%-p'true' expected'false' expected'null' expected(end of string)UTF-32UTF-16%s, at character offset %dgarbage after JSON objectself, jsonstr, typesv= NULLself, jsonstr= 0bceilbflooris_negative%lu%ldFREEZETO_JSONCpanel::JSON::XS::Type::AnyOftied scalar, typesv= &PL_sv_undef4.39v5.26.0XS.cCpanel::JSON::XS::CLONECpanel::JSON::XS::ENDCpanel::JSON::XS::newCpanel::JSON::XS::allow_tagsCpanel::JSON::XS::asciiCpanel::JSON::XS::binaryCpanel::JSON::XS::canonicalCpanel::JSON::XS::indentCpanel::JSON::XS::latin1Cpanel::JSON::XS::prettyCpanel::JSON::XS::relaxedCpanel::JSON::XS::shrinkCpanel::JSON::XS::space_afterCpanel::JSON::XS::utf8Cpanel::JSON::XS::get_asciiCpanel::JSON::XS::get_binaryCpanel::JSON::XS::get_indentCpanel::JSON::XS::get_latin1Cpanel::JSON::XS::get_relaxedCpanel::JSON::XS::get_shrinkCpanel::JSON::XS::get_utf8Cpanel::JSON::XS::max_depthCpanel::JSON::XS::max_sizeCpanel::JSON::XS::sort_byCpanel::JSON::XS::encodeCpanel::JSON::XS::decodeCpanel::JSON::XS::incr_parseCpanel::JSON::XS::incr_textlvalueCpanel::JSON::XS::incr_skipCpanel::JSON::XS::incr_resetCpanel::JSON::XS::DESTROY$;$Cpanel::JSON::XS::_to_jsonCpanel::JSON::XS::encode_json$;$$Cpanel::JSON::XS::_from_jsonCpanel::JSON::XS::decode_jsonCpanel::JSON::XS::TypeJSON_TYPE_BOOLJSON_TYPE_INTJSON_TYPE_FLOATJSON_TYPE_STRINGJSON_TYPE_NULLJSON_TYPE_INT_OR_NULLJSON_TYPE_BOOL_OR_NULLJSON_TYPE_FLOAT_OR_NULLJSON_TYPE_STRING_OR_NULLJSON_TYPE_CAN_BE_NULLJSON_TYPE_ARRAYOF_CLASSJSON_TYPE_HASHOF_CLASSJSON_TYPE_ANYOF_CLASSstring is not of type Cpanel::JSON::XS. You need to create the object with newobject is not of type Cpanel::JSON::XSincr_text can not be called when the incremental parser already started parsinginvalid stringify_infnan mode %d. Must be 0, 1, 2 or 3The acceptable range of indent_length() is 0 to 15.exactly four hexadecimal digits expectedillegal backslash escape sequence in stringillegal hex character in non-binary stringexactly two hexadecimal digits expectedillegal octal character in non-binary stringexactly three octal digits expectedillegal unicode character in binary stringmissing low surrogate character in surrogate pairmissing high surrogate character in surrogate pairmalformed UTF-8 character in JSON stringunexpected end of string while parsing JSON stringinvalid character encountered while parsing JSON stringmalformed or illegal unicode character in string [%.11s], cannot convert to JSONout of range codepoint (0x%lx) encountered, unrepresentable in JSONcannot encode reference to scalar '%s' unless the scalar is 0 or 1 without allow_unknownencountered %s '%s', but allow_blessed, allow_stringify or TO_JSON/FREEZE method missingmalformed JSON string, neither tag, array, object, number, string or atomjson text or perl structure exceeds maximum nesting level (max_depth set too low?), or ] expected while parsing arrayInvalid dupkeys_as_arrayref hash key, or } expected while parsing object/hashmalformed JSON string, neither array, object, number, string or atommalformed JSON string, (tag) must be a stringmalformed JSON string, tag value must be an arraycannot decode perl-object (package does not exist)cannot decode perl-object (package does not have a THAW method)malformed number (leading zero must not be followed by another digit)malformed number (no digits after initial minus)malformed number (no digits after decimal point)malformed number (no digits after exp sign)require Math::BigInt && return Math::BigInt->new("require Math::BigFloat && return Math::BigFloat->new("attempted decode of JSON text of %lu bytes size, but max_size is set to %lu%s, at character offset %d (before "%s")JSON text must be an object or array (but found number, string, true, false or null, use allow_nonref to allow this)jsonstr, allow_nonref= NULL, typesv= NULLtype for '%s' was not specifiedencountered object '%s', but neither allow_blessed, convert_blessed nor allow_tags settings are enabled (or TO_JSON/FREEZE method missing)incorrectly constructed anyof type (%s, 0x%x) was specified for '%s'no scalar alternative in anyof was specified for '%s'encountered type (%s, 0x%x) was specified for '%s'encountered object '%s', but convert_blessed is not enabledcannot encode reference to scalar '%s' unless the scalar is 0 or 1encountered %s, but does not represent booleanrequire Math::BigFloat && Math::BigFloat->new("invalid stringify_infnan mode %c. Must be 0, 1, 2 or 3my $obj; require Math::BigFloat && ($obj = Math::BigFloat->new("")) && ($obj->is_negative ? $obj->bceil : $obj->bfloor);%s::FREEZE method returned same object as was passed instead of a new one%s::TO_JSON method returned same object as was passed instead of a new oneencountered %s, but JSON can only represent references to arrays or hashesencountered perl type (%s,0x%x) that JSON cannot handle, check your input datano hash alternative in anyof was specified for '%s'Unstable %shash key counts %d vs %d in subsequent runsno type was specified for hash key '%s'Cpanel::JSON::XS::Type::HashOfno array alternative in anyof was specified for '%s'array '%s' has different number of elements as in specified type '%s'Cpanel::JSON::XS::Type::ArrayOfhash- or arrayref expected (not a simple scalar, use allow_nonref to allow this)self, scalar, typesv= &PL_sv_undefCpanel::JSON::XS::allow_barekeyCpanel::JSON::XS::allow_bignumCpanel::JSON::XS::allow_blessedCpanel::JSON::XS::allow_dupkeysCpanel::JSON::XS::allow_nonrefCpanel::JSON::XS::allow_singlequoteCpanel::JSON::XS::allow_stringifyCpanel::JSON::XS::allow_unknownCpanel::JSON::XS::convert_blessedCpanel::JSON::XS::dupkeys_as_arrayrefCpanel::JSON::XS::escape_slashCpanel::JSON::XS::require_typesCpanel::JSON::XS::space_beforeCpanel::JSON::XS::type_all_stringCpanel::JSON::XS::unblessed_boolCpanel::JSON::XS::get_allow_barekeyCpanel::JSON::XS::get_allow_bignumCpanel::JSON::XS::get_allow_blessedCpanel::JSON::XS::get_allow_dupkeysCpanel::JSON::XS::get_allow_nonrefCpanel::JSON::XS::get_allow_singlequoteCpanel::JSON::XS::get_allow_stringifyCpanel::JSON::XS::get_allow_tagsCpanel::JSON::XS::get_allow_unknownCpanel::JSON::XS::get_canonicalCpanel::JSON::XS::get_convert_blessedCpanel::JSON::XS::get_dupkeys_as_arrayrefCpanel::JSON::XS::get_escape_slashCpanel::JSON::XS::get_require_typesCpanel::JSON::XS::get_space_afterCpanel::JSON::XS::get_space_beforeCpanel::JSON::XS::get_type_all_stringCpanel::JSON::XS::get_unblessed_boolCpanel::JSON::XS::indent_lengthCpanel::JSON::XS::get_indent_lengthCpanel::JSON::XS::get_max_depthCpanel::JSON::XS::get_max_sizeCpanel::JSON::XS::stringify_infnanCpanel::JSON::XS::get_stringify_infnanCpanel::JSON::XS::filter_json_objectCpanel::JSON::XS::filter_json_single_key_objectCpanel::JSON::XS::decode_prefix....................................................................-.......-...-.-,..,:L:::99\SlVlVlVlVlUdTlVlVlVlVTlVlVTTTTTTTTTTlVlVlVlVlVlVlVlVlVlVlVlVlVlVlVlVlVlVlVlVlVlVlVlVlVlVlVlVlVlVlVlVlVSlVlVlVlVlVlVlVlVlVlV4TlVlVlVlVlVlVlVUlVlVlVlVlVUlVlVlVlVlVlVP]]]T]]\]]hhhhJh|ށЁH(XX"-inf"  ;7H 4\hh8 8X `   T((txhhhh$ t(!!x# #(+h-h/ 0H 2x > @ C K Xm u w` y X{ D Ȫ HT zRx $`FJ w?:*3$"Dp\$p\HEAD {AA$tQDG UAAD z B $`XDqB B(J0ID,TW%0e,D(MDD ` ABH $tEEDG lCA,-FAA  ABB 8FBA A(G0 (A ABBE HDFBB B(A0A8G@  8A0A(B BBBH 8T FBA A(G0 (A ABBE H, FBB B(A0A8G@ 8A0A(B BBBE H FBB B(A0A8G@ 8A0A(B BBBF 8( EFBA A(J0 (A ABBI HdFBB B(A0A8JP 8A0A(B BBBI ,hFAA  ABK 8FBA A(G0 (A ABBF 8 FBA A(G0 (A ABBF HXtFBB B(A0A8G@ 8A0A(B BBBH HFBB B(A0A8J@) 8A0A(B BBBE $\PAKD {CAr0,rADD B AAC ]CAL`<BEE A(A0 (D BBBG Q (E BBBD |/\O<BEE D(D0@ (A BBBE <BLB A(K0E (A BBBH Hd]ESTdBBB B(A0A8H Q D 8A0A(B BBBH H#FBB B(A0A8G@# 8A0A(B BBBF H$FBB B(A0A8G@% 8A0A(B BBBD ,TH&7FAA  ABJ ,X'FAA J ABK H)k BFB B(D0D8Gp 8A0A(B BBBF L<4BBD D(G@y (A ABBF  (A ABBG hP6FBB B(A0A8GPXI`IhBpNPp 8A0A(B BBBD LXL`GhBpRPH9BBB E(D0D8GP 8A0A(B BBBH  @!BEB B(A0A8DNUA 8A0A(B BBBK k H[AJHBNHIGNxJGBNNSBJHBN1IJEIGBBNL aBBB B(A0A8G 8A0A(B BBBE <\ hFBA A(JX (A ABBF H kFBB B(A0A8GPR 8A0A(B BBBG H $mtFBB B(A0A8G@ 8A0A(B BBBH H4 Xn#FBB B(A0A8G` 8A0A(B BBBC L K  o L m:\''1U<<<F QQ[ X? ;C B:Q  ?6  }! ff. 3EQ #>I (>    ' `02 2 < -2G G Q uB\ \ f Eq q {       , A V    "  7  L  a  v    7)> ?Q y !* {2  G H & L 2 L > L I P ]  \: ' - L ^I. G0 ;5  = G> @  /A C ~$ P'E ( J 0 >N48 -P@@ [H 8\X (]h 7j x X L d LSJ 8 ~/UJ 8 ~1 ~ 14q DG6 ~ N)7 ~I q  -d:>.d =  d F t ~ iD > b% $$ d d I$ e t f~  g~ 2 h t A k ]F  dI  tI ~8  d! D  F d: G t\J H~B! ! XE! N*!9 9! - !!  o L~-!%T !' XE!( N*!)9 9!*- !+ DIR"`?IV#veUV#wLNV#E9l$ ~#/ OP#1 op(% _ %2 A)%2 A%K &%NJ0%E   %E ~>%E H%E 0%E F%E %E ;%E %1" %1#COP#2  copP&y_ &z2A)&z2A&zK&&zNJ!0&zE  ! &zE !~>&zE !H&zE !0&zE !F&zE !&zE !;&zE &z1"&z1#&}W2$l &NJ(F& d0$& $28%& $2<~,&S@]6& SH#8   `%E _ %2 A)%2 A%K &%NJ0%E   %E ~>%E H%E 0%E F%E %E ;%E %1" %1# % 2( ;% 20/%NJ8>%$2@% KH! %-LP3% 2XX'#< RHP%_ %2A)%2A%K&%NJ!0%E  ! %E !~>%E !H%E !0%E !F%E !%E !;%E %1"%1#% 2(;% 20#% 28% 2@&% 2Ha#G " #$ 7'#2#Iop'$2 8'%2 ''2 G'(2 #'*?b( ',20 '-24 H'/Eb8 '02@ '12D "'32H C'4P $'5X 30'6` &'8$2h !':Ebp (F'<Ebx '=Eb 'A1 v'Cv :'E2 *'HK ='K,C 'L,C v7'N2 ;G'O2 F'^2 '`1 K'a1 >'b2 /'n1 4'u1 1G'z2 N+'{2 7'}wV '~2 9'Kb ='2$G'e$H '2$1 '2$',C$#'Qb $@ 'Wb($G-'J0$h#'$8$*'$P$ '$h$G1'F1$ 'F1%ISv'2$']b$9'2%Ina'$c' $z' $,'2 $M('2(%Irs'20$'28$f'2@$6'2H$'P$H'2X$SG'2`$C'2h$'2p$'Tx$L"'T$9'pS$+$'2`$A'8h$p'2p$C'2x$n'2$/'2$'2$D'd$b '$3'2$E'1$h '2$'2$_;'2$'2&'cb&v ':a& '/:a&!'=a&>'?t&I'@d& 'B$2&FC'D$2&'F~&c'I~&m'Jt & 'K2(&?'L20&??'M28&@,'Nd@&@'OH&'P2P&L'Q2X&'T2`&: 'Usbh&ZB'Vp&9'X2x&\'Y2y&e'Z2z&S'[2{&('\2|&']2}&'^2~&'_2& 'ad&'b2&5%'d&'f2&d'h2&Z'l2&D'o~&m'pyb&'s2&'t2&v'u2&>'v2&n'w2&6K'z2&C'}2&F4'2& '2&pH'2&q'2&&'2&n?'2&'2&'b & '28&''2@&F'2H&&&'2P&'2X&!'2`& '2h&'2p&9D'2x&?%'d&EM'=&='2&h '2&`/'2&'2&{.'wV&E'~&'~&3'd&@'b&h:'d&'2&''2&*'2 '~&#'2&L'2&@'2&2'2&'~&X'2&E'2&4A'b&Q:'2&='b&' & '=p&'Jx&'NJ&L'NJ&1'=&:'~&'$2&1*'2&'2&k'2&'2&L'&!'&v'{&<'{'Ian' $2&FK' $2&,'$2&+'$2&K8'$2&<'t& 'd&H%'l5&R'!b&k8'#52`&'%$2d&e'']h&YA')2p&>'+2x&'',NJ& '.NJ&4'/NJ&0I'1NJ& '3NJ&D'6d&('7&'8&p'9$2&4@':1&$';2&C'=1&7'>2&7?'F2&E'G2& 'L`&Y2'N2&'SS&Z'W~&o,'Y2&=='[d&B'\2&'a2&%'b2&4'c2 &F'd2 &'f2 &'g2 &$4'j2 &K'k2( &'l20 &H9'm28 &)'n2@ &?'o2H &2'p2P &1'rbX &zI'sb &RH'tb( &:'u2 &r''v2 &)'w2 &4'x2 &)'y2 &4#'z2 &F'|2 &L4'}E &;'~ &'b &L'1 &@'2 &J'2 &='2 &r#'2 &E'b &,'2 &B'- & '2( &?'20 &~ 'b8 &+'NJ@ &'NJH &?'bP &t6'2X &'2` & 'T5h &87'bp &'bx &H'2 &'2 &G'2 &0'2 &4('2 &'2 &']a &X'2 &P3'2 &#H' &'] &1'] &!+'] &m0'] &,'] &t '^ &` '2 &#.'2 & '2 & '2 &''2 &'2( &?'b0 &L'b8 &f' a@ &!E'a &mI' b &' ~ & "']] &W&'"c &tL'-'/ SV#O $$sv('% y4(- .($2  ($2 (6AV#P 3%av(t% y4(u: .($2  ($2 (9HV#Q %hv(% y4(: .($2  ($2 ({:CV#R %cv(& y4(9 .($2  ($2 (k9{=#S &Z (b&y4(8.($2 ($2 (;GP#T n&gpP) ' }F) 2 *) HJ =) = -) $2 ) $2 @) 2 <) 2( >) =0 N ) 28=)E@-)E@ .) <HGV#U )'gv(j' y4(e9 .($2  ($2 (8 io('y4(;.($2 ($2 (;#W '`&?'1&CPW7F`&(T& 1(& 1=& 2T& 2& 20& 2 v9& wV:M& ,C*& & 2(4&+V00#Z ( 50*) /* < * X _C* 2 !L* o ;+* 1 "*  * 2 =* d(XPV#[ ) xpv (Z)*8(2x-(<((<A#\ g)(()*8(2x-(<((=tG(f<  #] ) ((**8(2x-(<(((=+(f< a#^ +*,0(**8(2x-(<((M=tG( f< (( #<(#_ *p0(**8(2x-(<((r=tG(f< ((#<(#b  + J(+ Z+ *8+ 2 x-+ < a<+  lG+  /+ 2 #c g+  ,+ *8, 2 x-,< 3, K,#d +g0(4,*8(52x-(5<(5(5=tG(6f< ((7#<(#e &, 0x2(q e8(r e@2(s eH^E(t dP=9(u 2X#(v d`F(w 2h>(x dpk (y 2x <(z o({ 1 0#i .. @* . n* &X )G* &X $* EX C* &X lB* &X J* sX( A* X0 * &X8ANY#j .(any#/)# -)>"#2)D#2)g#2)#2)#2) #2)6!#d)1#t)A# 2)# $2)# e)$# v)D# )7# 2)B# o2)_D# 2c>#{/~H#|F]D#}[U #~ -0#l /5=0#,0.#L]# v# vz#W]#F] #F](#m 90#((b09(c2?(dv1(e2(f2U%(g2 n #q 0 ?.0 a.  .&J %.' $2 :.( $2PAD#r '%^#s 0 (.+F1 e.,  K.-J +..  q./NJ b%.0 $2 } #t S1 \ 0.L1 L.Md >.M2 ).MJ :.M$2 6.M$2 J/.M$2 F.M~$ 3.M1( .M1)I8/SU8/-1I16/k1U16/92I32/~2U32/E$2*$2 02E2+:2F/E2/< $2o2-d29#w 6-K#y $222''%t%222-2 J01l4 ?03~ 06 d .07 d bA08 d :09 d 30: d( 0; d0 $0< d8 s"0= d@ 0@ dH q0A dP 0B dX B60D4` G0F4h l60H~p 0I~t .0J x =0M9 0NS %0O4 U@0Q4 H0Y _#0[4 0\4 I0]4 0^ - I0_  I0`~ y 0b4!J12,0+G42 o4 Lx4\#44 o4 L24l4624Y 2443 ~ 5+5V35 43 ~U35!4<C5^_4>T575Q4Ng5C57&565ZD6 2_.6 d^.6 246 256x5-E(76.,.E".%.~'.B..-. .w=.6 .Q . . .j ...7G(5HE(N6he, 6 ?,$ 8 o,% < ,);QHEK(6hek ,-6 7,.$2 h,/2 >,54(E7Z(d(e!(v8(~ (2 (8F(2(8;(8 (8 @178 *872 x-7< 7 7k? 4+7I@ F7`?( .720 F7$28 *7@ \7H E7P D7O@X 7/7$2` D7$2d /;7-h 7$2p 37$2t "#7U@x 7t 7d $72 07 K7 7 &7&7E#27E  t 7=E78C6b&H5(e9Z(d(e!(v8(~ (2 (8F(2(8;(8 (8+(9Z(d(e!(v8(~ (2 (8F(2(8;(8 (8,(u:Z(d(e!(v8(~ (2 (8F(2(8;(8 (8*(:Z(d(e!(v8(~ (2 (8F(2(8;(8 (8Z+/(;)Z(d)(e)!(v)8()~ (2) (8)F(2)(8);(8) (8,/(#<)Z(d)(e)!(v)8()~ (2) (8)F(2)(8);(8) (801(f<)Z!( )=( 2)9( W2)J( 20G(<)1( e)::( v)I( <)( 260L(<)1( <)N,( (/(=)=$()(d/((=)=$()(d/(M=)=$()(d/(r=)=$()(d/(=)=$()(d/(5=)=$(5)(5d8;(: $2=2=%=0/(_>)=$(_)(_d/(l5>)-(m5>)D(n -T 4F>+;>-8F> s7> ?71 7 1 1:7 2s7W> G(7&> 7'  7(  7) 2 {7* 2 7+  57-? $?7. 1 [)7/? >? L ;7:T? %7; #end7<  #7C ;7D?&`?7?=$77d -+h7D@ xF7@ 7@ K75A B7OA s7eA `L7A( N 7A0 H7A8 7A@ y/7!BH 7OAP jC7FBX uF7B`?D@>T?@17E7 W 7@ =7 t e7@67g@1`?@22$2@12@2f?ddd2-$2@1d/A2f?2dd02/A@@12OA2f?;AeA2f?UAA2f?22kAA2f?2A$AA12A2f?A2A12A2f?2202A12!B2f?A02B1-@B2f?@B,0'B1`?B22~2I@`?B$2$22LB2P7h &C3rex7i &C=7j,C$7l2 7nd07o  K7p ( 7q 0.7r<83pos7s @7t 1H[@y:7uB2 7| C:7}C7~C7D 7 d2CA x7C6&7 ~7 d3u7PQIC"#7\Dd 7]J&7^Dx&~H7^"DC77?C7 227:DDF7C27 |DDF7C 7 $237 $2 3cp7D2 7DDF7C 7 $237 $2 3cp7D7D>2@7EDF7C 7 $237 $2 3cp7D47 $27 2? 7E 3me7D(7 E07 $287 2< 7 2>212@7FDF7Cb7C47$CP 7`?3cp7D )I7D$7$2(3B7D07d827WFDF7C@7 297 2 3me7D2 7 FDF7 C7 C7  2J7 d27F3val7 ~2878GDF7Cb7C3me7D3B7D3cp7D  7 2$ 7 ~('7" ~,7# d02(7&GDF7(C;-7)C3cp7*D)I7+D7, d@7- 2 7. 2$2`71kHDF73C3c174 ~3c274~ 3cp75D 76 $2377 $2P878 2'79 2  7: 2$3A7;D(3B7;D03me7<D8E7=kH@ 7>kHN 1{H L 2h7AQI7B $23cp7CD 7D $237E $2 3c17F ~3c27F~$=7G d'7H d '7I ~(3min7J ~,3max7J~03A7KD83B7KD@E7LkHH 7MkHV/h7J)77D):7 2C4yes7!D)V 7 :D)7|D)17D)<7E)37F)*47WF)7F)@-7$F)F7/8G){7?G)7N{HA 7QC J/J L #7_C#9KLj'G. .!J K:."J .# J .$ J00.JKD. J.%JJZJJF1.MJO;.M2+.M=-K=$--d-7K4-2;-.-YK)-2-=-{K&5-2dB-<-K;-=--% KH%NJsv%2iv%euv%vA%K12K2KK/%-L)%%2)D% NJ),%2/% RL)v$% 2)/%  NJ [+0:1L :3 d ;.:4 d &@:6  =F:7  ;:8 d b&:9 d A:: d( < ;*L 0;, d X+;- d +;.  {@;/ t$;h P>jd >k I>qPx>ud>v  U>yL(>zdHB>{ P>}PX#> `%>da$> '>Po>>~>d> :> 4>d> *1>PF7>~dF>k &zG>d&S> &!>Q&D>RL&>dH&D> P& > QX&>% `&->d&/4> &K>Q&>M&>d&> &">Q&>Q&8> &m>Q&3>"Q&> &>"Q &-3>d(& > 0&7>d8&I> @&J3> ~HLL  k RL% M '>&N2,&]Qj<,'2$,(  .,EQ R,F Q F=,G 2,H 2 L,I 2 7,J $2]Q12Q22$2Q }1H,M`R L,O2 %,S2 I,T2 G,U $2 ,V $2 ,W`R #isa,X2( W*,Y20 ,Z=8 ,[ $2@Q5,gR,h <K,i R< !8,lS ,mfR ),n 2 ,o 8 ,p 2 /,x 2 y1,yS # ,{$2( &,|$2, x,$20Q & jS H&!jS oC&"_ /&&# ~ H&$ 2 &%2Sa &(S_&Sr8|S.(&'S &( 2t&* J3cv&+ =4&- 2G&. 2 *)(&3@T &4 2t&6 J3cv&7 =3gv&9 2@&: 2 60&uT &v 2`)&x 2k/&y 2M&z 23cv&{ = C;&|T(pS/&T4svp& 24gv& 22&T3ary& 23ix& e2&U:& 23ix& e2&?U3cur& e3end& e2&fU3cur& 23end& 2/&U4ary&T)[&T)K=&U)vC&?UH0&U& U-&T3&2;&fU& J(E:&+VG&24& 2/0&wV)&S)?&S)&&@T)@&U)0&V GX&PWOC& 1& 1& 2 & 2& U8& & d\& 2 9&  2(5-&  d0 -&  d8B &  d@,&  -H4&`?P/`&@uW)F(&A') G&B}V90&WX& 2&W&WA&W& 2 ('& 2$& 2(Z& 2,'uW0&uW1~&X22< X1$2EX22<,X1~sX22<22KX1~X2<@ByX. ? X#val? 5 =&? k ? 2 ? = ?X #(?7Y ?7Y ? 2 ,? d G? d ? 2 X}#? XH?"] 9?&] )<?'5 /?(~ ?+~ ?-~ [?.] ?/](#ps?0]0 09?4 28 2 ?5 2< ? ?6 d@ &?7 dH 8?8 1P _-?9 1Q '?; 1R 3?< 2S )?= 2T I?> 2X ;?? 2` 9?@ 2h +!?A 2p c,?B 2r ?C 2t <?D 2x %?E 2 /?F 2 1'?G v #2`##F>B#F>y#F>D0#F> -`+#x`#F> `+JE#` #C^8&*E#a.[.s.C.]*.;.7.*n!#5GH#F*a3pad#G*a $:a L)#PGaMa]a22k=#ajapa12a222+#fK+#gaa12a22#hGa1#iaa1~a2d5Q#l'^#s2b3fn#t 23ptr#u ->#vb.2X/JJ:] dsb L~ eb L2b$2 -b L 2b L 2b L 1b L /2(QZ5)- 2c L"7#2K#2@5b3@&5 aSc+?@Hc akc+ @c`c @E2 1c+c,@ c 2c+c7@ c^@ C^- @ c 1c+c8@ c .A&u2A(2:A-2$A129A421AKl5BALl5'AXu2A[ybHA\~?A]~m*Aae)7Aeu2DAfu2AiAu2)Au27JA~,A~K6Aag9A2AvC&Au2A$bA2 -2e LA"e48#4]#6]-EB='f.y. ..+..'...:.( .2 . .tJ .& .4. C. .7.Q0..B.3. <.61.U".K#.H.8.J2.8..D 7f L'f4BB7f .Xf LHfB Xf 1yf Lif#N yf 2f+f(#bf#cf=!#dfQ#efy0#ffe@#gf-ECh.".oD..!.2 .D.C.%%.".E .* .n .!( .9 ...-%.".6.!. ...".6.!. .....>3.D+ .B'!.9".' #.2$.%.(&.pE'.2(. ).D*.+./,.-.@.../.?0..1.=2.3.=4.5.m6.A*7.l8.@*9.z:.W/;.><.>=.P!>. ?.) @.KA.k)B.E.C.ED.E.F.#G.M H.<I.KJ. K/#Zh4nv#Z4u8#Zhh 1h L1#Zh/#[(i4nv#[4u8#[hi#[(iD:]28 i/2)L22/2SF2 J2(420Gi9:J~ @!:E j.0.#. #.#.#.82P j?$2P$2$2)  92}C2 3"2(VL20L 8+~@--DI-E5$2H8 j2xp 8k3curr d3ends d3svt2suj6v$2h)wvp xj2p k3cur d3end d3err s j@ $2h $2l], Ek Zk Lk9( k (; ` < 2=cv=kg> ~?ax 2@*4 2?sp 2(&@ 2NL9F YAs?cv=Asl?_p -/-A tl?_p -TRAPtm?_p  -ywAt1m?_p  -AtOm?_p  -Atmm?_p -Aum?_p -  A@um?_p -20Apum?_p -WUAum?_p -|zAun?_p -Av!n?_p -A0v?n?_p -A`v]n?_p -Av{n?_p! -53Avn?_p# -ZXAvn?_p% -}A wn?_p' -APwn?_p) -Awo?_p+ -Aw/o?_p- -  AwMo?_p/ -8 6 Axko?_p1 -] [ A@xo?_p3 - Apxo?_p5 - Axo?_p7 - Axo?_p9 - Ayp?_p; -  A0yp?_p= -; 9 A`y=p?_p? -` ^ Ay[p?_pA - Ayyp?_pC - Ayp?_pE - A zp?_pG - APzp?_pI -  Azp?_pK -> < Azq?_pM -c a Az-q?_pO - A{Kq?_pQ - A@{iq?_pS - Ap{q?_pU - A{q?_pW -  A{q?_pY -A ? A|q?_p[ -f d A0|q?_p] - A`|r?_p_ - A|;r?_pa - A|Yr?_pc - A|wr?_pe -  A }r?_pg -D B AP}r?_pi -i g A}r?_p - A}r?_p - A} s?_p - A~+s?_p - BI]sCUsCT ^CQ PMBIsCUsCT vCQ 1BIsCUsCT CQ @FBIsCUsCT CQ =B I%tCUsCT 8CQ =B*IWtCUsCT XCQ =BJItCUsCT xCQ =BjItCUsCT CQ =BItCUsCT CQ =BIuCUsCT CQ =BIQuCUsCT CQ =BIuCUsCT CQ =B IuCUsCT CQ =B*IuCUsCT CQ =BJIvCUsCT CQ =BjIKvCUsCT (CQ =BI}vCUsCT PCQ =BIvCUsCT xCQ =BIvCUsCT  CQ =BIwCUsCT % CQ =B IEwCUsCT > CQ =B*IwwCUsCT W CQ =BJIwCUsCT CQ =BjIwCUsCT q CQ =BI xCUsCT  CQ =BI?xCUsCT CQ =BIqxCUsCT CQ =BIxCUsCT CQ =B IxCUsCT  CQ =B*IyCUsCT (CQ <BJI9yCUsCT PCQ <BjIkyCUsCT xCQ <BIyCUsCT CQ <BIyCUsCT CQ <BIzCUsCT CQ <BI3zCUsCT  CQ <B IezCUsCT @ CQ <B*IzCUsCT h CQ <BJIzCUsCT  CQ <BjIzCUsCT  CQ <BI-{CUsCT  CQ <BI_{CUsCT  CQ <BI{CUsCT  CQ <BI{CUsCT !CQ <B I{CUsCT  CQ <B*I'|CUsCT  CQ <BJIY|CUsCT 2 CQ <BjI|CUsCT 0!CQ <BI|CUsCT P CQ <BI|CUsCT X!CQ <BI!}CUsCT !CQ <BIS}CUsCT !CQ <B I}CUsCT !CQ <B*I}CUsCT m CQ <BJI}CUsCT !CQ pDB`I~CUsCT "CQ BBvIM~CUsCT  CQ ;BI~CUsCT @"CQ PABI~CUsCT  CQ `9BI~CUsCT `"CQ 7BICUsCT "CQ 5BIGCUsCT "CQ `4BIyCUsCT  CQ @WBICUsCT "CQ `UB&ICUsCT "CQ jB<ICUsCT  CQ BRIACUsCT  CQ BhIsCUsCT (#CQ СB~ICUsCT  CQ 0BI׀CUsCT ( CQ 03BVCUsCT CR D CX0BI@CUsCT K CQ ?BIrCUsCT g CQ @YBICUsCT  CQ ZBbCUsCT  CQ CR YCX  CY0BJbFCUsCT  CQ CR YCX  CY0B{bCUsCT  CQ CR YCX  CY0DbCUsCT  CQ CR YCX  CY0A@~@.8 2$ @- \ZA~\?_p -DoCUsCT ( CQ0B|CUsCT @!CQ8BƁCUsB΃CUsCT  CQFCR1BCUsCT1BCUsCTvCQ 2 B 3CUsCT2B5^CUsCTvCQ A BB{CUsCT3BWCUsCTvCQ O BdÄCUsCT4ByCUsCTvCQ _ B CUsCT B8CUsCTvCQ p BWCUsCT BCUsCTvCQ  BCUsCT B̅CUsCTvCQ  BCUsCT BCUsCTvCQ  B5CUsCT B#`CUsCTvCQ  B0CUsCT BECUsCTvCQ  BYԆCUsCT xCQOBnCUsCTvCQ  B)CUsCT CQNBTCUsCTvCQ  B~CUsCT  CQMDCUsCTvCQ " BCU  CTsCQ YCR QCX LEʍCUUiFX< 2=cv= > ~?sp 2?ax 2@*4 2z@ 2?ix2wGH?_p-A @3@+E2@02aW@%2Hp@9saj~I@@b JNK AJ!J95J yqB#މCUsCT}CQ|CR0BC׍CUsCR1B_CUsCQ0DCUsCQ2IB? \JSB{CT L¡FI.< 2=cv=qg> ~?sp 2?ax 2@*4 2@ 2?ix2Gn?_p-AqX@2sk@%2H@r9sTjI@<rU JNK<rJ!JB@J hfB/=CUsCQwD׍CUsCR1IBq JSLDCT /F*kZ'< k2=cvk=!> m~?spm 2?axm 2@*4m 2* @m 2A@Aq ' @-s  MN_pC -MN_pE -MN_pG -M̍N_pI -Ii[E -J \!X!J!!OP!!D5\CUsI[G J  ""JZ"V"OP""DB\CUsI[0I J ""J##O@PZ#T#D+\CUsI\ pC PJ ##J##OP $$DO\CUsB[uCUsCQ B[!CU 8 D\!CU  G[ ۏ@q$$IBZm JS$$Dc\CUTCT jF?F@Y7Q< F2$$=cvF=;%1%> H~?spH 2%%?axH 2%%@*4H 2D&:&@H 2'&Aڑ@AL '''@-N ( (MN_p7 -IY`7 zJ v(r(J((OpP((DfZCUsBYCUsCQ BKZ!CU 8 D^Z!CU  GZ @fq8)6)IBDYH .JS^)\)DwZCUTCT F ?h5<  2))=cv =))> "~?sp" 2m*g*?ax" 2**@*4" 2#++@" 2++Aœ@A& ',,@-( W,U,Bs@PCUsCQ B@.hCUsBA!CU 8 BA!CU  D/A;CUsCQ0CR2G@@Aq,,IB?" JS,,DHACT FBL03- < 2,,=cv=b-X-> ~?sp 2--?ax 2.-@*4 2V.L.Q 2AQ`(2@A '//@- t/n/G3 ?@ q00B3dCUsCQ B#4!CU 8 B64!CU  DN4!CU  IB43 JS(0&0D]4CUTCT F8?0#< ?2S0K0=cv?=00> A~?spA 2U111?axA 232@*4A 23y3@A 244A`C@AG '44@+EH255@-J 5}5ACӗRlen?str66?cur8646I.CJWt6r6JK66J?66D HCT|BSCUsD ;CUsCT|CQCR2AD?sv2769H@1df7d7Ie DJs77HDP988SSTSD!CU pBۨCUsCQ~CR}CX0B".ʘCUsB׍CUsCR1D?!CU I\7 E"9Jy99Jn: :B٥^CUsCQ BL`CUsCTCQ0B`CUsCT|CQ0Bç!ÙCU 8 B֧!CU  BȩmCUsB(mCUsB?y*CUsBbRCUsCT|CQ2CR0B"zCUsCTCQ2CR0DCUsCT .CQ0IBX CA ʚJS::BNCUTCT LSFT7 С͝<  2::=cv =;;> ~?sp 2;;?ax 2k<c<@*4 2<<@ 2C===AAp@A '==@+E2==@%2&>$>@- M>I>A B?sv2>>9HUN VmVmJy??J`Q?O?DCUsCT~BʢCUsCT~CRwBҜCUsBCUsD׍CUsCTvCQvCR2B5CUsCQ Bc!TCU 8 Dv!CU  IBA JSv?t?BCUTCT LF>At< 2??=cv= @@> ~?sp 2@@?ax 2nAhA@*4 2AA@ 23B-BABq@A '~B|B@+E2BB@%2UCSC@- |CxCBTCUsCQ BCUsCT~CR0B!8CU 8 B!WCU  D׍CUsCR1IḄB JSCCD$CUTCT Ft< 2 DD=cv=vDlD> ~?sp 2DD?ax 2EE@*4 2)F#F@ 2FFA`s\@A 'FF@2G G@%2GG@- GGBCUsCQ B/CUsCT~B!#CU 8 B&!BCU  DC׍CUsCR1IBs JSNHLHDTCUTCT F<xj< x2yHqH=cvx=HH> z~?spz 2kIWI?axz 2jJdJ@*4z 2JJ@z 2/K)KA@A '|KxK?key2KK?cb2+L%L@- xLtLGl ?_p -LLDlCUsCT<Gl#;N_p-DlCUsCQCR0CX0CY0Gle?_p-MMIl ƣJ ?M;MJyMuMOPPMMDCmCUsBykCUsCQ Bkǎ CUsCT}Bk8CUsCQCR0CX0CY0BSl!WCU 8 Bfl!vCU  BlԎCUsD3m׍CUsCTCQCR1IBjz ݤJSNMDTmCUTCT }FAJ`Ul< J2,N$N=cvJ=NN> L~?spL 2O O?axL 2PP@*4L 2UPOP@L 2PPA @AR 'QQ?cbS2TQNQ@-U QQG%V?_pv -3R/RI)V`v yJ mRiRJRROPRRD(WCUsBUCUsCQ BV!CU 8 BV!ܦCU  BVǎCUsCT|DW׍CUsCTCQCR1IB|UL IJS/S-SD ~?sp 2JT8T?ax 24U.U@*4 2U}U@ 2UUA@A" 'FVBV?cb#2V|V@-% VVGX?_pj -aW]WI X`j J WWJWWOPX XD YCUsBW CUsCQ BX!)CU 8 BX!HCU  BXǎfCUsCT~D Y׍CUsCT}CQ}CR1IB\W JS]X[XD4YCUTCT [F)`4< 2XX=cv=XX> ~?sp 2YY?ax 2YY@*4 2OZGZ@ 2ZZA`@`(~[[@!&2[[@A '\ \@- 5\3\A@m es\o\D5CUsCT}B5:CUsCQ B5!YCU 8 B5!xCU  L5GZ5@q\\IBd4 ګJS\\D5CUTCT Fi&5< 2\\=cv=e][]> ~?sp 2]]?ax 2^^@*4 2%__@ 2__A@A '__@Ie7`3`@- s`m`B6CUsCQ BC7!0CU 8 BV7!OCU  B}7lCUsCQ2B7׍CUsCTCQCR1D7!CU IB 6 ڭJSa`D7CUTCT F7"< 2,a$a=cv=aa> ~?sp 2=b7b?ax 2bb@*4 2bb@ 2ccA@`(~5d3d@!&2dd^d@A 'dd@- ddA:@m eeeDC9CUsCT}B8_CUsCQ B9!~CU 8 B9!CU  L%9G8֯@qKeIeIB7p JSqeoeDW9CUTCT F `9< 2ee=cv=fe> ~?sp 2fzf?ax 2TgNg@*4 2gg@ 2 b~?spb 2jj?axb 2jj@*4b 2Ek=k@b 2kkA@`(f$2ll@!&g2ll@Ah '(m$m@-j am_mA8@{z vmmDBCUsCT}BB]CUsCQ BB!|CU 8 BB!CU  LBGIBԳ@|qmmIBTA@b JSnnDBCUTCT F<6;< 62Gn?n=cv6=nn> 8~?sp8 25o%o?ax8 2oo@*48 2PpHp@8 2ppA@A> '4q0q9P?$2P@-A pqjqB;.CUsCQ B;<!MCU 8 BN<!lCU  B]<CUsCQ2D{<׍CUsCTCQCR1IB;8 صJSqqD<CUTCT =FB < 2)r!r=cv=rr> ~?sp 2:s4s?ax 2ss@*4 2ss@ 2ttAP@`($26u0u@!&2uu@A 'uu@-  v vA8@{/ vLvFvDSDCUsCT}BC]CUsCQ BD!|CU 8 B&D!CU  L5DGCԷ@1qvvIBB JSvvDgDCUTCT FpD < 2vv=cv=[wQw> ~?sp 2ww?ax 2xx@*4 2y y@ 2yyA Թ@A 'yy?val~ z z@- 4z.zB E4CUsCQ BeE"SCU 8BE!rCU 8 BE!CU  BECUsCQ2DF׍CUsCT}CQ}CR1IBD JSzzD2FCUTCT kF6<E< 2zz=cv=X{L{> ~?sp 2{{?ax 2||@*4 2||@ 2}}?ix2?~3~G<?_p-~~A@A 'ok@- B;=]CUsCQ B=!|CU 8 B=!CU  D=׍CUsCT|xCQ|xCR1IB<` JSD=CT F$=< 2=cv=ym> ~?sp 2?ax 2݁Ձ@*4 2A;@ 2?ix2 G3>?_p-A`ٽ@A '@8@~@- ńÄB>XCUsCQ BS?!wCU 8 Bf?!CU  B?CUsCQ2D?׍CUsCT}CQ}CR1IB> JSD?CT [Fa1z@F< z2,$=cvz=> |~?sp| 2C7?ax| 2цdž@*4| 2VJ@| 2:.A Q@; d60@- ?pv2։ΉI@F  tJN42KF J!YWJ~J BF/CUsCTPBNG<CUsCTCQ1B\GIӿCUsCT~BjGVCUsCQ}BuG CUsBG;+CUsCQ0CR2DG׍CUsCT|CQ|CR1IB_F` | zJSˊɊDGCT FJ`1e< `2=cv`=/+> b~?spb 2jhNaxb 2Q*4b 2Qb 2A@@- ?sv2MiN_p -WÄ11 J܄ڋ؋JЄX1PB:Y2KB1b JSFw;KPM]e< K2Όƌ=cvK=1-> M~?spM 2ljNaxM 2Q*4M 2QM 2A ?@- @- -UdMM! J܍ڍJJu(&BgM/)CUsCT7EMƁCUUKBTM M JSMKZ8 [A 'Np\,; \@l \d.\&M ]lY20< Y2p< KY2bFeJA9OP>P_> V!V!I> J JnhO>PDCUsCT~I0 `?3J  JEAOp?P{DKCUsCT~Bڗ[CUsCTCQ2CR0BǎyCUsCTB$CUsBBCUsCTCQ3B]`CUsCTCQ0BSCUsCTB"CUsCT~CQ~B38CUsCT~BR!WCU HB!|CU CTvB!CU0L֞`/+2"[ + 2[W(+[ K+,2[H+;Nsp-2Q.2MQD@EbaN_pJ -]'2pu!<  2˜=dec,<%"2$\2J$A=@- B{CU|CTvCQ1B3{ǎCU|CT|DǎCU|Gf@- BōOCU|CTvCQ1B܍ǎnCU|CT|DǎCU|Iu@ $JGJ̪JH@ PPPPe_PP"P/~P<vfPINPVTcbl"PqUDuCT<Iu"UJO#P _P# V!V!b~#P|DMvCU|CT<Iv#]zJ J O#PICDCU|CT}b$Pb%P PPPPP&"bd'8Pep`Pr,Iw'nJ O@(PJD_( V!V!b(PI% )J6cazPbP) P3/DCU|CT;Bϔ0CU|CTCQ2B]CU|CTCQ0CRDǏCU|CTD ԏCU|CT~CQsCR~CX CY0Iw) JmkO)P_@* V!V!BwԏBCU|CT~CQsCR~CX8CY0B/`CU|CT~BԏCU|CTCQsCR~CX$CY~B7"CU|CTCQ~BjgCU|CTwCQsCR~BlCU|DgCU|CTwCQsCR~CXOp*P6Iڇ+J2*O+P_P, V!V!I<,JO,P!_, V!V!I  -eJ [WJO0-PDБCU|CTsI%&`-J642c#ZRaP([Wc4Z P5DgCU|CT;B|CU|CTCQ2BDCU|CTCQ0CR~DǏCU|CTBCU|CTCQv8$8&BŇCU|CT~CQsCR0CX0CY0B/CU|CT0BCU|CTCQsCR0CX0CY0BLj"0CU|CTB eCU|CT~CQsCR0CX0CY0BCU|CT~CQsCR~CX~CY~BdCU|CTsBCU|D#CU|CT~CQsCR0CX0CY0I݆-# ^JO-P;3_ . V!V!KjP. JO.P_/ V!V!b0/PdPP)ECb6/ P;nhDzCU|U% p >J6BnVCU|BnCU|BRCU|CTsBkCU|CQ3BǎCU|Dj׍CU|CTvCQvCR1I/yOJ J1-O/PogDCU|CTwb 0zPP<6bp0PP97b0Pb\DCU|U%  UJ6BnCU|B1CU|BOCU|CTsBlCU|CQ3BDCU|BCU|B׍CU|CTvCQvCR1D#!CU0B !CU|CTvB-.CU|CTvCQ0B;!8CU|CTvBO;VCU|CT~DpCU|CR0CX0CY0B]vICU|CTBxvHCU|CTvCQ}CR2BICU|CT~BځԎCU|CT~DUCU|CTvUsIxIx}JJDYxCU|CTCQ"I>x0$gJj.J]JP H0PwPPTR|cx 2PG1DxCT;Ix1J,(O1Phb_02 V!V!b`2PDr{CU|CT;I{2%J JA=O2P}wDhCU|CT}b2~PPI|`3  J{O3P_04 V!V!I~`4 JsmO4P_4 V!V!B{/CU|CT}B{?CU|CTwCQ}B |"cCU|CTCQ}D|CU|CTsIR|5%J 95JsoO05PDCU|CTsB{ICU|CTwB{H-CU|CTvCQ}CR2BgIKCU|CTsDxUCU|CTvI8y`5$JJG/H`5P[;PSIOy6JO6PJD_ 7 V!V!bP7PPP{uPP\XPP*P7mMbC7PHDCU|Id~08#J )%Jc_O@8PDCU|CT~cz~JP{U%~~  J6B}bCU|CTwB!}nCU|CT~CQ0BB}{CU|CQ CR0BX}nCU|B`}CU|B~DCU|CT~CQ}CR1BR~aCU|CQ2B~CU|CT}B~CU|BCU|Dw׍CU|CTsCQsI΂p87J 93JO8PDŐCU|CT~I8J &"J`\O@9PDCU|CT}B|"CU|CTCQ0B|CUL|D|"CU|CTCQ0I y 9J7!J*JO)H9PDPQ`8S^bg: PlbyP;d~PBCU|CTsCQ} $ &CRDOCU|b;<ePI; vJ KGJO<PDCU|CTvBaCU|CT XCQ2B~CU|CTvCQsCX2BCU|CTvCQ CR3CX2B"CU|CTvCQ2DCU|CQ0Bz_CU|CTvCQ2BQwCU|BCU|BCU|BԃCU|BCU|BCU|DCU|CTsb@<MeP I<J JO<PD CU|CTvc=#PLHP(c5AP6W%HH J6BeGCU|CT CQ6BpCU|CTvCQsCX2BCU|CTvCQ CR3CX2BCU|CTvCQ2BL!CU "CTsB CU|CQ0B̒-CU|CTsCQ0DCU|CTsCQ2BFpCU|CTvCQ3B`CUsDhȐCU|UFczczJeJXDszCU|CTCQ'BIxCTvCQ4Bcz:CTvCQ4BzYCTvCQ BzǎxCU|CT|Lk`@D2[  2fdecNtag2Nval2\2JMQ-Nav 2Ni NlenQ.8 2Nsv 2QD 2Nsp2MVQDEbMhN_p-MzN_p-aN_p -MN_p-aN_p-`g G2g[ G 2fdecG[%G"2NsvI2NhvJ2QM@K2QEL2Q-MM~Qj-N~QO~Qs)P~QQ~Q-Ro\2JxM~N_pJ -MN_pY-MN_p]-MQMe ~aQ}2Q%~2Q2NpdNedQA2MdQK2M#N_p-MCNav2aN_p"-MUN_p-aN_p-aNkeydNlen$2aNrv2MN_p-aNav2aN_p"-MNcb48Nhe48aNspA2Q'B2MQDEEbaN_pU-MXNsp] 2Q'^2MIQDa EbaN_pp -aN_py-F +0X>< +2A;=hv+2=key+#d=len+,$2NF<+52?i-$23+@E/~D(1CQ0CRQCX R `2 [  2fdec[%"2Nav2QN<2QE2\2J$MN_p -MN_p-MN_p-MQ 2Q% 2aN_p%-`;2F[ ; 2fdec;[%;#2Q=~Q%> d\2JMNlenz ~MNuv vQ  ~aQ 2Npv 2MN_p -aNsp 2Q:2aN_p-aQ 2Npv 2MN_p-aNsp2Q: 2aN_p-`E52s[ 52fdec5`!/2[ / 2fdec/]!L 2M< L 2=decL mQ<-L %o?svN 2&@EO ~@1P d?chQ -3g2J)2RA0 RbufV ~?curW d  A ?c~ -  K5O0 *JG2*JG2*H0PTP`VTPl}ySyA?c oKQp !JJHpP7-PP P( S%A?lo v?hi vIP (cJJHPlbKP uJJ-'HPzB6P6CUuCTt^uDP6CUu^uA 9R* ~KR  JJGAJV݀JЀKSp  JB@JlhJV݀JЀOp eDSՐCU~CTvCQ~vCR~H?len%GN`d?cur rnIdN FJJJuDNCT|CQsDNSCU~CT}DPCU~CT|CQsBTCU~CT .CQ0LKU o5L @`= v/fdec= Nd1? eNd2? eNd3? eNcur@ /\2JG -`-. vfdec. Nd10 SNd20 SNcur1 /\2J8 `4  vfdec Nd1 SNd2 SNd3 SNd4 SNcur /\2J) Z* fdec aNch oZ&- /fdec ]J 2 S<  2>6< 2Js|xK}pTJ}J}J},(K}pJ ~fbJ~J}h*8gP~DtSCUvI q J897J+b^bDpqPEB`CUvCTsCQ1L B/CUvCT BCUvBS&CUvCTwCQ|CR}B!ECU LFR`?(,<  2=enc,f 2 =sv"2""<%*2P$$@em&;&@@~(j(ix?~@)>~+k+\, . APE~?svt76..Bv`]CUsCTvCR|D^Y<CUsCTvCR|AK[@.82Y/O/@F=d//AL@B82 0 0@>230/0BCUsCQ0CR0BC!%CU Bo!PCU CQvCR}B`nCUsCT|B;CUsCT|CQ0CR2B;CUsCTCQ0CR2D&;CUsCTCQ0CR2B<!CU  CQ}CRvBb;6CUsCTCQ0CR2D;CUsCT|CQ0CR2A`L@*( ~0i0@Z dU22@qd44@/  o7w7?nv 9k9@= ~;;AO7Rlen?str d= =D;CUsCTCQCR0AM0Rlen/?str0dn=X=?pv12i>a>Q22@ 3~>>MN_pE-G ?spO2??Id"N]7J??J??Ju??D'CU~CT~B\CUsCT~CR0BCUsCT CQ/B3CUsCT~CQ~CX2BPCUsCT~CQ CR3CX2B` CUsCT~CQ2Bk(CUsCT~B}FCUsCTvB;pCUsCTCQCR0B̾!CU "CT~Br;CUsCQCR2BCUsCQ0BCUsCT~CQ0BCCUsCT~CQ2Do!CU0G4lNz dDCCU?CT~G9 ?l3 @@I.O4 JWS@Q@JKx@v@J?@@DHCU~CT~CQ|DCU~GP?strJ d@@?lenK A@K}@ON J}%A#AJ}NAJAJ}AAD}CUsCTvCQ1AN9 1T G%"QHIa dW…%b JAAV߅VӅB̵!@CU~CTeB!^CU~CTEB!~CU~CT.BS-CUD-CUU…WW0 JAAV߅JӅ B BU…= CJ2B0BJ߅XBVBJӅBBU… ? JBBV߅JӅBBU…; J C CV߅JӅ2C0CB״}CUsCTvCQ/B9CU~CTB95CU~CTBEEXCUsCTCQ0BrpCUsD!CU @AQI@Zi dcCUC@qi dDCRuvm vRivn e9 o ~AT @.8t 2DD@u ~E E@9v ~~EvEAU Rlenz ?str{ dEEAU< ?sp 2KF-F@ ~G~GAU@D EbGGDCUsAU!?_sv !2GGBCUsCQ2DRCUsCQ0A VT@D EbZHVHDCUsBnlCUsBCUsBRCUsCT CQ2BRCUsCT| $0.(CQ2Bv׍ CUsCT|CQ|CR1D׍CUsCT}CQ}CR1Udxx  JHHJHHJuHHDCT|U`*  JIIJ}2I0IJqXIVID_CTFCQ1U`   U J~I|IJ}IIJqIIUs  JsIIJsJJJsDJBJJsrJpJJsJJD3sCUsCTvCQ ;CR1CX0B\c CU|CT CQ5Bx}7 CUsCTvBr;a CUsCTCQCR0B} CUsCTvCQFD }CUsCTvCQFB CUsCT CQCR0APSh@  ~JJA TRlen ?str dLKHK?pv 2KKQ 2M N_p -G ?sp 2LLUd//(  JLLJLLJuLLD@CT|B7 CUsCT xCQ@B>Z CUsCT|CX2B[ CUsCT|CQ CR8CX2Bk CUsCT|CQ2Bv CUsCT|B! CU "CT|BCUsCT|CQ0B/}7CUsCTvBbCUsCT XCQ2B0CUsCT|CX2BMCUsCT|CQ CR3CX2Bd;CUsCQCR2B(CUsCQ0DbCUsCT|CQ2B9CUsCR|D,CUsCTCQCRCX|G?iO 2ML?uP $2GM9M@Q oN N?nzQ oNND}CUsCTvCQ6Gz?strv d8O6O?lenw ]O[OI}=Sz J}OOJ}OOJ}OODB}CUsCTvCQ1U}mm| J}PPJ}DPBPJ}iPgPD}}CUsCTvCQ1DmsCUsCTvU`aa'r JPPJ}PPJqPPD_CU~CTFCQ1CR U`PPq JQQJ}5Q3QJq[QYQB9CU~CT|BH}CUsCTvCQFDB,CUsCTCQCRCXA`V?str dQ~QRlen I}V J}QQJ}QQJ}RRDϷ}CUsCTvCQ1D*;CUsCTCQCR0U 0xJ,-R)RJfRdRX0P8RRPERRPRRRP_RRPl"S SUzEE6QJGSESJmSkSXE6PSSB[$CUsCT CQCR0IM-pE Ju-SSJh-UxUJ[-=WWHEP-XXP-YYP-[Zb-@GCP-.]]b-pHP- ^]P-^^P-a`K`P-_aQab- IIP-aaD[CUsI}lPI J}EbCbJ}lbjbJ}bbD|}CUsCTvCQ1I}I J}bbJ}bbJ}ccD}CUsCTvCQ1I} I oJ}'c%cJ}NcLcJ}scqcD}CUsCTvCQ1I}.I J}ccJ}ccJ}ccD8}CUsCTvCQ1I}M J 3J} ddJ}0d.dJ}UdSdDW}CUsCTvCQ1I}PJ  J}zdxdJ}ddJ}ddD}CUsCTvCQ1U} J}ddJ}eeJ}7e5eD}CUsCTvCQ1BCUsBn3CUsBKCUsBEhCUsCQ3B sCUsCTvBSCUsCTvCR~BBCUsBc׍CUsCT}CQ}CR2DC!CU b-JP-peZeb .JPP .\fVfDCUsBnhCUsBCUsBCUsCQ2B,SCUsCTvCRsB׍CUsCT}CQ}CR1D!CU PUzDD@06JffJffXD@PggBaCUsCT CQCR0B!CU B ǏCUsCT|B+CUsBIǏ5CUsCT|BTMCUsBf;oCUsCQ0CR2B{CUsCT~CQ CR0B{{CUsCT~CQ CR0B.CUsCTvCQ|CR0B.!CUsCTvCQCR1L0ǏD;CUsU.= JH.UgSgJ;.zgxgJ..ggXPT.ggDW~CUsCT|Ib.K J.ggJ.ggJ.'h#hJ.ah]hJt.hhI PKJ,hhJyj[jHPKP8kkPEkkPR llP_\lXlPlllDCUsCT|CQ2B۱ǏCUsCT|BCUsBǏCUsCT|B0CUsB!;RCUsCQ0CR2B2!qCU BͼǏCUsCT|BؼCUsBǏCUsCT|BCUsB;CUsCQ0CR2B$!CU B.BCUsCTvCQ|LǏBgCUsLǏDCUsI -b P@$J3-llJ&-rnXnJ-oyoH PP?-ppUs ] x Jsq}qJsqqJsqqJsqqJsrrDsCUsCTvCQ CR4CX0I.XQz JH.CrArJ;.hrfrJ..rrHQPT.rrD]W~CUsCT|Usnn"e !JsrrJsrrJs#s!sJsQsOsJsvstsDsCUsCTvCQ CR5CX0Ib.0Qt{"J.ssJ. ttJ.qtitJ.ttJt.9u1uI Q["J,uuJ'v#vHQP8av]vPEvvPRvvP_wwPlOwKwDCCUsCT|CQ0B"CUsCTCQ0BǏ"CUsCT|B "CUsB'Ǐ"CUsCT|B2 #CUsBD;,#CUsCQ0CR2BU!K#CU XL`ǏBkp#CUsBǏ#CUsCT|B#CUsB;#CUsCQ0CR2B!#CU LHǏBS $CUsBǏ*$CUsCT|DCUsUsPP$JswwJswwJswwJsxwJs&x$xDjsCUsCTvCQ CR4CX0IsV Q%JsKxIxJsqxoxJsxxJsxxJsxxDsCUsCTvU}$ %J}y yJ}6y4yJ}[yYyD }CUsCTvCQ1I}ݽ W !&J}y~yJ}yyJ}yyD}CUsCTvCQ1Is `W ~&JsyyJszzJs=z;zJskzizJszzI}jW &J}zzJ}zzJ}{zDz}CUsCTvCQ1Ib.wW A*J.*{${J.|{v{J.{{J.||Jt.l|f|U ww8'J,||J }}Xw8P8W}S}PE}}PR}}P_ ~~PlG~A~I} X (J}~~J}~~J}>8K}PXJ ~J~J}h*k\P~;7DSCUsIsX )JssqJsJsJsJsDsCUsCTvCQ CR4CX0U}r )J}75J}^\J}W}iJ ~J~΁́J}h* WP~DTSCUsUs ~*JsRPJsxvJsJŝʂJsD sCUsCTvCQ CR5DCUsCT}CQ2Bg!*CU CQvB*CU~B*CUsB{+CUsCT|B0+CUsCT BH+CUsB0`+CTBix+CU~B@+CU~B!+CU LB!+CU  CQ~CRvB5;,CUsCT|CQ0CR2BI;7,CUsCTCQ0CR2B;_,CUsCTCQ0CR2B;,CUsCTCQ0CR2DV;CUsCTCQ0CR28kZp,[  2fsv2[  ybfiv,,fuv4-evZPM-[ P2fencP,fsvP$2NsvtR 76ZN.[  2fenc,frv"2Nsvt 76QD2Nsv2aQ.8 2M-Q- Nsp 2Q'~Q~aQD EbaNsp 2aQD Eb`~b.[ 2fenc,fsv(2QTI~`4~.[ 2fenc,fsv(2[)>0~[KF~FE `mY<< 2B=enc, =sv(2q<30~Ӈ?str d;Rlen ?pv 2@  76M/N_pQ-Ac2?rvY 2qeM/N_pY-M/N_pm -M/N_pp-U%n nY0J6Inpw0J JVRO@PDupCU}CTvI}`rpj 0J}J}J}A?Dpr}CU}CTsCQ1U}rrl G1J}fdJ}J}Dr}CU}CTsCQ1Irm 1J ُՏJOPQID#tCU}CTvBnǏ1CU}CTvBnj1CU}CTvCQ}CR:CX9Brs$2CU}CTsCQ|CX1BrvH2CU}CT|CQwD3tCU}CT|Mu2N_p-M2N_p-Usnn,!3JsJsؐ֐JsJs,*JsQODnsCU}CTsCQ CR4CX0I}vo3J}xtJ}J}K}vo@J ~*&J~fbJ}h*qhP~ؒ֒DGqSCU}I}op4J}J}=9J}wsK}oJ ~J~J}'#h*phP~_]DpSCU}UsxqxqP-5JsJsJsДΔJsJs#!DqsCU}CTsCQ CR4CX0IqQ5J JFJOP•DrCU}CT~Iss  "6Js#!JsIGJsomJsJs–DtsCU}CTsCQ CR3CX0Ustt 6JsJs  Js31Jsa_JsDusCU}CTsCQ CR3CX0Usuu V7JsJsїϗJsJs%#JsJHD!usCU}CTsCQ CR4CX0Us1u1u 7JsomJsJsJsJs DHusCU}CTsCQ CR4Bm8CU}CT .CQ0Bn?8CU}CT .CQ0Boh8CU}CT~CQvCR2Bos8CU}CTsCQCX1BoǏ8CU}CTvBo8CU}BpǏ8CU}CTvBp8CU}B"p;9CU}CQ0CR2B3p!>9CU `BCp\9CU}CTvB^pv9CU}CT~CQwBpǏ9CU}CTvBp9CU}CT~CR2BqU9CU}CT~Brs:CU}CTsCQCX1B)sc2:CUCT CQ3BAsc\:CUCT CQ3BYsc:CUCT CQ3Bys:CU}Bsc:CUCT CQ3Bsc:CUCT CQ3Bsc;CUCT CQ3Bt:;CU}CT~LJtBUtǏe;CU}CTvB`t};CU}BztǏ;CU}CTvBt;CU}Bt;;CU}CQ0CR2Bt!;CU LtǏBt<CU}B,u7<CU}CT~LRuǏD]uCU}FYKY<  2w1=enc,T&=hv"27<%*2$@M@2ǥ?he8Afl?@.82@F=dH`g@B8 2CA@>!2jfB x=CUvCQ2CR0BǏ=CUvCT}B=CUvBǏ=CUvCT}B=CUvB;>CUvCQ0CR2B!1>CU CQsCR|BO>CUvCT|B7;w>CUvCT~CQ0CR2L>ǏBI>CUvBǏ>CUvCT}B>CUvBǏ>CUvCT}B?CUvB;*?CUvCQ0CR2B!I?CU @LwǏDCUvAg@@.882@F=9d BWǏ?CUvCT}Bb?CUvBǏ?CUvCT}B @CUvB;-@CUvCQ0CR2B!X@CU  CQsCR}LsǏB~}@CUvD;CUvCT|CQ0CR2A YK?iN2^D@'N2n9"O Y{?hesP 8߭@Q ~rA0ZgK@ g~G`0A?svl2Bq/~ACUvCT z $ &3$D|CUvG4B?he1v8۱ױBACU1CTHBACU1CTFBBCUvCT}CQD<;CUvCTA@`CRcopzBpnfBCUvBx~BCUvB{BCUvCTvBBCUzCT z $ &CQ8CR22z0.(BCCUvDiCUvA[I?keyd!@L2IJA`C@>2]YBԏCCUvCTzCQ~CR}CX CY0D!CU CT~I_\nDJ_J_ J_TPJ_H\P_ҴδO_]d_zP ` D5;CUvCT}CQzCR2IUs`]EJpsHBJcsKUs]=JpsJcsO}s]P~s^TI}]CdEJ ~۶׶J~J}OKh*`P~DSCUvW DJ!JѷϷJ DđCT CQ}Ir_^HJr&JrI}_^[FJ}J}PLJ}K}_^J ~ĹJ~J}:6h*hP~rpD?SCUvIsp_^GJsJsӺϺKsp _PJs  JsGCK}p0_TJ}}J}J}K}p`_J ~1-J~miJ}h*hP~ݼDSCUvKr_YJrJrUQK,s_`JGsJ:sɽŽK}_LJ}J}A=J}{wK}_J ~J~J}+'h*`bP~caDSCUvB[ICUvCTsCQ~CR}BESAICUvCTsCRzLNϑBVϑfICUBSICUvCTsCRzBVICUvCTzCQDiSCUvCTsCRzIsP[ JJsJsĿKs[PJsJs!W}(TJ}FDJ}ljJ}D}CUvCTsCQ1B.JCUvCT}CQ0BKCUzCT z $ &CQ8CR2p/z0.(D!CU xCT).z0.(CQzCR|B8!KCUvCT}Bq.KCUvCT}CQ0B!KCUvCT}DܑCU}CTPAaRR?keyd@L2(AfL@>2BԏlLCUvCTzCQ|CRzCX CY0D!CU CT|I_ b:MJ_ J_J_J_QKHbP_O_cd_zP `D:;CUvCTzCQzCR2IUsPcNJps+%JcsztKUsc=JpsJcsO}scP~s=7I}cC0NJ ~J~J}h*@pP~B>DzSCUvW DJ!|zJJ DđCT CQ|IrGdQJrJroeI}Gd[OJ}J} J}ZVK}GdJ ~J~J} h*hP~B@DSCUvIrqeYPJrieJrK,sqe`JGsJ:sK}q eLJ}QMJ}J}K}q PeJ ~J~?;J}yuh*XhP~DSCUvKse^JsJsKsePJsLHJsK}eTJ}J}J}62K} eJ ~plJ~J}h*hP~ DSCUvB[QCUvCTsCQ|CRzB.SRCUvCTsCR~B;.1RCUvCT}CQ0DCUvCT}CQI} XH SJ}ZVJ}J}K} XJ ~ J~HDJ}~h*hP~DOSCUvIUs3p`3iTJpsJcsznKUs`=JpsJcs=9O}s`P~sysI}`CTJ ~J~J}A=h*\P~ywD:SCUvW DJ!JJ DđCT CQ|I}:a"UJ}J}PLJ}K}:@aJ ~J~J}:6h*hP~rpDSCUvIspa UJsJsKsaPJs  Js0.W}(TJ}USJ}{yJ}D}CUvCTsCQ1IsP0f VJsJsKspfPJs;7JsuqK}pfTJ}J}J}%!D}CUvCTsCQ1L%!B.VCUvCT}CQ0BǏWCUvCT}B WCUvBǏ>WCUvCT}BVWCUvB1;xWCUvCQ0CR2Ba!WCU  CQsCR|Bs;WCUvCT~CQ0CR2LǏBWCUvB]!XCU pLbBǏ:XCUvCT}BRXCUvB$ǏpXCUvCT}B/XCUvBA;XCUvCQ0CR2Br!XCU  CQsCR}B;XCUvCT|CQ0CR2LǏDCUv 8/Y L?]8~2EY=a[a[=b)[@ 2L2E%3CR0]*~2]Z=a[*$=b)[~v@ 2L,2j20ZCR2B2HZCUsD2CUs]~p/H[=a_[EA=b_*[~?cmp~?a8?b8?la 0,?lb hfL/Fg_<  2=enc,+=key$d:J}|xJ}K}iPJ ~J~,(J}fbh*jhP~D7jSCUvD.hsCUvCTsCQ|Z&`[ 2fhe8fkey#t[L-EbQE~aNlenNsv 2F%f] r< f 2=encf,( =avf"2<%f*2@N<h2?ii ?leniA oHc@.8t2$@F=udwqHo@B8x2@>y2BKaCUvCQ1CR0B{iaCUvCTsBǏaCUvCTBaCUvBǏaCUvCTBaCUvB;aCUvCQ0CR2B!&bCU CQsCR|B;ObCUvCTwCQ0CR2L ǏB+tbCUvBLǏbCUvCTBWbCUvBsǏbCUvCTB~bCUvB;cCUvCQ0CR2B!%cCU LǏDCUvAod@.82+#@F=dBcǏcCUvCTBncCUvBǏcCUvCTBcCUvB; dCUvCQ0CR2B!8dCU  CQ|CR}LǏB]dCUvD4;CUvCTsCQ0CR2Api\j?svp2Gd@E2DCUvCT}CQsCR0IUs0j PfJpsJcs KUs`pj=Jps]YJcsO}sjP~sI}ojCeJ ~C=J~J}h*xP~DSCUvW}}DJ!B>J|zJ DđCT CQIrk uiJrJrJ@I}k[>gJ}J}J}51K}kJ ~okJ~J}h*pP~DSCUvIr lY[hJr[WJrK,s0l`JGsJ:s K}@lLJ}C?J}}J}K} lJ ~J~1-J}kgh*lP~DSCUvKsl^JsJsKs lPJsUQJsK} lTJ}J}J}?;K}mJ ~yuJ~J}h*mP~+%DSCUvUs  jJsxvJsJsJsJsDsCUvCTCQ CR4CX0B:jCUvCTCQsCR0DSCUvCTCRwI}% hkJ}>:J}|xJ}K}%PhJ ~J~,(J}fbh*hP~DSCUvIsEh2lJsJsKshPJsc_JsK}iTJ}J}J}MIK}@iJ ~J~J}h*bP~53D9SCUvIs 0mOmJs^XJsKsPmPJsJs40K}PmTJ}njJ}J}K}PmJ ~J~ZVJ}h*bP~DSCUvIUs7 n-nJpsJcsD>KUs`n=JpsJcsO}s`nP~sI}nCEnJ ~[WJ~J}h*d\P~DSCUvW DJ!,*JQOJ xvDđCT CQsI}7nfoJ}J}J}K}7nJ ~RNJ~J}h*PhP~DSCUvBboCUvCTBǏoCUvCTBoCUvB0ǏoCUvCTB;oCUvBM;pCUvCQ0CR2B!CpCU  CQsCR|BbbpCUvCTwBO;pCUvCTwCQ0CR2L\ǏBgpCUvB?!pCU pBǏpCUvCTBqCUvBǏ'qCUvCTB?qCUvB ;aqCUvCQ0CR2BA!qCU  CQ|CR}BeǏqCUvCTBpqCUvBǏqCUvCTBqCUvB;rCUvCQ0CR2B!CrCU 0CQsB;krCUvCTsCQ0CR2LǏBrCUvLǏBrCUvD;CUvCTsCQ0CR2Z=EYs[ Y2fencY,ZP,s[ P 2fencP,ZJUs[ J2fencJ,Z6=s[ =2fenc=,aQ2A ~ZB7s[ 72fenc7 ,fstr71flen7=[37F~Fp\k }<  2/#=enc,=str%d5=len1L F <3:~  ?end d6 0 A(}?ch-  A0x9R*?uchv:  I"`uJJJOGJ݀JЀK e  J+)JUQJJ݀JЀO P$"D3eՐCU|CTvCQvCRI}_ 8vJ ~KGJ~J}h*epP~D!fSCU|I_vJJHJxvD`CT1CQ CR pCX}I`*)BwJJ:*HPWrgrgBuJJXrgBPKCI}a0wJ ~J~ J}FBh*NfmP~|DfSCU|I} b`6xJ ~J~  J}GCh*flP~}DfSCU|B`}YxCU|CTsCQ=Bb}|xCU|CTsCQ1Be}xCU|CTsBg!xCU CT}Dg!CU CTvI}\ [yJ ~J~J}3/h*]pP~oiD^SCU|I}8]yJ ~J~J}40h*`cP~njDaSCU|I}`]OzJ ~J~J}h*DacP~XTDaSCU|I}] zJ ~J~J}h*JecP~B>DeSCU|I}`^PC{J ~|xJ~J}h*cbP~*(DdSCU|I}^{J ~QMJ~J}h*ccP~DWcSCU|I}^7|J ~;7J~wsJ}h*DdcP~DdSCU|I}_|J ~%!J~a]J}h*dcP~DdSCU|K}@_J ~ J~KGJ}h*ccP~DcSCU|I}\}J ~J~g _ J}  h*b\P~Y!W!DbSCU|LgZ}[  2fenc,fch#oZ {*~[ {2fenc{,flen{ aNcur`\~W~[ \2[\2]PIE~@0 < E2!|!=svE2!!?svtG 76V"P"A~RlenK`?pvL d""D0;CQwCR0L0`07~z[ 72fsv72Q-9Q;2Q*<2Q$=2Q.8>2`0~[ 02fsv02Q.822]#@1,N=s""@#Cg#c#?neg~##jL1'1CUUCT0D_1'CUU#CT0`a![ 2fsv2[H*`u/fsu/fchu#vQwv` v[  2fs #/flen -[  6~[R* GSaNc5vZv+T[  2fsv2aQA`72[  2[F=Q-Nsv2Nrv2`2Ɓ[s'F K@<  2##=cxtQ$I$ITL0 Js$$Jf%$H0 P:%6%Pv%p%P%%B6L3CUsCT CQ1D9MVCUsCT|ITLp ]Js%%JfK&E&Hp P&&P&&P!''BL3ACUsCT CQ1DMVCUsCT|BKCUsCT CQ@CR1BKCUsCT CQACR1BKCUsCT CQACR0BKCUsCT CQACR0DL@CUsCT CQ0Z8\[s'`!Efsfoff$1`moeÄ[ o2fao$fbo1k l 2msv2nrc $2kJ%l 2msv2anrc$2opK2Bmsv2o2`l  2pvA~m__sAjm__nAlAqp"~…m__s"jl"qpkdl9kjlkl$kpq(>-.l9>-lW>~l$>p_'-dl9'-l'[l$'p5-l9/lal$r.sUHP_'W'_@ V!V!r}/tKJ}''J~''J ~O(K(HpP~((L 0Srp1%J((J ((HP/)')Y1rzGP6J))VP))BH CUvCT CQCR0r@HrVVP**P**P%+!+Pp+n+P++Sr*~Hr~J<~,+VI~VI~U HH0fiJ,,,J,,XH0P8,,PE,,PR%-#-P_K-I-Pls-o-DIW~CTsr@IJ--JK.?.J..Jf/d/P//Pv0t0b` P00DJCUsb ^P00DJMCUsCT CQ>CR BYInvCUsBmICUsCT CQ6BIZ̊CUsCT2CR0CX0CY0BICUsBInCUsBICU~BI2CUsCT~B-JOCUsCQ2LFJL]JBJ׍CUsCTvCQvCR1DJ׍CUsCT|CQ|CR1rNJ/]J`*1"1Jy11VmVmKJ J11JK2E2J22jJyNCUULJyr,KIJ, 33J,33J,33J,l4b4J,44I,>K 5J,^5Z5J,55J,55J, 66J,F6B6D}KCU~CTsCQ0DgKCQ0tE/ uEt>>E2 t  EtG?G?Et""E~tEt%%EXtE tEt Et**En t]4]4E~ tyDyDEbv&J&Jt))EF t0<0<E tEtccE tCCE w_UFtEP t@@Eh u""Et((Et<<Et t$$E tdJdJE tEtJJEt'#'#E t..EtAAE t!0!0Ez t.H.HE ts<s<E tE1 tE1t22EtNNE{tV9V9Et--E w2(Ft E tttE! t}}E t E t++EU u\=\=Eu//Et11EtEuEtb+b+Et  EB t++Et;;Et00EtEEEtKKEt E( tEuGJGJEt{{Etx(x(EEu""Et$,$,EtwwE t}+}+EetEtEtvvE6w5+Ft++E t33Et GqtJJHuBBHukEkEInuH tE t::EwIIFuEt-5-5E t@@E9 t]']'E t""E tBBEt%%G; wq(g(Ft&&E tn.n.Et  J`t''E tFFE u22H@ w8.Fu!!Gut Et!!E t@@Et_H_HE% $ > &I: ; 9 I$ >  7I I  : ; 9  : ; 9 I8 I !I/  : ; 9  : ; 9  : ; 9 I< : ; 9  : ; 9 I'I4: ;9 I?<&4: ; 9 I?< : ;9  : ;9 I8  : ; 9 : ; 9 I: ;9 I: ;9 I : ; 9  : ; 9 I 8  : ;9 ! : ;9 I 8 " : ;9 # : ; 9 I8 $ : ; 9 I8% : ; 9 I8& : ;9 I8' : ;9 I8( : ;9 ) : ;9 I*5I+!,: ; 9 -> I: ; 9 .( / : ;9 0 : ;9 1'I2 : ;9 3 : ;9 I8 4 : ;9 I5!I/6 : ;9 7 : ; 9 I 88> I: ;9 94: ;9 I:> I: ;9 ;.?: ;9 '@B<: ;9 IB=: ;9 IB>.?: ;9 'I<?4: ;9 IB@4: ;9 IBA UB1CBD1EB1F.: ;9 '@BG H UI1RBUX YW J1BK1RBUX YW L1M N4: ;9 IO 1UP41BQ4: ;9 IR4: ;9 IS 1T 1U1RBX YW V1W1RBX YW X YB1Z.: ;9 ' [: ;9 I\ : ;9 ].: ;9 'I@B^1B_1UX YW `.: ;9 'I a b 1Uc 1d41e41f: ;9 Ig : ;9 h 1i4: ;9 I jB1k.: ; 9 ' l: ; 9 Im: ; 9 In4: ; 9 Io.: ; 9 'I p.?: ; 9 'I 4qr.1@Bs1t.?<n: ;9 u.?<n: ; 9 v.?<nw.?<n: ; : /usr/lib64/perl5/CORE/usr/include/bits/usr/include/sys/usr/include/bits/types/usr/lib/gcc/x86_64-redhat-linux/8/include/usr/include/usr/include/netinetXS.xsinline.hXS.cstring_fortified.hstdio2.htypes.htypes.htime_t.hstddef.h__sigset_t.hstruct_timespec.hthread-shared-types.hpthreadtypes.hstdint-uintn.h__locale_t.hlocale_t.hsetjmp.hsetjmp.h__sigval_t.hsiginfo_t.hsignal.hunistd.hgetopt_core.hsockaddr.hsocket.hin.hstat.htime.htime.herrno.hnetdb.hnetdb.hdirent.hdirent.hperl.hmath.hop.hcop.hintrpvar.hsv.hgv.hmg.hav.hhv.hcv.hpad.hhandy.hstruct_FILE.hFILE.hstdio.hsys_errlist.hperlio.hiperlsys.hperly.hregexp.hutf8.hutil.hpwd.hgrp.hcrypt.hshadow.hreentr.hparser.hopcode.hperlvars.hmg_vtable.hoverload.hppport.hproto.hstdlib.hstring.hmathcalls.hpthread.h . <J=Xg    X=7.i  Y rXr of>Y ;=;>tKz _;=I KIMJ 9= >JK-Y[f}Etz(x<Rx'RJKX=$4<LX K; pX>Z,J    g = WZX YtXXXlJ xRKtJW S<<..] sg X v m J  Jz{Y=Y<#&9J#&9J#&9X#&9XK GM= F>j9r<t<  lX  >Tf"h$tH.t $^fy< /WMj I/.>=[./KJ xD =;JJkY ? J.xtY z P J.lJX<<.b<2f9.<~ J<  J L#JJYXX d  dJ  KIJ    ~tJ<     WK t=J#X&9#&9 Y IL :=  / J<   ? >   .X?JI=  3#Xw #=+t6JJ/i  mJ i J /= t < /= t < /=  f />X(/9<,JJJ[(/9<,JJJV(/9<,JJJY(/9<,JJJU(/9<,JJJ  X  J<.2J<<2J<<2 Y IK I=I ?E*JOqX$2.!J.JJX  Y ;=3J0 t~J<~XoAJ9h<<J<  hXtX=<>2~XXt2i<JX/J"KJ i LH 1H=XXX ~XJK  V )J<V# )JV< J )< VJ< )JJu<  |<  > J: L: ?:/J ~'gJ"J=$4<Ȑ'gJ"J=$4<ȐEt$'t=$<5u's=$<;t=IBJ''H=$<'t=$<5t'tg$<;tBt'<g$<;t=IBJ'H L : >: ?:=JZ> |<mCyJ J =/ t < == >H J < ==  g>XiX}mE}t 0 }.<0f}<<0J0<.}mEt  <<g}mEtf  <<X )~~mEt  <<}mEth'J6=$4<Ȭ)~~mEt  <<X }'J<(/=$4<'J<g=$4<'Jg=$4<'Jg=$4<#K  V )J<V# )JV< J )< VJ< )JJu<   Z  = [   [w <Jyf < 0   =f cY=<<Y   <vZ JJJgrKYYYL<Z =WXIKXJLk X.XJ.JfYK!Lbh_KW2W&WW< ` /  KX  X < < 1   = =dY=<<    <OKtcYKK+tK= ~tJ#,<&Z&YJ&=X.[X=[ t.  u <tyXX    =f  `=<<     Y vuyX J 0   =7?  Y rZ o>KIY ;>< t J= JK <<Yfv <tyXf    =f t7v XtvyXf <   =7.  Y U+<Z&J"J[ JLa=<<  o> ;=;><  0   X=f  u.  u o>Y ;=;> t s o>< ;=;><  o>t ;=;><  o>< ;=;><  o>ȐK ;=;>       v.7s?  .t o>Ȃ ;=;>7u  J< <t~.Jy o>Ȃ ;=;><7   't Y.J t.J_XX)  IK =Y Yu tmt<J } x  I /~ .XX {4<Z*;H t~.Jy o>Ȃ ;=;> tJ\J<!JaJ!=aYY!"?I=+)a  f_.XXX . jX<#JbJ!KbYY!"?IJ } t .JXBcXX o>< ;=;>  t ~.JXy. XbXbX XuX} JcX  e =\ H >9KXXeKZM ??Lci`YK.J=WK"tJX~XTtJX|r XXy=fp.   =7f  Y<0 <>( rt 0 XK-/X s kbtf* ..JLXr XXy=fp.   X=f  X` r   ]KIY W><7  J ]KIY W>< ^<""]X !   =&J/&;=I uX.6Xfx YX  Ks Q#  .JQ< .< Q<< .<J= IuJ><LH<><<N< < yJZ|  X(JZX |X |X %XXX J < IK< =J yJ<fX  y X  Z|  X(J XT< |X |X %XX  #  y.,X<f tt$XX С| K; T#  *JU<  *< UJ< *JJu<  $tHtpgX@XgXX   JJ   (X?g>/XKXt  |  p  p      J $ L==J @==J@<ۭK oJYYo X#J~ fXJ ~J  p ` XJ> u/y    YXJ + JsJxL X> " <  $ fx }<      ;YI K YX      YI Kc Z2=;J2%<K%; K  {fJ..J<WJ.t5.WEJ>JK>-UJ <J.<J<WJ.X5<WE<>JK>-UJ <J.<J<WJ.X5<WE<>JK>-UJ <.5fJXW<>XWJ><UJ .<5X> J 0, r<  KW K KrY  J r<  r<<  r J<   J9{ $ YM YJ Zh LnXf .J  9  J0,< #K    n % RXn t vJtfv:>Jh<X+(  .  J  q J q<< s  r J~ K  X>  ~f ~Z  y"    X<Y  X@@<oXX J < <{~t #tNE K Yk +/ztJtJX%=XUJX   J 0,< t<  K  tY  J t<  tX<  ;K k t f(~   XJ8t~ X Jn J     rJ ~~t<  sX(  |ft | J~. ~~!XKh|   J  g".0Y. Y0$X %<< =l ? z X#vJV?KXsX.}w( <~+==J@<k >X{J rJ ~~t<  sX,X ~~yyJL>$H.     7Jxy"v$H ymE  < { < {f ymE'uJt"tK$4<JX}yyJL>$H. < 1    $X'~ < : |t>><" {J  f<v ++(| Xt mJ<m< J=!!~.  JIK X~n JX   J HJn JX[.{K/XJ~f< X 9;X JWKM  U?\ r: =u  jJf yI g< y J< E E " XyI g< yI g< y J<t>*< Y> jxJ y<< }y J<.  - (IKy f :>X JMJ~@ r>u  j<f  M ?Zd;:Jb{_4_zJ g   yX{yJhttlvXK ~xK=gX@XgX . J,,,JKJxD$` fZ==J! q X.XX zXXXK zXXm JJvm u b Jb. <bf tbf  s XXXX {Xf  Uzff~X / afX X +( .X { I/ ;g sg  X  | W{/z.f2|mEt  <|f< [K  J v = =I[ \   f fXX lu  hJJ >  XJ3"|t{mEJ  <<  Z.  Z|<$}J< |} K <.}fJ}<< J|~mE<J  <<< zj~mEt  <<< | ~<~<EJw  <}JXY ffr~mEt  <X |$ J'J.<7{'J<g=$4<   }<"~X"X L~X~J}X<K~ K <<~fJ~Jtz.Bf7}mEt  <<ZJ  LZY<LJ<> s[< < yJZ|   (tZ< |(X W-V--V++p $ &3$q"+ ,v $ &3$q" ,,v $ &3$u",?,v $ &3$s"--v $ &3$q"++up $ &3$q8+ ,uv $ &3$q8 ,,uv $ &3$u8,?,sv $ &3$s8--sv $ &3$q8X,-V>--V+,@! $ &3$u",?,@! $ &3$s",,T]-d-T,,S]-j-S,,Q,,t]-d-Q,,Tj-q-T,,Sj-w-S,,Q,,tj-q-Q,,TS-Z-T,,SS-]-S,,Q,,tS-Z-Q>-S-Tw-~-T>-S-Sw--SC-K-QK-N-tN-S-qw-~-Q,-0++Up**U*S+SS+W+UW++Sp**T*+T++T++U++Tt*v*u**P*+VW++V++V**p $ &3$q"**v $ &3$q"**v $ &3$u"**v $ &3$s"++v $ &3$q"**up $ &3$q8**uv $ &3$q8**uv $ &3$u8**sv $ &3$s8++sv $ &3$q8+T+V++V**@! $ &3$u"**@! $ &3$s"+++T++T+++S++S +(+Q(+++t++QF+W+0t**UUSUxS)T)UlTlwUwxTuslws47P7VFVlxV7;p $ &3$r";v $ &3$r"lwv $ &3$r"7;sp $ &3$r8;sv $ &3$r8lwsv $ &3$r8VFlVN@! $ &3$s"0U4S`U+S+/r}/S`T~T~TUTdfuP,V/Vp $ &3$q"v $ &3$q"v $ &3$u"v $ &3$s"~v $ &3$q"PrfyPy}r@! $ &3$u"@! $ &3$p"@! $ &3$s" /1dU`vvUvzSzzUz}S`vvTvo}To}y}Ty}}}U}}}Tvv]v|x}v $ &3$xx_xy}v $ &3$yz_z-zP-zz_zzUz#{_#{{}v $ &3${9|_9||}v $ &3$||P|}_}a}}v $ &3$a}o}_o}~}]~}}_vvPv$w\$w7wxy\o}~}\vvp $ &3$q"vw| $ &3$q"ww| $ &3$s"o}}}| $ &3$q"v|xVxyV#{{V9||V}a}Vo}~}V!wx^yz^zo}^~}}^3ww\#{E{\]{{\9||\}a}\vv@! $ &3$u"vv@! $ &3$p"vw@! $ &3$s"w\x\wxUxxt#-x8x-x9x\-x1xtu"1x8xUzzPz!zX||X||MzQzQxx^yy^zz^{#{^{9|^||^xxTyCyTCyPyPPyTyTTyhyPhyyTyyPyyTyyPyyTzzT{#{T{{P{{t{+|P+|9|T||Tg||P||p||P}}P}a}Rg|{|T{||Q}"}T"},}P,}a}QvvUssUshtShtrtUrttSscsTcstTttTttUttT(s\s_\ssv $ &3$ttVtS<S<TS<u>Tu>>T>>U>>T<L<_L<5=v $ &3$D=D=_D=L=L=d=_d=e=Ue=K>v $ &3$f>k>Pk>u>v $ &3$u>>_1<5<Q5<^=\e=>\5<9<q $ &3$p"9<<| $ &3$p"u>>| $ &3$p"@<5=Ve=K>Vk>>V<b=^=u>^L<q< } $ &3$p"q<< q $ &3$p"<< } $ &3$p"<*=]==] >6>]L<<@! $ &3$u"<<@! $ &3$s"->6>P>>Tk>r>T>>Tk>r>T>>Sk>u>S>>Q>>tk>r>Q<1<U&'U''S''U'l(S&&T&](T](g(Tg(k(Uk(l(T&&_&'v $ &3$''_''''T',(v $ &3$F(K(PK(](v $ &3$](l(_&&Q&']'l(]&&q $ &3$p"&('} $ &3$p"](k(} $ &3$p"&'V',(VK(l(VA''^(](^U''\( (\'(](\&'@! $ &3$u"''@! $ &3$q"'('@! $ &3$s"Y'p'TK(W(TY'p'TK(W(TY'p'SK(](Sa'm'Qm'p'tK(W(Q&&Up((U()S))U)d*Sp((T(U*TU*_*T_*c*Uc*d*T((]()}v $ &3$))]))}))P)$*}v $ &3$>*C*PC*U*}v $ &3$U*d*]((Q()\)d*\((q $ &3$p"()| $ &3$p"U*c*| $ &3$p"()V)$*VC*d*V!))_)U*_5))^)*^*U*^((@! $ &3$u"((@! $ &3$q"()@! $ &3$s"9)P)TC*O*T9)P)TC*O*T9)P)SC*U*SA)M)QM)P)tC*O*Q((UUSUSTTTTTUTuYVVPYVVVp $ &3$q"v $ &3$q"v $ &3$q"v $ &3$q"up $ &3$q8uv $ &3$q8sv $ &3$q8sv $ &3$q8Pc r#E]]]Pcr?@! $ &3$s"]QQ1U U?S?IUIS sTsTTUT<l_lv $ &3$''_'//ITIv $ &3$P_v $ &3$QUQUD]I]UYq $ &3$p"Y} $ &3$p"} $ &3$p"`VIVVF^^^ PPl@! $ &3$u"@! $ &3$q"@! $ &3$s"<QU [ U[  S U S [ T[ F TF T TT x Tx T U T  u Va x V' * P* V a Vx V* . p $ &3$q". [ v $ &3$q"F T v $ &3$q"x v $ &3$q"* . up $ &3$q8. [ uv $ &3$q8F T sv $ &3$q8x sv $ &3$q8 r#[ ] F ]a x ] r[ @! $ &3$s" Qa r Q 1 ' U  U S U " S T  T  T ! U! " T _ w v $ &3$ _  T v $ &3$  P " _ P ] " ] p $ &3$q" ! } $ &3$q"! ( } $ &3$s" ! } $ &3$q" w V V " V= ^  ^  @! $ &3$u"  @! $ &3$p" ( @! $ &3$s" UUSUSTTTTTUTuMuVVPMVVVp $ &3$q"v $ &3$q"v $ &3$q"v $ &3$q"up $ &3$q8uv $ &3$q8sv $ &3$q8sv $ &3$q8DRrRuQQ]]]@DrDRR/@! $ &3$s"MP r PuQQy1U0 U 9 S9 C UC S0 T T T U TL | _|  v $ &3$! ! _! ) ) C TC v $ &3$ P _a e Pe > ]C ]e i p $ &3$q"i } $ &3$q" } $ &3$s" } $ &3$q"p  VC V V @ ^~ ^| @! $ &3$u" @! $ &3$p" @! $ &3$s"L a UkUkSUSkTkVTVdTdTTUTuVqV7:P:VqVV:>p $ &3$q">kv $ &3$q"Vdv $ &3$q"v $ &3$q":>up $ &3$q8>kuv $ &3$q8Vdsv $ &3$q8sv $ &3$q8rQqQk]V]q]rRk@! $ &3$s" r QqQ 17UUSUbSTSTS]T]aUabT]}v $ &3$]}P2}v $ &3$NSPSb]Q\~b\q $ &3$p"8| $ &3$p"Sa| $ &3$p"V2VSbVQ_S_~P@! $ &3$u""@! $ &3$q""8@! $ &3$s"U U Sr}S TBUB T TUT \|xPp|x P \ PVV Vp $ &3$q".v $ &3$q".jv $ &3$s" v $ &3$q"|qp $ &3$8.|qv $ &3$8.j|v $ &3$s8 |qv $ &3$8t#(Bu#(BPp(PjT#( t#(u#(tBuBPPPjT tuV Vj@! $ &3$s" S 4U4NSNXUXS vTvUTTUT?o]o'}v $ &3$66]6>}>XPX}v $ &3$P]TXQXQ\QU~X\X\q $ &3$p"\| $ &3$p"| $ &3$p"c'VXVVcvt#(vu#(q(T#(t#(u#(cvtvuQTtuXXXQo@! $ &3$s"?TSpUSUSpTUTUTUTV\|\PVPQQ s##Qp $ &3$r"q $ &3$r"q $ &3$r"q $ &3$s"s# $ &3$s"q $ &3$r"vrp $ &3$8vrq $ &3$8vrq $ &3$8vq $ &3$s8vs# $ &3$s8vrq $ &3$8___]]] P^^^ >P 'P '0 'PS4U45UT5TuP4T4T4U45U#Q#&t&'q'4QUUSUUTTuTP8PTU`hhUhtkStkkUkoSooUooUopSppUppS`hhTh'j_'jAjTAjWj_WjZjTZjk_ko_ooQoo_ooPoo_ooTooTop_`hhQhk]kkQk2n]2nnQnHo]HoooQooo]ooQooQop]`hhRh'j\'jHjRHjk\kkRk;l\;llRl"n\"nnRnHo\HoooRooo\ooRooRop\`hhXh'j^'jHjXHjj^jlXll^llXl4m^4mmXmn^n$oX$o5o^5ooXoo^ooXooXop^ppXjjPjk^kkPkk^k)l^)l4l0ll04mYm^n$o^5oHo^pp0h'jVwjkVkHlVl"nVnHoVoooVopVhi0'jj0mn0nn3$o5o0op0hi0'jj0mn0nnR$o5o0oo0ooRop0mmRmn}ooRopRHlOlPOllV"nnVHoooVll_llQllSnn_nnQnnSi'j~jj~l4m~ij~jj~ll~.kMk^Ymm^ooo^.kEkSkk~k l~4mYm~n$o~kk~k l~4mBm~nn~l4l^ll^5oHo^l4lSllS5oHoSl%lQ%l)l~5oBoQYmtm^ooo^YmtmSoooSdmpmQpmtm~oozoQFGUGVI\VIxIUxII\IIUIIUI3J\3JJUJJ\J=KU=KkK\kKKUKK\KKUKK\KGLUGLkL\kLLULP\PqQUqQ ]\ ]]U]]\]]U]o^\o^^U^^\^^U^}`\}``U`b\bbUbXc\XcjcUjcg\ggUgSh\FFTFVI_VItITtII_IITIITI3J_3JJTJJ_JKTKkK_kKKTKK_KKTKK_KCLTCLkL_kLLTLM_MMUM ]_ ]]T]]_]]T]o^_o^^T^^_^^T^,__,_C_UC_}`_}``T`Sh_FFQFHVH#HS#HVI]VIIVIIQIkLVkLLQLMVMMQM:NV:NOQOQVQ|RQ|RRVRR]RSQSSVS6TQ6TUVUVQVW]WWQW[][]V]"]Q"]Q]]Q]]V]]]]C_VC__]_`V`a]aaQab]bbVbbQbXc]XcjcVjcc]ccVccQcc]ceQee]eeQeeVe9f]9f|fQ|ffVff]f%gQ%gwg]wggVggQgg]gShQ3LkL]PP]^,_]FHVH#HS#HVI]OOVRR]RSQVW]WWQW[]\ ]V"]Q]]]]]V^o^V^^VC__]`a]ab]bbQbXc]jcc]ccVcc]AdyeQee]e9f]|ffVff]fgQ%gwg]ggQgg]hJhQFFTFVI_OO_RS_V[_\ ]_"]Q]_]]_V^o^_^^_C___`a_ab_bXc_jcc_cc_cc_Adye_ee_e9f_|fg_%gwg_gg_gg_hJh_FGUGVI\OO\RS\V[\\ ]\"]Q]\]]\V^o^\^^\C__\`a\ab\bXc\jcc\cc\cc\Adye\ee\e9f\|fg\%gwg\gg\gg\hJh\RRPRSSAdyeSffSffPfgSggShJhS G GP GHwHH~HVIwOOwRSwV+Ww+WOW~OWXwXX~XYwYY~YZwZ=Z~=Z[w\ ]w"]Q]w]]wV^o^w^^wC__w`awa?a~?aawa0bw0bRb~RbbwbXcwjccwccwccwAddwdd~dyeweewe9fw|fgw%g>gw>gWg~WgwgwggwggwhJhw GG0GGPGGOO0\ ]0V^o^0^^0cc|ff0GGPGG]cc] G Hs@=$ HHu@=$OOs@=$\ ]s@=$V^o^s@=$^^s@=$ccs@=$|ffs@=$ G Hs@<$ HHu@<$OOs@<$\ ]s@<$V^o^s@<$^^s@<$ccs@<$|ffs@<$ G Hs@C$ HHu@C$OOs@C$\ ]s@C$V^o^s@C$^^s@C$ccs@C$|ffs@C$ G Hs@F$ HHu@F$OOs@F$\ ]s@F$V^o^s@F$^^s@F$ccs@F$|ffs@F$  G Hs@G$ HHu@G$#HVIOOs@G$RRVWW[\ ]s@G$"]Q]]]V^o^s@G$^^s@G$C__`aaa0abbXcjccccs@G$cceee9f|ffs@G$ff%gbgbgwg0gg G#H"#HVIVOO"RRVVWVW[V\ ]""]Q]V]]VV^o^"^^"C__V`aVabVbXcVjccVcc"ccVeeVe9fV|ff"ffV%gwgVggV G GP GHwHH~HVIwOOwRSwV+Ww+WOW~OWXwXX~XYwYY~YZwZ=Z~=Z[w\ ]w"]Q]w]]wV^o^w^^wC__w`awa?a~?aawa0bw0bRb~RbbwbXcwjccwccwccwAddwdd~dyeweewe9fw|fgw%g>gw>gWg~WgwgwggwggwhJhwG`G_\ ]_V^o^_NG`GP\\P\\QV^o^PGGPGGccGG]cc]GG\cc\GGQGG}ccQSHHQV WQXXQv__0``QjWWPY8ZPaaPeeP%g3gPSHVI0VHW0HWLWPLWTW^bWfWQfWW^X>Y0YYY0YYPYYYYZTZa[0q[[0"]Q]0]]0`a0aa^ bb0cXc0jc}c0e9f0ff0gg0SHH0HVI[V W0 W&W[&WTWX Y0 Y.Y^YYTZ^TZ[[[a[^q[[^"]Q][]]^`Ba0Basa[ bVb0Vbb^bc^cXc[jc}c^ee^ee[e4f4f9fPff^ffP%gwg^gg0SHWHWHVI^VW^XX^TZ[^"]Q]^`sa^cXc^e9f^WHHRV WRXXR``RHHXY~xHVIS WWSTZ[S"]Q]S`saSaaScXcSe9fSHHPHVI~ WW~TZ[~"]Q]~``P`sa~aa~cXc~e9f~IVI_TZZ_%IHIQTZuZQuZwZp;aiaPeePBaLa[eePe9feePe9fHH_ZZRZZQZZQ"]<]QccQccRXXPX.YSYYTZS[a[Sq[[S]]S bbSbcSjc}cSeeSffS%gwgS Y.Y_[a[_]]_jc}c_Y.Y[[]]lYY_q[[_zYYRq[[R=ZTZSbcS=ZTZ\bc\@ZLZQLZOZsOZTZqbbQVb`b^ffPffffPffRR_ XUX_a[q[_``_RRP!XGXP``P``QWW_UXX_>YYY_a b_WWUXoX>YYY+SsSVsS}Sv}SSVSSvp $ &3$SSVffvxfgVggVggPggVSSPFSgSPggPggPSSSWWwbbPbbwWW\bb\WWQWWw#WWqbbQAdd0ddPdye]hJh]fdjdPjdye^hJh^ddVdeveOeVOeUevp $ &3$XeyeVhEhVEhJhP+eUePddP"h)hP*h/hPFeOeSyII_yII\I3JVLMVOPV|RRV6TFTV6\\VQ]]V]V^V^^VccVIITI3J_LM_OP_|RR_6TFT_6\\_Q]]_]V^_^^_cc_IIUI3J\LM\OP\|RR\6TFT\6\\\Q]]\]V^\^^\cc\IIPI3JSLMSOPS|RRS6TFTS6\\SQ]]S]V^S^^SccSI3J0LL0LLPLMwOPw|RRw6\\0Q]]w]V^w^^0ccwLLPLL]cc]IIPI3JSLMSOPS|RRS6TFTS6\\SQ]]S]V^S^^SccSI3J_6\\_ J%JQ6\]\Q]\_\pLLPLLwccwLL]cc]LL\cc\LLQLL}ccQ:MLMPM'M0'M+MP+MM]OP]Q]]]]V^]MMwM_O P_PP_Q]]_hMqMRqMwMQO PQPPQQ]p]Qp]r]R"PhP_PP_]V^_6P:PR:PJPPXPhPP]^P^^RMMS6TATSMM\6TAT\MMQMMs6T@TQhJJTJJ_MM_MMUMO_S6T_[6\_^^T,_C_U___aa_yee_ee_g%g_hJJUJJ\MO\S6T\[6\\^^U,_C_\__\aa\yee\ee\g%g\hJJ0MM0MMPM O^ OOsO_O~SSPS6T^[6\0^^0,_C_^__^aa^yee^ee^g%g^hJJ0MM0MNPNO]O_OSS0S6T][6\0^^0,_C_0__]aa]yee]ee]g%g]JJTJJ_[6\_JJP[[P[[s:NOVyeeVeeVg%gV:N>NT>NOwyeeweewg%gwNO0OVO]VO_OVLNPNpPNO~#yee~#ee~#g%g~#QNqNPyeePOOSwNNPNO~ee~eePee~g%g~UNNSNNsNNPNO~O3O }3$s"#3O?O }3$s"#?OVO }3$s"#VO_O v3$s"#OOSOOPOO|yeeSeeSeePeeSg%gSNNPggP g%gPOO^gg^OO\gg\OOQOO~ggQOOSOOSST^^^0aa^ST\^^Uaa\TTQTT~aaQT6T]aa]T6T\aa\T+TQ+T1T}1T6TqaaQJkKVPQVQ|RQFTUVUVQ]]V__V_`VbbVbbQXcjcVccQcAdQeeV9f|fQwggVggQghQJKTKkK_P|R_FTV_]]T]]_____}`_}``Tbb_Xcjc_cc_cAd_ee_9f|f_wgg_gg_gh_J=KU=KkK\PqQUqQ|R\FTV\]]U__\_}`\}``UbbUbb\XcjcUcc\cAd\ee\9f|f\wgg\gg\gh\JkK0PQ0QQ1aQkR1FTeV0]]0_`0bb1Xcjc0cc1dAd1ee09f|f0wgg0gg0gh0JJSJJPJkKSPRSFTTSTTSTTSTUS U US%UVS]]S__S_`S``SbbSXcacS1dAdSeeSwggShhS-KkK]FT\U]\UU}s-)_}`]ee}s-)wgg]8USUPwg~gPUUPUeVV9f|fVggVghVUUVhhVUU\hh\UUQUUvhhQQQPQkRVbbVccVdAdVQQV1dAdVQQ\1dAd\QQQQQv1d;dQqVxVPxVVQVVSxVVSxVVSKK_KK\WUW]U]hUWTW]T]hTQQQWRW]Q]hQOROWXW]R]hRLXLSwSWPW]X]hX)0)4pq#99pq9>pq#A0AWY]h0UUUb#~b##U##~##U#$~$$U$%~%&U&&~&&U&v&~v&{&U{&&~?T?b#~b##T##~##T#$~$$T$%~%&T&&~&&T&v&~v&{&T{&&~UQUb#~b#j#_j##Q##~##_#$~$$_$%~%&_&&~&&_&v&~v&{&Q{&&~?U0Ua ]a n _n C!]H!m#]#%]%%P%v&]{&&]?U0U!~!@"1@"b#~##~#$~n$s$1s$$~$$~$$1P%%~%%1%%~&&~&+&~+&a&1a&v&~{&&~ ]^^n ^ Q !TH!H!^!!u#!!u@"@"^@"O"vO"T"VT"T"^T"c"vc"h"Vh"h"^h"w"vw"|"V|"|"^|""v""V""^""v""V"+#^+#:#v:#?#V?#?#^?#M#vM#R#VR#R#^##^\$_$p1$v"_$s$vp"s$$^P%h%Qh%h%^%&^a&v&V{&&Q]lQlPQn t Qt w Pw vH!Q!vQ!T!v~@"C"vT"W"vh"k"v|""v""v""v#.#v?#A#vR#b#v##P##Q#$P$ $pB $4$v$+%vh%o%Po%%q %%v%%~& &v &&~U]\]uSusSn S s &!SH!"S"@"s|@"@"S@"K"sK"T"ST"_"s_"h"Sh"s"ss"|"S|""s""S""s"+#S+#6#s6#?#S?#I#sI#m#S##S##s#?$S?$?$sp"?$R$sp"#R$b$sp"s$$S$$s$$S$$s}$%S%C&SC&a&s~a&v&S{&&S P{&&P P ~P%h%~{&&U P qt" q("P%U%PU%\% qt"\%c%q(" R QP%h%Q ##P""P"#~s$$~""P" #v0 $ &s$x$Px$$v0 $ &$$~0 $ &" #Q" #R""p""~" #^s$$^ !!Pa&f&Pf&v&qm!!P!![!@"[$$P$$[%%P%%[%%P%%P%%[&&P&+&[+&O&Pa&v&[!@"[$$P$$[%%P+&O&P!"S"@"s|$$S$$s$$s~%%S+&8&S8&C&sC&\&s$$p<%!$${<%!$$ {6%?!$$ {?!8&O&p6%! !;"[ !!S!"s""s} !"{B%!"!" {<%?!!"0" {6%?!0";" {?!$4$~$,%~$4$r $%r %+%~# $4$Q$+%Q+%,% ~v$4$~$,%~$,%~$%r %+%~# $+%Q+%,% ~v$,%~n S&!H!S%%SU}#  S  \  }u"  UPUVUVPT\T\PQOSOQSCQCpSpQPR]R]T\\UVDOW+WcWDOV+VcV+WcW+VcV+:c:+WcW+VcV1c1WcWVcV}S~V+CV+<T}}U}SUSSUSSU\S\aUatStyUyS U 'S',U,ϥS}}T}@V@lTlnVnTVTSVS[T[VT2V2RTRuVuTVۖTۖ V 6T6SVSgTgVT-V-DTDϥV}}Q}_S_S_Q_ґ__#Q#j_w_ Z_ZfQf6_6SQS,_,sQs_Qϥ_}}R}~\l\m \b\&\&*P*S\S_R_e\1s\\э\Վ@\y\B\ޒ\\ʕ\\\\\D[\t\}~0~x0xPmvPvQbQe0Ës00э0z0ՎQy020ޒ000×QQ060S00D[0t0}0mm0mp /`00Ã0e0PY05F0Ës00эT0z0y020ޒ0000 00#0j0iܞ0 #0Zf000ʢ0h00D0,s00}0mm0m 1/`00b1Ã0e0PY05F0Ës00эT0z0Վ@1y0B120ޒ00ʕ100×1 001#0j0iܞ0 #0Zf000ʢ0h00D0,s00~~TTэTyT(P(@xËϋPϋ$xzxt T$X%6PR\P-0dm1ȅ0э0Tz00020͓ؓ1ʕ00ݗ0H0010U1UZ0Zi1M0MVUVd~dm~ȅ0P~e~s@~э0Tz0Վ~@y~0020ޒ~͓0ʕ00ݗ0ݗ~ H~H0Θ~N~i0,~~R0RVPVddmȅ"0"KPKSSPes@э0Tz0Վ@y0020ޒP͓0ʕ00ݗ0ݗP HH0ΘNi0,m0ȅ0e0s03э0Tz0Վ2@y00020ޒ0͓0ʕ000H0Θ3N1i0,0m ȅ Braэ Tz   2 ͓ aʕ  ݗ H  aU UZaZi m\ȅ(\(d0S\э\Tz\\\2\ޒ0͓\ʕ\\ݗ\ݗ0H\i\͓ؓ^ʝ^7i^ ~h^Tc~~~2~ʕ~~×ݗ~Hx~x^UbPb^TTDPTcPPPpxPssRVQRW^RVUVW~#P#H\$\$^#U#$~@@\0"T0VU0S3S35vՎ7Վ (Ў^ЎՎvΘ6Θ^4N64I^J^Ë^{^v_ov v9IvUXPX~PË~{Pv_ov v9Ivΐ\\ |p) |~) |~)0011Cґ\ʢ\h\\|\&P&]}ӡ]ӡӡPӡڡpxڡP]\\ң]ף]d\\ҠPP&dTTTTsPףޣP\v  F v9I 9IF9IvIh0Ih1Ih ;IhVIhSNPPbPP-@PwPE\\_bPb\ETQTPT\TPpx%P%Ess_o_p\_ov2[\[bPm\PĄ|2$|"ĄքPք|2$|" 5P |2$|" 5 5zQrPRDŽuPDŽRuP R20TʄTلT tr!0.N\`]m"mqTqVmqUqS"VS F^{ {F{^!\GU\"VSE~V~PV~~E~u~SZ~u~QZ~u~qZ~u~qZ~u~q]~u~]u~~u~~Su~~]_T__ ___#Qj_iܞ_ #_ZfQ_6SQ_ʢ_h__[t_,sQQVTVV VV#VjViܞV #VZfVV6SVVʢVhVV[tV,sVVSTSS SS#SjSiܞS #SZfSS6SSSʢShSS[tS,sSSӂQQQp(| p | ә| ٙP#~Pj^itPԞמPמܞ~Zf~~6S~~ʢ^h^,s~~\!\!%T%T\t\txTx\ \\\C\C[Qiܞ\ #\Zf\\6S\\ʢ\h\T\[_T_t\,s\\<^^^Ԟܞ^Zf^^6S^^,s^^P#Zf6S,sC]CL}LP}PpTptut}]p $ &3$P#]Zf]]P6S]],s]]P_1||Λ1|#1|Zf_6S_,0P0s__P#_Zf_6S_,0P0s__6PPP(VSښ"ښVښS9^"9^V9^S^})^}V^}S}#[}#V}#SΛ]ΛVΛS#,#V#S]}*]*CPCGpxG[Pʢ]PhlPls]֜PPPt\ #\tS #S] #]ɂ\ɂVɂSԂP0 0\ \V VS St\txTx\ \\j\iܞ\ #\Zf\\6S\\ʢ\h\[_T_t\,s\\S S#SjSiܞS #SZfSS6SSSʢShS[tS,sSSQ Qq qq qq q^ ^ _P]_]\5F_B_\ʕ_\#\ܞ\f\T\T\swTw\ϥ\ VPV5FVBVVʕVV#VܞVfVVsVϥV SPS5FSBSSʕSS#SܞSfSSsSϥSeQ=Q=pQ#-Qܞp| frpQ /0 /4 /  /V /S\VSP05 VS00ܞ0f011ܞ1f1\\ܞ\f\VVܞVfVSSܞSfS\\#\ܞ\f\ϥ\$SS$TT$tt$tt$tt$RR04 VSȓ͓0ȓ͓5ȓ͓ ȓ͓Vȓ͓S,@",@V,@S ;" ;V ;S;@0;@4;@ ;@V;@Sȓ"ȓVȓS1#Z110#Z00]#Z]]V#ZVVS#ZSS]#Z]]S#ZSSRΟRrΟrrΟrrΟrQ}Ο}ߔ"#Z""ߔV#ZVVߔS#ZSSߔ11ߔVVߔSSP\'>0'>4'> '>V'>S>">V>S>1>V>S`dPd\#?0#?5#? #?V#?S>?U? ?] ?4?U4?l?]l?q?Uq??U? @] @@U@@]@AUA0A]0A4AU4AcA]cAnAUnAzE]zEEUEE]EEUEF]FFUF}F]}FFUFF]>>T>g?Sg?q?Tq?FS>>Q>4?V4?q?Qq??V? @Q @@V@@Q@0AV0A4AT4AAVAAQAAVA:BQ:BGBVGBBQBRCVRCDQDCEVCEzEQzEEVEETEEVEFQFFTF}FV}FFTFFV>>R>4?\4?q?Rq??\? @R @A\AARARC\RCDRDCE\CEzERzEE\EFRFF\>4?0q?t@0t@@_@A0AB_BB0BRC_RCC0CD\DD0DCE_CEXE\XEuE0zEF0F}F_}FF0>?0? ?P ?4?0q??0??P? @\ @$@0$@E@PE@@^@{A0{AA^AA\AAPARC^RC[CP[CC\DD\DCE^XEuE\zEE0EF\FF0F}F^}FF0>>Q>?r ?4?Qq??Q @@Q@ @r @ AQcArAQzEEQ??P? @VAAVRCDVCEuEVEFV??V? @VAAV? @]AA]?@Q@@v@ @qAAQCC"CCSCC]CC"CCSCC]CDVCEXEVCD]CEXE]CCQCCvCDqCEREQ4?N?04?N?44?N? 4?N?S4?N?]@@"AB"@@SABS@@]AB]@@1:BB1@@S:BBS@@]:BB]PBBV@@"A:B"@@SA:BS@@]A:B]@@1A:B1@@SA:BS@@]A:B]A:BVBB0BB4BB BBSBB]BB^D(D^BB]D(D]BBQBB~BBqD"DQE3E0E3E3E3E E3ESE3E]F7F0F7F3F7F F7FSF7F]7FQF07FQF47FQF 7FQFS7FQF]aF}F0aF}F4aF}F aF}FSaF}F]Х<U<cVcgUgGVGTUTVUVIUIVU?V?CUCVUVUVUVUiVimUmVUUVUOVOSUSVUϸVϸӸUӸVХ<T<STխSխThShTS5T5STS@T@USUiTiSTTySyTSϸTϸSХ"Q"c]cgTgG]GTTTc]cQ}]}Q]z]TЭ]ЭQ5]5z Q lzl]Q]SzS?]?CTC]T]Q]z]Q]T]Ti]imTm]QQ]TO]OSTSt]tQT]ϸQϸӸTӸ]QХ<R<c^}^^zPIRI\5^5z lzl^\^SzS ^ \^\ܴRܴE^E\z^ \ ^5\@^@U\U^RR^\<0<jwwөzөwzw0w w0 w 0w0w 0 w500w0 P G_ȧPȧ\n_nzPzr_rP___5\5C_S_S_P_ ___ _5_P_ƴP8x x p Tp'8X9JPĶζPm|P|~$/P/~W[t[qTڦ0 \ | | G\\rԪ\||\S \\\txPxz0\Gzzrݪzݪ\z5\ l\S\S zz\ztʦ{ʦڦPڦGzzrzzPzPz{5z lz zzzzt0Gzzrzz05z lz zzzz¦0EzEGPzPrzz0zS zzzP#'P'gz"^^BP^s^߬^5?^^"ū]]EPPs]5]S]]PP ū__5_S__ B8Cs8C B#Cs#C BVsV.>QKPQ$E]Ps]SS lSVV lVūS lSūV lVū̫ ss ̫R] DRDl]ҫ] l]ҫS lSҫV lVl^] sūS߬S5SSSSūV߬V5VSVV,5,S5SV5V151S5SV5VH^SSSVSVSSSVSV:S:SSSVSV1S1SSSVSVPS^߬SS߬VV߬SS߬VV׬  ׬SS׬VVѬ11ѬSSѬVV^ĪϪSSĪϪVVSV:SV\$/\\ \.P.èz$/P/OzrzְCzz zѩP Pn_/_O}__ _$K/KO}K$K/KO}K$V/VO}V!Q*/Q$XOiXi}zSSlְSVVlְVèSlְSèVlְVę̀ ss ̨\lְ\Ҩ\lְ\ҨSlְSҨVlְV{Rz\ swèS/OSrSְCSSwèV/OVrVְCVVw,r,wSrSwVrVw1r1wSrSwVrV r\èSSèVVèSSèVV  SSVV11SSVV\/OSְCS/OVְCV/OSְCS/OVְCV/O:ְC:/OSְCS/OVְCV/A1ְC1/ASְCS/AVְCVPC\<Y{C{<YSCS<YVCV<M1C1<MSCS<MVCVX\cSTϯ SS5SScVUϯ VV5VVٯ S5Sٯ V5Vٯޯs |ޯ \5\\5\S5SV5V@]\ sj}}}j}SSj}VVjw11jwSSjwVV\ŧЧS5SŧЧV5V5S5V5:5S5V}SS}VV S5S V5V :5: S5S V5V)U)PVPUU-T-OSOUT.TP@WUWjVj U@[T[\T \_cPcSU SUUTTPutQVR9*9U*99V99U9M:VM:R:UR:;V949T499S99T9L:SL:R:TR:;S949Q49o9\o9R:QR:l:Ql::\:;Q949R49R:RR::R::L:;R9E9"R::"949T49E9SR::S9*9U*9E9VR::V9491R::1949TR::S9*9U*949VR::Vi::]^9u9":*;"^9u9S:*;S^9u9V:*;V^9o91:*;1^9o9S:*;S^9o9V:*;V:*;\{99:9.::{99S9.:S{99V9.:V{9919.:1{99S9.:S{99V9.:V9.:\99S;;S99V;;V99 ;; 99S;;S99V;;V991;;199S;;S99V;;V;;\.:L:SL:R:T*;;S.:M:VM:R:U*;;V.:G: *;; .:G:S*;;S.:G:V*;;V.:A:1*;;1.:A:S*;;S.:A:V*;;V@;;\UVUVU[V[_U_VUVUVUKVKOUOVUVUVUVUVUV!U!MVT_TM_QMR~w~QwQ S JwJSw!S!wSw%S%-w-2R2RwRlSlwSowoSS3HSU0U]] 0 J]J0]ɿ0ɿԿsW]W202R]Rq000>S>DsDgS S SxSSWSSPg\\ ż\x\\\R\\\K_\aC\q\M\]wQwx%2xqTqXPPwPwJWPWwtT^ƹPƹg^ ^ ^x^^W^R^ǹϹPӹ޹_Ǻ_x_ӹ޹VǺVxVк_x_кVxV  RFRF\RFRF\_x_VxVFZF\R M_ _ |__W_MV V |VVWV, |,_ |_V |V1 |1_ |_V |V KXK`)M_W_)MVWV)M_W_)MVWV)D W )D_W_)DVWV):1W1):_W_):VWV&X&; __ VV __ VV :: __ VV11__VVþǾPǾRк0к4к к_кVUl[J[Ul_J_UlVJVUf1J1Uf_J_UfVJVJSu__2_uVV2V_2_V2V:2:_2_V2V121_2_V2VBSMb_|_R_MbV|VRV|_R_|VRV|:R:|_R_|VRV|1R1|_R_|VRV/Sgg___ggVVV__VV sռSSżSSż__żVV\żҼSżҼ żѼgz]x]gz_x_gzVxVgt1x1gt_x_gtVxVS--U-/\//U/3\3 4U 4 9\--T-/S//T/ 9S--Q-/V//V//v//V//v/0V0,0v,0Q0VQ0d0vd00V00v0 9V--R34R4L4R--X---3X3$4X$4L4L4 9X-/_//QR"/ 9_-0.]B.u.]..]..].e/]//]//]/0]10I0]i00]00]L1`1]`11v2$2]$2K2vt22]22vL4_4]_44v44]44v55]5L5vt55]55v55]56v:6b6vz66]66v0 1] 1"1}11]11Q23]33P:33]33Q33]l6u6Pu6z6]6s8]s8w8Q88]88R88]89P99]R11:6l6R11p :6?6p ?6b6 s R1~1Q~11v:6b6Qb6l6vR11V:6l6VR11\:6l6\:6l6:6?6p ?6b6 s :6b6Qb6l6v:6l6V:6l6\l6l6P01<7~7<01S7~7S01\7~7\7(7P(7P7RP7^71>1 p1=1s11]11QW8s8]s8w8Q88]88R11P1 2p 2 2QW8`8P`8l8pl88p88Q88P11}6%!11q6%!`8l8}<%!l8s8 }6%?!s8w8 q6%?!88]88R88P88p88p88p88Q88}B%!88 }<%?!88 }6%?!88 r6%?!224~77422S~77S22\~77\77P77R77:3K367W86:3K3S7W8S:3K3\7W8\7*8R*8;8.*.1.e/1.*.S.e/S.*.\.e/\ //P/3/R3/A/h.u.22t22h.u.S2t2Sh.u.\2t2\$2(2P(2t2]..2t222..St22S..\t22\22P22]..2z662..Sz66S..\z66\66P66]//25t52//S5t5S//\5t5\"5t5]//2L442//SL44S//\L44\_4c4Pc44]/02t552/0St55S/0\t55\55P55]10I025:6210I0S5:6S10I0\5:6\55P5:6]i002452i00S45Si00\45\44P45]--R-3R34R4 9R--T-/S//T/ 9S--U-/\//U/3\3 4U 4 9\3L4^pUUU UpTTT TRRt Pp{U{|U||U|uUU#p ap|0|1USU}STVT}V@ Cn @SCnS\^Cn^ipPp\Cn\m]Cn] C USCS^C^P\C\]C],Q:EQF_Q_ap:U:dUTbSbdT"Q"dQcVUUTTQtqQ >U>oVopU3nSPq("u("Pq("Rq("u#("Xu#("YsQuq|QU=V=>U>GUGaVabU7S7V7R7r7r7r2Q27spUwSwUSUSpT^T^T^pQ]P]Q]p \ )V)1v1{VVvxVP\P]kPQQPQM\PUU&U&/UQQQ/QT"T"&Q tq" P&PUU&U&/U0TUT^UU^0TTTSTS0TQT]QQ]0TRTVRRV0TXT\XX\n]]n\\nVVnSSn^^ EPV ]5ddhlrz~*@ Y 59<@CJNQl  :`     $ ' A { h { h k s z  E I L P S W [ a |    4 X 8;EI 8<?CFMQTo#*Ip")4N lyDHMu!%(047Q 0xV  > ''319<M'+.n@Hp H"'GXX p b##%%v&{&&"'GL#n$%P%"'GL$4$4$@$%%%,%"'GL%%%,%LX P%h%%%%&{&&LX P%\%_%h% #!H!   !!"#s$$$$& & &&" #s$$$$H!@"$%%%%%&v&!" "@"$$$%%%+&C&K&a&!" "@"&&&&&&&&&''''''`(Y'p'P(`(^'p'P(`((((((((((y)|)))))X*9)P)H*X*>)P)H*X*t*t*x*|******++++F+h++++++++++++++++++X,X,,,,,,,,,,,,,,-@-@-@-@--,,,,]-j-,,,,j-w-,,,,S-]-@-@-@-S-w----3L4-4.=.h//3L49---.0.4.0223:6z669---.R11:6:6?6c6i6l6---.:6:6?6c6i6l6017~711 11"1>11 2W888822~77:3K37W8.*..h/h.u.2t2..t22..z66//5t5//L4400t5580I05:6p004599#9496999B9E9X::99#949X::^9u9:0;^9o9:0;{9990:{9990:9999;;99;;0:0:0:G:0;;0:A:0;;<<< <#<*<.<1<L<*=-=1=8=V=p=x>>>k>x>>>k>x>?????@AAXCCCDHEuEEF?@AA?@AACCCCCDHEXECDHEXE@@@@@BB@@@BB@@A@B@@A@BBBBBD(DEEE3EFGG`IMMOPRSSSSSVWW=Z=Z=Z=Z[\](]X]]]`^p^^^H__`BaBaaaVbVbbbXcjccccccAd7e7eFeFeyeeeeee9f|fg%gwggggghShFGG GG`G\]`^p^.GLGLG`G\]`^p^1G7G\\pG}GGGGGccGGccHH H(H(H`IRRVWW=Z=Z=Z=Z[(]X]]]H__`BaBaaaVbVbbbXcjcccceeeee9fff%gwgggHH H(HSH`IVWX@Y`Y=Z=Z=Z=Z[(]X]]]`BaBaa bVbVbbbXcjc}ceeeee9fff%gwgggHH H(HuH`IWWWWXZ[(]X]` aaBaBasaaacXce9fHH H(HI`IXZZHH H(HI%I%I`IXZZI%IlZZHHaBaBasae9f;a?aBaLaeeeeHHZZZZ(]X]cXcZZZZZZ(]X]cXcZZcXcX@Y`YYY=Z=Z=Z=ZXZ[[]]saa b b#bVbVbbbcjc}ceeeeff%gwggg Y.Y[x[]]jc}cYYY.Y[x[]]jc}cYY[P[lYYx[[qYzYzYYx[[qYzY[[=Z=Z=ZXZbcNbRbVb`bRR XXX``RRXXXXX``XX``WWXXX@Y`Ya bWWWWXXX@Y`Ya bWWhXX$SSSSSSfggg8SbSggWWbbWWbbAd7e7eFeFeyehShd7e7eFeFeyehShdd"h/hI8JLLLMMMPPRR6TFT@\\X]]^`^^^ccI8J@\\I J J8J@\\J JT\\LLLLLLccLLccLLMMPPRRX]]^`^LLMMwMP PPPX]]LL]MfMfMwMP PPPX]]]MfMc]]"PhP^`^+P4P4PhP^`^+P4P ^`^MM6TATMM6TAThJJMOOOOOOOOOSSSSSTT6T[@\^^^^0_H___aayeeeeg%gtJxJJJ[@\JJJJ[@\JJ[@\ NOOOOOOOOOSSyeeeeg%gNNNNg%gOOOOggSSST^^aaSTaaT+T-T6TaaaaT+T-T6TaaaaJpKPQQRFTUUV]^___`bbXcjccccAdee9f|fwgggggh'KpKFTUUeV_`ee9f|fwgggggh%U\Uwgg}UUUeV9f|fggghUUhhUUhhQQQReVVbbcccAdQQ1dAdQQ1dAdLpLPPi0jjjl8miii0jjjl8miil8mkkl l8m`mn$okkkkl l8m`mn$okkn$olll)l8oPo4ll(nnPopo`m`m`mtmpoomnooopKpOpRp]p`pcpppppptqqrpmqmqtqqqqPr`rrpppqqqqrppppppqqqqqr(s,s/s:s>sAs\sssssStttsssssPtPtSttttttuu uuu,uuuuuuvHvvvvvvvvoxuxxxx{zzr}w\x({P{-x-x1x9xxxxxyRzzz{({{@||}a}r}xxyyyyzz{({{@|||g||}a}}~~~hXґ- #**wiܞ #Zf6Sʢh-[t,s~~ґ#**wiܞ #Zf6Sʢh[t,sґ#jwZf6S,s 2ښ9MS^MS^lr}lr}Λ**jʢhʜ- pȋx8D[xXD[pȅhx@X؎@ȏ8ޒ͓ʕ ΘNi,dXhȏ8ؓʕ×H@HRW͆Xh@, (-0͓ؓ UZi$0P8PHʕ#ܞfsϥpv7Hܞf$Ãȅ8PȋXȏhґ-ΘNwʢhQ\mvyɉ8ȏh-ΘNw38-ΘNȐґʢhґšˡʢhšˡƠddhkףƈ!@XHh !,œȓ͓ !)18;!)18;@œȓ#Zߔߔ'><PVYH<MHPVcPx 8p ¦¦ʦϦԦPx 8p ĪϪԪ٪ݪ 8pXԪ٪ݪ 17;>B xԪ٪ݪ xpūp̫ϫҫp8X88XXѬ X cjϯ5ٯ55j}jwŧЧ88ԧ0000xpH ԧ!$0Pԧ0Ppèp̨ϨҨpw00000PxHwxwx00000PH0AHߩ CIr Ķ CI'rĶ g(go5UlPUfPu2222)))):>D Wӹ޹ǺǺǺ)))):>D W))))):>DW):W PbRRRRggżgzgtIQW%2aoIQaomPɿRlDO0h0h0hh00044H00044H EHLPVllsvls%),03:>A\0x+.::KNZZknzz +.::KNZZknzz +.::KNZZknzz +.::KNZZknzz +.::KNZZknzz +.::KNZZknzz +.::KNZZknIIVYzz 8`x 8X ! ! ' . )+9P:!X:!`:!h:!hLX0NMc|6n}"~0# vV|