lucene-memory-8.5.0-150200.4.4.3 >  A cp9|)b}_MmDx wF/3ԋZ;mA/ %-1'@lJ>>f,z\?=3&lIbe}'?Ĝ`_xd803e4ef1c76a7f73b946d1c2fb7b8acc42d2d11faecd2398270761c7163b7963d1370c650da1cab10720f47a958da2442590b815cPcp9| +ͶGKZ.B.*`HZD$7zUfwLl$K:&ISDM[5`\ϰF?t;DS~dMdά1(t6Ҵ@߂,˹Q)P&Ok52R 7#p-ÃL5G> H^2e' e''B&NW9$cXWU,1Z%}jSv{C$c{E .*,7E3@O]0 ;-?[>p>?td # <  #>Y_h    v  $(89:FIG\HtIXY\]^:bc\defluvwxyz$(.pClucene-memory8.5.0150200.4.4.3Memory module for luceneApache Lucene is a full-text search engine written entirely in Java. This package provides the "memory" module for Lucene.c_goat16SUSE Linux Enterprise 15SUSE LLC Apache-2.0https://www.suse.com/Development/Libraries/Javahttps://lucene.apache.org/linuxnoarch aAA큤cVcUcUcUcWcU30bda9a17a759f5647171927a9037f2840300f2f46ead7136bfbc147b6008949b9bdf27122aaa18b05f3d33e5eeeaf6a6808daa37ed301d2596e11bda2413a2a2c48ee9102989d20a20dd8937bfc38f487cdb42ddaca0d0ab42e28d76724e1f7lucene/lucene-memory.jarrootrootrootrootrootrootrootrootrootrootrootrootlucene-8.5.0-150200.4.4.3.src.rpmlucene-memorymvn(org.apache.lucene:lucene-memory)mvn(org.apache.lucene:lucene-memory:pom:)osgi(org.apache.lucene.memory)@@@    java-headlessjavapackages-filesystemmvn(org.apache.lucene:lucene-core)mvn(org.apache.lucene:lucene-core)rpmlib(CompressedFileNames)rpmlib(FileDigests)rpmlib(PayloadFilesHavePrefix)rpmlib(PayloadIsXz)8.5.03.0.4-14.6.0-14.0-15.2-14.14.1b7@^@^x]n]?]@]@]@]@\b@\'@[Y5Ycl@YTY@U hfstrba@suse.comfstrba@suse.comfstrba@suse.comfstrba@suse.comfstrba@suse.comfstrba@suse.comfstrba@suse.comfstrba@suse.comidonmez@suse.comfstrba@suse.comfstrba@suse.comfstrba@suse.comfstrba@suse.comjengelh@inai.debadshah400@gmail.comdziolkowski@suse.comtchvatal@suse.com- Added patch: * lucene-nodoclint.patch + Do not abort compilation on html5 errors with javadoc 17- Upgrade to version 8.5.0 * API Changes: + LUCENE-9093: Change in behavior of the UnifiedHighlighter's LengthGoalBreakIterator that will yield Passages sized a little different due to the fact that the sizing pivot is now the center of the first match and not its left edge. + LUCENE-9116: PostingsWriterBase and PostingsReaderBase no longer support setting a field's metadata via a 'long[]'. + LUCENE-9116: The FSTOrd postings format has been removed. + LUCENE-8369: Remove obsolete spatial module. + LUCENE-8621: Refactor LatLonShape, XYShape, and all query and utility classes to core. + LUCENE-9218: XY geometries API works in float space. + LUCENE-9212: Intervals.multiterm() takes CompiledAutomaton rather than plain Automaton + LUCENE-9150: Restore support for dynamic PlanetModel in spatial3d. + LUCENE-9171: QueryBuilder.newTermQuery() and .newSynonymQuery() now take boost parameters. + LUCENE-9029: Deprecate SloppyMath toRadians/toDegrees in favor of Java Math. + LUCENE-8620: Add CONTAINS support for LatLonShape and XYShape. + LUCENE-9050: MultiTermIntervalsSource.visit() was not calling back to its visitor. + LUCENE-8909: IndexWriter#getFieldNames() method is used to get fields present in index. After LUCENE-8316, this method is no longer required. Hence, deprecate IndexWriter#getFieldNames() method. + LUCENE-8755: SpatialPrefixTreeFactory now consumes the "version" parsed with Lucene's Version class. The quad and packed quad prefix trees are sensitive to this. It's recommended to pass the version like you should do likewise for analysis components for tokenized text, or else changes to the encoding in future versions may be incompatible with older indexes. + LUCENE-8956: QueryRescorer now only sorts the first topN hits instead of all initial hits. + LUCENE-8921: IndexSearcher.termStatistics() no longer takes a TermStates; it takes the docFreq and totalTermFreq. And don't call if docFreq <= 0. The previous implementation survives as deprecated and final. It's removed in 9.0. + LUCENE-8990: PointValues#estimateDocCount(visitor) estimates the number of documents that would be matched by the given IntersectVisitor. THe method is used to compute the cost() of ScorerSuppliers instead of PointValues#estimatePointCount(visitor). + LUCENE-8865: IndexSearcher now uses Executor instead of ExecutorService. This change is fully backwards compatible since ExecutorService directly implements Executor. + LUCENE-8856: Intervals queries have moved from the sandbox to the queries module. + LUCENE-8893: Intervals.wildcard() and Intervals.prefix() methods now take BytesRef rather than String. + LUCENE-3041: A query introspection API has been added. Queries should implement a visit() method, taking a QueryVisitor, and either pass the visitor down to any child queries, or call a visitX() or consumeX() method on it. All locations in the code that called Weight.extractTerms() have been changed to use this API, and the extractTerms() method has been deprecated. + LUCENE-8735: Directory.getPendingDeletions is now abstract to ensure subclasses override it. FilterDirectory now delegates the call, ensuring correct default behaviour for subclasses. + LUCENE-8662: TermsEnum.seekExact(BytesRef) to abstract and delegate seekExact(BytesRef) in FilterLeafReader.FilterTermsEnum. + LUCENE-8469: Deprecated StringHelper.compare has been removed. + LUCENE-8039: Introduce a "delta distance" method set to GeoDistance. This allows distance calculations, especially for paths, to take into account an "excursion" to include the specified point. + LUCENE-8007: Index statistics Terms.getSumDocFreq(), Terms.getDocCount() are now required to be stored by codecs. Additionally, TermsEnum.totalTermFreq() and Terms.getSumTotalTermFreq() are now required: if frequencies are not stored they are equal to TermsEnum.docFreq() and Terms.getSumDocFreq(), respectively, because all freq() values equal 1. + LUCENE-8038: Deprecated PayloadScoreQuery constructors have been removed + LUCENE-8014: Similarity.computeSlopFactor() and Similarity.computePayloadFactor() have been removed + LUCENE-7996: Queries are now required to produce positive scores. + LUCENE-8099: CustomScoreQuery, BoostedQuery and BoostingQuery have been removed + LUCENE-8012: Explanation now takes Number rather than float + LUCENE-8116: SimScorer now only takes a frequency and a norm as per-document scoring factors. + LUCENE-8113: TermContext has been renamed to TermStates, and can now be constructed lazily if term statistics are not required + LUCENE-8242: Deprecated method IndexSearcher#createNormalizedWeight() has been removed + LUCENE-8267: Memory codecs removed from the codebase (MemoryPostings, MemoryDocValues). + LUCENE-8144: Moved QueryCachingPolicy.ALWAYS_CACHE to the test framework. + LUCENE-8356: StandardFilter and StandardFilterFactory have been removed + LUCENE-8373: StandardAnalyzer.ENGLISH_STOP_WORD_SET has been removed + LUCENE-8388: Unused PostingsEnum#attributes() method has been removed + LUCENE-8405: TopDocs.maxScore is removed. IndexSearcher and TopFieldCollector no longer have an option to compute the maximum score when sorting by field. + LUCENE-8411: TopFieldCollector no longer takes a fillFields option, it now always fills fields. + LUCENE-8412: TopFieldCollector no longer takes a trackDocScores option. Scores need to be set on top hits via TopFieldCollector#populateScores instead. + LUCENE-6228: A new Scorable abstract class has been added, containing only those methods from Scorer that should be called from Collectors. LeafCollector.setScorer() now takes a Scorable rather than a Scorer. + LUCENE-8475: Deprecated constants have been removed from RamUsageEstimator. + LUCENE-8483: Scorers may no longer take null as a Weight + LUCENE-8352: TokenStreamComponents is now final, and can take a Consumer in its constructor + LUCENE-8498: LowerCaseTokenizer has been removed, and CharTokenizer no longer takes a normalizer function. + LUCENE-7875: Moved MultiFields static methods out of the class. getLiveDocs is now in MultiBits which is now public. getMergedFieldInfos and getIndexedFields are now in FieldInfos. getTerms is now in MultiTerms. getTermPositionsEnum and getTermDocsEnum were collapsed and renamed to just getTermPostingsEnum and moved to MultiTerms. + LUCENE-8513: MultiFields.getFields is now removed. Please avoid this class, and Fields in general, when possible. + LUCENE-8497: MultiTermAwareComponent has been removed, and in its place TokenFilterFactory and CharFilterFactory now expose type-safe normalize() methods. This decouples normalization from tokenization entirely. + LUCENE-8597: IntervalIterator now exposes a gaps() method that reports the number of gaps between its component sub-intervals. This can be used in a new filter available via Intervals.maxgaps(). + LUCENE-8609: Remove IndexWriter#numDocs() and IndexWriter#maxDoc() in favor of IndexWriter#getDocStats(). * Changes in Runtime Behavior + LUCENE-8671: Load FST off-heap also for ID-like fields if reader is not opened from an IndexWriter. + LUCENE-8730: WordDelimiterGraphFilter always emits its original token first. This brings its behaviour into line with the deprecated WordDelimiterFilter, so that the only difference in output between the two is in the position length attribute. + LUCENE-7386: Disjunctions nested in disjunctions are now flattened. This might trigger changes in the produced scores due to changes to the order in which scores of sub clauses are summed up. + LUCENE-8756: MoreLikeThisQuery now respects custom term frequencies (TermFrequencyAttribute) at search time + LUCENE-8333: Switch MoreLikeThis.setMaxDocFreqPct to use maxDoc instead of numDocs. + LUCENE-7837: Indices that were created before the previous major version will now fail to open even if they have been merged with the previous major version. + LUCENE-8020: Similarities are no longer passed terms that don't exist by queries such as SpanOrQuery, so scoring formulas no longer require divide-by-zero hacks. IndexSearcher.termStatistics/collectionStatistics return null instead of returning bogus values for a non-existent term or field. + LUCENE-7996: FunctionQuery and FunctionScoreQuery now return a score of 0 when the function produces a negative value. + LUCENE-8116: Similarities now score fields that omit norms as if the norm was 1. This might change score values on fields that omit norms. + LUCENE-8134: Index options are no longer automatically downgraded. + LUCENE-8031: Length normalization correctly reflects omission of term frequencies. + LUCENE-7444: StandardAnalyzer no longer defaults to removing English stopwords + LUCENE-8060: IndexSearcher's search and searchAfter methods now only compute total hit counts accurately up to 1,000 in order to enable top-hits optimizations such as block-max WAND (LUCENE-8135). + LUCENE-8505: IndexWriter#addIndices will now fail if the target index is sorted but the candidate is not. + LUCENE-8535: Highlighter and FVH doesn't support ToParent and ToChildBlockJoinQuery out of the box anymore. In order to highlight on Block-Join Queries a custom WeightedSpanTermExtractor / FieldQuery should be used. + LUCENE-8563: BM25 scores don't include the (k1+1) factor in their numerator anymore. This doesn't affect ordering as this is a constant factor which is the same for every document. + LUCENE-8509: WordDelimiterGraphFilter will no longer set the offsets of internal tokens by default, preventing a number of bugs when the filter is chained with tokenfilters that change the length of their tokens + LUCENE-8633: IntervalQuery scores do not use term weighting any more, the score is instead calculated as a function of the sloppy frequency of the matching intervals. + LUCENE-8635: FSTs can now remain off-heap, accessed via IndexInput, and the default codec's term dictionary (BlockTreeTermsReader) will now leave the FST for the terms index off-heap for non-primary-key fields using MMapDirectory, reducing heap usage for such fields. * New Features: + LUCENE-8903: Add LatLonShape and XYShape point query. + LUCENE-8707: Add LatLonShape and XYShape distance query. + LUCENE-9238: New XYPointField field and Queries for indexing, searching and sorting cartesian points. + LUCENE-8936: Add SpanishMinimalStemFilter + LUCENE-8764 LUCENE-8945: Add "export all terms and doc freqs" feature to Luke with delimiters. + LUCENE-8747: Composite Matches from multiple subqueries now allow access to their submatches, and a new NamedMatches API allows marking of subqueries and a simple way to find which subqueries have matched on a given document + LUCENE-8769: Introduce Range Query For Multiple Connected Ranges + LUCENE-8960: Introduce LatLonDocValuesPointInPolygonQuery for LatLonDocValuesField + LUCENE-8753: New UniformSplitPostingsFormat (name "UniformSplit") primarily benefiting in simplicity and extensibility. New STUniformSplitPostingsFormat (name "SharedTermsUniformSplit") that shares a single internal term dictionary across fields. + LUCENE-8632: New XYShape Field and Queries for indexing and searching general cartesian geometries. + LUCENE-8891: Snowball stemmer/analyzer for the Estonian language. + LUCENE-8815: Provide a DoubleValues implementation for retrieving the value of features without requiring a separate numeric field. Note that as feature values are stored with only 8 bits of mantissa the values returned may have a delta from the original values indexed. + LUCENE-8803: Provide a FeatureSortfield to allow sorting search hits by descending value of a feature. This is exposed via the factory method FeatureField#newFeatureSort. + LUCENE-8784: The KoreanTokenizer now preserves punctuations if discardPunctuation is set to false (defaults to true). + LUCENE-8812: Add new KoreanNumberFilter that can change Hangul character to number and process decimal point. It is similar to the JapaneseNumberFilter. + LUCENE-8362: Add doc-value support to range fields. + LUCENE-8766: Add monitor subproject (previously Luwak monitoring library). This allows a stream of documents to be matched against a set of registered queries in an efficien manner, for use as a monitoring or classification tool. + LUCENE-7714: Add a numeric range query in sandbox that takes advantage of index sorting. + LUCENE-8859: The completion suggester's postings format now have an option to load its internal FST off-heap. + LUCENE-2562: The well-known graphical user interface for inspecting Lucene indexes "Luke" was added as a Lucene module. It can be started from the binary distribution by calling the shell scripts in the module folder or from the source checkout by using 'ant -f lucene/luke/build.xml run'. Luke provides a Swing-based user interface and can be used to open Lucene or Solr (or Elasticsearch) indexes, inspect documents, check index commits and segments, or test (custom) analyzers. It also has maintenance functions to check index structures and force merge indexes for archival. + LUCENE-8340: LongPoint#newDistanceFeatureQuery may be used to boost scores based on how close a value of a long field is from a configurable origin. This is typically useful to boost by recency. + LUCENE-8482: LatLonPoint#newDistanceFeatureQuery may be used to boost scores based on the haversine distance of a LatLonPoint field to a provided point. This is typically useful to boost by distance. + LUCENE-8216: Added a new BM25FQuery in sandbox to blend statistics across several fields using the BM25F formula. + LUCENE-8564: GraphTokenFilter is an abstract class useful for token filters that need to read-ahead in the token stream and take into account graph structures. This also changes FixedShingleFilter to extend GraphTokenFilter + LUCENE-8612: Intervals.extend() treats an interval as if it covered a wider span than it actually does, allowing users to force minimum gaps between intervals in a phrase. + LUCENE-8629: New interval functions: Intervals.before(), Intervals.after(), Intervals.within() and Intervals.overlapping(). + LUCENE-8622: Adds a minimum-should-match interval function that produces intervals spanning a subset of a set of sources. + LUCENE-8645: Intervals.fixField() allows you to report intervals from one field as if they came from another. + LUCENE-8646: New interval functions: Intervals.prefix() and Intervals.wildcard() + LUCENE-8655: Add a getter in FunctionScoreQuery class in order to access to the underlying DoubleValuesSource. + LUCENE-8697: GraphTokenStreamFiniteStrings correctly handles side paths containing gaps + LUCENE-8702: Simplify intervals returned from vararg Intervals factory methods * Improvements: + LUCENE-9149: Increase data dimension limit in BKD. + LUCENE-9102: Add maxQueryLength option to DirectSpellchecker. + LUCENE-9091: UnifiedHighlighter HTML escaping should only escape essentials + LUCENE-9105: UniformSplit postings format detects corrupted index and better handles IO exceptions. + LUCENE-9106: UniformSplit postings format allows extension of block/line serializers. + LUCENE-9093: UnifiedHighlighter's LengthGoalBreakIterator has a new fragmentAlignment option to better center the first match in the passage. Also the sizing point now pivots at the center of the first match term and not its left edge. This yields Passages that won't be identical to the previous behavior. + LUCENE-9153: Allow WhitespaceAnalyzer to set a maxTokenLength other than the default of 255 + LUCENE-9152: Improve line intersections with polygons when they are touching from the outside. + LUCENE-9123: Add new JapaneseTokenizer constructors with discardCompoundToken option that controls whether the tokenizer emits original (compound) tokens when the mode is not NORMAL. + UCENE-9253: KoreanTokenizer now supports custom dictionaries(system, unknown). + LUCENE-9171: QueryBuilder can now use BoostAttributes on input token streams to selectively boost particular terms or synonyms in parsed queries. + LUCENE-9002: Skip costly caching clause in LRUQueryCache if it makes the query many times slower. + LUCENE-9006: WordDelimiterGraphFilter's catenateAll token is now ordered before any token parts, like WDF did. + LUCENE-9028: introducing Intervals.multiterm() + LUCENE-9018: ConcatenateGraphFilter now has a configurable separator. + LUCENE-9036: ExitableDirectoryReader may interupt scaning over DocValues + LUCENE-9062: QueryVisitor now has a consumeTermsMatching() method, allowing queries that match a class of terms to pass a ByteRunAutomaton matching those that class back to the visitor. + LUCENE-9073: IntervalQuery to respond field on toString() and explain() + LUCENE-8874: Show SPI names instead of class names in Luke Analysis tab. + LUCENE-8894: Add APIs to find SPI names for Tokenizer/CharFilter/TokenFilter factory classes. + LUCENE-8914: move the logic for discarding inner modes in FloatPointNearestNeighbor to the IntersectVisitor so we take advantage of the change introduced in LUCENE-7862. + LUCENE-8955: move the logic for discarding inner modes in LatLonPoint NearestNeighbor to the IntersectVisitor so we take advantage of the change introduced in LUCENE-7862. + LUCENE-8918: PhraseQuery throws exceptions at construction time if it is passed null arguments. + LUCENE-8916: GraphTokenStreamFiniteStrings preserves all Token attributes through its finite strings TokenStreams + LUCENE-8933: Check kuromoji user dictionary beforehand to avoid unexpected runtime exceptions. (Tomoko Uchida + LUCENE-8906: Expose Lucene50PostingsFormat.IntBlockTermState as public so that other postings formats can re-use it. + LUCENE-8942: Remove redundant parameters and improve visibility strictness in LRUQueryCache + SOLR-13663: Introduce into XML Query Parser + LUCENE-8952: Use a sort key instead of true distance in NearestNeighbor + LUCENE-8620: Tessellator labels the edges of the generated triangles whether they belong to the original polygon. This information is added to the triangle encoding. + LUCENE-8964: Fix geojson shape parsing on string arrays in properties + LUCENE-8976: Use exact distance between point and bounding rectangle in FloatPointNearestNeighbor. + LUCENE-8966: The Korean analyzer now splits tokens on boundaries between digits and alphabetic characters. + LUCENE-8984: MoreLikeThis MLT is biased for uncommon fields + LUCENE-7840: Non-scoring BooleanQuery now removes SHOULD clauses before building the scorer supplier as opposed to eliminating them during scoring construction. + LUCENE-8770: BlockMaxConjunctionScorer now leverages two-phase iterators in order to avoid executing the second phase when scorers don't intersect. + LUCENE-8781: FST lookup performance has been improved in many cases by encoding Arcs using full-sized arrays with gaps. The new encoding is enabled for postings in the default codec and for suggesters. + LUCENE-8818: Fix smokeTestRelease.py encoding bug + LUCENE-8845: Allow Intervals.prefix() and Intervals.wildcard() to specify their maximum allowed expansions + LUCENE-8875: Introduce a Collector optimized for use cases when large number of hits are requested + LUCENE-8848 LUCENE-7757 LUCENE-8492: The UnifiedHighlighter now detects that parts of the query are not understood by it, and thus it should not make optimizations that result in no highlights or slow highlighting. This generally works best for WEIGHT_MATCHES mode. Consequently queries produced by ComplexPhraseQueryParser and the surround QueryParser will now highlight correctly. + LUCENE-8793: Luke enhanced UI for CustomAnalyzer: show detailed analysis steps. + LUCENE-8855: Add Accountable to some Query implementations + LUCENE-8673: Use radix partitioning when merging dimensional points instead of sorting all dimensions before hand. + LUCENE-8687: Optimise radix partitioning for points on heap. + LUCENE-8699: Change HeapPointWriter to use a single byte array instead to a list of byte arrays. In addition a new interface PointValue is added to abstract out the different formats between offline and on-heap writers. + LUCENE-8703: Build point writers in the BKD tree only when they are needed. + LUCENE-8652: SynonymQuery can now deboost the document frequency of each term when blending the score of the synonym. + LUCENE-8631: The Korean's user dictionary now picks the longest-matching word and discards the other matches. + LUCENE-8732: ConstantScoreQuery can now early terminate the query if the minimum score is greater than the constant score and total hits are not requested. + LUCENE-8750: Implements setMissingValue() on sort fields produced from DoubleValuesSource and LongValuesSource + LUCENE-8701: ToParentBlockJoinQuery now creates a child scorer that disallows skipping over non-competitive documents if the score of a parent depends on the score of multiple children (avg, max, min). Additionally the score mode 'none' that assigns a constant score to each parent can early terminate top scores's collection. + LUCENE-8751: Weight#matches now use the ScorerSupplier to build scorers with a lead cost of 1 (single document). + LUCENE-8752: Japanese new era name '令和' (Reiwa) is added to the dictionary used in JapaneseTokenizer so that the analyzer handles the era name correctly. Reiwa is set to replace the Heisei Era on May 1, 2019. + LUCENE-8671: Introduced reader attributes allows a per IndexReader configuration of codec internals. This enables a per reader configuration if FSTs are on- or off-heap on a per field basis + LUCENE-8787: spatial-extras DateRangePrefixTree used to only parse ISO-8601 timestamps with 0 or 3 digits of milliseconds precision but now parses other lengths (although > 3 not used). + LUCENE-7997: Add BaseSimilarityTestCase to sanity check similarities. SimilarityBase switches to 64-bit doubles internally to help avoid common numeric issues. Add missing range checks for similarity parameters. Improve BM25 and ClassicSimilarity's explanations. + LUCENE-8011: Improved similarity explanations. + LUCENE-4198: Codecs now have the ability to index score impacts. + LUCENE-8135: Boolean queries now implement the block-max WAND algorithm in order to speed up selection of top scored documents. + LUCENE-8279: CheckIndex now cross-checks terms with norms. + LUCENE-8660: TopDocsCollectors now return an accurate count (instead of a lower bound) if the total hit count is equal to the provided threshold. * Optimizations + LUCENE-9211: Add compression for Binary doc value fields. + LUCENE-4702: Better compression of terms dictionaries. + LUCENE-9228: Sort dvUpdates in the term order before applying if they all update a single field to the same value. This optimization can reduce the flush time by around 20% for the docValues update user cases. + LUCENE-9245: Reduce AutomatonTermsEnum memory usage. + LUCENE-9237: Faster UniformSplit intersect TermsEnum. + LUCENE-9068: FuzzyQuery builds its Automaton up-front + LUCENE-9113: Faster merging of SORTED/SORTED_SET doc values. + LUCENE-9125: Optimize Automaton.step() with binary search and introduce Automaton.next(). + LUCENE-9147: The index of stored fields and term vectors in now off-heap. + LUCENE-8928: When building a kd-tree for dimensions n > 2, compute exact bounds for an inner node every N splits to improve the quality of the tree. N is defined by SPLITS_BEFORE_EXACT_BOUNDS which is set to 4. + BaseDirectoryReader no longer sums up the 'LeafReader#numDocs' of its leaves eagerly. This especially helps when creating views of readers that hide documents, since computing the number of live documents is an expensive operation. + LUCENE-8992: TopFieldCollector and TopScoreDocCollector can now share minimum scores across leaves concurrently. + LUCENE-8932: BKDReader's index is now stored off-heap when the IndexInput is an instance of ByteBufferIndexInput. + LUCENE-9024: IntroSelector now falls back to the median of medians algorithm instead of sorting when the maximum recursion level is exceeded, providing better worst-case runtime. + LUCENE-8920: The denser arcs of FST now index labels with a bitset in order to provide near constant time access. + LUCENE-9027: Use SIMD instructions to decode postings. + LUCENE-9049: Remove FST cached root arcs now redundant with labels indexed by bitset. This frees some on-heap FST space. + LUCENE-9045: Do not use TreeMap/TreeSet in BlockTree and PerFieldPostingsFormat. + LUCENE-8922: DisjunctionMaxQuery more efficiently leverages impacts to skip non-competitive hits. + LUCENE-8935: BooleanQuery with no scoring clause can now early terminate the query when the total hits is not requested. + LUCENE-8941: Matches on wildcard queries will defer building their full disjunction until a MatchesIterator is pulled + LUCENE-8755: spatial-extras quad and packed quad prefix trees now index points faster. + LUCENE-8860: add additional leaf node level optimizations in LatLonShapeBoundingBoxQuery. + LUCENE-8968: Improve performance of WITHIN and DISJOINT queries for Shape queries by doing just one pass whenever possible. + LUCENE-8939: Introduce shared count based early termination across multiple slices + LUCENE-8980: Blocktree's seekExact now short-circuits false if the term isn't in the min-max range of the segment. Large perf gain for ID/time like data when populated sequentially. + LUCENE-8796: Use exponential search instead of binary search in IntArrayDocIdSet#advance method + LUCENE-8865: Use incoming thread for execution if IndexSearcher has an executor. Now caller threads execute at least one search on an index even if there is an executor provided to minimize thread context switching. + LUCENE-8868: New storing strategy for BKD tree leaves with low cardinality. It stores the distinct values once with the cardinality value reducing the storage cost. + LUCENE-8885: Optimise BKD reader by exploiting cardinality information stored on leaves. + LUCENE-8896: Override default implementation of IntersectVisitor#visit(DocIDSetBuilder, byte[]) for several queries. + LUCENE-8901: Load frequencies lazily only when needed in BlockDocsEnum and BlockImpactsEverythingEnum + LUCENE-8888: Optimize distribution of points with data dimensions in BKD tree leaves. + LUCENE-8311: Phrase queries now leverage impacts. + LUCENE-8040: Optimize IndexSearcher.collectionStatistics, avoiding MultiFields/MultiTerms + LUCENE-4100: Disjunctions now support faster collection of top hits when the total hit count is not required. + LUCENE-7993: Phrase queries are now faster if total hit counts are not required. + LUCENE-8109: Boolean queries propagate information about the minimum competitive score in order to make collection faster if there are disjunctions or phrase queries as sub queries, which know how to leverage this information to run faster. + LUCENE-8439: Disjunction max queries can skip blocks to select the top documents if the total hit count is not required. + LUCENE-8204: Boolean queries with a mix of required and optional clauses are now faster if the total hit count is not required. + LUCENE-8448: Boolean queries now propagates the mininum score to their sub-scorers. + LUCENE-8511: MultiFields.getIndexedFields is now optimized; does not call getMergedFieldInfos + LUCENE-8507: TopFieldCollector can now update the minimum competitive score if the primary sort is by relevancy and the total hit count is not required. + LUCENE-8464: ConstantScoreScorer now implements setMinCompetitveScore in order to early terminate the iterator if the minimum score is greater than the constant score. + LUCENE-8607: MatchAllDocsQuery can shortcut when total hit count is not required + LUCENE-8585: Index-time jump-tables for DocValues, for O(1) advance when retrieving doc values. * Bug Fixes + LUCENE-9084: Fix potential deadlock due to circular synchronization in AnalyzingInfixSuggester + LUCENE-9115: NRTCachingDirectory no longer caches files of unknown size. + LUCENE-9144: Fix error message on OneDimensionBKDWriter when too many points are added to the writer. + LUCENE-9135: Make UniformSplit FieldMetadata counters long. + LUCENE-9200: Fix TieredMergePolicy to use double (not float) math to make its merging decisions, fixing a corner-case bug uncovered by fun randomized tests + LUCENE-9099: Unordered and Ordered interval queries now correctly handle repeated subterms - ordered intervals could supply an 'extra' minimized interval, resulting in odd matches when combined with eg CONTAINS queries; and unordered intervals would match duplicate subterms on the same position, so an query for UNORDERED(foo, foo) would match a document containing 'foo' only once. + LUCENE-9250: Add support for Circle2d#intersectsLine around the dateline. + LUCENE-9243: Add fudge factor when creating a bounding box of a XYCircle. + LUCENE-9239: Circle2D#WithinTriangle detects properly if a triangle is Within distance. + LUCENE-9251: Fix bug in the polygon tessellator where edges with different value on #isEdgeFromPolygon were bot filtered out properly. + LUCENE-9263: Fix wrong transformation of distance in meters to radians in Geo3DPoint. + LUCENE-9001: Fix race condition in SetOnce. + LUCENE-9030: Fix WordnetSynonymParser behaviour so it behaves similar to SolrSynonymParser. + LUCENE-9054: Fix reproduceJenkinsFailures.py to not overwrite junit XML files when retrying + LUCENE-9031: UnsupportedOperationException on MatchesIterator.getQuery() + LUCENE-8996: maxScore was sometimes missing from distributed grouped responses. + LUCENE-9055: Fix the detection of lines crossing triangles through edge points. + LUCENE-9103: Disjunctions can miss some hits in some rare conditions. + LUCENE-8755: spatial-extras quad and packed quad prefix trees could throw a NullPointerException for certain cell edge coordinates + LUCENE-9005: BooleanQuery.visit() would pull subVisitors from its parent visitor, rather than from a visitor for its own specific query. This could cause problems when BQ was nested under another BQ. Instead, we now pull a MUST subvisitor, pass it to any MUST subclauses, and then pull SHOULD, MUST_NOT and FILTER visitors from it rather than from the parent. + LUCENE-8831: Fixed LatLonShapeBoundingBoxQuery .hashCode methods. + LUCENE-8775: Improve tessellator to handle better cases where a hole share a vertex with the polygon. + LUCENE-8785: Ensure new threadstates are locked before retrieving the number of active threadstates. This causes assertion errors and potentially broken field attributes in the IndexWriter when IndexWriter#deleteAll is called while actively indexing. + LUCENE-8804: Forbid calls to putAttribute on frozen FieldType instances. + LUCENE-8828: Removes the buggy 'disallow overlaps' boolean from Intervals.unordered(), and replaces it with a new Intervals.unorderedNoOverlaps() method + LUCENE-8843: Don't ignore exceptions that are thrown when trying to open a file in IOUtils#fsync. + LUCENE-8835: FileSwitchDirectory now respects the file extension when listing directory contents to ensure we don't expose pending deletes if both directory point to the same underlying filesystem directory. + LUCENE-8853: FileSwitchDirectory now applies best effort to place tmp files in the same directory as the target files. + LUCENE-8892: Add missing closing parentheses in MultiBoolFunction's description() + LUCENE-8736: LatLonShapePolygonQuery returns incorrect WITHIN results with shared boundaries. Point in Polygon now correctly includes boundary points. Box and Polygon relations with triangles have also been improved to correctly include boundary points. + LUCENE-8712: Polygon2D does not detect crossings through segment edges. + LUCENE-8720: NameIntCacheLRU (in the facets module) had an int overflow bug that disabled cleaning of the cache + LUCENE-8726: ValueSource.asDoubleValuesSource() could leak a reference to IndexSearcher + LUCENE-8719: FixedShingleFilter can miss shingles at the end of a token stream if there are multiple paths with different lengths. + LUCENE-8688: TieredMergePolicy#findForcedMerges now tries to create the cheapest merges that allow the index to go down to 'maxSegmentCount' segments or less. + LUCENE-8477: Interval disjunctions could miss valid hits if some of the clauses of the disjunction are minimized away. We now rewrite intervals if a source contains a disjunction and the internal gaps matter for matching. This behaviour can be disabled if users are more interested in speed rather than accuracy of matching. + LUCENE-8741: ValueSource.fromDoubleValuesSource() was casting to Scorer instead of Scorable, leading to ClassCastExceptions + LUCENE-8754: Fix ConcurrentModificationException in SegmentInfo if attributes are accessed in MergePolicy while the merge is running + LUCENE-8765: Fixed validation of the number of added points in KD trees. * Other + LUCENE-9109: Backport some changes from master (except StackWalker) to improve TestSecurityManager + LUCENE-9110: Backport refactored stack analysis in tests to use generalized LuceneTestCase methods + LUCENE-9141: Simplify LatLonShapeXQuery API by adding a new abstract class called LatLonGeometry. Queries are executed with input objects that extend such interface. + LUCENE-9194: Simplify XYShapeXQuery API by adding a new abstract class called XYGeometry. Queries are executed with input objects that extend such interface. + LUCENE-9096: Simplification of CompressingTermVectorsWriter#flushOffsets. + LUCENE-9225: Rectangle extends LatLonGeometry so it can be used in a geometry collection. + LUCENE-8979: Code Cleanup: Use entryset for map iteration wherever possible. - Part 2 + LUCENE-8746: Refactor EdgeTree - Introduce a Component tree that represents the tree of components (e.g polygons). Edge tree is now just a tree of edges. + LUCENE-8994: Code Cleanup - Pass values to list constructor instead of empty constructor followed by addAll(). + LUCENE-9046: Fix wrong example in Javadoc of TermInSetQuery + LUCENE-8983: Add sandbox PhraseWildcardQuery to control multi-terms expansions in a phrase. + LUCENE-9067: Polygon2D#contains() is now thread safe. + LUCENE-8778 LUCENE-8911 LUCENE-8957: Define analyzer SPI names as static final fields and document the names in Javadocs. + LUCENE-8758: QuadPrefixTree: removed levelS and levelN fields which weren't used. + LUCENE-8975: Code Cleanup: Use entryset for map iteration wherever possible. + LUCENE-8993, LUCENE-8807: Changed all repository and download references in build files to HTTPS. + LUCENE-8998: Fix OverviewImplTest.testIsOptimized reproducible failure. + LUCENE-8999: LuceneTestCase.expectThrows now propogates assert/assumption failures up to the test w/o wrapping in a new assertion failure unless the caller has explicitly expected them + LUCENE-8062: GlobalOrdinalsWithScoreQuery is no longer eligible for query caching. + LUCENE-8847: Code Cleanup: Remove StringBuilder.append with concatenated strings. + LUCENE-8861: Script to find open Github PRs that needs attention + LUCENE-8852: ReleaseWizard tool for release managers + LUCENE-8838: Remove support for Steiner points on Tessellator. + LUCENE-8879: Improve BKDRadixSelector tests. + LUCENE-8886: Fix TestMutablePointsReaderUtils tests. + LUCENE-8680: Refactor EdgeTree#relateTriangle method. + LUCENE-8685: Refactor LatLonShape tests. + LUCENE-8713: Add Line2D tests. + LUCENE-8729: Workaround: Disable accessibility doclints (Java 13+), so compilation with recent JDK succeeds. + LUCENE-8725: Make TermsQuery.SeekingTermSetTermsEnum a top level class and public * Build + Upgrade forbiddenapis to version 2.7; upgrade Groovy to 2.4.17. + LUCENE-9041: Upgrade ecj to 3.19.0 to fix sporadic precommit javadoc issues * Test Framework + LUCENE-8825: CheckHits now display the shard index in case of mismatch between top hits. - Modified patches: * 0001-Disable-ivy-settings.patch * 0002-Dependency-generation.patch * lucene-java8compat.patch * lucene-osgi-manifests.patch + rediff to changed context - Added patch: * lucene-missing-dependencies.patch + patch out dependencies that are not needed for modules that we distribute + patch out dependencies on jars that we don't build + add target for the new monitor jars- Modified patch: * lucene-osgi-manifests.patch + add the OSGi manifest to queryparser module too- Modified patch: * lucene-osgi-manifests.patch + add the OSGi manifests also to modules that are currently not built due to missing dependencies- Remove a bogus log4j build dependency- Fix property Provides and Obsoletes in order to make upgrade smooth - Added patch: * lucene-osgi-manifests.patch + Patch the build to produce OSGi manifests needed by eclipse - Install the artifacts to "lucene" subdirectory and create compatibility symlinks - Install lucene-misc as archful artifact, since it contains JNI code- Upgrade to version 7.1.0 - Added patches: * 0001-Disable-ivy-settings.patch * 0002-Dependency-generation.patch + Sync with Fedora's 7.1.0 * lucene-java8compat.patch + Avoid using java9+ only functions- Remove the parent references from the pom files, since we are not building lucene using maven. - Overhaul the packaging to distribute the artifacts and the corresponding metadata and pom files in the same package - Specify runtime dependencies of the different packages - Remove version information from the artifact names- Remove the JPP prefix from pom filenames- Remove dependency on jline, because nothing in the build uses it- Require the different apache-commons-* packages instead of jakarta-commons-*- Do not require asm to build. Nothing depends on it- Minimum supported java is 1.8- Remove unused "%package javadoc" declaration block. - Trim filler words from descriptions. Say a thing about features.- Update to version 6.6.0: + See https://lucene.apache.org/core/6_6_0/changes/Changes.html for a full list of changes. - Drop patches that are no longer applicable or needed: + lucene-no-classpath-in-manifest.patch + lucene-no-get.patch + lucene-2.3.0-db-javadoc.patch - Add BuildRequires: antlr-java, apache-commons-codec, apache-ivy, asm, fdupes, git - Replace SOURCE0 by full source URL. - Update to changed list of non-core modules: + Update source URL's for corresponding pom files. + Update %%install section to reflect changed list + Each module corresponds to a subpackage, named according to its jar file (except lucene which corresponds to the main jar file lucene-core-%{version}.jar). - Adapt file list to changes.- New build dependency: javapackages-local- Fix build with new javapackages-toolsgoat16 16773287358.5.0-150200.4.4.38.5.08.5.08.5.0lucenelucene-memory.jarlucene-memory.jarlucene-memory.xmllucenelucene-memory.pom/usr/share/java//usr/share/java/lucene//usr/share/maven-metadata//usr/share/maven-poms//usr/share/maven-poms/lucene/-fmessage-length=0 -grecord-gcc-switches -O2 -Wall -D_FORTIFY_SOURCE=2 -fstack-protector-strong -funwind-tables -fasynchronous-unwind-tables -fstack-clash-protection -gobs://build.suse.de/SUSE:Maintenance:28016/SUSE_SLE-15-SP2_Update/cf27f6bc2a8a2e797691796ab9ed9cfd-lucene.SUSE_SLE-15-SP2_Updatecpioxz5x86_64-suse-linuxdirectorygzip ERROR: Stdin has more than one entry--rest ignored (Zip archive data, at least v1.0 to extract Java archive data (JAR))ASCII textexported SGML document, ASCII textPPPRRREAKhl[utf-8011be25ab6bb67b86d7e31b60c7948d8edd3f90c51e4a54bb480b3b6ec929385? 7zXZ !t/] crt:bLL %aZ82?#xm )eЛ|}Mu1H]Kikcŕkp$첨(clŮ;$Mh݃-M!9ámY&S #44 ,SVq~^|' {iJ ɼIq#3Iܝ 9x]A/ d]qlaI'G]0 u}*)#k33KDHP^s HjF<+Z{x}!R u|4_b*̝ h(;7?Fߪ̷9K;zؓ/ScvB)S}z=+-XYȯb>M`ߥBm4eB&,,=d3V{HSIJhG`̣+%FY`KNg,:O@7x-w3KC)+]l JrribRuX $MU˂h\+u۾6sc-{Vo;،vBDF+9[YҜpjm}"3 "hCdӨ4c͗Lӡ~€-j x4mŨM)I6'Ÿ>7ήvO <  1u PXN`Rν׊T. ARt- Ⓧ&.5j~C3+^tEN8аi*$F?>1uAJu:A-vC VXva~4ZwR;'b} 4E^StOmp^D͗ îua{ˁS-(@4٘- euޭzj|hS1Y@џ@ȗvq%~ SՑtĿl,>@T] ,wm6ʰe-&e^o(;MΥu m˪lJr$n)%(e>q=BnpY)?)0iZk%lU ;fW2^NZ+An?rŒ[+" f ԡL.c vibdgn+6%FkNjU,#_`b|(H~7 347L̤&@݀br xW2AC4H$bI!} *>8^bVCbF. =LVߥjRŽ8Ɗv yvKhQR6_ʏۄ!XFsܑ:MuO`+G +WciU?,O|6"L/TɢmAՋ=4![ CQٛ  0ؗ溊7g7q cd.χC$#z2^x€/:E]9R1d3JNZ3.a]dwZeK ^~ v- ӛSʢ 4@d5'ܾW)3MfӇ5$QÊ%1ߦA%K@y}{D[u΁`qrT3(\ʪex#uxŧd>ɞJ.}u`#XXy{߀m][Atik+"E)*K'*%+H$=5Tc ѐ6i f7mA)?MA_?Zs Ydgs4_"P!p!{*d<@MtfYbmX--oݟTiH/@̰=xO92 DCl`td_ ,N蘻lʅ8r,2x."/A0yO]@5W%D8( ~ qjMbRfON:<|;Ђh^pTV.{qRDCcbP15 . Lݟ5asOρuî| ,#Y:=lD}Y:׺I2QyM :"׻_\L#\*F_ˊ_3|F[ 01"b8ܸwf0'CX tmX?چ % sĴ1LaϚY! I4ûWxצӇn.KLnW"; lcnP a+fR0wL$>T 1&oVl k2AXoDiRߘMMRgruwV6>aP <f$%+-@},(֩nKj j_b ),Bh лB&s4ΛŖIo1lν1hѨF goA[w1d!m坯n{ Ϛ{|6smîfijfQ|ߓF(Wf#qӍkhRРvuNQVD _1/9!r9#Ǡ2]S8=-6egd#=ԩAޝ/oih9d :ː!t p>2LmL^խ.L}ᬌyobIss~Ȧ:YŰi,GW %ўqly1'&:L'/,s+8APe1_) &Jy*J}S%"S@(d!l[-$oLjreV:.kSh%a^]լUJL\/#aO 08(XKRBG(2LH8sհ#3r_OQ0X-$~ͣ߃0~ʊ?a#ߙ]x zdkkRpbǒ=@8g*o?}@J bMBozsrMʕ"._[OR"ս.Gu:[XcؼI[.Is3U[Acj2.fjVGe ,%gjx`qh= Sޅ%W!t2/*dZ(,Tm& ~b¡X#8hZмq#+ 2Nnm+nb_kؼ!kJHV3ۀePl6ꂃ{;b2,LP N⁧pLǩޗ2"0i0޺ta/9#9]I oKsjא)%Yg$k]: `K1ڳ!gs?;GVX,[wxH._i)ݣuXױF2@@Tq&+$F>cE]nIFYA)8Cod)jrI@bghK~Se\ͿgQ1l!K\[q3ۢy|u/#.^}mx4m[;˯6͞s"_}LFuIt%n-&9ZTFhCNVތ+w$Ek,ũ!l~ p:ťs9+mΧd+*Im & : OBNpyИRb cb|Q` Vy<":P՗kuWo 0$/ ] I+)A[NyƿiĹ+#׎)֕@eo5zJP;EPj)Yk$osߢGy롍Y`ɞ3kȚwM$']_iM㱣+㍕g)֩iȵƤ3kuW]EvSKǨ3o@먵u|;<"hqrKf&OgQwEn6271(`l\34zXu*Hq +g/w}0!A-KG Ǘ1c&Pƽ:Yԃ}D*T"F+Yr&w$1,goEI="!?;>[HfCy{LD .Ũy$=w>*,bEH!)WJМeεv1^./Nͼk3\TTi4{ l|a &d(=xXٍStmJՇSk|oe$f9c0ƯBPux»-' 嶔xh{HFZI9@iso!)T]gqXWû`R@'\ v5>X\n;Ү(kp@^fqp|B$0aE%Y6+MB3A" 77ÐFG En+{XABߕ8EX8E"̄-UĨ<#O?"@!ߖ E͔F[o-,W.GE%ٝCQlID1$!:-ku>l*CpU&fBg"B́#l3&\_ >3Z|9U"bXP$DQ&N=XrvZ%N oIh#-mގ27:g|爺ɖx{& m]Œ@4FSqX{V9;21`lVf ݾdO8-G [~ mqF8bdѫF/" ;0tTy\xJ>Şvس$wVb>~A Mj]J5c\QF}oI-F1~" D^-BO"c~gf( ;]LggݔsJ՟M @'{#Zr9U;o<7ͣT z)n;ی˦x$dh LS4O.*J*~fVu6Fx5^cz[r5#S-W.m gWt)4TW|徾 sϷJRRΆmrF@>,~D|n7>!^j9-y-FU@|a3=JYan4Yk:,3F P%̧ޟ= DƏk ,Sh)3 Cn2`V`Oݱ}pSA)C)r]^rґװ(r~tU={#JdmFRmPW4Tm6Ruሻ3ޱ7q@b(y;:;##8-&\/~dTRJUɉ:̥$FbUW~ oW.NsL6޾qLuRwhWTbHe׎v2I2SJ lN{eKB 4~ z?sSSTǮ.ʱC:dt&Ϛ-#yyލXm_yAq^Ǝzlg!+_6BTu|ow.Eeb keqg>w"!6(0E=IC5{qj=3^9j_$N^lx~D4Y7o7Wr&bΈA)N$~ ؈Ͷ-%pKgIW_aN GKp\I-xj[fw٭u>r?XQ~Z=gbX$`h~E,XཟxN#j ["Ne-ck '$o(zգ8Ί9 u[-bvdx9N}Z_M5)OHply-^}\ xڑBlM\|y ?8[r wt0A`3R/Y(-)5XZrR},UF44b\zD_1ϜSF"% 8\<.uhR6ۯ i0ΨiU]d"0.exk++ lVPz,!ruxǵxzFm^/hEn,;T̫Hh>*d*;S|˵S@nU6v;nY6 ON9n>,0Eo .¥4VՕiMqMyŸ;{~KTg@ mN.[>_Av6xT9u@XFFX,O6M(98{:3/^#xc E`_(*jM գSլRu74`_Lh 1 VF}-6exgPyrxϾ_NTkxfuuslѷX *m]aa~z$*5xL1"ػXUޣ/[CtXݯm6Ia6B׺)/NȈX~bGV-eT6m[3ەГXX{G )[\\K} 5-@>N|if:μ HԯEm!c_EIWYIXD3IB֡K5_}'7Q}J{mMF(l9cz<ϑih QO[vb2?H,ӽP.f* N̮#j2W H:%jh%F$S/űf@PN1H~V"݁WXQVuZ+;y~)桼%}b+B5o˹C^{8ަj ]U3&Q-yIJCPOO-2ıO2d*TMe5W\6m,gig,d,{TPv_ŔJ6L}_=GzdI8ܴ3bBapHmGR0!bZΠm^z{!WB7nO +oiPp4DgkN֚G,X pVES6܂o8+*-0 U2=e%1YGܵP̯ e7zm,=jQ6]pIT̜8x07^uy]J&sdyMOM#*[k`q*K*Izb&Nlީ{gZr(%/^1jgiPu?ȥo=jl:+d6hX ۪lk 3%.(oDd"56.u-!p.n8X/>.c3sOW\vd6(k8:KF&箪X'79Dsy? N0\>i{F&C():l&s90JtJJcRgI*3J=څ"Yt<= fx l"dH<=T/iG^(|[V/-3:1|8r+V`Pm{o~qXA0,0]a}ӏyN%i/WYֳHEƙr+cFĵzƹ0.?F$\\O:*y"藊G%b13[5ßfwZϖV!ҕmUuۛuinp;${"9+1yd<hdq @W̳,jUd HrУyzR=pX`i |2ĿňU9:{Ϛa6x;,<γzކ%# /u4p#Uf<tbm{+89ַӃN 7"/?=ofa$=Ҹj[ADԚJY_qIF:\՚42kfǡgQF0)'e~] km'v9x|z̫h,zyijixJ#lDpNRJ2PG0y?ip'+vt@@;\;?bB;HhsK&(8ڣegP2<o+@g@ooRx X._n*ڹqHUB+^d\ΘHjNީPzIv}!E69čb1 vž/|8c˾?F+1,R^ } |d܉ݐlCrֵF8ƶ+JUtSTCq@?8 inuOp`|ڝF&Ҷnldk!RP1y>)\S &t:Ɓam^G8˳䗝N:au2>5&gH4Q@bݤ@ܴ5 ;nPT^ZwQeXI Us| iR_||cn׽ rB#)?}c!UBť>7Κ >Qeᚬػ}9+̫ӄZ(QvJ{fǛQ{ȸ8.QpH[{k)mչ5qhe;i{/ ""0&`;@[3hãC!`wM;9hFb7Q-}';*6̰cB svHz;96?7YAׄp DRbv_OHL;-5ő¢uU sY=Z1WM]nz] Gi -]BL_cٛNS~"9OpGy M8ɑӛ{|a$Bd6 vn1?Ԉ "CS%CxHܡ].Y% Lo;L, NWHa1}1uNd~H-r̪[W00-%%Q?VG67!x@*$&YN=aFo8b1#^̾jDk;_ uTR!odNd@@Y8NåJK>xPh-PX#Mխ(m`Si횛0TU ×ꖨ޷)&z&uVzt?{ًóŔX>Nه<"Xhљ@5K&7=k86qJ\KS~ZOAU-UQ VȔW-'\M{((a\iy B[ž=/dN[iGeA(檤DUT2hGTB+[B{_ _vnp1!Kr0cɀؘzg^^T"B>fQq4fCޣ O+ba^%3۟;ŎYUQanFbSU֫jg"=uܒba(0x2\s~J!ȝP 3& Kh92`bǡzZYA8$/uW#a ^H-:b"gy,2y*z=&.1(DBcR5~&C&%}%pos%Mdo;=*h~!s>RK, !Do;f R'`/(nƧgT~FA!කpvF蟾cU*4S5kyZJw3+J ,p!$KΓ d)~c 7}J5`r` PgIZͰ?NuwTbLWkqBE=qtoRep {&׀#p0+wuDڑ}:\.>Xz sV8kՄ>u=RH<&9(b;e 3`#i7JF4KdfXR )DyyJmga^3 :owwDV5Kk8c;z!ky ]/=q2g4 j> ٬3A]W1{_oU"+Z@ ʖ9/oM Cp(4y<7>EP*Ncl;>L+ȭ\7):ld8+B\C/@u4S1CkWt)C̰wd 7Gb$i%/Z!O|$ϸ*bqxsH_[)id, { Luy#'VOvD<#bˌ퐝>QhŽR~w]HIґ-}4JC7O"$iiTy1]|+r6@ j7}n&olSQqďDCf :( rsIR< fk O^;fa d2 C>^A5!LTyp: hqR{DP>h5k&=ovL?h[Z[~a(FЭu.ԉX Eq:/LjGUiB3rT1k?toG@.\B=/2wLƨnaE>)eZj]ƕ+4)vޭ7 *_6`n)M@-R""zY {o9#X9k}*;毘V c2М9c~S[џ;;/(tff-pF%1YՃJ}p`]SIVaGag؆W,Bl l@z/Zr'ُb$@#,lG?90 )6k%i.N2{~_7s4a3q#m4@xOඌdï/GGG۹Yܓd߬(6 m4 HǢIk+ȸ7 \* (o&l'*OxVie5"3n^7V[5kXs0fI7-p 0'-ab^Da,2HgR9dwW8uP].ΰlxX/#1?ΚW"H}urJCi ÅT[1M,9#b)$ 6 SV5]VGKa3õH+VWvwAeUpnNH Jv5P0N; y%%ʙ|Ԫ猤 |0zS<enZ#!usxNUV(Zl6&ʤp"-'b%vdV At@*P% !gXeU?˖uˠo&^1=36.'9=}ݔ[mނ(DR[ }&E# Щ{Y@$Wl3Lj:Џbd͟DдpV5)QaQ;Z|lă+6Ѳd([Ŷ $R/zJC;9]aP?]6)Ohk}}Y͖+O=l,fgWiL^_-_V^ŞUox!3|]s"QB!WtpUZ̚z=xF[v~6^7U|bGj  mπHNZk7HY!hF#XT'l`] 3 Ph\U}ʟhqn_+lnMO(DCKpS_ y~3>Q& >4A^6:'(RTr!$ M6q$ )/A(E&ғZ.;]![+͈vfټðJ}ʶ7׻Tx6ܮ҂^BBu|Ҋ!B" }nSPU73Q1'S!W3ZGuzއ1`xItң6c׿*2Reܜ]Y^ g.{h|!#' :fوn9WLW(Ta̓mY:xAfYxmFwt߲xϊ@R)D ƝawVg߸榰=تc,ON1䴻yObq`lN|`'{}>L&/Q4)-uDvs,/h 6m]Oq䌠P%Fjy04,& je;tW#4Aܦkk\& }lE,̻ ;Vrn4%@VHV{csd7.iGdCxuBWqɕ1WѢ`4p|ǀbI#q-%PayfRe!azfH)Vҙ75*}Gnz!t[XkY'ό}?i x)j0)P^ne؍Ʉ4{Yަ"҆K\߯9b,A"g/,Dz0fLF베l ūc*bߙf78m lk68i=2n3RI'nx:sz6*UY O|,JST]$*xWIq-]5_4u*ܫb|9{-~d/$:+ەp|:hHe L/ҴUaU[FD:n'\2NXQKg_ab}V@_Ӧ8ȫYfeλ j*@A%YL#^MꤑG R>!C) #Z>{o%>3M^/T[6Ȓ741 >_[yT26:q3'x* 0e5~{}徢{h1p<"0VsD[G|g^+uG[0:'̠|+VɓIBRyqBN"fH'_ H>p"ݦ݅{(SuQ+*br_Y8oU O]PS<i`VfgoLR=rZJBN+n]\6FTUODh槊6 QCT&21 TƔ+Al;%X%8i7?!2}f'\R[ ʱxkbf1H 7\]l\6g ;P(%)iJfwVv SxLzUCx`],B3XRjZW$hKG*&ŧqG`=FlTQp&?Z)\7'yjbrQF.JO~ݑ ΁F= HN/BŌ=è9DGhً,t! j|:mo,PO(PЯwz_#,,7PLf:|Mr+l]Q^hGHdË% ? :̠49=QAE˽1*4\M5u"}'>+t?0*l$ld3Bf`ovx |gpȤ Hx0?Utߋ2N#wy >YȔOw *+NWV\^%A6Ak炱H$S/U!oJpI:\شbvԔNe$x_&MV,ezԟ}j!h<zc vOS KK;>UBZH '7~vaKI%!8wDp*Yi2XBV Vڏ-A~ ;kdbV MF}a i^]E-<*)AJxt 5gu3YvH=;<_y %VS|xgרhWA"vnJ#: $UuHJpŃpO%7Jӡ3`cHb[0y.+|Y÷ۅ0{Uӧvgf_7S_xݜhA !畎{6``7vddtb{͐@egIUQsKv\N1h?߅qkpZ`i!#P"ÌTm @7RSF BaS^MEsm1Wn.X['H-aKC|i^a0w`%(B1ܖU"{+vY3U= ~xk8̠yŻtԞ} 8k 5n`-PY1=xx/88 :e }۽ȒS_XǢv_o'~_4m}m&` BRy=|U-)_qa,5"âΜ!0&7$Bx4iaЗⰮ0cݹ9Ǐѓ iՁr5[ D@m=KnZlH\9vȲshq] \$%sr4.eHKda!n2w'(EC$pVIn4aiC%Hxh$TWj3 Z3?>T, E4Y|08 g1ɡǾKhgb\$Ő\qH)RSb/W0kuᤄ /*-binB?'!W+HnqqР/23DUi6,1[66p)?0̈́&Ukbʗ`q Jx~۬r'G@洓yXYjqW/H3¤ 5@oi \p t *'FL~ Gټ1Qc*NLc 'lӁydeRnٮ@d2) YrW돮ܷRa)O%&հkT5QQzUxsU?zW;-ZUD\{p̄|" M>tYjŁT)W}"oREfj*}w ~FKn= r6sO9wN/Mv~ƄyHu^@c`ޥLJӁ?dw|˕;+ v%4~osTF^ksf*jۗQIJ#.T2I8oD_&\ XݦƷn̖" W )ãdR@P7MV̯ nZQ|?xs ̱*>1z+"{;nƺ1,tKuɖ{9)_ihF1v}8Swr.[ _Lc q/`SjoZْڼMDg^9ċ@B UԖ|enNX>xGs[ җ]C5ūoTULoImXJOnko~K%Zz?GуcR Mt Sܾ~ m9`aI}΀_ ̯" mà r A7G;ks2Ln24A-z.cjTז5òyBF9iegxr~*s|)l} F ib` C*8dUj^؝亚|>Lm#\s'm!K̅[qT¢FK]Y10>_fhL͇>OUhG-Ps@;-L!df|o9Xi0W; O4*(YI[j9aC!`Tp];b%N|ɗV#sjg R󛉘;׵Yxnʿm"AXdzdSq*xMuiUVM wf vnZr1sK #ecp,Hy{$q"8Ζnį!R0ۺ$E9s"X[C.lb?\~ni׬c{PP[<t.ϳ2!_P5{g0rm;/[f=bVNΌ% dz':UcN!Ih:ؒZX}<; aiK=wT掣>K)K9XB7Ui4*E wW蠹G";UezXB}WÉ殽C2 Ģ 6EXOι}nO3s*:p`y2F_#;&ziʙRH %dw|rsPlK:Q NWe}sjO⮇d)'K=XZk#3#M<$x2w/|z6?aulhi>DrՊi#dU=U_Sg1/(9>F =s<WjQGD Y 3"4Aned8W^<Qu[\#LD2$omdL9LFEL;B|KjEЕl֛ ^ߊsJ "['Te ċj$"MOwRX5W+cRgkƖw/\֙m )5>)FE J# qլ,x7͙EUqUHј}3D">S' b$n'ũBZꋧWo-)(" /MMt|]t4,L]: (!X7r(M;#4{6r+lkVh#[xfN{iy]ءTD c1L?6Ds31m "1CMpP6Q?zA9Y )KE<"o9$=|3#yߗ(Q-hҕ6 (EGk_O>ձdGWǡ8UO_oCzܒ:#G42sZa 8n&5.YdB)T;53¼&0">1pa^_ L~xJYIWh] {{l2;e0ApPڬ+(Ɨ*ǩ'yO}܆[X乒rW[":"GziOZ?dgKf鶢*>As5pHTe E.gl6L)ĠӑV8l! Daϱ I:2ZW<(j [%$ Zu"IJ\=LijdO3qmc"}{DY8]']8`7ċxS迦:YP:GT.9޵?;$;;Wu)03?Ԝ z zwO,nV 7̜!D#l $et~$~bX? |/tDLf8ˎ1 GFzE7s$Ȫ~N{`,2QLV[s BR+pd̈Ą*(8XqMIo?U3g\CdtACMA 6kXv 4:ko +$_dyA!"5OM ` p+?;\[o&ݫAnt)Xgfpٝ CB=wy`]mE|+ay(+sUs0Ezj&WaBRM4 2ͮ۽D*#} Ѫ݆)r.{5>cSvD:Tya+̀RrIq@nHtQbIu\7Eɕ/Xj~F0A aKAi=^fm0 {̊`uv;hN,MN ~e5njZE2hrcqϋGۊGmL`8p{'fv[Mpy&blX/IXZN=l!Wo;u }bpZK5q?IƥG&?,YElTDP!:->J6.h|فtTcmXk,&K!!2(3mEg*LE,&ME>5RYi܂ti+{?C+@cKzYJ\LfF!| >B1QDHy:eO>iI]"c/ؓ.FCy0@xG.3h3Ev`EϞ蕡E"dТ5F1(8I\S]Rjx+ rw0 2_Q賶 d e6߿U6m&Gʏη(Gahޟ&CE?iƊW.D;rN\C'0 Kַt J=i arXI *}#eN \0Ę50;n!78E8 F6X,9@j+$:)T)o'>/&%?oAsY{C2xR qۆ ݘD ~OEY7obC$:Vږ#J[a `ȓ=h!1n,]~+μo FwLlMCznShhZ6*=f @%=Yأ˪(`YX"lCZP=t$'sF4 m#:Ng,;x(R4k/aq ǖ3NL %^5(J~GN"־KjwkBZ& QKxm׃^  &шqw$us'dUpYHZs_M9<h]RN24vځ(A;@MJ87-jGorsR*2mWqMa ?Ja^#(`pwSX- L+N)aʹfרjq˷T3OuѸ/J[?d7u-ʗHҵA!y.Rv}xpa sk?)NLNokch Zo@Dhc^mI fi F'AH}ag"@ w0PV =TTO(/A7W7pA_tq.]cՆX8Ql&mOpv#_Lk"n Q]nNn+ROX*Mq߻!yx%wNrڔx1~**q_^:GYh`a e cZOV?Tfïim&~δ 6i5]OfvF-iW +!RHri;~2u8 &8{<ۅDnO3Dl9.Z!>`(:pD7l}&3M:;vUtY)[ma 9OiL7!u 8-d$d:z䣒H֮$iϲd|1pfri(_PctQFe4$4o(dA6C9O _)sljK.pY*  !)8oģf u2nڰ v(:oƎQfw?WHzhd &9:5r>rmm~RxV<{wL^nƂsh5ZW:dyC{@RQ oݘݝѷi+Hz]5Ѯݤ &\`8I wҕ}_`J2qlD>j,.9$E7"+GN2y}p\ I_S&r]5WKFS'赩B>!Ժ\"%,c8r pXoJ cM=g0{gʪ%fa0|kbԃ68Yp$kTLYڢ>\ahNMȝ z3Y\8c_-gXw>;ҥs `N%Ǜ{\=:Q77,v (h ;{.QV"^|Bj%N ' l -_!֓47ԧ;'S[USw-T4w!﫾2CHj(X\IqLR1/cSUפ:@ n"'yWWrD/`a/Qh:GϬ bY3%`mRU_fin/$ DprU@}9ͦA30JXJggJt#7ϭjEAeW0Uqc('_BunRS*P{$Qx2WqȌ?X{&>1PR4L!m~2 Xw:ed ^&٤"Gq?-3Hㆢ$M哧l Іt9sEݏ%&ΰ̀ 7Γw)-;y[y&u:f@Y7d(p.p =!'1C[\ C dt 1Bvgem\6/flc%jd&~GpAv6C]0 yje\=A "t|W'3.yl"xs5|B-n#7BE'v8g{j-zs{ 䀼3b: 7unj$2.u&n(Y +8v8t)ӉA}3qv!g•ߔ훁sޥP-:Suqt柁8vo%i*\e!iOܚvbחvtRj) gu(x|UQ$B o,ҷ l]ӌz\9Np@BQ }r5kl,Rd lG>x^t8VYvNr[*L}ΰ hʓ,iKФ;`&YQR a ,fqAj&~f$EI%j26Qmkћo>6X²1ϔi XjޯNlVn G@Kf̍FKYy@$јۊm@kTK*p[ɻpeǣk,/g|={.èU:B-hZp0}@̏5fd.Ji>ZKPJL^~NHݲn?u@n#T;wgo@ LqqsNspgy= It]E'l;4 `StHU3?=1S?mDwl..V.PUlSsKf,kY̮H-gP!73`Q&G|CmEI YIɧ=-HI4% ہ W,"އ(gK%&= MqVdwApRGK]a5PcG'3uGX%Njp/`K8d7 J,c/C=pO8:ҘP[σ%R(e@_8 uK^|+6ʙ\oC_8ڻGO#@IHC{uo󃬞WaC 9KfBsopPz6" {xqe gxUk,5qKf ".^+X n~t-߁襶_#,ߐ'Rmw}RlO}==,2e9&qK Zt/F 77JEjݲyݑjwj+>oUvHOX\ͼ@ӝ犚b$*_wQpf6]/В*UmS6eJ4z YTX]q(Q@\MOz L;}4 qzN &o* xJ+`@(; 5O~.WM5~V_Up£? ߝ+^iE:oFdǡܶe /s°J JZo|МemXL9-'9G1u :?e|XL]#sc&=jSdAsAcIݝW9?=BPDtٌ5q6DlI&_u> B,YOy.,ңl-%M̉s =쀥46gNol&#X]RVǔȃ5Ga3\|3]k֐1c {;c g6VLS愥L1'NZ2c>["Nz%Y x'O6I= 9g3ڧ_CP'!0Hʢs"%Iy/jύ'?1'xSIhNkDy0h51[h25I {&~-c5-_ʵNet1e6em+bcYZU?Չ tj0 AA } T޶&/e-~$m̕td yߵ| tD`{ }ZfܩfkME|Z+\sby-.Eq ICfPEe$,y=(AlHȶJVnl-lH!X_LF>1;=gx$]yʔ9FHWxř3= ?^Yx92@58inPX!)r4Taw\\|\c$B(i:~#JaB1\&8U`}t3Tҟ<WO9r4y*8l^DnNXw]Y{;Y9N|jUɽSgQ'wFB ;]OSrVf-os ߁,qT0N[eT<mH."X ²]J1K?UV~r|:a޶iK{uF-n7`KvIX :Wv\(\Q. DȞV3B0鑛+->o}I^WO`9bѷn N]t5DG8fK?n13#|>3#Vٳ+J6 >O, O>9㰈- â M7ʀy'Y>װ̹ROXc Y\qbjؽ$cNhx9,\*n&PCt0F>M0ImD*)%pkL$~Px>;#aVFhb$HyheyN{@J~*ٕdJڴW$xO^r 7dx̯'GsK=1KaJy\Zf! ϕ ^pQF%uGتu,l@B 5QGg$fR]z7+^G+}aGD8!y漣QM@Rkm Dz<( VjUhw`@\i2{5wtKYQrߨpIبZdW*= 10mwbcxNI+=-6@gl\'5{n8Xű88!:,ѫi,D[)@@U0(jH%z\^4a6F6suDnu}=Bà}/ud} WSC~Zwt"FnY,"Ij-zbTƚ1R g^fOFec?xӺs׊%V8i=?4M%(:SǘyHNsFd'Z^;U<6(-ʳ1c0X"ㄢPQm($+ ody>5D"lO[I|CÚ*ɺY`Z. t㒍z74ظ~m1gZ~o'Xǹ`7.-ֈ":, V%fesZra.*~e$сX(hY/hiy id= hL,X)AVI"yVRUzl zҪ@J758$9l 6Ɲh9ӈˤs"VmyPuM;gQ~e&\6'Qd5l5#j+\a9.KnFm&oskKO0uyhX6w֍+p Q~6FLG27FCI JL:ky P kyn]DJgw@Kdk$><ѹ |#!t0#1PcǞGFǓ?ڇħn^I;y89<;#~)!7bpt*=HrԹΧ@Vv > |d#{BXpf| ћ}^^蘕)8Sw3(oetâc=yĠeCЫ81$`:-\t(BP Cdm~c/D'_ &C/{b8f130"Ĥ2 /gK2լCQHĉ&v$FI%EJ$6qUk$+Fo-~.* /<q * (>b]*勰G:Y'5reyR+GN% m獝S0-pƆ~+tKϰSwK6R2uQmNPTevX͉$ҵA'?΀|X8'm?D;o+s e:yR-)!4T%6p.H` /C2J0tYe#a|)5=(@v&OVV:L,8ƁoJ|"L@BǹSipDO9 Cr Tj$Ue{+9][%ODqF}}PD` ZƷ8ZSW04?gf;V];y~q Pf>#{qإ]'ˁm|v @b@KD 7ސݴm[BwSn~82zPÈ\*9Ai.<2Oب\*Mѫ,'*:UYlN9~N3/ Jfdp'WY̽ԯj51$jnQ f"to_٤x6䯁%75vWpK@:4M#1lj/Xv6W0:SX]8CIЍ0X%~1UuMWx9=NH 0Yrܐ³j,yBˆ..h) v7).BXZRW Ѵq$]ڜ(+vSӐ]Ze}P1>H|*%Tt~h}g9X+r/Ǚ 7xymQ33h{6Ϙq"a5w: H:ahĩ6q.F_ 3<+CBsPUU9ǎ.,U4pk1ulxfqN kS:-eq4Tu m̤G~8UH/ǖ*a7cș\QtE{& 5Ľ˖$+qllۯ_ݯ+lQyFcAVIY$iZ;$k{ߖq칶B Km!sfֺk1^_r\yMo+,igjV+$g_9m܊HH֨FA}r{Y"2#U`Z 3-JLX5b*SC9r ?[^ Q^n(/]UzG)ȲJ\N&ݤpbz jCt.* H]6$ozl.9ʹpն;7@QeX{PizDj4 nz<mRGM`W 8)M3KNc%Hʠ:w]NSd3SSZYf63ti"ĨթYT<]?r . vmH_2J,57hǂU0e{i0 :#!\X*Ns[~6"S+}GW M ?0oF ׈PQi`8R w_cXmL Wn+LbiqAHwzrS~9[aݮPjh%9|xjJ>`fO6Nr]M$z|K~)y!൝qq{VGL£wm$ޚچ#.ڋEzHqz|AU͓#`l28K\Q0j=D‰wx kǶaV;)Ui1H0r %pB ᵁǢT~CgKe~Q-3_,a:ĢFM)enߗYU'9 #kj '`KUP~W_jm` rΊ[=̮EzE$i2Ιm@ t +teJҜwEhŹ`xmUEGH~}7d]u$M5S̷w>lСvj%K?A<63{PhMWFs+48h]9 O,9^?Tx˱aͷOޢ \LG 1Z6GQi9TOChl3[]sCǙw/:gm;چf.֡ڭl/ uџf/R GB>Z~jISQ?ekQd3|8*xrX !p2P:a䴒vnU!7Qښ 0!zE GS.\۝ +ocBJv:ձlBS\ф>n&W/awHsg f 窡6 ]0JA xo8q[ll뇔Jk(9Up9lER,N`:T^sxm/I@̀3z5 1z0pe<,g:KKݐCq'v LoT6N^{kзOPYziF/ 9QӲd3} w.8q̭%BT{lym\y*qv]1s}i ??1n{>qwc]wA2DI۲4Sin'> =پ1e`}EANwGLą~I0ǖA^Cm~b,%3WvB-ȟ2|xsڀkr^TT^6њSGsZB=!_Ob%jh?"@wXFo鈊5A03?z&#j\c hECwª hpW]YLqο#k>}ǰu 6{}bxL^39~0 =~اd]JcN|ЂF=~ss#O wa;L0_Jaq%q0Gx!>@#2ȥPߣKiTŗ ݷxPe0~BLQYO$0:;$kkJ>3JLqؽ^ȥ_Zi#&^L}uM'PB*8$PVN gķ@SH#Xy~VOF@OX-c=б\ᭀwQ|8o8΂I@ZGƛLвe_S5YU UVfj4-{í~lNQlG^6S@"nV2~iGSdL?HЀh^g Q<資{!|f8:ŗc h >?c^tTU?⏜6K`1S;ռjj QۿoDƏM=JMG2(*X:+IiNTS)n^GHqBdh$KrdXsBS8_qhD|,c)mg{J1?܋2Z}hl-}} SXȑnHdT47 ;Qa kV8"L՘tVDxx4[n`qI ;.h z[UU,Ns5#u{/F-tqE8Ku Xh!3)KHL=feX0RV0+Qj`}Vۙ\2Pui c-]yVLQsM*Bs!r?g3=qAs[0 e&&Q)EUx|#O XGrS \|jЁBn9pk"` ĝ&/ƀ=B'!L\j2#MUGǙ}>SMrmˏNEϩ>9 畏+B6y55'I:syJ:0A+W&G'!r>qVF/?^j8>c_tn1*6^UHBT@$ b%`dމ&qꡪ$u"cn/jb!֘s߈f@ܹ ȤJ@_oΎY{V׾B0sB&KDt^A]C@z\)bzO.-Jܨ  Gasf:L90S!#x~PA ^>}d\shE[Rir8u2p@cgM$B9B~jfͯ^[Z\&K34 a]Cc\oXGN3j8qh-FhԲ"4^ʜ<>"Y:Oawt؆c=FQN\'}~0Jץ5 ѿ2-aN;~V½j-!O1d ʓJ"0 "Xݔ ,!"$Gw5><7֌hl{|Kx3"Krg}x gJq` HYH4~>}Kg4~|rXsaN"WF`YM!}y6X"zjI]p'LdJ>[XV+c!caM- W0I3DĴ)ff=~דuk_ E|KU[M$(>t ~gL+-|(xR9C ób"TU?BShLnh+[/ &88V56q>>HQo#&&;.v""m7`%ocC1*d5R.Pr&\,_^fLw#g!%9xi^ޟHPsmLr'Nz*, ru,DR;74A"t~H`S1 Xw8F՚k䎂(8+Q[ I`+}%xZXt#~ =*mBPJaA{%jP cB ,zӂ\X\AW19LFL#95L&jbd(K @f~A=,Jd">+6; \2A%_nz6*u>GԋbUba׀iOi)\"G^D((OOA˨zIÃl< "w@D>Ϥp l) qd#hH/ gv#7ܴo.3CH<̌d \OM1069Wft9Âۭcg:@W +&IHE"ZD6yՇ $^.`< b@% ۶o?fn%mj=inߢOBʌqV弡cIHCG?L@Kqjyp[2|T3k? \A_ZhAFN"w|@Bq$ؖ0,c{tDBMs1k|U;dEگG2rX~kEa5h|FwN;ȵS>\m/fFԒǡkMi$J㛽>NS86JP/y[)+ j{$R%00\ل;DޙAYU`s31r%Uef26CڂIX=S {S)xl`þAo͙LxjY(R- ^T@PHo5[o_@gb)~tq4A0 ( i4ɂ\{05WiOR,ͭdY5LonLda4Ts8{ Z29G~ԛV e\xgk*oާMAEZgK ݐX2#LlZV¢..:$F6qFu42CgC$ERJI(P|9#14 ~qSw<BA\$g7>&EqfDZlH0JaTZbGu[`v5Lj FH8]1Oّ^kHc0b!^qaEtN: VHLRQ'lS8HĖ]y1Zؑ+mplas7Spg67%AtSqnQmFM%&lw?[nxYXTWO}Lߩ hiͅ~ɇgzSxs̬dڊwվiFY2Ъ{E. ⢘ (O^î8{l}1N\\# l]֊|.uc*v2)N>b-NXwE먧'^Ml?ۂZLW 1~#!~_ N-˶xj렘@H3 YۑϷi`QO,.!ψV*C1D*}&9\0ʢ8̀!B㟺[pT&&[~^Xdl?SΛtm<9zpM.(NB\rcaNhθ'(bM!]:wb67 㫿Oe麬n )=ODm;%,)6Ef^SFD; >%0H5J%:`EJ9vÞFOKceVvCRcW~2B (6_V,*%qW<Ĝf5c~!|^䟃G}pC'+,^fA*I2^Ep,(D".\O-#;y׾7@<~^I:GQU|\S $iĎnQc2iK˧z>z-,UR~]>z'JW,U49*=X/uO ›6&j8h93aÖ̔¦d,9@W}&Jj ]b0%In a+7{L쏿'f.ٿUn%{xO*Rz R"Pl $|N?]SJ)+dR?b|Lsʐh~o菑w|CyQK Nuٱe|I--8,"{ Gc:F/ifJ_6;*8$%|F01b閿hq`},RŞ f,vܪǤ(;֣;~zPmTt. h莗 Cl_K+4Hp!̇)N7) hNWJ?qP6QǬ?36jPsYBhoT vjVo4dP''(߄vtP Q?@h\1/!0rGӂN0bm`#]O|ZZ|裔ZJzl+H&+3 Hz@92R0Sf,:aA{)%9!qV1,O>9l-ĉbK]^&WRvvꔯ84m6,Z5.O4d]vUNRXp3NMGJށ ;hVDbCKO's[҃7_q˷(斾lHzVJ_m3\x[d+vsُDS/]᨝]V` F,(~,'ll2iM#f Lgqm^Ӄw#t}\<_wAH'+Eɤۭ+cg/AdT%\ڶѐ"Mz)un Gx_]"c`LBw2"OD6\.7* |rAѾCArNyT"'g\:H6)x$-1z^q]JNhd}:dIi{otqac:|0L=lH].{AU8g3 b]y/\w!ѷV,7̞%P :~h3S^fLFjTMxmum1F1IMe}g *H٦_ gϞ||zjWћ)%6cIhB'gbծ؊y.k~ WDX)6\X\6.{,7Qި޾}ɩqMuL]Wė&~:hM?~-) XΗoRw\9`ㅋ ڄ1=\yGO \@5T4ZAʽRB_7gm}^V&icj|%A v^@aUY= YZ