repo_name stringlengths 5 108 | path stringlengths 6 333 | size stringlengths 1 6 | content stringlengths 4 977k | license stringclasses 15 values |
|---|---|---|---|---|
bozzzzo/quark | quarkc/test/emit/expected/java/quark/src/main/java/quark_md/quark_test_Test_stop_Method.java | 669 | package quark_md;
public class quark_test_Test_stop_Method extends quark.reflect.Method implements io.datawire.quark.runtime.QObject {
public quark_test_Test_stop_Method() {
super("quark.void", "stop", new java.util.ArrayList(java.util.Arrays.asList(new Object[]{})));
}
public Object invoke(Object object, java.util.ArrayList<Object> args) {
quark.test.Test obj = (quark.test.Test) (object);
(obj).stop();
return null;
}
public String _getClass() {
return (String) (null);
}
public Object _getField(String name) {
return null;
}
public void _setField(String name, Object value) {}
}
| apache-2.0 |
bpmabpma/java101 | src/test/java/tw/bill/java101/AppConfig.java | 498 | package tw.bill.java101;
import org.springframework.context.annotation.ComponentScan;
import org.springframework.context.annotation.Configuration;
import org.springframework.context.annotation.Import;
import org.springframework.web.servlet.config.annotation.EnableWebMvc;
import tw.bill.java101.conf.SecurityTestConfig;
/**
* Created by bill33 on 2016/5/29.
*/
@Configuration
@ComponentScan("tw.bill.java101.conf")
@EnableWebMvc
@Import({SecurityTestConfig.class })
public class AppConfig {
}
| apache-2.0 |
mhurne/aws-sdk-java | aws-java-sdk-route53/src/main/java/com/amazonaws/services/route53domains/model/transform/RetrieveDomainAuthCodeRequestMarshaller.java | 3132 | /*
* Copyright 2010-2016 Amazon.com, Inc. or its affiliates. All Rights
* Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
package com.amazonaws.services.route53domains.model.transform;
import java.io.ByteArrayInputStream;
import java.util.Collections;
import java.util.Map;
import java.util.List;
import java.util.regex.Pattern;
import com.amazonaws.AmazonClientException;
import com.amazonaws.Request;
import com.amazonaws.DefaultRequest;
import com.amazonaws.http.HttpMethodName;
import com.amazonaws.services.route53domains.model.*;
import com.amazonaws.transform.Marshaller;
import com.amazonaws.util.BinaryUtils;
import com.amazonaws.util.StringUtils;
import com.amazonaws.util.IdempotentUtils;
import com.amazonaws.util.StringInputStream;
import com.amazonaws.util.json.*;
/**
* RetrieveDomainAuthCodeRequest Marshaller
*/
public class RetrieveDomainAuthCodeRequestMarshaller
implements
Marshaller<Request<RetrieveDomainAuthCodeRequest>, RetrieveDomainAuthCodeRequest> {
public Request<RetrieveDomainAuthCodeRequest> marshall(
RetrieveDomainAuthCodeRequest retrieveDomainAuthCodeRequest) {
if (retrieveDomainAuthCodeRequest == null) {
throw new AmazonClientException(
"Invalid argument passed to marshall(...)");
}
Request<RetrieveDomainAuthCodeRequest> request = new DefaultRequest<RetrieveDomainAuthCodeRequest>(
retrieveDomainAuthCodeRequest, "AmazonRoute53Domains");
request.addHeader("X-Amz-Target",
"Route53Domains_v20140515.RetrieveDomainAuthCode");
request.setHttpMethod(HttpMethodName.POST);
request.setResourcePath("");
try {
final StructuredJsonGenerator jsonGenerator = SdkJsonProtocolFactory
.createWriter(false, "1.1");
jsonGenerator.writeStartObject();
if (retrieveDomainAuthCodeRequest.getDomainName() != null) {
jsonGenerator.writeFieldName("DomainName").writeValue(
retrieveDomainAuthCodeRequest.getDomainName());
}
jsonGenerator.writeEndObject();
byte[] content = jsonGenerator.getBytes();
request.setContent(new ByteArrayInputStream(content));
request.addHeader("Content-Length",
Integer.toString(content.length));
request.addHeader("Content-Type", jsonGenerator.getContentType());
} catch (Throwable t) {
throw new AmazonClientException(
"Unable to marshall request to JSON: " + t.getMessage(), t);
}
return request;
}
}
| apache-2.0 |
JackSullivan/psl | psl-core/src/main/java/edu/umd/cs/psl/application/learning/weight/WeightLearningApplication.java | 4890 | /*
* This file is part of the PSL software.
* Copyright 2011-2013 University of Maryland
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package edu.umd.cs.psl.application.learning.weight;
import java.util.ArrayList;
import java.util.List;
import java.util.Observable;
import com.google.common.collect.Iterables;
import edu.umd.cs.psl.application.ModelApplication;
import edu.umd.cs.psl.application.util.Grounding;
import edu.umd.cs.psl.config.ConfigBundle;
import edu.umd.cs.psl.config.ConfigManager;
import edu.umd.cs.psl.config.Factory;
import edu.umd.cs.psl.database.Database;
import edu.umd.cs.psl.database.DatabasePopulator;
import edu.umd.cs.psl.model.Model;
import edu.umd.cs.psl.model.atom.ObservedAtom;
import edu.umd.cs.psl.model.atom.RandomVariableAtom;
import edu.umd.cs.psl.model.kernel.CompatibilityKernel;
import edu.umd.cs.psl.reasoner.Reasoner;
import edu.umd.cs.psl.reasoner.ReasonerFactory;
import edu.umd.cs.psl.reasoner.admm.ADMMReasonerFactory;
/**
* Abstract class for learning the weights of
* {@link CompatibilityKernel CompatibilityKernels} in a {@link Model}
* from observed data.
*
* @author Stephen Bach <bach@cs.umd.edu>
*/
public abstract class WeightLearningApplication extends Observable implements ModelApplication {
/**
* Prefix of property keys used by this class.
*
* @see ConfigManager
*/
public static final String CONFIG_PREFIX = "weightlearning";
/**
* Key for {@link Factory} or String property.
* <p>
* Should be set to a {@link ReasonerFactory} or the fully qualified
* name of one. Will be used to instantiate a {@link Reasoner}.
* <p>
* This reasoner will be used when constructing ground models for weight
* learning, unless this behavior is overriden by a subclass.
*/
public static final String REASONER_KEY = CONFIG_PREFIX + ".reasoner";
/**
* Default value for REASONER_KEY.
* <p>
* Value is instance of {@link ADMMReasonerFactory}.
*/
public static final ReasonerFactory REASONER_DEFAULT = new ADMMReasonerFactory();
protected Model model;
protected Database rvDB, observedDB;
protected ConfigBundle config;
protected final List<CompatibilityKernel> kernels;
protected TrainingMap trainingMap;
protected Reasoner reasoner;
public WeightLearningApplication(Model model, Database rvDB, Database observedDB, ConfigBundle config) {
this.model = model;
this.rvDB = rvDB;
this.observedDB = observedDB;
this.config = config;
kernels = new ArrayList<CompatibilityKernel>();
}
/**
* Learns new weights.
* <p>
* The {@link RandomVariableAtom RandomVariableAtoms} in the distribution are those
* persisted in the random variable Database when this method is called. All
* RandomVariableAtoms which the Model might access must be persisted in the Database.
* <p>
* Each such RandomVariableAtom should have a corresponding {@link ObservedAtom}
* in the observed Database.
*
* @see DatabasePopulator
*/
public void learn()
throws ClassNotFoundException, IllegalAccessException, InstantiationException {
/* Gathers the CompatibilityKernels */
for (CompatibilityKernel k : Iterables.filter(model.getKernels(), CompatibilityKernel.class))
kernels.add(k);
/* Sets up the ground model */
initGroundModel();
/* Learns new weights */
doLearn();
kernels.clear();
cleanUpGroundModel();
}
protected abstract void doLearn();
/**
* Constructs a ground model using model and trainingMap, and stores the
* resulting GroundKernels in reasoner.
*/
protected void initGroundModel()
throws ClassNotFoundException, IllegalAccessException, InstantiationException {
trainingMap = new TrainingMap(rvDB, observedDB);
reasoner = ((ReasonerFactory) config.getFactory(REASONER_KEY, REASONER_DEFAULT)).getReasoner(config);
if (trainingMap.getLatentVariables().size() > 0)
throw new IllegalArgumentException("All RandomVariableAtoms must have " +
"corresponding ObservedAtoms. Latent variables are not supported " +
"by this WeightLearningApplication. " +
"Example latent variable: " + trainingMap.getLatentVariables().iterator().next());
Grounding.groundAll(model, trainingMap, reasoner);
}
protected void cleanUpGroundModel() {
trainingMap = null;
reasoner.close();
reasoner = null;
}
@Override
public void close() {
model = null;
rvDB = null;
config = null;
}
}
| apache-2.0 |
integrated/jakarta-slide-server | projector/src/java/org/apache/slide/projector/processor/query/PropertyQuery.java | 3785 | /*
* $Header: /var/chroot/cvs/cvs/factsheetDesigner/extern/jakarta-slide-server-src-2.1-iPlus Edit/projector/src/java/org/apache/slide/projector/processor/query/PropertyQuery.java,v 1.2 2006-01-22 22:45:14 peter-cvs Exp $
* $Revision: 1.2 $
* $Date: 2006-01-22 22:45:14 $
*
* ====================================================================
*
* Copyright 2004 The Apache Software Foundation
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
*/
package org.apache.slide.projector.processor.query;
import java.util.HashMap;
import java.util.Map;
import org.apache.slide.projector.Context;
import org.apache.slide.projector.Processor;
import org.apache.slide.projector.Projector;
import org.apache.slide.projector.Result;
import org.apache.slide.projector.descriptor.ParameterDescriptor;
import org.apache.slide.projector.descriptor.ResultDescriptor;
import org.apache.slide.projector.descriptor.ResultEntryDescriptor;
import org.apache.slide.projector.descriptor.StateDescriptor;
import org.apache.slide.projector.descriptor.URIValueDescriptor;
import org.apache.slide.projector.i18n.DefaultMessage;
import org.apache.slide.projector.i18n.ParameterMessage;
import org.apache.slide.projector.value.ArrayValue;
import org.apache.slide.projector.value.MapValue;
import org.apache.slide.projector.value.URIValue;
/**
* The Query class
*
*/
public class PropertyQuery implements Processor {
private final static String EMPTY = "empty";
private final static String URI = "uri";
private final static String ARRAY = "array";
private final static String MAP = "map";
private static ResultDescriptor resultDescriptor = new ResultDescriptor(
new StateDescriptor[] {
StateDescriptor.OK_DESCRIPTOR,
new StateDescriptor(EMPTY, new DefaultMessage("propertyQuery/state/empty"))},
new ResultEntryDescriptor[] {
new ResultEntryDescriptor(ARRAY, new ParameterMessage("propertyQuery/array"), ArrayValue.CONTENT_TYPE, false),
new ResultEntryDescriptor(MAP, new ParameterMessage("propertyQuery/map"), MapValue.CONTENT_TYPE, false)
});
private static ParameterDescriptor []parameterDescriptors = new ParameterDescriptor[] {
new ParameterDescriptor(URI, new DefaultMessage("propertyQuery/uri"), new URIValueDescriptor())
};
public Result process(Map parameter, Context context) throws Exception {
ArrayValue properties = Projector.getRepository().getProperties((URIValue)parameter.get(URI), context.getCredentials());
if ( properties.getArray().length == 0 ) return new Result(EMPTY);
Result result= new Result(StateDescriptor.OK, ARRAY, properties);
Map properyMap = new HashMap();
for ( int i = 0; i < properties.getArray().length; i++ ) {
properyMap.put(((MapValue)properties.getArray()[i]).getMap().get("name").toString(), ((MapValue)properties.getArray()[i]).getMap().get("value"));
}
result.addResultEntry(MAP, new MapValue(properyMap));
return result;
}
public ParameterDescriptor[] getParameterDescriptors() {
return parameterDescriptors;
}
public ResultDescriptor getResultDescriptor() {
return resultDescriptor;
}
} | apache-2.0 |
micrometer-metrics/micrometer | micrometer-binders/src/main/java/io/micrometer/binder/mongodb/MongoMetricsCommandListener.java | 2889 | /*
* Copyright 2019 VMware, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package io.micrometer.binder.mongodb;
import com.mongodb.client.MongoClient;
import com.mongodb.event.*;
import io.micrometer.core.annotation.Incubating;
import io.micrometer.core.instrument.MeterRegistry;
import io.micrometer.core.instrument.Timer;
import io.micrometer.core.lang.NonNullApi;
import io.micrometer.core.lang.NonNullFields;
import java.util.concurrent.TimeUnit;
/**
* {@link CommandListener} for collecting command metrics from {@link MongoClient}.
*
* @author Christophe Bornet
* @author Chris Bono
* @since 1.2.0
*/
@NonNullApi
@NonNullFields
@Incubating(since = "1.2.0")
public class MongoMetricsCommandListener implements CommandListener {
private final MeterRegistry registry;
private final MongoCommandTagsProvider tagsProvider;
/**
* Constructs a command listener that uses the default tags provider.
*
* @param registry meter registry
*/
public MongoMetricsCommandListener(MeterRegistry registry) {
this(registry, new DefaultMongoCommandTagsProvider());
}
/**
* Constructs a command listener with a custom tags provider.
*
* @param registry meter registry
* @param tagsProvider provides tags to be associated with metrics for the given Mongo command
* @since 1.7.0
*/
public MongoMetricsCommandListener(MeterRegistry registry, MongoCommandTagsProvider tagsProvider) {
this.registry = registry;
this.tagsProvider = tagsProvider;
}
@Override
public void commandStarted(CommandStartedEvent commandStartedEvent) {
tagsProvider.commandStarted(commandStartedEvent);
}
@Override
public void commandSucceeded(CommandSucceededEvent event) {
timeCommand(event, event.getElapsedTime(TimeUnit.NANOSECONDS));
}
@Override
public void commandFailed(CommandFailedEvent event) {
timeCommand(event, event.getElapsedTime(TimeUnit.NANOSECONDS));
}
private void timeCommand(CommandEvent event, long elapsedTimeInNanoseconds) {
Timer.builder("mongodb.driver.commands")
.description("Timer of mongodb commands")
.tags(tagsProvider.commandTags(event))
.register(registry)
.record(elapsedTimeInNanoseconds, TimeUnit.NANOSECONDS);
}
}
| apache-2.0 |
techgrains/TGFramework-Android | TGFramework/library/src/main/java/com/techgrains/session/TGSession.java | 6732 | /*
* Copyright 2015 Techgrains Technologies
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.techgrains.session;
import com.techgrains.common.TGObject;
import java.util.HashMap;
import java.util.HashSet;
import java.util.Map;
import java.util.Set;
/**
* Singleton Session instance.
*
* Holds single instance of session in memory along with keyValues.
* - Extremely handy to avoid local storage operation (shared preference, database etc.)
* - Very handy to access from any layer of the application (from UI to Service)
*/
public class TGSession extends TGObject {
// Static singleton instance
private static TGSession session = null;
// Non-static member variables
private long createdAt;
private Map<String, Object> keyValues;
private Set<TGSessionListener> listeners;
/**
* Private constructor to avoid empty initialisation of session object.
*/
private TGSession() {
}
/**
* Returns current active session. It creates if not present or invalidated before.
*
* @return Current session if its already created. Otherwise creates new session.
*/
public static TGSession instance() {
if (!hasValue(session)) {
createSession();
}
return session;
}
/**
* Creates new session.
*/
private static void createSession() {
session = new TGSession();
session.init();
}
/**
* Checks session is valid or not by the session instance.
*
* @return boolean represents validity of session.
*/
public static boolean isValid() {
return hasValue(session);
}
/**
* Initialize session member variables.
*/
private void init() {
createdAt = System.currentTimeMillis();
keyValues = new HashMap<String, Object>();
listeners = new HashSet<TGSessionListener>();
}
/**
* Invalidate the current session. It also fires "sessionInvalidate" method of every added TGSessionListener.
*/
public void invalidate() {
for (TGSessionListener listener : listeners)
listener.sessionInvalidate();
session = null;
}
/**
* Number of milliseconds passed since valid session has been created.
*
* @return Milliseconds
*/
public long validSince() {
return System.currentTimeMillis() - createdAt;
}
/**
* Unique Session Id. (Timestamp of Session creation)
*
* @return Session Id
*/
public long id() {
return createdAt;
}
/* * * Key Values * * */
/**
* Store key-value pair as part of session. If provided key is already there, will be replaced with this new one.
* Calls TGSessionListener.keyPut after adding into session.
*
* @param key Non-null String to represent as key
* @param value Any Object as value paired with the key
*/
public void put(String key, Object value) {
keyValues.put(key, value);
for (TGSessionListener listener : listeners)
listener.keyPut(key);
}
/**
* Fetches value from the session for the given key. It returns null if key is not available.
*
* @param key Non-null String to represent as key
* @return Object which paired with the key as value
*/
public Object get(String key) {
return keyValues.get(key);
}
/**
* Fetches value from the session for the given key. It returns defaultValue if key is not available or having value null.
*
* @param key Non-null String to represent as key
* @param defaultValue Object to represent default value in case of value is null
* @return Object which paired with the key as value
*/
public Object get(String key, Object defaultValue) {
Object value = keyValues.get(key);
if(value!=null)
return value;
return defaultValue;
}
/**
* Removes key-value pair from the session for the provided key. Calls TGSessionListener.keyRemove prior to remove from session.
*
* @param key Non-null String to represent as key
*/
public void remove(String key) {
for (TGSessionListener listener : listeners)
listener.keyRemove(key);
keyValues.remove(key);
}
/**
* Checks key-value pair is available in the session.
*
* @param key Non-null String to represent as key
* @return "true" if key is
*/
public boolean hasKey(String key) {
return keyValues.containsKey(key);
}
/**
* Collects all keys from all the key-value pairs.
*
* @return Set of keys.
*/
public Set<String> keys() {
return keyValues.keySet();
}
/* * * Session Listener * * */
/**
* Adds given session listener to the collection of listeners.
*
* @param sessionListener TGSessionListener
*/
public void addSessionListener(TGSessionListener sessionListener) {
listeners.add(sessionListener);
}
/**
* Removes provided session listener from the collection of listeners.
*
* @param sessionListener TGSessionListener
*/
public void removeSessionListener(TGSessionListener sessionListener) {
listeners.remove(sessionListener);
}
/**
* Removes all Session listeners.
*/
public void removeAllSessionListeners() {
listeners.clear();
}
/**
* Gives total counts of listeners
*
* @return count of session listeners
*/
public int countSessionListeners() {
return listeners.size();
}
/* * * Object Methods * * */
@Override
/**
* Compares this instance with the specified object and indicates if they are equal.
*/
public boolean equals(Object object) {
if (object == null) return false;
if (!(object instanceof TGSession)) return false;
TGSession other = (TGSession) object;
if (other.id() != id()) return false;
return true;
}
@Override
/**
* Returns an integer hash code for this object.
*/
public int hashCode() {
return Long.valueOf(id()).hashCode();
}
}
| apache-2.0 |
terrancesnyder/solr-analytics | lucene/analysis/common/src/java/org/apache/lucene/analysis/standard/UAX29URLEmailTokenizerImpl.java | 234065 | /* The following code was generated by JFlex 1.5.0-SNAPSHOT on 9/19/12 7:40 PM */
package org.apache.lucene.analysis.standard;
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import org.apache.lucene.analysis.tokenattributes.CharTermAttribute;
/**
* This class implements Word Break rules from the Unicode Text Segmentation
* algorithm, as specified in
* <a href="http://unicode.org/reports/tr29/">Unicode Standard Annex #29</a>
* URLs and email addresses are also tokenized according to the relevant RFCs.
* <p/>
* Tokens produced are of the following types:
* <ul>
* <li><ALPHANUM>: A sequence of alphabetic and numeric characters</li>
* <li><NUM>: A number</li>
* <li><URL>: A URL</li>
* <li><EMAIL>: An email address</li>
* <li><SOUTHEAST_ASIAN>: A sequence of characters from South and Southeast
* Asian languages, including Thai, Lao, Myanmar, and Khmer</li>
* <li><IDEOGRAPHIC>: A single CJKV ideographic character</li>
* <li><HIRAGANA>: A single hiragana character</li>
* </ul>
*/
public final class UAX29URLEmailTokenizerImpl implements StandardTokenizerInterface {
/** This character denotes the end of file */
public static final int YYEOF = -1;
/** initial size of the lookahead buffer */
private static final int ZZ_BUFFERSIZE = 4096;
/** lexical states */
public static final int YYINITIAL = 0;
/**
* ZZ_LEXSTATE[l] is the state in the DFA for the lexical state l
* ZZ_LEXSTATE[l+1] is the state in the DFA for the lexical state l
* at the beginning of a line
* l is of the form l = 2*k, k a non negative integer
*/
private static final int ZZ_LEXSTATE[] = {
0, 0
};
/**
* Translates characters to character classes
*/
private static final String ZZ_CMAP_PACKED =
"\1\301\10\277\2\301\2\277\1\301\23\277\1\302\1\276\1\271\1\302"+
"\1\262\1\260\1\265\2\263\2\302\1\264\1\244\1\211\1\270\1\245"+
"\1\250\1\256\1\251\1\254\1\246\1\247\1\253\1\255\1\252\1\257"+
"\1\274\1\277\1\275\1\277\1\267\1\266\1\212\1\236\1\213\1\214"+
"\1\215\1\220\1\221\1\237\1\222\1\240\1\243\1\223\1\224\1\225"+
"\1\217\1\227\1\226\1\216\1\230\1\231\1\232\1\241\1\233\1\234"+
"\1\242\1\235\1\272\1\300\1\273\1\303\1\261\1\303\1\212\1\236"+
"\1\213\1\214\1\215\1\220\1\221\1\237\1\222\1\240\1\243\1\223"+
"\1\224\1\225\1\217\1\227\1\226\1\216\1\230\1\231\1\232\1\241"+
"\1\233\1\234\1\242\1\235\3\303\1\260\1\304\52\0\1\174\2\0"+
"\1\175\7\0\1\174\1\0\1\200\2\0\1\174\5\0\27\174\1\0"+
"\37\174\1\0\u01ca\174\4\0\14\174\16\0\5\174\7\0\1\174\1\0"+
"\1\174\21\0\160\175\5\174\1\0\2\174\2\0\4\174\1\201\7\0"+
"\1\174\1\200\3\174\1\0\1\174\1\0\24\174\1\0\123\174\1\0"+
"\213\174\1\0\7\175\236\174\11\0\46\174\2\0\1\174\7\0\47\174"+
"\1\0\1\201\7\0\55\175\1\0\1\175\1\0\2\175\1\0\2\175"+
"\1\0\1\175\10\0\33\174\5\0\4\174\1\200\13\0\5\175\7\0"+
"\2\201\2\0\13\175\5\0\53\174\25\175\12\176\1\0\1\176\1\201"+
"\1\0\2\174\1\175\143\174\1\0\1\174\7\175\1\175\1\0\6\175"+
"\2\174\2\175\1\0\4\175\2\174\12\176\3\174\2\0\1\174\17\0"+
"\1\175\1\174\1\175\36\174\33\175\2\0\131\174\13\175\1\174\16\0"+
"\12\176\41\174\11\175\2\174\2\0\1\201\1\0\1\174\5\0\26\174"+
"\4\175\1\174\11\175\1\174\3\175\1\174\5\175\22\0\31\174\3\175"+
"\104\0\1\174\1\0\13\174\67\0\33\175\1\0\4\175\66\174\3\175"+
"\1\174\22\175\1\174\7\175\12\174\2\175\2\0\12\176\1\0\7\174"+
"\1\0\7\174\1\0\3\175\1\0\10\174\2\0\2\174\2\0\26\174"+
"\1\0\7\174\1\0\1\174\3\0\4\174\2\0\1\175\1\174\7\175"+
"\2\0\2\175\2\0\3\175\1\174\10\0\1\175\4\0\2\174\1\0"+
"\3\174\2\175\2\0\12\176\2\174\17\0\3\175\1\0\6\174\4\0"+
"\2\174\2\0\26\174\1\0\7\174\1\0\2\174\1\0\2\174\1\0"+
"\2\174\2\0\1\175\1\0\5\175\4\0\2\175\2\0\3\175\3\0"+
"\1\175\7\0\4\174\1\0\1\174\7\0\12\176\2\175\3\174\1\175"+
"\13\0\3\175\1\0\11\174\1\0\3\174\1\0\26\174\1\0\7\174"+
"\1\0\2\174\1\0\5\174\2\0\1\175\1\174\10\175\1\0\3\175"+
"\1\0\3\175\2\0\1\174\17\0\2\174\2\175\2\0\12\176\21\0"+
"\3\175\1\0\10\174\2\0\2\174\2\0\26\174\1\0\7\174\1\0"+
"\2\174\1\0\5\174\2\0\1\175\1\174\7\175\2\0\2\175\2\0"+
"\3\175\10\0\2\175\4\0\2\174\1\0\3\174\2\175\2\0\12\176"+
"\1\0\1\174\20\0\1\175\1\174\1\0\6\174\3\0\3\174\1\0"+
"\4\174\3\0\2\174\1\0\1\174\1\0\2\174\3\0\2\174\3\0"+
"\3\174\3\0\14\174\4\0\5\175\3\0\3\175\1\0\4\175\2\0"+
"\1\174\6\0\1\175\16\0\12\176\21\0\3\175\1\0\10\174\1\0"+
"\3\174\1\0\27\174\1\0\12\174\1\0\5\174\3\0\1\174\7\175"+
"\1\0\3\175\1\0\4\175\7\0\2\175\1\0\2\174\6\0\2\174"+
"\2\175\2\0\12\176\22\0\2\175\1\0\10\174\1\0\3\174\1\0"+
"\27\174\1\0\12\174\1\0\5\174\2\0\1\175\1\174\7\175\1\0"+
"\3\175\1\0\4\175\7\0\2\175\7\0\1\174\1\0\2\174\2\175"+
"\2\0\12\176\1\0\2\174\17\0\2\175\1\0\10\174\1\0\3\174"+
"\1\0\51\174\2\0\1\174\7\175\1\0\3\175\1\0\4\175\1\174"+
"\10\0\1\175\10\0\2\174\2\175\2\0\12\176\12\0\6\174\2\0"+
"\2\175\1\0\22\174\3\0\30\174\1\0\11\174\1\0\1\174\2\0"+
"\7\174\3\0\1\175\4\0\6\175\1\0\1\175\1\0\10\175\22\0"+
"\2\175\15\0\60\204\1\205\2\204\7\205\5\0\7\204\10\205\1\0"+
"\12\176\47\0\2\204\1\0\1\204\2\0\2\204\1\0\1\204\2\0"+
"\1\204\6\0\4\204\1\0\7\204\1\0\3\204\1\0\1\204\1\0"+
"\1\204\2\0\2\204\1\0\4\204\1\205\2\204\6\205\1\0\2\205"+
"\1\204\2\0\5\204\1\0\1\204\1\0\6\205\2\0\12\176\2\0"+
"\4\204\40\0\1\174\27\0\2\175\6\0\12\176\13\0\1\175\1\0"+
"\1\175\1\0\1\175\4\0\2\175\10\174\1\0\44\174\4\0\24\175"+
"\1\0\2\175\5\174\13\175\1\0\44\175\11\0\1\175\71\0\53\204"+
"\24\205\1\204\12\176\6\0\6\204\4\205\4\204\3\205\1\204\3\205"+
"\2\204\7\205\3\204\4\205\15\204\14\205\1\204\1\205\12\176\4\205"+
"\2\204\46\174\1\0\1\174\5\0\1\174\2\0\53\174\1\0\4\174"+
"\u0100\210\111\174\1\0\4\174\2\0\7\174\1\0\1\174\1\0\4\174"+
"\2\0\51\174\1\0\4\174\2\0\41\174\1\0\4\174\2\0\7\174"+
"\1\0\1\174\1\0\4\174\2\0\17\174\1\0\71\174\1\0\4\174"+
"\2\0\103\174\2\0\3\175\40\0\20\174\20\0\125\174\14\0\u026c\174"+
"\2\0\21\174\1\0\32\174\5\0\113\174\3\0\3\174\17\0\15\174"+
"\1\0\4\174\3\175\13\0\22\174\3\175\13\0\22\174\2\175\14\0"+
"\15\174\1\0\3\174\1\0\2\175\14\0\64\204\40\205\3\0\1\204"+
"\4\0\1\204\1\205\2\0\12\176\41\0\3\175\2\0\12\176\6\0"+
"\130\174\10\0\51\174\1\175\1\174\5\0\106\174\12\0\35\174\3\0"+
"\14\175\4\0\14\175\12\0\12\176\36\204\2\0\5\204\13\0\54\204"+
"\4\0\21\205\7\204\2\205\6\0\12\176\1\204\3\0\2\204\40\0"+
"\27\174\5\175\4\0\65\204\12\205\1\0\35\205\2\0\1\175\12\176"+
"\6\0\12\176\6\0\16\204\122\0\5\175\57\174\21\175\7\174\4\0"+
"\12\176\21\0\11\175\14\0\3\175\36\174\15\175\2\174\12\176\54\174"+
"\16\175\14\0\44\174\24\175\10\0\12\176\3\0\3\174\12\176\44\174"+
"\122\0\3\175\1\0\25\175\4\174\1\175\4\174\3\175\2\174\11\0"+
"\300\174\47\175\25\0\4\175\u0116\174\2\0\6\174\2\0\46\174\2\0"+
"\6\174\2\0\10\174\1\0\1\174\1\0\1\174\1\0\1\174\1\0"+
"\37\174\2\0\65\174\1\0\7\174\1\0\1\174\3\0\3\174\1\0"+
"\7\174\3\0\4\174\2\0\6\174\4\0\15\174\5\0\3\174\1\0"+
"\7\174\17\0\2\175\2\175\10\0\2\202\12\0\1\202\2\0\1\200"+
"\2\0\5\175\20\0\2\203\3\0\1\201\17\0\1\203\13\0\5\175"+
"\5\0\6\175\1\0\1\174\15\0\1\174\20\0\15\174\63\0\41\175"+
"\21\0\1\174\4\0\1\174\2\0\12\174\1\0\1\174\3\0\5\174"+
"\6\0\1\174\1\0\1\174\1\0\1\174\1\0\4\174\1\0\13\174"+
"\2\0\4\174\5\0\5\174\4\0\1\174\21\0\51\174\u032d\0\64\174"+
"\u0716\0\57\174\1\0\57\174\1\0\205\174\6\0\4\174\3\175\2\174"+
"\14\0\46\174\1\0\1\174\5\0\1\174\2\0\70\174\7\0\1\174"+
"\17\0\1\175\27\174\11\0\7\174\1\0\7\174\1\0\7\174\1\0"+
"\7\174\1\0\7\174\1\0\7\174\1\0\7\174\1\0\7\174\1\0"+
"\40\175\57\0\1\174\120\0\32\206\1\0\131\206\14\0\326\206\57\0"+
"\1\174\1\0\1\206\31\0\11\206\4\175\2\175\1\0\5\177\2\0"+
"\3\206\1\174\1\174\4\0\126\207\2\0\2\175\2\177\3\207\133\177"+
"\1\0\4\177\5\0\51\174\3\0\136\210\21\0\33\174\65\0\20\177"+
"\37\0\101\0\37\0\121\0\57\177\1\0\130\177\250\0\u19b6\206\112\0"+
"\u51cd\206\63\0\u048d\174\103\0\56\174\2\0\u010d\174\3\0\20\174\12\176"+
"\2\174\24\0\57\174\4\175\1\0\12\175\1\0\31\174\7\0\1\175"+
"\120\174\2\175\45\0\11\174\2\0\147\174\2\0\4\174\1\0\4\174"+
"\14\0\13\174\115\0\12\174\1\175\3\174\1\175\4\174\1\175\27\174"+
"\5\175\30\0\64\174\14\0\2\175\62\174\21\175\13\0\12\176\6\0"+
"\22\175\6\174\3\0\1\174\4\0\12\176\34\174\10\175\2\0\27\174"+
"\15\175\14\0\35\210\3\0\4\175\57\174\16\175\16\0\1\174\12\176"+
"\46\0\51\174\16\175\11\0\3\174\1\175\10\174\2\175\2\0\12\176"+
"\6\0\33\204\1\205\4\0\60\204\1\205\1\204\3\205\2\204\2\205"+
"\5\204\2\205\1\204\1\205\1\204\30\0\5\204\13\174\5\175\2\0"+
"\3\174\2\175\12\0\6\174\2\0\6\174\2\0\6\174\11\0\7\174"+
"\1\0\7\174\221\0\43\174\10\175\1\0\2\175\2\0\12\176\6\0"+
"\u2ba4\210\14\0\27\210\4\0\61\210\4\0\1\44\1\40\1\67\1\64"+
"\1\33\1\30\2\0\1\24\1\21\2\0\1\17\1\15\14\0\1\3"+
"\1\6\20\0\1\156\7\0\1\111\1\10\5\0\1\1\1\172\3\0"+
"\1\163\1\163\1\163\1\163\1\163\1\163\1\163\1\163\1\163\1\163"+
"\1\163\1\163\1\163\1\163\1\163\1\163\1\163\1\163\1\163\1\163"+
"\1\163\1\163\1\163\1\163\1\163\1\163\1\163\1\163\1\163\1\163"+
"\1\163\1\163\1\163\1\163\1\163\1\163\1\163\1\163\1\163\1\163"+
"\1\163\1\164\1\163\1\163\1\163\1\170\1\166\17\0\1\160\u02c1\0"+
"\1\114\277\0\1\157\1\115\1\16\3\167\2\62\1\167\1\62\2\167"+
"\1\36\21\167\2\106\7\117\1\116\7\117\7\102\1\37\1\102\1\130"+
"\2\66\1\65\1\130\1\66\1\65\10\130\2\107\5\103\2\75\5\103"+
"\1\22\10\53\5\23\3\41\12\147\20\41\3\63\32\43\1\42\2\61"+
"\2\154\1\155\2\154\2\155\2\154\1\155\3\61\1\60\2\61\12\110"+
"\1\126\1\50\1\45\1\110\6\50\1\45\13\50\31\61\7\50\12\150"+
"\1\50\5\13\3\127\3\101\1\100\4\101\2\100\10\101\1\100\7\35"+
"\1\34\2\35\7\101\16\127\1\141\4\152\1\4\4\151\1\4\5\140"+
"\1\137\1\140\3\137\7\140\1\137\23\140\5\113\3\140\6\113\2\113"+
"\6\112\5\112\3\134\2\101\7\133\36\101\4\133\5\101\5\127\6\125"+
"\2\127\1\125\4\35\13\136\12\151\26\136\15\13\1\135\2\13\1\173"+
"\3\142\1\13\2\142\5\161\4\142\4\162\1\161\3\162\1\161\5\162"+
"\2\70\1\73\2\70\1\73\1\70\2\73\1\70\1\73\12\70\1\73"+
"\4\5\1\144\1\143\1\145\1\12\3\165\1\145\2\165\1\131\2\132"+
"\2\165\1\12\1\165\1\12\1\165\1\12\1\165\3\12\1\165\2\12"+
"\1\165\1\12\2\165\1\12\1\165\1\12\1\165\1\12\1\165\1\12"+
"\1\165\1\12\1\76\2\72\1\76\1\72\2\76\4\72\1\76\7\72"+
"\1\76\4\72\1\76\4\72\1\165\1\12\1\165\12\31\1\57\21\31"+
"\1\57\3\32\1\57\3\31\1\57\1\31\2\2\2\31\1\57\15\124"+
"\4\47\4\54\1\146\1\56\10\146\7\54\6\165\4\25\1\27\37\25"+
"\1\27\4\25\25\105\1\171\11\105\21\26\5\105\1\7\12\55\5\105"+
"\6\104\4\76\1\77\1\26\5\123\12\121\17\123\1\74\3\71\14\120"+
"\1\11\11\46\1\52\5\46\4\122\13\51\2\14\11\46\1\52\31\46"+
"\1\52\4\11\4\46\2\52\2\153\1\20\5\153\52\20\u1900\0\u016e\206"+
"\2\0\152\206\46\0\7\174\14\0\5\174\5\0\1\174\1\175\12\174"+
"\1\0\15\174\1\0\5\174\1\0\1\174\1\0\2\174\1\0\2\174"+
"\1\0\154\174\41\0\u016b\174\22\0\100\174\2\0\66\174\50\0\14\174"+
"\4\0\20\175\1\201\2\0\1\200\1\201\13\0\7\175\14\0\2\203"+
"\30\0\3\203\1\201\1\0\1\202\1\0\1\201\1\200\32\0\5\174"+
"\1\0\207\174\2\0\1\175\7\0\1\202\4\0\1\201\1\0\1\202"+
"\1\0\12\176\1\200\1\201\5\0\32\174\4\0\1\203\1\0\32\174"+
"\13\0\70\177\2\175\37\210\3\0\6\210\2\0\6\210\2\0\6\210"+
"\2\0\3\210\34\0\3\175\4\0";
/**
* Translates characters to character classes
*/
private static final char [] ZZ_CMAP = zzUnpackCMap(ZZ_CMAP_PACKED);
/**
* Translates DFA states to action switch labels.
*/
private static final int [] ZZ_ACTION = zzUnpackAction();
private static final String ZZ_ACTION_PACKED_0 =
"\1\0\26\1\1\2\1\3\1\4\1\1\1\5\1\6"+
"\1\7\1\10\1\1\4\2\3\3\3\1\20\0\1\2"+
"\1\0\1\2\12\0\1\3\21\0\1\2\32\0\2\2"+
"\1\0\4\2\1\0\1\3\1\0\2\3\1\2\1\3"+
"\67\0\32\2\3\0\5\2\32\0\4\3\21\0\1\11"+
"\1\0\6\12\3\2\2\12\1\2\4\12\2\2\2\12"+
"\2\0\1\2\1\0\2\2\6\12\3\0\2\12\1\0"+
"\4\12\2\0\2\12\1\0\2\3\10\0\1\12\32\0"+
"\1\12\1\0\3\12\6\2\1\0\1\2\2\0\2\2"+
"\1\0\1\12\10\0\3\3\15\0\3\12\6\11\3\0"+
"\2\11\1\0\4\11\2\0\2\11\2\12\1\0\2\12"+
"\1\0\2\12\1\0\1\12\2\2\3\0\1\2\4\0"+
"\2\3\20\0\1\11\10\0\1\12\3\0\1\2\40\0"+
"\3\12\23\0\1\12\40\0\1\12\4\0\1\12\6\0"+
"\1\2\2\0\1\12\4\0\2\12\43\0\1\12\57\0"+
"\2\2\10\0\1\12\53\0\1\12\72\0\1\12\150\0"+
"\1\13\1\0\1\12\177\0\1\12\132\0\6\13\3\0"+
"\2\13\1\0\4\13\2\0\2\13\1\12\112\0\1\13"+
"\10\0\1\12\64\0\1\12\u01eb\0";
private static int [] zzUnpackAction() {
int [] result = new int[1750];
int offset = 0;
offset = zzUnpackAction(ZZ_ACTION_PACKED_0, offset, result);
return result;
}
private static int zzUnpackAction(String packed, int offset, int [] result) {
int i = 0; /* index in packed string */
int j = offset; /* index in unpacked array */
int l = packed.length();
while (i < l) {
int count = packed.charAt(i++);
int value = packed.charAt(i++);
do result[j++] = value; while (--count > 0);
}
return j;
}
/**
* Translates a state to a row index in the transition table
*/
private static final int [] ZZ_ROWMAP = zzUnpackRowMap();
private static final String ZZ_ROWMAP_PACKED_0 =
"\0\0\0\305\0\u018a\0\u024f\0\u0314\0\u03d9\0\u049e\0\u0563"+
"\0\u0628\0\u06ed\0\u07b2\0\u0877\0\u093c\0\u0a01\0\u0ac6\0\u0b8b"+
"\0\u0c50\0\u0d15\0\u0dda\0\u0e9f\0\u0f64\0\u1029\0\u10ee\0\u11b3"+
"\0\u1278\0\u133d\0\u1402\0\u14c7\0\u158c\0\u1651\0\u1716\0\u17db"+
"\0\u18a0\0\u1965\0\u1a2a\0\u1aef\0\u1bb4\0\u1c79\0\u1d3e\0\u1e03"+
"\0\u1ec8\0\u1f8d\0\u018a\0\u024f\0\u2052\0\u2117\0\u049e\0\u0563"+
"\0\u0628\0\u06ed\0\u21dc\0\u22a1\0\u2366\0\u242b\0\u0ac6\0\u24f0"+
"\0\u25b5\0\u267a\0\u273f\0\u2804\0\u28c9\0\u298e\0\u03d9\0\u2a53"+
"\0\u2b18\0\u093c\0\u2bdd\0\u2ca2\0\u2d67\0\u2e2c\0\u2ef1\0\u2fb6"+
"\0\u307b\0\u3140\0\u3205\0\u32ca\0\u338f\0\u3454\0\u3519\0\u35de"+
"\0\u36a3\0\u3768\0\u382d\0\u38f2\0\u39b7\0\u3a7c\0\u3b41\0\u3c06"+
"\0\u1402\0\u3ccb\0\u3d90\0\u3e55\0\u3f1a\0\u3fdf\0\u40a4\0\u4169"+
"\0\u422e\0\u42f3\0\u43b8\0\u447d\0\u4542\0\u4607\0\u46cc\0\u4791"+
"\0\u4856\0\u491b\0\u49e0\0\u4aa5\0\u4b6a\0\u4c2f\0\u4cf4\0\u4db9"+
"\0\u17db\0\u4e7e\0\u4f43\0\u5008\0\u50cd\0\u5192\0\u5257\0\u531c"+
"\0\u53e1\0\u54a6\0\u556b\0\u5630\0\u56f5\0\u57ba\0\u587f\0\u5944"+
"\0\u5a09\0\u5ace\0\u1e03\0\u5b93\0\u5c58\0\u1f8d\0\u5d1d\0\u5de2"+
"\0\u5ea7\0\u5f6c\0\u6031\0\u60f6\0\u61bb\0\u6280\0\u6345\0\u640a"+
"\0\u64cf\0\u6594\0\u6659\0\u671e\0\u67e3\0\u68a8\0\u696d\0\u6a32"+
"\0\u6af7\0\u6bbc\0\u6c81\0\u6d46\0\u6e0b\0\u6ed0\0\u6f95\0\u705a"+
"\0\u711f\0\u71e4\0\u72a9\0\u736e\0\u7433\0\u74f8\0\u75bd\0\u7682"+
"\0\u7747\0\u780c\0\u78d1\0\u7996\0\u7a5b\0\u7b20\0\u7be5\0\u7caa"+
"\0\u7d6f\0\u7e34\0\u7ef9\0\u7fbe\0\u8083\0\u8148\0\u820d\0\u82d2"+
"\0\u8397\0\u845c\0\u8521\0\u85e6\0\u86ab\0\u8770\0\u8835\0\u88fa"+
"\0\u89bf\0\u8a84\0\u8b49\0\u8c0e\0\u8cd3\0\u8d98\0\u8e5d\0\u8f22"+
"\0\u8fe7\0\u90ac\0\u9171\0\u9236\0\u92fb\0\u93c0\0\u9485\0\u954a"+
"\0\u960f\0\u96d4\0\u9799\0\u985e\0\u9923\0\u99e8\0\u9aad\0\u9b72"+
"\0\u9c37\0\u9cfc\0\u9dc1\0\u9e86\0\u9f4b\0\ua010\0\ua0d5\0\ua19a"+
"\0\ua25f\0\ua324\0\ua3e9\0\ua4ae\0\ua573\0\ua638\0\ua6fd\0\ua7c2"+
"\0\ua887\0\ua94c\0\uaa11\0\uaad6\0\uab9b\0\uac60\0\uad25\0\uadea"+
"\0\uaeaf\0\uaf74\0\ub039\0\ub0fe\0\ub1c3\0\ub288\0\ub34d\0\ub412"+
"\0\ub4d7\0\ub59c\0\ub661\0\ub726\0\ub7eb\0\ub8b0\0\ub975\0\uba3a"+
"\0\ubaff\0\ubbc4\0\ubc89\0\ubd4e\0\ube13\0\ubed8\0\ubf9d\0\uc062"+
"\0\uc127\0\uc1ec\0\305\0\uc2b1\0\uc376\0\uc43b\0\uc500\0\uc5c5"+
"\0\uc68a\0\uc74f\0\uc814\0\uc8d9\0\uc99e\0\uca63\0\ucb28\0\ucbed"+
"\0\uccb2\0\ucd77\0\uce3c\0\ucf01\0\ucfc6\0\ud08b\0\ud150\0\ud215"+
"\0\ud2da\0\ud39f\0\ud464\0\ud529\0\ud5ee\0\ud6b3\0\ud778\0\ud83d"+
"\0\ud902\0\ud9c7\0\uda8c\0\udb51\0\udc16\0\udcdb\0\udda0\0\ude65"+
"\0\udf2a\0\udfef\0\ue0b4\0\ue179\0\ue23e\0\ue303\0\ue3c8\0\ue48d"+
"\0\ue552\0\ue617\0\ue6dc\0\ue7a1\0\ue866\0\ue92b\0\ue9f0\0\ueab5"+
"\0\ueb7a\0\uec3f\0\ued04\0\uedc9\0\uee8e\0\uef53\0\uf018\0\uf0dd"+
"\0\uf1a2\0\uf267\0\uf32c\0\uf3f1\0\uf4b6\0\uf57b\0\uf640\0\uf705"+
"\0\uf7ca\0\uf88f\0\uf954\0\ufa19\0\ufade\0\ufba3\0\ufc68\0\ufd2d"+
"\0\ufdf2\0\ufeb7\0\uff7c\1\101\1\u0106\1\u01cb\1\u0290\1\u0355"+
"\1\u041a\1\u04df\1\u05a4\1\u0669\1\u072e\1\u07f3\1\u08b8\1\u097d"+
"\1\u0a42\1\u0b07\1\u0bcc\1\u0c91\1\u0d56\1\u0e1b\1\u0ee0\1\u0fa5"+
"\1\u106a\1\u112f\1\u11f4\1\u12b9\1\u137e\1\u1443\1\u1508\1\u15cd"+
"\1\u1692\1\u1757\1\u181c\1\u18e1\1\u19a6\1\u1a6b\1\u1b30\1\u1bf5"+
"\1\u1cba\1\u1d7f\1\u1e44\1\u1f09\1\u1fce\1\u2093\1\u2158\1\u221d"+
"\1\u22e2\1\u23a7\1\u246c\1\u2531\1\u25f6\1\u26bb\1\u2780\1\u2845"+
"\1\u290a\1\u29cf\1\u2a94\1\u2b59\1\u2c1e\1\u2ce3\1\u2da8\1\u2e6d"+
"\1\u2f32\1\u2ff7\1\u30bc\1\u3181\1\u3246\1\u330b\1\u33d0\1\u3495"+
"\1\u355a\1\u361f\1\u36e4\1\u37a9\1\u386e\1\u3933\1\u39f8\1\u3abd"+
"\1\u3b82\1\u3c47\1\u3d0c\1\u3dd1\1\u3e96\1\u3f5b\1\u4020\1\u40e5"+
"\1\u41aa\1\u426f\1\u4334\1\u43f9\1\u44be\1\u4583\1\u4648\1\u470d"+
"\1\u47d2\1\u4897\1\u495c\1\u4a21\1\u4ae6\1\u4bab\1\u4c70\1\u4d35"+
"\1\u4dfa\1\u4ebf\1\u4f84\1\u5049\1\u510e\1\u51d3\1\u5298\1\u535d"+
"\0\uc127\1\u5422\1\u54e7\1\u55ac\1\u5671\1\u5736\1\u57fb\1\u58c0"+
"\1\u5985\1\u5a4a\1\u5b0f\1\u5bd4\1\u5c99\1\u5d5e\1\u5e23\1\u5ee8"+
"\1\u5fad\1\u6072\1\u6137\1\u61fc\1\u62c1\1\u6386\1\u644b\1\u6510"+
"\1\u65d5\1\u669a\1\u675f\1\u6824\1\u68e9\1\u69ae\1\u6a73\1\u6b38"+
"\1\u6bfd\1\u6cc2\1\u6d87\1\u6e4c\1\u6f11\1\u6fd6\1\u709b\1\u7160"+
"\1\u7225\1\u72ea\1\u73af\1\u7474\1\u7539\1\u75fe\1\u76c3\1\u7788"+
"\1\u784d\1\u7912\1\u79d7\1\u7a9c\1\u7b61\1\u7c26\1\u7ceb\1\u7db0"+
"\1\u7e75\1\u7f3a\1\u7fff\1\u80c4\1\u8189\1\u824e\1\u8313\1\u83d8"+
"\1\u849d\1\u8562\1\u8627\1\u86ec\1\u87b1\1\u8876\1\u893b\1\u8a00"+
"\1\u8ac5\1\u8b8a\1\u8c4f\1\u8d14\1\u8dd9\1\u8e9e\1\u8f63\1\u9028"+
"\1\u90ed\1\u91b2\1\u9277\1\u933c\1\u9401\1\u94c6\1\u958b\1\u9650"+
"\1\u9715\1\u97da\1\u989f\1\u9964\1\u9a29\1\u9aee\1\u9bb3\1\u9c78"+
"\1\u9d3d\1\u9e02\1\u9ec7\1\u9f8c\1\ua051\1\ua116\1\ua1db\1\ua2a0"+
"\1\ua365\1\ua42a\1\ua4ef\1\ua5b4\1\ua679\1\ua73e\1\ua803\1\ua8c8"+
"\1\ua98d\1\uaa52\1\uab17\1\uabdc\1\uaca1\1\uad66\1\uae2b\1\uaef0"+
"\0\u1ec8\1\uafb5\1\ub07a\1\ub13f\1\ub204\1\ub2c9\1\ub38e\1\ub453"+
"\1\ub518\1\ub5dd\1\ub6a2\1\ub767\1\ub82c\1\ub8f1\1\ub9b6\1\uba7b"+
"\1\ubb40\1\ubc05\1\ubcca\1\ubd8f\1\ube54\1\ubf19\1\ubfde\1\uc0a3"+
"\1\uc168\1\uc22d\1\uc2f2\1\uc3b7\1\uc47c\1\uc541\1\uc606\1\uc6cb"+
"\1\uc790\1\uc855\1\uc91a\1\uc9df\1\ucaa4\1\ucb69\1\ucc2e\1\uccf3"+
"\1\ucdb8\1\uce7d\1\ucf42\1\ud007\1\ud0cc\1\ud191\1\ud256\1\ud31b"+
"\1\ud3e0\1\ud4a5\1\ud56a\1\ud62f\1\ud6f4\1\ud7b9\1\ud87e\1\ud943"+
"\1\uda08\1\udacd\1\udb92\1\udc57\1\udd1c\1\udde1\1\udea6\1\udf6b"+
"\1\ue030\1\ue0f5\1\ue1ba\1\ue27f\1\ue344\1\ue409\1\ue4ce\1\ue593"+
"\1\ue658\1\ue71d\1\ue7e2\1\ue8a7\1\ue96c\1\uea31\1\ueaf6\1\uebbb"+
"\1\uec80\1\ued45\1\uee0a\1\ueecf\1\uef94\1\uf059\1\uf11e\1\uf1e3"+
"\1\uf2a8\1\uf36d\1\uf432\1\uf4f7\1\uf5bc\1\uf681\1\uf746\1\uf80b"+
"\1\uf8d0\1\uf995\1\ufa5a\1\ufb1f\1\ufbe4\1\ufca9\1\ufd6e\1\ufe33"+
"\1\ufef8\1\uffbd\2\202\2\u0147\2\u020c\2\u02d1\2\u0396\2\u045b"+
"\2\u0520\2\u05e5\2\u06aa\2\u076f\2\u0834\2\u08f9\2\u09be\2\u0a83"+
"\2\u0b48\2\u0c0d\2\u0cd2\2\u0d97\2\u0e5c\2\u0f21\2\u0fe6\2\u10ab"+
"\2\u1170\2\u1235\2\u12fa\2\u13bf\2\u1484\2\u1549\2\u160e\2\u16d3"+
"\2\u1798\2\u185d\2\u1922\2\u19e7\2\u1aac\2\u1b71\2\u1c36\2\u1cfb"+
"\2\u1dc0\2\u1e85\2\u1f4a\2\u200f\2\u20d4\2\u2199\2\u225e\2\u2323"+
"\2\u23e8\2\u24ad\2\u2572\2\u2637\2\u26fc\2\u27c1\2\u2886\2\u294b"+
"\2\u2a10\2\u2ad5\2\u2b9a\2\u2c5f\2\u2d24\2\u2de9\2\u2eae\2\u2f73"+
"\2\u3038\2\u30fd\2\u31c2\2\u3287\2\u334c\2\u3411\2\u34d6\2\u359b"+
"\2\u3660\2\u3725\2\u37ea\2\u38af\2\u3974\2\u3a39\2\u3afe\2\u3bc3"+
"\2\u3c88\2\u3d4d\2\u3e12\2\u3ed7\2\u3f9c\2\u4061\2\u4126\2\u41eb"+
"\2\u42b0\2\u4375\2\u443a\2\u44ff\2\u45c4\2\u4689\2\u474e\2\u4813"+
"\2\u48d8\2\u499d\2\u4a62\2\u4b27\2\u4bec\2\u4cb1\2\u4d76\2\u4e3b"+
"\2\u4f00\2\u4fc5\2\u508a\2\u514f\2\u5214\2\u52d9\2\u539e\2\u5463"+
"\2\u5528\2\u55ed\2\u56b2\2\u5777\2\u583c\2\u5901\2\u59c6\2\u5a8b"+
"\2\u5b50\2\u5c15\2\u5cda\2\u5d9f\2\u5e64\2\u5f29\2\u5fee\2\u60b3"+
"\2\u6178\2\u623d\2\u6302\2\u63c7\2\u648c\2\u6551\2\u6616\2\u66db"+
"\2\u67a0\2\u6865\2\u692a\2\u69ef\2\u6ab4\2\u6b79\2\u6c3e\2\u6d03"+
"\2\u6dc8\2\u6e8d\2\u6f52\2\u7017\2\u70dc\2\u71a1\2\u7266\2\u732b"+
"\2\u73f0\2\u74b5\2\u757a\2\u763f\2\u7704\2\u77c9\2\u788e\2\u7953"+
"\2\u7a18\2\u7add\2\u7ba2\2\u7c67\2\u7d2c\2\u7df1\2\u7eb6\2\u7f7b"+
"\2\u8040\2\u8105\2\u81ca\2\u828f\2\u8354\2\u8419\2\u84de\2\u85a3"+
"\2\u8668\2\u872d\2\u87f2\2\u88b7\2\u897c\2\u8a41\2\u8b06\2\u8bcb"+
"\2\u8c90\2\u8d55\2\u8e1a\2\u8edf\2\u8fa4\2\u9069\2\u912e\2\u91f3"+
"\2\u92b8\2\u937d\2\u9442\2\u9507\2\u95cc\2\u9691\2\u9756\2\u981b"+
"\0\305\2\u98e0\2\u99a5\2\u9a6a\2\u9b2f\2\u9bf4\2\u9cb9\2\u9d7e"+
"\2\u9e43\2\u9f08\2\u9fcd\2\ua092\2\ua157\2\ua21c\2\ua2e1\2\ua3a6"+
"\2\ua46b\2\ua530\2\ua5f5\2\ua6ba\2\ua77f\2\ua844\2\ua909\2\ua9ce"+
"\2\uaa93\2\uab58\2\uac1d\2\uace2\2\uada7\2\uae6c\2\uaf31\2\uaff6"+
"\2\ub0bb\2\ub180\2\ub245\2\ub30a\2\ub3cf\2\ub494\2\ub559\2\ub61e"+
"\2\ub6e3\2\ub7a8\2\ub86d\2\ub932\2\ub9f7\2\ubabc\2\ubb81\2\ubc46"+
"\2\ubd0b\2\ubdd0\2\ube95\2\ubf5a\2\uc01f\2\uc0e4\2\uc1a9\2\uc26e"+
"\2\uc333\2\uc3f8\2\uc4bd\2\uc582\2\uc647\2\uc70c\2\uc7d1\2\uc896"+
"\2\uc95b\2\uca20\2\ucae5\2\ucbaa\2\ucc6f\2\ucd34\2\ucdf9\2\ucebe"+
"\2\ucf83\2\ud048\2\ud10d\2\ud1d2\2\ud297\2\ud35c\2\ud421\2\ud4e6"+
"\2\ud5ab\2\ud670\2\ud735\2\ud7fa\2\ud8bf\2\ud984\2\uda49\2\udb0e"+
"\2\udbd3\2\udc98\2\udd5d\2\ude22\2\udee7\2\udfac\2\ue071\2\ue136"+
"\2\ue1fb\2\ue2c0\2\ue385\2\ue44a\2\ue50f\2\ue5d4\2\ue699\2\ue75e"+
"\2\ue823\2\ue8e8\2\ue9ad\2\uea72\2\ueb37\2\uebfc\2\uecc1\2\ued86"+
"\2\uee4b\2\uef10\2\uefd5\2\uf09a\2\uf15f\2\uf224\2\uf2e9\2\uf3ae"+
"\2\uf473\2\uf538\2\uf5fd\2\uf6c2\2\uf787\2\uf84c\2\uf911\2\uf9d6"+
"\2\ufa9b\2\ufb60\2\ufc25\2\ufcea\2\ufdaf\2\ufe74\2\uff39\2\ufffe"+
"\3\303\3\u0188\3\u024d\3\u0312\3\u03d7\3\u049c\3\u0561\3\u0626"+
"\3\u06eb\3\u07b0\3\u0875\3\u093a\3\u09ff\3\u0ac4\3\u0b89\3\u0c4e"+
"\3\u0d13\3\u0dd8\3\u0e9d\3\u0f62\3\u1027\3\u10ec\3\u11b1\3\u1276"+
"\3\u133b\3\u1400\3\u14c5\3\u158a\3\u164f\3\u1714\3\u17d9\3\u189e"+
"\3\u1963\3\u1a28\3\u1aed\3\u1bb2\3\u1c77\3\u1d3c\3\u1e01\3\u1ec6"+
"\3\u1f8b\3\u2050\3\u2115\3\u21da\3\u229f\3\u2364\3\u2429\3\u24ee"+
"\3\u25b3\3\u2678\3\u273d\3\u2802\3\u28c7\3\u298c\3\u2a51\3\u2b16"+
"\3\u2bdb\3\u2ca0\3\u2d65\3\u2e2a\3\u2eef\3\u2fb4\3\u3079\3\u313e"+
"\3\u3203\3\u32c8\3\u338d\3\u3452\3\u3517\3\u35dc\3\u36a1\3\u3766"+
"\3\u382b\3\u38f0\3\u39b5\3\u3a7a\3\u3b3f\3\u3c04\3\u3cc9\3\u3d8e"+
"\3\u3e53\3\u3f18\3\u3fdd\3\u40a2\3\u4167\3\u422c\3\u42f1\3\u43b6"+
"\3\u447b\3\u4540\3\u4605\3\u46ca\3\u478f\3\u4854\3\u4919\3\u49de"+
"\3\u4aa3\3\u4b68\3\u4c2d\3\u4cf2\3\u4db7\3\u4e7c\3\u4f41\3\u5006"+
"\3\u50cb\3\u5190\3\u5255\3\u531a\3\u53df\3\u54a4\3\u5569\3\u562e"+
"\3\u56f3\3\u57b8\3\u587d\3\u5942\3\u5a07\3\u5acc\3\u5b91\3\u5c56"+
"\3\u5d1b\3\u5de0\3\u5ea5\3\u5f6a\3\u602f\3\u60f4\3\u61b9\3\u627e"+
"\3\u6343\3\u6408\3\u64cd\3\u6592\3\u6657\3\u671c\3\u67e1\3\u68a6"+
"\3\u696b\3\u6a30\3\u6af5\3\u6bba\3\u6c7f\3\u6d44\3\u6e09\3\u6ece"+
"\3\u6f93\3\u7058\3\u711d\3\u71e2\3\u72a7\3\u736c\3\u7431\3\u74f6"+
"\3\u75bb\3\u7680\3\u7745\3\u780a\3\u78cf\3\u7994\3\u7a59\3\u7b1e"+
"\3\u7be3\3\u7ca8\3\u7d6d\3\u7e32\3\u7ef7\3\u7fbc\3\u8081\3\u8146"+
"\3\u820b\3\u82d0\3\u8395\3\u845a\3\u851f\3\u85e4\3\u86a9\3\u876e"+
"\3\u8833\3\u88f8\3\u89bd\3\u8a82\2\u9756\3\u8b47\3\u8c0c\3\u8cd1"+
"\3\u8d96\3\u8e5b\3\u8f20\3\u8fe5\3\u90aa\3\u916f\3\u9234\3\u92f9"+
"\3\u93be\3\u9483\3\u9548\3\u960d\3\u96d2\3\u9797\3\u985c\3\u9921"+
"\3\u99e6\3\u9aab\3\u9b70\3\u9c35\3\u9cfa\3\u9dbf\3\u9e84\3\u9f49"+
"\3\ua00e\3\ua0d3\3\ua198\3\ua25d\3\ua322\3\ua3e7\3\ua4ac\3\ua571"+
"\3\ua636\3\ua6fb\3\ua7c0\3\ua885\3\ua94a\3\uaa0f\3\uaad4\3\uab99"+
"\3\uac5e\3\uad23\3\uade8\3\uaead\3\uaf72\3\ub037\3\ub0fc\3\ub1c1"+
"\3\ub286\3\ub34b\3\ub410\3\ub4d5\3\ub59a\3\ub65f\3\ub724\3\ub7e9"+
"\3\ub8ae\3\ub973\3\uba38\3\ubafd\3\ubbc2\3\ubc87\3\ubd4c\3\ube11"+
"\3\ubed6\3\ubf9b\3\uc060\3\uc125\3\uc1ea\3\uc2af\3\uc374\3\uc439"+
"\3\uc4fe\3\uc5c3\3\uc688\3\uc74d\3\uc812\3\uc8d7\3\uc99c\3\uca61"+
"\3\ucb26\3\ucbeb\3\uccb0\3\ucd75\3\uce3a\3\uceff\3\ucfc4\3\ud089"+
"\3\ud14e\3\ud213\3\ud2d8\3\ud39d\3\ud462\3\ud527\3\ud5ec\3\ud6b1"+
"\3\ud776\3\ud83b\3\ud900\3\ud9c5\3\uda8a\3\udb4f\3\udc14\3\udcd9"+
"\3\udd9e\3\ude63\3\udf28\3\udfed\3\ue0b2\3\ue177\3\ue23c\3\ue301"+
"\3\ue3c6\3\ue48b\3\ue550\3\ue615\3\ue6da\3\ue79f\3\ue864\3\ue929"+
"\3\ue9ee\3\ueab3\3\ueb78\3\uec3d\3\ued02\3\uedc7\3\uee8c\3\uef51"+
"\3\uf016\3\uf0db\3\uf1a0\3\uf265\3\uf32a\3\uf3ef\3\uf4b4\3\uf579"+
"\3\uf63e\3\uf703\3\uf7c8\3\uf88d\3\uf952\3\ufa17\3\ufadc\3\ufba1"+
"\3\ufc66\3\ufd2b\3\ufdf0\3\ufeb5\3\uff7a\4\77\4\u0104\4\u01c9"+
"\4\u028e\4\u0353\4\u0418\4\u04dd\4\u05a2\4\u0667\4\u072c\4\u07f1"+
"\4\u08b6\4\u097b\4\u0a40\4\u0b05\4\u0bca\4\u0c8f\4\u0d54\4\u0e19"+
"\4\u0ede\4\u0fa3\4\u1068\4\u112d\4\u11f2\4\u12b7\4\u137c\4\u1441"+
"\4\u1506\4\u15cb\4\u1690\4\u1755\4\u181a\4\u18df\4\u19a4\4\u1a69"+
"\4\u1b2e\4\u1bf3\4\u1cb8\4\u1d7d\4\u1e42\4\u1f07\4\u1fcc\4\u2091"+
"\4\u2156\4\u221b\4\u22e0\4\u23a5\4\u246a\4\u252f\4\u25f4\4\u26b9"+
"\4\u277e\4\u2843\4\u2908\4\u29cd\4\u2a92\4\u2b57\4\u2c1c\4\u2ce1"+
"\4\u2da6\4\u2e6b\4\u2f30\4\u2ff5\4\u30ba\4\u317f\4\u3244\4\u3309"+
"\4\u33ce\4\u3493\4\u3558\4\u361d\4\u36e2\4\u37a7\4\u386c\4\u3931"+
"\4\u39f6\4\u3abb\4\u3b80\4\u3c45\4\u3d0a\4\u3dcf\4\u3e94\4\u3f59"+
"\4\u401e\4\u40e3\4\u41a8\4\u426d\4\u4332\4\u43f7\4\u44bc\4\u4581"+
"\4\u4646\4\u470b\4\u47d0\4\u4895\4\u495a\4\u4a1f\4\u4ae4\4\u4ba9"+
"\4\u4c6e\4\u4d33\4\u4df8\4\u4ebd\4\u4f82\4\u5047\4\u510c\4\u51d1"+
"\4\u5296\4\u535b\4\u5420\4\u54e5\4\u55aa\4\u566f\4\u5734\4\u57f9"+
"\4\u58be\4\u5983\4\u5a48\4\u5b0d\4\u5bd2\4\u5c97\4\u5d5c\4\u5e21"+
"\4\u5ee6\4\u5fab\4\u6070\4\u6135\4\u61fa\4\u62bf\4\u6384\4\u6449"+
"\4\u650e\4\u65d3\4\u6698\4\u675d\4\u6822\4\u68e7\4\u69ac\4\u6a71"+
"\4\u6b36\4\u6bfb\4\u6cc0\4\u6d85\4\u6e4a\4\u6f0f\4\u6fd4\4\u7099"+
"\4\u715e\4\u7223\4\u72e8\4\u73ad\4\u7472\4\u7537\4\u75fc\4\u76c1"+
"\4\u7786\4\u784b\4\u7910\4\u79d5\4\u7a9a\4\u7b5f\4\u7c24\4\u7ce9"+
"\4\u7dae\4\u7e73\4\u7f38\4\u7ffd\4\u80c2\4\u8187\4\u824c\4\u8311"+
"\4\u83d6\4\u849b\4\u8560\4\u8625\4\u86ea\4\u87af\4\u8874\4\u8939"+
"\4\u89fe\4\u8ac3\4\u8b88\4\u8c4d\4\u8d12\4\u8dd7\4\u8e9c\4\u8f61"+
"\4\u9026\4\u90eb\4\u91b0\4\u9275\4\u933a\4\u93ff\4\u94c4\4\u9589"+
"\4\u964e\4\u9713\4\u97d8\4\u989d\4\u9962\4\u9a27\4\u9aec\4\u9bb1"+
"\4\u9c76\4\u9d3b\4\u9e00\4\u9ec5\4\u9f8a\4\ua04f\4\ua114\4\ua1d9"+
"\4\ua29e\4\ua363\4\ua428\4\ua4ed\4\ua5b2\4\ua677\4\ua73c\4\ua801"+
"\4\ua8c6\4\ua98b\4\uaa50\4\uab15\4\uabda\4\uac9f\4\uad64\4\uae29"+
"\4\uaeee\4\uafb3\4\ub078\4\ub13d\4\ub202\4\ub2c7\4\ub38c\4\ub451"+
"\4\ub516\4\ub5db\4\ub6a0\4\ub765\4\ub82a\4\ub8ef\4\ub9b4\4\uba79"+
"\4\ubb3e\4\ubc03\4\ubcc8\4\ubd8d\4\ube52\4\ubf17\4\ubfdc\4\uc0a1"+
"\4\uc166\4\uc22b\4\uc2f0\4\uc3b5\4\uc47a\4\uc53f\4\uc604\4\uc6c9"+
"\4\uc78e\4\uc853\4\uc918\4\uc9dd\4\ucaa2\4\ucb67\4\ucc2c\4\uccf1"+
"\4\ucdb6\4\uce7b\4\ucf40\4\ud005\4\ud0ca\4\ud18f\4\ud254\4\ud319"+
"\4\ud3de\4\ud4a3\4\ud568\4\ud62d\4\ud6f2\4\ud7b7\4\ud87c\4\ud941"+
"\4\uda06\4\udacb\4\udb90\4\udc55\4\udd1a\4\udddf\4\udea4\4\udf69"+
"\4\ue02e\4\ue0f3\4\ue1b8\4\ue27d\4\ue342\4\ue407\4\ue4cc\4\ue591"+
"\4\ue656\4\ue71b\4\ue7e0\4\ue8a5\4\ue96a\4\uea2f\4\ueaf4\4\uebb9"+
"\4\uec7e\4\ued43\4\uee08\4\ueecd\4\uef92\4\uf057\4\uf11c\4\uf1e1"+
"\4\uf2a6\4\uf36b\4\uf430\4\uf4f5\4\uf5ba\4\uf67f\4\uf744\4\uf809"+
"\4\uf8ce\4\uf993\4\ufa58\4\ufb1d\4\ufbe2\4\ufca7\4\ufd6c\4\ufe31"+
"\4\ufef6\4\uffbb\5\200\5\u0145\5\u020a\5\u02cf\5\u0394\5\u0459"+
"\5\u051e\5\u05e3\5\u06a8\5\u076d\5\u0832\5\u08f7\5\u09bc\5\u0a81"+
"\5\u0b46\5\u0c0b\5\u0cd0\5\u0d95\5\u0e5a\5\u0f1f\5\u0fe4\5\u10a9"+
"\5\u116e\5\u1233\5\u12f8\5\u13bd\5\u1482\5\u1547\5\u160c\5\u16d1"+
"\5\u1796\5\u185b\5\u1920\5\u19e5\5\u1aaa\5\u1b6f\5\u1c34\5\u1cf9"+
"\5\u1dbe\5\u1e83\5\u1f48\5\u200d\5\u20d2\5\u2197\5\u225c\5\u2321"+
"\5\u23e6\5\u24ab\5\u2570\5\u2635\5\u26fa\5\u27bf\5\u2884\5\u2949"+
"\5\u2a0e\5\u2ad3\5\u2b98\5\u2c5d\5\u2d22\5\u2de7\5\u2eac\5\u2f71"+
"\5\u3036\5\u30fb\5\u31c0\5\u3285\5\u334a\5\u340f";
private static int [] zzUnpackRowMap() {
int [] result = new int[1750];
int offset = 0;
offset = zzUnpackRowMap(ZZ_ROWMAP_PACKED_0, offset, result);
return result;
}
private static int zzUnpackRowMap(String packed, int offset, int [] result) {
int i = 0; /* index in packed string */
int j = offset; /* index in unpacked array */
int l = packed.length();
while (i < l) {
int high = packed.charAt(i++) << 16;
result[j++] = high | packed.charAt(i++);
}
return j;
}
/**
* The transition table of the DFA
*/
private static final int [] ZZ_TRANS = zzUnpackTrans();
private static final String ZZ_TRANS_PACKED_0 =
"\1\2\1\3\1\2\1\4\2\2\1\5\1\2\1\6"+
"\4\2\1\7\1\2\1\10\1\2\1\11\2\2\1\12"+
"\3\2\1\13\2\2\1\14\4\2\1\15\3\2\1\16"+
"\17\2\1\17\2\2\1\20\66\2\1\21\1\2\1\22"+
"\2\2\1\23\1\24\1\2\1\25\1\2\1\26\1\2"+
"\1\27\1\2\1\30\1\2\1\31\1\32\3\2\1\33"+
"\2\34\1\35\1\36\1\37\1\40\6\41\1\42\3\41"+
"\1\43\12\41\1\44\4\41\1\40\1\45\2\46\1\45"+
"\5\46\1\47\1\2\1\40\1\50\1\40\1\2\2\40"+
"\1\2\3\40\1\51\2\2\1\40\1\52\3\2\2\40"+
"\1\2\307\0\1\30\2\0\1\30\4\0\1\30\16\0"+
"\1\30\15\0\1\30\20\0\1\30\1\0\1\30\31\0"+
"\1\30\4\0\1\30\10\0\2\30\15\0\2\30\10\0"+
"\1\30\115\0\2\30\5\0\1\30\2\0\1\30\3\0"+
"\2\30\10\0\4\30\1\0\3\30\1\0\1\30\2\0"+
"\1\30\2\0\1\30\4\0\4\30\1\0\2\30\1\0"+
"\1\30\2\0\1\30\1\0\1\30\2\0\4\30\2\0"+
"\3\30\1\0\2\30\1\0\3\30\5\0\4\30\2\0"+
"\10\30\1\0\1\30\2\0\4\30\1\0\2\30\1\0"+
"\1\30\1\0\2\30\4\0\1\30\3\0\1\30\120\0"+
"\1\30\4\0\1\30\11\0\1\30\22\0\1\30\3\0"+
"\1\30\27\0\1\30\63\0\1\30\120\0\1\30\3\0"+
"\4\30\1\0\1\30\1\0\1\31\2\0\1\30\1\0"+
"\2\30\2\0\2\30\2\0\3\30\1\0\1\30\1\0"+
"\1\30\2\0\4\30\1\0\3\30\1\0\1\30\1\0"+
"\3\30\1\0\2\30\1\0\4\30\1\0\2\30\2\0"+
"\10\30\1\0\2\30\1\0\11\30\1\0\10\30\1\0"+
"\13\30\1\31\1\0\1\30\1\0\1\30\1\0\2\30"+
"\2\0\1\30\1\0\1\30\3\0\1\30\127\0\1\30"+
"\17\0\1\30\23\0\1\30\23\0\1\30\6\0\3\30"+
"\37\0\1\30\7\0\1\30\117\0\1\30\1\0\2\30"+
"\1\0\1\30\1\0\4\30\1\0\1\30\1\0\1\30"+
"\1\0\2\30\1\0\3\30\1\0\2\30\1\0\4\30"+
"\1\0\3\30\1\0\17\30\1\0\2\30\1\0\21\30"+
"\1\0\2\30\1\0\41\30\1\0\1\30\1\0\2\30"+
"\2\0\1\30\1\0\1\30\1\0\1\30\1\0\1\30"+
"\127\0\1\30\3\0\2\30\12\0\2\30\13\0\1\30"+
"\6\0\1\30\2\0\2\30\6\0\1\30\4\0\2\30"+
"\2\0\2\30\5\0\3\30\10\0\1\30\26\0\1\30"+
"\7\0\1\30\117\0\1\30\1\0\2\30\1\0\1\30"+
"\2\0\2\30\2\0\1\30\3\0\2\30\1\0\3\30"+
"\1\0\2\30\1\0\4\30\1\0\3\30\1\0\1\30"+
"\1\0\2\30\2\0\11\30\1\0\2\30\1\0\1\30"+
"\1\0\2\30\1\0\14\30\1\0\2\30\1\0\3\30"+
"\1\0\1\30\1\0\30\30\1\0\2\30\1\0\1\30"+
"\1\0\2\30\2\0\1\30\1\0\1\30\1\0\1\30"+
"\1\0\1\30\113\0\1\30\26\0\2\30\23\0\1\31"+
"\1\30\66\0\1\31\142\0\1\31\27\0\4\30\2\0"+
"\2\30\14\0\3\30\15\0\3\30\3\0\1\30\7\0"+
"\2\30\13\0\1\30\13\0\4\31\1\0\2\30\11\0"+
"\1\30\133\0\1\30\3\0\2\30\12\0\2\30\1\0"+
"\3\30\7\0\1\30\6\0\2\30\1\0\2\30\6\0"+
"\1\30\4\0\2\30\2\0\2\30\5\0\3\30\10\0"+
"\1\30\16\0\1\30\4\0\2\31\1\0\1\30\7\0"+
"\1\30\117\0\1\30\4\0\1\30\6\0\1\30\3\0"+
"\1\30\6\0\1\30\5\0\1\30\2\0\2\30\1\0"+
"\17\30\2\0\1\30\13\0\7\30\2\0\1\30\1\0"+
"\1\30\1\0\1\30\2\0\1\30\1\0\1\30\1\0"+
"\1\30\1\0\1\30\6\0\2\30\5\0\1\30\1\0"+
"\1\30\2\0\3\30\1\0\1\30\7\0\1\30\1\0"+
"\1\30\131\0\1\30\17\0\2\30\22\0\1\30\2\0"+
"\2\30\13\0\1\30\3\0\2\30\5\0\3\30\10\0"+
"\1\30\26\0\1\30\7\0\1\30\124\0\1\30\6\0"+
"\1\30\3\0\1\30\3\0\1\30\7\0\1\30\31\0"+
"\20\30\5\0\3\30\3\0\1\30\3\0\2\30\2\0"+
"\2\30\4\0\1\30\10\0\1\30\4\0\1\30\2\0"+
"\1\30\4\0\1\30\1\0\1\30\1\0\1\30\226\0"+
"\1\36\41\0\1\32\131\0\1\35\6\0\1\35\2\0"+
"\1\35\3\0\2\35\10\0\4\35\1\0\3\35\1\0"+
"\1\35\2\0\1\35\2\0\1\35\4\0\4\35\1\0"+
"\2\35\6\0\1\35\2\0\4\35\2\0\3\35\1\0"+
"\2\35\1\0\3\35\5\0\4\35\2\0\10\35\4\0"+
"\4\35\1\0\2\35\1\0\1\35\1\0\2\35\4\0"+
"\1\35\3\0\1\35\113\0\1\35\1\0\2\35\1\0"+
"\1\35\1\0\4\35\1\0\1\35\1\0\1\35\1\0"+
"\2\35\1\0\3\35\1\0\2\35\1\0\4\35\1\0"+
"\3\35\1\0\17\35\1\0\2\35\1\0\21\35\1\0"+
"\2\35\1\0\41\35\1\0\1\35\1\0\2\35\2\0"+
"\1\35\1\0\1\35\1\0\1\35\1\0\1\35\113\0"+
"\1\35\1\0\2\35\1\0\1\35\1\0\4\35\1\0"+
"\1\35\1\0\1\35\1\0\2\35\2\0\1\35\2\0"+
"\2\35\1\0\4\35\1\0\3\35\1\0\17\35\1\0"+
"\2\35\1\0\21\35\1\0\2\35\1\0\41\35\1\0"+
"\1\35\1\0\2\35\2\0\1\35\1\0\1\35\1\0"+
"\1\35\1\0\1\35\127\0\1\35\17\0\1\35\23\0"+
"\1\35\32\0\1\35\41\0\1\35\7\0\1\35\117\0"+
"\1\35\1\0\2\35\3\0\4\35\1\0\1\35\1\0"+
"\1\35\1\0\2\35\1\0\3\35\1\0\2\35\1\0"+
"\4\35\1\0\3\35\1\0\10\35\1\0\6\35\1\0"+
"\2\35\1\0\21\35\1\0\2\35\1\0\41\35\1\0"+
"\1\35\1\0\2\35\2\0\1\35\1\0\1\35\1\0"+
"\1\35\1\0\1\35\304\0\1\36\112\0\1\53\1\0"+
"\1\54\2\0\1\55\1\0\1\56\4\0\1\57\1\0"+
"\1\60\1\0\1\61\2\0\1\62\3\0\1\63\2\0"+
"\1\64\4\0\1\65\3\0\1\66\17\0\1\67\2\0"+
"\1\70\21\0\1\71\2\0\1\72\57\0\2\30\1\73"+
"\1\0\1\74\1\0\1\74\1\75\1\0\1\30\2\0"+
"\1\30\1\74\32\30\1\0\12\73\1\74\1\0\1\75"+
"\3\0\1\74\20\0\1\53\1\0\1\54\2\0\1\76"+
"\1\0\1\77\4\0\1\57\1\0\1\60\1\0\1\61"+
"\2\0\1\62\3\0\1\100\2\0\1\101\4\0\1\102"+
"\3\0\1\103\17\0\1\67\2\0\1\104\21\0\1\105"+
"\2\0\1\106\57\0\1\30\2\31\2\0\2\107\1\110"+
"\1\0\1\31\2\0\1\30\1\107\32\30\1\0\12\31"+
"\2\0\1\110\2\0\2\107\6\0\1\107\16\0\1\111"+
"\21\0\1\112\2\0\1\113\10\0\1\114\22\0\1\115"+
"\21\0\1\116\2\0\1\117\41\0\1\120\16\0\1\32"+
"\1\0\1\32\3\0\1\75\1\0\1\32\53\0\1\75"+
"\24\0\1\53\1\0\1\54\2\0\1\121\1\0\1\77"+
"\4\0\1\57\1\0\1\60\1\0\1\61\2\0\1\62"+
"\3\0\1\122\2\0\1\123\4\0\1\102\3\0\1\124"+
"\17\0\1\67\2\0\1\125\21\0\1\126\2\0\1\127"+
"\41\0\1\130\15\0\1\30\1\131\1\31\1\132\3\0"+
"\1\131\1\0\1\131\2\0\1\30\1\0\32\30\1\0"+
"\12\31\2\0\1\131\227\0\2\34\105\0\1\133\21\0"+
"\1\134\2\0\1\135\10\0\1\136\22\0\1\137\21\0"+
"\1\140\2\0\1\141\60\0\1\35\7\0\1\35\105\0"+
"\1\142\21\0\1\143\2\0\1\144\10\0\1\145\22\0"+
"\1\146\21\0\1\147\2\0\1\150\60\0\1\36\7\0"+
"\1\36\100\0\1\53\1\0\1\54\2\0\1\151\1\0"+
"\1\56\4\0\1\57\1\0\1\60\1\0\1\61\2\0"+
"\1\62\3\0\1\152\2\0\1\153\4\0\1\65\3\0"+
"\1\154\17\0\1\67\2\0\1\155\21\0\1\156\2\0"+
"\1\157\57\0\1\30\1\37\1\73\1\0\1\74\1\0"+
"\1\74\1\75\1\0\1\37\2\0\1\37\1\74\32\30"+
"\1\0\12\73\1\74\1\0\1\75\3\0\1\74\230\0"+
"\1\160\45\161\1\0\3\161\1\0\2\161\1\162\3\161"+
"\3\0\1\161\4\0\2\161\2\0\1\53\1\0\1\54"+
"\2\0\1\55\1\0\1\56\4\0\1\57\1\0\1\60"+
"\1\0\1\61\2\0\1\62\3\0\1\63\2\0\1\64"+
"\4\0\1\65\3\0\1\66\17\0\1\67\2\0\1\70"+
"\21\0\1\71\2\0\1\72\57\0\2\30\1\73\1\0"+
"\1\74\1\0\1\74\1\75\1\0\1\30\2\0\1\30"+
"\1\163\32\41\1\164\12\165\1\74\1\161\1\166\1\161"+
"\1\0\1\161\1\167\1\162\3\161\3\0\1\161\4\0"+
"\2\161\2\0\1\53\1\0\1\54\2\0\1\55\1\0"+
"\1\56\4\0\1\57\1\0\1\60\1\0\1\61\2\0"+
"\1\62\3\0\1\63\2\0\1\64\4\0\1\65\3\0"+
"\1\66\17\0\1\67\2\0\1\70\21\0\1\71\2\0"+
"\1\72\57\0\2\30\1\73\1\0\1\74\1\0\1\74"+
"\1\75\1\0\1\30\2\0\1\30\1\163\10\41\1\170"+
"\6\41\1\171\12\41\1\164\12\165\1\74\1\161\1\166"+
"\1\161\1\0\1\161\1\167\1\162\3\161\3\0\1\161"+
"\4\0\2\161\2\0\1\53\1\0\1\54\2\0\1\55"+
"\1\0\1\56\4\0\1\57\1\0\1\60\1\0\1\61"+
"\2\0\1\62\3\0\1\63\2\0\1\64\4\0\1\65"+
"\3\0\1\66\17\0\1\67\2\0\1\70\21\0\1\71"+
"\2\0\1\72\57\0\2\30\1\73\1\0\1\74\1\0"+
"\1\74\1\75\1\0\1\30\2\0\1\30\1\163\1\172"+
"\31\41\1\164\12\165\1\74\1\161\1\166\1\161\1\0"+
"\1\161\1\167\1\162\3\161\3\0\1\161\4\0\2\161"+
"\2\0\1\53\1\0\1\54\2\0\1\55\1\0\1\56"+
"\4\0\1\57\1\0\1\60\1\0\1\61\2\0\1\62"+
"\3\0\1\63\2\0\1\64\4\0\1\65\3\0\1\66"+
"\17\0\1\67\2\0\1\70\21\0\1\71\2\0\1\72"+
"\57\0\2\30\1\73\1\0\1\74\1\0\1\74\1\75"+
"\1\0\1\30\2\0\1\30\1\163\17\41\1\173\12\41"+
"\1\164\12\165\1\74\1\161\1\166\1\161\1\0\1\161"+
"\1\167\1\162\3\161\3\0\1\161\4\0\2\161\2\0"+
"\1\53\1\0\1\54\2\0\1\76\1\0\1\77\4\0"+
"\1\57\1\0\1\60\1\0\1\61\2\0\1\62\3\0"+
"\1\100\2\0\1\101\4\0\1\102\3\0\1\103\17\0"+
"\1\67\2\0\1\104\21\0\1\105\2\0\1\106\57\0"+
"\1\30\2\31\2\0\2\107\1\110\1\0\1\31\2\0"+
"\1\30\1\174\32\41\1\164\12\46\1\0\1\161\1\175"+
"\1\161\1\0\2\176\1\162\3\161\2\0\1\107\1\161"+
"\4\0\2\161\2\0\1\53\1\0\1\54\2\0\1\76"+
"\1\0\1\77\4\0\1\57\1\0\1\60\1\0\1\61"+
"\2\0\1\62\3\0\1\100\2\0\1\101\4\0\1\102"+
"\3\0\1\103\17\0\1\67\2\0\1\104\21\0\1\105"+
"\2\0\1\106\57\0\1\30\2\31\2\0\2\107\1\110"+
"\1\0\1\31\2\0\1\30\1\174\32\41\1\164\12\177"+
"\1\0\1\161\1\175\1\161\1\0\2\176\1\162\3\161"+
"\2\0\1\107\1\161\4\0\2\161\2\0\1\53\1\0"+
"\1\54\2\0\1\76\1\0\1\77\4\0\1\57\1\0"+
"\1\60\1\0\1\61\2\0\1\62\3\0\1\100\2\0"+
"\1\101\4\0\1\102\3\0\1\103\17\0\1\67\2\0"+
"\1\104\21\0\1\105\2\0\1\106\57\0\1\30\2\31"+
"\2\0\2\107\1\110\1\0\1\31\2\0\1\30\1\174"+
"\32\41\1\164\1\46\1\200\1\177\2\46\2\177\1\46"+
"\1\177\1\46\1\0\1\161\1\175\1\161\1\0\2\176"+
"\1\162\3\161\2\0\1\107\1\161\4\0\2\161\2\0"+
"\1\53\1\0\1\54\2\0\1\121\1\0\1\77\4\0"+
"\1\57\1\0\1\60\1\0\1\61\2\0\1\62\3\0"+
"\1\122\2\0\1\123\4\0\1\102\3\0\1\124\17\0"+
"\1\67\2\0\1\125\21\0\1\126\2\0\1\127\41\0"+
"\1\130\15\0\1\30\1\131\1\31\1\132\3\0\1\131"+
"\1\0\1\131\2\0\1\30\1\160\32\201\1\161\12\202"+
"\1\0\1\161\1\203\1\161\1\0\2\161\1\162\3\161"+
"\3\0\1\161\4\0\2\161\213\0\4\204\2\0\1\204"+
"\15\0\1\204\6\0\12\204\1\205\236\0\65\206\1\207"+
"\1\206\1\210\1\0\2\206\10\0\1\30\4\0\1\30"+
"\11\0\1\30\22\0\1\30\3\0\1\30\13\0\1\30"+
"\2\0\1\30\10\0\1\30\12\0\4\30\45\0\1\30"+
"\120\0\1\30\3\0\4\30\1\0\1\30\1\0\1\73"+
"\2\0\1\30\1\0\2\30\2\0\2\30\2\0\3\30"+
"\1\0\1\30\1\0\1\30\2\0\4\30\1\0\3\30"+
"\1\0\1\30\1\0\3\30\1\0\2\30\1\0\4\30"+
"\1\0\2\30\2\0\10\30\1\0\2\30\1\0\11\30"+
"\1\0\10\30\1\0\13\30\1\73\1\0\1\30\1\0"+
"\1\30\1\0\2\30\2\0\1\30\1\0\1\30\3\0"+
"\1\30\113\0\1\30\26\0\2\30\23\0\1\73\1\30"+
"\44\0\1\30\21\0\1\73\142\0\1\73\11\0\1\30"+
"\15\0\4\30\2\0\2\30\14\0\4\30\1\0\2\30"+
"\11\0\3\30\3\0\1\30\1\0\1\30\4\0\3\30"+
"\5\0\4\30\2\0\2\30\12\0\4\73\1\0\2\30"+
"\1\0\1\30\7\0\1\30\133\0\1\30\3\0\2\30"+
"\12\0\2\30\1\0\3\30\7\0\1\30\6\0\2\30"+
"\1\0\2\30\6\0\1\30\4\0\2\30\2\0\2\30"+
"\5\0\3\30\10\0\1\30\16\0\1\30\4\0\2\73"+
"\1\0\1\30\7\0\1\30\117\0\1\30\4\0\1\30"+
"\6\0\1\30\3\0\1\30\6\0\1\30\5\0\1\30"+
"\2\0\2\30\1\0\17\30\2\0\1\30\13\0\7\30"+
"\2\0\1\30\1\0\1\30\1\0\1\30\2\0\1\30"+
"\1\0\1\30\1\0\1\30\1\0\1\30\4\0\1\30"+
"\1\0\2\30\5\0\1\30\1\0\1\30\2\0\3\30"+
"\1\0\1\30\7\0\1\30\1\0\1\30\122\0\1\30"+
"\6\0\1\30\3\0\1\30\3\0\1\30\7\0\1\30"+
"\31\0\20\30\5\0\3\30\3\0\1\30\3\0\2\30"+
"\2\0\2\30\4\0\5\30\4\0\1\30\4\0\1\30"+
"\2\0\1\30\4\0\1\30\1\0\1\30\1\0\1\30"+
"\223\0\2\30\15\0\4\30\154\0\1\30\15\0\2\30"+
"\10\0\2\30\1\0\1\30\1\0\1\30\11\0\1\30"+
"\11\0\2\30\6\0\1\30\2\0\4\30\3\0\1\30"+
"\2\0\2\30\1\0\3\30\5\0\1\30\1\0\2\30"+
"\2\0\2\30\1\0\4\30\5\0\1\30\1\0\2\30"+
"\133\0\1\53\1\0\1\54\2\0\1\211\1\0\1\56"+
"\4\0\1\57\1\0\1\60\1\0\1\61\2\0\1\62"+
"\3\0\1\212\2\0\1\213\4\0\1\65\3\0\1\214"+
"\17\0\1\67\2\0\1\215\21\0\1\216\2\0\1\217"+
"\57\0\1\30\2\73\2\0\2\220\1\75\1\0\1\73"+
"\2\0\1\30\1\220\32\30\1\0\12\73\2\0\1\75"+
"\2\0\2\220\6\0\1\220\11\0\1\53\1\0\1\54"+
"\2\0\1\221\1\0\1\222\4\0\1\57\1\0\1\60"+
"\1\0\1\61\2\0\1\62\3\0\1\223\2\0\1\224"+
"\4\0\1\225\3\0\1\226\17\0\1\67\2\0\1\227"+
"\21\0\1\230\2\0\1\231\57\0\1\30\1\74\7\0"+
"\1\74\2\0\1\30\1\0\32\30\42\0\1\53\1\0"+
"\1\54\2\0\1\232\1\0\1\56\4\0\1\57\1\0"+
"\1\60\1\0\1\61\2\0\1\62\3\0\1\233\2\0"+
"\1\234\4\0\1\65\3\0\1\235\17\0\1\67\2\0"+
"\1\236\21\0\1\237\2\0\1\240\41\0\1\130\15\0"+
"\1\30\1\75\1\73\1\132\3\0\1\75\1\0\1\75"+
"\2\0\1\30\1\0\32\30\1\0\12\73\2\0\1\75"+
"\32\0\1\30\4\0\1\30\11\0\1\30\22\0\1\30"+
"\3\0\1\30\13\0\1\31\2\0\1\31\10\0\1\30"+
"\12\0\4\31\45\0\1\30\115\0\1\30\26\0\2\30"+
"\23\0\1\31\1\30\44\0\1\31\21\0\1\31\142\0"+
"\1\31\11\0\1\31\15\0\4\30\2\0\2\30\14\0"+
"\3\30\1\31\1\0\2\31\11\0\3\30\3\0\1\30"+
"\1\0\1\31\4\0\1\31\2\30\5\0\4\31\2\0"+
"\1\30\1\31\12\0\4\31\1\0\2\30\1\0\1\31"+
"\7\0\1\30\117\0\1\30\4\0\1\30\6\0\1\30"+
"\3\0\1\30\6\0\1\30\5\0\1\30\2\0\2\30"+
"\1\0\17\30\2\0\1\30\13\0\7\30\2\0\1\30"+
"\1\0\1\30\1\0\1\30\2\0\1\30\1\0\1\30"+
"\1\0\1\30\1\0\1\30\4\0\1\31\1\0\2\30"+
"\5\0\1\30\1\0\1\30\2\0\3\30\1\0\1\30"+
"\7\0\1\30\1\0\1\30\122\0\1\30\6\0\1\30"+
"\3\0\1\30\3\0\1\30\7\0\1\30\31\0\20\30"+
"\5\0\3\30\3\0\1\30\3\0\2\30\2\0\2\30"+
"\4\0\1\30\4\31\4\0\1\30\4\0\1\30\2\0"+
"\1\30\4\0\1\30\1\0\1\30\1\0\1\30\223\0"+
"\2\31\15\0\4\31\154\0\1\31\15\0\2\31\10\0"+
"\2\31\1\0\1\31\1\0\1\31\11\0\1\31\11\0"+
"\2\31\6\0\1\31\2\0\4\31\3\0\1\31\2\0"+
"\2\31\1\0\3\31\5\0\1\31\1\0\2\31\2\0"+
"\2\31\1\0\4\31\5\0\1\31\1\0\2\31\140\0"+
"\1\241\1\0\1\242\17\0\1\243\2\0\1\244\4\0"+
"\1\245\3\0\1\246\22\0\1\247\21\0\1\250\2\0"+
"\1\251\60\0\1\107\1\31\6\0\1\107\37\0\12\31"+
"\27\0\1\53\1\0\1\54\2\0\1\252\1\0\1\77"+
"\4\0\1\57\1\0\1\60\1\0\1\61\2\0\1\62"+
"\3\0\1\253\2\0\1\254\4\0\1\102\3\0\1\255"+
"\17\0\1\67\2\0\1\256\21\0\1\257\2\0\1\260"+
"\41\0\1\130\15\0\1\30\1\110\1\31\1\132\3\0"+
"\1\110\1\0\1\110\2\0\1\30\1\0\32\30\1\0"+
"\12\31\2\0\1\110\114\0\1\32\2\0\1\32\23\0"+
"\4\32\305\0\1\32\176\0\1\32\44\0\1\32\1\0"+
"\2\32\21\0\1\32\4\0\1\32\7\0\4\32\3\0"+
"\1\32\22\0\1\32\262\0\1\32\311\0\4\32\251\0"+
"\2\32\15\0\4\32\154\0\1\32\15\0\2\32\10\0"+
"\2\32\1\0\1\32\1\0\1\32\11\0\1\32\11\0"+
"\2\32\6\0\1\32\2\0\4\32\3\0\1\32\2\0"+
"\2\32\1\0\3\32\5\0\1\32\1\0\2\32\2\0"+
"\2\32\1\0\4\32\5\0\1\32\1\0\2\32\311\0"+
"\1\32\134\0\1\30\4\0\1\30\11\0\1\30\22\0"+
"\1\30\3\0\1\30\13\0\1\131\2\0\1\131\10\0"+
"\1\30\12\0\4\131\45\0\1\30\115\0\1\30\26\0"+
"\2\30\23\0\1\31\1\30\44\0\1\131\21\0\1\31"+
"\142\0\1\31\11\0\1\131\15\0\4\30\2\0\2\30"+
"\14\0\3\30\1\131\1\0\2\131\11\0\3\30\3\0"+
"\1\30\1\0\1\131\4\0\1\131\2\30\5\0\4\131"+
"\2\0\1\30\1\131\12\0\4\31\1\0\2\30\1\0"+
"\1\131\7\0\1\30\117\0\1\30\4\0\1\30\6\0"+
"\1\30\3\0\1\30\6\0\1\30\5\0\1\30\2\0"+
"\2\30\1\0\17\30\2\0\1\30\13\0\7\30\2\0"+
"\1\30\1\0\1\30\1\0\1\30\2\0\1\30\1\0"+
"\1\30\1\0\1\30\1\0\1\30\4\0\1\131\1\0"+
"\2\30\5\0\1\30\1\0\1\30\2\0\3\30\1\0"+
"\1\30\7\0\1\30\1\0\1\30\122\0\1\30\6\0"+
"\1\30\3\0\1\30\3\0\1\30\7\0\1\30\31\0"+
"\20\30\5\0\3\30\3\0\1\30\3\0\2\30\2\0"+
"\2\30\4\0\1\30\4\131\4\0\1\30\4\0\1\30"+
"\2\0\1\30\4\0\1\30\1\0\1\30\1\0\1\30"+
"\223\0\2\131\15\0\4\131\154\0\1\131\15\0\2\131"+
"\10\0\2\131\1\0\1\131\1\0\1\131\11\0\1\131"+
"\11\0\2\131\6\0\1\131\2\0\4\131\3\0\1\131"+
"\2\0\2\131\1\0\3\131\5\0\1\131\1\0\2\131"+
"\2\0\2\131\1\0\4\131\5\0\1\131\1\0\2\131"+
"\311\0\1\132\133\0\1\261\21\0\1\262\2\0\1\263"+
"\10\0\1\264\22\0\1\265\21\0\1\266\2\0\1\267"+
"\41\0\1\130\16\0\1\132\1\0\1\132\3\0\1\75"+
"\1\0\1\132\53\0\1\75\114\0\1\35\2\0\1\35"+
"\23\0\4\35\305\0\1\35\176\0\1\35\44\0\1\35"+
"\1\0\2\35\21\0\1\35\4\0\1\35\7\0\4\35"+
"\3\0\1\35\22\0\1\35\262\0\1\35\311\0\4\35"+
"\251\0\2\35\15\0\4\35\154\0\1\35\15\0\2\35"+
"\10\0\2\35\1\0\1\35\1\0\1\35\11\0\1\35"+
"\11\0\2\35\6\0\1\35\2\0\4\35\3\0\1\35"+
"\2\0\2\35\1\0\3\35\5\0\1\35\1\0\2\35"+
"\2\0\2\35\1\0\4\35\5\0\1\35\1\0\2\35"+
"\223\0\1\36\2\0\1\36\23\0\4\36\305\0\1\36"+
"\176\0\1\36\44\0\1\36\1\0\2\36\21\0\1\36"+
"\4\0\1\36\7\0\4\36\3\0\1\36\22\0\1\36"+
"\262\0\1\36\311\0\4\36\251\0\2\36\15\0\4\36"+
"\154\0\1\36\15\0\2\36\10\0\2\36\1\0\1\36"+
"\1\0\1\36\11\0\1\36\11\0\2\36\6\0\1\36"+
"\2\0\4\36\3\0\1\36\2\0\2\36\1\0\3\36"+
"\5\0\1\36\1\0\2\36\2\0\2\36\1\0\4\36"+
"\5\0\1\36\1\0\2\36\141\0\1\30\4\0\1\30"+
"\11\0\1\30\22\0\1\30\3\0\1\30\13\0\1\37"+
"\2\0\1\37\10\0\1\30\12\0\4\37\45\0\1\30"+
"\115\0\1\30\26\0\2\30\23\0\1\73\1\30\44\0"+
"\1\37\21\0\1\73\142\0\1\73\11\0\1\37\15\0"+
"\4\30\2\0\2\30\14\0\3\30\1\37\1\0\2\37"+
"\11\0\3\30\3\0\1\30\1\0\1\37\4\0\1\37"+
"\2\30\5\0\4\37\2\0\1\30\1\37\12\0\4\73"+
"\1\0\2\30\1\0\1\37\7\0\1\30\117\0\1\30"+
"\4\0\1\30\6\0\1\30\3\0\1\30\6\0\1\30"+
"\5\0\1\30\2\0\2\30\1\0\17\30\2\0\1\30"+
"\13\0\7\30\2\0\1\30\1\0\1\30\1\0\1\30"+
"\2\0\1\30\1\0\1\30\1\0\1\30\1\0\1\30"+
"\4\0\1\37\1\0\2\30\5\0\1\30\1\0\1\30"+
"\2\0\3\30\1\0\1\30\7\0\1\30\1\0\1\30"+
"\122\0\1\30\6\0\1\30\3\0\1\30\3\0\1\30"+
"\7\0\1\30\31\0\20\30\5\0\3\30\3\0\1\30"+
"\3\0\2\30\2\0\2\30\4\0\1\30\4\37\4\0"+
"\1\30\4\0\1\30\2\0\1\30\4\0\1\30\1\0"+
"\1\30\1\0\1\30\223\0\2\37\15\0\4\37\154\0"+
"\1\37\15\0\2\37\10\0\2\37\1\0\1\37\1\0"+
"\1\37\11\0\1\37\11\0\2\37\6\0\1\37\2\0"+
"\4\37\3\0\1\37\2\0\2\37\1\0\3\37\5\0"+
"\1\37\1\0\2\37\2\0\2\37\1\0\4\37\5\0"+
"\1\37\1\0\2\37\343\0\1\160\45\161\1\0\3\161"+
"\1\0\2\161\1\162\3\161\3\0\1\161\1\206\3\0"+
"\2\161\213\0\32\270\1\0\12\270\13\0\1\271\13\0"+
"\1\53\1\0\1\54\2\0\1\221\1\0\1\222\4\0"+
"\1\57\1\0\1\60\1\0\1\61\2\0\1\62\3\0"+
"\1\223\2\0\1\224\4\0\1\225\3\0\1\226\17\0"+
"\1\67\2\0\1\227\21\0\1\230\2\0\1\231\57\0"+
"\1\30\1\74\7\0\1\74\2\0\1\30\1\160\1\272"+
"\1\273\1\274\1\275\1\276\1\277\1\300\1\301\1\302"+
"\1\303\1\304\1\305\1\306\1\307\1\310\1\311\1\312"+
"\1\313\1\314\1\315\1\316\1\317\1\320\1\321\1\322"+
"\1\323\1\161\12\324\1\0\3\161\1\0\2\161\1\162"+
"\3\161\3\0\1\161\1\206\3\0\2\161\212\0\1\160"+
"\32\324\1\164\12\324\1\0\3\161\1\0\2\161\1\162"+
"\3\161\3\0\1\161\4\0\2\161\2\0\1\53\1\0"+
"\1\54\2\0\1\211\1\0\1\56\4\0\1\57\1\0"+
"\1\60\1\0\1\61\2\0\1\62\3\0\1\212\2\0"+
"\1\213\4\0\1\65\3\0\1\214\17\0\1\67\2\0"+
"\1\215\21\0\1\216\2\0\1\217\57\0\1\30\2\73"+
"\2\0\2\220\1\75\1\0\1\73\2\0\1\30\1\325"+
"\32\41\1\164\12\165\1\0\1\161\1\166\1\161\1\0"+
"\2\326\1\162\3\161\2\0\1\220\1\161\4\0\2\161"+
"\2\0\1\53\1\0\1\54\2\0\1\232\1\0\1\56"+
"\4\0\1\57\1\0\1\60\1\0\1\61\2\0\1\62"+
"\3\0\1\233\2\0\1\234\4\0\1\65\3\0\1\235"+
"\17\0\1\67\2\0\1\236\21\0\1\237\2\0\1\240"+
"\41\0\1\130\15\0\1\30\1\75\1\73\1\132\3\0"+
"\1\75\1\0\1\75\2\0\1\30\1\160\32\201\1\161"+
"\12\327\1\0\1\161\1\166\1\161\1\0\2\161\1\162"+
"\3\161\3\0\1\161\4\0\2\161\2\0\1\53\1\0"+
"\1\54\2\0\1\221\1\0\1\222\4\0\1\57\1\0"+
"\1\60\1\0\1\61\2\0\1\62\3\0\1\223\2\0"+
"\1\224\4\0\1\225\3\0\1\226\17\0\1\67\2\0"+
"\1\227\21\0\1\230\2\0\1\231\57\0\1\30\1\74"+
"\7\0\1\74\2\0\1\30\1\160\32\201\13\161\1\0"+
"\3\161\1\0\2\161\1\162\3\161\3\0\1\161\4\0"+
"\2\161\2\0\1\53\1\0\1\54\2\0\1\55\1\0"+
"\1\56\4\0\1\57\1\0\1\60\1\0\1\61\2\0"+
"\1\62\3\0\1\63\2\0\1\64\4\0\1\65\3\0"+
"\1\66\17\0\1\67\2\0\1\70\21\0\1\71\2\0"+
"\1\72\57\0\2\30\1\73\1\0\1\74\1\0\1\74"+
"\1\75\1\0\1\30\2\0\1\30\1\163\11\41\1\330"+
"\20\41\1\164\12\165\1\74\1\161\1\166\1\161\1\0"+
"\1\161\1\167\1\162\3\161\3\0\1\161\4\0\2\161"+
"\2\0\1\53\1\0\1\54\2\0\1\55\1\0\1\56"+
"\4\0\1\57\1\0\1\60\1\0\1\61\2\0\1\62"+
"\3\0\1\63\2\0\1\64\4\0\1\65\3\0\1\66"+
"\17\0\1\67\2\0\1\70\21\0\1\71\2\0\1\72"+
"\57\0\2\30\1\73\1\0\1\74\1\0\1\74\1\75"+
"\1\0\1\30\2\0\1\30\1\163\15\41\1\331\14\41"+
"\1\164\12\165\1\74\1\161\1\166\1\161\1\0\1\161"+
"\1\167\1\162\3\161\3\0\1\161\4\0\2\161\2\0"+
"\1\53\1\0\1\54\2\0\1\55\1\0\1\56\4\0"+
"\1\57\1\0\1\60\1\0\1\61\2\0\1\62\3\0"+
"\1\63\2\0\1\64\4\0\1\65\3\0\1\66\17\0"+
"\1\67\2\0\1\70\21\0\1\71\2\0\1\72\57\0"+
"\2\30\1\73\1\0\1\74\1\0\1\74\1\75\1\0"+
"\1\30\2\0\1\30\1\163\10\41\1\332\21\41\1\164"+
"\12\165\1\74\1\161\1\166\1\161\1\0\1\161\1\167"+
"\1\162\3\161\3\0\1\161\4\0\2\161\2\0\1\53"+
"\1\0\1\54\2\0\1\55\1\0\1\56\4\0\1\57"+
"\1\0\1\60\1\0\1\61\2\0\1\62\3\0\1\63"+
"\2\0\1\64\4\0\1\65\3\0\1\66\17\0\1\67"+
"\2\0\1\70\21\0\1\71\2\0\1\72\57\0\2\30"+
"\1\73\1\0\1\74\1\0\1\74\1\75\1\0\1\30"+
"\2\0\1\30\1\163\17\41\1\333\12\41\1\164\12\165"+
"\1\74\1\161\1\166\1\161\1\0\1\161\1\167\1\162"+
"\3\161\3\0\1\161\4\0\2\161\7\0\1\241\1\0"+
"\1\242\17\0\1\243\2\0\1\244\4\0\1\245\3\0"+
"\1\246\22\0\1\247\21\0\1\250\2\0\1\251\60\0"+
"\1\107\1\31\6\0\1\107\3\0\1\160\1\334\1\335"+
"\1\336\1\337\1\340\1\341\1\342\1\343\1\344\1\345"+
"\1\346\1\347\1\350\1\351\1\352\1\353\1\354\1\355"+
"\1\356\1\357\1\360\1\361\1\362\1\363\1\364\1\365"+
"\1\161\1\366\2\367\1\366\5\367\1\370\1\0\3\161"+
"\1\0\2\161\1\162\3\161\3\0\1\161\1\206\3\0"+
"\2\161\2\0\1\53\1\0\1\54\2\0\1\252\1\0"+
"\1\77\4\0\1\57\1\0\1\60\1\0\1\61\2\0"+
"\1\62\3\0\1\253\2\0\1\254\4\0\1\102\3\0"+
"\1\255\17\0\1\67\2\0\1\256\21\0\1\257\2\0"+
"\1\260\41\0\1\130\15\0\1\30\1\110\1\31\1\132"+
"\3\0\1\110\1\0\1\110\2\0\1\30\1\160\32\201"+
"\1\161\12\202\1\0\1\161\1\175\1\161\1\0\2\161"+
"\1\162\3\161\3\0\1\161\4\0\2\161\7\0\1\241"+
"\1\0\1\242\17\0\1\243\2\0\1\244\4\0\1\245"+
"\3\0\1\246\22\0\1\247\21\0\1\250\2\0\1\251"+
"\60\0\1\107\1\31\6\0\1\107\3\0\1\160\33\161"+
"\12\202\1\0\3\161\1\0\2\161\1\162\3\161\3\0"+
"\1\161\4\0\2\161\2\0\1\53\1\0\1\54\2\0"+
"\1\76\1\0\1\77\4\0\1\57\1\0\1\60\1\0"+
"\1\61\2\0\1\62\3\0\1\100\2\0\1\101\4\0"+
"\1\102\3\0\1\103\17\0\1\67\2\0\1\104\21\0"+
"\1\105\2\0\1\106\57\0\1\30\2\31\2\0\2\107"+
"\1\110\1\0\1\31\2\0\1\30\1\174\32\41\1\164"+
"\12\371\1\0\1\161\1\175\1\161\1\0\2\176\1\162"+
"\3\161\2\0\1\107\1\161\4\0\2\161\2\0\1\53"+
"\1\0\1\54\2\0\1\76\1\0\1\77\4\0\1\57"+
"\1\0\1\60\1\0\1\61\2\0\1\62\3\0\1\100"+
"\2\0\1\101\4\0\1\102\3\0\1\103\17\0\1\67"+
"\2\0\1\104\21\0\1\105\2\0\1\106\57\0\1\30"+
"\2\31\2\0\2\107\1\110\1\0\1\31\2\0\1\30"+
"\1\174\32\41\1\164\2\177\1\371\2\177\2\371\1\177"+
"\1\371\1\177\1\0\1\161\1\175\1\161\1\0\2\176"+
"\1\162\3\161\2\0\1\107\1\161\4\0\2\161\2\0"+
"\1\53\1\0\1\54\2\0\1\55\1\0\1\56\4\0"+
"\1\57\1\0\1\60\1\0\1\61\2\0\1\62\3\0"+
"\1\63\2\0\1\64\4\0\1\65\3\0\1\66\17\0"+
"\1\67\2\0\1\70\21\0\1\71\2\0\1\72\57\0"+
"\2\30\1\73\1\0\1\74\1\0\1\74\1\75\1\0"+
"\1\30\2\0\1\30\1\372\32\201\1\161\12\327\1\74"+
"\1\161\1\166\1\161\1\0\1\161\1\167\1\162\3\161"+
"\3\0\1\161\4\0\2\161\2\0\1\53\1\0\1\54"+
"\2\0\1\76\1\0\1\77\4\0\1\57\1\0\1\60"+
"\1\0\1\61\2\0\1\62\3\0\1\100\2\0\1\101"+
"\4\0\1\102\3\0\1\103\17\0\1\67\2\0\1\104"+
"\21\0\1\105\2\0\1\106\57\0\1\30\2\31\2\0"+
"\2\107\1\110\1\0\1\31\2\0\1\30\1\373\32\201"+
"\1\161\12\202\1\0\1\161\1\175\1\161\1\0\2\176"+
"\1\162\3\161\2\0\1\107\1\161\4\0\2\161\213\0"+
"\4\374\2\0\1\374\15\0\1\374\6\0\12\374\1\375"+
"\304\0\1\376\236\0\1\377\54\0\1\162\227\0\74\206"+
"\7\0\1\30\4\0\1\30\11\0\1\30\22\0\1\30"+
"\3\0\1\30\13\0\1\73\2\0\1\73\10\0\1\30"+
"\12\0\4\73\45\0\1\30\115\0\1\30\26\0\2\30"+
"\23\0\1\73\1\30\44\0\1\73\21\0\1\73\142\0"+
"\1\73\11\0\1\73\15\0\4\30\2\0\2\30\14\0"+
"\3\30\1\73\1\0\2\73\11\0\3\30\3\0\1\30"+
"\1\0\1\73\4\0\1\73\2\30\5\0\4\73\2\0"+
"\1\30\1\73\12\0\4\73\1\0\2\30\1\0\1\73"+
"\7\0\1\30\117\0\1\30\4\0\1\30\6\0\1\30"+
"\3\0\1\30\6\0\1\30\5\0\1\30\2\0\2\30"+
"\1\0\17\30\2\0\1\30\13\0\7\30\2\0\1\30"+
"\1\0\1\30\1\0\1\30\2\0\1\30\1\0\1\30"+
"\1\0\1\30\1\0\1\30\4\0\1\73\1\0\2\30"+
"\5\0\1\30\1\0\1\30\2\0\3\30\1\0\1\30"+
"\7\0\1\30\1\0\1\30\122\0\1\30\6\0\1\30"+
"\3\0\1\30\3\0\1\30\7\0\1\30\31\0\20\30"+
"\5\0\3\30\3\0\1\30\3\0\2\30\2\0\2\30"+
"\4\0\1\30\4\73\4\0\1\30\4\0\1\30\2\0"+
"\1\30\4\0\1\30\1\0\1\30\1\0\1\30\223\0"+
"\2\73\15\0\4\73\154\0\1\73\15\0\2\73\10\0"+
"\2\73\1\0\1\73\1\0\1\73\11\0\1\73\11\0"+
"\2\73\6\0\1\73\2\0\4\73\3\0\1\73\2\0"+
"\2\73\1\0\3\73\5\0\1\73\1\0\2\73\2\0"+
"\2\73\1\0\4\73\5\0\1\73\1\0\2\73\140\0"+
"\1\u0100\1\0\1\u0101\17\0\1\u0102\2\0\1\u0103\4\0"+
"\1\u0104\3\0\1\u0105\22\0\1\u0106\21\0\1\u0107\2\0"+
"\1\u0108\60\0\1\220\1\73\6\0\1\220\37\0\12\73"+
"\35\0\1\30\4\0\1\30\11\0\1\30\22\0\1\30"+
"\3\0\1\30\13\0\1\74\2\0\1\74\10\0\1\30"+
"\12\0\4\74\45\0\1\30\120\0\1\30\3\0\4\30"+
"\1\0\1\30\4\0\1\30\1\0\2\30\2\0\2\30"+
"\2\0\3\30\1\0\1\30\1\0\1\30\2\0\4\30"+
"\1\0\3\30\1\0\1\30\1\0\3\30\1\0\2\30"+
"\1\0\4\30\1\0\2\30\2\0\10\30\1\0\2\30"+
"\1\0\11\30\1\0\10\30\1\0\13\30\2\0\1\30"+
"\1\0\1\30\1\0\2\30\2\0\1\30\1\0\1\30"+
"\3\0\1\30\113\0\1\30\26\0\2\30\24\0\1\30"+
"\44\0\1\74\176\0\1\74\15\0\4\30\2\0\2\30"+
"\14\0\3\30\1\74\1\0\2\74\11\0\3\30\3\0"+
"\1\30\1\0\1\74\4\0\1\74\2\30\5\0\4\74"+
"\2\0\1\30\1\74\17\0\2\30\1\0\1\74\7\0"+
"\1\30\133\0\1\30\3\0\2\30\12\0\2\30\1\0"+
"\3\30\7\0\1\30\6\0\2\30\1\0\2\30\6\0"+
"\1\30\4\0\2\30\2\0\2\30\5\0\3\30\10\0"+
"\1\30\16\0\1\30\7\0\1\30\7\0\1\30\117\0"+
"\1\30\4\0\1\30\6\0\1\30\3\0\1\30\6\0"+
"\1\30\5\0\1\30\2\0\2\30\1\0\17\30\2\0"+
"\1\30\13\0\7\30\2\0\1\30\1\0\1\30\1\0"+
"\1\30\2\0\1\30\1\0\1\30\1\0\1\30\1\0"+
"\1\30\4\0\1\74\1\0\2\30\5\0\1\30\1\0"+
"\1\30\2\0\3\30\1\0\1\30\7\0\1\30\1\0"+
"\1\30\122\0\1\30\6\0\1\30\3\0\1\30\3\0"+
"\1\30\7\0\1\30\31\0\20\30\5\0\3\30\3\0"+
"\1\30\3\0\2\30\2\0\2\30\4\0\1\30\4\74"+
"\4\0\1\30\4\0\1\30\2\0\1\30\4\0\1\30"+
"\1\0\1\30\1\0\1\30\223\0\2\74\15\0\4\74"+
"\154\0\1\74\15\0\2\74\10\0\2\74\1\0\1\74"+
"\1\0\1\74\11\0\1\74\11\0\2\74\6\0\1\74"+
"\2\0\4\74\3\0\1\74\2\0\2\74\1\0\3\74"+
"\5\0\1\74\1\0\2\74\2\0\2\74\1\0\4\74"+
"\5\0\1\74\1\0\2\74\141\0\1\30\4\0\1\30"+
"\11\0\1\30\22\0\1\30\3\0\1\30\13\0\1\75"+
"\2\0\1\75\10\0\1\30\12\0\4\75\45\0\1\30"+
"\115\0\1\30\26\0\2\30\23\0\1\73\1\30\44\0"+
"\1\75\21\0\1\73\142\0\1\73\11\0\1\75\15\0"+
"\4\30\2\0\2\30\14\0\3\30\1\75\1\0\2\75"+
"\11\0\3\30\3\0\1\30\1\0\1\75\4\0\1\75"+
"\2\30\5\0\4\75\2\0\1\30\1\75\12\0\4\73"+
"\1\0\2\30\1\0\1\75\7\0\1\30\117\0\1\30"+
"\4\0\1\30\6\0\1\30\3\0\1\30\6\0\1\30"+
"\5\0\1\30\2\0\2\30\1\0\17\30\2\0\1\30"+
"\13\0\7\30\2\0\1\30\1\0\1\30\1\0\1\30"+
"\2\0\1\30\1\0\1\30\1\0\1\30\1\0\1\30"+
"\4\0\1\75\1\0\2\30\5\0\1\30\1\0\1\30"+
"\2\0\3\30\1\0\1\30\7\0\1\30\1\0\1\30"+
"\122\0\1\30\6\0\1\30\3\0\1\30\3\0\1\30"+
"\7\0\1\30\31\0\20\30\5\0\3\30\3\0\1\30"+
"\3\0\2\30\2\0\2\30\4\0\1\30\4\75\4\0"+
"\1\30\4\0\1\30\2\0\1\30\4\0\1\30\1\0"+
"\1\30\1\0\1\30\223\0\2\75\15\0\4\75\154\0"+
"\1\75\15\0\2\75\10\0\2\75\1\0\1\75\1\0"+
"\1\75\11\0\1\75\11\0\2\75\6\0\1\75\2\0"+
"\4\75\3\0\1\75\2\0\2\75\1\0\3\75\5\0"+
"\1\75\1\0\2\75\2\0\2\75\1\0\4\75\5\0"+
"\1\75\1\0\2\75\223\0\1\107\2\0\1\107\23\0"+
"\4\107\201\0\1\31\132\0\1\31\207\0\1\31\45\0"+
"\1\107\21\0\1\31\142\0\1\31\11\0\1\107\44\0"+
"\1\107\1\0\2\107\21\0\1\107\4\0\1\107\7\0"+
"\4\107\3\0\1\107\12\0\4\31\4\0\1\107\301\0"+
"\2\31\264\0\1\107\311\0\4\107\251\0\2\107\15\0"+
"\4\107\154\0\1\107\15\0\2\107\10\0\2\107\1\0"+
"\1\107\1\0\1\107\11\0\1\107\11\0\2\107\6\0"+
"\1\107\2\0\4\107\3\0\1\107\2\0\2\107\1\0"+
"\3\107\5\0\1\107\1\0\2\107\2\0\2\107\1\0"+
"\4\107\5\0\1\107\1\0\2\107\141\0\1\30\4\0"+
"\1\30\11\0\1\30\22\0\1\30\3\0\1\30\13\0"+
"\1\110\2\0\1\110\10\0\1\30\12\0\4\110\45\0"+
"\1\30\115\0\1\30\26\0\2\30\23\0\1\31\1\30"+
"\44\0\1\110\21\0\1\31\142\0\1\31\11\0\1\110"+
"\15\0\4\30\2\0\2\30\14\0\3\30\1\110\1\0"+
"\2\110\11\0\3\30\3\0\1\30\1\0\1\110\4\0"+
"\1\110\2\30\5\0\4\110\2\0\1\30\1\110\12\0"+
"\4\31\1\0\2\30\1\0\1\110\7\0\1\30\117\0"+
"\1\30\4\0\1\30\6\0\1\30\3\0\1\30\6\0"+
"\1\30\5\0\1\30\2\0\2\30\1\0\17\30\2\0"+
"\1\30\13\0\7\30\2\0\1\30\1\0\1\30\1\0"+
"\1\30\2\0\1\30\1\0\1\30\1\0\1\30\1\0"+
"\1\30\4\0\1\110\1\0\2\30\5\0\1\30\1\0"+
"\1\30\2\0\3\30\1\0\1\30\7\0\1\30\1\0"+
"\1\30\122\0\1\30\6\0\1\30\3\0\1\30\3\0"+
"\1\30\7\0\1\30\31\0\20\30\5\0\3\30\3\0"+
"\1\30\3\0\2\30\2\0\2\30\4\0\1\30\4\110"+
"\4\0\1\30\4\0\1\30\2\0\1\30\4\0\1\30"+
"\1\0\1\30\1\0\1\30\223\0\2\110\15\0\4\110"+
"\154\0\1\110\15\0\2\110\10\0\2\110\1\0\1\110"+
"\1\0\1\110\11\0\1\110\11\0\2\110\6\0\1\110"+
"\2\0\4\110\3\0\1\110\2\0\2\110\1\0\3\110"+
"\5\0\1\110\1\0\2\110\2\0\2\110\1\0\4\110"+
"\5\0\1\110\1\0\2\110\223\0\1\132\2\0\1\132"+
"\23\0\4\132\305\0\1\132\176\0\1\132\44\0\1\132"+
"\1\0\2\132\21\0\1\132\4\0\1\132\7\0\4\132"+
"\3\0\1\132\22\0\1\132\262\0\1\132\311\0\4\132"+
"\251\0\2\132\15\0\4\132\154\0\1\132\15\0\2\132"+
"\10\0\2\132\1\0\1\132\1\0\1\132\11\0\1\132"+
"\11\0\2\132\6\0\1\132\2\0\4\132\3\0\1\132"+
"\2\0\2\132\1\0\3\132\5\0\1\132\1\0\2\132"+
"\2\0\2\132\1\0\4\132\5\0\1\132\1\0\2\132"+
"\343\0\1\u0109\32\270\1\u010a\12\270\237\0\61\271\1\0"+
"\1\u010b\4\271\1\u010c\1\0\3\271\1\0\1\53\1\0"+
"\1\54\2\0\1\55\1\0\1\56\4\0\1\57\1\0"+
"\1\60\1\0\1\61\2\0\1\62\3\0\1\63\2\0"+
"\1\64\4\0\1\65\3\0\1\66\17\0\1\67\2\0"+
"\1\70\21\0\1\71\2\0\1\72\57\0\2\30\1\73"+
"\1\0\1\74\1\0\1\74\1\75\1\0\1\30\2\0"+
"\1\30\1\163\1\41\2\u010d\1\u010e\1\u010f\10\u010d\1\41"+
"\1\u0110\5\u010d\6\41\1\164\12\165\1\74\1\161\1\166"+
"\1\161\1\0\1\161\1\167\1\162\3\161\3\0\1\161"+
"\4\0\2\161\2\0\1\53\1\0\1\54\2\0\1\55"+
"\1\0\1\56\4\0\1\57\1\0\1\60\1\0\1\61"+
"\2\0\1\62\3\0\1\63\2\0\1\64\4\0\1\65"+
"\3\0\1\66\17\0\1\67\2\0\1\70\21\0\1\71"+
"\2\0\1\72\57\0\2\30\1\73\1\0\1\74\1\0"+
"\1\74\1\75\1\0\1\30\2\0\1\30\1\163\1\u0111"+
"\2\u010d\1\41\1\u010d\1\u0112\6\u010d\4\41\4\u010d\1\41"+
"\1\u010d\1\41\3\u010d\1\164\12\165\1\74\1\161\1\166"+
"\1\161\1\0\1\161\1\167\1\162\3\161\3\0\1\161"+
"\4\0\2\161\2\0\1\53\1\0\1\54\2\0\1\55"+
"\1\0\1\56\4\0\1\57\1\0\1\60\1\0\1\61"+
"\2\0\1\62\3\0\1\63\2\0\1\64\4\0\1\65"+
"\3\0\1\66\17\0\1\67\2\0\1\70\21\0\1\71"+
"\2\0\1\72\57\0\2\30\1\73\1\0\1\74\1\0"+
"\1\74\1\75\1\0\1\30\2\0\1\30\1\163\3\41"+
"\1\u010d\1\41\1\u010d\4\41\1\u010d\10\41\1\u010d\2\41"+
"\1\u010d\2\41\1\u010d\1\164\12\165\1\74\1\161\1\166"+
"\1\161\1\0\1\161\1\167\1\162\3\161\3\0\1\161"+
"\4\0\2\161\2\0\1\53\1\0\1\54\2\0\1\55"+
"\1\0\1\56\4\0\1\57\1\0\1\60\1\0\1\61"+
"\2\0\1\62\3\0\1\63\2\0\1\64\4\0\1\65"+
"\3\0\1\66\17\0\1\67\2\0\1\70\21\0\1\71"+
"\2\0\1\72\57\0\2\30\1\73\1\0\1\74\1\0"+
"\1\74\1\75\1\0\1\30\2\0\1\30\1\163\1\41"+
"\1\u010d\1\u0113\2\u010d\2\41\1\u010d\6\41\3\u010d\11\41"+
"\1\164\12\165\1\74\1\161\1\166\1\161\1\0\1\161"+
"\1\167\1\162\3\161\3\0\1\161\4\0\2\161\2\0"+
"\1\53\1\0\1\54\2\0\1\55\1\0\1\56\4\0"+
"\1\57\1\0\1\60\1\0\1\61\2\0\1\62\3\0"+
"\1\63\2\0\1\64\4\0\1\65\3\0\1\66\17\0"+
"\1\67\2\0\1\70\21\0\1\71\2\0\1\72\57\0"+
"\2\30\1\73\1\0\1\74\1\0\1\74\1\75\1\0"+
"\1\30\2\0\1\30\1\163\3\41\1\u010d\1\41\1\u010d"+
"\10\41\1\u010d\1\41\2\u010d\10\41\1\164\12\165\1\74"+
"\1\161\1\166\1\161\1\0\1\161\1\167\1\162\3\161"+
"\3\0\1\161\4\0\2\161\2\0\1\53\1\0\1\54"+
"\2\0\1\55\1\0\1\56\4\0\1\57\1\0\1\60"+
"\1\0\1\61\2\0\1\62\3\0\1\63\2\0\1\64"+
"\4\0\1\65\3\0\1\66\17\0\1\67\2\0\1\70"+
"\21\0\1\71\2\0\1\72\57\0\2\30\1\73\1\0"+
"\1\74\1\0\1\74\1\75\1\0\1\30\2\0\1\30"+
"\1\163\4\41\1\u0114\5\41\1\u010d\17\41\1\164\12\165"+
"\1\74\1\161\1\166\1\161\1\0\1\161\1\167\1\162"+
"\3\161\3\0\1\161\4\0\2\161\2\0\1\53\1\0"+
"\1\54\2\0\1\55\1\0\1\56\4\0\1\57\1\0"+
"\1\60\1\0\1\61\2\0\1\62\3\0\1\63\2\0"+
"\1\64\4\0\1\65\3\0\1\66\17\0\1\67\2\0"+
"\1\70\21\0\1\71\2\0\1\72\57\0\2\30\1\73"+
"\1\0\1\74\1\0\1\74\1\75\1\0\1\30\2\0"+
"\1\30\1\163\4\41\2\u010d\2\41\1\u010d\1\41\1\u010d"+
"\13\41\1\u010d\2\41\1\u010d\1\164\12\165\1\74\1\161"+
"\1\166\1\161\1\0\1\161\1\167\1\162\3\161\3\0"+
"\1\161\4\0\2\161\2\0\1\53\1\0\1\54\2\0"+
"\1\55\1\0\1\56\4\0\1\57\1\0\1\60\1\0"+
"\1\61\2\0\1\62\3\0\1\63\2\0\1\64\4\0"+
"\1\65\3\0\1\66\17\0\1\67\2\0\1\70\21\0"+
"\1\71\2\0\1\72\57\0\2\30\1\73\1\0\1\74"+
"\1\0\1\74\1\75\1\0\1\30\2\0\1\30\1\163"+
"\1\u010d\1\41\3\u010d\1\u0115\14\u010d\2\41\2\u010d\2\41"+
"\1\u010d\1\41\1\164\12\165\1\74\1\161\1\166\1\161"+
"\1\0\1\161\1\167\1\162\3\161\3\0\1\161\4\0"+
"\2\161\2\0\1\53\1\0\1\54\2\0\1\55\1\0"+
"\1\56\4\0\1\57\1\0\1\60\1\0\1\61\2\0"+
"\1\62\3\0\1\63\2\0\1\64\4\0\1\65\3\0"+
"\1\66\17\0\1\67\2\0\1\70\21\0\1\71\2\0"+
"\1\72\57\0\2\30\1\73\1\0\1\74\1\0\1\74"+
"\1\75\1\0\1\30\2\0\1\30\1\163\2\41\4\u010d"+
"\3\41\2\u010d\1\u0116\1\u010d\1\41\2\u010d\12\41\1\164"+
"\12\165\1\74\1\161\1\166\1\161\1\0\1\161\1\167"+
"\1\162\3\161\3\0\1\161\4\0\2\161\2\0\1\53"+
"\1\0\1\54\2\0\1\55\1\0\1\56\4\0\1\57"+
"\1\0\1\60\1\0\1\61\2\0\1\62\3\0\1\63"+
"\2\0\1\64\4\0\1\65\3\0\1\66\17\0\1\67"+
"\2\0\1\70\21\0\1\71\2\0\1\72\57\0\2\30"+
"\1\73\1\0\1\74\1\0\1\74\1\75\1\0\1\30"+
"\2\0\1\30\1\163\2\u010d\2\41\1\u010d\3\41\1\u010d"+
"\5\41\3\u010d\3\41\1\u010d\2\41\3\u010d\1\164\12\165"+
"\1\74\1\161\1\166\1\161\1\0\1\161\1\167\1\162"+
"\3\161\3\0\1\161\4\0\2\161\2\0\1\53\1\0"+
"\1\54\2\0\1\55\1\0\1\56\4\0\1\57\1\0"+
"\1\60\1\0\1\61\2\0\1\62\3\0\1\63\2\0"+
"\1\64\4\0\1\65\3\0\1\66\17\0\1\67\2\0"+
"\1\70\21\0\1\71\2\0\1\72\57\0\2\30\1\73"+
"\1\0\1\74\1\0\1\74\1\75\1\0\1\30\2\0"+
"\1\30\1\163\5\u010d\1\u0117\1\41\1\u010d\1\u0118\7\u010d"+
"\1\u0119\3\u010d\1\41\1\u010d\1\41\3\u010d\1\164\12\165"+
"\1\74\1\161\1\166\1\161\1\0\1\161\1\167\1\162"+
"\3\161\3\0\1\161\4\0\2\161\2\0\1\53\1\0"+
"\1\54\2\0\1\55\1\0\1\56\4\0\1\57\1\0"+
"\1\60\1\0\1\61\2\0\1\62\3\0\1\63\2\0"+
"\1\64\4\0\1\65\3\0\1\66\17\0\1\67\2\0"+
"\1\70\21\0\1\71\2\0\1\72\57\0\2\30\1\73"+
"\1\0\1\74\1\0\1\74\1\75\1\0\1\30\2\0"+
"\1\30\1\163\1\u011a\1\u010d\1\41\1\u0111\6\u010d\3\41"+
"\1\u010d\2\41\1\u010d\2\41\1\u010d\6\41\1\164\12\165"+
"\1\74\1\161\1\166\1\161\1\0\1\161\1\167\1\162"+
"\3\161\3\0\1\161\4\0\2\161\2\0\1\53\1\0"+
"\1\54\2\0\1\55\1\0\1\56\4\0\1\57\1\0"+
"\1\60\1\0\1\61\2\0\1\62\3\0\1\63\2\0"+
"\1\64\4\0\1\65\3\0\1\66\17\0\1\67\2\0"+
"\1\70\21\0\1\71\2\0\1\72\57\0\2\30\1\73"+
"\1\0\1\74\1\0\1\74\1\75\1\0\1\30\2\0"+
"\1\30\1\163\1\u010d\31\41\1\164\12\165\1\74\1\161"+
"\1\166\1\161\1\0\1\161\1\167\1\162\3\161\3\0"+
"\1\161\4\0\2\161\2\0\1\53\1\0\1\54\2\0"+
"\1\55\1\0\1\56\4\0\1\57\1\0\1\60\1\0"+
"\1\61\2\0\1\62\3\0\1\63\2\0\1\64\4\0"+
"\1\65\3\0\1\66\17\0\1\67\2\0\1\70\21\0"+
"\1\71\2\0\1\72\57\0\2\30\1\73\1\0\1\74"+
"\1\0\1\74\1\75\1\0\1\30\2\0\1\30\1\163"+
"\1\u010d\2\41\1\u010d\1\u011b\1\41\2\u010d\1\41\3\u010d"+
"\2\41\2\u010d\1\41\1\u010d\3\41\1\u010d\2\41\2\u010d"+
"\1\164\12\165\1\74\1\161\1\166\1\161\1\0\1\161"+
"\1\167\1\162\3\161\3\0\1\161\4\0\2\161\2\0"+
"\1\53\1\0\1\54\2\0\1\55\1\0\1\56\4\0"+
"\1\57\1\0\1\60\1\0\1\61\2\0\1\62\3\0"+
"\1\63\2\0\1\64\4\0\1\65\3\0\1\66\17\0"+
"\1\67\2\0\1\70\21\0\1\71\2\0\1\72\57\0"+
"\2\30\1\73\1\0\1\74\1\0\1\74\1\75\1\0"+
"\1\30\2\0\1\30\1\163\6\u010d\1\41\5\u010d\3\41"+
"\2\u010d\1\41\10\u010d\1\164\12\165\1\74\1\161\1\166"+
"\1\161\1\0\1\161\1\167\1\162\3\161\3\0\1\161"+
"\4\0\2\161\2\0\1\53\1\0\1\54\2\0\1\55"+
"\1\0\1\56\4\0\1\57\1\0\1\60\1\0\1\61"+
"\2\0\1\62\3\0\1\63\2\0\1\64\4\0\1\65"+
"\3\0\1\66\17\0\1\67\2\0\1\70\21\0\1\71"+
"\2\0\1\72\57\0\2\30\1\73\1\0\1\74\1\0"+
"\1\74\1\75\1\0\1\30\2\0\1\30\1\163\1\41"+
"\2\u010d\1\u0118\1\u011c\3\u010d\1\41\3\u010d\1\41\1\u010d"+
"\1\41\1\u010d\1\41\1\u010d\1\41\1\u010d\1\41\3\u010d"+
"\1\41\1\u010d\1\164\12\165\1\74\1\161\1\166\1\161"+
"\1\0\1\161\1\167\1\162\3\161\3\0\1\161\4\0"+
"\2\161\2\0\1\53\1\0\1\54\2\0\1\55\1\0"+
"\1\56\4\0\1\57\1\0\1\60\1\0\1\61\2\0"+
"\1\62\3\0\1\63\2\0\1\64\4\0\1\65\3\0"+
"\1\66\17\0\1\67\2\0\1\70\21\0\1\71\2\0"+
"\1\72\57\0\2\30\1\73\1\0\1\74\1\0\1\74"+
"\1\75\1\0\1\30\2\0\1\30\1\163\1\u010d\6\41"+
"\1\u010d\6\41\1\u010d\4\41\1\u010d\4\41\2\u010d\1\164"+
"\12\165\1\74\1\161\1\166\1\161\1\0\1\161\1\167"+
"\1\162\3\161\3\0\1\161\4\0\2\161\2\0\1\53"+
"\1\0\1\54\2\0\1\55\1\0\1\56\4\0\1\57"+
"\1\0\1\60\1\0\1\61\2\0\1\62\3\0\1\63"+
"\2\0\1\64\4\0\1\65\3\0\1\66\17\0\1\67"+
"\2\0\1\70\21\0\1\71\2\0\1\72\57\0\2\30"+
"\1\73\1\0\1\74\1\0\1\74\1\75\1\0\1\30"+
"\2\0\1\30\1\163\6\41\1\u010d\7\41\1\u010d\13\41"+
"\1\164\12\165\1\74\1\161\1\166\1\161\1\0\1\161"+
"\1\167\1\162\3\161\3\0\1\161\4\0\2\161\2\0"+
"\1\53\1\0\1\54\2\0\1\55\1\0\1\56\4\0"+
"\1\57\1\0\1\60\1\0\1\61\2\0\1\62\3\0"+
"\1\63\2\0\1\64\4\0\1\65\3\0\1\66\17\0"+
"\1\67\2\0\1\70\21\0\1\71\2\0\1\72\57\0"+
"\2\30\1\73\1\0\1\74\1\0\1\74\1\75\1\0"+
"\1\30\2\0\1\30\1\163\13\41\1\u011d\6\41\1\u011e"+
"\7\41\1\164\12\165\1\74\1\161\1\166\1\161\1\0"+
"\1\161\1\167\1\162\3\161\3\0\1\161\4\0\2\161"+
"\2\0\1\53\1\0\1\54\2\0\1\55\1\0\1\56"+
"\4\0\1\57\1\0\1\60\1\0\1\61\2\0\1\62"+
"\3\0\1\63\2\0\1\64\4\0\1\65\3\0\1\66"+
"\17\0\1\67\2\0\1\70\21\0\1\71\2\0\1\72"+
"\57\0\2\30\1\73\1\0\1\74\1\0\1\74\1\75"+
"\1\0\1\30\2\0\1\30\1\163\1\u010d\11\41\1\u010d"+
"\6\41\1\u010d\10\41\1\164\12\165\1\74\1\161\1\166"+
"\1\161\1\0\1\161\1\167\1\162\3\161\3\0\1\161"+
"\4\0\2\161\2\0\1\53\1\0\1\54\2\0\1\55"+
"\1\0\1\56\4\0\1\57\1\0\1\60\1\0\1\61"+
"\2\0\1\62\3\0\1\63\2\0\1\64\4\0\1\65"+
"\3\0\1\66\17\0\1\67\2\0\1\70\21\0\1\71"+
"\2\0\1\72\57\0\2\30\1\73\1\0\1\74\1\0"+
"\1\74\1\75\1\0\1\30\2\0\1\30\1\163\1\u010d"+
"\1\41\6\u010d\1\u011f\1\41\2\u010d\2\41\2\u010d\1\41"+
"\1\u010d\1\41\6\u010d\1\41\1\164\12\165\1\74\1\161"+
"\1\166\1\161\1\0\1\161\1\167\1\162\3\161\3\0"+
"\1\161\4\0\2\161\2\0\1\53\1\0\1\54\2\0"+
"\1\55\1\0\1\56\4\0\1\57\1\0\1\60\1\0"+
"\1\61\2\0\1\62\3\0\1\63\2\0\1\64\4\0"+
"\1\65\3\0\1\66\17\0\1\67\2\0\1\70\21\0"+
"\1\71\2\0\1\72\57\0\2\30\1\73\1\0\1\74"+
"\1\0\1\74\1\75\1\0\1\30\2\0\1\30\1\163"+
"\4\41\1\u010d\5\41\2\u010d\3\41\2\u010d\10\41\1\u010d"+
"\1\164\12\165\1\74\1\161\1\166\1\161\1\0\1\161"+
"\1\167\1\162\3\161\3\0\1\161\4\0\2\161\2\0"+
"\1\53\1\0\1\54\2\0\1\55\1\0\1\56\4\0"+
"\1\57\1\0\1\60\1\0\1\61\2\0\1\62\3\0"+
"\1\63\2\0\1\64\4\0\1\65\3\0\1\66\17\0"+
"\1\67\2\0\1\70\21\0\1\71\2\0\1\72\57\0"+
"\2\30\1\73\1\0\1\74\1\0\1\74\1\75\1\0"+
"\1\30\2\0\1\30\1\163\3\41\1\u010d\1\41\1\u0120"+
"\4\41\1\u010d\2\41\1\u010d\14\41\1\164\12\165\1\74"+
"\1\161\1\166\1\161\1\0\1\161\1\167\1\162\3\161"+
"\3\0\1\161\4\0\2\161\2\0\1\53\1\0\1\54"+
"\2\0\1\55\1\0\1\56\4\0\1\57\1\0\1\60"+
"\1\0\1\61\2\0\1\62\3\0\1\63\2\0\1\64"+
"\4\0\1\65\3\0\1\66\17\0\1\67\2\0\1\70"+
"\21\0\1\71\2\0\1\72\57\0\2\30\1\73\1\0"+
"\1\74\1\0\1\74\1\75\1\0\1\30\2\0\1\30"+
"\1\163\2\u010d\1\41\1\u010d\3\41\2\u010d\2\41\1\u010d"+
"\4\41\1\u010d\11\41\1\164\12\165\1\74\1\161\1\166"+
"\1\161\1\0\1\161\1\167\1\162\3\161\3\0\1\161"+
"\4\0\2\161\2\0\1\53\1\0\1\54\2\0\1\55"+
"\1\0\1\56\4\0\1\57\1\0\1\60\1\0\1\61"+
"\2\0\1\62\3\0\1\63\2\0\1\64\4\0\1\65"+
"\3\0\1\66\17\0\1\67\2\0\1\70\21\0\1\71"+
"\2\0\1\72\57\0\2\30\1\73\1\0\1\74\1\0"+
"\1\74\1\75\1\0\1\30\2\0\1\30\1\163\3\41"+
"\1\u010d\13\41\1\u010d\12\41\1\164\12\165\1\74\1\161"+
"\1\166\1\161\1\0\1\161\1\167\1\162\3\161\3\0"+
"\1\161\4\0\2\161\2\0\1\53\1\0\1\54\2\0"+
"\1\55\1\0\1\56\4\0\1\57\1\0\1\60\1\0"+
"\1\61\2\0\1\62\3\0\1\63\2\0\1\64\4\0"+
"\1\65\3\0\1\66\17\0\1\67\2\0\1\70\21\0"+
"\1\71\2\0\1\72\57\0\2\30\1\73\1\0\1\74"+
"\1\0\1\74\1\75\1\0\1\30\2\0\1\30\1\163"+
"\3\41\2\u010d\2\41\2\u010d\1\41\2\u010d\1\41\1\u010d"+
"\3\41\1\u010d\1\41\1\u010d\1\41\1\u010d\2\41\1\u010d"+
"\1\41\1\164\12\165\1\74\1\161\1\166\1\161\1\0"+
"\1\161\1\167\1\162\3\161\3\0\1\161\4\0\2\161"+
"\212\0\1\u0121\32\324\1\164\12\324\1\0\3\161\1\0"+
"\2\161\1\162\3\161\3\0\1\161\4\0\2\161\7\0"+
"\1\u0100\1\0\1\u0101\17\0\1\u0102\2\0\1\u0103\4\0"+
"\1\u0104\3\0\1\u0105\22\0\1\u0106\21\0\1\u0107\2\0"+
"\1\u0108\60\0\1\220\1\73\6\0\1\220\3\0\1\160"+
"\1\334\1\335\1\336\1\337\1\340\1\341\1\342\1\343"+
"\1\344\1\345\1\346\1\347\1\350\1\351\1\352\1\353"+
"\1\354\1\355\1\356\1\357\1\360\1\361\1\362\1\363"+
"\1\364\1\365\1\161\12\165\1\0\3\161\1\0\2\161"+
"\1\162\3\161\3\0\1\161\1\206\3\0\2\161\7\0"+
"\1\u0100\1\0\1\u0101\17\0\1\u0102\2\0\1\u0103\4\0"+
"\1\u0104\3\0\1\u0105\22\0\1\u0106\21\0\1\u0107\2\0"+
"\1\u0108\60\0\1\220\1\73\6\0\1\220\3\0\1\160"+
"\33\161\12\327\1\0\3\161\1\0\2\161\1\162\3\161"+
"\3\0\1\161\4\0\2\161\2\0\1\53\1\0\1\54"+
"\2\0\1\211\1\0\1\56\4\0\1\57\1\0\1\60"+
"\1\0\1\61\2\0\1\62\3\0\1\212\2\0\1\213"+
"\4\0\1\65\3\0\1\214\17\0\1\67\2\0\1\215"+
"\21\0\1\216\2\0\1\217\57\0\1\30\2\73\2\0"+
"\2\220\1\75\1\0\1\73\2\0\1\30\1\u0122\32\201"+
"\1\161\12\327\1\0\1\161\1\166\1\161\1\0\2\326"+
"\1\162\3\161\2\0\1\220\1\161\4\0\2\161\2\0"+
"\1\53\1\0\1\54\2\0\1\55\1\0\1\56\4\0"+
"\1\57\1\0\1\60\1\0\1\61\2\0\1\62\3\0"+
"\1\63\2\0\1\64\4\0\1\65\3\0\1\66\17\0"+
"\1\67\2\0\1\70\21\0\1\71\2\0\1\72\57\0"+
"\2\30\1\73\1\0\1\74\1\0\1\74\1\75\1\0"+
"\1\30\2\0\1\30\1\163\3\41\1\u0123\26\41\1\164"+
"\12\165\1\74\1\161\1\166\1\161\1\0\1\161\1\167"+
"\1\162\3\161\3\0\1\161\4\0\2\161\2\0\1\53"+
"\1\0\1\54\2\0\1\55\1\0\1\56\4\0\1\57"+
"\1\0\1\60\1\0\1\61\2\0\1\62\3\0\1\63"+
"\2\0\1\64\4\0\1\65\3\0\1\66\17\0\1\67"+
"\2\0\1\70\21\0\1\71\2\0\1\72\57\0\2\30"+
"\1\73\1\0\1\74\1\0\1\74\1\75\1\0\1\30"+
"\2\0\1\30\1\163\32\41\1\164\12\165\1\u0124\1\161"+
"\1\166\1\161\1\0\1\161\1\167\1\162\3\161\3\0"+
"\1\161\4\0\2\161\2\0\1\53\1\0\1\54\2\0"+
"\1\55\1\0\1\56\4\0\1\57\1\0\1\60\1\0"+
"\1\61\2\0\1\62\3\0\1\63\2\0\1\64\4\0"+
"\1\65\3\0\1\66\17\0\1\67\2\0\1\70\21\0"+
"\1\71\2\0\1\72\57\0\2\30\1\73\1\0\1\74"+
"\1\0\1\74\1\75\1\0\1\30\2\0\1\30\1\163"+
"\11\41\1\u0125\20\41\1\164\12\165\1\74\1\161\1\166"+
"\1\161\1\0\1\161\1\167\1\162\3\161\3\0\1\161"+
"\4\0\2\161\2\0\1\53\1\0\1\54\2\0\1\55"+
"\1\0\1\56\4\0\1\57\1\0\1\60\1\0\1\61"+
"\2\0\1\62\3\0\1\63\2\0\1\64\4\0\1\65"+
"\3\0\1\66\17\0\1\67\2\0\1\70\21\0\1\71"+
"\2\0\1\72\57\0\2\30\1\73\1\0\1\74\1\0"+
"\1\74\1\75\1\0\1\30\2\0\1\30\1\163\15\41"+
"\1\u0126\14\41\1\164\12\165\1\74\1\161\1\166\1\161"+
"\1\0\1\161\1\167\1\162\3\161\3\0\1\161\4\0"+
"\2\161\212\0\1\u0121\1\324\2\u0127\1\u0128\1\u0129\10\u0127"+
"\1\324\1\u012a\5\u0127\6\324\1\164\12\324\1\0\3\161"+
"\1\0\2\161\1\162\3\161\3\0\1\161\4\0\2\161"+
"\212\0\1\u0121\1\u012b\2\u0127\1\324\1\u0127\1\u012c\6\u0127"+
"\4\324\4\u0127\1\324\1\u0127\1\324\3\u0127\1\164\12\324"+
"\1\0\3\161\1\0\2\161\1\162\3\161\3\0\1\161"+
"\4\0\2\161\212\0\1\u0121\3\324\1\u0127\1\324\1\u0127"+
"\4\324\1\u0127\10\324\1\u0127\2\324\1\u0127\2\324\1\u0127"+
"\1\164\12\324\1\0\3\161\1\0\2\161\1\162\3\161"+
"\3\0\1\161\4\0\2\161\212\0\1\u0121\1\324\1\u0127"+
"\1\u012d\2\u0127\2\324\1\u0127\6\324\3\u0127\11\324\1\164"+
"\12\324\1\0\3\161\1\0\2\161\1\162\3\161\3\0"+
"\1\161\4\0\2\161\212\0\1\u0121\3\324\1\u0127\1\324"+
"\1\u0127\10\324\1\u0127\1\324\2\u0127\10\324\1\164\12\324"+
"\1\0\3\161\1\0\2\161\1\162\3\161\3\0\1\161"+
"\4\0\2\161\212\0\1\u0121\4\324\1\u012e\5\324\1\u0127"+
"\17\324\1\164\12\324\1\0\3\161\1\0\2\161\1\162"+
"\3\161\3\0\1\161\4\0\2\161\212\0\1\u0121\4\324"+
"\2\u0127\2\324\1\u0127\1\324\1\u0127\13\324\1\u0127\2\324"+
"\1\u0127\1\164\12\324\1\0\3\161\1\0\2\161\1\162"+
"\3\161\3\0\1\161\4\0\2\161\212\0\1\u0121\1\u0127"+
"\1\324\3\u0127\1\u012f\14\u0127\2\324\2\u0127\2\324\1\u0127"+
"\1\324\1\164\12\324\1\0\3\161\1\0\2\161\1\162"+
"\3\161\3\0\1\161\4\0\2\161\212\0\1\u0121\2\324"+
"\4\u0127\3\324\2\u0127\1\u0130\1\u0127\1\324\2\u0127\12\324"+
"\1\164\12\324\1\0\3\161\1\0\2\161\1\162\3\161"+
"\3\0\1\161\4\0\2\161\212\0\1\u0121\2\u0127\2\324"+
"\1\u0127\3\324\1\u0127\5\324\3\u0127\3\324\1\u0127\2\324"+
"\3\u0127\1\164\12\324\1\0\3\161\1\0\2\161\1\162"+
"\3\161\3\0\1\161\4\0\2\161\212\0\1\u0121\5\u0127"+
"\1\u0131\1\324\1\u0127\1\u0132\7\u0127\1\u0133\3\u0127\1\324"+
"\1\u0127\1\324\3\u0127\1\164\12\324\1\0\3\161\1\0"+
"\2\161\1\162\3\161\3\0\1\161\4\0\2\161\212\0"+
"\1\u0121\1\u0134\1\u0127\1\324\1\u012b\6\u0127\3\324\1\u0127"+
"\2\324\1\u0127\2\324\1\u0127\6\324\1\164\12\324\1\0"+
"\3\161\1\0\2\161\1\162\3\161\3\0\1\161\4\0"+
"\2\161\212\0\1\u0121\1\u0127\31\324\1\164\12\324\1\0"+
"\3\161\1\0\2\161\1\162\3\161\3\0\1\161\4\0"+
"\2\161\212\0\1\u0121\1\u0127\2\324\1\u0127\1\u0135\1\324"+
"\2\u0127\1\324\3\u0127\2\324\2\u0127\1\324\1\u0127\3\324"+
"\1\u0127\2\324\2\u0127\1\164\12\324\1\0\3\161\1\0"+
"\2\161\1\162\3\161\3\0\1\161\4\0\2\161\212\0"+
"\1\u0121\6\u0127\1\324\5\u0127\3\324\2\u0127\1\324\10\u0127"+
"\1\164\12\324\1\0\3\161\1\0\2\161\1\162\3\161"+
"\3\0\1\161\4\0\2\161\212\0\1\u0121\1\324\2\u0127"+
"\1\u0132\1\u0136\3\u0127\1\324\3\u0127\1\324\1\u0127\1\324"+
"\1\u0127\1\324\1\u0127\1\324\1\u0127\1\324\3\u0127\1\324"+
"\1\u0127\1\164\12\324\1\0\3\161\1\0\2\161\1\162"+
"\3\161\3\0\1\161\4\0\2\161\212\0\1\u0121\1\u0127"+
"\6\324\1\u0127\6\324\1\u0127\4\324\1\u0127\4\324\2\u0127"+
"\1\164\12\324\1\0\3\161\1\0\2\161\1\162\3\161"+
"\3\0\1\161\4\0\2\161\212\0\1\u0121\6\324\1\u0127"+
"\7\324\1\u0127\13\324\1\164\12\324\1\0\3\161\1\0"+
"\2\161\1\162\3\161\3\0\1\161\4\0\2\161\212\0"+
"\1\u0121\13\324\1\u0137\6\324\1\u0138\7\324\1\164\12\324"+
"\1\0\3\161\1\0\2\161\1\162\3\161\3\0\1\161"+
"\4\0\2\161\212\0\1\u0121\1\u0127\11\324\1\u0127\6\324"+
"\1\u0127\10\324\1\164\12\324\1\0\3\161\1\0\2\161"+
"\1\162\3\161\3\0\1\161\4\0\2\161\212\0\1\u0121"+
"\1\u0127\1\324\6\u0127\1\u0139\1\324\2\u0127\2\324\2\u0127"+
"\1\324\1\u0127\1\324\6\u0127\1\324\1\164\12\324\1\0"+
"\3\161\1\0\2\161\1\162\3\161\3\0\1\161\4\0"+
"\2\161\212\0\1\u0121\4\324\1\u0127\5\324\2\u0127\3\324"+
"\2\u0127\10\324\1\u0127\1\164\12\324\1\0\3\161\1\0"+
"\2\161\1\162\3\161\3\0\1\161\4\0\2\161\212\0"+
"\1\u0121\3\324\1\u0127\1\324\1\u013a\4\324\1\u0127\2\324"+
"\1\u0127\14\324\1\164\12\324\1\0\3\161\1\0\2\161"+
"\1\162\3\161\3\0\1\161\4\0\2\161\212\0\1\u0121"+
"\2\u0127\1\324\1\u0127\3\324\2\u0127\2\324\1\u0127\4\324"+
"\1\u0127\11\324\1\164\12\324\1\0\3\161\1\0\2\161"+
"\1\162\3\161\3\0\1\161\4\0\2\161\212\0\1\u0121"+
"\3\324\1\u0127\13\324\1\u0127\12\324\1\164\12\324\1\0"+
"\3\161\1\0\2\161\1\162\3\161\3\0\1\161\4\0"+
"\2\161\212\0\1\u0121\3\324\2\u0127\2\324\2\u0127\1\324"+
"\2\u0127\1\324\1\u0127\3\324\1\u0127\1\324\1\u0127\1\324"+
"\1\u0127\2\324\1\u0127\1\324\1\164\12\324\1\0\3\161"+
"\1\0\2\161\1\162\3\161\3\0\1\161\4\0\2\161"+
"\2\0\1\53\1\0\1\54\2\0\1\76\1\0\1\77"+
"\4\0\1\57\1\0\1\60\1\0\1\61\2\0\1\62"+
"\3\0\1\100\2\0\1\101\4\0\1\102\3\0\1\103"+
"\17\0\1\67\2\0\1\104\21\0\1\105\2\0\1\106"+
"\57\0\1\30\2\31\2\0\2\107\1\110\1\0\1\31"+
"\2\0\1\30\1\u013b\32\41\1\164\12\367\1\0\1\161"+
"\1\175\1\161\1\0\2\176\1\162\3\161\2\0\1\107"+
"\1\161\4\0\2\161\2\0\1\53\1\0\1\54\2\0"+
"\1\76\1\0\1\77\4\0\1\57\1\0\1\60\1\0"+
"\1\61\2\0\1\62\3\0\1\100\2\0\1\101\4\0"+
"\1\102\3\0\1\103\17\0\1\67\2\0\1\104\21\0"+
"\1\105\2\0\1\106\57\0\1\30\2\31\2\0\2\107"+
"\1\110\1\0\1\31\2\0\1\30\1\u013b\32\41\1\164"+
"\12\u013c\1\0\1\161\1\175\1\161\1\0\2\176\1\162"+
"\3\161\2\0\1\107\1\161\4\0\2\161\2\0\1\53"+
"\1\0\1\54\2\0\1\76\1\0\1\77\4\0\1\57"+
"\1\0\1\60\1\0\1\61\2\0\1\62\3\0\1\100"+
"\2\0\1\101\4\0\1\102\3\0\1\103\17\0\1\67"+
"\2\0\1\104\21\0\1\105\2\0\1\106\57\0\1\30"+
"\2\31\2\0\2\107\1\110\1\0\1\31\2\0\1\30"+
"\1\u013b\32\41\1\164\1\367\1\u013d\1\u013c\2\367\2\u013c"+
"\1\367\1\u013c\1\367\1\0\1\161\1\175\1\161\1\0"+
"\2\176\1\162\3\161\2\0\1\107\1\161\4\0\2\161"+
"\2\0\1\53\1\0\1\54\2\0\1\76\1\0\1\77"+
"\4\0\1\57\1\0\1\60\1\0\1\61\2\0\1\62"+
"\3\0\1\100\2\0\1\101\4\0\1\102\3\0\1\103"+
"\17\0\1\67\2\0\1\104\21\0\1\105\2\0\1\106"+
"\57\0\1\30\2\31\2\0\2\107\1\110\1\0\1\31"+
"\2\0\1\30\1\u013e\32\41\1\164\12\371\1\0\1\161"+
"\1\175\1\161\1\0\2\176\1\162\3\161\2\0\1\107"+
"\1\161\4\0\2\161\2\0\1\53\1\0\1\54\2\0"+
"\1\221\1\0\1\222\4\0\1\57\1\0\1\60\1\0"+
"\1\61\2\0\1\62\3\0\1\223\2\0\1\224\4\0"+
"\1\225\3\0\1\226\17\0\1\67\2\0\1\227\21\0"+
"\1\230\2\0\1\231\57\0\1\30\1\74\7\0\1\74"+
"\2\0\1\30\1\160\32\201\13\161\1\0\3\161\1\0"+
"\2\161\1\162\3\161\3\0\1\161\1\206\3\0\2\161"+
"\7\0\1\241\1\0\1\242\17\0\1\243\2\0\1\244"+
"\4\0\1\245\3\0\1\246\22\0\1\247\21\0\1\250"+
"\2\0\1\251\60\0\1\107\1\31\6\0\1\107\3\0"+
"\1\160\33\161\12\202\1\0\3\161\1\0\2\161\1\162"+
"\3\161\3\0\1\161\1\206\3\0\2\161\213\0\4\u013f"+
"\2\0\1\u013f\15\0\1\u013f\6\0\12\u013f\1\375\237\0"+
"\4\u0140\2\0\1\u0140\15\0\1\u0140\6\0\12\u0140\1\u0141"+
"\237\0\4\u0142\2\0\1\u0142\15\0\1\u0142\6\0\1\u0143"+
"\2\u0144\1\u0143\5\u0144\1\u0145\14\0\1\u0146\222\0\46\161"+
"\1\0\3\161\1\0\2\161\1\0\3\161\3\0\1\161"+
"\1\206\3\0\2\161\72\0\1\220\2\0\1\220\23\0"+
"\4\220\201\0\1\73\132\0\1\73\207\0\1\73\45\0"+
"\1\220\21\0\1\73\142\0\1\73\11\0\1\220\44\0"+
"\1\220\1\0\2\220\21\0\1\220\4\0\1\220\7\0"+
"\4\220\3\0\1\220\12\0\4\73\4\0\1\220\301\0"+
"\2\73\264\0\1\220\311\0\4\220\251\0\2\220\15\0"+
"\4\220\154\0\1\220\15\0\2\220\10\0\2\220\1\0"+
"\1\220\1\0\1\220\11\0\1\220\11\0\2\220\6\0"+
"\1\220\2\0\4\220\3\0\1\220\2\0\2\220\1\0"+
"\3\220\5\0\1\220\1\0\2\220\2\0\2\220\1\0"+
"\4\220\5\0\1\220\1\0\2\220\344\0\1\u0147\1\u0148"+
"\1\u0149\1\u014a\1\u014b\1\u014c\1\u014d\1\u014e\1\u014f\1\u0150"+
"\1\u0151\1\u0152\1\u0153\1\u0154\1\u0155\1\u0156\1\u0157\1\u0158"+
"\1\u0159\1\u015a\1\u015b\1\u015c\1\u015d\1\u015e\1\u015f\1\u0160"+
"\1\0\12\270\240\0\32\270\1\u010a\12\270\237\0\74\271"+
"\1\0\1\53\1\0\1\54\2\0\1\55\1\0\1\56"+
"\4\0\1\57\1\0\1\60\1\0\1\61\2\0\1\62"+
"\3\0\1\63\2\0\1\64\4\0\1\65\3\0\1\66"+
"\17\0\1\67\2\0\1\70\21\0\1\71\2\0\1\72"+
"\57\0\2\30\1\73\1\0\1\74\1\0\1\74\1\75"+
"\1\0\1\30\2\0\1\30\1\u0161\32\41\1\164\12\165"+
"\1\u0162\1\161\1\166\1\161\1\0\1\161\1\167\1\162"+
"\1\u0163\1\u0164\1\u0165\3\0\1\161\4\0\2\161\2\0"+
"\1\53\1\0\1\54\2\0\1\55\1\0\1\56\4\0"+
"\1\57\1\0\1\60\1\0\1\61\2\0\1\62\3\0"+
"\1\63\2\0\1\64\4\0\1\65\3\0\1\66\17\0"+
"\1\67\2\0\1\70\21\0\1\71\2\0\1\72\57\0"+
"\2\30\1\73\1\0\1\74\1\0\1\74\1\75\1\0"+
"\1\30\2\0\1\30\1\u0161\4\41\1\u0166\25\41\1\164"+
"\12\165\1\u0162\1\161\1\166\1\161\1\0\1\161\1\167"+
"\1\162\1\u0163\1\u0164\1\u0165\3\0\1\161\4\0\2\161"+
"\2\0\1\53\1\0\1\54\2\0\1\55\1\0\1\56"+
"\4\0\1\57\1\0\1\60\1\0\1\61\2\0\1\62"+
"\3\0\1\63\2\0\1\64\4\0\1\65\3\0\1\66"+
"\17\0\1\67\2\0\1\70\21\0\1\71\2\0\1\72"+
"\57\0\2\30\1\73\1\0\1\74\1\0\1\74\1\75"+
"\1\0\1\30\2\0\1\30\1\u0161\15\41\1\306\14\41"+
"\1\164\12\165\1\u0162\1\161\1\166\1\161\1\0\1\161"+
"\1\167\1\162\1\u0163\1\u0164\1\u0165\3\0\1\161\4\0"+
"\2\161\2\0\1\53\1\0\1\54\2\0\1\55\1\0"+
"\1\56\4\0\1\57\1\0\1\60\1\0\1\61\2\0"+
"\1\62\3\0\1\63\2\0\1\64\4\0\1\65\3\0"+
"\1\66\17\0\1\67\2\0\1\70\21\0\1\71\2\0"+
"\1\72\57\0\2\30\1\73\1\0\1\74\1\0\1\74"+
"\1\75\1\0\1\30\2\0\1\30\1\u0161\10\41\1\306"+
"\21\41\1\164\12\165\1\u0162\1\161\1\166\1\161\1\0"+
"\1\161\1\167\1\162\1\u0163\1\u0164\1\u0165\3\0\1\161"+
"\4\0\2\161\2\0\1\53\1\0\1\54\2\0\1\55"+
"\1\0\1\56\4\0\1\57\1\0\1\60\1\0\1\61"+
"\2\0\1\62\3\0\1\63\2\0\1\64\4\0\1\65"+
"\3\0\1\66\17\0\1\67\2\0\1\70\21\0\1\71"+
"\2\0\1\72\57\0\2\30\1\73\1\0\1\74\1\0"+
"\1\74\1\75\1\0\1\30\2\0\1\30\1\u0161\17\41"+
"\1\u010d\12\41\1\164\12\165\1\u0162\1\161\1\166\1\161"+
"\1\0\1\161\1\167\1\162\1\u0163\1\u0164\1\u0165\3\0"+
"\1\161\4\0\2\161\2\0\1\53\1\0\1\54\2\0"+
"\1\55\1\0\1\56\4\0\1\57\1\0\1\60\1\0"+
"\1\61\2\0\1\62\3\0\1\63\2\0\1\64\4\0"+
"\1\65\3\0\1\66\17\0\1\67\2\0\1\70\21\0"+
"\1\71\2\0\1\72\57\0\2\30\1\73\1\0\1\74"+
"\1\0\1\74\1\75\1\0\1\30\2\0\1\30\1\u0161"+
"\5\41\1\u0167\4\41\1\u010d\17\41\1\164\12\165\1\u0162"+
"\1\161\1\166\1\161\1\0\1\161\1\167\1\162\1\u0163"+
"\1\u0164\1\u0165\3\0\1\161\4\0\2\161\2\0\1\53"+
"\1\0\1\54\2\0\1\55\1\0\1\56\4\0\1\57"+
"\1\0\1\60\1\0\1\61\2\0\1\62\3\0\1\63"+
"\2\0\1\64\4\0\1\65\3\0\1\66\17\0\1\67"+
"\2\0\1\70\21\0\1\71\2\0\1\72\57\0\2\30"+
"\1\73\1\0\1\74\1\0\1\74\1\75\1\0\1\30"+
"\2\0\1\30\1\163\20\41\1\u010d\11\41\1\164\12\165"+
"\1\74\1\161\1\166\1\161\1\0\1\161\1\167\1\162"+
"\3\161\3\0\1\161\4\0\2\161\2\0\1\53\1\0"+
"\1\54\2\0\1\55\1\0\1\56\4\0\1\57\1\0"+
"\1\60\1\0\1\61\2\0\1\62\3\0\1\63\2\0"+
"\1\64\4\0\1\65\3\0\1\66\17\0\1\67\2\0"+
"\1\70\21\0\1\71\2\0\1\72\57\0\2\30\1\73"+
"\1\0\1\74\1\0\1\74\1\75\1\0\1\30\2\0"+
"\1\30\1\163\7\41\1\u010d\22\41\1\164\12\165\1\74"+
"\1\161\1\166\1\161\1\0\1\161\1\167\1\162\3\161"+
"\3\0\1\161\4\0\2\161\2\0\1\53\1\0\1\54"+
"\2\0\1\55\1\0\1\56\4\0\1\57\1\0\1\60"+
"\1\0\1\61\2\0\1\62\3\0\1\63\2\0\1\64"+
"\4\0\1\65\3\0\1\66\17\0\1\67\2\0\1\70"+
"\21\0\1\71\2\0\1\72\57\0\2\30\1\73\1\0"+
"\1\74\1\0\1\74\1\75\1\0\1\30\2\0\1\30"+
"\1\163\27\41\1\u010d\2\41\1\164\12\165\1\74\1\161"+
"\1\166\1\161\1\0\1\161\1\167\1\162\3\161\3\0"+
"\1\161\4\0\2\161\2\0\1\53\1\0\1\54\2\0"+
"\1\55\1\0\1\56\4\0\1\57\1\0\1\60\1\0"+
"\1\61\2\0\1\62\3\0\1\63\2\0\1\64\4\0"+
"\1\65\3\0\1\66\17\0\1\67\2\0\1\70\21\0"+
"\1\71\2\0\1\72\57\0\2\30\1\73\1\0\1\74"+
"\1\0\1\74\1\75\1\0\1\30\2\0\1\30\1\u0161"+
"\6\41\1\u0166\10\41\1\u010d\12\41\1\164\12\165\1\u0162"+
"\1\161\1\166\1\161\1\0\1\161\1\167\1\162\1\u0163"+
"\1\u0164\1\u0165\3\0\1\161\4\0\2\161\2\0\1\53"+
"\1\0\1\54\2\0\1\55\1\0\1\56\4\0\1\57"+
"\1\0\1\60\1\0\1\61\2\0\1\62\3\0\1\63"+
"\2\0\1\64\4\0\1\65\3\0\1\66\17\0\1\67"+
"\2\0\1\70\21\0\1\71\2\0\1\72\57\0\2\30"+
"\1\73\1\0\1\74\1\0\1\74\1\75\1\0\1\30"+
"\2\0\1\30\1\u0161\24\41\1\u0168\5\41\1\164\12\165"+
"\1\u0162\1\161\1\166\1\161\1\0\1\161\1\167\1\162"+
"\1\u0163\1\u0164\1\u0165\3\0\1\161\4\0\2\161\2\0"+
"\1\53\1\0\1\54\2\0\1\55\1\0\1\56\4\0"+
"\1\57\1\0\1\60\1\0\1\61\2\0\1\62\3\0"+
"\1\63\2\0\1\64\4\0\1\65\3\0\1\66\17\0"+
"\1\67\2\0\1\70\21\0\1\71\2\0\1\72\57\0"+
"\2\30\1\73\1\0\1\74\1\0\1\74\1\75\1\0"+
"\1\30\2\0\1\30\1\163\11\41\1\u010d\20\41\1\164"+
"\12\165\1\74\1\161\1\166\1\161\1\0\1\161\1\167"+
"\1\162\3\161\3\0\1\161\4\0\2\161\2\0\1\53"+
"\1\0\1\54\2\0\1\55\1\0\1\56\4\0\1\57"+
"\1\0\1\60\1\0\1\61\2\0\1\62\3\0\1\63"+
"\2\0\1\64\4\0\1\65\3\0\1\66\17\0\1\67"+
"\2\0\1\70\21\0\1\71\2\0\1\72\57\0\2\30"+
"\1\73\1\0\1\74\1\0\1\74\1\75\1\0\1\30"+
"\2\0\1\30\1\u0161\16\41\1\u0169\13\41\1\164\12\165"+
"\1\u0162\1\161\1\166\1\161\1\0\1\161\1\167\1\162"+
"\1\u0163\1\u0164\1\u0165\3\0\1\161\4\0\2\161\2\0"+
"\1\53\1\0\1\54\2\0\1\55\1\0\1\56\4\0"+
"\1\57\1\0\1\60\1\0\1\61\2\0\1\62\3\0"+
"\1\63\2\0\1\64\4\0\1\65\3\0\1\66\17\0"+
"\1\67\2\0\1\70\21\0\1\71\2\0\1\72\57\0"+
"\2\30\1\73\1\0\1\74\1\0\1\74\1\75\1\0"+
"\1\30\2\0\1\30\1\u0161\12\41\1\u016a\17\41\1\164"+
"\12\165\1\u0162\1\161\1\166\1\161\1\0\1\161\1\167"+
"\1\162\1\u0163\1\u0164\1\u0165\3\0\1\161\4\0\2\161"+
"\2\0\1\53\1\0\1\54\2\0\1\55\1\0\1\56"+
"\4\0\1\57\1\0\1\60\1\0\1\61\2\0\1\62"+
"\3\0\1\63\2\0\1\64\4\0\1\65\3\0\1\66"+
"\17\0\1\67\2\0\1\70\21\0\1\71\2\0\1\72"+
"\57\0\2\30\1\73\1\0\1\74\1\0\1\74\1\75"+
"\1\0\1\30\2\0\1\30\1\u0161\5\41\1\u010d\24\41"+
"\1\164\12\165\1\u0162\1\161\1\166\1\161\1\0\1\161"+
"\1\167\1\162\1\u0163\1\u0164\1\u0165\3\0\1\161\4\0"+
"\2\161\2\0\1\53\1\0\1\54\2\0\1\55\1\0"+
"\1\56\4\0\1\57\1\0\1\60\1\0\1\61\2\0"+
"\1\62\3\0\1\63\2\0\1\64\4\0\1\65\3\0"+
"\1\66\17\0\1\67\2\0\1\70\21\0\1\71\2\0"+
"\1\72\57\0\2\30\1\73\1\0\1\74\1\0\1\74"+
"\1\75\1\0\1\30\2\0\1\30\1\u0161\1\u016b\31\41"+
"\1\164\12\165\1\u0162\1\161\1\166\1\161\1\0\1\161"+
"\1\167\1\162\1\u0163\1\u0164\1\u0165\3\0\1\161\4\0"+
"\2\161\2\0\1\53\1\0\1\54\2\0\1\55\1\0"+
"\1\56\4\0\1\57\1\0\1\60\1\0\1\61\2\0"+
"\1\62\3\0\1\63\2\0\1\64\4\0\1\65\3\0"+
"\1\66\17\0\1\67\2\0\1\70\21\0\1\71\2\0"+
"\1\72\57\0\2\30\1\73\1\0\1\74\1\0\1\74"+
"\1\75\1\0\1\30\2\0\1\30\1\163\32\41\1\u016c"+
"\12\165\1\74\1\161\1\166\1\161\1\0\1\161\1\167"+
"\1\162\3\161\3\0\1\161\4\0\2\161\2\0\1\53"+
"\1\0\1\54\2\0\1\55\1\0\1\56\4\0\1\57"+
"\1\0\1\60\1\0\1\61\2\0\1\62\3\0\1\63"+
"\2\0\1\64\4\0\1\65\3\0\1\66\17\0\1\67"+
"\2\0\1\70\21\0\1\71\2\0\1\72\57\0\2\30"+
"\1\73\1\0\1\74\1\0\1\74\1\75\1\0\1\30"+
"\2\0\1\30\1\163\22\41\1\u010d\7\41\1\164\12\165"+
"\1\74\1\161\1\166\1\161\1\0\1\161\1\167\1\162"+
"\3\161\3\0\1\161\4\0\2\161\2\0\1\53\1\0"+
"\1\54\2\0\1\55\1\0\1\56\4\0\1\57\1\0"+
"\1\60\1\0\1\61\2\0\1\62\3\0\1\63\2\0"+
"\1\64\4\0\1\65\3\0\1\66\17\0\1\67\2\0"+
"\1\70\21\0\1\71\2\0\1\72\57\0\2\30\1\73"+
"\1\0\1\74\1\0\1\74\1\75\1\0\1\30\2\0"+
"\1\30\1\u0161\23\41\1\u010d\6\41\1\164\12\165\1\u0162"+
"\1\161\1\166\1\161\1\0\1\161\1\167\1\162\1\u0163"+
"\1\u0164\1\u0165\3\0\1\161\4\0\2\161\2\0\1\53"+
"\1\0\1\54\2\0\1\55\1\0\1\56\4\0\1\57"+
"\1\0\1\60\1\0\1\61\2\0\1\62\3\0\1\63"+
"\2\0\1\64\4\0\1\65\3\0\1\66\17\0\1\67"+
"\2\0\1\70\21\0\1\71\2\0\1\72\57\0\2\30"+
"\1\73\1\0\1\74\1\0\1\74\1\75\1\0\1\30"+
"\2\0\1\30\1\u0161\24\41\1\u016d\5\41\1\164\12\165"+
"\1\u0162\1\161\1\166\1\161\1\0\1\161\1\167\1\162"+
"\1\u0163\1\u0164\1\u0165\3\0\1\161\4\0\2\161\212\0"+
"\1\160\1\334\1\335\1\336\1\337\1\340\1\341\1\342"+
"\1\343\1\344\1\345\1\346\1\347\1\350\1\351\1\352"+
"\1\353\1\354\1\355\1\356\1\357\1\360\1\361\1\362"+
"\1\363\1\364\1\365\1\161\12\324\1\0\3\161\1\0"+
"\2\161\1\162\3\161\3\0\1\161\1\206\3\0\2\161"+
"\7\0\1\u0100\1\0\1\u0101\17\0\1\u0102\2\0\1\u0103"+
"\4\0\1\u0104\3\0\1\u0105\22\0\1\u0106\21\0\1\u0107"+
"\2\0\1\u0108\60\0\1\220\1\73\6\0\1\220\3\0"+
"\1\160\33\161\12\327\1\0\3\161\1\0\2\161\1\162"+
"\3\161\3\0\1\161\1\206\3\0\2\161\2\0\1\53"+
"\1\0\1\54\2\0\1\55\1\0\1\56\4\0\1\57"+
"\1\0\1\60\1\0\1\61\2\0\1\62\3\0\1\63"+
"\2\0\1\64\4\0\1\65\3\0\1\66\17\0\1\67"+
"\2\0\1\70\21\0\1\71\2\0\1\72\57\0\2\30"+
"\1\73\1\0\1\74\1\0\1\74\1\75\1\0\1\30"+
"\2\0\1\30\1\163\32\41\1\164\12\165\1\u016e\1\161"+
"\1\166\1\161\1\0\1\161\1\167\1\162\3\161\3\0"+
"\1\161\4\0\2\161\2\0\1\53\1\0\1\54\2\0"+
"\1\221\1\0\1\222\4\0\1\57\1\0\1\60\1\0"+
"\1\61\2\0\1\62\3\0\1\223\2\0\1\224\4\0"+
"\1\225\3\0\1\226\17\0\1\67\2\0\1\227\21\0"+
"\1\230\2\0\1\231\57\0\1\30\1\74\7\0\1\74"+
"\2\0\1\30\1\0\32\30\24\0\1\u016f\15\0\1\53"+
"\1\0\1\54\2\0\1\55\1\0\1\56\4\0\1\57"+
"\1\0\1\60\1\0\1\61\2\0\1\62\3\0\1\63"+
"\2\0\1\64\4\0\1\65\3\0\1\66\17\0\1\67"+
"\2\0\1\70\21\0\1\71\2\0\1\72\57\0\2\30"+
"\1\73\1\0\1\74\1\0\1\74\1\75\1\0\1\30"+
"\2\0\1\30\1\163\17\41\1\u0170\12\41\1\164\12\165"+
"\1\74\1\161\1\166\1\161\1\0\1\161\1\167\1\162"+
"\3\161\3\0\1\161\4\0\2\161\2\0\1\53\1\0"+
"\1\54\2\0\1\55\1\0\1\56\4\0\1\57\1\0"+
"\1\60\1\0\1\61\2\0\1\62\3\0\1\63\2\0"+
"\1\64\4\0\1\65\3\0\1\66\17\0\1\67\2\0"+
"\1\70\21\0\1\71\2\0\1\72\57\0\2\30\1\73"+
"\1\0\1\74\1\0\1\74\1\75\1\0\1\30\2\0"+
"\1\30\1\163\16\41\1\u0171\13\41\1\164\12\165\1\u0172"+
"\1\161\1\166\1\161\1\0\1\161\1\167\1\162\3\161"+
"\3\0\1\161\4\0\2\161\212\0\1\u0173\32\324\1\164"+
"\12\324\1\u0174\3\161\1\0\2\161\1\162\1\u0163\1\u0164"+
"\1\u0165\3\0\1\161\4\0\2\161\212\0\1\u0173\4\324"+
"\1\u0175\25\324\1\164\12\324\1\u0174\3\161\1\0\2\161"+
"\1\162\1\u0163\1\u0164\1\u0165\3\0\1\161\4\0\2\161"+
"\212\0\1\u0173\15\324\1\350\14\324\1\164\12\324\1\u0174"+
"\3\161\1\0\2\161\1\162\1\u0163\1\u0164\1\u0165\3\0"+
"\1\161\4\0\2\161\212\0\1\u0173\10\324\1\350\21\324"+
"\1\164\12\324\1\u0174\3\161\1\0\2\161\1\162\1\u0163"+
"\1\u0164\1\u0165\3\0\1\161\4\0\2\161\212\0\1\u0173"+
"\17\324\1\u0127\12\324\1\164\12\324\1\u0174\3\161\1\0"+
"\2\161\1\162\1\u0163\1\u0164\1\u0165\3\0\1\161\4\0"+
"\2\161\212\0\1\u0173\5\324\1\u0176\4\324\1\u0127\17\324"+
"\1\164\12\324\1\u0174\3\161\1\0\2\161\1\162\1\u0163"+
"\1\u0164\1\u0165\3\0\1\161\4\0\2\161\212\0\1\u0121"+
"\20\324\1\u0127\11\324\1\164\12\324\1\0\3\161\1\0"+
"\2\161\1\162\3\161\3\0\1\161\4\0\2\161\212\0"+
"\1\u0121\7\324\1\u0127\22\324\1\164\12\324\1\0\3\161"+
"\1\0\2\161\1\162\3\161\3\0\1\161\4\0\2\161"+
"\212\0\1\u0121\27\324\1\u0127\2\324\1\164\12\324\1\0"+
"\3\161\1\0\2\161\1\162\3\161\3\0\1\161\4\0"+
"\2\161\212\0\1\u0173\6\324\1\u0175\10\324\1\u0127\12\324"+
"\1\164\12\324\1\u0174\3\161\1\0\2\161\1\162\1\u0163"+
"\1\u0164\1\u0165\3\0\1\161\4\0\2\161\212\0\1\u0173"+
"\24\324\1\u0177\5\324\1\164\12\324\1\u0174\3\161\1\0"+
"\2\161\1\162\1\u0163\1\u0164\1\u0165\3\0\1\161\4\0"+
"\2\161\212\0\1\u0121\11\324\1\u0127\20\324\1\164\12\324"+
"\1\0\3\161\1\0\2\161\1\162\3\161\3\0\1\161"+
"\4\0\2\161\212\0\1\u0173\16\324\1\u0178\13\324\1\164"+
"\12\324\1\u0174\3\161\1\0\2\161\1\162\1\u0163\1\u0164"+
"\1\u0165\3\0\1\161\4\0\2\161\212\0\1\u0173\12\324"+
"\1\u0179\17\324\1\164\12\324\1\u0174\3\161\1\0\2\161"+
"\1\162\1\u0163\1\u0164\1\u0165\3\0\1\161\4\0\2\161"+
"\212\0\1\u0173\5\324\1\u0127\24\324\1\164\12\324\1\u0174"+
"\3\161\1\0\2\161\1\162\1\u0163\1\u0164\1\u0165\3\0"+
"\1\161\4\0\2\161\212\0\1\u0173\1\u017a\31\324\1\164"+
"\12\324\1\u0174\3\161\1\0\2\161\1\162\1\u0163\1\u0164"+
"\1\u0165\3\0\1\161\4\0\2\161\212\0\1\u0121\32\324"+
"\1\u016c\12\324\1\0\3\161\1\0\2\161\1\162\3\161"+
"\3\0\1\161\4\0\2\161\212\0\1\u0121\22\324\1\u0127"+
"\7\324\1\164\12\324\1\0\3\161\1\0\2\161\1\162"+
"\3\161\3\0\1\161\4\0\2\161\212\0\1\u0173\23\324"+
"\1\u0127\6\324\1\164\12\324\1\u0174\3\161\1\0\2\161"+
"\1\162\1\u0163\1\u0164\1\u0165\3\0\1\161\4\0\2\161"+
"\212\0\1\u0173\24\324\1\u017b\5\324\1\164\12\324\1\u0174"+
"\3\161\1\0\2\161\1\162\1\u0163\1\u0164\1\u0165\3\0"+
"\1\161\4\0\2\161\7\0\1\241\1\0\1\242\17\0"+
"\1\243\2\0\1\244\4\0\1\245\3\0\1\246\22\0"+
"\1\247\21\0\1\250\2\0\1\251\60\0\1\107\1\31"+
"\6\0\1\107\3\0\1\160\1\334\1\335\1\336\1\337"+
"\1\340\1\341\1\342\1\343\1\344\1\345\1\346\1\347"+
"\1\350\1\351\1\352\1\353\1\354\1\355\1\356\1\357"+
"\1\360\1\361\1\362\1\363\1\364\1\365\1\161\1\u017c"+
"\2\u017d\1\u017c\5\u017d\1\u017e\1\0\3\161\1\0\2\161"+
"\1\162\3\161\3\0\1\161\1\206\3\0\2\161\2\0"+
"\1\53\1\0\1\54\2\0\1\76\1\0\1\77\4\0"+
"\1\57\1\0\1\60\1\0\1\61\2\0\1\62\3\0"+
"\1\100\2\0\1\101\4\0\1\102\3\0\1\103\17\0"+
"\1\67\2\0\1\104\21\0\1\105\2\0\1\106\57\0"+
"\1\30\2\31\2\0\2\107\1\110\1\0\1\31\2\0"+
"\1\30\1\u013b\32\41\1\164\12\371\1\0\1\161\1\175"+
"\1\161\1\0\2\176\1\162\3\161\2\0\1\107\1\161"+
"\4\0\2\161\2\0\1\53\1\0\1\54\2\0\1\76"+
"\1\0\1\77\4\0\1\57\1\0\1\60\1\0\1\61"+
"\2\0\1\62\3\0\1\100\2\0\1\101\4\0\1\102"+
"\3\0\1\103\17\0\1\67\2\0\1\104\21\0\1\105"+
"\2\0\1\106\57\0\1\30\2\31\2\0\2\107\1\110"+
"\1\0\1\31\2\0\1\30\1\u013b\32\41\1\164\2\u013c"+
"\1\371\2\u013c\2\371\1\u013c\1\371\1\u013c\1\0\1\161"+
"\1\175\1\161\1\0\2\176\1\162\3\161\2\0\1\107"+
"\1\161\4\0\2\161\7\0\1\241\1\0\1\242\17\0"+
"\1\243\2\0\1\244\4\0\1\245\3\0\1\246\22\0"+
"\1\247\21\0\1\250\2\0\1\251\60\0\1\107\1\31"+
"\6\0\1\107\3\0\1\160\1\334\1\335\1\336\1\337"+
"\1\340\1\341\1\342\1\343\1\344\1\345\1\346\1\347"+
"\1\350\1\351\1\352\1\353\1\354\1\355\1\356\1\357"+
"\1\360\1\361\1\362\1\363\1\364\1\365\1\161\12\371"+
"\1\0\3\161\1\0\2\161\1\162\3\161\3\0\1\161"+
"\1\206\3\0\2\161\213\0\4\u017f\2\0\1\u017f\15\0"+
"\1\u017f\6\0\12\u017f\1\375\237\0\4\u0180\2\0\1\u0180"+
"\15\0\1\u0180\6\0\12\u0180\1\u0181\237\0\4\u0182\2\0"+
"\1\u0182\15\0\1\u0182\6\0\1\u0183\2\u0184\1\u0183\5\u0184"+
"\1\u0185\14\0\1\u0146\223\0\4\u0186\2\0\1\u0186\15\0"+
"\1\u0186\6\0\12\u0186\1\u0187\13\0\1\u0146\222\0\1\u0188"+
"\4\u0186\2\0\1\u0186\15\0\1\u0186\6\0\12\u0189\1\u0187"+
"\13\0\1\u0146\222\0\1\u0188\4\u0186\2\0\1\u0186\15\0"+
"\1\u0186\6\0\12\u018a\1\u0187\13\0\1\u0146\222\0\1\u0188"+
"\4\u0186\2\0\1\u0186\15\0\1\u0186\6\0\1\u0189\1\u018b"+
"\1\u018a\2\u0189\2\u018a\1\u0189\1\u018a\1\u0189\1\u0187\13\0"+
"\1\u0146\270\0\1\u0174\7\0\1\u018c\1\u018d\1\u018e\224\0"+
"\1\u0109\1\270\2\u018f\1\u0190\1\u0191\10\u018f\1\270\1\u0192"+
"\5\u018f\6\270\1\u010a\12\270\237\0\1\u0109\1\u0193\2\u018f"+
"\1\270\1\u018f\1\u0194\6\u018f\4\270\4\u018f\1\270\1\u018f"+
"\1\270\3\u018f\1\u010a\12\270\237\0\1\u0109\3\270\1\u018f"+
"\1\270\1\u018f\4\270\1\u018f\10\270\1\u018f\2\270\1\u018f"+
"\2\270\1\u018f\1\u010a\12\270\237\0\1\u0109\1\270\1\u018f"+
"\1\u0195\2\u018f\2\270\1\u018f\6\270\3\u018f\11\270\1\u010a"+
"\12\270\237\0\1\u0109\3\270\1\u018f\1\270\1\u018f\10\270"+
"\1\u018f\1\270\2\u018f\10\270\1\u010a\12\270\237\0\1\u0109"+
"\4\270\1\u0196\5\270\1\u018f\17\270\1\u010a\12\270\237\0"+
"\1\u0109\4\270\2\u018f\2\270\1\u018f\1\270\1\u018f\13\270"+
"\1\u018f\2\270\1\u018f\1\u010a\12\270\237\0\1\u0109\1\u018f"+
"\1\270\3\u018f\1\u0197\14\u018f\2\270\2\u018f\2\270\1\u018f"+
"\1\270\1\u010a\12\270\237\0\1\u0109\2\270\4\u018f\3\270"+
"\2\u018f\1\u0198\1\u018f\1\270\2\u018f\12\270\1\u010a\12\270"+
"\237\0\1\u0109\2\u018f\2\270\1\u018f\3\270\1\u018f\5\270"+
"\3\u018f\3\270\1\u018f\2\270\3\u018f\1\u010a\12\270\237\0"+
"\1\u0109\5\u018f\1\u0199\1\270\1\u018f\1\u019a\7\u018f\1\u019b"+
"\3\u018f\1\270\1\u018f\1\270\3\u018f\1\u010a\12\270\237\0"+
"\1\u0109\1\u019c\1\u018f\1\270\1\u0193\6\u018f\3\270\1\u018f"+
"\2\270\1\u018f\2\270\1\u018f\6\270\1\u010a\12\270\237\0"+
"\1\u0109\1\u018f\31\270\1\u010a\12\270\237\0\1\u0109\1\u018f"+
"\2\270\1\u018f\1\u019d\1\270\2\u018f\1\270\3\u018f\2\270"+
"\2\u018f\1\270\1\u018f\3\270\1\u018f\2\270\2\u018f\1\u010a"+
"\12\270\237\0\1\u0109\6\u018f\1\270\5\u018f\3\270\2\u018f"+
"\1\270\10\u018f\1\u010a\12\270\237\0\1\u0109\1\270\2\u018f"+
"\1\u019a\1\u019e\3\u018f\1\270\3\u018f\1\270\1\u018f\1\270"+
"\1\u018f\1\270\1\u018f\1\270\1\u018f\1\270\3\u018f\1\270"+
"\1\u018f\1\u010a\12\270\237\0\1\u0109\1\u018f\6\270\1\u018f"+
"\6\270\1\u018f\4\270\1\u018f\4\270\2\u018f\1\u010a\12\270"+
"\237\0\1\u0109\6\270\1\u018f\7\270\1\u018f\13\270\1\u010a"+
"\12\270\237\0\1\u0109\13\270\1\u019f\6\270\1\u01a0\7\270"+
"\1\u010a\12\270\237\0\1\u0109\1\u018f\11\270\1\u018f\6\270"+
"\1\u018f\10\270\1\u010a\12\270\237\0\1\u0109\1\u018f\1\270"+
"\6\u018f\1\u01a1\1\270\2\u018f\2\270\2\u018f\1\270\1\u018f"+
"\1\270\6\u018f\1\270\1\u010a\12\270\237\0\1\u0109\4\270"+
"\1\u018f\5\270\2\u018f\3\270\2\u018f\10\270\1\u018f\1\u010a"+
"\12\270\237\0\1\u0109\3\270\1\u018f\1\270\1\u01a2\4\270"+
"\1\u018f\2\270\1\u018f\14\270\1\u010a\12\270\237\0\1\u0109"+
"\2\u018f\1\270\1\u018f\3\270\2\u018f\2\270\1\u018f\4\270"+
"\1\u018f\11\270\1\u010a\12\270\237\0\1\u0109\3\270\1\u018f"+
"\13\270\1\u018f\12\270\1\u010a\12\270\237\0\1\u0109\3\270"+
"\2\u018f\2\270\2\u018f\1\270\2\u018f\1\270\1\u018f\3\270"+
"\1\u018f\1\270\1\u018f\1\270\1\u018f\2\270\1\u018f\1\270"+
"\1\u010a\12\270\27\0\1\53\1\0\1\54\2\0\1\221"+
"\1\0\1\222\4\0\1\57\1\0\1\60\1\0\1\61"+
"\2\0\1\62\3\0\1\223\2\0\1\224\4\0\1\225"+
"\3\0\1\226\17\0\1\67\2\0\1\227\21\0\1\230"+
"\2\0\1\231\57\0\1\30\1\74\7\0\1\74\2\0"+
"\1\30\1\160\1\272\1\273\1\274\1\275\1\276\1\277"+
"\1\300\1\301\1\302\1\303\1\304\1\305\1\306\1\307"+
"\1\310\1\311\1\312\1\313\1\314\1\315\1\316\1\317"+
"\1\320\1\321\1\322\1\323\1\161\12\324\1\u0174\3\161"+
"\1\0\2\161\1\162\1\u0163\1\u0164\1\u0165\3\0\1\161"+
"\1\206\3\0\2\161\2\0\1\53\1\0\1\54\2\0"+
"\1\221\1\0\1\222\4\0\1\57\1\0\1\60\1\0"+
"\1\61\2\0\1\62\3\0\1\223\2\0\1\224\4\0"+
"\1\225\3\0\1\226\17\0\1\67\2\0\1\227\21\0"+
"\1\230\2\0\1\231\57\0\1\30\1\74\7\0\1\74"+
"\2\0\1\30\1\0\32\30\1\0\12\u01a3\237\0\1\u01a4"+
"\45\u0163\1\u018c\2\u0163\1\u01a5\1\u018c\2\u0163\1\u01a6\2\u0163"+
"\1\u0165\2\0\1\u018c\1\u0163\4\0\1\u0163\1\161\212\0"+
"\1\u01a7\45\u0164\1\u018d\2\u0164\1\u01a8\1\0\2\161\1\u01a9"+
"\1\u0163\1\u0164\1\u0165\2\0\1\u018d\1\u0164\4\0\2\161"+
"\212\0\1\u01aa\45\u0165\1\u018e\2\u0165\1\u01ab\1\u018e\2\u0165"+
"\1\u01ac\2\u0165\1\161\2\0\1\u018e\1\u0165\4\0\1\u0165"+
"\1\161\2\0\1\53\1\0\1\54\2\0\1\55\1\0"+
"\1\56\4\0\1\57\1\0\1\60\1\0\1\61\2\0"+
"\1\62\3\0\1\63\2\0\1\64\4\0\1\65\3\0"+
"\1\66\17\0\1\67\2\0\1\70\21\0\1\71\2\0"+
"\1\72\57\0\2\30\1\73\1\0\1\74\1\0\1\74"+
"\1\75\1\0\1\30\2\0\1\30\1\163\5\41\1\u010d"+
"\24\41\1\164\12\165\1\74\1\161\1\166\1\161\1\0"+
"\1\161\1\167\1\162\3\161\3\0\1\161\4\0\2\161"+
"\2\0\1\53\1\0\1\54\2\0\1\55\1\0\1\56"+
"\4\0\1\57\1\0\1\60\1\0\1\61\2\0\1\62"+
"\3\0\1\63\2\0\1\64\4\0\1\65\3\0\1\66"+
"\17\0\1\67\2\0\1\70\21\0\1\71\2\0\1\72"+
"\57\0\2\30\1\73\1\0\1\74\1\0\1\74\1\75"+
"\1\0\1\30\2\0\1\30\1\163\15\41\1\u010d\14\41"+
"\1\164\12\165\1\74\1\161\1\166\1\161\1\0\1\161"+
"\1\167\1\162\3\161\3\0\1\161\4\0\2\161\2\0"+
"\1\53\1\0\1\54\2\0\1\55\1\0\1\56\4\0"+
"\1\57\1\0\1\60\1\0\1\61\2\0\1\62\3\0"+
"\1\63\2\0\1\64\4\0\1\65\3\0\1\66\17\0"+
"\1\67\2\0\1\70\21\0\1\71\2\0\1\72\57\0"+
"\2\30\1\73\1\0\1\74\1\0\1\74\1\75\1\0"+
"\1\30\2\0\1\30\1\163\10\41\1\u010d\21\41\1\164"+
"\12\165\1\74\1\161\1\166\1\161\1\0\1\161\1\167"+
"\1\162\3\161\3\0\1\161\4\0\2\161\2\0\1\53"+
"\1\0\1\54\2\0\1\55\1\0\1\56\4\0\1\57"+
"\1\0\1\60\1\0\1\61\2\0\1\62\3\0\1\63"+
"\2\0\1\64\4\0\1\65\3\0\1\66\17\0\1\67"+
"\2\0\1\70\21\0\1\71\2\0\1\72\57\0\2\30"+
"\1\73\1\0\1\74\1\0\1\74\1\75\1\0\1\30"+
"\2\0\1\30\1\163\3\41\1\u01ad\26\41\1\164\12\165"+
"\1\74\1\161\1\166\1\161\1\0\1\161\1\167\1\162"+
"\3\161\3\0\1\161\4\0\2\161\2\0\1\53\1\0"+
"\1\54\2\0\1\55\1\0\1\56\4\0\1\57\1\0"+
"\1\60\1\0\1\61\2\0\1\62\3\0\1\63\2\0"+
"\1\64\4\0\1\65\3\0\1\66\17\0\1\67\2\0"+
"\1\70\21\0\1\71\2\0\1\72\57\0\2\30\1\73"+
"\1\0\1\74\1\0\1\74\1\75\1\0\1\30\2\0"+
"\1\30\1\163\3\41\1\u010d\26\41\1\164\12\165\1\74"+
"\1\161\1\166\1\161\1\0\1\161\1\167\1\162\3\161"+
"\3\0\1\161\4\0\2\161\2\0\1\53\1\0\1\54"+
"\2\0\1\55\1\0\1\56\4\0\1\57\1\0\1\60"+
"\1\0\1\61\2\0\1\62\3\0\1\63\2\0\1\64"+
"\4\0\1\65\3\0\1\66\17\0\1\67\2\0\1\70"+
"\21\0\1\71\2\0\1\72\57\0\2\30\1\73\1\0"+
"\1\74\1\0\1\74\1\75\1\0\1\30\2\0\1\30"+
"\1\163\27\41\1\u01ae\2\41\1\164\12\165\1\74\1\161"+
"\1\166\1\161\1\0\1\161\1\167\1\162\3\161\3\0"+
"\1\161\4\0\2\161\212\0\1\160\32\324\1\u01af\12\324"+
"\1\0\3\161\1\0\2\161\1\162\3\161\3\0\1\161"+
"\4\0\2\161\2\0\1\53\1\0\1\54\2\0\1\55"+
"\1\0\1\56\4\0\1\57\1\0\1\60\1\0\1\61"+
"\2\0\1\62\3\0\1\63\2\0\1\64\4\0\1\65"+
"\3\0\1\66\17\0\1\67\2\0\1\70\21\0\1\71"+
"\2\0\1\72\57\0\2\30\1\73\1\0\1\74\1\0"+
"\1\74\1\75\1\0\1\30\2\0\1\30\1\163\16\41"+
"\1\u010d\13\41\1\164\12\165\1\74\1\161\1\166\1\161"+
"\1\0\1\161\1\167\1\162\3\161\3\0\1\161\4\0"+
"\2\161\2\0\1\53\1\0\1\54\2\0\1\221\1\0"+
"\1\222\4\0\1\57\1\0\1\60\1\0\1\61\2\0"+
"\1\62\3\0\1\223\2\0\1\224\4\0\1\225\3\0"+
"\1\226\17\0\1\67\2\0\1\227\21\0\1\230\2\0"+
"\1\231\57\0\1\30\1\74\7\0\1\74\2\0\1\30"+
"\1\0\32\30\24\0\1\u01b0\304\0\1\u01b1\15\0\1\53"+
"\1\0\1\54\2\0\1\55\1\0\1\56\4\0\1\57"+
"\1\0\1\60\1\0\1\61\2\0\1\62\3\0\1\63"+
"\2\0\1\64\4\0\1\65\3\0\1\66\17\0\1\67"+
"\2\0\1\70\21\0\1\71\2\0\1\72\57\0\2\30"+
"\1\73\1\0\1\74\1\0\1\74\1\75\1\0\1\30"+
"\2\0\1\30\1\163\5\41\1\u01b2\24\41\1\164\12\165"+
"\1\74\1\161\1\166\1\161\1\0\1\161\1\167\1\162"+
"\3\161\3\0\1\161\4\0\2\161\2\0\1\53\1\0"+
"\1\54\2\0\1\55\1\0\1\56\4\0\1\57\1\0"+
"\1\60\1\0\1\61\2\0\1\62\3\0\1\63\2\0"+
"\1\64\4\0\1\65\3\0\1\66\17\0\1\67\2\0"+
"\1\70\21\0\1\71\2\0\1\72\57\0\2\30\1\73"+
"\1\0\1\74\1\0\1\74\1\75\1\0\1\30\2\0"+
"\1\30\1\163\32\41\1\164\12\165\1\u0172\1\161\1\166"+
"\1\161\1\0\1\161\1\167\1\162\3\161\3\0\1\161"+
"\4\0\2\161\2\0\1\53\1\0\1\54\2\0\1\221"+
"\1\0\1\222\4\0\1\57\1\0\1\60\1\0\1\61"+
"\2\0\1\62\3\0\1\223\2\0\1\224\4\0\1\225"+
"\3\0\1\226\17\0\1\67\2\0\1\227\21\0\1\230"+
"\2\0\1\231\57\0\1\30\1\74\7\0\1\74\2\0"+
"\1\30\1\0\32\30\24\0\1\u01b3\225\0\1\160\1\334"+
"\1\335\1\336\1\337\1\340\1\341\1\342\1\343\1\344"+
"\1\345\1\346\1\347\1\350\1\351\1\352\1\353\1\354"+
"\1\355\1\356\1\357\1\360\1\361\1\362\1\363\1\364"+
"\1\365\1\161\12\324\1\u0174\3\161\1\0\2\161\1\162"+
"\1\u0163\1\u0164\1\u0165\3\0\1\161\1\206\3\0\2\161"+
"\246\0\12\u01a3\237\0\1\u0121\5\324\1\u0127\24\324\1\164"+
"\12\324\1\0\3\161\1\0\2\161\1\162\3\161\3\0"+
"\1\161\4\0\2\161\212\0\1\u0121\15\324\1\u0127\14\324"+
"\1\164\12\324\1\0\3\161\1\0\2\161\1\162\3\161"+
"\3\0\1\161\4\0\2\161\212\0\1\u0121\10\324\1\u0127"+
"\21\324\1\164\12\324\1\0\3\161\1\0\2\161\1\162"+
"\3\161\3\0\1\161\4\0\2\161\212\0\1\u0121\3\324"+
"\1\u01b4\26\324\1\164\12\324\1\0\3\161\1\0\2\161"+
"\1\162\3\161\3\0\1\161\4\0\2\161\212\0\1\u0121"+
"\3\324\1\u0127\26\324\1\164\12\324\1\0\3\161\1\0"+
"\2\161\1\162\3\161\3\0\1\161\4\0\2\161\212\0"+
"\1\u0121\27\324\1\u01b5\2\324\1\164\12\324\1\0\3\161"+
"\1\0\2\161\1\162\3\161\3\0\1\161\4\0\2\161"+
"\212\0\1\u0121\16\324\1\u0127\13\324\1\164\12\324\1\0"+
"\3\161\1\0\2\161\1\162\3\161\3\0\1\161\4\0"+
"\2\161\2\0\1\53\1\0\1\54\2\0\1\76\1\0"+
"\1\77\4\0\1\57\1\0\1\60\1\0\1\61\2\0"+
"\1\62\3\0\1\100\2\0\1\101\4\0\1\102\3\0"+
"\1\103\17\0\1\67\2\0\1\104\21\0\1\105\2\0"+
"\1\106\57\0\1\30\2\31\2\0\2\107\1\110\1\0"+
"\1\31\2\0\1\30\1\u01b6\32\41\1\164\12\u017d\1\0"+
"\1\161\1\175\1\161\1\0\2\176\1\162\3\161\2\0"+
"\1\107\1\161\4\0\2\161\2\0\1\53\1\0\1\54"+
"\2\0\1\76\1\0\1\77\4\0\1\57\1\0\1\60"+
"\1\0\1\61\2\0\1\62\3\0\1\100\2\0\1\101"+
"\4\0\1\102\3\0\1\103\17\0\1\67\2\0\1\104"+
"\21\0\1\105\2\0\1\106\57\0\1\30\2\31\2\0"+
"\2\107\1\110\1\0\1\31\2\0\1\30\1\u01b6\32\41"+
"\1\164\12\u01b7\1\0\1\161\1\175\1\161\1\0\2\176"+
"\1\162\3\161\2\0\1\107\1\161\4\0\2\161\2\0"+
"\1\53\1\0\1\54\2\0\1\76\1\0\1\77\4\0"+
"\1\57\1\0\1\60\1\0\1\61\2\0\1\62\3\0"+
"\1\100\2\0\1\101\4\0\1\102\3\0\1\103\17\0"+
"\1\67\2\0\1\104\21\0\1\105\2\0\1\106\57\0"+
"\1\30\2\31\2\0\2\107\1\110\1\0\1\31\2\0"+
"\1\30\1\u01b6\32\41\1\164\1\u017d\1\u01b8\1\u01b7\2\u017d"+
"\2\u01b7\1\u017d\1\u01b7\1\u017d\1\0\1\161\1\175\1\161"+
"\1\0\2\176\1\162\3\161\2\0\1\107\1\161\4\0"+
"\2\161\260\0\1\375\237\0\4\u01b9\2\0\1\u01b9\15\0"+
"\1\u01b9\6\0\12\u01b9\1\u0181\237\0\4\u01ba\2\0\1\u01ba"+
"\15\0\1\u01ba\6\0\12\u01ba\1\u01bb\237\0\4\u01bc\2\0"+
"\1\u01bc\15\0\1\u01bc\6\0\12\u01bc\1\u01bd\13\0\1\u0146"+
"\222\0\1\u0188\4\u01bc\2\0\1\u01bc\15\0\1\u01bc\6\0"+
"\12\u01be\1\u01bd\13\0\1\u0146\222\0\1\u0188\4\u01bc\2\0"+
"\1\u01bc\15\0\1\u01bc\6\0\12\u01bf\1\u01bd\13\0\1\u0146"+
"\222\0\1\u0188\4\u01bc\2\0\1\u01bc\15\0\1\u01bc\6\0"+
"\1\u01be\1\u01c0\1\u01bf\2\u01be\2\u01bf\1\u01be\1\u01bf\1\u01be"+
"\1\u01bd\13\0\1\u0146\223\0\4\u01c1\2\0\1\u01c1\15\0"+
"\1\u01c1\6\0\12\u01c1\1\u0187\13\0\1\u0146\223\0\4\u0182"+
"\2\0\1\u0182\15\0\1\u0182\6\0\1\u0183\2\u0184\1\u0183"+
"\5\u0184\1\u0185\273\0\1\u01c2\2\u01c3\1\u01c2\5\u01c3\1\u01c4"+
"\237\0\1\u0188\4\u01c1\2\0\1\u01c1\15\0\1\u01c1\6\0"+
"\12\u01c5\1\u0187\13\0\1\u0146\222\0\1\u0188\4\u01c1\2\0"+
"\1\u01c1\15\0\1\u01c1\6\0\12\u01c1\1\u0187\13\0\1\u0146"+
"\222\0\1\u0188\4\u01c1\2\0\1\u01c1\15\0\1\u01c1\6\0"+
"\2\u01c5\1\u01c1\2\u01c5\2\u01c1\1\u01c5\1\u01c1\1\u01c5\1\u0187"+
"\13\0\1\u0146\222\0\51\u018c\1\u01c6\6\u018c\1\u018e\2\0"+
"\2\u018c\4\0\1\u018c\213\0\51\u018d\1\u01c7\3\0\1\u018d"+
"\1\u018c\1\u018d\1\u018e\2\0\2\u018d\220\0\51\u018e\1\u01c8"+
"\6\u018e\3\0\2\u018e\4\0\1\u018e\213\0\1\u01c9\32\270"+
"\1\u010a\12\270\237\0\1\u01c9\4\270\1\u01ca\25\270\1\u010a"+
"\12\270\237\0\1\u01c9\15\270\1\u0153\14\270\1\u010a\12\270"+
"\237\0\1\u01c9\10\270\1\u0153\21\270\1\u010a\12\270\237\0"+
"\1\u01c9\17\270\1\u018f\12\270\1\u010a\12\270\237\0\1\u01c9"+
"\5\270\1\u01cb\4\270\1\u018f\17\270\1\u010a\12\270\237\0"+
"\1\u0109\20\270\1\u018f\11\270\1\u010a\12\270\237\0\1\u0109"+
"\7\270\1\u018f\22\270\1\u010a\12\270\237\0\1\u0109\27\270"+
"\1\u018f\2\270\1\u010a\12\270\237\0\1\u01c9\6\270\1\u01ca"+
"\10\270\1\u018f\12\270\1\u010a\12\270\237\0\1\u01c9\24\270"+
"\1\u01cc\5\270\1\u010a\12\270\237\0\1\u0109\11\270\1\u018f"+
"\20\270\1\u010a\12\270\237\0\1\u01c9\16\270\1\u01cd\13\270"+
"\1\u010a\12\270\237\0\1\u01c9\12\270\1\u01ce\17\270\1\u010a"+
"\12\270\237\0\1\u01c9\5\270\1\u018f\24\270\1\u010a\12\270"+
"\237\0\1\u01c9\1\u01cf\31\270\1\u010a\12\270\237\0\1\u0109"+
"\32\270\1\u01d0\12\270\237\0\1\u0109\22\270\1\u018f\7\270"+
"\1\u010a\12\270\237\0\1\u01c9\23\270\1\u018f\6\270\1\u010a"+
"\12\270\237\0\1\u01c9\24\270\1\u01d1\5\270\1\u010a\12\270"+
"\273\0\12\u01d2\10\0\1\u018c\1\u018d\1\u018e\224\0\1\u01a4"+
"\45\u0163\1\u018c\2\u0163\1\u01a5\1\u018c\2\u0163\1\u01a6\2\u0163"+
"\1\u0165\2\0\1\u018c\1\u0163\1\206\3\0\1\u0163\1\161"+
"\212\0\1\160\4\u01d3\2\161\1\u01d3\15\161\1\u01d3\6\161"+
"\12\u01d3\1\0\3\161\1\0\2\161\1\162\3\161\3\0"+
"\1\161\4\0\2\161\212\0\51\u018c\1\u01c6\6\u018c\1\u018e"+
"\1\271\1\0\2\u018c\4\0\1\u018c\213\0\1\u01a7\45\u0164"+
"\1\u018d\2\u0164\1\u01a8\1\0\2\161\1\u01a9\1\u0163\1\u0164"+
"\1\u0165\2\0\1\u018d\1\u0164\1\206\3\0\2\161\212\0"+
"\1\160\4\u01d4\2\161\1\u01d4\15\161\1\u01d4\6\161\12\u01d4"+
"\1\0\3\161\1\0\2\161\1\162\3\161\3\0\1\161"+
"\4\0\2\161\212\0\51\u018d\1\u01c7\3\0\1\u018d\1\u018c"+
"\1\u018d\1\u018e\1\271\1\0\2\u018d\220\0\1\u01aa\45\u0165"+
"\1\u018e\2\u0165\1\u01ab\1\u018e\2\u0165\1\u01ac\2\u0165\1\161"+
"\2\0\1\u018e\1\u0165\1\206\3\0\1\u0165\1\161\212\0"+
"\1\160\4\u01d5\2\161\1\u01d5\15\161\1\u01d5\6\161\12\u01d5"+
"\1\0\3\161\1\0\2\161\1\162\3\161\3\0\1\161"+
"\4\0\2\161\212\0\51\u018e\1\u01c8\6\u018e\1\0\1\271"+
"\1\0\2\u018e\4\0\1\u018e\3\0\1\53\1\0\1\54"+
"\2\0\1\55\1\0\1\56\4\0\1\57\1\0\1\60"+
"\1\0\1\61\2\0\1\62\3\0\1\63\2\0\1\64"+
"\4\0\1\65\3\0\1\66\17\0\1\67\2\0\1\70"+
"\21\0\1\71\2\0\1\72\57\0\2\30\1\73\1\0"+
"\1\74\1\0\1\74\1\75\1\0\1\30\2\0\1\30"+
"\1\163\20\41\1\u01d6\11\41\1\164\12\165\1\74\1\161"+
"\1\166\1\161\1\0\1\161\1\167\1\162\3\161\3\0"+
"\1\161\4\0\2\161\2\0\1\53\1\0\1\54\2\0"+
"\1\55\1\0\1\56\4\0\1\57\1\0\1\60\1\0"+
"\1\61\2\0\1\62\3\0\1\63\2\0\1\64\4\0"+
"\1\65\3\0\1\66\17\0\1\67\2\0\1\70\21\0"+
"\1\71\2\0\1\72\57\0\2\30\1\73\1\0\1\74"+
"\1\0\1\74\1\75\1\0\1\30\2\0\1\30\1\163"+
"\3\41\1\u0118\26\41\1\164\12\165\1\74\1\161\1\166"+
"\1\161\1\0\1\161\1\167\1\162\3\161\3\0\1\161"+
"\4\0\2\161\212\0\1\160\1\324\1\u01d7\1\u01d8\2\324"+
"\1\u01d9\1\u01da\1\u01db\1\324\1\u01dc\1\u01dd\2\324\1\u01de"+
"\1\u01df\2\324\1\u01e0\1\u01e1\1\u01e2\1\324\1\u01e3\1\u01e4"+
"\1\324\1\u01e5\1\u01e6\1\164\1\u01e7\2\324\1\u01e8\1\u01e9"+
"\1\u01ea\1\324\1\u01eb\1\u01ec\1\324\1\0\3\161\1\0"+
"\2\161\1\162\3\161\3\0\1\161\4\0\2\161\271\0"+
"\1\u01ed\225\0\1\u01ee\32\u01ef\1\u01ee\12\u01ef\1\u01f0\2\u01ee"+
"\1\u01f1\3\u01ee\1\u01f2\3\0\1\u01f3\1\0\2\u01ee\4\0"+
"\1\u01ee\3\0\1\53\1\0\1\54\2\0\1\55\1\0"+
"\1\56\4\0\1\57\1\0\1\60\1\0\1\61\2\0"+
"\1\62\3\0\1\63\2\0\1\64\4\0\1\65\3\0"+
"\1\66\17\0\1\67\2\0\1\70\21\0\1\71\2\0"+
"\1\72\57\0\2\30\1\73\1\0\1\74\1\0\1\74"+
"\1\75\1\0\1\30\2\0\1\30\1\163\32\41\1\164"+
"\12\165\1\u01f4\1\161\1\166\1\161\1\0\1\161\1\167"+
"\1\162\3\161\3\0\1\161\4\0\2\161\271\0\1\u01f5"+
"\225\0\1\u0121\20\324\1\u01f6\11\324\1\164\12\324\1\0"+
"\3\161\1\0\2\161\1\162\3\161\3\0\1\161\4\0"+
"\2\161\212\0\1\u0121\3\324\1\u0132\26\324\1\164\12\324"+
"\1\0\3\161\1\0\2\161\1\162\3\161\3\0\1\161"+
"\4\0\2\161\7\0\1\241\1\0\1\242\17\0\1\243"+
"\2\0\1\244\4\0\1\245\3\0\1\246\22\0\1\247"+
"\21\0\1\250\2\0\1\251\60\0\1\107\1\31\6\0"+
"\1\107\3\0\1\160\1\334\1\335\1\336\1\337\1\340"+
"\1\341\1\342\1\343\1\344\1\345\1\346\1\347\1\350"+
"\1\351\1\352\1\353\1\354\1\355\1\356\1\357\1\360"+
"\1\361\1\362\1\363\1\364\1\365\1\161\1\u01f7\2\u01f8"+
"\1\u01f7\5\u01f8\1\u01f9\1\0\3\161\1\0\2\161\1\162"+
"\3\161\3\0\1\161\1\206\3\0\2\161\2\0\1\53"+
"\1\0\1\54\2\0\1\76\1\0\1\77\4\0\1\57"+
"\1\0\1\60\1\0\1\61\2\0\1\62\3\0\1\100"+
"\2\0\1\101\4\0\1\102\3\0\1\103\17\0\1\67"+
"\2\0\1\104\21\0\1\105\2\0\1\106\57\0\1\30"+
"\2\31\2\0\2\107\1\110\1\0\1\31\2\0\1\30"+
"\1\u01b6\32\41\1\164\12\371\1\0\1\161\1\175\1\161"+
"\1\0\2\176\1\162\3\161\2\0\1\107\1\161\4\0"+
"\2\161\2\0\1\53\1\0\1\54\2\0\1\76\1\0"+
"\1\77\4\0\1\57\1\0\1\60\1\0\1\61\2\0"+
"\1\62\3\0\1\100\2\0\1\101\4\0\1\102\3\0"+
"\1\103\17\0\1\67\2\0\1\104\21\0\1\105\2\0"+
"\1\106\57\0\1\30\2\31\2\0\2\107\1\110\1\0"+
"\1\31\2\0\1\30\1\u01b6\32\41\1\164\2\u01b7\1\371"+
"\2\u01b7\2\371\1\u01b7\1\371\1\u01b7\1\0\1\161\1\175"+
"\1\161\1\0\2\176\1\162\3\161\2\0\1\107\1\161"+
"\4\0\2\161\213\0\4\u01fa\2\0\1\u01fa\15\0\1\u01fa"+
"\6\0\12\u01fa\1\u0181\237\0\4\u01fb\2\0\1\u01fb\15\0"+
"\1\u01fb\6\0\12\u01fb\1\u01fc\237\0\4\u01fd\2\0\1\u01fd"+
"\15\0\1\u01fd\6\0\1\u01fe\2\u01ff\1\u01fe\5\u01ff\1\u0200"+
"\14\0\1\u0146\223\0\4\u0201\2\0\1\u0201\15\0\1\u0201"+
"\6\0\12\u0201\1\u01bd\13\0\1\u0146\223\0\4\u01fd\2\0"+
"\1\u01fd\15\0\1\u01fd\6\0\1\u01fe\2\u01ff\1\u01fe\5\u01ff"+
"\1\u0200\237\0\1\u0188\4\u0201\2\0\1\u0201\15\0\1\u0201"+
"\6\0\12\u0202\1\u01bd\13\0\1\u0146\222\0\1\u0188\4\u0201"+
"\2\0\1\u0201\15\0\1\u0201\6\0\12\u0201\1\u01bd\13\0"+
"\1\u0146\222\0\1\u0188\4\u0201\2\0\1\u0201\15\0\1\u0201"+
"\6\0\2\u0202\1\u0201\2\u0202\2\u0201\1\u0202\1\u0201\1\u0202"+
"\1\u01bd\13\0\1\u0146\223\0\4\u0203\2\0\1\u0203\15\0"+
"\1\u0203\6\0\12\u0203\1\u0187\13\0\1\u0146\222\0\1\u0204"+
"\33\0\12\u01c3\237\0\1\u0204\33\0\12\u0205\237\0\1\u0204"+
"\33\0\1\u01c3\1\u0206\1\u0205\2\u01c3\2\u0205\1\u01c3\1\u0205"+
"\1\u01c3\237\0\1\u0188\4\u0203\2\0\1\u0203\15\0\1\u0203"+
"\6\0\12\u0203\1\u0187\13\0\1\u0146\223\0\4\u0207\2\0"+
"\1\u0207\15\0\1\u0207\6\0\12\u0207\240\0\4\u0208\2\0"+
"\1\u0208\15\0\1\u0208\6\0\12\u0208\240\0\4\u0209\2\0"+
"\1\u0209\15\0\1\u0209\6\0\12\u0209\237\0\1\u0109\5\270"+
"\1\u018f\24\270\1\u010a\12\270\237\0\1\u0109\15\270\1\u018f"+
"\14\270\1\u010a\12\270\237\0\1\u0109\10\270\1\u018f\21\270"+
"\1\u010a\12\270\237\0\1\u0109\3\270\1\u020a\26\270\1\u010a"+
"\12\270\237\0\1\u0109\3\270\1\u018f\26\270\1\u010a\12\270"+
"\237\0\1\u0109\27\270\1\u020b\2\270\1\u010a\12\270\240\0"+
"\32\270\1\u020c\12\270\237\0\1\u0109\16\270\1\u018f\13\270"+
"\1\u010a\12\270\273\0\12\u020d\10\0\1\u018c\1\u018d\1\u018e"+
"\224\0\1\160\4\u0163\2\161\1\u0163\15\161\1\u0163\6\161"+
"\12\u0163\1\0\3\161\1\0\2\161\1\162\3\161\3\0"+
"\1\161\4\0\2\161\212\0\1\160\4\u0164\2\161\1\u0164"+
"\15\161\1\u0164\6\161\12\u0164\1\0\3\161\1\0\2\161"+
"\1\162\3\161\3\0\1\161\4\0\2\161\212\0\1\160"+
"\4\u0165\2\161\1\u0165\15\161\1\u0165\6\161\12\u0165\1\0"+
"\3\161\1\0\2\161\1\162\3\161\3\0\1\161\4\0"+
"\2\161\2\0\1\53\1\0\1\54\2\0\1\55\1\0"+
"\1\56\4\0\1\57\1\0\1\60\1\0\1\61\2\0"+
"\1\62\3\0\1\63\2\0\1\64\4\0\1\65\3\0"+
"\1\66\17\0\1\67\2\0\1\70\21\0\1\71\2\0"+
"\1\72\57\0\2\30\1\73\1\0\1\74\1\0\1\74"+
"\1\75\1\0\1\30\2\0\1\30\1\163\12\41\1\u010d"+
"\17\41\1\164\12\165\1\74\1\161\1\166\1\161\1\0"+
"\1\161\1\167\1\162\3\161\3\0\1\161\4\0\2\161"+
"\212\0\1\u0121\11\324\1\u020e\20\324\1\164\12\324\1\0"+
"\3\161\1\0\2\161\1\162\3\161\3\0\1\161\4\0"+
"\2\161\212\0\1\u0121\3\324\1\u020f\26\324\1\164\12\324"+
"\1\0\3\161\1\0\2\161\1\162\3\161\3\0\1\161"+
"\4\0\2\161\212\0\1\u0121\7\324\1\u0210\22\324\1\164"+
"\4\324\1\u0211\5\324\1\0\3\161\1\0\2\161\1\162"+
"\3\161\3\0\1\161\4\0\2\161\212\0\1\u0121\10\324"+
"\1\u0212\4\324\1\u0213\5\324\1\u0214\6\324\1\164\12\324"+
"\1\0\3\161\1\0\2\161\1\162\3\161\3\0\1\161"+
"\4\0\2\161\212\0\1\u0121\3\324\1\u0215\26\324\1\164"+
"\2\324\1\u0216\7\324\1\0\3\161\1\0\2\161\1\162"+
"\3\161\3\0\1\161\4\0\2\161\212\0\1\u0121\7\324"+
"\1\u0217\22\324\1\164\12\324\1\0\3\161\1\0\2\161"+
"\1\162\3\161\3\0\1\161\4\0\2\161\212\0\1\u0121"+
"\7\324\1\u0218\22\324\1\164\12\324\1\0\3\161\1\0"+
"\2\161\1\162\3\161\3\0\1\161\4\0\2\161\212\0"+
"\1\u0121\7\324\1\u0219\22\324\1\164\3\324\1\u021a\6\324"+
"\1\0\3\161\1\0\2\161\1\162\3\161\3\0\1\161"+
"\4\0\2\161\212\0\1\u0121\32\324\1\164\5\324\1\u021b"+
"\4\324\1\0\3\161\1\0\2\161\1\162\3\161\3\0"+
"\1\161\4\0\2\161\212\0\1\u0121\7\324\1\u021c\22\324"+
"\1\164\12\324\1\0\3\161\1\0\2\161\1\162\3\161"+
"\3\0\1\161\4\0\2\161\212\0\1\u0121\31\324\1\u021d"+
"\1\164\12\324\1\0\3\161\1\0\2\161\1\162\3\161"+
"\3\0\1\161\4\0\2\161\212\0\1\u0121\1\324\1\u021e"+
"\30\324\1\164\12\324\1\0\3\161\1\0\2\161\1\162"+
"\3\161\3\0\1\161\4\0\2\161\212\0\1\u0121\7\324"+
"\1\u021f\1\324\1\u0220\20\324\1\164\11\324\1\u021b\1\0"+
"\3\161\1\0\2\161\1\162\3\161\3\0\1\161\4\0"+
"\2\161\212\0\1\u0121\22\324\1\u0221\7\324\1\164\2\324"+
"\1\u0222\7\324\1\0\3\161\1\0\2\161\1\162\3\161"+
"\3\0\1\161\4\0\2\161\212\0\1\u0121\6\324\1\u0223"+
"\1\u0224\22\324\1\164\12\324\1\0\3\161\1\0\2\161"+
"\1\162\3\161\3\0\1\161\4\0\2\161\212\0\1\u0121"+
"\7\324\1\u0225\5\324\1\u0226\14\324\1\164\12\324\1\0"+
"\3\161\1\0\2\161\1\162\3\161\3\0\1\161\4\0"+
"\2\161\212\0\1\u0121\23\324\1\u0227\6\324\1\164\12\324"+
"\1\0\3\161\1\0\2\161\1\162\3\161\3\0\1\161"+
"\4\0\2\161\212\0\1\u0121\32\324\1\164\3\324\1\u0228"+
"\6\324\1\0\3\161\1\0\2\161\1\162\3\161\3\0"+
"\1\161\4\0\2\161\212\0\1\u0121\3\324\1\u0229\26\324"+
"\1\164\12\324\1\0\3\161\1\0\2\161\1\162\3\161"+
"\3\0\1\161\4\0\2\161\212\0\1\u0121\17\324\1\u022a"+
"\12\324\1\164\1\u022b\11\324\1\0\3\161\1\0\2\161"+
"\1\162\3\161\3\0\1\161\4\0\2\161\212\0\1\u0121"+
"\32\324\1\164\1\324\1\u021b\10\324\1\0\3\161\1\0"+
"\2\161\1\162\3\161\3\0\1\161\4\0\2\161\212\0"+
"\1\u0121\32\324\1\164\1\u022c\11\324\1\0\3\161\1\0"+
"\2\161\1\162\3\161\3\0\1\161\4\0\2\161\213\0"+
"\32\u022d\1\0\12\u022d\11\0\1\u022e\1\0\1\u022f\223\0"+
"\46\u01ee\1\u01f0\2\u01ee\1\u01f1\3\u01ee\1\u01f2\5\0\2\u01ee"+
"\4\0\1\u01ee\213\0\1\u0230\32\u01ef\1\u0231\12\u01ef\1\u0232"+
"\2\u01ee\1\u01f1\3\u01ee\1\u01f2\1\0\1\u0233\3\0\2\u01ee"+
"\4\0\1\u01ee\213\0\46\u01f0\1\0\2\u01f0\1\u0234\3\u01f0"+
"\1\u01f2\5\0\2\u01f0\4\0\1\u01f0\214\0\4\u0235\2\0"+
"\1\u0235\15\0\1\u0235\6\0\12\u0235\240\0\32\u0236\1\0"+
"\12\u0236\13\0\1\u01f3\224\0\4\u0237\2\0\1\u0237\15\0"+
"\1\u0237\6\0\12\u0237\1\u0238\26\0\1\53\1\0\1\54"+
"\2\0\1\221\1\0\1\222\4\0\1\57\1\0\1\60"+
"\1\0\1\61\2\0\1\62\3\0\1\223\2\0\1\224"+
"\4\0\1\225\3\0\1\226\17\0\1\67\2\0\1\227"+
"\21\0\1\230\2\0\1\231\57\0\1\30\1\74\7\0"+
"\1\74\2\0\1\30\1\u0239\32\u023a\13\u0239\1\0\3\u0239"+
"\1\0\2\u0239\1\0\3\u0239\3\0\1\u0239\1\u023b\3\0"+
"\2\u0239\212\0\1\u023c\32\u023d\1\u023c\12\u023d\1\u023e\2\u023c"+
"\1\u023f\3\u023c\1\u0240\3\0\1\u0241\1\0\2\u023c\4\0"+
"\1\u023c\213\0\1\u0121\12\324\1\u0127\17\324\1\164\12\324"+
"\1\0\3\161\1\0\2\161\1\162\3\161\3\0\1\161"+
"\4\0\2\161\2\0\1\53\1\0\1\54\2\0\1\76"+
"\1\0\1\77\4\0\1\57\1\0\1\60\1\0\1\61"+
"\2\0\1\62\3\0\1\100\2\0\1\101\4\0\1\102"+
"\3\0\1\103\17\0\1\67\2\0\1\104\21\0\1\105"+
"\2\0\1\106\57\0\1\30\2\31\2\0\2\107\1\110"+
"\1\0\1\31\2\0\1\30\1\u013e\32\41\1\164\12\u01f8"+
"\1\u0174\1\161\1\175\1\161\1\0\2\176\1\162\1\u0163"+
"\1\u0164\1\u0165\2\0\1\107\1\161\4\0\2\161\2\0"+
"\1\53\1\0\1\54\2\0\1\76\1\0\1\77\4\0"+
"\1\57\1\0\1\60\1\0\1\61\2\0\1\62\3\0"+
"\1\100\2\0\1\101\4\0\1\102\3\0\1\103\17\0"+
"\1\67\2\0\1\104\21\0\1\105\2\0\1\106\57\0"+
"\1\30\2\31\2\0\2\107\1\110\1\0\1\31\2\0"+
"\1\30\1\u013e\32\41\1\164\12\u0242\1\u0174\1\161\1\175"+
"\1\161\1\0\2\176\1\162\1\u0163\1\u0164\1\u0165\2\0"+
"\1\107\1\161\4\0\2\161\2\0\1\53\1\0\1\54"+
"\2\0\1\76\1\0\1\77\4\0\1\57\1\0\1\60"+
"\1\0\1\61\2\0\1\62\3\0\1\100\2\0\1\101"+
"\4\0\1\102\3\0\1\103\17\0\1\67\2\0\1\104"+
"\21\0\1\105\2\0\1\106\57\0\1\30\2\31\2\0"+
"\2\107\1\110\1\0\1\31\2\0\1\30\1\u013e\32\41"+
"\1\164\1\u01f8\1\u0243\1\u0242\2\u01f8\2\u0242\1\u01f8\1\u0242"+
"\1\u01f8\1\u0174\1\161\1\175\1\161\1\0\2\176\1\162"+
"\1\u0163\1\u0164\1\u0165\2\0\1\107\1\161\4\0\2\161"+
"\260\0\1\u0181\237\0\4\u0244\2\0\1\u0244\15\0\1\u0244"+
"\6\0\12\u0244\1\u01fc\237\0\4\u0245\2\0\1\u0245\15\0"+
"\1\u0245\6\0\12\u0245\1\u0246\237\0\4\u0247\2\0\1\u0247"+
"\15\0\1\u0247\6\0\12\u0247\1\u0248\13\0\1\u0146\222\0"+
"\1\u0188\4\u0247\2\0\1\u0247\15\0\1\u0247\6\0\12\u0249"+
"\1\u0248\13\0\1\u0146\222\0\1\u0188\4\u0247\2\0\1\u0247"+
"\15\0\1\u0247\6\0\12\u024a\1\u0248\13\0\1\u0146\222\0"+
"\1\u0188\4\u0247\2\0\1\u0247\15\0\1\u0247\6\0\1\u0249"+
"\1\u024b\1\u024a\2\u0249\2\u024a\1\u0249\1\u024a\1\u0249\1\u0248"+
"\13\0\1\u0146\223\0\4\u024c\2\0\1\u024c\15\0\1\u024c"+
"\6\0\12\u024c\1\u01bd\13\0\1\u0146\222\0\1\u0188\4\u024c"+
"\2\0\1\u024c\15\0\1\u024c\6\0\12\u024c\1\u01bd\13\0"+
"\1\u0146\270\0\1\u0187\13\0\1\u0146\256\0\1\u024d\2\u024e"+
"\1\u024d\5\u024e\1\u024f\237\0\1\u0204\304\0\1\u0204\33\0"+
"\2\u0205\1\0\2\u0205\2\0\1\u0205\1\0\1\u0205\240\0"+
"\4\u018c\2\0\1\u018c\15\0\1\u018c\6\0\12\u018c\240\0"+
"\4\u018d\2\0\1\u018d\15\0\1\u018d\6\0\12\u018d\240\0"+
"\4\u018e\2\0\1\u018e\15\0\1\u018e\6\0\12\u018e\237\0"+
"\1\u0109\20\270\1\u0250\11\270\1\u010a\12\270\237\0\1\u0109"+
"\3\270\1\u019a\26\270\1\u010a\12\270\240\0\1\270\1\u0251"+
"\1\u0252\2\270\1\u0253\1\u0254\1\u0255\1\270\1\u0256\1\u0257"+
"\2\270\1\u0258\1\u0259\2\270\1\u025a\1\u025b\1\u025c\1\270"+
"\1\u025d\1\u025e\1\270\1\u025f\1\u0260\1\u010a\1\u0261\2\270"+
"\1\u0262\1\u0263\1\u0264\1\270\1\u0265\1\u0266\1\270\273\0"+
"\12\u0267\10\0\1\u018c\1\u018d\1\u018e\224\0\1\u0121\1\324"+
"\1\u0268\30\324\1\164\12\324\1\0\3\161\1\0\2\161"+
"\1\162\3\161\3\0\1\161\4\0\2\161\212\0\1\u0121"+
"\24\324\1\u0269\5\324\1\164\12\324\1\0\3\161\1\0"+
"\2\161\1\162\3\161\3\0\1\161\4\0\2\161\212\0"+
"\1\u0121\24\324\1\u026a\5\324\1\164\12\324\1\0\3\161"+
"\1\0\2\161\1\162\3\161\3\0\1\161\4\0\2\161"+
"\212\0\1\u0121\1\324\1\u026b\30\324\1\164\12\324\1\0"+
"\3\161\1\0\2\161\1\162\3\161\3\0\1\161\4\0"+
"\2\161\212\0\1\u0121\14\324\1\u026c\15\324\1\164\12\324"+
"\1\0\3\161\1\0\2\161\1\162\3\161\3\0\1\161"+
"\4\0\2\161\212\0\1\u0121\1\324\1\u026d\30\324\1\164"+
"\12\324\1\0\3\161\1\0\2\161\1\162\3\161\3\0"+
"\1\161\4\0\2\161\212\0\1\u0121\1\324\1\u026e\30\324"+
"\1\164\12\324\1\0\3\161\1\0\2\161\1\162\3\161"+
"\3\0\1\161\4\0\2\161\212\0\1\u0121\1\324\1\u026f"+
"\30\324\1\164\12\324\1\0\3\161\1\0\2\161\1\162"+
"\3\161\3\0\1\161\4\0\2\161\212\0\1\u0121\21\324"+
"\1\u0270\10\324\1\164\12\324\1\0\3\161\1\0\2\161"+
"\1\162\3\161\3\0\1\161\4\0\2\161\212\0\1\u0121"+
"\24\324\1\u0271\5\324\1\164\12\324\1\0\3\161\1\0"+
"\2\161\1\162\3\161\3\0\1\161\4\0\2\161\212\0"+
"\1\u0121\24\324\1\u0272\5\324\1\164\12\324\1\0\3\161"+
"\1\0\2\161\1\162\3\161\3\0\1\161\4\0\2\161"+
"\212\0\1\u0121\24\324\1\u0273\5\324\1\164\12\324\1\0"+
"\3\161\1\0\2\161\1\162\3\161\3\0\1\161\4\0"+
"\2\161\212\0\1\u0121\1\u0177\31\324\1\164\12\324\1\0"+
"\3\161\1\0\2\161\1\162\3\161\3\0\1\161\4\0"+
"\2\161\212\0\1\u0121\24\324\1\u026f\5\324\1\164\12\324"+
"\1\0\3\161\1\0\2\161\1\162\3\161\3\0\1\161"+
"\4\0\2\161\212\0\1\u0121\24\324\1\u0274\5\324\1\164"+
"\12\324\1\0\3\161\1\0\2\161\1\162\3\161\3\0"+
"\1\161\4\0\2\161\212\0\1\u0121\1\324\1\u0275\30\324"+
"\1\164\12\324\1\0\3\161\1\0\2\161\1\162\3\161"+
"\3\0\1\161\4\0\2\161\212\0\1\u0121\31\324\1\u0276"+
"\1\164\12\324\1\0\3\161\1\0\2\161\1\162\3\161"+
"\3\0\1\161\4\0\2\161\212\0\1\u0121\24\324\1\u0277"+
"\5\324\1\164\12\324\1\0\3\161\1\0\2\161\1\162"+
"\3\161\3\0\1\161\4\0\2\161\212\0\1\u0121\1\324"+
"\1\u0278\30\324\1\164\12\324\1\0\3\161\1\0\2\161"+
"\1\162\3\161\3\0\1\161\4\0\2\161\212\0\1\u0121"+
"\1\u0279\31\324\1\164\12\324\1\0\3\161\1\0\2\161"+
"\1\162\3\161\3\0\1\161\4\0\2\161\212\0\1\u0121"+
"\21\324\1\u027a\10\324\1\164\12\324\1\0\3\161\1\0"+
"\2\161\1\162\3\161\3\0\1\161\4\0\2\161\212\0"+
"\1\u0121\4\324\1\u027b\25\324\1\164\12\324\1\0\3\161"+
"\1\0\2\161\1\162\3\161\3\0\1\161\4\0\2\161"+
"\212\0\1\u0121\24\324\1\u027c\5\324\1\164\12\324\1\0"+
"\3\161\1\0\2\161\1\162\3\161\3\0\1\161\4\0"+
"\2\161\212\0\1\u0121\24\324\1\u027d\5\324\1\164\12\324"+
"\1\0\3\161\1\0\2\161\1\162\3\161\3\0\1\161"+
"\4\0\2\161\212\0\1\u0121\4\324\1\u027e\25\324\1\164"+
"\12\324\1\0\3\161\1\0\2\161\1\162\3\161\3\0"+
"\1\161\4\0\2\161\212\0\1\u0121\21\324\1\u027f\10\324"+
"\1\164\12\324\1\0\3\161\1\0\2\161\1\162\3\161"+
"\3\0\1\161\4\0\2\161\212\0\1\u0121\24\324\1\u0280"+
"\5\324\1\164\12\324\1\0\3\161\1\0\2\161\1\162"+
"\3\161\3\0\1\161\4\0\2\161\212\0\1\u0121\32\324"+
"\1\164\1\u0281\11\324\1\0\3\161\1\0\2\161\1\162"+
"\3\161\3\0\1\161\4\0\2\161\212\0\1\u0121\32\324"+
"\1\164\7\324\1\u0282\2\324\1\0\3\161\1\0\2\161"+
"\1\162\3\161\3\0\1\161\4\0\2\161\212\0\1\u0121"+
"\1\u0283\31\324\1\164\12\324\1\0\3\161\1\0\2\161"+
"\1\162\3\161\3\0\1\161\4\0\2\161\212\0\1\u0121"+
"\1\u0284\31\324\1\164\12\324\1\0\3\161\1\0\2\161"+
"\1\162\3\161\3\0\1\161\4\0\2\161\212\0\1\u0285"+
"\32\u022d\1\u0286\12\u022d\11\0\1\u022e\225\0\51\u022e\1\u0287"+
"\3\0\3\u022e\1\u018e\3\0\1\u022e\221\0\4\u0288\2\0"+
"\1\u0288\15\0\1\u0288\6\0\12\u0288\1\u0289\236\0\1\u01ee"+
"\32\u01ef\1\u01ee\12\u01ef\1\u01f0\2\u01ee\1\u01f1\3\u01ee\1\u01f2"+
"\5\0\2\u01ee\4\0\1\u01ee\213\0\1\u01ee\32\u01ef\1\u0231"+
"\12\u01ef\1\u01f0\2\u01ee\1\u01f1\3\u01ee\1\u01f2\5\0\2\u01ee"+
"\4\0\1\u01ee\213\0\34\u01f0\12\u028a\1\0\2\u01f0\1\u0234"+
"\3\u01f0\1\u01f2\5\0\2\u01f0\4\0\1\u01f0\213\0\51\u0233"+
"\1\u028b\3\0\3\u0233\1\u018e\2\0\1\u028c\1\u0233\221\0"+
"\4\u028d\2\0\1\u028d\15\0\1\u028d\6\0\12\u028d\240\0"+
"\4\u01ee\2\0\1\u01ee\15\0\1\u01ee\6\0\12\u01ee\237\0"+
"\1\u028e\32\u0236\1\u028f\12\u0236\1\u0290\10\0\1\u0233\226\0"+
"\4\u0291\2\0\1\u0291\15\0\1\u0291\6\0\12\u0291\1\u0292"+
"\304\0\1\u0293\236\0\1\u0294\45\u0239\1\0\3\u0239\1\0"+
"\2\u0239\1\u0295\3\u0239\3\0\1\u0239\4\0\2\u0239\2\0"+
"\1\53\1\0\1\54\2\0\1\55\1\0\1\56\4\0"+
"\1\57\1\0\1\60\1\0\1\61\2\0\1\62\3\0"+
"\1\63\2\0\1\64\4\0\1\65\3\0\1\66\17\0"+
"\1\67\2\0\1\70\21\0\1\71\2\0\1\72\57\0"+
"\2\30\1\73\1\0\1\74\1\0\1\74\1\75\1\0"+
"\1\30\2\0\1\30\1\u0296\32\u023a\1\u0239\12\u0297\1\74"+
"\1\u0239\1\u0298\1\u0239\1\0\1\u0239\1\u0299\1\u0295\3\u0239"+
"\3\0\1\u0239\4\0\2\u0239\212\0\65\u023b\1\u029a\1\u023b"+
"\1\u029b\1\0\2\u023b\212\0\46\u023c\1\u023e\2\u023c\1\u023f"+
"\3\u023c\1\u0240\5\0\2\u023c\4\0\1\u023c\213\0\1\u029c"+
"\32\u023d\1\u029d\12\u023d\1\u029e\2\u023c\1\u023f\3\u023c\1\u0240"+
"\1\u018c\1\u018d\1\u018e\2\0\2\u023c\4\0\1\u023c\213\0"+
"\46\u023e\1\0\2\u023e\1\u029f\3\u023e\1\u0240\5\0\2\u023e"+
"\4\0\1\u023e\214\0\4\u02a0\2\0\1\u02a0\15\0\1\u02a0"+
"\6\0\12\u02a0\240\0\32\u02a1\1\0\12\u02a1\13\0\1\u0241"+
"\13\0\1\53\1\0\1\54\2\0\1\76\1\0\1\77"+
"\4\0\1\57\1\0\1\60\1\0\1\61\2\0\1\62"+
"\3\0\1\100\2\0\1\101\4\0\1\102\3\0\1\103"+
"\17\0\1\67\2\0\1\104\21\0\1\105\2\0\1\106"+
"\57\0\1\30\2\31\2\0\2\107\1\110\1\0\1\31"+
"\2\0\1\30\1\u013e\32\41\1\164\12\371\1\u0174\1\161"+
"\1\175\1\161\1\0\2\176\1\162\1\u0163\1\u0164\1\u0165"+
"\2\0\1\107\1\161\4\0\2\161\2\0\1\53\1\0"+
"\1\54\2\0\1\76\1\0\1\77\4\0\1\57\1\0"+
"\1\60\1\0\1\61\2\0\1\62\3\0\1\100\2\0"+
"\1\101\4\0\1\102\3\0\1\103\17\0\1\67\2\0"+
"\1\104\21\0\1\105\2\0\1\106\57\0\1\30\2\31"+
"\2\0\2\107\1\110\1\0\1\31\2\0\1\30\1\u013e"+
"\32\41\1\164\2\u0242\1\371\2\u0242\2\371\1\u0242\1\371"+
"\1\u0242\1\u0174\1\161\1\175\1\161\1\0\2\176\1\162"+
"\1\u0163\1\u0164\1\u0165\2\0\1\107\1\161\4\0\2\161"+
"\213\0\4\u02a2\2\0\1\u02a2\15\0\1\u02a2\6\0\12\u02a2"+
"\1\u01fc\237\0\4\u02a3\2\0\1\u02a3\15\0\1\u02a3\6\0"+
"\12\u02a3\1\u02a4\237\0\4\u02a5\2\0\1\u02a5\15\0\1\u02a5"+
"\6\0\1\u02a6\2\u02a7\1\u02a6\5\u02a7\1\u02a8\14\0\1\u0146"+
"\223\0\4\u02a9\2\0\1\u02a9\15\0\1\u02a9\6\0\12\u02a9"+
"\1\u0248\13\0\1\u0146\223\0\4\u02a5\2\0\1\u02a5\15\0"+
"\1\u02a5\6\0\1\u02a6\2\u02a7\1\u02a6\5\u02a7\1\u02a8\237\0"+
"\1\u0188\4\u02a9\2\0\1\u02a9\15\0\1\u02a9\6\0\12\u02aa"+
"\1\u0248\13\0\1\u0146\222\0\1\u0188\4\u02a9\2\0\1\u02a9"+
"\15\0\1\u02a9\6\0\12\u02a9\1\u0248\13\0\1\u0146\222\0"+
"\1\u0188\4\u02a9\2\0\1\u02a9\15\0\1\u02a9\6\0\2\u02aa"+
"\1\u02a9\2\u02aa\2\u02a9\1\u02aa\1\u02a9\1\u02aa\1\u0248\13\0"+
"\1\u0146\270\0\1\u01bd\13\0\1\u0146\222\0\1\u02ab\33\0"+
"\12\u024e\237\0\1\u02ab\33\0\12\u02ac\237\0\1\u02ab\33\0"+
"\1\u024e\1\u02ad\1\u02ac\2\u024e\2\u02ac\1\u024e\1\u02ac\1\u024e"+
"\237\0\1\u0109\12\270\1\u018f\17\270\1\u010a\12\270\237\0"+
"\1\u0109\11\270\1\u02ae\20\270\1\u010a\12\270\237\0\1\u0109"+
"\3\270\1\u02af\26\270\1\u010a\12\270\237\0\1\u0109\7\270"+
"\1\u02b0\22\270\1\u010a\4\270\1\u02b1\5\270\237\0\1\u0109"+
"\10\270\1\u02b2\4\270\1\u02b3\5\270\1\u02b4\6\270\1\u010a"+
"\12\270\237\0\1\u0109\3\270\1\u02b5\26\270\1\u010a\2\270"+
"\1\u02b6\7\270\237\0\1\u0109\7\270\1\u02b7\22\270\1\u010a"+
"\12\270\237\0\1\u0109\7\270\1\u02b8\22\270\1\u010a\12\270"+
"\237\0\1\u0109\7\270\1\u02b9\22\270\1\u010a\3\270\1\u02ba"+
"\6\270\237\0\1\u0109\32\270\1\u010a\5\270\1\u02bb\4\270"+
"\237\0\1\u0109\7\270\1\u02bc\22\270\1\u010a\12\270\237\0"+
"\1\u0109\31\270\1\u02bd\1\u010a\12\270\237\0\1\u0109\1\270"+
"\1\u02be\30\270\1\u010a\12\270\237\0\1\u0109\7\270\1\u02bf"+
"\1\270\1\u02c0\20\270\1\u010a\11\270\1\u02bb\237\0\1\u0109"+
"\22\270\1\u02c1\7\270\1\u010a\2\270\1\u02c2\7\270\237\0"+
"\1\u0109\6\270\1\u02c3\1\u02c4\22\270\1\u010a\12\270\237\0"+
"\1\u0109\7\270\1\u02c5\5\270\1\u02c6\14\270\1\u010a\12\270"+
"\237\0\1\u0109\23\270\1\u02c7\6\270\1\u010a\12\270\237\0"+
"\1\u0109\32\270\1\u010a\3\270\1\u02c8\6\270\237\0\1\u0109"+
"\3\270\1\u02c9\26\270\1\u010a\12\270\237\0\1\u0109\17\270"+
"\1\u02ca\12\270\1\u010a\1\u02cb\11\270\237\0\1\u0109\32\270"+
"\1\u010a\1\270\1\u02bb\10\270\237\0\1\u0109\32\270\1\u010a"+
"\1\u02cc\11\270\273\0\12\u02cd\10\0\1\u018c\1\u018d\1\u018e"+
"\224\0\1\u0121\25\324\1\u02ce\4\324\1\164\12\324\1\0"+
"\3\161\1\0\2\161\1\162\3\161\3\0\1\161\4\0"+
"\2\161\212\0\1\u0121\1\u02cf\31\324\1\164\12\324\1\0"+
"\3\161\1\0\2\161\1\162\3\161\3\0\1\161\4\0"+
"\2\161\212\0\1\u0121\15\324\1\u02d0\14\324\1\164\12\324"+
"\1\0\3\161\1\0\2\161\1\162\3\161\3\0\1\161"+
"\4\0\2\161\212\0\1\u0121\21\324\1\u02d1\10\324\1\164"+
"\12\324\1\0\3\161\1\0\2\161\1\162\3\161\3\0"+
"\1\161\4\0\2\161\212\0\1\u0121\16\324\1\u02d2\4\324"+
"\1\u02d3\6\324\1\164\12\324\1\0\3\161\1\0\2\161"+
"\1\162\3\161\3\0\1\161\4\0\2\161\212\0\1\u0121"+
"\4\324\1\u02d4\25\324\1\164\12\324\1\0\3\161\1\0"+
"\2\161\1\162\3\161\3\0\1\161\4\0\2\161\212\0"+
"\1\u0121\32\324\1\164\11\324\1\u02d5\1\0\3\161\1\0"+
"\2\161\1\162\3\161\3\0\1\161\4\0\2\161\212\0"+
"\1\u0121\4\324\1\u02d6\25\324\1\164\12\324\1\0\3\161"+
"\1\0\2\161\1\162\3\161\3\0\1\161\4\0\2\161"+
"\212\0\1\u0121\32\324\1\164\11\324\1\u02d7\1\0\3\161"+
"\1\0\2\161\1\162\3\161\3\0\1\161\4\0\2\161"+
"\212\0\1\u0121\24\324\1\u02d8\5\324\1\164\12\324\1\0"+
"\3\161\1\0\2\161\1\162\3\161\3\0\1\161\4\0"+
"\2\161\212\0\1\u0121\1\u02d9\1\u02da\1\324\1\u02db\20\324"+
"\1\u02dc\5\324\1\164\5\324\1\u02dd\4\324\1\0\3\161"+
"\1\0\2\161\1\162\3\161\3\0\1\161\4\0\2\161"+
"\212\0\1\u0121\16\324\1\u02de\13\324\1\164\12\324\1\0"+
"\3\161\1\0\2\161\1\162\3\161\3\0\1\161\4\0"+
"\2\161\212\0\1\u0121\11\324\1\u02df\13\324\1\u02e0\4\324"+
"\1\164\12\324\1\0\3\161\1\0\2\161\1\162\3\161"+
"\3\0\1\161\4\0\2\161\212\0\1\u0121\32\324\1\164"+
"\11\324\1\u02e1\1\0\3\161\1\0\2\161\1\162\3\161"+
"\3\0\1\161\4\0\2\161\212\0\1\u0121\23\324\1\u02e2"+
"\6\324\1\164\12\324\1\0\3\161\1\0\2\161\1\162"+
"\3\161\3\0\1\161\4\0\2\161\212\0\1\u0121\31\324"+
"\1\u02e3\1\164\12\324\1\0\3\161\1\0\2\161\1\162"+
"\3\161\3\0\1\161\4\0\2\161\212\0\1\u0121\26\324"+
"\1\u02e4\3\324\1\164\12\324\1\0\3\161\1\0\2\161"+
"\1\162\3\161\3\0\1\161\4\0\2\161\212\0\1\u0121"+
"\11\324\1\u02e5\20\324\1\164\12\324\1\0\3\161\1\0"+
"\2\161\1\162\3\161\3\0\1\161\4\0\2\161\212\0"+
"\1\u0121\32\324\1\164\3\324\1\u02e6\6\324\1\0\3\161"+
"\1\0\2\161\1\162\3\161\3\0\1\161\4\0\2\161"+
"\212\0\1\u0121\5\324\1\u02e7\24\324\1\164\12\324\1\0"+
"\3\161\1\0\2\161\1\162\3\161\3\0\1\161\4\0"+
"\2\161\212\0\1\u0121\10\324\1\u02e8\21\324\1\164\12\324"+
"\1\0\3\161\1\0\2\161\1\162\3\161\3\0\1\161"+
"\4\0\2\161\212\0\1\u0121\3\324\1\u02e9\26\324\1\164"+
"\12\324\1\0\3\161\1\0\2\161\1\162\3\161\3\0"+
"\1\161\4\0\2\161\212\0\1\u0121\21\324\1\u02ea\6\324"+
"\1\u02eb\1\324\1\164\12\324\1\0\3\161\1\0\2\161"+
"\1\162\3\161\3\0\1\161\4\0\2\161\212\0\1\u0121"+
"\12\324\1\u02ec\17\324\1\164\12\324\1\0\3\161\1\0"+
"\2\161\1\162\3\161\3\0\1\161\4\0\2\161\212\0"+
"\1\u0121\32\324\1\164\1\324\1\u02ed\10\324\1\0\3\161"+
"\1\0\2\161\1\162\3\161\3\0\1\161\4\0\2\161"+
"\212\0\1\u0121\24\324\1\u02ee\5\324\1\164\12\324\1\0"+
"\3\161\1\0\2\161\1\162\3\161\3\0\1\161\4\0"+
"\2\161\212\0\1\u0121\24\324\1\u02ef\5\324\1\164\12\324"+
"\1\0\3\161\1\0\2\161\1\162\3\161\3\0\1\161"+
"\4\0\2\161\212\0\1\u0121\32\324\1\164\4\324\1\u02f0"+
"\5\324\1\0\3\161\1\0\2\161\1\162\3\161\3\0"+
"\1\161\4\0\2\161\212\0\1\u0121\5\324\1\u02f1\23\324"+
"\1\u02f2\1\164\12\324\1\0\3\161\1\0\2\161\1\162"+
"\3\161\3\0\1\161\4\0\2\161\213\0\32\u022d\1\0"+
"\12\u022d\240\0\32\u022d\1\u0286\12\u022d\240\0\4\u02f3\2\0"+
"\1\u02f3\15\0\1\u02f3\6\0\12\u02f3\240\0\4\u02f4\2\0"+
"\1\u02f4\15\0\1\u02f4\6\0\12\u02f4\1\u02f5\304\0\1\u02f6"+
"\236\0\34\u01f0\12\u02f7\1\0\2\u01f0\1\u0234\3\u01f0\1\u01f2"+
"\1\0\1\u0233\3\0\2\u01f0\4\0\1\u01f0\214\0\4\u02f8"+
"\2\0\1\u02f8\15\0\1\u02f8\6\0\12\u02f8\257\0\1\u02f9"+
"\265\0\4\u01f0\2\0\1\u01f0\15\0\1\u01f0\6\0\12\u01f0"+
"\240\0\32\u0236\1\0\12\u0236\240\0\32\u0236\1\u028f\12\u0236"+
"\273\0\12\u02fa\240\0\4\u02fb\2\0\1\u02fb\15\0\1\u02fb"+
"\6\0\12\u02fb\1\u0292\237\0\4\u02fc\2\0\1\u02fc\15\0"+
"\1\u02fc\6\0\12\u02fc\1\u02fd\237\0\4\u02fe\2\0\1\u02fe"+
"\15\0\1\u02fe\6\0\1\u02ff\2\u0300\1\u02ff\5\u0300\1\u0301"+
"\14\0\1\u0302\222\0\1\u0294\45\u0239\1\0\3\u0239\1\0"+
"\2\u0239\1\u0295\3\u0239\3\0\1\u0239\1\u023b\3\0\2\u0239"+
"\213\0\32\u0303\1\0\12\u0303\13\0\1\u0304\13\0\1\53"+
"\1\0\1\54\2\0\1\221\1\0\1\222\4\0\1\57"+
"\1\0\1\60\1\0\1\61\2\0\1\62\3\0\1\223"+
"\2\0\1\224\4\0\1\225\3\0\1\226\17\0\1\67"+
"\2\0\1\227\21\0\1\230\2\0\1\231\57\0\1\30"+
"\1\74\7\0\1\74\2\0\1\30\1\u0294\32\u023a\13\u0239"+
"\1\0\3\u0239\1\0\2\u0239\1\u0295\3\u0239\3\0\1\u0239"+
"\1\u023b\3\0\2\u0239\2\0\1\53\1\0\1\54\2\0"+
"\1\211\1\0\1\56\4\0\1\57\1\0\1\60\1\0"+
"\1\61\2\0\1\62\3\0\1\212\2\0\1\213\4\0"+
"\1\65\3\0\1\214\17\0\1\67\2\0\1\215\21\0"+
"\1\216\2\0\1\217\57\0\1\30\2\73\2\0\2\220"+
"\1\75\1\0\1\73\2\0\1\30\1\u0305\32\u023a\1\u0239"+
"\12\u0297\1\0\1\u0239\1\u0298\1\u0239\1\0\2\u0306\1\u0295"+
"\3\u0239\2\0\1\220\1\u0239\4\0\2\u0239\2\0\1\53"+
"\1\0\1\54\2\0\1\232\1\0\1\56\4\0\1\57"+
"\1\0\1\60\1\0\1\61\2\0\1\62\3\0\1\233"+
"\2\0\1\234\4\0\1\65\3\0\1\235\17\0\1\67"+
"\2\0\1\236\21\0\1\237\2\0\1\240\41\0\1\130"+
"\15\0\1\30\1\75\1\73\1\132\3\0\1\75\1\0"+
"\1\75\2\0\1\30\1\u0294\32\u023a\1\u0239\12\u0297\1\0"+
"\1\u0239\1\u0298\1\u0239\1\0\2\u0239\1\u0295\3\u0239\3\0"+
"\1\u0239\4\0\2\u0239\2\0\1\53\1\0\1\54\2\0"+
"\1\221\1\0\1\222\4\0\1\57\1\0\1\60\1\0"+
"\1\61\2\0\1\62\3\0\1\223\2\0\1\224\4\0"+
"\1\225\3\0\1\226\17\0\1\67\2\0\1\227\21\0"+
"\1\230\2\0\1\231\57\0\1\30\1\74\7\0\1\74"+
"\2\0\1\30\1\u0294\32\u023a\13\u0239\1\0\3\u0239\1\0"+
"\2\u0239\1\u0295\3\u0239\3\0\1\u0239\4\0\2\u0239\212\0"+
"\1\u0307\54\0\1\u0295\227\0\74\u023b\211\0\1\u023c\32\u023d"+
"\1\u023c\12\u023d\1\u023e\2\u023c\1\u023f\3\u023c\1\u0240\5\0"+
"\2\u023c\4\0\1\u023c\213\0\1\u023c\32\u023d\1\u029d\12\u023d"+
"\1\u023e\2\u023c\1\u023f\3\u023c\1\u0240\5\0\2\u023c\4\0"+
"\1\u023c\213\0\34\u023e\12\u0308\1\0\2\u023e\1\u029f\3\u023e"+
"\1\u0240\5\0\2\u023e\4\0\1\u023e\214\0\4\u0309\2\0"+
"\1\u0309\15\0\1\u0309\6\0\12\u0309\240\0\4\u023c\2\0"+
"\1\u023c\15\0\1\u023c\6\0\12\u023c\237\0\1\u030a\32\u02a1"+
"\1\u030b\12\u02a1\1\u0174\7\0\1\u018c\1\u018d\1\u018e\272\0"+
"\1\u01fc\237\0\4\u030c\2\0\1\u030c\15\0\1\u030c\6\0"+
"\12\u030c\1\u02a4\237\0\4\u030d\2\0\1\u030d\15\0\1\u030d"+
"\6\0\12\u030d\1\u030e\237\0\4\u030f\2\0\1\u030f\15\0"+
"\1\u030f\6\0\12\u030f\1\u0310\13\0\1\u0146\222\0\1\u0188"+
"\4\u030f\2\0\1\u030f\15\0\1\u030f\6\0\12\u0311\1\u0310"+
"\13\0\1\u0146\222\0\1\u0188\4\u030f\2\0\1\u030f\15\0"+
"\1\u030f\6\0\12\u0312\1\u0310\13\0\1\u0146\222\0\1\u0188"+
"\4\u030f\2\0\1\u030f\15\0\1\u030f\6\0\1\u0311\1\u0313"+
"\1\u0312\2\u0311\2\u0312\1\u0311\1\u0312\1\u0311\1\u0310\13\0"+
"\1\u0146\223\0\4\u0314\2\0\1\u0314\15\0\1\u0314\6\0"+
"\12\u0314\1\u0248\13\0\1\u0146\222\0\1\u0188\4\u0314\2\0"+
"\1\u0314\15\0\1\u0314\6\0\12\u0314\1\u0248\13\0\1\u0146"+
"\256\0\1\u0315\2\u0316\1\u0315\5\u0316\1\u0317\237\0\1\u02ab"+
"\304\0\1\u02ab\33\0\2\u02ac\1\0\2\u02ac\2\0\1\u02ac"+
"\1\0\1\u02ac\237\0\1\u0109\1\270\1\u0318\30\270\1\u010a"+
"\12\270\237\0\1\u0109\24\270\1\u0319\5\270\1\u010a\12\270"+
"\237\0\1\u0109\24\270\1\u031a\5\270\1\u010a\12\270\237\0"+
"\1\u0109\1\270\1\u031b\30\270\1\u010a\12\270\237\0\1\u0109"+
"\14\270\1\u031c\15\270\1\u010a\12\270\237\0\1\u0109\1\270"+
"\1\u031d\30\270\1\u010a\12\270\237\0\1\u0109\1\270\1\u031e"+
"\30\270\1\u010a\12\270\237\0\1\u0109\1\270\1\u031f\30\270"+
"\1\u010a\12\270\237\0\1\u0109\21\270\1\u0320\10\270\1\u010a"+
"\12\270\237\0\1\u0109\24\270\1\u0321\5\270\1\u010a\12\270"+
"\237\0\1\u0109\24\270\1\u0322\5\270\1\u010a\12\270\237\0"+
"\1\u0109\24\270\1\u0323\5\270\1\u010a\12\270\237\0\1\u0109"+
"\1\u01cc\31\270\1\u010a\12\270\237\0\1\u0109\24\270\1\u031f"+
"\5\270\1\u010a\12\270\237\0\1\u0109\24\270\1\u0324\5\270"+
"\1\u010a\12\270\237\0\1\u0109\1\270\1\u0325\30\270\1\u010a"+
"\12\270\237\0\1\u0109\31\270\1\u0326\1\u010a\12\270\237\0"+
"\1\u0109\24\270\1\u0327\5\270\1\u010a\12\270\237\0\1\u0109"+
"\1\270\1\u0328\30\270\1\u010a\12\270\237\0\1\u0109\1\u0329"+
"\31\270\1\u010a\12\270\237\0\1\u0109\21\270\1\u032a\10\270"+
"\1\u010a\12\270\237\0\1\u0109\4\270\1\u032b\25\270\1\u010a"+
"\12\270\237\0\1\u0109\24\270\1\u032c\5\270\1\u010a\12\270"+
"\237\0\1\u0109\24\270\1\u032d\5\270\1\u010a\12\270\237\0"+
"\1\u0109\4\270\1\u032e\25\270\1\u010a\12\270\237\0\1\u0109"+
"\21\270\1\u032f\10\270\1\u010a\12\270\237\0\1\u0109\24\270"+
"\1\u0330\5\270\1\u010a\12\270\237\0\1\u0109\32\270\1\u010a"+
"\1\u0331\11\270\237\0\1\u0109\32\270\1\u010a\7\270\1\u0332"+
"\2\270\237\0\1\u0109\1\u0333\31\270\1\u010a\12\270\237\0"+
"\1\u0109\1\u0334\31\270\1\u010a\12\270\315\0\1\u018c\1\u018d"+
"\1\u018e\224\0\1\u0121\1\324\1\u0335\30\324\1\164\12\324"+
"\1\0\3\161\1\0\2\161\1\162\3\161\3\0\1\161"+
"\4\0\2\161\212\0\1\u0121\32\324\1\164\1\u0336\11\324"+
"\1\0\3\161\1\0\2\161\1\162\3\161\3\0\1\161"+
"\4\0\2\161\212\0\1\u0121\6\324\1\u0337\23\324\1\164"+
"\12\324\1\0\3\161\1\0\2\161\1\162\3\161\3\0"+
"\1\161\4\0\2\161\212\0\1\u0121\32\324\1\164\7\324"+
"\1\u0338\2\324\1\0\3\161\1\0\2\161\1\162\3\161"+
"\3\0\1\161\4\0\2\161\212\0\1\u0121\32\324\1\164"+
"\10\324\1\u017b\1\324\1\0\3\161\1\0\2\161\1\162"+
"\3\161\3\0\1\161\4\0\2\161\212\0\1\u0121\32\324"+
"\1\164\5\324\1\u017b\4\324\1\0\3\161\1\0\2\161"+
"\1\162\3\161\3\0\1\161\4\0\2\161\212\0\1\u0121"+
"\26\324\1\u0339\3\324\1\164\12\324\1\0\3\161\1\0"+
"\2\161\1\162\3\161\3\0\1\161\4\0\2\161\212\0"+
"\1\u0121\1\324\1\u033a\30\324\1\164\12\324\1\0\3\161"+
"\1\0\2\161\1\162\3\161\3\0\1\161\4\0\2\161"+
"\212\0\1\u0121\26\324\1\u033b\3\324\1\164\12\324\1\0"+
"\3\161\1\0\2\161\1\162\3\161\3\0\1\161\4\0"+
"\2\161\212\0\1\u0121\32\324\1\164\1\324\1\u033c\10\324"+
"\1\0\3\161\1\0\2\161\1\162\3\161\3\0\1\161"+
"\4\0\2\161\212\0\1\u0121\1\u033d\31\324\1\164\12\324"+
"\1\0\3\161\1\0\2\161\1\162\3\161\3\0\1\161"+
"\4\0\2\161\212\0\1\u0121\1\u033e\27\324\1\u033f\1\324"+
"\1\164\12\324\1\0\3\161\1\0\2\161\1\162\3\161"+
"\3\0\1\161\4\0\2\161\212\0\1\u0121\32\324\1\164"+
"\1\u0340\11\324\1\0\3\161\1\0\2\161\1\162\3\161"+
"\3\0\1\161\4\0\2\161\212\0\1\u0121\4\324\1\u0341"+
"\25\324\1\164\12\324\1\0\3\161\1\0\2\161\1\162"+
"\3\161\3\0\1\161\4\0\2\161\212\0\1\u0121\25\324"+
"\1\u0342\4\324\1\164\12\324\1\0\3\161\1\0\2\161"+
"\1\162\3\161\3\0\1\161\4\0\2\161\212\0\1\u0121"+
"\1\u0343\31\324\1\164\12\324\1\0\3\161\1\0\2\161"+
"\1\162\3\161\3\0\1\161\4\0\2\161\212\0\1\u0121"+
"\32\324\1\164\1\u0344\11\324\1\0\3\161\1\0\2\161"+
"\1\162\3\161\3\0\1\161\4\0\2\161\212\0\1\u0121"+
"\32\324\1\164\2\324\1\350\7\324\1\0\3\161\1\0"+
"\2\161\1\162\3\161\3\0\1\161\4\0\2\161\212\0"+
"\1\u0121\32\324\1\164\3\324\1\u0345\6\324\1\0\3\161"+
"\1\0\2\161\1\162\3\161\3\0\1\161\4\0\2\161"+
"\212\0\1\u0121\1\u0346\1\324\1\u0347\27\324\1\164\12\324"+
"\1\0\3\161\1\0\2\161\1\162\3\161\3\0\1\161"+
"\4\0\2\161\212\0\1\u0121\1\u0338\31\324\1\164\12\324"+
"\1\0\3\161\1\0\2\161\1\162\3\161\3\0\1\161"+
"\4\0\2\161\212\0\1\u0121\32\324\1\164\2\324\1\u0348"+
"\7\324\1\0\3\161\1\0\2\161\1\162\3\161\3\0"+
"\1\161\4\0\2\161\212\0\1\u0121\32\324\1\164\2\324"+
"\1\u0349\7\324\1\0\3\161\1\0\2\161\1\162\3\161"+
"\3\0\1\161\4\0\2\161\212\0\1\u0121\15\324\1\u034a"+
"\14\324\1\164\12\324\1\0\3\161\1\0\2\161\1\162"+
"\3\161\3\0\1\161\4\0\2\161\212\0\1\u0121\32\324"+
"\1\164\5\324\1\u034b\4\324\1\0\3\161\1\0\2\161"+
"\1\162\3\161\3\0\1\161\4\0\2\161\212\0\1\u0121"+
"\32\324\1\164\7\324\1\u034c\2\324\1\0\3\161\1\0"+
"\2\161\1\162\3\161\3\0\1\161\4\0\2\161\212\0"+
"\1\u0121\32\324\1\164\11\324\1\u034d\1\0\3\161\1\0"+
"\2\161\1\162\3\161\3\0\1\161\4\0\2\161\212\0"+
"\1\u0121\1\324\1\u034e\30\324\1\164\12\324\1\0\3\161"+
"\1\0\2\161\1\162\3\161\3\0\1\161\4\0\2\161"+
"\212\0\1\u0121\32\324\1\164\3\324\1\u034f\6\324\1\0"+
"\3\161\1\0\2\161\1\162\3\161\3\0\1\161\4\0"+
"\2\161\212\0\1\u0121\32\324\1\164\1\324\1\u0350\10\324"+
"\1\0\3\161\1\0\2\161\1\162\3\161\3\0\1\161"+
"\4\0\2\161\212\0\1\u0121\32\324\1\164\1\324\1\u0351"+
"\10\324\1\0\3\161\1\0\2\161\1\162\3\161\3\0"+
"\1\161\4\0\2\161\212\0\1\u0121\24\324\1\u0352\5\324"+
"\1\164\12\324\1\0\3\161\1\0\2\161\1\162\3\161"+
"\3\0\1\161\4\0\2\161\212\0\1\u0121\32\324\1\164"+
"\6\324\1\u0353\3\324\1\0\3\161\1\0\2\161\1\162"+
"\3\161\3\0\1\161\4\0\2\161\212\0\1\u0121\32\324"+
"\1\164\3\324\1\u0354\6\324\1\0\3\161\1\0\2\161"+
"\1\162\3\161\3\0\1\161\4\0\2\161\212\0\1\u0121"+
"\1\u0345\31\324\1\164\12\324\1\0\3\161\1\0\2\161"+
"\1\162\3\161\3\0\1\161\4\0\2\161\212\0\1\u0121"+
"\32\324\1\164\11\324\1\u0355\1\0\3\161\1\0\2\161"+
"\1\162\3\161\3\0\1\161\4\0\2\161\212\0\1\u0121"+
"\25\324\1\u0356\4\324\1\164\12\324\1\0\3\161\1\0"+
"\2\161\1\162\3\161\3\0\1\161\4\0\2\161\213\0"+
"\4\u022e\2\0\1\u022e\15\0\1\u022e\6\0\12\u022e\240\0"+
"\4\u0357\2\0\1\u0357\15\0\1\u0357\6\0\12\u0357\1\u02f5"+
"\237\0\4\u0358\2\0\1\u0358\15\0\1\u0358\6\0\12\u0358"+
"\1\u0359\237\0\4\u035a\2\0\1\u035a\15\0\1\u035a\6\0"+
"\1\u035b\2\u035c\1\u035b\5\u035c\1\u035d\14\0\1\u035e\222\0"+
"\34\u01f0\12\u035f\1\0\2\u01f0\1\u0234\3\u01f0\1\u01f2\1\0"+
"\1\u0233\3\0\2\u01f0\4\0\1\u01f0\214\0\4\u0233\2\0"+
"\1\u0233\15\0\1\u0233\6\0\12\u0233\270\0\1\u0360\307\0"+
"\12\u0361\11\0\1\u0233\226\0\4\u0362\2\0\1\u0362\15\0"+
"\1\u0362\6\0\12\u0362\1\u0292\237\0\4\u0363\2\0\1\u0363"+
"\15\0\1\u0363\6\0\12\u0363\1\u0364\237\0\4\u0365\2\0"+
"\1\u0365\15\0\1\u0365\6\0\1\u0366\2\u0367\1\u0366\5\u0367"+
"\1\u0368\14\0\1\u0302\223\0\4\u0369\2\0\1\u0369\15\0"+
"\1\u0369\6\0\12\u0369\1\u036a\13\0\1\u0302\222\0\1\u036b"+
"\4\u0369\2\0\1\u0369\15\0\1\u0369\6\0\12\u036c\1\u036a"+
"\13\0\1\u0302\222\0\1\u036b\4\u0369\2\0\1\u0369\15\0"+
"\1\u0369\6\0\12\u036d\1\u036a\13\0\1\u0302\222\0\1\u036b"+
"\4\u0369\2\0\1\u0369\15\0\1\u0369\6\0\1\u036c\1\u036e"+
"\1\u036d\2\u036c\2\u036d\1\u036c\1\u036d\1\u036c\1\u036a\13\0"+
"\1\u0302\270\0\1\u0290\10\0\1\u0233\225\0\1\u036f\32\u0303"+
"\1\u0370\12\u0303\237\0\61\u0304\1\0\1\u0371\4\u0304\1\u0372"+
"\1\0\3\u0304\6\0\1\u0100\1\0\1\u0101\17\0\1\u0102"+
"\2\0\1\u0103\4\0\1\u0104\3\0\1\u0105\22\0\1\u0106"+
"\21\0\1\u0107\2\0\1\u0108\60\0\1\220\1\73\6\0"+
"\1\220\3\0\1\u0294\33\u0239\12\u0297\1\0\3\u0239\1\0"+
"\2\u0239\1\u0295\3\u0239\3\0\1\u0239\1\u023b\3\0\2\u0239"+
"\7\0\1\u0100\1\0\1\u0101\17\0\1\u0102\2\0\1\u0103"+
"\4\0\1\u0104\3\0\1\u0105\22\0\1\u0106\21\0\1\u0107"+
"\2\0\1\u0108\60\0\1\220\1\73\6\0\1\220\3\0"+
"\1\u0294\33\u0239\12\u0297\1\0\3\u0239\1\0\2\u0239\1\u0295"+
"\3\u0239\3\0\1\u0239\4\0\2\u0239\212\0\46\u0239\1\0"+
"\3\u0239\1\0\2\u0239\1\0\3\u0239\3\0\1\u0239\1\u023b"+
"\3\0\2\u0239\212\0\34\u023e\12\u0373\1\0\2\u023e\1\u029f"+
"\3\u023e\1\u0240\1\u018c\1\u018d\1\u018e\2\0\2\u023e\4\0"+
"\1\u023e\214\0\4\u023e\2\0\1\u023e\15\0\1\u023e\6\0"+
"\12\u023e\240\0\32\u02a1\1\0\12\u02a1\240\0\32\u02a1\1\u030b"+
"\12\u02a1\240\0\4\u0374\2\0\1\u0374\15\0\1\u0374\6\0"+
"\12\u0374\1\u02a4\237\0\4\u0375\2\0\1\u0375\15\0\1\u0375"+
"\6\0\12\u0375\1\u0376\237\0\4\u0377\2\0\1\u0377\15\0"+
"\1\u0377\6\0\1\u0378\2\u0379\1\u0378\5\u0379\1\u037a\14\0"+
"\1\u0146\223\0\4\u037b\2\0\1\u037b\15\0\1\u037b\6\0"+
"\12\u037b\1\u0310\13\0\1\u0146\223\0\4\u0377\2\0\1\u0377"+
"\15\0\1\u0377\6\0\1\u0378\2\u0379\1\u0378\5\u0379\1\u037a"+
"\237\0\1\u0188\4\u037b\2\0\1\u037b\15\0\1\u037b\6\0"+
"\12\u037c\1\u0310\13\0\1\u0146\222\0\1\u0188\4\u037b\2\0"+
"\1\u037b\15\0\1\u037b\6\0\12\u037b\1\u0310\13\0\1\u0146"+
"\222\0\1\u0188\4\u037b\2\0\1\u037b\15\0\1\u037b\6\0"+
"\2\u037c\1\u037b\2\u037c\2\u037b\1\u037c\1\u037b\1\u037c\1\u0310"+
"\13\0\1\u0146\270\0\1\u0248\13\0\1\u0146\256\0\12\u0316"+
"\14\0\1\u0146\256\0\12\u037d\14\0\1\u0146\256\0\1\u0316"+
"\1\u037e\1\u037d\2\u0316\2\u037d\1\u0316\1\u037d\1\u0316\14\0"+
"\1\u0146\222\0\1\u0109\25\270\1\u037f\4\270\1\u010a\12\270"+
"\237\0\1\u0109\1\u0380\31\270\1\u010a\12\270\237\0\1\u0109"+
"\15\270\1\u0381\14\270\1\u010a\12\270\237\0\1\u0109\21\270"+
"\1\u0382\10\270\1\u010a\12\270\237\0\1\u0109\16\270\1\u0383"+
"\4\270\1\u0384\6\270\1\u010a\12\270\237\0\1\u0109\4\270"+
"\1\u0385\25\270\1\u010a\12\270\237\0\1\u0109\32\270\1\u010a"+
"\11\270\1\u0386\237\0\1\u0109\4\270\1\u0387\25\270\1\u010a"+
"\12\270\237\0\1\u0109\32\270\1\u010a\11\270\1\u0388\237\0"+
"\1\u0109\24\270\1\u0389\5\270\1\u010a\12\270\237\0\1\u0109"+
"\1\u038a\1\u038b\1\270\1\u038c\20\270\1\u038d\5\270\1\u010a"+
"\5\270\1\u038e\4\270\237\0\1\u0109\16\270\1\u038f\13\270"+
"\1\u010a\12\270\237\0\1\u0109\11\270\1\u0390\13\270\1\u0391"+
"\4\270\1\u010a\12\270\237\0\1\u0109\32\270\1\u010a\11\270"+
"\1\u0392\237\0\1\u0109\23\270\1\u0393\6\270\1\u010a\12\270"+
"\237\0\1\u0109\31\270\1\u0394\1\u010a\12\270\237\0\1\u0109"+
"\26\270\1\u0395\3\270\1\u010a\12\270\237\0\1\u0109\11\270"+
"\1\u0396\20\270\1\u010a\12\270\237\0\1\u0109\32\270\1\u010a"+
"\3\270\1\u0397\6\270\237\0\1\u0109\5\270\1\u0398\24\270"+
"\1\u010a\12\270\237\0\1\u0109\10\270\1\u0399\21\270\1\u010a"+
"\12\270\237\0\1\u0109\3\270\1\u039a\26\270\1\u010a\12\270"+
"\237\0\1\u0109\21\270\1\u039b\6\270\1\u039c\1\270\1\u010a"+
"\12\270\237\0\1\u0109\12\270\1\u039d\17\270\1\u010a\12\270"+
"\237\0\1\u0109\32\270\1\u010a\1\270\1\u039e\10\270\237\0"+
"\1\u0109\24\270\1\u039f\5\270\1\u010a\12\270\237\0\1\u0109"+
"\24\270\1\u03a0\5\270\1\u010a\12\270\237\0\1\u0109\32\270"+
"\1\u010a\4\270\1\u03a1\5\270\237\0\1\u0109\5\270\1\u03a2"+
"\23\270\1\u03a3\1\u010a\12\270\237\0\1\u0121\32\324\1\164"+
"\1\u03a4\11\324\1\0\3\161\1\0\2\161\1\162\3\161"+
"\3\0\1\161\4\0\2\161\212\0\1\u0121\1\u03a5\31\324"+
"\1\164\12\324\1\0\3\161\1\0\2\161\1\162\3\161"+
"\3\0\1\161\4\0\2\161\212\0\1\u0121\32\324\1\164"+
"\10\324\1\u03a6\1\324\1\0\3\161\1\0\2\161\1\162"+
"\3\161\3\0\1\161\4\0\2\161\212\0\1\u0121\25\324"+
"\1\u0127\4\324\1\164\12\324\1\0\3\161\1\0\2\161"+
"\1\162\3\161\3\0\1\161\4\0\2\161\212\0\1\u0121"+
"\32\324\1\164\5\324\1\u03a7\4\324\1\0\3\161\1\0"+
"\2\161\1\162\3\161\3\0\1\161\4\0\2\161\212\0"+
"\1\u0121\32\324\1\164\5\324\1\u03a8\4\324\1\0\3\161"+
"\1\0\2\161\1\162\3\161\3\0\1\161\4\0\2\161"+
"\212\0\1\u0121\32\324\1\164\5\324\1\u0345\4\324\1\0"+
"\3\161\1\0\2\161\1\162\3\161\3\0\1\161\4\0"+
"\2\161\212\0\1\u0121\32\324\1\164\3\324\1\u03a5\6\324"+
"\1\0\3\161\1\0\2\161\1\162\3\161\3\0\1\161"+
"\4\0\2\161\212\0\1\u0121\17\324\1\u03a9\12\324\1\164"+
"\12\324\1\0\3\161\1\0\2\161\1\162\3\161\3\0"+
"\1\161\4\0\2\161\212\0\1\u0121\12\324\1\u03aa\17\324"+
"\1\164\12\324\1\0\3\161\1\0\2\161\1\162\3\161"+
"\3\0\1\161\4\0\2\161\212\0\1\u0121\25\324\1\u03ab"+
"\4\324\1\164\12\324\1\0\3\161\1\0\2\161\1\162"+
"\3\161\3\0\1\161\4\0\2\161\212\0\1\u0121\1\u03ac"+
"\31\324\1\164\12\324\1\0\3\161\1\0\2\161\1\162"+
"\3\161\3\0\1\161\4\0\2\161\212\0\1\u0121\15\324"+
"\1\u03ad\14\324\1\164\12\324\1\0\3\161\1\0\2\161"+
"\1\162\3\161\3\0\1\161\4\0\2\161\212\0\1\u0121"+
"\32\324\1\164\3\324\1\u03ae\6\324\1\0\3\161\1\0"+
"\2\161\1\162\3\161\3\0\1\161\4\0\2\161\212\0"+
"\1\u0121\21\324\1\u03af\10\324\1\164\12\324\1\0\3\161"+
"\1\0\2\161\1\162\3\161\3\0\1\161\4\0\2\161"+
"\212\0\1\u0121\2\324\1\u0338\27\324\1\164\12\324\1\0"+
"\3\161\1\0\2\161\1\162\3\161\3\0\1\161\4\0"+
"\2\161\212\0\1\u0121\1\324\1\u0127\30\324\1\164\12\324"+
"\1\0\3\161\1\0\2\161\1\162\3\161\3\0\1\161"+
"\4\0\2\161\212\0\1\u0121\11\324\1\u03b0\20\324\1\164"+
"\12\324\1\0\3\161\1\0\2\161\1\162\3\161\3\0"+
"\1\161\4\0\2\161\212\0\1\u0121\11\324\1\u03b1\20\324"+
"\1\164\12\324\1\0\3\161\1\0\2\161\1\162\3\161"+
"\3\0\1\161\4\0\2\161\212\0\1\u0121\1\u03b2\31\324"+
"\1\164\12\324\1\0\3\161\1\0\2\161\1\162\3\161"+
"\3\0\1\161\4\0\2\161\212\0\1\u0121\1\u03b3\31\324"+
"\1\164\12\324\1\0\3\161\1\0\2\161\1\162\3\161"+
"\3\0\1\161\4\0\2\161\212\0\1\u0121\2\324\1\u03b4"+
"\27\324\1\164\12\324\1\0\3\161\1\0\2\161\1\162"+
"\3\161\3\0\1\161\4\0\2\161\212\0\1\u0121\32\324"+
"\1\164\4\324\1\u012e\5\324\1\0\3\161\1\0\2\161"+
"\1\162\3\161\3\0\1\161\4\0\2\161\212\0\1\u0121"+
"\10\324\1\u03b5\21\324\1\164\12\324\1\0\3\161\1\0"+
"\2\161\1\162\3\161\3\0\1\161\4\0\2\161\212\0"+
"\1\u0121\1\u03b6\31\324\1\164\12\324\1\0\3\161\1\0"+
"\2\161\1\162\3\161\3\0\1\161\4\0\2\161\212\0"+
"\1\u0121\25\324\1\u03b7\4\324\1\164\12\324\1\0\3\161"+
"\1\0\2\161\1\162\3\161\3\0\1\161\4\0\2\161"+
"\212\0\1\u0121\32\324\1\164\4\324\1\u03a5\5\324\1\0"+
"\3\161\1\0\2\161\1\162\3\161\3\0\1\161\4\0"+
"\2\161\212\0\1\u0121\32\324\1\164\6\324\1\u03a5\3\324"+
"\1\0\3\161\1\0\2\161\1\162\3\161\3\0\1\161"+
"\4\0\2\161\212\0\1\u0121\32\324\1\164\2\324\1\u03a5"+
"\7\324\1\0\3\161\1\0\2\161\1\162\3\161\3\0"+
"\1\161\4\0\2\161\212\0\1\u0121\16\324\1\u03b8\13\324"+
"\1\164\12\324\1\0\3\161\1\0\2\161\1\162\3\161"+
"\3\0\1\161\4\0\2\161\212\0\1\u0121\32\324\1\164"+
"\1\u03b9\11\324\1\0\3\161\1\0\2\161\1\162\3\161"+
"\3\0\1\161\4\0\2\161\212\0\1\u0121\32\324\1\164"+
"\3\324\1\u03ba\6\324\1\0\3\161\1\0\2\161\1\162"+
"\3\161\3\0\1\161\4\0\2\161\212\0\1\u0121\32\324"+
"\1\164\3\324\1\350\6\324\1\0\3\161\1\0\2\161"+
"\1\162\3\161\3\0\1\161\4\0\2\161\212\0\1\u0121"+
"\24\324\1\u03bb\5\324\1\164\12\324\1\0\3\161\1\0"+
"\2\161\1\162\3\161\3\0\1\161\4\0\2\161\213\0"+
"\4\u03bc\2\0\1\u03bc\15\0\1\u03bc\6\0\12\u03bc\1\u02f5"+
"\237\0\4\u03bd\2\0\1\u03bd\15\0\1\u03bd\6\0\12\u03bd"+
"\1\u03be\237\0\4\u03bf\2\0\1\u03bf\15\0\1\u03bf\6\0"+
"\1\u03c0\2\u03c1\1\u03c0\5\u03c1\1\u03c2\14\0\1\u035e\223\0"+
"\4\u03c3\2\0\1\u03c3\15\0\1\u03c3\6\0\12\u03c3\1\u03c4"+
"\13\0\1\u035e\222\0\1\u03c5\4\u03c3\2\0\1\u03c3\15\0"+
"\1\u03c3\6\0\12\u03c6\1\u03c4\13\0\1\u035e\222\0\1\u03c5"+
"\4\u03c3\2\0\1\u03c3\15\0\1\u03c3\6\0\12\u03c7\1\u03c4"+
"\13\0\1\u035e\222\0\1\u03c5\4\u03c3\2\0\1\u03c3\15\0"+
"\1\u03c3\6\0\1\u03c6\1\u03c8\1\u03c7\2\u03c6\2\u03c7\1\u03c6"+
"\1\u03c7\1\u03c6\1\u03c4\13\0\1\u035e\301\0\1\u022e\225\0"+
"\34\u01f0\12\u03c9\1\0\2\u01f0\1\u0234\3\u01f0\1\u01f2\1\0"+
"\1\u0233\3\0\2\u01f0\4\0\1\u01f0\231\0\1\u03ca\322\0"+
"\12\u03cb\11\0\1\u0233\273\0\1\u0292\237\0\4\u03cc\2\0"+
"\1\u03cc\15\0\1\u03cc\6\0\12\u03cc\1\u0364\237\0\4\u03cd"+
"\2\0\1\u03cd\15\0\1\u03cd\6\0\12\u03cd\1\u03ce\237\0"+
"\4\u03cf\2\0\1\u03cf\15\0\1\u03cf\6\0\12\u03cf\1\u03d0"+
"\13\0\1\u0302\222\0\1\u036b\4\u03cf\2\0\1\u03cf\15\0"+
"\1\u03cf\6\0\12\u03d1\1\u03d0\13\0\1\u0302\222\0\1\u036b"+
"\4\u03cf\2\0\1\u03cf\15\0\1\u03cf\6\0\12\u03d2\1\u03d0"+
"\13\0\1\u0302\222\0\1\u036b\4\u03cf\2\0\1\u03cf\15\0"+
"\1\u03cf\6\0\1\u03d1\1\u03d3\1\u03d2\2\u03d1\2\u03d2\1\u03d1"+
"\1\u03d2\1\u03d1\1\u03d0\13\0\1\u0302\223\0\4\u03d4\2\0"+
"\1\u03d4\15\0\1\u03d4\6\0\12\u03d4\1\u036a\13\0\1\u0302"+
"\223\0\4\u0365\2\0\1\u0365\15\0\1\u0365\6\0\1\u0366"+
"\2\u0367\1\u0366\5\u0367\1\u0368\273\0\1\u03d5\2\u03d6\1\u03d5"+
"\5\u03d6\1\u03d7\237\0\1\u036b\4\u03d4\2\0\1\u03d4\15\0"+
"\1\u03d4\6\0\12\u03d8\1\u036a\13\0\1\u0302\222\0\1\u036b"+
"\4\u03d4\2\0\1\u03d4\15\0\1\u03d4\6\0\12\u03d4\1\u036a"+
"\13\0\1\u0302\222\0\1\u036b\4\u03d4\2\0\1\u03d4\15\0"+
"\1\u03d4\6\0\2\u03d8\1\u03d4\2\u03d8\2\u03d4\1\u03d8\1\u03d4"+
"\1\u03d8\1\u036a\13\0\1\u0302\223\0\1\u03d9\1\u03da\1\u03db"+
"\1\u03dc\1\u03dd\1\u03de\1\u03df\1\u03e0\1\u03e1\1\u03e2\1\u03e3"+
"\1\u03e4\1\u03e5\1\u03e6\1\u03e7\1\u03e8\1\u03e9\1\u03ea\1\u03eb"+
"\1\u03ec\1\u03ed\1\u03ee\1\u03ef\1\u03f0\1\u03f1\1\u03f2\1\0"+
"\12\u0303\240\0\32\u0303\1\u0370\12\u0303\237\0\74\u0304\211\0"+
"\34\u023e\12\u03f3\1\0\2\u023e\1\u029f\3\u023e\1\u0240\1\u018c"+
"\1\u018d\1\u018e\2\0\2\u023e\4\0\1\u023e\261\0\1\u02a4"+
"\237\0\4\u03f4\2\0\1\u03f4\15\0\1\u03f4\6\0\12\u03f4"+
"\1\u0376\237\0\4\u03f5\2\0\1\u03f5\15\0\1\u03f5\6\0"+
"\12\u03f5\1\u03f6\237\0\4\u03f7\2\0\1\u03f7\15\0\1\u03f7"+
"\6\0\12\u03f7\1\u03f8\13\0\1\u0146\222\0\1\u0188\4\u03f7"+
"\2\0\1\u03f7\15\0\1\u03f7\6\0\12\u03f9\1\u03f8\13\0"+
"\1\u0146\222\0\1\u0188\4\u03f7\2\0\1\u03f7\15\0\1\u03f7"+
"\6\0\12\u03fa\1\u03f8\13\0\1\u0146\222\0\1\u0188\4\u03f7"+
"\2\0\1\u03f7\15\0\1\u03f7\6\0\1\u03f9\1\u03fb\1\u03fa"+
"\2\u03f9\2\u03fa\1\u03f9\1\u03fa\1\u03f9\1\u03f8\13\0\1\u0146"+
"\223\0\4\u03fc\2\0\1\u03fc\15\0\1\u03fc\6\0\12\u03fc"+
"\1\u0310\13\0\1\u0146\222\0\1\u0188\4\u03fc\2\0\1\u03fc"+
"\15\0\1\u03fc\6\0\12\u03fc\1\u0310\13\0\1\u0146\304\0"+
"\1\u0146\256\0\2\u037d\1\0\2\u037d\2\0\1\u037d\1\0"+
"\1\u037d\14\0\1\u0146\222\0\1\u0109\1\270\1\u03fd\30\270"+
"\1\u010a\12\270\237\0\1\u0109\32\270\1\u010a\1\u03fe\11\270"+
"\237\0\1\u0109\6\270\1\u03ff\23\270\1\u010a\12\270\237\0"+
"\1\u0109\32\270\1\u010a\7\270\1\u0400\2\270\237\0\1\u0109"+
"\32\270\1\u010a\10\270\1\u01d1\1\270\237\0\1\u0109\32\270"+
"\1\u010a\5\270\1\u01d1\4\270\237\0\1\u0109\26\270\1\u0401"+
"\3\270\1\u010a\12\270\237\0\1\u0109\1\270\1\u0402\30\270"+
"\1\u010a\12\270\237\0\1\u0109\26\270\1\u0403\3\270\1\u010a"+
"\12\270\237\0\1\u0109\32\270\1\u010a\1\270\1\u0404\10\270"+
"\237\0\1\u0109\1\u0405\31\270\1\u010a\12\270\237\0\1\u0109"+
"\1\u0406\27\270\1\u0407\1\270\1\u010a\12\270\237\0\1\u0109"+
"\32\270\1\u010a\1\u0408\11\270\237\0\1\u0109\4\270\1\u0409"+
"\25\270\1\u010a\12\270\237\0\1\u0109\25\270\1\u040a\4\270"+
"\1\u010a\12\270\237\0\1\u0109\1\u040b\31\270\1\u010a\12\270"+
"\237\0\1\u0109\32\270\1\u010a\1\u040c\11\270\237\0\1\u0109"+
"\32\270\1\u010a\2\270\1\u0153\7\270\237\0\1\u0109\32\270"+
"\1\u010a\3\270\1\u040d\6\270\237\0\1\u0109\1\u040e\1\270"+
"\1\u040f\27\270\1\u010a\12\270\237\0\1\u0109\1\u0400\31\270"+
"\1\u010a\12\270\237\0\1\u0109\32\270\1\u010a\2\270\1\u0410"+
"\7\270\237\0\1\u0109\32\270\1\u010a\2\270\1\u0411\7\270"+
"\237\0\1\u0109\15\270\1\u0412\14\270\1\u010a\12\270\237\0"+
"\1\u0109\32\270\1\u010a\5\270\1\u0413\4\270\237\0\1\u0109"+
"\32\270\1\u010a\7\270\1\u0414\2\270\237\0\1\u0109\32\270"+
"\1\u010a\11\270\1\u0415\237\0\1\u0109\1\270\1\u0416\30\270"+
"\1\u010a\12\270\237\0\1\u0109\32\270\1\u010a\3\270\1\u0417"+
"\6\270\237\0\1\u0109\32\270\1\u010a\1\270\1\u0418\10\270"+
"\237\0\1\u0109\32\270\1\u010a\1\270\1\u0419\10\270\237\0"+
"\1\u0109\24\270\1\u041a\5\270\1\u010a\12\270\237\0\1\u0109"+
"\32\270\1\u010a\6\270\1\u041b\3\270\237\0\1\u0109\32\270"+
"\1\u010a\3\270\1\u041c\6\270\237\0\1\u0109\1\u040d\31\270"+
"\1\u010a\12\270\237\0\1\u0109\32\270\1\u010a\11\270\1\u041d"+
"\237\0\1\u0109\25\270\1\u041e\4\270\1\u010a\12\270\237\0"+
"\1\u0121\3\324\1\u041f\26\324\1\164\12\324\1\0\3\161"+
"\1\0\2\161\1\162\3\161\3\0\1\161\4\0\2\161"+
"\212\0\1\u0121\2\324\1\u0127\27\324\1\164\12\324\1\0"+
"\3\161\1\0\2\161\1\162\3\161\3\0\1\161\4\0"+
"\2\161\212\0\1\u0121\6\324\1\u0132\23\324\1\164\12\324"+
"\1\0\3\161\1\0\2\161\1\162\3\161\3\0\1\161"+
"\4\0\2\161\212\0\1\u0121\1\324\1\u034f\30\324\1\164"+
"\12\324\1\0\3\161\1\0\2\161\1\162\3\161\3\0"+
"\1\161\4\0\2\161\212\0\1\u0121\3\324\1\u0420\26\324"+
"\1\164\12\324\1\0\3\161\1\0\2\161\1\162\3\161"+
"\3\0\1\161\4\0\2\161\212\0\1\u0121\32\324\1\164"+
"\3\324\1\u0421\6\324\1\0\3\161\1\0\2\161\1\162"+
"\3\161\3\0\1\161\4\0\2\161\212\0\1\u0121\32\324"+
"\1\164\6\324\1\u0422\3\324\1\0\3\161\1\0\2\161"+
"\1\162\3\161\3\0\1\161\4\0\2\161\212\0\1\u0121"+
"\32\324\1\164\6\324\1\u0423\3\324\1\0\3\161\1\0"+
"\2\161\1\162\3\161\3\0\1\161\4\0\2\161\212\0"+
"\1\u0121\32\324\1\164\5\324\1\u0424\4\324\1\0\3\161"+
"\1\0\2\161\1\162\3\161\3\0\1\161\4\0\2\161"+
"\212\0\1\u0121\32\324\1\164\7\324\1\u0425\2\324\1\0"+
"\3\161\1\0\2\161\1\162\3\161\3\0\1\161\4\0"+
"\2\161\212\0\1\u0121\1\u0426\31\324\1\164\12\324\1\0"+
"\3\161\1\0\2\161\1\162\3\161\3\0\1\161\4\0"+
"\2\161\212\0\1\u0121\24\324\1\u0427\5\324\1\164\12\324"+
"\1\0\3\161\1\0\2\161\1\162\3\161\3\0\1\161"+
"\4\0\2\161\212\0\1\u0121\32\324\1\164\4\324\1\u0428"+
"\5\324\1\0\3\161\1\0\2\161\1\162\3\161\3\0"+
"\1\161\4\0\2\161\212\0\1\u0121\32\324\1\164\4\324"+
"\1\u0429\5\324\1\0\3\161\1\0\2\161\1\162\3\161"+
"\3\0\1\161\4\0\2\161\212\0\1\u0121\26\324\1\u042a"+
"\3\324\1\164\12\324\1\0\3\161\1\0\2\161\1\162"+
"\3\161\3\0\1\161\4\0\2\161\212\0\1\u0121\30\324"+
"\1\u042b\1\324\1\164\12\324\1\0\3\161\1\0\2\161"+
"\1\162\3\161\3\0\1\161\4\0\2\161\212\0\1\u0121"+
"\11\324\1\u0176\20\324\1\164\12\324\1\0\3\161\1\0"+
"\2\161\1\162\3\161\3\0\1\161\4\0\2\161\212\0"+
"\1\u0121\32\324\1\164\2\324\1\u042c\7\324\1\0\3\161"+
"\1\0\2\161\1\162\3\161\3\0\1\161\4\0\2\161"+
"\212\0\1\u0121\12\324\1\u042d\17\324\1\164\12\324\1\0"+
"\3\161\1\0\2\161\1\162\3\161\3\0\1\161\4\0"+
"\2\161\212\0\1\u0121\17\324\1\u012f\12\324\1\164\12\324"+
"\1\0\3\161\1\0\2\161\1\162\3\161\3\0\1\161"+
"\4\0\2\161\212\0\1\u0121\32\324\1\164\4\324\1\u042e"+
"\5\324\1\0\3\161\1\0\2\161\1\162\3\161\3\0"+
"\1\161\4\0\2\161\212\0\1\u0121\32\324\1\164\6\324"+
"\1\u0179\3\324\1\0\3\161\1\0\2\161\1\162\3\161"+
"\3\0\1\161\4\0\2\161\212\0\1\u0121\30\324\1\u042f"+
"\1\324\1\164\12\324\1\0\3\161\1\0\2\161\1\162"+
"\3\161\3\0\1\161\4\0\2\161\212\0\1\u0121\30\324"+
"\1\u0430\1\324\1\164\12\324\1\0\3\161\1\0\2\161"+
"\1\162\3\161\3\0\1\161\4\0\2\161\260\0\1\u02f5"+
"\237\0\4\u0431\2\0\1\u0431\15\0\1\u0431\6\0\12\u0431"+
"\1\u03be\237\0\4\u0432\2\0\1\u0432\15\0\1\u0432\6\0"+
"\12\u0432\1\u0433\237\0\4\u0434\2\0\1\u0434\15\0\1\u0434"+
"\6\0\12\u0434\1\u0435\13\0\1\u035e\222\0\1\u03c5\4\u0434"+
"\2\0\1\u0434\15\0\1\u0434\6\0\12\u0436\1\u0435\13\0"+
"\1\u035e\222\0\1\u03c5\4\u0434\2\0\1\u0434\15\0\1\u0434"+
"\6\0\12\u0437\1\u0435\13\0\1\u035e\222\0\1\u03c5\4\u0434"+
"\2\0\1\u0434\15\0\1\u0434\6\0\1\u0436\1\u0438\1\u0437"+
"\2\u0436\2\u0437\1\u0436\1\u0437\1\u0436\1\u0435\13\0\1\u035e"+
"\223\0\4\u0439\2\0\1\u0439\15\0\1\u0439\6\0\12\u0439"+
"\1\u03c4\13\0\1\u035e\223\0\4\u03bf\2\0\1\u03bf\15\0"+
"\1\u03bf\6\0\1\u03c0\2\u03c1\1\u03c0\5\u03c1\1\u03c2\273\0"+
"\1\u043a\2\u043b\1\u043a\5\u043b\1\u043c\237\0\1\u03c5\4\u0439"+
"\2\0\1\u0439\15\0\1\u0439\6\0\12\u043d\1\u03c4\13\0"+
"\1\u035e\222\0\1\u03c5\4\u0439\2\0\1\u0439\15\0\1\u0439"+
"\6\0\12\u0439\1\u03c4\13\0\1\u035e\222\0\1\u03c5\4\u0439"+
"\2\0\1\u0439\15\0\1\u0439\6\0\2\u043d\1\u0439\2\u043d"+
"\2\u0439\1\u043d\1\u0439\1\u043d\1\u03c4\13\0\1\u035e\222\0"+
"\34\u01f0\12\u043e\1\0\2\u01f0\1\u0234\3\u01f0\1\u01f2\1\0"+
"\1\u0233\3\0\2\u01f0\4\0\1\u01f0\217\0\1\u043f\334\0"+
"\12\u0440\11\0\1\u0233\226\0\4\u0441\2\0\1\u0441\15\0"+
"\1\u0441\6\0\12\u0441\1\u0364\237\0\4\u0442\2\0\1\u0442"+
"\15\0\1\u0442\6\0\12\u0442\1\u0443\237\0\4\u0444\2\0"+
"\1\u0444\15\0\1\u0444\6\0\1\u0445\2\u0446\1\u0445\5\u0446"+
"\1\u0447\14\0\1\u0302\223\0\4\u0448\2\0\1\u0448\15\0"+
"\1\u0448\6\0\12\u0448\1\u03d0\13\0\1\u0302\223\0\4\u0444"+
"\2\0\1\u0444\15\0\1\u0444\6\0\1\u0445\2\u0446\1\u0445"+
"\5\u0446\1\u0447\237\0\1\u036b\4\u0448\2\0\1\u0448\15\0"+
"\1\u0448\6\0\12\u0449\1\u03d0\13\0\1\u0302\222\0\1\u036b"+
"\4\u0448\2\0\1\u0448\15\0\1\u0448\6\0\12\u0448\1\u03d0"+
"\13\0\1\u0302\222\0\1\u036b\4\u0448\2\0\1\u0448\15\0"+
"\1\u0448\6\0\2\u0449\1\u0448\2\u0449\2\u0448\1\u0449\1\u0448"+
"\1\u0449\1\u03d0\13\0\1\u0302\223\0\4\u044a\2\0\1\u044a"+
"\15\0\1\u044a\6\0\12\u044a\1\u036a\13\0\1\u0302\222\0"+
"\1\u044b\33\0\12\u03d6\237\0\1\u044b\33\0\12\u044c\237\0"+
"\1\u044b\33\0\1\u03d6\1\u044d\1\u044c\2\u03d6\2\u044c\1\u03d6"+
"\1\u044c\1\u03d6\237\0\1\u036b\4\u044a\2\0\1\u044a\15\0"+
"\1\u044a\6\0\12\u044a\1\u036a\13\0\1\u0302\222\0\1\u036f"+
"\1\u0303\2\u044e\1\u044f\1\u0450\10\u044e\1\u0303\1\u0451\5\u044e"+
"\6\u0303\1\u0370\12\u0303\237\0\1\u036f\1\u0452\2\u044e\1\u0303"+
"\1\u044e\1\u0453\6\u044e\4\u0303\4\u044e\1\u0303\1\u044e\1\u0303"+
"\3\u044e\1\u0370\12\u0303\237\0\1\u036f\3\u0303\1\u044e\1\u0303"+
"\1\u044e\4\u0303\1\u044e\10\u0303\1\u044e\2\u0303\1\u044e\2\u0303"+
"\1\u044e\1\u0370\12\u0303\237\0\1\u036f\1\u0303\1\u044e\1\u0454"+
"\2\u044e\2\u0303\1\u044e\6\u0303\3\u044e\11\u0303\1\u0370\12\u0303"+
"\237\0\1\u036f\3\u0303\1\u044e\1\u0303\1\u044e\10\u0303\1\u044e"+
"\1\u0303\2\u044e\10\u0303\1\u0370\12\u0303\237\0\1\u036f\4\u0303"+
"\1\u0455\5\u0303\1\u044e\17\u0303\1\u0370\12\u0303\237\0\1\u036f"+
"\4\u0303\2\u044e\2\u0303\1\u044e\1\u0303\1\u044e\13\u0303\1\u044e"+
"\2\u0303\1\u044e\1\u0370\12\u0303\237\0\1\u036f\1\u044e\1\u0303"+
"\3\u044e\1\u0456\14\u044e\2\u0303\2\u044e\2\u0303\1\u044e\1\u0303"+
"\1\u0370\12\u0303\237\0\1\u036f\2\u0303\4\u044e\3\u0303\2\u044e"+
"\1\u0457\1\u044e\1\u0303\2\u044e\12\u0303\1\u0370\12\u0303\237\0"+
"\1\u036f\2\u044e\2\u0303\1\u044e\3\u0303\1\u044e\5\u0303\3\u044e"+
"\3\u0303\1\u044e\2\u0303\3\u044e\1\u0370\12\u0303\237\0\1\u036f"+
"\5\u044e\1\u0458\1\u0303\1\u044e\1\u0459\7\u044e\1\u045a\3\u044e"+
"\1\u0303\1\u044e\1\u0303\3\u044e\1\u0370\12\u0303\237\0\1\u036f"+
"\1\u045b\1\u044e\1\u0303\1\u0452\6\u044e\3\u0303\1\u044e\2\u0303"+
"\1\u044e\2\u0303\1\u044e\6\u0303\1\u0370\12\u0303\237\0\1\u036f"+
"\1\u044e\31\u0303\1\u0370\12\u0303\237\0\1\u036f\1\u044e\2\u0303"+
"\1\u044e\1\u045c\1\u0303\2\u044e\1\u0303\3\u044e\2\u0303\2\u044e"+
"\1\u0303\1\u044e\3\u0303\1\u044e\2\u0303\2\u044e\1\u0370\12\u0303"+
"\237\0\1\u036f\6\u044e\1\u0303\5\u044e\3\u0303\2\u044e\1\u0303"+
"\10\u044e\1\u0370\12\u0303\237\0\1\u036f\1\u0303\2\u044e\1\u0459"+
"\1\u045d\3\u044e\1\u0303\3\u044e\1\u0303\1\u044e\1\u0303\1\u044e"+
"\1\u0303\1\u044e\1\u0303\1\u044e\1\u0303\3\u044e\1\u0303\1\u044e"+
"\1\u0370\12\u0303\237\0\1\u036f\1\u044e\6\u0303\1\u044e\6\u0303"+
"\1\u044e\4\u0303\1\u044e\4\u0303\2\u044e\1\u0370\12\u0303\237\0"+
"\1\u036f\6\u0303\1\u044e\7\u0303\1\u044e\13\u0303\1\u0370\12\u0303"+
"\237\0\1\u036f\13\u0303\1\u045e\6\u0303\1\u045f\7\u0303\1\u0370"+
"\12\u0303\237\0\1\u036f\1\u044e\11\u0303\1\u044e\6\u0303\1\u044e"+
"\10\u0303\1\u0370\12\u0303\237\0\1\u036f\1\u044e\1\u0303\6\u044e"+
"\1\u0460\1\u0303\2\u044e\2\u0303\2\u044e\1\u0303\1\u044e\1\u0303"+
"\6\u044e\1\u0303\1\u0370\12\u0303\237\0\1\u036f\4\u0303\1\u044e"+
"\5\u0303\2\u044e\3\u0303\2\u044e\10\u0303\1\u044e\1\u0370\12\u0303"+
"\237\0\1\u036f\3\u0303\1\u044e\1\u0303\1\u0461\4\u0303\1\u044e"+
"\2\u0303\1\u044e\14\u0303\1\u0370\12\u0303\237\0\1\u036f\2\u044e"+
"\1\u0303\1\u044e\3\u0303\2\u044e\2\u0303\1\u044e\4\u0303\1\u044e"+
"\11\u0303\1\u0370\12\u0303\237\0\1\u036f\3\u0303\1\u044e\13\u0303"+
"\1\u044e\12\u0303\1\u0370\12\u0303\237\0\1\u036f\3\u0303\2\u044e"+
"\2\u0303\2\u044e\1\u0303\2\u044e\1\u0303\1\u044e\3\u0303\1\u044e"+
"\1\u0303\1\u044e\1\u0303\1\u044e\2\u0303\1\u044e\1\u0303\1\u0370"+
"\12\u0303\237\0\34\u023e\12\u0462\1\0\2\u023e\1\u029f\3\u023e"+
"\1\u0240\1\u018c\1\u018d\1\u018e\2\0\2\u023e\4\0\1\u023e"+
"\214\0\4\u0463\2\0\1\u0463\15\0\1\u0463\6\0\12\u0463"+
"\1\u0376\237\0\4\u0464\2\0\1\u0464\15\0\1\u0464\6\0"+
"\12\u0464\1\u0465\237\0\4\u0466\2\0\1\u0466\15\0\1\u0466"+
"\6\0\1\u0467\2\u0468\1\u0467\5\u0468\1\u0469\14\0\1\u0146"+
"\223\0\4\u046a\2\0\1\u046a\15\0\1\u046a\6\0\12\u046a"+
"\1\u03f8\13\0\1\u0146\223\0\4\u0466\2\0\1\u0466\15\0"+
"\1\u0466\6\0\1\u0467\2\u0468\1\u0467\5\u0468\1\u0469\237\0"+
"\1\u0188\4\u046a\2\0\1\u046a\15\0\1\u046a\6\0\12\u046b"+
"\1\u03f8\13\0\1\u0146\222\0\1\u0188\4\u046a\2\0\1\u046a"+
"\15\0\1\u046a\6\0\12\u046a\1\u03f8\13\0\1\u0146\222\0"+
"\1\u0188\4\u046a\2\0\1\u046a\15\0\1\u046a\6\0\2\u046b"+
"\1\u046a\2\u046b\2\u046a\1\u046b\1\u046a\1\u046b\1\u03f8\13\0"+
"\1\u0146\270\0\1\u0310\13\0\1\u0146\222\0\1\u0109\32\270"+
"\1\u010a\1\u046c\11\270\237\0\1\u0109\1\u046d\31\270\1\u010a"+
"\12\270\237\0\1\u0109\32\270\1\u010a\10\270\1\u046e\1\270"+
"\237\0\1\u0109\25\270\1\u018f\4\270\1\u010a\12\270\237\0"+
"\1\u0109\32\270\1\u010a\5\270\1\u046f\4\270\237\0\1\u0109"+
"\32\270\1\u010a\5\270\1\u0470\4\270\237\0\1\u0109\32\270"+
"\1\u010a\5\270\1\u040d\4\270\237\0\1\u0109\32\270\1\u010a"+
"\3\270\1\u046d\6\270\237\0\1\u0109\17\270\1\u0471\12\270"+
"\1\u010a\12\270\237\0\1\u0109\12\270\1\u0472\17\270\1\u010a"+
"\12\270\237\0\1\u0109\25\270\1\u0473\4\270\1\u010a\12\270"+
"\237\0\1\u0109\1\u0474\31\270\1\u010a\12\270\237\0\1\u0109"+
"\15\270\1\u0475\14\270\1\u010a\12\270\237\0\1\u0109\32\270"+
"\1\u010a\3\270\1\u0476\6\270\237\0\1\u0109\21\270\1\u0477"+
"\10\270\1\u010a\12\270\237\0\1\u0109\2\270\1\u0400\27\270"+
"\1\u010a\12\270\237\0\1\u0109\1\270\1\u018f\30\270\1\u010a"+
"\12\270\237\0\1\u0109\11\270\1\u0478\20\270\1\u010a\12\270"+
"\237\0\1\u0109\11\270\1\u0479\20\270\1\u010a\12\270\237\0"+
"\1\u0109\1\u047a\31\270\1\u010a\12\270\237\0\1\u0109\1\u047b"+
"\31\270\1\u010a\12\270\237\0\1\u0109\2\270\1\u047c\27\270"+
"\1\u010a\12\270\237\0\1\u0109\32\270\1\u010a\4\270\1\u0196"+
"\5\270\237\0\1\u0109\10\270\1\u047d\21\270\1\u010a\12\270"+
"\237\0\1\u0109\1\u047e\31\270\1\u010a\12\270\237\0\1\u0109"+
"\25\270\1\u047f\4\270\1\u010a\12\270\237\0\1\u0109\32\270"+
"\1\u010a\4\270\1\u046d\5\270\237\0\1\u0109\32\270\1\u010a"+
"\6\270\1\u046d\3\270\237\0\1\u0109\32\270\1\u010a\2\270"+
"\1\u046d\7\270\237\0\1\u0109\16\270\1\u0480\13\270\1\u010a"+
"\12\270\237\0\1\u0109\32\270\1\u010a\1\u0481\11\270\237\0"+
"\1\u0109\32\270\1\u010a\3\270\1\u0482\6\270\237\0\1\u0109"+
"\32\270\1\u010a\3\270\1\u0153\6\270\237\0\1\u0109\24\270"+
"\1\u0483\5\270\1\u010a\12\270\237\0\1\u0121\1\u0484\31\324"+
"\1\164\12\324\1\0\3\161\1\0\2\161\1\162\3\161"+
"\3\0\1\161\4\0\2\161\212\0\1\u0121\32\324\1\164"+
"\11\324\1\u0345\1\0\3\161\1\0\2\161\1\162\3\161"+
"\3\0\1\161\4\0\2\161\212\0\1\u0121\1\u0485\31\324"+
"\1\164\12\324\1\0\3\161\1\0\2\161\1\162\3\161"+
"\3\0\1\161\4\0\2\161\212\0\1\u0121\1\u0486\31\324"+
"\1\164\12\324\1\0\3\161\1\0\2\161\1\162\3\161"+
"\3\0\1\161\4\0\2\161\212\0\1\u0121\7\324\1\u0487"+
"\22\324\1\164\12\324\1\0\3\161\1\0\2\161\1\162"+
"\3\161\3\0\1\161\4\0\2\161\212\0\1\u0121\1\u0488"+
"\31\324\1\164\12\324\1\0\3\161\1\0\2\161\1\162"+
"\3\161\3\0\1\161\4\0\2\161\212\0\1\u0121\1\u0489"+
"\31\324\1\164\12\324\1\0\3\161\1\0\2\161\1\162"+
"\3\161\3\0\1\161\4\0\2\161\212\0\1\u0121\32\324"+
"\1\164\6\324\1\u048a\3\324\1\0\3\161\1\0\2\161"+
"\1\162\3\161\3\0\1\161\4\0\2\161\212\0\1\u0121"+
"\6\324\1\u0127\23\324\1\164\12\324\1\0\3\161\1\0"+
"\2\161\1\162\3\161\3\0\1\161\4\0\2\161\212\0"+
"\1\u0121\25\324\1\u048b\4\324\1\164\12\324\1\0\3\161"+
"\1\0\2\161\1\162\3\161\3\0\1\161\4\0\2\161"+
"\212\0\1\u0121\1\u048c\31\324\1\164\12\324\1\0\3\161"+
"\1\0\2\161\1\162\3\161\3\0\1\161\4\0\2\161"+
"\212\0\1\u0121\32\324\1\164\6\324\1\u048d\3\324\1\0"+
"\3\161\1\0\2\161\1\162\3\161\3\0\1\161\4\0"+
"\2\161\212\0\1\u0121\1\u048e\31\324\1\164\12\324\1\0"+
"\3\161\1\0\2\161\1\162\3\161\3\0\1\161\4\0"+
"\2\161\212\0\1\u0121\32\324\1\164\6\324\1\u0175\3\324"+
"\1\0\3\161\1\0\2\161\1\162\3\161\3\0\1\161"+
"\4\0\2\161\212\0\1\u0121\12\324\1\u0138\17\324\1\164"+
"\12\324\1\0\3\161\1\0\2\161\1\162\3\161\3\0"+
"\1\161\4\0\2\161\212\0\1\u0121\1\u048f\31\324\1\164"+
"\12\324\1\0\3\161\1\0\2\161\1\162\3\161\3\0"+
"\1\161\4\0\2\161\212\0\1\u0121\10\324\1\u0490\21\324"+
"\1\164\12\324\1\0\3\161\1\0\2\161\1\162\3\161"+
"\3\0\1\161\4\0\2\161\212\0\1\u0121\31\324\1\u0491"+
"\1\164\12\324\1\0\3\161\1\0\2\161\1\162\3\161"+
"\3\0\1\161\4\0\2\161\213\0\4\u0492\2\0\1\u0492"+
"\15\0\1\u0492\6\0\12\u0492\1\u03be\237\0\4\u0493\2\0"+
"\1\u0493\15\0\1\u0493\6\0\12\u0493\1\u0494\237\0\4\u0495"+
"\2\0\1\u0495\15\0\1\u0495\6\0\1\u0496\2\u0497\1\u0496"+
"\5\u0497\1\u0498\14\0\1\u035e\223\0\4\u0499\2\0\1\u0499"+
"\15\0\1\u0499\6\0\12\u0499\1\u0435\13\0\1\u035e\223\0"+
"\4\u0495\2\0\1\u0495\15\0\1\u0495\6\0\1\u0496\2\u0497"+
"\1\u0496\5\u0497\1\u0498\237\0\1\u03c5\4\u0499\2\0\1\u0499"+
"\15\0\1\u0499\6\0\12\u049a\1\u0435\13\0\1\u035e\222\0"+
"\1\u03c5\4\u0499\2\0\1\u0499\15\0\1\u0499\6\0\12\u0499"+
"\1\u0435\13\0\1\u035e\222\0\1\u03c5\4\u0499\2\0\1\u0499"+
"\15\0\1\u0499\6\0\2\u049a\1\u0499\2\u049a\2\u0499\1\u049a"+
"\1\u0499\1\u049a\1\u0435\13\0\1\u035e\223\0\4\u049b\2\0"+
"\1\u049b\15\0\1\u049b\6\0\12\u049b\1\u03c4\13\0\1\u035e"+
"\222\0\1\u049c\33\0\12\u043b\237\0\1\u049c\33\0\12\u049d"+
"\237\0\1\u049c\33\0\1\u043b\1\u049e\1\u049d\2\u043b\2\u049d"+
"\1\u043b\1\u049d\1\u043b\237\0\1\u03c5\4\u049b\2\0\1\u049b"+
"\15\0\1\u049b\6\0\12\u049b\1\u03c4\13\0\1\u035e\222\0"+
"\46\u01f0\1\0\2\u01f0\1\u0234\3\u01f0\1\u01f2\1\0\1\u0233"+
"\3\0\2\u01f0\4\0\1\u01f0\277\0\1\u049f\254\0\12\u04a0"+
"\11\0\1\u0233\273\0\1\u0364\237\0\4\u04a1\2\0\1\u04a1"+
"\15\0\1\u04a1\6\0\12\u04a1\1\u0443\237\0\4\u04a2\2\0"+
"\1\u04a2\15\0\1\u04a2\6\0\12\u04a2\1\u04a3\237\0\4\u04a4"+
"\2\0\1\u04a4\15\0\1\u04a4\6\0\12\u04a4\1\u04a5\13\0"+
"\1\u0302\222\0\1\u036b\4\u04a4\2\0\1\u04a4\15\0\1\u04a4"+
"\6\0\12\u04a6\1\u04a5\13\0\1\u0302\222\0\1\u036b\4\u04a4"+
"\2\0\1\u04a4\15\0\1\u04a4\6\0\12\u04a7\1\u04a5\13\0"+
"\1\u0302\222\0\1\u036b\4\u04a4\2\0\1\u04a4\15\0\1\u04a4"+
"\6\0\1\u04a6\1\u04a8\1\u04a7\2\u04a6\2\u04a7\1\u04a6\1\u04a7"+
"\1\u04a6\1\u04a5\13\0\1\u0302\223\0\4\u04a9\2\0\1\u04a9"+
"\15\0\1\u04a9\6\0\12\u04a9\1\u03d0\13\0\1\u0302\222\0"+
"\1\u036b\4\u04a9\2\0\1\u04a9\15\0\1\u04a9\6\0\12\u04a9"+
"\1\u03d0\13\0\1\u0302\270\0\1\u036a\13\0\1\u0302\256\0"+
"\1\u04aa\2\u04ab\1\u04aa\5\u04ab\1\u04ac\237\0\1\u044b\304\0"+
"\1\u044b\33\0\2\u044c\1\0\2\u044c\2\0\1\u044c\1\0"+
"\1\u044c\237\0\1\u04ad\32\u0303\1\u0370\12\u0303\237\0\1\u04ad"+
"\4\u0303\1\u04ae\25\u0303\1\u0370\12\u0303\237\0\1\u04ad\15\u0303"+
"\1\u03e5\14\u0303\1\u0370\12\u0303\237\0\1\u04ad\10\u0303\1\u03e5"+
"\21\u0303\1\u0370\12\u0303\237\0\1\u04ad\17\u0303\1\u044e\12\u0303"+
"\1\u0370\12\u0303\237\0\1\u04ad\5\u0303\1\u04af\4\u0303\1\u044e"+
"\17\u0303\1\u0370\12\u0303\237\0\1\u036f\20\u0303\1\u044e\11\u0303"+
"\1\u0370\12\u0303\237\0\1\u036f\7\u0303\1\u044e\22\u0303\1\u0370"+
"\12\u0303\237\0\1\u036f\27\u0303\1\u044e\2\u0303\1\u0370\12\u0303"+
"\237\0\1\u04ad\6\u0303\1\u04ae\10\u0303\1\u044e\12\u0303\1\u0370"+
"\12\u0303\237\0\1\u04ad\24\u0303\1\u04b0\5\u0303\1\u0370\12\u0303"+
"\237\0\1\u036f\11\u0303\1\u044e\20\u0303\1\u0370\12\u0303\237\0"+
"\1\u04ad\16\u0303\1\u04b1\13\u0303\1\u0370\12\u0303\237\0\1\u04ad"+
"\12\u0303\1\u04b2\17\u0303\1\u0370\12\u0303\237\0\1\u04ad\5\u0303"+
"\1\u044e\24\u0303\1\u0370\12\u0303\237\0\1\u04ad\1\u04b3\31\u0303"+
"\1\u0370\12\u0303\237\0\1\u036f\32\u0303\1\u04b4\12\u0303\237\0"+
"\1\u036f\22\u0303\1\u044e\7\u0303\1\u0370\12\u0303\237\0\1\u04ad"+
"\23\u0303\1\u044e\6\u0303\1\u0370\12\u0303\237\0\1\u04ad\24\u0303"+
"\1\u04b5\5\u0303\1\u0370\12\u0303\237\0\34\u023e\12\u04b6\1\0"+
"\2\u023e\1\u029f\3\u023e\1\u0240\1\u018c\1\u018d\1\u018e\2\0"+
"\2\u023e\4\0\1\u023e\261\0\1\u0376\237\0\4\u04b7\2\0"+
"\1\u04b7\15\0\1\u04b7\6\0\12\u04b7\1\u0465\237\0\4\u04b8"+
"\2\0\1\u04b8\15\0\1\u04b8\6\0\1\u04b9\2\u04ba\1\u04b9"+
"\5\u04ba\1\u04bb\1\u04bc\237\0\4\u04bd\2\0\1\u04bd\15\0"+
"\1\u04bd\6\0\12\u04bd\1\u04be\13\0\1\u0146\222\0\1\u0188"+
"\4\u04bd\2\0\1\u04bd\15\0\1\u04bd\6\0\12\u04bf\1\u04be"+
"\13\0\1\u0146\222\0\1\u0188\4\u04bd\2\0\1\u04bd\15\0"+
"\1\u04bd\6\0\12\u04c0\1\u04be\13\0\1\u0146\222\0\1\u0188"+
"\4\u04bd\2\0\1\u04bd\15\0\1\u04bd\6\0\1\u04bf\1\u04c1"+
"\1\u04c0\2\u04bf\2\u04c0\1\u04bf\1\u04c0\1\u04bf\1\u04be\13\0"+
"\1\u0146\223\0\4\u04c2\2\0\1\u04c2\15\0\1\u04c2\6\0"+
"\12\u04c2\1\u03f8\13\0\1\u0146\222\0\1\u0188\4\u04c2\2\0"+
"\1\u04c2\15\0\1\u04c2\6\0\12\u04c2\1\u03f8\13\0\1\u0146"+
"\222\0\1\u0109\3\270\1\u04c3\26\270\1\u010a\12\270\237\0"+
"\1\u0109\2\270\1\u018f\27\270\1\u010a\12\270\237\0\1\u0109"+
"\6\270\1\u019a\23\270\1\u010a\12\270\237\0\1\u0109\1\270"+
"\1\u0417\30\270\1\u010a\12\270\237\0\1\u0109\3\270\1\u04c4"+
"\26\270\1\u010a\12\270\237\0\1\u0109\32\270\1\u010a\3\270"+
"\1\u04c5\6\270\237\0\1\u0109\32\270\1\u010a\6\270\1\u04c6"+
"\3\270\237\0\1\u0109\32\270\1\u010a\6\270\1\u04c7\3\270"+
"\237\0\1\u0109\32\270\1\u010a\5\270\1\u04c8\4\270\237\0"+
"\1\u0109\32\270\1\u010a\7\270\1\u04c9\2\270\237\0\1\u0109"+
"\1\u04ca\31\270\1\u010a\12\270\237\0\1\u0109\24\270\1\u04cb"+
"\5\270\1\u010a\12\270\237\0\1\u0109\32\270\1\u010a\4\270"+
"\1\u04cc\5\270\237\0\1\u0109\32\270\1\u010a\4\270\1\u04cd"+
"\5\270\237\0\1\u0109\26\270\1\u04ce\3\270\1\u010a\12\270"+
"\237\0\1\u0109\30\270\1\u04cf\1\270\1\u010a\12\270\237\0"+
"\1\u0109\11\270\1\u01cb\20\270\1\u010a\12\270\237\0\1\u0109"+
"\32\270\1\u010a\2\270\1\u04d0\7\270\237\0\1\u0109\12\270"+
"\1\u04d1\17\270\1\u010a\12\270\237\0\1\u0109\17\270\1\u0197"+
"\12\270\1\u010a\12\270\237\0\1\u0109\32\270\1\u010a\4\270"+
"\1\u04d2\5\270\237\0\1\u0109\32\270\1\u010a\6\270\1\u01ce"+
"\3\270\237\0\1\u0109\30\270\1\u04d3\1\270\1\u010a\12\270"+
"\237\0\1\u0109\30\270\1\u04d4\1\270\1\u010a\12\270\237\0"+
"\1\u0121\32\324\1\164\1\u04d5\11\324\1\0\3\161\1\0"+
"\2\161\1\162\3\161\3\0\1\161\4\0\2\161\212\0"+
"\1\u0121\2\324\1\u04d6\27\324\1\164\12\324\1\0\3\161"+
"\1\0\2\161\1\162\3\161\3\0\1\161\4\0\2\161"+
"\212\0\1\u0121\32\324\1\164\10\324\1\u0338\1\324\1\0"+
"\3\161\1\0\2\161\1\162\3\161\3\0\1\161\4\0"+
"\2\161\212\0\1\u0121\15\324\1\350\14\324\1\164\12\324"+
"\1\0\3\161\1\0\2\161\1\162\3\161\3\0\1\161"+
"\4\0\2\161\212\0\1\u0121\23\324\1\u04d7\6\324\1\164"+
"\12\324\1\0\3\161\1\0\2\161\1\162\3\161\3\0"+
"\1\161\4\0\2\161\212\0\1\u0121\32\324\1\164\1\324"+
"\1\u04d8\10\324\1\0\3\161\1\0\2\161\1\162\3\161"+
"\3\0\1\161\4\0\2\161\212\0\1\u0121\32\324\1\164"+
"\3\324\1\u0179\6\324\1\0\3\161\1\0\2\161\1\162"+
"\3\161\3\0\1\161\4\0\2\161\212\0\1\u0121\30\324"+
"\1\u04d9\1\324\1\164\12\324\1\0\3\161\1\0\2\161"+
"\1\162\3\161\3\0\1\161\4\0\2\161\212\0\1\u0121"+
"\32\324\1\164\1\324\1\u04da\10\324\1\0\3\161\1\0"+
"\2\161\1\162\3\161\3\0\1\161\4\0\2\161\212\0"+
"\1\u0121\6\324\1\u04db\23\324\1\164\12\324\1\0\3\161"+
"\1\0\2\161\1\162\3\161\3\0\1\161\4\0\2\161"+
"\212\0\1\u0121\32\324\1\164\5\324\1\u04dc\4\324\1\0"+
"\3\161\1\0\2\161\1\162\3\161\3\0\1\161\4\0"+
"\2\161\212\0\1\u0121\32\324\1\164\5\324\1\u04dd\4\324"+
"\1\0\3\161\1\0\2\161\1\162\3\161\3\0\1\161"+
"\4\0\2\161\212\0\1\u0121\32\324\1\164\1\324\1\350"+
"\10\324\1\0\3\161\1\0\2\161\1\162\3\161\3\0"+
"\1\161\4\0\2\161\212\0\1\u0121\13\324\1\u04de\16\324"+
"\1\164\12\324\1\0\3\161\1\0\2\161\1\162\3\161"+
"\3\0\1\161\4\0\2\161\260\0\1\u03be\237\0\4\u04df"+
"\2\0\1\u04df\15\0\1\u04df\6\0\12\u04df\1\u0494\237\0"+
"\4\u04e0\2\0\1\u04e0\15\0\1\u04e0\6\0\12\u04e0\1\u04e1"+
"\237\0\4\u04e2\2\0\1\u04e2\15\0\1\u04e2\6\0\12\u04e2"+
"\1\u04e3\13\0\1\u035e\222\0\1\u03c5\4\u04e2\2\0\1\u04e2"+
"\15\0\1\u04e2\6\0\12\u04e4\1\u04e3\13\0\1\u035e\222\0"+
"\1\u03c5\4\u04e2\2\0\1\u04e2\15\0\1\u04e2\6\0\12\u04e5"+
"\1\u04e3\13\0\1\u035e\222\0\1\u03c5\4\u04e2\2\0\1\u04e2"+
"\15\0\1\u04e2\6\0\1\u04e4\1\u04e6\1\u04e5\2\u04e4\2\u04e5"+
"\1\u04e4\1\u04e5\1\u04e4\1\u04e3\13\0\1\u035e\223\0\4\u04e7"+
"\2\0\1\u04e7\15\0\1\u04e7\6\0\12\u04e7\1\u0435\13\0"+
"\1\u035e\222\0\1\u03c5\4\u04e7\2\0\1\u04e7\15\0\1\u04e7"+
"\6\0\12\u04e7\1\u0435\13\0\1\u035e\270\0\1\u03c4\13\0"+
"\1\u035e\256\0\1\u04e8\2\u04e9\1\u04e8\5\u04e9\1\u04ea\237\0"+
"\1\u049c\304\0\1\u049c\33\0\2\u049d\1\0\2\u049d\2\0"+
"\1\u049d\1\0\1\u049d\240\0\1\u04eb\1\0\1\u04eb\5\0"+
"\1\u04eb\352\0\1\u0233\226\0\4\u04ec\2\0\1\u04ec\15\0"+
"\1\u04ec\6\0\12\u04ec\1\u0443\237\0\4\u04ed\2\0\1\u04ed"+
"\15\0\1\u04ed\6\0\12\u04ed\1\u04ee\237\0\4\u04ef\2\0"+
"\1\u04ef\15\0\1\u04ef\6\0\1\u04f0\2\u04f1\1\u04f0\5\u04f1"+
"\1\u04f2\14\0\1\u0302\223\0\4\u04f3\2\0\1\u04f3\15\0"+
"\1\u04f3\6\0\12\u04f3\1\u04a5\13\0\1\u0302\223\0\4\u04ef"+
"\2\0\1\u04ef\15\0\1\u04ef\6\0\1\u04f0\2\u04f1\1\u04f0"+
"\5\u04f1\1\u04f2\237\0\1\u036b\4\u04f3\2\0\1\u04f3\15\0"+
"\1\u04f3\6\0\12\u04f4\1\u04a5\13\0\1\u0302\222\0\1\u036b"+
"\4\u04f3\2\0\1\u04f3\15\0\1\u04f3\6\0\12\u04f3\1\u04a5"+
"\13\0\1\u0302\222\0\1\u036b\4\u04f3\2\0\1\u04f3\15\0"+
"\1\u04f3\6\0\2\u04f4\1\u04f3\2\u04f4\2\u04f3\1\u04f4\1\u04f3"+
"\1\u04f4\1\u04a5\13\0\1\u0302\270\0\1\u03d0\13\0\1\u0302"+
"\222\0\1\u04f5\33\0\12\u04ab\237\0\1\u04f5\33\0\12\u04f6"+
"\237\0\1\u04f5\33\0\1\u04ab\1\u04f7\1\u04f6\2\u04ab\2\u04f6"+
"\1\u04ab\1\u04f6\1\u04ab\237\0\1\u036f\5\u0303\1\u044e\24\u0303"+
"\1\u0370\12\u0303\237\0\1\u036f\15\u0303\1\u044e\14\u0303\1\u0370"+
"\12\u0303\237\0\1\u036f\10\u0303\1\u044e\21\u0303\1\u0370\12\u0303"+
"\237\0\1\u036f\3\u0303\1\u04f8\26\u0303\1\u0370\12\u0303\237\0"+
"\1\u036f\3\u0303\1\u044e\26\u0303\1\u0370\12\u0303\237\0\1\u036f"+
"\27\u0303\1\u04f9\2\u0303\1\u0370\12\u0303\240\0\32\u0303\1\u04fa"+
"\12\u0303\237\0\1\u036f\16\u0303\1\u044e\13\u0303\1\u0370\12\u0303"+
"\237\0\46\u023e\1\0\2\u023e\1\u029f\3\u023e\1\u0240\1\u018c"+
"\1\u018d\1\u018e\2\0\2\u023e\4\0\1\u023e\214\0\4\u04fb"+
"\2\0\1\u04fb\15\0\1\u04fb\6\0\12\u04fb\1\u0465\237\0"+
"\4\u04fc\2\0\1\u04fc\15\0\1\u04fc\6\0\12\u04fc\1\u04fd"+
"\236\0\1\u0188\4\u04fc\2\0\1\u04fc\15\0\1\u04fc\6\0"+
"\12\u04fe\1\u04fd\236\0\1\u0188\4\u04fc\2\0\1\u04fc\15\0"+
"\1\u04fc\6\0\12\u04ff\1\u04fd\236\0\1\u0188\4\u04fc\2\0"+
"\1\u04fc\15\0\1\u04fc\6\0\1\u04fe\1\u0500\1\u04ff\2\u04fe"+
"\2\u04ff\1\u04fe\1\u04ff\1\u04fe\1\u04fd\237\0\4\u0501\2\0"+
"\1\u0501\15\0\1\u0501\6\0\12\u0501\14\0\1\u0146\223\0"+
"\4\u0502\2\0\1\u0502\15\0\1\u0502\6\0\12\u0502\1\u04be"+
"\13\0\1\u0146\223\0\4\u0501\2\0\1\u0501\15\0\1\u0501"+
"\6\0\12\u0501\237\0\1\u0188\4\u0502\2\0\1\u0502\15\0"+
"\1\u0502\6\0\12\u0503\1\u04be\13\0\1\u0146\222\0\1\u0188"+
"\4\u0502\2\0\1\u0502\15\0\1\u0502\6\0\12\u0502\1\u04be"+
"\13\0\1\u0146\222\0\1\u0188\4\u0502\2\0\1\u0502\15\0"+
"\1\u0502\6\0\2\u0503\1\u0502\2\u0503\2\u0502\1\u0503\1\u0502"+
"\1\u0503\1\u04be\13\0\1\u0146\270\0\1\u03f8\13\0\1\u0146"+
"\222\0\1\u0109\1\u0504\31\270\1\u010a\12\270\237\0\1\u0109"+
"\32\270\1\u010a\11\270\1\u040d\237\0\1\u0109\1\u0505\31\270"+
"\1\u010a\12\270\237\0\1\u0109\1\u0506\31\270\1\u010a\12\270"+
"\237\0\1\u0109\7\270\1\u0507\22\270\1\u010a\12\270\237\0"+
"\1\u0109\1\u0508\31\270\1\u010a\12\270\237\0\1\u0109\1\u0509"+
"\31\270\1\u010a\12\270\237\0\1\u0109\32\270\1\u010a\6\270"+
"\1\u050a\3\270\237\0\1\u0109\6\270\1\u018f\23\270\1\u010a"+
"\12\270\237\0\1\u0109\25\270\1\u050b\4\270\1\u010a\12\270"+
"\237\0\1\u0109\1\u050c\31\270\1\u010a\12\270\237\0\1\u0109"+
"\32\270\1\u010a\6\270\1\u050d\3\270\237\0\1\u0109\1\u050e"+
"\31\270\1\u010a\12\270\237\0\1\u0109\32\270\1\u010a\6\270"+
"\1\u01ca\3\270\237\0\1\u0109\12\270\1\u01a0\17\270\1\u010a"+
"\12\270\237\0\1\u0109\1\u050f\31\270\1\u010a\12\270\237\0"+
"\1\u0109\10\270\1\u0510\21\270\1\u010a\12\270\237\0\1\u0109"+
"\31\270\1\u0511\1\u010a\12\270\237\0\1\u0121\24\324\1\u0512"+
"\5\324\1\164\12\324\1\0\3\161\1\0\2\161\1\162"+
"\3\161\3\0\1\161\4\0\2\161\212\0\1\u0121\32\324"+
"\1\164\10\324\1\u0513\1\324\1\0\3\161\1\0\2\161"+
"\1\162\3\161\3\0\1\161\4\0\2\161\212\0\1\u0121"+
"\1\324\1\u012e\30\324\1\164\12\324\1\0\3\161\1\0"+
"\2\161\1\162\3\161\3\0\1\161\4\0\2\161\212\0"+
"\1\u0121\2\324\1\u0514\27\324\1\164\12\324\1\0\3\161"+
"\1\0\2\161\1\162\3\161\3\0\1\161\4\0\2\161"+
"\212\0\1\u0121\3\324\1\u0515\26\324\1\164\12\324\1\0"+
"\3\161\1\0\2\161\1\162\3\161\3\0\1\161\4\0"+
"\2\161\212\0\1\u0121\3\324\1\u0516\26\324\1\164\12\324"+
"\1\0\3\161\1\0\2\161\1\162\3\161\3\0\1\161"+
"\4\0\2\161\212\0\1\u0121\32\324\1\164\1\324\1\u0517"+
"\10\324\1\0\3\161\1\0\2\161\1\162\3\161\3\0"+
"\1\161\4\0\2\161\212\0\1\u0121\3\324\1\u0518\26\324"+
"\1\164\12\324\1\0\3\161\1\0\2\161\1\162\3\161"+
"\3\0\1\161\4\0\2\161\212\0\1\u0121\1\u0519\31\324"+
"\1\164\12\324\1\0\3\161\1\0\2\161\1\162\3\161"+
"\3\0\1\161\4\0\2\161\212\0\1\u0121\26\324\1\u051a"+
"\3\324\1\164\12\324\1\0\3\161\1\0\2\161\1\162"+
"\3\161\3\0\1\161\4\0\2\161\213\0\4\u051b\2\0"+
"\1\u051b\15\0\1\u051b\6\0\12\u051b\1\u0494\237\0\4\u051c"+
"\2\0\1\u051c\15\0\1\u051c\6\0\12\u051c\1\u051d\237\0"+
"\4\u051e\2\0\1\u051e\15\0\1\u051e\6\0\1\u051f\2\u0520"+
"\1\u051f\5\u0520\1\u0521\14\0\1\u035e\223\0\4\u0522\2\0"+
"\1\u0522\15\0\1\u0522\6\0\12\u0522\1\u04e3\13\0\1\u035e"+
"\223\0\4\u051e\2\0\1\u051e\15\0\1\u051e\6\0\1\u051f"+
"\2\u0520\1\u051f\5\u0520\1\u0521\237\0\1\u03c5\4\u0522\2\0"+
"\1\u0522\15\0\1\u0522\6\0\12\u0523\1\u04e3\13\0\1\u035e"+
"\222\0\1\u03c5\4\u0522\2\0\1\u0522\15\0\1\u0522\6\0"+
"\12\u0522\1\u04e3\13\0\1\u035e\222\0\1\u03c5\4\u0522\2\0"+
"\1\u0522\15\0\1\u0522\6\0\2\u0523\1\u0522\2\u0523\2\u0522"+
"\1\u0523\1\u0522\1\u0523\1\u04e3\13\0\1\u035e\270\0\1\u0435"+
"\13\0\1\u035e\222\0\1\u0524\33\0\12\u04e9\237\0\1\u0524"+
"\33\0\12\u0525\237\0\1\u0524\33\0\1\u04e9\1\u0526\1\u0525"+
"\2\u04e9\2\u0525\1\u04e9\1\u0525\1\u04e9\317\0\1\u018e\272\0"+
"\1\u0443\237\0\4\u0527\2\0\1\u0527\15\0\1\u0527\6\0"+
"\12\u0527\1\u04ee\237\0\4\u0528\2\0\1\u0528\15\0\1\u0528"+
"\6\0\12\u0528\1\u0529\237\0\4\u052a\2\0\1\u052a\15\0"+
"\1\u052a\6\0\12\u052a\1\u052b\13\0\1\u0302\222\0\1\u036b"+
"\4\u052a\2\0\1\u052a\15\0\1\u052a\6\0\12\u052c\1\u052b"+
"\13\0\1\u0302\222\0\1\u036b\4\u052a\2\0\1\u052a\15\0"+
"\1\u052a\6\0\12\u052d\1\u052b\13\0\1\u0302\222\0\1\u036b"+
"\4\u052a\2\0\1\u052a\15\0\1\u052a\6\0\1\u052c\1\u052e"+
"\1\u052d\2\u052c\2\u052d\1\u052c\1\u052d\1\u052c\1\u052b\13\0"+
"\1\u0302\223\0\4\u052f\2\0\1\u052f\15\0\1\u052f\6\0"+
"\12\u052f\1\u04a5\13\0\1\u0302\222\0\1\u036b\4\u052f\2\0"+
"\1\u052f\15\0\1\u052f\6\0\12\u052f\1\u04a5\13\0\1\u0302"+
"\256\0\1\u0530\2\u0531\1\u0530\5\u0531\1\u0532\237\0\1\u04f5"+
"\304\0\1\u04f5\33\0\2\u04f6\1\0\2\u04f6\2\0\1\u04f6"+
"\1\0\1\u04f6\237\0\1\u036f\20\u0303\1\u0533\11\u0303\1\u0370"+
"\12\u0303\237\0\1\u036f\3\u0303\1\u0459\26\u0303\1\u0370\12\u0303"+
"\240\0\1\u0303\1\u0534\1\u0535\2\u0303\1\u0536\1\u0537\1\u0538"+
"\1\u0303\1\u0539\1\u053a\2\u0303\1\u053b\1\u053c\2\u0303\1\u053d"+
"\1\u053e\1\u053f\1\u0303\1\u0540\1\u0541\1\u0303\1\u0542\1\u0543"+
"\1\u0370\1\u0544\2\u0303\1\u0545\1\u0546\1\u0547\1\u0303\1\u0548"+
"\1\u0549\1\u0303\305\0\1\u0465\237\0\4\u054a\2\0\1\u054a"+
"\15\0\1\u054a\6\0\12\u054a\1\u04fd\237\0\4\u0501\2\0"+
"\1\u0501\15\0\1\u0501\6\0\12\u0501\1\u037d\236\0\1\u0188"+
"\4\u054a\2\0\1\u054a\15\0\1\u054a\6\0\12\u054b\1\u04fd"+
"\236\0\1\u0188\4\u054a\2\0\1\u054a\15\0\1\u054a\6\0"+
"\12\u054a\1\u04fd\236\0\1\u0188\4\u054a\2\0\1\u054a\15\0"+
"\1\u054a\6\0\2\u054b\1\u054a\2\u054b\2\u054a\1\u054b\1\u054a"+
"\1\u054b\1\u04fd\237\0\4\u054c\2\0\1\u054c\15\0\1\u054c"+
"\6\0\12\u054c\14\0\1\u0146\223\0\4\u054d\2\0\1\u054d"+
"\15\0\1\u054d\6\0\12\u054d\1\u04be\13\0\1\u0146\222\0"+
"\1\u0188\4\u054d\2\0\1\u054d\15\0\1\u054d\6\0\12\u054d"+
"\1\u04be\13\0\1\u0146\222\0\1\u0109\32\270\1\u010a\1\u054e"+
"\11\270\237\0\1\u0109\2\270\1\u054f\27\270\1\u010a\12\270"+
"\237\0\1\u0109\32\270\1\u010a\10\270\1\u0400\1\270\237\0"+
"\1\u0109\15\270\1\u0153\14\270\1\u010a\12\270\237\0\1\u0109"+
"\23\270\1\u0550\6\270\1\u010a\12\270\237\0\1\u0109\32\270"+
"\1\u010a\1\270\1\u0551\10\270\237\0\1\u0109\32\270\1\u010a"+
"\3\270\1\u01ce\6\270\237\0\1\u0109\30\270\1\u0552\1\270"+
"\1\u010a\12\270\237\0\1\u0109\32\270\1\u010a\1\270\1\u0553"+
"\10\270\237\0\1\u0109\6\270\1\u0554\23\270\1\u010a\12\270"+
"\237\0\1\u0109\32\270\1\u010a\5\270\1\u0555\4\270\237\0"+
"\1\u0109\32\270\1\u010a\5\270\1\u0556\4\270\237\0\1\u0109"+
"\32\270\1\u010a\1\270\1\u0153\10\270\237\0\1\u0109\13\270"+
"\1\u0557\16\270\1\u010a\12\270\237\0\1\u0121\32\324\1\164"+
"\11\324\1\u0558\1\0\3\161\1\0\2\161\1\162\3\161"+
"\3\0\1\161\4\0\2\161\212\0\1\u0121\26\324\1\u0127"+
"\3\324\1\164\12\324\1\0\3\161\1\0\2\161\1\162"+
"\3\161\3\0\1\161\4\0\2\161\212\0\1\u0121\32\324"+
"\1\164\7\324\1\u0559\2\324\1\0\3\161\1\0\2\161"+
"\1\162\3\161\3\0\1\161\4\0\2\161\212\0\1\u0121"+
"\32\324\1\164\11\324\1\350\1\0\3\161\1\0\2\161"+
"\1\162\3\161\3\0\1\161\4\0\2\161\212\0\1\u0121"+
"\3\324\1\u055a\26\324\1\164\12\324\1\0\3\161\1\0"+
"\2\161\1\162\3\161\3\0\1\161\4\0\2\161\212\0"+
"\1\u0121\32\324\1\164\4\324\1\u055b\5\324\1\0\3\161"+
"\1\0\2\161\1\162\3\161\3\0\1\161\4\0\2\161"+
"\212\0\1\u0121\16\324\1\u055c\13\324\1\164\12\324\1\0"+
"\3\161\1\0\2\161\1\162\3\161\3\0\1\161\4\0"+
"\2\161\212\0\1\u0121\26\324\1\u055d\3\324\1\164\12\324"+
"\1\0\3\161\1\0\2\161\1\162\3\161\3\0\1\161"+
"\4\0\2\161\212\0\1\u0121\32\324\1\164\7\324\1\u0427"+
"\2\324\1\0\3\161\1\0\2\161\1\162\3\161\3\0"+
"\1\161\4\0\2\161\260\0\1\u0494\237\0\4\u055e\2\0"+
"\1\u055e\15\0\1\u055e\6\0\12\u055e\1\u051d\237\0\4\u055f"+
"\2\0\1\u055f\15\0\1\u055f\6\0\12\u055f\1\u0560\237\0"+
"\4\u0561\2\0\1\u0561\15\0\1\u0561\6\0\12\u0561\1\u0562"+
"\13\0\1\u035e\222\0\1\u03c5\4\u0561\2\0\1\u0561\15\0"+
"\1\u0561\6\0\12\u0563\1\u0562\13\0\1\u035e\222\0\1\u03c5"+
"\4\u0561\2\0\1\u0561\15\0\1\u0561\6\0\12\u0564\1\u0562"+
"\13\0\1\u035e\222\0\1\u03c5\4\u0561\2\0\1\u0561\15\0"+
"\1\u0561\6\0\1\u0563\1\u0565\1\u0564\2\u0563\2\u0564\1\u0563"+
"\1\u0564\1\u0563\1\u0562\13\0\1\u035e\223\0\4\u0566\2\0"+
"\1\u0566\15\0\1\u0566\6\0\12\u0566\1\u04e3\13\0\1\u035e"+
"\222\0\1\u03c5\4\u0566\2\0\1\u0566\15\0\1\u0566\6\0"+
"\12\u0566\1\u04e3\13\0\1\u035e\256\0\1\u0567\2\u0568\1\u0567"+
"\5\u0568\1\u0569\237\0\1\u0524\304\0\1\u0524\33\0\2\u0525"+
"\1\0\2\u0525\2\0\1\u0525\1\0\1\u0525\240\0\4\u056a"+
"\2\0\1\u056a\15\0\1\u056a\6\0\12\u056a\1\u04ee\237\0"+
"\4\u056b\2\0\1\u056b\15\0\1\u056b\6\0\12\u056b\1\u056c"+
"\237\0\4\u056d\2\0\1\u056d\15\0\1\u056d\6\0\1\u056e"+
"\2\u056f\1\u056e\5\u056f\1\u0570\14\0\1\u0302\223\0\4\u0571"+
"\2\0\1\u0571\15\0\1\u0571\6\0\12\u0571\1\u052b\13\0"+
"\1\u0302\223\0\4\u056d\2\0\1\u056d\15\0\1\u056d\6\0"+
"\1\u056e\2\u056f\1\u056e\5\u056f\1\u0570\237\0\1\u036b\4\u0571"+
"\2\0\1\u0571\15\0\1\u0571\6\0\12\u0572\1\u052b\13\0"+
"\1\u0302\222\0\1\u036b\4\u0571\2\0\1\u0571\15\0\1\u0571"+
"\6\0\12\u0571\1\u052b\13\0\1\u0302\222\0\1\u036b\4\u0571"+
"\2\0\1\u0571\15\0\1\u0571\6\0\2\u0572\1\u0571\2\u0572"+
"\2\u0571\1\u0572\1\u0571\1\u0572\1\u052b\13\0\1\u0302\270\0"+
"\1\u04a5\13\0\1\u0302\256\0\12\u0531\14\0\1\u0302\256\0"+
"\12\u0573\14\0\1\u0302\256\0\1\u0531\1\u0574\1\u0573\2\u0531"+
"\2\u0573\1\u0531\1\u0573\1\u0531\14\0\1\u0302\222\0\1\u036f"+
"\12\u0303\1\u044e\17\u0303\1\u0370\12\u0303\237\0\1\u036f\11\u0303"+
"\1\u0575\20\u0303\1\u0370\12\u0303\237\0\1\u036f\3\u0303\1\u0576"+
"\26\u0303\1\u0370\12\u0303\237\0\1\u036f\7\u0303\1\u0577\22\u0303"+
"\1\u0370\4\u0303\1\u0578\5\u0303\237\0\1\u036f\10\u0303\1\u0579"+
"\4\u0303\1\u057a\5\u0303\1\u057b\6\u0303\1\u0370\12\u0303\237\0"+
"\1\u036f\3\u0303\1\u057c\26\u0303\1\u0370\2\u0303\1\u057d\7\u0303"+
"\237\0\1\u036f\7\u0303\1\u057e\22\u0303\1\u0370\12\u0303\237\0"+
"\1\u036f\7\u0303\1\u057f\22\u0303\1\u0370\12\u0303\237\0\1\u036f"+
"\7\u0303\1\u0580\22\u0303\1\u0370\3\u0303\1\u0581\6\u0303\237\0"+
"\1\u036f\32\u0303\1\u0370\5\u0303\1\u0582\4\u0303\237\0\1\u036f"+
"\7\u0303\1\u0583\22\u0303\1\u0370\12\u0303\237\0\1\u036f\31\u0303"+
"\1\u0584\1\u0370\12\u0303\237\0\1\u036f\1\u0303\1\u0585\30\u0303"+
"\1\u0370\12\u0303\237\0\1\u036f\7\u0303\1\u0586\1\u0303\1\u0587"+
"\20\u0303\1\u0370\11\u0303\1\u0582\237\0\1\u036f\22\u0303\1\u0588"+
"\7\u0303\1\u0370\2\u0303\1\u0589\7\u0303\237\0\1\u036f\6\u0303"+
"\1\u058a\1\u058b\22\u0303\1\u0370\12\u0303\237\0\1\u036f\7\u0303"+
"\1\u058c\5\u0303\1\u058d\14\u0303\1\u0370\12\u0303\237\0\1\u036f"+
"\23\u0303\1\u058e\6\u0303\1\u0370\12\u0303\237\0\1\u036f\32\u0303"+
"\1\u0370\3\u0303\1\u058f\6\u0303\237\0\1\u036f\3\u0303\1\u0590"+
"\26\u0303\1\u0370\12\u0303\237\0\1\u036f\17\u0303\1\u0591\12\u0303"+
"\1\u0370\1\u0592\11\u0303\237\0\1\u036f\32\u0303\1\u0370\1\u0303"+
"\1\u0582\10\u0303\237\0\1\u036f\32\u0303\1\u0370\1\u0593\11\u0303"+
"\240\0\4\u0594\2\0\1\u0594\15\0\1\u0594\6\0\12\u0594"+
"\1\u04fd\236\0\1\u0188\4\u0594\2\0\1\u0594\15\0\1\u0594"+
"\6\0\12\u0594\1\u04fd\237\0\4\u0595\2\0\1\u0595\15\0"+
"\1\u0595\6\0\12\u0595\14\0\1\u0146\270\0\1\u04be\13\0"+
"\1\u0146\222\0\1\u0109\24\270\1\u0596\5\270\1\u010a\12\270"+
"\237\0\1\u0109\32\270\1\u010a\10\270\1\u0597\1\270\237\0"+
"\1\u0109\1\270\1\u0196\30\270\1\u010a\12\270\237\0\1\u0109"+
"\2\270\1\u0598\27\270\1\u010a\12\270\237\0\1\u0109\3\270"+
"\1\u0599\26\270\1\u010a\12\270\237\0\1\u0109\3\270\1\u059a"+
"\26\270\1\u010a\12\270\237\0\1\u0109\32\270\1\u010a\1\270"+
"\1\u059b\10\270\237\0\1\u0109";
private static final String ZZ_TRANS_PACKED_1 =
"\3\270\1\u059c\26\270\1\u010a\12\270\237\0\1\u0109\1\u059d"+
"\31\270\1\u010a\12\270\237\0\1\u0109\26\270\1\u059e\3\270"+
"\1\u010a\12\270\237\0\1\u0121\7\324\1\u059f\22\324\1\164"+
"\12\324\1\0\3\161\1\0\2\161\1\162\3\161\3\0"+
"\1\161\4\0\2\161\212\0\1\u0121\1\u05a0\31\324\1\164"+
"\12\324\1\0\3\161\1\0\2\161\1\162\3\161\3\0"+
"\1\161\4\0\2\161\212\0\1\u0121\32\324\1\164\1\u0338"+
"\11\324\1\0\3\161\1\0\2\161\1\162\3\161\3\0"+
"\1\161\4\0\2\161\212\0\1\u0121\24\324\1\u05a1\5\324"+
"\1\164\12\324\1\0\3\161\1\0\2\161\1\162\3\161"+
"\3\0\1\161\4\0\2\161\212\0\1\u0121\1\324\1\u05a2"+
"\30\324\1\164\12\324\1\0\3\161\1\0\2\161\1\162"+
"\3\161\3\0\1\161\4\0\2\161\212\0\1\u0121\32\324"+
"\1\164\2\324\1\u012e\7\324\1\0\3\161\1\0\2\161"+
"\1\162\3\161\3\0\1\161\4\0\2\161\213\0\4\u05a3"+
"\2\0\1\u05a3\15\0\1\u05a3\6\0\12\u05a3\1\u051d\237\0"+
"\4\u05a4\2\0\1\u05a4\15\0\1\u05a4\6\0\12\u05a4\1\u05a5"+
"\237\0\4\u05a6\2\0\1\u05a6\15\0\1\u05a6\6\0\1\u05a7"+
"\2\u05a8\1\u05a7\5\u05a8\1\u05a9\14\0\1\u035e\223\0\4\u05aa"+
"\2\0\1\u05aa\15\0\1\u05aa\6\0\12\u05aa\1\u0562\13\0"+
"\1\u035e\223\0\4\u05a6\2\0\1\u05a6\15\0\1\u05a6\6\0"+
"\1\u05a7\2\u05a8\1\u05a7\5\u05a8\1\u05a9\237\0\1\u03c5\4\u05aa"+
"\2\0\1\u05aa\15\0\1\u05aa\6\0\12\u05ab\1\u0562\13\0"+
"\1\u035e\222\0\1\u03c5\4\u05aa\2\0\1\u05aa\15\0\1\u05aa"+
"\6\0\12\u05aa\1\u0562\13\0\1\u035e\222\0\1\u03c5\4\u05aa"+
"\2\0\1\u05aa\15\0\1\u05aa\6\0\2\u05ab\1\u05aa\2\u05ab"+
"\2\u05aa\1\u05ab\1\u05aa\1\u05ab\1\u0562\13\0\1\u035e\270\0"+
"\1\u04e3\13\0\1\u035e\256\0\12\u0568\14\0\1\u035e\256\0"+
"\12\u05ac\14\0\1\u035e\256\0\1\u0568\1\u05ad\1\u05ac\2\u0568"+
"\2\u05ac\1\u0568\1\u05ac\1\u0568\14\0\1\u035e\270\0\1\u04ee"+
"\237\0\4\u05ae\2\0\1\u05ae\15\0\1\u05ae\6\0\12\u05ae"+
"\1\u056c\237\0\4\u05af\2\0\1\u05af\15\0\1\u05af\6\0"+
"\12\u05af\1\u05b0\237\0\4\u05b1\2\0\1\u05b1\15\0\1\u05b1"+
"\6\0\12\u05b1\1\u05b2\13\0\1\u0302\222\0\1\u036b\4\u05b1"+
"\2\0\1\u05b1\15\0\1\u05b1\6\0\12\u05b3\1\u05b2\13\0"+
"\1\u0302\222\0\1\u036b\4\u05b1\2\0\1\u05b1\15\0\1\u05b1"+
"\6\0\12\u05b4\1\u05b2\13\0\1\u0302\222\0\1\u036b\4\u05b1"+
"\2\0\1\u05b1\15\0\1\u05b1\6\0\1\u05b3\1\u05b5\1\u05b4"+
"\2\u05b3\2\u05b4\1\u05b3\1\u05b4\1\u05b3\1\u05b2\13\0\1\u0302"+
"\223\0\4\u05b6\2\0\1\u05b6\15\0\1\u05b6\6\0\12\u05b6"+
"\1\u052b\13\0\1\u0302\222\0\1\u036b\4\u05b6\2\0\1\u05b6"+
"\15\0\1\u05b6\6\0\12\u05b6\1\u052b\13\0\1\u0302\304\0"+
"\1\u0302\256\0\2\u0573\1\0\2\u0573\2\0\1\u0573\1\0"+
"\1\u0573\14\0\1\u0302\222\0\1\u036f\1\u0303\1\u05b7\30\u0303"+
"\1\u0370\12\u0303\237\0\1\u036f\24\u0303\1\u05b8\5\u0303\1\u0370"+
"\12\u0303\237\0\1\u036f\24\u0303\1\u05b9\5\u0303\1\u0370\12\u0303"+
"\237\0\1\u036f\1\u0303\1\u05ba\30\u0303\1\u0370\12\u0303\237\0"+
"\1\u036f\14\u0303\1\u05bb\15\u0303\1\u0370\12\u0303\237\0\1\u036f"+
"\1\u0303\1\u05bc\30\u0303\1\u0370\12\u0303\237\0\1\u036f\1\u0303"+
"\1\u05bd\30\u0303\1\u0370\12\u0303\237\0\1\u036f\1\u0303\1\u05be"+
"\30\u0303\1\u0370\12\u0303\237\0\1\u036f\21\u0303\1\u05bf\10\u0303"+
"\1\u0370\12\u0303\237\0\1\u036f\24\u0303\1\u05c0\5\u0303\1\u0370"+
"\12\u0303\237\0\1\u036f\24\u0303\1\u05c1\5\u0303\1\u0370\12\u0303"+
"\237\0\1\u036f\24\u0303\1\u05c2\5\u0303\1\u0370\12\u0303\237\0"+
"\1\u036f\1\u04b0\31\u0303\1\u0370\12\u0303\237\0\1\u036f\24\u0303"+
"\1\u05be\5\u0303\1\u0370\12\u0303\237\0\1\u036f\24\u0303\1\u05c3"+
"\5\u0303\1\u0370\12\u0303\237\0\1\u036f\1\u0303\1\u05c4\30\u0303"+
"\1\u0370\12\u0303\237\0\1\u036f\31\u0303\1\u05c5\1\u0370\12\u0303"+
"\237\0\1\u036f\24\u0303\1\u05c6\5\u0303\1\u0370\12\u0303\237\0"+
"\1\u036f\1\u0303\1\u05c7\30\u0303\1\u0370\12\u0303\237\0\1\u036f"+
"\1\u05c8\31\u0303\1\u0370\12\u0303\237\0\1\u036f\21\u0303\1\u05c9"+
"\10\u0303\1\u0370\12\u0303\237\0\1\u036f\4\u0303\1\u05ca\25\u0303"+
"\1\u0370\12\u0303\237\0\1\u036f\24\u0303\1\u05cb\5\u0303\1\u0370"+
"\12\u0303\237\0\1\u036f\24\u0303\1\u05cc\5\u0303\1\u0370\12\u0303"+
"\237\0\1\u036f\4\u0303\1\u05cd\25\u0303\1\u0370\12\u0303\237\0"+
"\1\u036f\21\u0303\1\u05ce\10\u0303\1\u0370\12\u0303\237\0\1\u036f"+
"\24\u0303\1\u05cf\5\u0303\1\u0370\12\u0303\237\0\1\u036f\32\u0303"+
"\1\u0370\1\u05d0\11\u0303\237\0\1\u036f\32\u0303\1\u0370\7\u0303"+
"\1\u05d1\2\u0303\237\0\1\u036f\1\u05d2\31\u0303\1\u0370\12\u0303"+
"\237\0\1\u036f\1\u05d3\31\u0303\1\u0370\12\u0303\305\0\1\u04fd"+
"\237\0\4\u037d\2\0\1\u037d\15\0\1\u037d\6\0\12\u037d"+
"\14\0\1\u0146\222\0\1\u0109\32\270\1\u010a\11\270\1\u05d4"+
"\237\0\1\u0109\26\270\1\u018f\3\270\1\u010a\12\270\237\0"+
"\1\u0109\32\270\1\u010a\7\270\1\u05d5\2\270\237\0\1\u0109"+
"\32\270\1\u010a\11\270\1\u0153\237\0\1\u0109\3\270\1\u05d6"+
"\26\270\1\u010a\12\270\237\0\1\u0109\32\270\1\u010a\4\270"+
"\1\u05d7\5\270\237\0\1\u0109\16\270\1\u05d8\13\270\1\u010a"+
"\12\270\237\0\1\u0109\26\270\1\u05d9\3\270\1\u010a\12\270"+
"\237\0\1\u0109\32\270\1\u010a\7\270\1\u04cb\2\270\237\0"+
"\1\u0121\32\324\1\164\11\324\1\u05da\1\0\3\161\1\0"+
"\2\161\1\162\3\161\3\0\1\161\4\0\2\161\212\0"+
"\1\u0121\4\324\1\u0127\25\324\1\164\12\324\1\0\3\161"+
"\1\0\2\161\1\162\3\161\3\0\1\161\4\0\2\161"+
"\212\0\1\u0121\24\324\1\350\5\324\1\164\12\324\1\0"+
"\3\161\1\0\2\161\1\162\3\161\3\0\1\161\4\0"+
"\2\161\212\0\1\u0121\32\324\1\164\6\324\1\350\3\324"+
"\1\0\3\161\1\0\2\161\1\162\3\161\3\0\1\161"+
"\4\0\2\161\260\0\1\u051d\237\0\4\u05db\2\0\1\u05db"+
"\15\0\1\u05db\6\0\12\u05db\1\u05a5\237\0\4\u05dc\2\0"+
"\1\u05dc\15\0\1\u05dc\6\0\12\u05dc\1\u05dd\237\0\4\u05de"+
"\2\0\1\u05de\15\0\1\u05de\6\0\12\u05de\1\u05df\13\0"+
"\1\u035e\222\0\1\u03c5\4\u05de\2\0\1\u05de\15\0\1\u05de"+
"\6\0\12\u05e0\1\u05df\13\0\1\u035e\222\0\1\u03c5\4\u05de"+
"\2\0\1\u05de\15\0\1\u05de\6\0\12\u05e1\1\u05df\13\0"+
"\1\u035e\222\0\1\u03c5\4\u05de\2\0\1\u05de\15\0\1\u05de"+
"\6\0\1\u05e0\1\u05e2\1\u05e1\2\u05e0\2\u05e1\1\u05e0\1\u05e1"+
"\1\u05e0\1\u05df\13\0\1\u035e\223\0\4\u05e3\2\0\1\u05e3"+
"\15\0\1\u05e3\6\0\12\u05e3\1\u0562\13\0\1\u035e\222\0"+
"\1\u03c5\4\u05e3\2\0\1\u05e3\15\0\1\u05e3\6\0\12\u05e3"+
"\1\u0562\13\0\1\u035e\304\0\1\u035e\256\0\2\u05ac\1\0"+
"\2\u05ac\2\0\1\u05ac\1\0\1\u05ac\14\0\1\u035e\223\0"+
"\4\u05e4\2\0\1\u05e4\15\0\1\u05e4\6\0\12\u05e4\1\u056c"+
"\237\0\4\u05e5\2\0\1\u05e5\15\0\1\u05e5\6\0\12\u05e5"+
"\1\u05e6\237\0\4\u05e7\2\0\1\u05e7\15\0\1\u05e7\6\0"+
"\1\u05e8\2\u05e9\1\u05e8\5\u05e9\1\u05ea\14\0\1\u0302\223\0"+
"\4\u05eb\2\0\1\u05eb\15\0\1\u05eb\6\0\12\u05eb\1\u05b2"+
"\13\0\1\u0302\223\0\4\u05e7\2\0\1\u05e7\15\0\1\u05e7"+
"\6\0\1\u05e8\2\u05e9\1\u05e8\5\u05e9\1\u05ea\237\0\1\u036b"+
"\4\u05eb\2\0\1\u05eb\15\0\1\u05eb\6\0\12\u05ec\1\u05b2"+
"\13\0\1\u0302\222\0\1\u036b\4\u05eb\2\0\1\u05eb\15\0"+
"\1\u05eb\6\0\12\u05eb\1\u05b2\13\0\1\u0302\222\0\1\u036b"+
"\4\u05eb\2\0\1\u05eb\15\0\1\u05eb\6\0\2\u05ec\1\u05eb"+
"\2\u05ec\2\u05eb\1\u05ec\1\u05eb\1\u05ec\1\u05b2\13\0\1\u0302"+
"\270\0\1\u052b\13\0\1\u0302\222\0\1\u036f\25\u0303\1\u05ed"+
"\4\u0303\1\u0370\12\u0303\237\0\1\u036f\1\u05ee\31\u0303\1\u0370"+
"\12\u0303\237\0\1\u036f\15\u0303\1\u05ef\14\u0303\1\u0370\12\u0303"+
"\237\0\1\u036f\21\u0303\1\u05f0\10\u0303\1\u0370\12\u0303\237\0"+
"\1\u036f\16\u0303\1\u05f1\4\u0303\1\u05f2\6\u0303\1\u0370\12\u0303"+
"\237\0\1\u036f\4\u0303\1\u05f3\25\u0303\1\u0370\12\u0303\237\0"+
"\1\u036f\32\u0303\1\u0370\11\u0303\1\u05f4\237\0\1\u036f\4\u0303"+
"\1\u05f5\25\u0303\1\u0370\12\u0303\237\0\1\u036f\32\u0303\1\u0370"+
"\11\u0303\1\u05f6\237\0\1\u036f\24\u0303\1\u05f7\5\u0303\1\u0370"+
"\12\u0303\237\0\1\u036f\1\u05f8\1\u05f9\1\u0303\1\u05fa\20\u0303"+
"\1\u05fb\5\u0303\1\u0370\5\u0303\1\u05fc\4\u0303\237\0\1\u036f"+
"\16\u0303\1\u05fd\13\u0303\1\u0370\12\u0303\237\0\1\u036f\11\u0303"+
"\1\u05fe\13\u0303\1\u05ff\4\u0303\1\u0370\12\u0303\237\0\1\u036f"+
"\32\u0303\1\u0370\11\u0303\1\u0600\237\0\1\u036f\23\u0303\1\u0601"+
"\6\u0303\1\u0370\12\u0303\237\0\1\u036f\31\u0303\1\u0602\1\u0370"+
"\12\u0303\237\0\1\u036f\26\u0303\1\u0603\3\u0303\1\u0370\12\u0303"+
"\237\0\1\u036f\11\u0303\1\u0604\20\u0303\1\u0370\12\u0303\237\0"+
"\1\u036f\32\u0303\1\u0370\3\u0303\1\u0605\6\u0303\237\0\1\u036f"+
"\5\u0303\1\u0606\24\u0303\1\u0370\12\u0303\237\0\1\u036f\10\u0303"+
"\1\u0607\21\u0303\1\u0370\12\u0303\237\0\1\u036f\3\u0303\1\u0608"+
"\26\u0303\1\u0370\12\u0303\237\0\1\u036f\21\u0303\1\u0609\6\u0303"+
"\1\u060a\1\u0303\1\u0370\12\u0303\237\0\1\u036f\12\u0303\1\u060b"+
"\17\u0303\1\u0370\12\u0303\237\0\1\u036f\32\u0303\1\u0370\1\u0303"+
"\1\u060c\10\u0303\237\0\1\u036f\24\u0303\1\u060d\5\u0303\1\u0370"+
"\12\u0303\237\0\1\u036f\24\u0303\1\u060e\5\u0303\1\u0370\12\u0303"+
"\237\0\1\u036f\32\u0303\1\u0370\4\u0303\1\u060f\5\u0303\237\0"+
"\1\u036f\5\u0303\1\u0610\23\u0303\1\u0611\1\u0370\12\u0303\237\0"+
"\1\u0109\7\270\1\u0612\22\270\1\u010a\12\270\237\0\1\u0109"+
"\1\u0613\31\270\1\u010a\12\270\237\0\1\u0109\32\270\1\u010a"+
"\1\u0400\11\270\237\0\1\u0109\24\270\1\u0614\5\270\1\u010a"+
"\12\270\237\0\1\u0109\1\270\1\u0615\30\270\1\u010a\12\270"+
"\237\0\1\u0109\32\270\1\u010a\2\270\1\u0196\7\270\237\0"+
"\1\u0121\1\u0616\31\324\1\164\12\324\1\0\3\161\1\0"+
"\2\161\1\162\3\161\3\0\1\161\4\0\2\161\213\0"+
"\4\u0617\2\0\1\u0617\15\0\1\u0617\6\0\12\u0617\1\u05a5"+
"\237\0\4\u0618\2\0\1\u0618\15\0\1\u0618\6\0\12\u0618"+
"\1\u0619\237\0\4\u061a\2\0\1\u061a\15\0\1\u061a\6\0"+
"\1\u061b\2\u061c\1\u061b\5\u061c\1\u061d\14\0\1\u035e\223\0"+
"\4\u061e\2\0\1\u061e\15\0\1\u061e\6\0\12\u061e\1\u05df"+
"\13\0\1\u035e\223\0\4\u061a\2\0\1\u061a\15\0\1\u061a"+
"\6\0\1\u061b\2\u061c\1\u061b\5\u061c\1\u061d\237\0\1\u03c5"+
"\4\u061e\2\0\1\u061e\15\0\1\u061e\6\0\12\u061f\1\u05df"+
"\13\0\1\u035e\222\0\1\u03c5\4\u061e\2\0\1\u061e\15\0"+
"\1\u061e\6\0\12\u061e\1\u05df\13\0\1\u035e\222\0\1\u03c5"+
"\4\u061e\2\0\1\u061e\15\0\1\u061e\6\0\2\u061f\1\u061e"+
"\2\u061f\2\u061e\1\u061f\1\u061e\1\u061f\1\u05df\13\0\1\u035e"+
"\270\0\1\u0562\13\0\1\u035e\270\0\1\u056c\237\0\4\u0620"+
"\2\0\1\u0620\15\0\1\u0620\6\0\12\u0620\1\u05e6\237\0"+
"\4\u0621\2\0\1\u0621\15\0\1\u0621\6\0\1\u0622\2\u0623"+
"\1\u0622\5\u0623\1\u0624\1\u0625\237\0\4\u0626\2\0\1\u0626"+
"\15\0\1\u0626\6\0\12\u0626\1\u0627\13\0\1\u0302\222\0"+
"\1\u036b\4\u0626\2\0\1\u0626\15\0\1\u0626\6\0\12\u0628"+
"\1\u0627\13\0\1\u0302\222\0\1\u036b\4\u0626\2\0\1\u0626"+
"\15\0\1\u0626\6\0\12\u0629\1\u0627\13\0\1\u0302\222\0"+
"\1\u036b\4\u0626\2\0\1\u0626\15\0\1\u0626\6\0\1\u0628"+
"\1\u062a\1\u0629\2\u0628\2\u0629\1\u0628\1\u0629\1\u0628\1\u0627"+
"\13\0\1\u0302\223\0\4\u062b\2\0\1\u062b\15\0\1\u062b"+
"\6\0\12\u062b\1\u05b2\13\0\1\u0302\222\0\1\u036b\4\u062b"+
"\2\0\1\u062b\15\0\1\u062b\6\0\12\u062b\1\u05b2\13\0"+
"\1\u0302\222\0\1\u036f\1\u0303\1\u062c\30\u0303\1\u0370\12\u0303"+
"\237\0\1\u036f\32\u0303\1\u0370\1\u062d\11\u0303\237\0\1\u036f"+
"\6\u0303\1\u062e\23\u0303\1\u0370\12\u0303\237\0\1\u036f\32\u0303"+
"\1\u0370\7\u0303\1\u062f\2\u0303\237\0\1\u036f\32\u0303\1\u0370"+
"\10\u0303\1\u04b5\1\u0303\237\0\1\u036f\32\u0303\1\u0370\5\u0303"+
"\1\u04b5\4\u0303\237\0\1\u036f\26\u0303\1\u0630\3\u0303\1\u0370"+
"\12\u0303\237\0\1\u036f\1\u0303\1\u0631\30\u0303\1\u0370\12\u0303"+
"\237\0\1\u036f\26\u0303\1\u0632\3\u0303\1\u0370\12\u0303\237\0"+
"\1\u036f\32\u0303\1\u0370\1\u0303\1\u0633\10\u0303\237\0\1\u036f"+
"\1\u0634\31\u0303\1\u0370\12\u0303\237\0\1\u036f\1\u0635\27\u0303"+
"\1\u0636\1\u0303\1\u0370\12\u0303\237\0\1\u036f\32\u0303\1\u0370"+
"\1\u0637\11\u0303\237\0\1\u036f\4\u0303\1\u0638\25\u0303\1\u0370"+
"\12\u0303\237\0\1\u036f\25\u0303\1\u0639\4\u0303\1\u0370\12\u0303"+
"\237\0\1\u036f\1\u063a\31\u0303\1\u0370\12\u0303\237\0\1\u036f"+
"\32\u0303\1\u0370\1\u063b\11\u0303\237\0\1\u036f\32\u0303\1\u0370"+
"\2\u0303\1\u03e5\7\u0303\237\0\1\u036f\32\u0303\1\u0370\3\u0303"+
"\1\u063c\6\u0303\237\0\1\u036f\1\u063d\1\u0303\1\u063e\27\u0303"+
"\1\u0370\12\u0303\237\0\1\u036f\1\u062f\31\u0303\1\u0370\12\u0303"+
"\237\0\1\u036f\32\u0303\1\u0370\2\u0303\1\u063f\7\u0303\237\0"+
"\1\u036f\32\u0303\1\u0370\2\u0303\1\u0640\7\u0303\237\0\1\u036f"+
"\15\u0303\1\u0641\14\u0303\1\u0370\12\u0303\237\0\1\u036f\32\u0303"+
"\1\u0370\5\u0303\1\u0642\4\u0303\237\0\1\u036f\32\u0303\1\u0370"+
"\7\u0303\1\u0643\2\u0303\237\0\1\u036f\32\u0303\1\u0370\11\u0303"+
"\1\u0644\237\0\1\u036f\1\u0303\1\u0645\30\u0303\1\u0370\12\u0303"+
"\237\0\1\u036f\32\u0303\1\u0370\3\u0303\1\u0646\6\u0303\237\0"+
"\1\u036f\32\u0303\1\u0370\1\u0303\1\u0647\10\u0303\237\0\1\u036f"+
"\32\u0303\1\u0370\1\u0303\1\u0648\10\u0303\237\0\1\u036f\24\u0303"+
"\1\u0649\5\u0303\1\u0370\12\u0303\237\0\1\u036f\32\u0303\1\u0370"+
"\6\u0303\1\u064a\3\u0303\237\0\1\u036f\32\u0303\1\u0370\3\u0303"+
"\1\u064b\6\u0303\237\0\1\u036f\1\u063c\31\u0303\1\u0370\12\u0303"+
"\237\0\1\u036f\32\u0303\1\u0370\11\u0303\1\u064c\237\0\1\u036f"+
"\25\u0303\1\u064d\4\u0303\1\u0370\12\u0303\237\0\1\u0109\32\270"+
"\1\u010a\11\270\1\u064e\237\0\1\u0109\4\270\1\u018f\25\270"+
"\1\u010a\12\270\237\0\1\u0109\24\270\1\u0153\5\270\1\u010a"+
"\12\270\237\0\1\u0109\32\270\1\u010a\6\270\1\u0153\3\270"+
"\237\0\1\u0121\32\324\1\164\5\324\1\u064f\4\324\1\0"+
"\3\161\1\0\2\161\1\162\3\161\3\0\1\161\4\0"+
"\2\161\260\0\1\u05a5\237\0\4\u0650\2\0\1\u0650\15\0"+
"\1\u0650\6\0\12\u0650\1\u0619\237\0\4\u0651\2\0\1\u0651"+
"\15\0\1\u0651\6\0\1\u0652\2\u0653\1\u0652\5\u0653\1\u0654"+
"\1\u0655\237\0\4\u0656\2\0\1\u0656\15\0\1\u0656\6\0"+
"\12\u0656\1\u0657\13\0\1\u035e\222\0\1\u03c5\4\u0656\2\0"+
"\1\u0656\15\0\1\u0656\6\0\12\u0658\1\u0657\13\0\1\u035e"+
"\222\0\1\u03c5\4\u0656\2\0\1\u0656\15\0\1\u0656\6\0"+
"\12\u0659\1\u0657\13\0\1\u035e\222\0\1\u03c5\4\u0656\2\0"+
"\1\u0656\15\0\1\u0656\6\0\1\u0658\1\u065a\1\u0659\2\u0658"+
"\2\u0659\1\u0658\1\u0659\1\u0658\1\u0657\13\0\1\u035e\223\0"+
"\4\u065b\2\0\1\u065b\15\0\1\u065b\6\0\12\u065b\1\u05df"+
"\13\0\1\u035e\222\0\1\u03c5\4\u065b\2\0\1\u065b\15\0"+
"\1\u065b\6\0\12\u065b\1\u05df\13\0\1\u035e\223\0\4\u065c"+
"\2\0\1\u065c\15\0\1\u065c\6\0\12\u065c\1\u05e6\237\0"+
"\4\u065d\2\0\1\u065d\15\0\1\u065d\6\0\12\u065d\1\u065e"+
"\236\0\1\u036b\4\u065d\2\0\1\u065d\15\0\1\u065d\6\0"+
"\12\u065f\1\u065e\236\0\1\u036b\4\u065d\2\0\1\u065d\15\0"+
"\1\u065d\6\0\12\u0660\1\u065e\236\0\1\u036b\4\u065d\2\0"+
"\1\u065d\15\0\1\u065d\6\0\1\u065f\1\u0661\1\u0660\2\u065f"+
"\2\u0660\1\u065f\1\u0660\1\u065f\1\u065e\237\0\4\u0662\2\0"+
"\1\u0662\15\0\1\u0662\6\0\12\u0662\14\0\1\u0302\223\0"+
"\4\u0663\2\0\1\u0663\15\0\1\u0663\6\0\12\u0663\1\u0627"+
"\13\0\1\u0302\223\0\4\u0662\2\0\1\u0662\15\0\1\u0662"+
"\6\0\12\u0662\237\0\1\u036b\4\u0663\2\0\1\u0663\15\0"+
"\1\u0663\6\0\12\u0664\1\u0627\13\0\1\u0302\222\0\1\u036b"+
"\4\u0663\2\0\1\u0663\15\0\1\u0663\6\0\12\u0663\1\u0627"+
"\13\0\1\u0302\222\0\1\u036b\4\u0663\2\0\1\u0663\15\0"+
"\1\u0663\6\0\2\u0664\1\u0663\2\u0664\2\u0663\1\u0664\1\u0663"+
"\1\u0664\1\u0627\13\0\1\u0302\270\0\1\u05b2\13\0\1\u0302"+
"\222\0\1\u036f\32\u0303\1\u0370\1\u0665\11\u0303\237\0\1\u036f"+
"\1\u0666\31\u0303\1\u0370\12\u0303\237\0\1\u036f\32\u0303\1\u0370"+
"\10\u0303\1\u0667\1\u0303\237\0\1\u036f\25\u0303\1\u044e\4\u0303"+
"\1\u0370\12\u0303\237\0\1\u036f\32\u0303\1\u0370\5\u0303\1\u0668"+
"\4\u0303\237\0\1\u036f\32\u0303\1\u0370\5\u0303\1\u0669\4\u0303"+
"\237\0\1\u036f\32\u0303\1\u0370\5\u0303\1\u063c\4\u0303\237\0"+
"\1\u036f\32\u0303\1\u0370\3\u0303\1\u0666\6\u0303\237\0\1\u036f"+
"\17\u0303\1\u066a\12\u0303\1\u0370\12\u0303\237\0\1\u036f\12\u0303"+
"\1\u066b\17\u0303\1\u0370\12\u0303\237\0\1\u036f\25\u0303\1\u066c"+
"\4\u0303\1\u0370\12\u0303\237\0\1\u036f\1\u066d\31\u0303\1\u0370"+
"\12\u0303\237\0\1\u036f\15\u0303\1\u066e\14\u0303\1\u0370\12\u0303"+
"\237\0\1\u036f\32\u0303\1\u0370\3\u0303\1\u066f\6\u0303\237\0"+
"\1\u036f\21\u0303\1\u0670\10\u0303\1\u0370\12\u0303\237\0\1\u036f"+
"\2\u0303\1\u062f\27\u0303\1\u0370\12\u0303\237\0\1\u036f\1\u0303"+
"\1\u044e\30\u0303\1\u0370\12\u0303\237\0\1\u036f\11\u0303\1\u0671"+
"\20\u0303\1\u0370\12\u0303\237\0\1\u036f\11\u0303\1\u0672\20\u0303"+
"\1\u0370\12\u0303\237\0\1\u036f\1\u0673\31\u0303\1\u0370\12\u0303"+
"\237\0\1\u036f\1\u0674\31\u0303\1\u0370\12\u0303\237\0\1\u036f"+
"\2\u0303\1\u0675\27\u0303\1\u0370\12\u0303\237\0\1\u036f\32\u0303"+
"\1\u0370\4\u0303\1\u0455\5\u0303\237\0\1\u036f\10\u0303\1\u0676"+
"\21\u0303\1\u0370\12\u0303\237\0\1\u036f\1\u0677\31\u0303\1\u0370"+
"\12\u0303\237\0\1\u036f\25\u0303\1\u0678\4\u0303\1\u0370\12\u0303"+
"\237\0\1\u036f\32\u0303\1\u0370\4\u0303\1\u0666\5\u0303\237\0"+
"\1\u036f\32\u0303\1\u0370\6\u0303\1\u0666\3\u0303\237\0\1\u036f"+
"\32\u0303\1\u0370\2\u0303\1\u0666\7\u0303\237\0\1\u036f\16\u0303"+
"\1\u0679\13\u0303\1\u0370\12\u0303\237\0\1\u036f\32\u0303\1\u0370"+
"\1\u067a\11\u0303\237\0\1\u036f\32\u0303\1\u0370\3\u0303\1\u067b"+
"\6\u0303\237\0\1\u036f\32\u0303\1\u0370\3\u0303\1\u03e5\6\u0303"+
"\237\0\1\u036f\24\u0303\1\u067c\5\u0303\1\u0370\12\u0303\237\0"+
"\1\u0109\1\u067d\31\270\1\u010a\12\270\237\0\1\u0121\7\324"+
"\1\u067e\22\324\1\164\12\324\1\0\3\161\1\0\2\161"+
"\1\162\3\161\3\0\1\161\4\0\2\161\213\0\4\u067f"+
"\2\0\1\u067f\15\0\1\u067f\6\0\12\u067f\1\u0619\237\0"+
"\4\u0680\2\0\1\u0680\15\0\1\u0680\6\0\12\u0680\1\u0681"+
"\236\0\1\u03c5\4\u0680\2\0\1\u0680\15\0\1\u0680\6\0"+
"\12\u0682\1\u0681\236\0\1\u03c5\4\u0680\2\0\1\u0680\15\0"+
"\1\u0680\6\0\12\u0683\1\u0681\236\0\1\u03c5\4\u0680\2\0"+
"\1\u0680\15\0\1\u0680\6\0\1\u0682\1\u0684\1\u0683\2\u0682"+
"\2\u0683\1\u0682\1\u0683\1\u0682\1\u0681\237\0\4\u0685\2\0"+
"\1\u0685\15\0\1\u0685\6\0\12\u0685\14\0\1\u035e\223\0"+
"\4\u0686\2\0\1\u0686\15\0\1\u0686\6\0\12\u0686\1\u0657"+
"\13\0\1\u035e\223\0\4\u0685\2\0\1\u0685\15\0\1\u0685"+
"\6\0\12\u0685\237\0\1\u03c5\4\u0686\2\0\1\u0686\15\0"+
"\1\u0686\6\0\12\u0687\1\u0657\13\0\1\u035e\222\0\1\u03c5"+
"\4\u0686\2\0\1\u0686\15\0\1\u0686\6\0\12\u0686\1\u0657"+
"\13\0\1\u035e\222\0\1\u03c5\4\u0686\2\0\1\u0686\15\0"+
"\1\u0686\6\0\2\u0687\1\u0686\2\u0687\2\u0686\1\u0687\1\u0686"+
"\1\u0687\1\u0657\13\0\1\u035e\270\0\1\u05df\13\0\1\u035e"+
"\270\0\1\u05e6\237\0\4\u0688\2\0\1\u0688\15\0\1\u0688"+
"\6\0\12\u0688\1\u065e\237\0\4\u0662\2\0\1\u0662\15\0"+
"\1\u0662\6\0\12\u0662\1\u0573\236\0\1\u036b\4\u0688\2\0"+
"\1\u0688\15\0\1\u0688\6\0\12\u0689\1\u065e\236\0\1\u036b"+
"\4\u0688\2\0\1\u0688\15\0\1\u0688\6\0\12\u0688\1\u065e"+
"\236\0\1\u036b\4\u0688\2\0\1\u0688\15\0\1\u0688\6\0"+
"\2\u0689\1\u0688\2\u0689\2\u0688\1\u0689\1\u0688\1\u0689\1\u065e"+
"\237\0\4\u068a\2\0\1\u068a\15\0\1\u068a\6\0\12\u068a"+
"\14\0\1\u0302\223\0\4\u068b\2\0\1\u068b\15\0\1\u068b"+
"\6\0\12\u068b\1\u0627\13\0\1\u0302\222\0\1\u036b\4\u068b"+
"\2\0\1\u068b\15\0\1\u068b\6\0\12\u068b\1\u0627\13\0"+
"\1\u0302\222\0\1\u036f\3\u0303\1\u068c\26\u0303\1\u0370\12\u0303"+
"\237\0\1\u036f\2\u0303\1\u044e\27\u0303\1\u0370\12\u0303\237\0"+
"\1\u036f\6\u0303\1\u0459\23\u0303\1\u0370\12\u0303\237\0\1\u036f"+
"\1\u0303\1\u0646\30\u0303\1\u0370\12\u0303\237\0\1\u036f\3\u0303"+
"\1\u068d\26\u0303\1\u0370\12\u0303\237\0\1\u036f\32\u0303\1\u0370"+
"\3\u0303\1\u068e\6\u0303\237\0\1\u036f\32\u0303\1\u0370\6\u0303"+
"\1\u068f\3\u0303\237\0\1\u036f\32\u0303\1\u0370\6\u0303\1\u0690"+
"\3\u0303\237\0\1\u036f\32\u0303\1\u0370\5\u0303\1\u0691\4\u0303"+
"\237\0\1\u036f\32\u0303\1\u0370\7\u0303\1\u0692\2\u0303\237\0"+
"\1\u036f\1\u0693\31\u0303\1\u0370\12\u0303\237\0\1\u036f\24\u0303"+
"\1\u0694\5\u0303\1\u0370\12\u0303\237\0\1\u036f\32\u0303\1\u0370"+
"\4\u0303\1\u0695\5\u0303\237\0\1\u036f\32\u0303\1\u0370\4\u0303"+
"\1\u0696\5\u0303\237\0\1\u036f\26\u0303\1\u0697\3\u0303\1\u0370"+
"\12\u0303\237\0\1\u036f\30\u0303\1\u0698\1\u0303\1\u0370\12\u0303"+
"\237\0\1\u036f\11\u0303\1\u04af\20\u0303\1\u0370\12\u0303\237\0"+
"\1\u036f\32\u0303\1\u0370\2\u0303\1\u0699\7\u0303\237\0\1\u036f"+
"\12\u0303\1\u069a\17\u0303\1\u0370\12\u0303\237\0\1\u036f\17\u0303"+
"\1\u0456\12\u0303\1\u0370\12\u0303\237\0\1\u036f\32\u0303\1\u0370"+
"\4\u0303\1\u069b\5\u0303\237\0\1\u036f\32\u0303\1\u0370\6\u0303"+
"\1\u04b2\3\u0303\237\0\1\u036f\30\u0303\1\u069c\1\u0303\1\u0370"+
"\12\u0303\237\0\1\u036f\30\u0303\1\u069d\1\u0303\1\u0370\12\u0303"+
"\237\0\1\u0109\32\270\1\u010a\5\270\1\u069e\4\270\237\0"+
"\1\u0121\1\324\1\u03a5\30\324\1\164\12\324\1\0\3\161"+
"\1\0\2\161\1\162\3\161\3\0\1\161\4\0\2\161"+
"\260\0\1\u0619\237\0\4\u069f\2\0\1\u069f\15\0\1\u069f"+
"\6\0\12\u069f\1\u0681\237\0\4\u0685\2\0\1\u0685\15\0"+
"\1\u0685\6\0\12\u0685\1\u05ac\236\0\1\u03c5\4\u069f\2\0"+
"\1\u069f\15\0\1\u069f\6\0\12\u06a0\1\u0681\236\0\1\u03c5"+
"\4\u069f\2\0\1\u069f\15\0\1\u069f\6\0\12\u069f\1\u0681"+
"\236\0\1\u03c5\4\u069f\2\0\1\u069f\15\0\1\u069f\6\0"+
"\2\u06a0\1\u069f\2\u06a0\2\u069f\1\u06a0\1\u069f\1\u06a0\1\u0681"+
"\237\0\4\u06a1\2\0\1\u06a1\15\0\1\u06a1\6\0\12\u06a1"+
"\14\0\1\u035e\223\0\4\u06a2\2\0\1\u06a2\15\0\1\u06a2"+
"\6\0\12\u06a2\1\u0657\13\0\1\u035e\222\0\1\u03c5\4\u06a2"+
"\2\0\1\u06a2\15\0\1\u06a2\6\0\12\u06a2\1\u0657\13\0"+
"\1\u035e\223\0\4\u06a3\2\0\1\u06a3\15\0\1\u06a3\6\0"+
"\12\u06a3\1\u065e\236\0\1\u036b\4\u06a3\2\0\1\u06a3\15\0"+
"\1\u06a3\6\0\12\u06a3\1\u065e\237\0\4\u06a4\2\0\1\u06a4"+
"\15\0\1\u06a4\6\0\12\u06a4\14\0\1\u0302\270\0\1\u0627"+
"\13\0\1\u0302\222\0\1\u036f\1\u06a5\31\u0303\1\u0370\12\u0303"+
"\237\0\1\u036f\32\u0303\1\u0370\11\u0303\1\u063c\237\0\1\u036f"+
"\1\u06a6\31\u0303\1\u0370\12\u0303\237\0\1\u036f\1\u06a7\31\u0303"+
"\1\u0370\12\u0303\237\0\1\u036f\7\u0303\1\u06a8\22\u0303\1\u0370"+
"\12\u0303\237\0\1\u036f\1\u06a9\31\u0303\1\u0370\12\u0303\237\0"+
"\1\u036f\1\u06aa\31\u0303\1\u0370\12\u0303\237\0\1\u036f\32\u0303"+
"\1\u0370\6\u0303\1\u06ab\3\u0303\237\0\1\u036f\6\u0303\1\u044e"+
"\23\u0303\1\u0370\12\u0303\237\0\1\u036f\25\u0303\1\u06ac\4\u0303"+
"\1\u0370\12\u0303\237\0\1\u036f\1\u06ad\31\u0303\1\u0370\12\u0303"+
"\237\0\1\u036f\32\u0303\1\u0370\6\u0303\1\u06ae\3\u0303\237\0"+
"\1\u036f\1\u06af\31\u0303\1\u0370\12\u0303\237\0\1\u036f\32\u0303"+
"\1\u0370\6\u0303\1\u04ae\3\u0303\237\0\1\u036f\12\u0303\1\u045f"+
"\17\u0303\1\u0370\12\u0303\237\0\1\u036f\1\u06b0\31\u0303\1\u0370"+
"\12\u0303\237\0\1\u036f\10\u0303\1\u06b1\21\u0303\1\u0370\12\u0303"+
"\237\0\1\u036f\31\u0303\1\u06b2\1\u0370\12\u0303\237\0\1\u0109"+
"\7\270\1\u06b3\22\270\1\u010a\12\270\240\0\4\u06b4\2\0"+
"\1\u06b4\15\0\1\u06b4\6\0\12\u06b4\1\u0681\236\0\1\u03c5"+
"\4\u06b4\2\0\1\u06b4\15\0\1\u06b4\6\0\12\u06b4\1\u0681"+
"\237\0\4\u06b5\2\0\1\u06b5\15\0\1\u06b5\6\0\12\u06b5"+
"\14\0\1\u035e\270\0\1\u0657\13\0\1\u035e\270\0\1\u065e"+
"\237\0\4\u0573\2\0\1\u0573\15\0\1\u0573\6\0\12\u0573"+
"\14\0\1\u0302\222\0\1\u036f\32\u0303\1\u0370\1\u06b6\11\u0303"+
"\237\0\1\u036f\2\u0303\1\u06b7\27\u0303\1\u0370\12\u0303\237\0"+
"\1\u036f\32\u0303\1\u0370\10\u0303\1\u062f\1\u0303\237\0\1\u036f"+
"\15\u0303\1\u03e5\14\u0303\1\u0370\12\u0303\237\0\1\u036f\23\u0303"+
"\1\u06b8\6\u0303\1\u0370\12\u0303\237\0\1\u036f\32\u0303\1\u0370"+
"\1\u0303\1\u06b9\10\u0303\237\0\1\u036f\32\u0303\1\u0370\3\u0303"+
"\1\u04b2\6\u0303\237\0\1\u036f\30\u0303\1\u06ba\1\u0303\1\u0370"+
"\12\u0303\237\0\1\u036f\32\u0303\1\u0370\1\u0303\1\u06bb\10\u0303"+
"\237\0\1\u036f\6\u0303\1\u06bc\23\u0303\1\u0370\12\u0303\237\0"+
"\1\u036f\32\u0303\1\u0370\5\u0303\1\u06bd\4\u0303\237\0\1\u036f"+
"\32\u0303\1\u0370\5\u0303\1\u06be\4\u0303\237\0\1\u036f\32\u0303"+
"\1\u0370\1\u0303\1\u03e5\10\u0303\237\0\1\u036f\13\u0303\1\u06bf"+
"\16\u0303\1\u0370\12\u0303\237\0\1\u0109\1\270\1\u046d\30\270"+
"\1\u010a\12\270\305\0\1\u0681\237\0\4\u05ac\2\0\1\u05ac"+
"\15\0\1\u05ac\6\0\12\u05ac\14\0\1\u035e\222\0\1\u036f"+
"\24\u0303\1\u06c0\5\u0303\1\u0370\12\u0303\237\0\1\u036f\32\u0303"+
"\1\u0370\10\u0303\1\u06c1\1\u0303\237\0\1\u036f\1\u0303\1\u0455"+
"\30\u0303\1\u0370\12\u0303\237\0\1\u036f\2\u0303\1\u06c2\27\u0303"+
"\1\u0370\12\u0303\237\0\1\u036f\3\u0303\1\u06c3\26\u0303\1\u0370"+
"\12\u0303\237\0\1\u036f\3\u0303\1\u06c4\26\u0303\1\u0370\12\u0303"+
"\237\0\1\u036f\32\u0303\1\u0370\1\u0303\1\u06c5\10\u0303\237\0"+
"\1\u036f\3\u0303\1\u06c6\26\u0303\1\u0370\12\u0303\237\0\1\u036f"+
"\1\u06c7\31\u0303\1\u0370\12\u0303\237\0\1\u036f\26\u0303\1\u06c8"+
"\3\u0303\1\u0370\12\u0303\237\0\1\u036f\32\u0303\1\u0370\11\u0303"+
"\1\u06c9\237\0\1\u036f\26\u0303\1\u044e\3\u0303\1\u0370\12\u0303"+
"\237\0\1\u036f\32\u0303\1\u0370\7\u0303\1\u06ca\2\u0303\237\0"+
"\1\u036f\32\u0303\1\u0370\11\u0303\1\u03e5\237\0\1\u036f\3\u0303"+
"\1\u06cb\26\u0303\1\u0370\12\u0303\237\0\1\u036f\32\u0303\1\u0370"+
"\4\u0303\1\u06cc\5\u0303\237\0\1\u036f\16\u0303\1\u06cd\13\u0303"+
"\1\u0370\12\u0303\237\0\1\u036f\26\u0303\1\u06ce\3\u0303\1\u0370"+
"\12\u0303\237\0\1\u036f\32\u0303\1\u0370\7\u0303\1\u0694\2\u0303"+
"\237\0\1\u036f\7\u0303\1\u06cf\22\u0303\1\u0370\12\u0303\237\0"+
"\1\u036f\1\u06d0\31\u0303\1\u0370\12\u0303\237\0\1\u036f\32\u0303"+
"\1\u0370\1\u062f\11\u0303\237\0\1\u036f\24\u0303\1\u06d1\5\u0303"+
"\1\u0370\12\u0303\237\0\1\u036f\1\u0303\1\u06d2\30\u0303\1\u0370"+
"\12\u0303\237\0\1\u036f\32\u0303\1\u0370\2\u0303\1\u0455\7\u0303"+
"\237\0\1\u036f\32\u0303\1\u0370\11\u0303\1\u06d3\237\0\1\u036f"+
"\4\u0303\1\u044e\25\u0303\1\u0370\12\u0303\237\0\1\u036f\24\u0303"+
"\1\u03e5\5\u0303\1\u0370\12\u0303\237\0\1\u036f\32\u0303\1\u0370"+
"\6\u0303\1\u03e5\3\u0303\237\0\1\u036f\1\u06d4\31\u0303\1\u0370"+
"\12\u0303\237\0\1\u036f\32\u0303\1\u0370\5\u0303\1\u06d5\4\u0303"+
"\237\0\1\u036f\7\u0303\1\u06d6\22\u0303\1\u0370\12\u0303\237\0"+
"\1\u036f\1\u0303\1\u0666\30\u0303\1\u0370\12\u0303\26\0";
private static int [] zzUnpackTrans() {
int [] result = new int[341204];
int offset = 0;
offset = zzUnpackTrans(ZZ_TRANS_PACKED_0, offset, result);
offset = zzUnpackTrans(ZZ_TRANS_PACKED_1, offset, result);
return result;
}
private static int zzUnpackTrans(String packed, int offset, int [] result) {
int i = 0; /* index in packed string */
int j = offset; /* index in unpacked array */
int l = packed.length();
while (i < l) {
int count = packed.charAt(i++);
int value = packed.charAt(i++);
value--;
do result[j++] = value; while (--count > 0);
}
return j;
}
/* error codes */
private static final int ZZ_UNKNOWN_ERROR = 0;
private static final int ZZ_NO_MATCH = 1;
private static final int ZZ_PUSHBACK_2BIG = 2;
/* error messages for the codes above */
private static final String ZZ_ERROR_MSG[] = {
"Unkown internal scanner error",
"Error: could not match input",
"Error: pushback value was too large"
};
/**
* ZZ_ATTRIBUTE[aState] contains the attributes of state <code>aState</code>
*/
private static final int [] ZZ_ATTRIBUTE = zzUnpackAttribute();
private static final String ZZ_ATTRIBUTE_PACKED_0 =
"\1\0\1\11\50\1\20\0\1\1\1\0\1\1\12\0"+
"\1\1\21\0\1\1\32\0\2\1\1\0\4\1\1\0"+
"\1\1\1\0\4\1\67\0\32\1\3\0\5\1\32\0"+
"\4\1\21\0\1\11\1\0\24\1\2\0\1\1\1\0"+
"\10\1\3\0\2\1\1\0\4\1\2\0\2\1\1\0"+
"\2\1\10\0\1\1\32\0\1\1\1\0\11\1\1\0"+
"\1\1\2\0\2\1\1\0\1\1\10\0\3\1\15\0"+
"\11\1\3\0\2\1\1\0\4\1\2\0\4\1\1\0"+
"\2\1\1\0\2\1\1\0\3\1\3\0\1\1\4\0"+
"\2\1\20\0\1\1\10\0\1\1\3\0\1\1\40\0"+
"\3\1\23\0\1\1\40\0\1\1\4\0\1\1\6\0"+
"\1\1\2\0\1\1\4\0\2\1\43\0\1\1\57\0"+
"\2\1\10\0\1\1\53\0\1\1\72\0\1\1\150\0"+
"\1\11\1\0\1\1\177\0\1\1\132\0\6\1\3\0"+
"\2\1\1\0\4\1\2\0\3\1\112\0\1\1\10\0"+
"\1\1\64\0\1\1\u01eb\0";
private static int [] zzUnpackAttribute() {
int [] result = new int[1750];
int offset = 0;
offset = zzUnpackAttribute(ZZ_ATTRIBUTE_PACKED_0, offset, result);
return result;
}
private static int zzUnpackAttribute(String packed, int offset, int [] result) {
int i = 0; /* index in packed string */
int j = offset; /* index in unpacked array */
int l = packed.length();
while (i < l) {
int count = packed.charAt(i++);
int value = packed.charAt(i++);
do result[j++] = value; while (--count > 0);
}
return j;
}
/** the input device */
private java.io.Reader zzReader;
/** the current state of the DFA */
private int zzState;
/** the current lexical state */
private int zzLexicalState = YYINITIAL;
/** this buffer contains the current text to be matched and is
the source of the yytext() string */
private char zzBuffer[] = new char[ZZ_BUFFERSIZE];
/** the textposition at the last accepting state */
private int zzMarkedPos;
/** the current text position in the buffer */
private int zzCurrentPos;
/** startRead marks the beginning of the yytext() string in the buffer */
private int zzStartRead;
/** endRead marks the last character in the buffer, that has been read
from input */
private int zzEndRead;
/** number of newlines encountered up to the start of the matched text */
private int yyline;
/** the number of characters up to the start of the matched text */
private int yychar;
/**
* the number of characters from the last newline up to the start of the
* matched text
*/
private int yycolumn;
/**
* zzAtBOL == true <=> the scanner is currently at the beginning of a line
*/
private boolean zzAtBOL = true;
/** zzAtEOF == true <=> the scanner is at the EOF */
private boolean zzAtEOF;
/** denotes if the user-EOF-code has already been executed */
private boolean zzEOFDone;
/* user code: */
/** Alphanumeric sequences */
public static final int WORD_TYPE = UAX29URLEmailTokenizer.ALPHANUM;
/** Numbers */
public static final int NUMERIC_TYPE = UAX29URLEmailTokenizer.NUM;
/**
* Chars in class \p{Line_Break = Complex_Context} are from South East Asian
* scripts (Thai, Lao, Myanmar, Khmer, etc.). Sequences of these are kept
* together as as a single token rather than broken up, because the logic
* required to break them at word boundaries is too complex for UAX#29.
* <p>
* See Unicode Line Breaking Algorithm: http://www.unicode.org/reports/tr14/#SA
*/
public static final int SOUTH_EAST_ASIAN_TYPE = UAX29URLEmailTokenizer.SOUTHEAST_ASIAN;
public static final int IDEOGRAPHIC_TYPE = UAX29URLEmailTokenizer.IDEOGRAPHIC;
public static final int HIRAGANA_TYPE = UAX29URLEmailTokenizer.HIRAGANA;
public static final int KATAKANA_TYPE = UAX29URLEmailTokenizer.KATAKANA;
public static final int HANGUL_TYPE = UAX29URLEmailTokenizer.HANGUL;
public static final int EMAIL_TYPE = UAX29URLEmailTokenizer.EMAIL;
public static final int URL_TYPE = UAX29URLEmailTokenizer.URL;
public final int yychar()
{
return yychar;
}
/**
* Fills CharTermAttribute with the current token text.
*/
public final void getText(CharTermAttribute t) {
t.copyBuffer(zzBuffer, zzStartRead, zzMarkedPos-zzStartRead);
}
/**
* Creates a new scanner
* There is also a java.io.InputStream version of this constructor.
*
* @param in the java.io.Reader to read input from.
*/
public UAX29URLEmailTokenizerImpl(java.io.Reader in) {
this.zzReader = in;
}
/**
* Unpacks the compressed character translation table.
*
* @param packed the packed character translation table
* @return the unpacked character translation table
*/
private static char [] zzUnpackCMap(String packed) {
char [] map = new char[0x10000];
int i = 0; /* index in packed string */
int j = 0; /* index in unpacked array */
while (i < 3010) {
int count = packed.charAt(i++);
char value = packed.charAt(i++);
do map[j++] = value; while (--count > 0);
}
return map;
}
/**
* Refills the input buffer.
*
* @return <code>false</code>, iff there was new input.
*
* @exception java.io.IOException if any I/O-Error occurs
*/
private boolean zzRefill() throws java.io.IOException {
/* first: make room (if you can) */
if (zzStartRead > 0) {
System.arraycopy(zzBuffer, zzStartRead,
zzBuffer, 0,
zzEndRead-zzStartRead);
/* translate stored positions */
zzEndRead-= zzStartRead;
zzCurrentPos-= zzStartRead;
zzMarkedPos-= zzStartRead;
zzStartRead = 0;
}
/* is the buffer big enough? */
if (zzCurrentPos >= zzBuffer.length) {
/* if not: blow it up */
char newBuffer[] = new char[zzCurrentPos*2];
System.arraycopy(zzBuffer, 0, newBuffer, 0, zzBuffer.length);
zzBuffer = newBuffer;
}
/* finally: fill the buffer with new input */
int numRead = zzReader.read(zzBuffer, zzEndRead,
zzBuffer.length-zzEndRead);
if (numRead > 0) {
zzEndRead+= numRead;
return false;
}
// unlikely but not impossible: read 0 characters, but not at end of stream
if (numRead == 0) {
int c = zzReader.read();
if (c == -1) {
return true;
} else {
zzBuffer[zzEndRead++] = (char) c;
return false;
}
}
// numRead < 0
return true;
}
/**
* Closes the input stream.
*/
public final void yyclose() throws java.io.IOException {
zzAtEOF = true; /* indicate end of file */
zzEndRead = zzStartRead; /* invalidate buffer */
if (zzReader != null)
zzReader.close();
}
/**
* Resets the scanner to read from a new input stream.
* Does not close the old reader.
*
* All internal variables are reset, the old input stream
* <b>cannot</b> be reused (internal buffer is discarded and lost).
* Lexical state is set to <tt>ZZ_INITIAL</tt>.
*
* Internal scan buffer is resized down to its initial length, if it has grown.
*
* @param reader the new input stream
*/
public final void yyreset(java.io.Reader reader) {
zzReader = reader;
zzAtBOL = true;
zzAtEOF = false;
zzEOFDone = false;
zzEndRead = zzStartRead = 0;
zzCurrentPos = zzMarkedPos = 0;
yyline = yychar = yycolumn = 0;
zzLexicalState = YYINITIAL;
if (zzBuffer.length > ZZ_BUFFERSIZE)
zzBuffer = new char[ZZ_BUFFERSIZE];
}
/**
* Returns the current lexical state.
*/
public final int yystate() {
return zzLexicalState;
}
/**
* Enters a new lexical state
*
* @param newState the new lexical state
*/
public final void yybegin(int newState) {
zzLexicalState = newState;
}
/**
* Returns the text matched by the current regular expression.
*/
public final String yytext() {
return new String( zzBuffer, zzStartRead, zzMarkedPos-zzStartRead );
}
/**
* Returns the character at position <tt>pos</tt> from the
* matched text.
*
* It is equivalent to yytext().charAt(pos), but faster
*
* @param pos the position of the character to fetch.
* A value from 0 to yylength()-1.
*
* @return the character at position pos
*/
public final char yycharat(int pos) {
return zzBuffer[zzStartRead+pos];
}
/**
* Returns the length of the matched text region.
*/
public final int yylength() {
return zzMarkedPos-zzStartRead;
}
/**
* Reports an error that occured while scanning.
*
* In a wellformed scanner (no or only correct usage of
* yypushback(int) and a match-all fallback rule) this method
* will only be called with things that "Can't Possibly Happen".
* If this method is called, something is seriously wrong
* (e.g. a JFlex bug producing a faulty scanner etc.).
*
* Usual syntax/scanner level error handling should be done
* in error fallback rules.
*
* @param errorCode the code of the errormessage to display
*/
private void zzScanError(int errorCode) {
String message;
try {
message = ZZ_ERROR_MSG[errorCode];
}
catch (ArrayIndexOutOfBoundsException e) {
message = ZZ_ERROR_MSG[ZZ_UNKNOWN_ERROR];
}
throw new Error(message);
}
/**
* Pushes the specified amount of characters back into the input stream.
*
* They will be read again by then next call of the scanning method
*
* @param number the number of characters to be read again.
* This number must not be greater than yylength()!
*/
public void yypushback(int number) {
if ( number > yylength() )
zzScanError(ZZ_PUSHBACK_2BIG);
zzMarkedPos -= number;
}
/**
* Resumes scanning until the next regular expression is matched,
* the end of input is encountered or an I/O-Error occurs.
*
* @return the next token
* @exception java.io.IOException if any I/O-Error occurs
*/
public int getNextToken() throws java.io.IOException {
int zzInput;
int zzAction;
// cached fields:
int zzCurrentPosL;
int zzMarkedPosL;
int zzEndReadL = zzEndRead;
char [] zzBufferL = zzBuffer;
char [] zzCMapL = ZZ_CMAP;
int [] zzTransL = ZZ_TRANS;
int [] zzRowMapL = ZZ_ROWMAP;
int [] zzAttrL = ZZ_ATTRIBUTE;
while (true) {
zzMarkedPosL = zzMarkedPos;
yychar+= zzMarkedPosL-zzStartRead;
zzAction = -1;
zzCurrentPosL = zzCurrentPos = zzStartRead = zzMarkedPosL;
zzState = ZZ_LEXSTATE[zzLexicalState];
// set up zzAction for empty match case:
int zzAttributes = zzAttrL[zzState];
if ( (zzAttributes & 1) == 1 ) {
zzAction = zzState;
}
zzForAction: {
while (true) {
if (zzCurrentPosL < zzEndReadL)
zzInput = zzBufferL[zzCurrentPosL++];
else if (zzAtEOF) {
zzInput = YYEOF;
break zzForAction;
}
else {
// store back cached positions
zzCurrentPos = zzCurrentPosL;
zzMarkedPos = zzMarkedPosL;
boolean eof = zzRefill();
// get translated positions and possibly new buffer
zzCurrentPosL = zzCurrentPos;
zzMarkedPosL = zzMarkedPos;
zzBufferL = zzBuffer;
zzEndReadL = zzEndRead;
if (eof) {
zzInput = YYEOF;
break zzForAction;
}
else {
zzInput = zzBufferL[zzCurrentPosL++];
}
}
int zzNext = zzTransL[ zzRowMapL[zzState] + zzCMapL[zzInput] ];
if (zzNext == -1) break zzForAction;
zzState = zzNext;
zzAttributes = zzAttrL[zzState];
if ( (zzAttributes & 1) == 1 ) {
zzAction = zzState;
zzMarkedPosL = zzCurrentPosL;
if ( (zzAttributes & 8) == 8 ) break zzForAction;
}
}
}
// store back cached position
zzMarkedPos = zzMarkedPosL;
switch (zzAction < 0 ? zzAction : ZZ_ACTION[zzAction]) {
case 1:
{ /* Break so we don't hit fall-through warning: */ break;/* Not numeric, word, ideographic, hiragana, or SE Asian -- ignore it. */
}
case 12: break;
case 2:
{ return WORD_TYPE;
}
case 13: break;
case 3:
{ return NUMERIC_TYPE;
}
case 14: break;
case 4:
{ return KATAKANA_TYPE;
}
case 15: break;
case 5:
{ return SOUTH_EAST_ASIAN_TYPE;
}
case 16: break;
case 6:
{ return IDEOGRAPHIC_TYPE;
}
case 17: break;
case 7:
{ return HIRAGANA_TYPE;
}
case 18: break;
case 8:
{ return HANGUL_TYPE;
}
case 19: break;
case 9:
{ return EMAIL_TYPE;
}
case 20: break;
case 10:
{ return URL_TYPE;
}
case 21: break;
case 11:
// lookahead expression with fixed base length
zzMarkedPos = zzStartRead + 6;
{ return WORD_TYPE;
}
case 22: break;
default:
if (zzInput == YYEOF && zzStartRead == zzCurrentPos) {
zzAtEOF = true;
{
return StandardTokenizerInterface.YYEOF;
}
}
else {
zzScanError(ZZ_NO_MATCH);
}
}
}
}
}
| apache-2.0 |
soundcloud/zipkin | benchmarks/src/main/java/zipkin2/internal/BufferBenchmarks.java | 3263 | /**
* Copyright 2015-2018 The OpenZipkin Authors
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
* in compliance with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software distributed under the License
* is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
* or implied. See the License for the specific language governing permissions and limitations under
* the License.
*/
package zipkin2.internal;
import java.nio.charset.Charset;
import java.util.concurrent.TimeUnit;
import org.openjdk.jmh.annotations.Benchmark;
import org.openjdk.jmh.annotations.BenchmarkMode;
import org.openjdk.jmh.annotations.Fork;
import org.openjdk.jmh.annotations.Measurement;
import org.openjdk.jmh.annotations.Mode;
import org.openjdk.jmh.annotations.OutputTimeUnit;
import org.openjdk.jmh.annotations.Scope;
import org.openjdk.jmh.annotations.State;
import org.openjdk.jmh.annotations.Threads;
import org.openjdk.jmh.annotations.Warmup;
import org.openjdk.jmh.runner.Runner;
import org.openjdk.jmh.runner.RunnerException;
import org.openjdk.jmh.runner.options.Options;
import org.openjdk.jmh.runner.options.OptionsBuilder;
@Measurement(iterations = 5, time = 1)
@Warmup(iterations = 10, time = 1)
@Fork(3)
@BenchmarkMode(Mode.AverageTime)
@OutputTimeUnit(TimeUnit.MICROSECONDS)
@State(Scope.Thread)
@Threads(1)
public class BufferBenchmarks {
static final Charset UTF_8 = Charset.forName("UTF-8");
// Order id = d07c4daa-0fa9-4c03-90b1-e06c4edae250 doesn't exist
static final String CHINESE_UTF8 = "订单d07c4daa-0fa9-4c03-90b1-e06c4edae250不存在";
static final int CHINESE_UTF8_SIZE = CHINESE_UTF8.getBytes(UTF_8).length;
/* length-prefixing a 1 KiB span */
static final int TEST_INT = 1024;
/* epoch micros timestamp */
static final long TEST_LONG = 1472470996199000L;
Buffer buffer = new Buffer(8);
@Benchmark public int utf8SizeInBytes_chinese() {
return Buffer.utf8SizeInBytes(CHINESE_UTF8);
}
@Benchmark public byte[] writeUtf8_chinese() {
Buffer bufferUtf8 = new Buffer(CHINESE_UTF8_SIZE);
bufferUtf8.writeUtf8(CHINESE_UTF8);
return bufferUtf8.toByteArray();
}
@Benchmark public byte[] writeUtf8_chinese_jdk() {
return CHINESE_UTF8.getBytes(UTF_8);
}
@Benchmark public int varIntSizeInBytes_32() {
return Buffer.varintSizeInBytes(TEST_INT);
}
@Benchmark public int varIntSizeInBytes_64() {
return Buffer.varintSizeInBytes(TEST_LONG);
}
@Benchmark public int writeVarint_32() {
buffer.pos = 0;
buffer.writeVarint(TEST_INT);
return buffer.pos;
}
@Benchmark public int writeVarint_64() {
buffer.pos = 0;
buffer.writeVarint(TEST_LONG);
return buffer.pos;
}
@Benchmark public int writeLongLe() {
buffer.pos = 0;
buffer.writeLongLe(TEST_LONG);
return buffer.pos;
}
// Convenience main entry-point
public static void main(String[] args) throws RunnerException {
Options opt = new OptionsBuilder()
.include(".*" + BufferBenchmarks.class.getSimpleName() + ".*")
.build();
new Runner(opt).run();
}
}
| apache-2.0 |
arturgaleno/SplashPage | src/main/java/br/com/artur/exception/VelocityException.java | 610 | package br.com.artur.exception;
public class VelocityException extends Exception {
/**
*
*/
private static final long serialVersionUID = -7079226116393711309L;
public VelocityException() {
}
public VelocityException(String message) {
super(message);
}
public VelocityException(String message, Throwable cause) {
super(message, cause);
}
public VelocityException(Throwable cause) {
super(cause);
}
public VelocityException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
super(message, cause, enableSuppression, writableStackTrace);
}
}
| apache-2.0 |
alecananian/EarthViewLiveWallpaper | app/src/main/java/com/alecananian/earthviewlivewallpaper/events/EarthViewEvent.java | 232 | package com.alecananian.earthviewlivewallpaper.events;
public class EarthViewEvent {
public EarthViewEventType eventType;
public EarthViewEvent(EarthViewEventType eventType) {
this.eventType = eventType;
}
}
| apache-2.0 |
erick-couto/occult-flash-tag | occult-flash-tag/app/src/main/java/br/eti/erickcouto/occultflashtag/Mark.java | 1503 | package br.eti.erickcouto.occultflashtag;
/*
* Copyright (C) 2015 Erick Couto
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import java.util.Date;
import java.util.SortedSet;
import java.util.TreeSet;
public class Mark {
private Long id;
private Long eventId;
private Long elapsedTime;
private Long auditedTime;
private Integer bootCounter;
public Mark(Long id) {
this.id = id;
}
public Long getEventId() {
return eventId;
}
public void setEventId(Long eventId) {
this.eventId = eventId;
}
public Long getElapsedTime() {
return elapsedTime;
}
public void setElapsedTime(Long elapsedTime) {
this.elapsedTime = elapsedTime;
}
public Long getAuditedTime() {
return auditedTime;
}
public void setAuditedTime(Long auditedTime) {
this.auditedTime = auditedTime;
}
public Integer getBootCounter() { return bootCounter; }
public void setBootCounter(Integer bootCounter) { this.bootCounter = bootCounter; }
public Long getId() { return id; }
} | apache-2.0 |
lakshani/carbon-mobile-appmgt | components/org.wso2.carbon.appmgt.impl/src/main/java/org/wso2/carbon/appmgt/impl/token/DefaultClaimsRetriever.java | 5394 | /*
*Copyright (c) 2005-2012, WSO2 Inc. (http://www.wso2.org) All Rights Reserved.
*
*WSO2 Inc. licenses this file to you under the Apache License,
*Version 2.0 (the "License"); you may not use this file except
*in compliance with the License.
*You may obtain a copy of the License at
*
*http://www.apache.org/licenses/LICENSE-2.0
*
*Unless required by applicable law or agreed to in writing,
*software distributed under the License is distributed on an
*"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
*KIND, either express or implied. See the License for the
*specific language governing permissions and limitations
*under the License.
*/
package org.wso2.carbon.appmgt.impl.token;
import org.wso2.carbon.appmgt.api.AppManagementException;
import org.wso2.carbon.appmgt.impl.service.ServiceReferenceHolder;
import org.wso2.carbon.appmgt.impl.utils.AppManagerUtil;
import org.wso2.carbon.appmgt.impl.utils.ClaimCacheKey;
import org.wso2.carbon.appmgt.impl.utils.UserClaims;
import org.wso2.carbon.base.MultitenantConstants;
import org.wso2.carbon.user.api.ClaimMapping;
import org.wso2.carbon.user.api.ClaimManager;
import org.wso2.carbon.user.api.UserStoreException;
import org.wso2.carbon.user.api.UserStoreManager;
import org.wso2.carbon.utils.multitenancy.MultitenantUtils;
import javax.cache.Cache;
import javax.cache.Caching;
import java.util.SortedMap;
import java.util.TreeMap;
/**
* This class is the default implementation of ClaimsRetriever.
* It reads user claim values from the default carbon user store.
* The user claims are encoded to the JWT in the natural order of the claimURIs.
* To engage this class its fully qualified class name should be mentioned under
* app-manager.xml -> AppConsumerAuthConfiguration -> ClaimsRetrieverImplClass
*/
public class DefaultClaimsRetriever implements ClaimsRetriever {
//TODO refactor caching implementation
private String dialectURI = ClaimsRetriever.DEFAULT_DIALECT_URI;
/**
* Reads the DialectURI of the ClaimURIs to be retrieved from app-manager.xml ->
* AppConsumerAuthConfiguration -> ConsumerDialectURI.
* If not configured it uses http://wso2.org/claims as default
*/
public void init() {
dialectURI = ServiceReferenceHolder.getInstance().getAPIManagerConfigurationService().
getAPIManagerConfiguration().getFirstProperty(CONSUMER_DIALECT_URI);
if (dialectURI == null) {
dialectURI = ClaimsRetriever.DEFAULT_DIALECT_URI;
}
}
protected Cache getClaimsLocalCache() {
return Caching.getCacheManager("API_MANAGER_CACHE").getCache("claimsLocalCache");
}
public SortedMap<String, String> getClaims(String endUserName) throws AppManagementException {
SortedMap<String, String> claimValues = null;
try {
int tenantId = AppManagerUtil.getTenantId(endUserName);
//check in local cache
String key = endUserName + ":" + tenantId;
ClaimCacheKey cacheKey = new ClaimCacheKey(key);
//Object result = claimsLocalCache.getValueFromCache(cacheKey);
Object result = getClaimsLocalCache().get(cacheKey);
if (result != null) {
claimValues = ((UserClaims) result).getClaimValues();
} else {
ClaimManager claimManager = ServiceReferenceHolder.getInstance().getRealmService().
getTenantUserRealm(tenantId).getClaimManager();
//Claim[] claims = claimManager.getAllClaims(dialectURI);
ClaimMapping[] claims = claimManager.getAllClaimMappings(dialectURI);
String[] claimURIs = claimMappingtoClaimURIString(claims);
UserStoreManager userStoreManager = ServiceReferenceHolder.getInstance().getRealmService().
getTenantUserRealm(tenantId).getUserStoreManager();
String tenantAwareUserName = endUserName;
if(MultitenantConstants.SUPER_TENANT_ID != tenantId){
tenantAwareUserName = MultitenantUtils.getTenantAwareUsername(endUserName);
}
if(userStoreManager.isExistingUser(tenantAwareUserName)){
claimValues = new TreeMap(userStoreManager.getUserClaimValues(tenantAwareUserName, claimURIs, null));
UserClaims userClaims = new UserClaims(claimValues);
//add to cache
getClaimsLocalCache().put(cacheKey, userClaims);
}
}
} catch (UserStoreException e) {
throw new AppManagementException("Error while retrieving user claim values from "
+ "user store");
}
return claimValues;
}
/**
* Always returns the ConsumerDialectURI configured in app-manager.xml
*/
public String getDialectURI(String endUserName) {
return dialectURI;
}
/**
* Helper method to convert array of <code>Claim</code> object to
* array of <code>String</code> objects corresponding to the ClaimURI values.
*/
private String[] claimMappingtoClaimURIString(ClaimMapping[] claims) {
String[] temp = new String[claims.length];
for (int i = 0; i < claims.length; i++) {
temp[i] = claims[i].getClaim().getClaimUri().toString();
}
return temp;
}
}
| apache-2.0 |
paplorinc/intellij-community | plugins/InspectionGadgets/testsrc/com/siyeh/ig/classlayout/UtilityClassCanBeEnumInspectionTest.java | 1394 | // Copyright 2000-2018 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file.
package com.siyeh.ig.classlayout;
import com.intellij.codeInspection.InspectionProfileEntry;
import com.siyeh.ig.LightInspectionTestCase;
import org.jetbrains.annotations.Nullable;
public class UtilityClassCanBeEnumInspectionTest extends LightInspectionTestCase {
public void testUtilityClassCanBeEnum() {
doTest();
}
public void testQuickfix() {
doTest("final class /*Utility class 'Util' can be 'enum'*//*_*/Util/**/ {\n" +
" public static void driveCar() {}\n" +
"}");
checkQuickFix("Convert to 'enum'",
"enum Util {\n" +
" ;\n" +
"\n" +
" public static void driveCar() {}\n" +
"}");
}
public void testUtilityClassInstantiation() {
doTest("class SmartStepClass {\n" +
" public static final int a = Integer.valueOf(1);\n" +
" public static final String b = String.valueOf(2);\n" +
"\n" +
" public static void main(String[] args) {\n" +
" new SmartStepClass();\n" +
" }\n" +
"}");
}
@Nullable
@Override
protected InspectionProfileEntry getInspection() {
return new UtilityClassCanBeEnumInspection();
}
} | apache-2.0 |
scgray/jsqsh | jsqsh-core/src/main/java/org/sqsh/DataFormatter.java | 14248 | /*
* Copyright 2007-2022 Scott C. Gray
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.sqsh;
import org.sqsh.format.ArrayFormatter;
import org.sqsh.format.BitFormatter;
import org.sqsh.format.BlobFormatter;
import org.sqsh.format.BooleanFormatter;
import org.sqsh.format.ByteFormatter;
import org.sqsh.format.ClobFormatter;
import org.sqsh.format.DateFormatter;
import org.sqsh.format.NumberFormatter;
import org.sqsh.format.Unformatter;
import org.sqsh.format.UnsupportedTypeFormatter;
import org.sqsh.format.XMLFormatter;
import java.text.DateFormat;
import java.text.SimpleDateFormat;
import java.util.Calendar;
import java.util.Date;
/**
* Helper class that is capable of formatting the value of a column into a string according to sqsh configuration
* variables.
*/
public class DataFormatter {
private String nullFormat = "[NULL]";
private String dateFormat = "yyyy-MM-dd";
private int maxDateWidth = -1;
private String datetimeFormat = "yyyy-MM-dd HH:mm:ss.SSS";
private int maxDatetimeWidth = -1;
private String timeFormat = "HH:mm:ss";
private int maxTimeWidth = -1;
;
private boolean byteStringFormat = false;
/**
* Number of decimal places of precision to use when displaying floating point values (except for BigDecimal).
*/
private int scale = 5;
/**
* Number of digits used when displaying floating points values (except for BigDecimal);
*/
private int precision = 20;
/* ====================================================================
* NULL
* ==================================================================== */
/**
* Sets the string that will be used to represent a null value.
*
* @param str the string that will be used to represent a null value.
*/
public void setNull(String str) {
this.nullFormat = str;
}
/**
* Returns the representation of null.
*
* @return the representation of null.
*/
public String getNull() {
return nullFormat;
}
/**
* Returns the number of characters required to display a NULL.
*
* @return the number of characters required to display a NULL.
*/
public int getNullWidth() {
return nullFormat.length();
}
/* ====================================================================
* DATE
* ==================================================================== */
private DateFormatter dateFormatter = null;
/**
* @return the dateFormat
*/
public String getDateFormat() {
return dateFormat;
}
/**
* @param dateFormat the dateFormat to set
*/
public void setDateFormat(String dateFormat) {
this.dateFormat = dateFormat;
this.dateFormatter = null;
maxDateWidth = -1;
}
public Formatter getDateFormatter() {
if (maxDateWidth == -1) {
maxDateWidth = getMaxDateWidth(dateFormat);
}
if (dateFormatter == null) {
dateFormatter = new DateFormatter(dateFormat, maxDateWidth);
}
return dateFormatter;
}
/* ====================================================================
* TIME
* ==================================================================== */
/**
* @return the timeFormat
*/
public String getTimeFormat() {
return timeFormat;
}
/**
* @param timeFormat the time format to set
*/
public void setTimeFormat(String timeFormat) {
this.timeFormat = timeFormat;
maxTimeWidth = -1;
}
public Formatter getTimeFormatter() {
if (maxTimeWidth == -1) {
maxTimeWidth = getMaxDateWidth(timeFormat);
}
return new DateFormatter(timeFormat, maxTimeWidth);
}
/* ====================================================================
* DATETIME
* ==================================================================== */
private DateFormatter datetimeFormatter = null;
/**
* @return the dateFormat
*/
public String getDatetimeFormat() {
return datetimeFormat;
}
/**
* @param datetimeFormat the format string to use for datetime
*/
public void setDatetimeFormat(String datetimeFormat) {
this.datetimeFormat = datetimeFormat;
this.datetimeFormatter = null;
maxDatetimeWidth = -1;
}
public Formatter getDatetimeFormatter() {
if (maxDatetimeWidth == -1) {
maxDatetimeWidth = getMaxDateWidth(datetimeFormat);
}
if (datetimeFormatter == null) {
this.datetimeFormatter = new DateFormatter(datetimeFormat, maxDatetimeWidth);
}
return datetimeFormatter;
}
/* ====================================================================
* NUMBERS (REAL, FLOAT, ETC.)
* ==================================================================== */
/**
* Sets the number of decimal digits that will be displayed when floating point values are displayed.
*
* @param scale The scale to display.
*/
public void setScale(int scale) {
this.scale = scale;
}
/**
* Returns the number of decimal digits that will be displayed when floating point values are displayed.
*
* @return The scale.
*/
public int getScale() {
return scale;
}
/**
* Sets the number of digits (in total) to display when showing floating point values (that aren't exact).
*
* @param precision The precision to set.
*/
public void setPrecision(int precision) {
this.precision = precision;
}
/**
* Retrieves the precision to used when displaying floating point values.
*
* @return The precision
*/
public int getPrecision() {
return precision;
}
/**
* Returns a formatter to format Doubles.
*
* @return a new formatter.
*/
public Formatter getDoubleFormatter() {
return new NumberFormatter(precision, scale);
}
/**
* Returns a formatter to format floats.
*
* @return a new formatter.
*/
public Formatter getFloatFormatter() {
return new NumberFormatter(precision, scale);
}
/**
* Returns a formatter to format a bit
*
* @return a new formatter.
*/
public Formatter getBitFormatter() {
return new BitFormatter();
}
/**
* Returns a formatter to format a tinyint
*
* @return a new formatter.
*/
public Formatter getTinyIntFormatter() {
return new NumberFormatter(3, 0);
}
/**
* Returns a formatter to format a short
*
* @return a new formatter.
*/
public Formatter getShortFormatter() {
return new NumberFormatter(6, 0);
}
/**
* Returns a formatter to format integers.
*
* @return a new formatter.
*/
public Formatter getIntFormatter() {
return new NumberFormatter(11, 0);
}
/**
* Returns a formatter to format longs.
*
* @return a new formatter.
*/
public Formatter getLongFormatter() {
return new NumberFormatter(21, 0);
}
/**
* Creates a formatter for BigInt.
*
* @param precision The maximum precision of the integer.
* @return The formatter.
*/
public Formatter getBigIntFormatter(int precision) {
return new NumberFormatter(precision, 0);
}
/**
* Creates a formatter for BigDecimal.
*
* @param precision The maximum precision of the bigdecimal.
* @return The formatter.
*/
public Formatter getBigDecimalFormatter(int precision, int scale) {
// This is to deal with Oracle's strange combinations of precision and scale (ugh). It involves some documentation:
// http://download.oracle.com/docs/cd/B28359_01/server.111/b28286/sql_elements001.htm#sthref83
// as well as some trail and error.
//
// PRECISION=0, SCALE=-127
// This appears to be a raw NUMERIC which is effectively just a
// floating point value. In this case we treat it like a double.
if (precision == 0 && scale == -127) {
precision = this.precision;
scale = this.scale;
} else if (scale <= 0) {
// In Oracle if the scale < 0 it indicates which digits before the decimal are significant.
// This means that we will never have anything after the decimal.
scale = 0;
}
return new NumberFormatter(precision, scale);
}
/* ====================================================================
* STRING
* ==================================================================== */
/**
* Returns a formatter for formatting strings.
*
* @param maxWidth The maximum allowable width of the string.
*/
public Formatter getStringFormatter(int maxWidth) {
return new Unformatter(maxWidth);
}
/**
* Returns a formatter for formatting strings.
*/
public Formatter getClobFormatter() {
return new ClobFormatter();
}
/**
* Returns a formatter for formatting XML.
*
* @return a new formatter.
*/
public Formatter getXMLFormatter() {
return new XMLFormatter();
}
/* ====================================================================
* BOOLEAN
* ==================================================================== */
/**
* Returns a formatter for formatting strings.
*
* @return The formatter.
*/
public Formatter getBooleanFormatter() {
return new BooleanFormatter();
}
/**
* Returns a formatter for formatting blobs.
*
* @return The formatter.
*/
public Formatter getBlobFormatter() {
return new BlobFormatter();
}
/* ====================================================================
* BYTE(S)
* ==================================================================== */
/**
* Sets whether or not byte strings are rendered in raw hex format (e.g. 0xabcd) or in string format (e.g.
* X'ABCD').
*/
public void setByteStringFormat(boolean useStringFormat) {
byteStringFormat = useStringFormat;
}
/**
* @return whether or not byte arrays are displayed in raw hex or hex string formats.
*/
public boolean getByteStringFormat() {
return byteStringFormat;
}
/**
* Returns a formatter for formatting bytes.
*
* @param maxBytes The maximum number of bytes that could be displayed.
* @return The formatter.
*/
public Formatter getByteFormatter(int maxBytes) {
return new ByteFormatter(maxBytes, byteStringFormat);
}
/* ====================================================================
* ARRAY FORMATTER
* ==================================================================== */
/**
* Creates an array formatter
*
* @param renderer The SQLRenderer that will be used to grab formatting information for formatting the
* elements of the array
* @return The new formatter
*/
public Formatter getArrayFormatter(SQLRenderer renderer) {
return new ArrayFormatter(renderer, getNull());
}
/* ====================================================================
* UNSUPPORTED TYPES
* ==================================================================== */
private static UnsupportedTypeFormatter unsupportedFormatter = new UnsupportedTypeFormatter();
/**
* @return A formatter that attempts to render an unsupported type by simply requesting the value to convert itself
* to a string.
*/
public Formatter getUnsupportedTypeFormatter() {
return unsupportedFormatter;
}
/* ====================================================================
* HELPERS
* ==================================================================== */
/**
* Used internally to determine the maximum amount of space required by a specific date/time/datetime format.
*
* @param format The format to test.
* @return The maximum width.
*/
private int getMaxDateWidth(String format) {
Calendar cal = Calendar.getInstance();
int maxWidth = 0;
// The following will attempt to cover all of the months in the year (on the assumption the current formatter
// includes the month name) as well as all of the days of the week and double-digit day of month numbers.
for (int month = Calendar.JANUARY; month <= Calendar.DECEMBER; month++) {
for (int dayOfMonth = 20; dayOfMonth < 28; dayOfMonth++) {
cal.set(2007, month, dayOfMonth, 23, 59, 59);
int width = formatDate(format, cal.getTime()).length();
if (width > maxWidth) {
maxWidth = width;
}
}
}
return maxWidth;
}
private String formatDate(String format, Date date) {
DateFormat fmt;
if (format == null || format.length() == 0) {
fmt = DateFormat.getInstance();
} else {
fmt = new SimpleDateFormat(format);
}
return fmt.format(date);
}
}
| apache-2.0 |
davidmoten/tile-joiner | src/main/java/com/github/davidmoten/tj/ImageCreatorMain.java | 861 | package com.github.davidmoten.tj;
public final class ImageCreatorMain {
public static void main(String[] args) {
System.setProperty("https.proxyHost", "proxy.amsa.gov.au");
System.setProperty("https.proxyPort", "8080");
final double topLat = Double.parseDouble(args[0]);
final double leftLon = Double.parseDouble(args[1]);
final double rightLon = Double.parseDouble(args[2]);
final int width = Integer.parseInt(args[3]);
final int height = Integer.parseInt(args[4]);
final String filename = args[5];
final String imageFormat = args[6];
final String service = args[7];
final String mapType = args[8];
ImageCreator.builder().topLat(topLat).leftLon(leftLon)
.rightLon(rightLon).width(width).height(height)
.outputFile(filename).imageFormat(imageFormat).mapType(mapType)
.service(MapService.valueOf(service)).create();
}
}
| apache-2.0 |
zhiaixinyang/LightThink | greatbook/src/main/java/com/example/greatbook/base/BaseFragment.java | 1231 | package com.example.greatbook.base;
import android.os.Bundle;
import android.support.annotation.Nullable;
import android.support.v4.app.Fragment;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import butterknife.ButterKnife;
import butterknife.Unbinder;
/**
* Created by MDove on 2017/10/2.
*/
public abstract class BaseFragment extends Fragment {
private Unbinder mBinder;
@Nullable
@Override
public View onCreateView(LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState) {
if (getLayoutId() != 0) {
View view = inflater.inflate(getLayoutId(), null);
mBinder = ButterKnife.bind(this, view);
return view;
} else {
return super.onCreateView(inflater, container, savedInstanceState);
}
}
@Override
public void onViewCreated(View view, @Nullable Bundle savedInstanceState) {
super.onViewCreated(view, savedInstanceState);
initEvent();
}
@Override
public void onDestroy() {
super.onDestroy();
mBinder.unbind();
}
public abstract int getLayoutId();
public abstract void initEvent();
}
| apache-2.0 |
cloudscode/jibu | jibu-core/src/main/java/org/gaixie/jibu/security/service/UserService.java | 3745 | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.gaixie.jibu.security.service;
import java.util.List;
import org.gaixie.jibu.JibuException;
import org.gaixie.jibu.security.model.Criteria;
import org.gaixie.jibu.security.model.Authority;
import org.gaixie.jibu.security.model.Role;
import org.gaixie.jibu.security.model.User;
/**
* User 服务接口。
* <p>
*/
public interface UserService {
/**
* 通过 User Id 得到 User。
*
* @param id User Id
* @return 一个 User,如果没有对应的数据,返回 null。
*/
public User get(int id);
/**
* 通过 username 得到 User。
* <p>
*
* @param username User username。
* @return 一个 User,如果没有对应的数据,返回 null。
*/
public User get(String username) ;
/**
* 增加一个新 User,password 不能为空,且是没有 hash 过的。
* <p>
*
* @param user User
* @exception JibuException 新增失败时抛出。
*/
public void add(User user) throws JibuException;
/**
* 修改 User 。
* <p>
* 如果要修改密码,user.getPassword() 应该是 hash 前的密码,也就是明文密码 。
* 所有非 null 的属性将被更新。id 属性不能为 null,且不会被更新。
* @param user User
* @exception JibuException 修改失败时抛出。
*/
public void update(User user) throws JibuException;
/**
* 删除给定 User 。
* <p>
*
* @param user User
* @exception JibuException 删除失败时时抛出。
*/
public void delete(User user) throws JibuException;
/**
* 查询所有匹配给定 User 属性的 User List。
* <p>
*
* @param user 用来传递查询条件的 User。
* @return 一个包含 User 的 List,无值 size()==0,永远不会返回 null。
*/
public List<User> find(User user);
/**
* 查询所有匹配给定 User 属性,并且符合 Criteria 约束的 User。
* <p>
* 如果 criteria 为 null,等同于调用 {@code List<User> find(User user)}。<br>
* @param user 用来传递查询条件的 User。
* @param criteria 用来传递分页,排序等附加查询条件。
* @return 一个包含 User 的 List,无值 size()==0,永远不会返回 null。
* @see #find(User user)
*/
public List<User> find(User user, Criteria criteria);
/**
* 查询所有直接绑定给定 Role 的 User,不包括继承关系。
* <p>
*
* @param role Role
* @return 一个包含 User 的 List,无值 size()==0,永远不会返回 null。
*/
public List<User> find(Role role);
/**
* 查询所有拥有给定 Authority 的 User。
* <p>
*
* @param auth Authority
* @return 一个包含 User 的 List,无值 size()==0,永远不会返回 null。
*/
public List<User> find(Authority auth);
}
| apache-2.0 |
bharathkk/samza | samza-test/src/main/java/org/apache/samza/test/framework/system/descriptors/InMemoryInputDescriptor.java | 1923 | /*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package org.apache.samza.test.framework.system.descriptors;
import org.apache.samza.system.descriptors.InputDescriptor;
import org.apache.samza.serializers.NoOpSerde;
/**
* A descriptor for an in memory stream of messages that can either have single or multiple partitions.
* <p>
* An instance of this descriptor may be obtained from an appropriately configured {@link InMemorySystemDescriptor}.
*
* @param <StreamMessageType> type of messages in input stream
*/
public class InMemoryInputDescriptor<StreamMessageType>
extends InputDescriptor<StreamMessageType, InMemoryInputDescriptor<StreamMessageType>> {
/**
* Constructs a new InMemoryInputDescriptor from specified components.
* @param systemDescriptor name of the system stream is associated with
* @param streamId name of the stream
*/
InMemoryInputDescriptor(String streamId, InMemorySystemDescriptor systemDescriptor) {
super(streamId, new NoOpSerde<>(), systemDescriptor, null);
}
public InMemoryInputDescriptor withPhysicalName(String physicalName) {
super.withPhysicalName(physicalName);
return this;
}
}
| apache-2.0 |
qintianmingDev/coolweather | app/src/main/java/com/example/qtm/coolweather/gson/Suggestion.java | 571 | package com.example.qtm.coolweather.gson;
import com.google.gson.annotations.SerializedName;
/**
* Created by QTM on 2017/3/27.
*/
public class Suggestion {
@SerializedName("comf")
public Comfort comfort;
public class Comfort{
@SerializedName("txt")
public String info;
}
@SerializedName("cw")
public CarWash carWash;
public class CarWash{
@SerializedName("txt")
public String info;
}
public Sport sport;
public class Sport{
@SerializedName("txt")
public String info;
}
}
| apache-2.0 |
Orange-OpenSource/matos-profiles | matos-android/src/main/java/org/apache/http/client/CredentialsProvider.java | 1028 | package org.apache.http.client;
/*
* #%L
* Matos
* $Id:$
* $HeadURL:$
* %%
* Copyright (C) 2010 - 2014 Orange SA
* %%
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
* #L%
*/
@com.francetelecom.rd.stubs.annotation.ClassDone(0)
public interface CredentialsProvider
{
// Methods
public void clear();
public org.apache.http.auth.Credentials getCredentials(org.apache.http.auth.AuthScope arg1);
public void setCredentials(org.apache.http.auth.AuthScope arg1, org.apache.http.auth.Credentials arg2);
}
| apache-2.0 |
Yiiinsh/x-pipe | redis/redis-console/src/main/java/com/ctrip/xpipe/redis/console/health/console/SentinelAutoProcessChecker.java | 1198 | package com.ctrip.xpipe.redis.console.health.console;
import com.ctrip.xpipe.redis.console.alert.ALERT_TYPE;
import com.ctrip.xpipe.redis.console.config.impl.DefaultConsoleDbConfig;
import com.ctrip.xpipe.redis.console.model.ConfigModel;
import org.springframework.stereotype.Component;
/**
* @author chen.zhu
* <p>
* Nov 30, 2017
*/
@Component
public class SentinelAutoProcessChecker extends AbstractConsoleHealthChecker {
@Override
boolean stop() {
return configService.isSentinelAutoProcess();
}
@Override
void alert() {
ConfigModel config = configService.getConfig(DefaultConsoleDbConfig.KEY_SENTINEL_AUTO_PROCESS);
String user = config.getUpdateUser() == null ? "unkown" : config.getUpdateUser();
String ip = config.getUpdateIP() == null ? "unkown" : config.getUpdateIP();
String message = String.format("Sentinel Auto Process will be online %s, </br> " +
"Recent update by: %s <br/> and from IP: %s",
configService.getAlertSystemRecoverTime().toString(),
user, ip);
alertManager.alert("", "", null, ALERT_TYPE.SENTINEL_AUTO_PROCESS_OFF, message);
}
}
| apache-2.0 |
jitsi/jicofo | src/main/java/org/jitsi/jicofo/conference/JitsiMeetConference.java | 4521 | /*
* Jicofo, the Jitsi Conference Focus.
*
* Copyright @ 2016-Present 8x8, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.jitsi.jicofo.conference;
import org.jetbrains.annotations.*;
import org.jitsi.impl.protocol.xmpp.*;
import org.jitsi.jicofo.bridge.*;
import org.jitsi.jicofo.jibri.*;
import org.jitsi.jicofo.xmpp.*;
import org.jitsi.jicofo.xmpp.muc.*;
import org.jitsi.utils.*;
import org.jitsi.xmpp.extensions.jibri.*;
import org.json.simple.*;
import org.jxmpp.jid.*;
import java.util.*;
/**
* The conference interface extracted from {@link JitsiMeetConferenceImpl} for
* the unit tests purpose. There are many method that would be a good candidate
* for ending up in this interface, but until the only reason for this interface
* are tests, only methods actually used there are listed here.
*
* @author Pawel Domas
*/
public interface JitsiMeetConference
{
/**
* Checks how many {@link Participant}s are in the conference.
* @return an integer greater than 0.
*/
int getParticipantCount();
/**
* Find {@link Participant} for given MUC JID.
*
* @param mucJid participant's MUC jid (ex. "room@muc.server.com/nickname").
*
* @return {@link Participant} instance or <tt>null</tt> if not found.
*/
Participant getParticipant(Jid mucJid);
/**
* @return the set of regions of the bridges currently in the conference.
*/
@NotNull Set<String> getBridgeRegions();
/**
* Returns the name of conference multi-user chat room.
*/
EntityBareJid getRoomName();
/**
* Returns <tt>ChatRoom2</tt> instance for the MUC this instance is
* currently in or <tt>null</tt> if it isn't in any.
*/
@Nullable ChatRoom getChatRoom();
default JibriRecorder getJibriRecorder()
{
return null;
}
default JibriSipGateway getJibriSipGateway()
{
return null;
}
/**
* Gets the role of a member in the conference.
* @param jid the member whose role is to be determined.
* @return The member's role or <tt>null</tt> if the JID is not a member.
*/
MemberRole getRoleForMucJid(Jid jid);
/**
* Whether this conference should be considered when generating statistics.
*/
boolean includeInStatistics();
/**
* Process a Jibri-related IQ. This could be a request coming from the client, or from a jibri instance.
* If the request is not related to this conference, this should return {@link IqProcessingResult.NotProcessed}.
*/
@NotNull IqProcessingResult handleJibriRequest(@NotNull IqRequest<JibriIq> request);
/**
* Used for av moderation, when we want to mute all participants.
* @param mediaType the media type we want to mute.
*/
void muteAllParticipants(MediaType mediaType);
/**
* Return {@code true} if the user with the given JID should be allowed to invite jigasi to this conference.
*/
boolean acceptJigasiRequest(@NotNull Jid from);
/**
* Handle a request to mute or unmute a participant. May block for a response from jitsi-videobridge.
* @param muterJid MUC jid of the participant that requested mute status change, or {@code null}. When {@code null},
* no permission checks will be performed.
* @param toBeMutedJid MUC jid of the participant whose mute status will be changed.
* @param doMute {@code true} to mute, {@code false} to unmute.
* @param mediaType the {@link MediaType} of the channel to mute, either AUDIO or VIDEO.
* @return {@link MuteResult#NOT_ALLOWED} if {@code muterJid} is not allowed to mute/unmute,
* {@link MuteResult#ERROR} if the operation was not successful, and
* {@link MuteResult#SUCCESS} if it was successful.
*/
@NotNull
MuteResult handleMuteRequest(
Jid muterJid,
Jid toBeMutedJid,
boolean doMute,
MediaType mediaType);
@NotNull
OrderedJsonObject getDebugState();
}
| apache-2.0 |
jerlang/jerlang | src/main/java/org/jerlang/erts/erlang/ErlangAtomMultiply.java | 828 | package org.jerlang.erts.erlang;
import org.jerlang.type.Atom;
import org.jerlang.type.Integer;
import org.jerlang.type.List;
import org.jerlang.type.Term;
/**
* The multiply operator
*/
public class ErlangAtomMultiply {
private ErlangAtomMultiply() {
}
public static Term dispatch(List params) {
switch (params.length()) {
case 2:
Integer a = params.head().toInteger();
params = params.tail();
Integer b = params.head().toInteger();
return atom_multiply_2(a, b);
default:
throw Error.badarg;
}
}
public static Integer atom_multiply_2(Integer a, Integer b) {
return new Integer(a.toBigInteger().multiply(b.toBigInteger()));
}
public static Atom name() {
return Atom.of("*");
}
}
| apache-2.0 |
vovagrechka/fucking-everything | phizdets/phizdets-idea/eclipse-src/org.eclipse.php.debug.core/src/org/eclipse/php/internal/debug/core/zend/model/ResolveBlackList.java | 2605 | /*******************************************************************************
* Copyright (c) 2009 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
* Zend Technologies
*******************************************************************************/
package org.eclipse.php.internal.debug.core.zend.model;
import java.util.HashMap;
import java.util.Map;
import java.util.Map.Entry;
import org.eclipse.debug.core.DebugPlugin;
import org.eclipse.debug.core.ILaunch;
import org.eclipse.debug.core.ILaunchesListener;
import org.eclipse.php.internal.debug.core.pathmapper.VirtualPath;
public class ResolveBlackList implements ILaunchesListener {
public enum Type {
FILE, FOLDER, RECURSIVE,
}
private static Map<ILaunch, Map<VirtualPath, Type>> blackListMap;
private static ResolveBlackList instance = new ResolveBlackList();
private ResolveBlackList() {
blackListMap = new HashMap<ILaunch, Map<VirtualPath, Type>>();
DebugPlugin.getDefault().getLaunchManager().addLaunchListener(this);
}
public static ResolveBlackList getInstance() {
return instance;
}
private static Map<VirtualPath, Type> getByLaunch(ILaunch launch) {
if (!blackListMap.containsKey(launch)) {
blackListMap.put(launch, new HashMap<VirtualPath, Type>());
}
return blackListMap.get(launch);
}
public void add(ILaunch launch, VirtualPath path, Type type) {
getByLaunch(launch).put(path, type);
}
public boolean containsEntry(ILaunch launch, String file) {
if (!VirtualPath.isAbsolute(file)) {
return false;
}
Map<VirtualPath, Type> map = getByLaunch(launch);
for (Entry<VirtualPath, Type> entry : map.entrySet()) {
VirtualPath tmp = new VirtualPath(file);
VirtualPath path = entry.getKey();
Type type = entry.getValue();
if (type == Type.FILE) {
if (path.equals(tmp)) {
return true;
}
} else if (type == Type.FOLDER) {
tmp.removeLastSegment();
if (path.equals(tmp)) {
return true;
}
} else if (type == Type.RECURSIVE) {
if (path.isPrefixOf(tmp)) {
return true;
}
}
}
return false;
}
public void launchesAdded(ILaunch[] launches) {
}
public void launchesChanged(ILaunch[] launches) {
}
public void launchesRemoved(ILaunch[] launches) {
for (ILaunch l : launches) {
blackListMap.remove(l);
}
}
}
| apache-2.0 |
tekkamanendless/pipeline-aws-plugin | src/test/java/de/taimos/pipeline/aws/S3UploadStepTest.java | 1213 | /*
* -
* #%L
* Pipeline: AWS Steps
* %%
* Copyright (C) 2017 Taimos GmbH
* %%
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
* #L%
*/
package de.taimos.pipeline.aws;
import java.util.Collection;
import org.junit.Assert;
import org.junit.Test;
public class S3UploadStepTest {
@Test
public void gettersWorkAsExpected() throws Exception {
S3UploadStep step = new S3UploadStep( "my-file", "my-bucket" );
Assert.assertEquals( "my-file", step.getFile() );
Assert.assertEquals( "my-bucket", step.getBucket() );
}
@Test
public void defaultPathIsEmpty() throws Exception {
S3UploadStep step = new S3UploadStep( "my-file", "my-bucket" );
Assert.assertEquals( "", step.getPath() );
}
}
| apache-2.0 |
JohnBrainard/acra-cadabra | src/main/java/com/brainardphotography/acracadabra/GuestbookServlet.java | 1501 | /**
* Copyright 2012 Google Inc. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.brainardphotography.acracadabra;
import com.google.appengine.api.users.User;
import com.google.appengine.api.users.UserService;
import com.google.appengine.api.users.UserServiceFactory;
import java.io.IOException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
public class GuestbookServlet extends HttpServlet {
@Override
public void doGet(HttpServletRequest req, HttpServletResponse resp)
throws IOException {
UserService userService = UserServiceFactory.getUserService();
User currentUser = userService.getCurrentUser();
if (currentUser != null) {
resp.setContentType("text/plain");
resp.getWriter().println("Hello, " + currentUser.getNickname());
} else {
resp.sendRedirect(userService.createLoginURL(req.getRequestURI()));
}
}
}
| apache-2.0 |
Inhealthcare/carson | jenkins-client/src/main/java/uk/co/inhealthcare/ops/build/jenkins/api/config/GlobalSettings.java | 378 | package uk.co.inhealthcare.ops.build.jenkins.api.config;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
@XmlAccessorType(XmlAccessType.FIELD)
public class GlobalSettings {
@XmlAttribute(name = "class")
private String clazz;
public String getClazz() {
return clazz;
}
}
| apache-2.0 |
sbower/kuali-rice-1 | impl/src/main/java/org/kuali/rice/kew/actionrequest/bo/RuleMaintenanceActionRequestCodeValuesFinder.java | 3400 | /*
* Copyright 2007-2009 The Kuali Foundation
*
* Licensed under the Educational Community License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.opensource.org/licenses/ecl2.php
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.kuali.rice.kew.actionrequest.bo;
import org.kuali.rice.core.api.util.ConcreteKeyValue;
import org.kuali.rice.core.api.util.KeyValue;
import org.kuali.rice.kew.rule.RuleBaseValues;
import org.kuali.rice.kew.rule.RuleTemplateOptionBo;
import org.kuali.rice.kew.rule.bo.RuleTemplateBo;
import org.kuali.rice.kew.util.KEWConstants;
import org.kuali.rice.kns.document.MaintenanceDocument;
import org.kuali.rice.kns.util.KNSGlobalVariables;
import org.kuali.rice.kns.web.struts.form.KualiForm;
import org.kuali.rice.kns.web.struts.form.KualiMaintenanceForm;
import java.util.ArrayList;
import java.util.List;
/**
* A values finder for returning KEW Action Request codes related to Kuali maintenance forms.
*
* @author Kuali Rice Team (rice.collab@kuali.org)
*
*/
public class RuleMaintenanceActionRequestCodeValuesFinder extends ActionRequestCodeValuesFinder {
/**
* @see org.kuali.rice.krad.keyvalues.KeyValuesFinder#getKeyValues()
*/
@Override
public List<KeyValue> getKeyValues() {
final List<KeyValue> actionRequestCodes = new ArrayList<KeyValue>();
// Acquire the Kuali form, and return the super class' result if the form is not a Kuali maintenance form.
final KualiForm kForm = KNSGlobalVariables.getKualiForm();
if (!(kForm instanceof KualiMaintenanceForm)) {
return super.getKeyValues();
}
// Acquire the Kuali maintenance form's document and its rule template.
final MaintenanceDocument maintDoc = (MaintenanceDocument) ((KualiMaintenanceForm) kForm).getDocument();
final RuleTemplateBo ruleTemplate = ((RuleBaseValues) maintDoc.getNewMaintainableObject().getBusinessObject()).getRuleTemplate();
// Ensure that the rule template is defined.
if (ruleTemplate == null) {
throw new RuntimeException("Rule template cannot be null for document ID " + maintDoc.getDocumentNumber());
}
// get the options to check for, as well as their related KEW constants.
final RuleTemplateOptionBo[] ruleOpts = {ruleTemplate.getAcknowledge(), ruleTemplate.getComplete(),
ruleTemplate.getApprove(), ruleTemplate.getFyi()};
final String[] ruleConsts = {KEWConstants.ACTION_REQUEST_ACKNOWLEDGE_REQ, KEWConstants.ACTION_REQUEST_COMPLETE_REQ,
KEWConstants.ACTION_REQUEST_APPROVE_REQ, KEWConstants.ACTION_REQUEST_FYI_REQ};
// Add the rule options to the list if they are not defined (true by default) or if they are explicitly set to true.
for (int i = 0; i < ruleOpts.length; i++) {
if (ruleOpts[i] == null || ruleOpts[i].getValue() == null || "true".equals(ruleOpts[i].getValue())) {
actionRequestCodes.add(new ConcreteKeyValue(ruleConsts[i], KEWConstants.ACTION_REQUEST_CODES.get(ruleConsts[i])));
}
}
return actionRequestCodes;
}
}
| apache-2.0 |
yangankang/mimosa | mimosa-core/src/main/java/org/mimosaframework/core/server/JoinServer.java | 517 | package org.mimosaframework.core.server;
import org.mimosaframework.core.exception.ServerException;
import java.util.List;
public interface JoinServer extends Server {
void setLeaderServerHost(String host);
void setLeaderServerPort(int port);
void joinServerGroup() throws ServerException;
List<ServerNode> checkServerGroup();
void notifyServerGroupRemoved(List<ServerNode> nodes) throws ServerException;
void setLeaderServer(boolean isLeaderServer);
boolean isLeaderServer();
}
| apache-2.0 |
eurekaclinical/aiw-i2b2-etl | src/main/java/edu/emory/cci/aiw/i2b2etl/dest/table/AbstractFactHandler.java | 4221 | package edu.emory.cci.aiw.i2b2etl.dest.table;
/*
* #%L
* AIW i2b2 ETL
* %%
* Copyright (C) 2012 - 2015 Emory University
* %%
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
* #L%
*/
import edu.emory.cci.aiw.i2b2etl.dest.metadata.Concept;
import org.protempa.dest.table.RecordHandler;
import java.sql.PreparedStatement;
import java.sql.SQLException;
import java.util.logging.Level;
import org.arp.javautil.sql.ConnectionSpec;
import org.protempa.proposition.value.InequalityNumberValue;
import org.protempa.proposition.value.NumberValue;
import org.protempa.proposition.value.NumericalValue;
import org.protempa.proposition.value.Value;
/**
*
* @author Andrew Post
*/
public abstract class AbstractFactHandler extends RecordHandler<ObservationFact> {
AbstractFactHandler(ConnectionSpec connSpec, String statement) throws SQLException {
super(connSpec, statement);
}
@Override
protected void setParameters(PreparedStatement ps, ObservationFact record) throws SQLException {
assert record != null : "record cannot be null";
VisitDimension visit = record.getVisit();
if (visit != null) {
ps.setString(1, visit.getVisitId());
ps.setString(2, visit.getVisitIdSource());
} else {
ps.setString(1, null);
ps.setString(2, null);
}
Concept concept = record.getConcept();
ps.setString(3, concept != null ? concept.getConceptCode() : null);
ps.setString(4, record.getPatient().getEncryptedPatientId());
ps.setString(5, record.getPatient().getEncryptedPatientIdSource());
ps.setString(6, TableUtil.setStringAttribute(record.getProvider().getConcept().getConceptCode()));
ps.setTimestamp(7, record.getStartDate());
ps.setString(8, record.getModifierCd());
ps.setLong(9, record.getInstanceNum());
Value value = record.getValue();
if (value == null) {
ps.setString(10, ValTypeCode.NO_VALUE.getCode());
ps.setString(11, null);
ps.setObject(12, null);
} else if (value instanceof NumericalValue) {
ps.setString(10, ValTypeCode.NUMERIC.getCode());
if (value instanceof NumberValue) {
ps.setString(11, TValCharWhenNumberCode.EQUAL.getCode());
} else {
InequalityNumberValue inv = (InequalityNumberValue) value;
TValCharWhenNumberCode tvalCode =
TValCharWhenNumberCode.codeFor(inv.getComparator());
ps.setString(11, tvalCode.getCode());
}
ps.setObject(12, ((NumericalValue) value).getNumber());
} else {
ps.setString(10, ValTypeCode.TEXT.getCode());
String tval = value.getFormatted();
if (tval.length() > 255) {
ps.setString(11, tval.substring(0, 255));
TableUtil.logger().log(Level.WARNING, "Truncated text result to 255 characters: {0}", tval);
} else {
ps.setString(11, tval);
}
ps.setObject(12, null);
}
ps.setString(13, record.getValueFlagCode().getCode());
ps.setObject(14, null);
ps.setObject(15, null);
ps.setObject(16, null);
ps.setString(17, record.getUnits());
ps.setTimestamp(18, record.getEndDate());
ps.setString(19, null);
ps.setTimestamp(20, record.getUpdateDate());
ps.setTimestamp(21, record.getDownloadDate());
ps.setTimestamp(22, importTimestamp());
ps.setString(23, record.getSourceSystem());
ps.setInt(24, 0);
ps.setTimestamp(25, record.getDeletedDate());
}
}
| apache-2.0 |
wudizhuo/BXJ | app/src/main/java/com/bxj/common/BaseActivity.java | 3851 | package com.bxj.common;
import android.os.Bundle;
import android.support.v4.app.FragmentActivity;
import android.text.TextUtils;
import android.view.GestureDetector;
import android.view.GestureDetector.SimpleOnGestureListener;
import android.view.MotionEvent;
import android.view.View;
import android.widget.Button;
import android.widget.TextView;
import com.bxj.AppPreferences;
import com.bxj.R;
import com.bxj.utils.LogUtil;
import com.bxj.utils.StatServiceUtil;
import com.bxj.view.CustomerProgressDialog;
import com.umeng.analytics.MobclickAgent;
public abstract class BaseActivity extends FragmentActivity {
private CustomerProgressDialog progressDialog;
private Button btn_title_left;
private Button btn_title_right;
private int swipeMinDistance = 80;
private GestureDetector mGestureDetector;
private boolean isAllowSwipeFinsh = true;
private boolean progressOnShow = false;
/** 获取intent附加数据 */
protected void getIntentParams() {
}
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setTheme();
getIntentParams();
}
@Override
protected void onStart() {
super.onStart();
if (isAllowSwipeFinsh) {
mGestureDetector = new GestureDetector(this, gestureListener);
}
}
/**
* 设置是否允许滑动屏幕返回
*/
protected void setAllowSwipeFinsh(boolean isAllowSwipeFinsh) {
this.isAllowSwipeFinsh = isAllowSwipeFinsh;
}
SimpleOnGestureListener gestureListener = new SimpleOnGestureListener() {
@Override
public boolean onFling(MotionEvent e1, MotionEvent e2, float velocityX,
float velocityY) {
if (e1 != null && e2 != null) {
if (e2.getX() - e1.getX() > swipeMinDistance
&& (Math.abs(e2.getX() - e1.getX()) / 4 > Math.abs(e1
.getY() - e2.getY()))
&& Math.abs(velocityX) > 0) {
StatServiceUtil.trackEvent("右滑返回");
BaseActivity.this.onBackPressed();
}
}
return false;
}
};
public boolean onTouchEvent(MotionEvent event) {
if (isAllowSwipeFinsh) {
return mGestureDetector.onTouchEvent(event);
} else {
return super.onTouchEvent(event);
}
};
public void setTheme() {
if (AppPreferences.getSettingModeNight()) {
setTheme(R.style.NightTheme);
LogUtil.s("BaseActivity---setTheme----NightTheme");
} else {
setTheme(R.style.DefultTheme);
LogUtil.s("BaseActivity---setTheme----DefultTheme");
}
}
public void setRightBtnText(CharSequence text) {
btn_title_right = (Button) findViewById(R.id.btn_title_right);
if (btn_title_right != null) {
btn_title_right.setVisibility(View.VISIBLE);
btn_title_right.setText(text);
}
}
public void setTitleText(String text) {
TextView tv_titlebar_midtv = (TextView) findViewById(R.id.tv_titlebar_midtv);
tv_titlebar_midtv.setText(text);
}
@Override
protected void onResume() {
super.onResume();
MobclickAgent.onResume(this);
}
@Override
protected void onPause() {
MobclickAgent.onPause(this);
super.onPause();
}
/**
* 显示等待对话框
*
* @param msg
* 对话框显示的字体
*/
public void showProgressDialog(String msg) {
if (!isFinishing() && !progressOnShow) {
progressDialog = new CustomerProgressDialog(this);
if (!TextUtils.isEmpty(msg)) {
progressDialog.setMessage(msg);
}
progressDialog.show();
progressOnShow = true;
}
}
/**
* 显示等待对话框
*/
public void showProgressDialog() {
this.showProgressDialog(null);
}
/**
* 取消等待对话框
*/
public void dismissProgressDialog() {
if (!isFinishing() && progressDialog != null
&& progressDialog.isShowing()) {
progressDialog.dismiss();
progressOnShow = false;
}
}
public void onBackPressed(View v) {
LogUtil.s("btn_title_left");
onBackPressed();
}
public Button getRightBtn() {
return btn_title_right;
}
}
| apache-2.0 |
neolord0/hwplib | src/main/java/kr/dogfoot/hwplib/writer/bodytext/paragraph/control/secd/ForBatangPageInfo.java | 1790 | package kr.dogfoot.hwplib.writer.bodytext.paragraph.control.secd;
import kr.dogfoot.hwplib.object.bodytext.control.sectiondefine.BatangPageInfo;
import kr.dogfoot.hwplib.object.bodytext.control.sectiondefine.ListHeaderForBatangPage;
import kr.dogfoot.hwplib.object.etc.HWPTag;
import kr.dogfoot.hwplib.util.compoundFile.writer.StreamWriter;
import kr.dogfoot.hwplib.writer.bodytext.paragraph.ForParagraphList;
import java.io.IOException;
/**
* 바탕쪽 정보를 쓰기 위한 객체
*
* @author neolord
*/
public class ForBatangPageInfo {
/**
* 바탕쪽 정보를 쓴다.
*
* @param bpi 바탕쪽 정보
* @param sw 스트림 라이터
* @throws Exception
*/
public static void write(BatangPageInfo bpi, StreamWriter sw)
throws Exception {
listHeader(bpi.getListHeader(), sw);
ForParagraphList.write(bpi.getParagraphList(), sw);
}
/**
* 바탕쪽 정보의 리스트 헤더 레코드를 쓴다.
*
* @param lh 바탕쪽 정보의 리스트 헤더 레코드
* @param sw 스트림 라이터
* @throws IOException
*/
private static void listHeader(ListHeaderForBatangPage lh, StreamWriter sw)
throws IOException {
recordHeader(sw);
sw.writeSInt4(lh.getParaCount());
sw.writeUInt4(lh.getProperty().getValue());
sw.writeUInt4(lh.getTextWidth());
sw.writeUInt4(lh.getTextHeight());
sw.writeZero(18);
}
/**
* 바탕쪽 정보의 리스트 헤더 레코드의 레코드 헤더를 쓴다.
*
* @param sw 스트림 라이터
* @throws IOException
*/
private static void recordHeader(StreamWriter sw) throws IOException {
sw.writeRecordHeader(HWPTag.LIST_HEADER, 34);
}
}
| apache-2.0 |
sbower/kuali-rice-1 | impl/src/main/java/org/kuali/rice/kew/stats/Stats.java | 3532 | /*
* Copyright 2005-2007 The Kuali Foundation
*
*
* Licensed under the Educational Community License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.opensource.org/licenses/ecl2.php
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.kuali.rice.kew.stats;
import java.util.List;
/**
* A snapshot of statistics for the KEW application at a particular
* point in time.
*
* @author Kuali Rice Team (rice.collab@kuali.org)
*/
public class Stats {
//set defaults
String numUsers = "0";
String numActionItems = "0";
String numDocTypes = "0";
String canceledNumber = "0";
String disapprovedNumber = "0";
String enrouteNumber = "0";
String exceptionNumber = "0";
String finalNumber = "0";
String initiatedNumber = "0";
String processedNumber = "0";
String savedNumber = "0";
List numInitiatedDocsByDocType;
public String getCanceledNumber() {
return canceledNumber;
}
public void setCanceledNumber(String canceledNumber) {
this.canceledNumber = canceledNumber;
}
public String getDisapprovedNumber() {
return disapprovedNumber;
}
public void setDisapprovedNumber(String disapprovedNumber) {
this.disapprovedNumber = disapprovedNumber;
}
public String getEnrouteNumber() {
return enrouteNumber;
}
public void setEnrouteNumber(String enrouteNumber) {
this.enrouteNumber = enrouteNumber;
}
public String getExceptionNumber() {
return exceptionNumber;
}
public void setExceptionNumber(String exceptionNumber) {
this.exceptionNumber = exceptionNumber;
}
public String getFinalNumber() {
return finalNumber;
}
public void setFinalNumber(String finalNumber) {
this.finalNumber = finalNumber;
}
public String getInitiatedNumber() {
return initiatedNumber;
}
public void setInitiatedNumber(String initiatedNumber) {
this.initiatedNumber = initiatedNumber;
}
public String getNumActionItems() {
return numActionItems;
}
public void setNumActionItems(String numActionItems) {
this.numActionItems = numActionItems;
}
public String getNumDocTypes() {
return numDocTypes;
}
public void setNumDocTypes(String numDocTypes) {
this.numDocTypes = numDocTypes;
}
public String getNumUsers() {
return numUsers;
}
public void setNumUsers(String numUsers) {
this.numUsers = numUsers;
}
public String getProcessedNumber() {
return processedNumber;
}
public void setProcessedNumber(String processedNumber) {
this.processedNumber = processedNumber;
}
public String getSavedNumber() {
return savedNumber;
}
public void setSavedNumber(String savedNumber) {
this.savedNumber = savedNumber;
}
public List getNumInitiatedDocsByDocType() {
return numInitiatedDocsByDocType;
}
public void setNumInitiatedDocsByDocType(List numInitiatedDocsByDocType) {
this.numInitiatedDocsByDocType = numInitiatedDocsByDocType;
}
}
| apache-2.0 |
jaxio/celerio | celerio-engine/src/main/java/com/jaxio/celerio/configuration/support/AbstractJibxLoader.java | 2436 | /*
* Copyright 2015 JAXIO http://www.jaxio.com
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.jaxio.celerio.configuration.support;
import org.apache.commons.io.output.ByteArrayOutputStream;
import org.springframework.oxm.XmlMappingException;
import org.springframework.oxm.jibx.JibxMarshaller;
import javax.xml.transform.stream.StreamResult;
import javax.xml.transform.stream.StreamSource;
import java.io.*;
public abstract class AbstractJibxLoader<T> {
public abstract JibxMarshaller getMarshaller();
public T load(String filename) throws XmlMappingException, IOException {
return load(new File(filename));
}
public T load(File file) throws XmlMappingException, IOException {
return load(new FileInputStream(file));
}
@SuppressWarnings("unchecked")
public T load(InputStream inputStream) throws XmlMappingException, IOException {
return (T) getMarshaller().unmarshal(new StreamSource(inputStream));
}
public void write(T object, String filename) throws XmlMappingException, IOException {
write(object, new File(filename));
}
public void write(T object, File file) throws XmlMappingException, IOException {
try {
file.getParentFile().mkdirs();
} catch (Exception e) {
//
}
write(object, new FileOutputStream(file));
}
public void write(T object, OutputStream outputStream) throws XmlMappingException, IOException {
getMarshaller().marshal(object, new StreamResult(outputStream));
}
public T fromXml(String xml) throws XmlMappingException, IOException {
return load(new ByteArrayInputStream(xml.getBytes()));
}
public String toXml(T object) throws XmlMappingException, IOException {
ByteArrayOutputStream stream = new ByteArrayOutputStream();
write(object, stream);
return stream.toString();
}
}
| apache-2.0 |
fabric8io/kubernetes-client | kubernetes-tests/src/test/java/io/fabric8/openshift/client/server/mock/ProjectTest.java | 7485 | /**
* Copyright (C) 2015 Red Hat, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package io.fabric8.openshift.client.server.mock;
import io.fabric8.kubernetes.api.model.HasMetadata;
import io.fabric8.kubernetes.api.model.rbac.RoleBindingBuilder;
import io.fabric8.openshift.api.model.Project;
import io.fabric8.openshift.api.model.ProjectBuilder;
import io.fabric8.openshift.api.model.ProjectList;
import io.fabric8.openshift.api.model.ProjectListBuilder;
import io.fabric8.openshift.client.OpenShiftClient;
import org.junit.jupiter.api.Test;
import java.net.HttpURLConnection;
import java.util.List;
import static org.junit.jupiter.api.Assertions.assertEquals;
import static org.junit.jupiter.api.Assertions.assertFalse;
import static org.junit.jupiter.api.Assertions.assertNotNull;
import static org.junit.jupiter.api.Assertions.assertNull;
import static org.junit.jupiter.api.Assertions.assertTrue;
@EnableOpenShiftMockClient
class ProjectTest {
OpenShiftMockServer server;
OpenShiftClient client;
@Test
void testList() {
server.expect().withPath("/apis/project.openshift.io/v1/projects").andReturn(200, new ProjectListBuilder()
.addNewItem().and()
.addNewItem().and().build()).once();
ProjectList projectList = client.projects().list();
assertNotNull(projectList);
assertEquals(2, projectList.getItems().size());
}
@Test
void testGet() {
server.expect().withPath("/apis/project.openshift.io/v1/projects/project1").andReturn(200, new ProjectBuilder()
.withNewMetadata().withName("project1").endMetadata()
.build()).once();
server.expect().withPath("/apis/project.openshift.io/v1/projects/project2").andReturn(200, new ProjectBuilder()
.withNewMetadata().withName("project2").endMetadata()
.build()).once();
Project project = client.projects().withName("project1").get();
assertNotNull(project);
assertEquals("project1", project.getMetadata().getName());
project = client.projects().withName("project2").get();
assertNotNull(project);
assertEquals("project2", project.getMetadata().getName());
project = client.projects().withName("project3").get();
assertNull(project);
}
@Test
void testDelete() {
server.expect().withPath("/apis/project.openshift.io/v1/projects/project1").andReturn(200, new ProjectBuilder().build()).once();
server.expect().withPath("/apis/project.openshift.io/v1/projects/project2").andReturn( 200, new ProjectBuilder().build()).once();
Boolean deleted = client.projects().withName("project1").delete();
assertNotNull(deleted);
deleted = client.projects().withName("project2").delete();
assertTrue(deleted);
deleted = client.projects().withName("project3").delete();
assertFalse(deleted);
}
@Test
void testCreateProjectAndRoleBindings() {
// Given
String name = "test-project";
String displayName = "test-project";
String description = "test project";
String requestingUser = "request-user";
String adminUser = "admin-user";
server.expect().post().withPath("/apis/project.openshift.io/v1/projects")
.andReturn(HttpURLConnection.HTTP_CREATED, new ProjectBuilder()
.withNewMetadata()
.addToAnnotations("openshift.io/description", description)
.addToAnnotations("openshift.io/display-name", displayName)
.addToAnnotations("openshift.io/requester", requestingUser)
.withName("test-project")
.endMetadata()
.build()).once();
server.expect().post().withPath("/apis/rbac.authorization.k8s.io/v1/namespaces/test-project/rolebindings")
.andReturn(HttpURLConnection.HTTP_CREATED, new RoleBindingBuilder()
.withNewMetadata()
.addToAnnotations("openshift.io/description", "Allows all pods in this namespace to pull images from this namespace. It is auto-managed by a controller; remove subjects to disable.")
.withName("system:image-pullers")
.withNamespace(name)
.endMetadata()
.withNewRoleRef()
.withApiGroup("rbac.authorization.k8s.io")
.withKind("ClusterRole")
.withName("system:image-puller")
.endRoleRef()
.addNewSubject()
.withApiGroup("rbac.authorization.k8s.io")
.withKind("Group")
.withName("system:serviceaccounts:" + name)
.endSubject()
.build()).once();
server.expect().post().withPath("/apis/rbac.authorization.k8s.io/v1/namespaces/test-project/rolebindings")
.andReturn(HttpURLConnection.HTTP_CREATED, new RoleBindingBuilder()
.withNewMetadata()
.addToAnnotations("openshift.io/description", "Allows builds in this namespace to push images to" +
"this namespace. It is auto-managed by a controller; remove subjects to disable.")
.withName("system:image-builders")
.withNamespace(name)
.endMetadata()
.withNewRoleRef()
.withApiGroup("rbac.authorization.k8s.io")
.withKind("ClusterRole")
.withName("system:image-builder")
.endRoleRef()
.addNewSubject()
.withKind("ServiceAccount")
.withName("builder")
.withNamespace(name)
.endSubject()
.build()).once();
server.expect().post().withPath("/apis/rbac.authorization.k8s.io/v1/namespaces/test-project/rolebindings")
.andReturn(HttpURLConnection.HTTP_CREATED, new RoleBindingBuilder()
.withNewMetadata()
.addToAnnotations("openshift.io/description", " Allows deploymentconfigs in this namespace to rollout" +
" pods in this namespace. It is auto-managed by a controller; remove subjects" +
" to disable.")
.withName("system:deployers")
.withNamespace(name)
.endMetadata()
.withNewRoleRef()
.withApiGroup("rbac.authorization.k8s.io")
.withKind("ClusterRole")
.withName("system:deployer")
.endRoleRef()
.addNewSubject()
.withKind("ServiceAccount")
.withName("deployer")
.withNamespace(name)
.endSubject()
.build()).once();
server.expect().post().withPath("/apis/rbac.authorization.k8s.io/v1/namespaces/test-project/rolebindings")
.andReturn(HttpURLConnection.HTTP_CREATED, new RoleBindingBuilder()
.withNewMetadata()
.withName("admin")
.withNamespace(name)
.endMetadata()
.withNewRoleRef()
.withApiGroup("rbac.authorization.k8s.io")
.withKind("ClusterRole")
.withName("admin")
.endRoleRef()
.addNewSubject()
.withApiGroup("rbac.authorization.k8s.io")
.withKind("User")
.withName(adminUser)
.endSubject()
.build()).once();
// When
List<HasMetadata> result = client.projects().createProjectAndRoleBindings(name, description, displayName, adminUser, requestingUser);
// Then
assertNotNull(result);
assertEquals(5, result.size());
}
}
| apache-2.0 |
szberes/spring-examples | security/java-api-security/src/main/java/com/github/szberes/spring/examples/security/java/TestedService.java | 1424 | /*
* Copyright 2015 Szabolcs Balazs Beres.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.github.szberes.spring.examples.security.java;
import org.springframework.security.access.prepost.PreAuthorize;
import org.springframework.security.core.Authentication;
import org.springframework.security.core.context.SecurityContextHolder;
import org.springframework.security.core.userdetails.UserDetails;
import org.springframework.stereotype.Component;
@Component
@PreAuthorize("isAuthenticated() and hasRole('ROLE_USER')")
public class TestedService {
public String getMessage() {
Authentication authentication = SecurityContextHolder.getContext()
.getAuthentication();
return "Hello " + ((UserDetails) authentication.getPrincipal()).getUsername();
}
@PreAuthorize("isAuthenticated() and hasRole('ROLE_ADMIN')")
public void postMessage(String message) {
}
}
| apache-2.0 |
playaround88/sizzler | src/main/java/com/ai/sizzler/scan/component/AbstractImporter.java | 1183 | package com.ai.sizzler.scan.component;
import java.sql.Date;
import java.util.Map;
public abstract class AbstractImporter implements Importer{
private long id;
private String name;
private String desc;
private String props;
private Date ctime;
private long dsId;
@Override
public void load(Map map) {
this.setId((Long)map.get("id"));
this.setName((String)map.get("impName"));
this.setDesc((String)map.get("description"));
this.setProps((String)map.get("props"));
this.setCtime((Date)map.get("ctime"));
this.setDsId((Long)map.get("dsId"));
}
public long getId() {
return id;
}
public void setId(long id) {
this.id = id;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getDesc() {
return desc;
}
public void setDesc(String desc) {
this.desc = desc;
}
public String getProps() {
return props;
}
public void setProps(String props) {
this.props = props;
}
public Date getCtime() {
return ctime;
}
public void setCtime(Date ctime) {
this.ctime = ctime;
}
public long getDsId() {
return dsId;
}
public void setDsId(long dsId) {
this.dsId = dsId;
}
}
| apache-2.0 |
suraj-raturi/pinpoint | web/src/main/java/com/navercorp/pinpoint/web/dao/hbase/stat/v2/HbaseSampledCpuLoadDaoV2.java | 2783 | /*
* Copyright 2016 Naver Corp.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.navercorp.pinpoint.web.dao.hbase.stat.v2;
import com.navercorp.pinpoint.common.server.bo.codec.stat.CpuLoadDecoder;
import com.navercorp.pinpoint.common.server.bo.stat.AgentStatType;
import com.navercorp.pinpoint.common.server.bo.stat.CpuLoadBo;
import com.navercorp.pinpoint.web.dao.stat.SampledCpuLoadDao;
import com.navercorp.pinpoint.web.mapper.stat.AgentStatMapperV2;
import com.navercorp.pinpoint.web.mapper.stat.sampling.sampler.CpuLoadSampler;
import com.navercorp.pinpoint.web.mapper.stat.SampledAgentStatResultExtractor;
import com.navercorp.pinpoint.web.util.TimeWindow;
import com.navercorp.pinpoint.web.vo.Range;
import com.navercorp.pinpoint.web.vo.stat.SampledCpuLoad;
import org.springframework.stereotype.Repository;
import java.util.List;
import java.util.Objects;
/**
* @author HyunGil Jeong
*/
@Repository("sampledCpuLoadDaoV2")
public class HbaseSampledCpuLoadDaoV2 implements SampledCpuLoadDao {
private final HbaseAgentStatDaoOperationsV2 operations;
private final CpuLoadDecoder cpuLoadDecoder;
private final CpuLoadSampler cpuLoadSampler;
public HbaseSampledCpuLoadDaoV2(HbaseAgentStatDaoOperationsV2 operations, CpuLoadDecoder cpuLoadDecoder, CpuLoadSampler cpuLoadSampler) {
this.operations = Objects.requireNonNull(operations, "operations");
this.cpuLoadDecoder = Objects.requireNonNull(cpuLoadDecoder, "cpuLoadDecoder");
this.cpuLoadSampler = Objects.requireNonNull(cpuLoadSampler, "cpuLoadSampler");
}
@Override
public List<SampledCpuLoad> getSampledAgentStatList(String agentId, TimeWindow timeWindow) {
long scanFrom = timeWindow.getWindowRange().getFrom();
long scanTo = timeWindow.getWindowRange().getTo() + timeWindow.getWindowSlotSize();
Range range = new Range(scanFrom, scanTo);
AgentStatMapperV2<CpuLoadBo> mapper = operations.createRowMapper(cpuLoadDecoder, range);
SampledAgentStatResultExtractor<CpuLoadBo, SampledCpuLoad> resultExtractor = new SampledAgentStatResultExtractor<>(timeWindow, mapper, cpuLoadSampler);
return operations.getSampledAgentStatList(AgentStatType.CPU_LOAD, resultExtractor, agentId, range);
}
}
| apache-2.0 |
ShareTeam/Platform | Server-Platform/Hibernate/3.0/memory-root/modules/memory-core/src/main/java/com/memory/platform/core/service/impl/BaseServiceImpl.java | 7123 | package com.memory.platform.core.service.impl;
import java.io.Serializable;
import java.lang.reflect.ParameterizedType;
import java.math.BigDecimal;
import java.math.BigInteger;
import java.util.List;
import java.util.Map;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.annotation.Qualifier;
import org.springframework.stereotype.Service;
import com.memory.platform.core.service.IBaseService;
import com.memory.platform.hibernate4.criteria.HqlFilter;
import com.memory.platform.hibernate4.dao.IBaseDao;
import com.memory.platform.hibernate4.search.Search;
import com.memory.platform.hibernate4.search.SearchResult;
/**
* 基础业务逻辑
*
* @author
*
* @param <T>
*/
@Service("baseServiceImpl")
public class BaseServiceImpl<T> implements IBaseService<T> {
@Autowired
@Qualifier("baseDaoImpl")
private IBaseDao<T> baseDao;
@Override
public Serializable save(T o) {
return baseDao.save(o);
}
@Override
public void delete(T o) {
baseDao.delete(o);
}
@Override
public void update(T o) {
baseDao.update(o);
}
@Override
public void saveOrUpdate(T o) {
baseDao.saveOrUpdate(o);
}
@Override
public T getById(Serializable id) {
Class<T> c = (Class<T>) ((ParameterizedType) getClass().getGenericSuperclass()).getActualTypeArguments()[0];
return baseDao.getById(c, id);
}
@Override
public T getByHql(String hql) {
return baseDao.getByHql(hql);
}
@Override
public T getByHql(String hql, Map<String, Object> params) {
return baseDao.getByHql(hql, params);
}
@Override
public T getByFilter(HqlFilter hqlFilter) {
String className = ((Class<T>) ((ParameterizedType) getClass().getGenericSuperclass()).getActualTypeArguments()[0]).getName();
String hql = "select distinct t from " + className + " t";
return getByHql(hql + hqlFilter.getWhereAndOrderHql(), hqlFilter.getParams());
}
@Override
public List<T> find() {
return findByFilter(new HqlFilter());
}
@Override
public List<T> find(String hql) {
return baseDao.find(hql);
}
@Override
public List<T> find(String hql, Map<String, Object> params) {
return baseDao.find(hql, params);
}
@Override
public List<T> findByFilter(HqlFilter hqlFilter) {
String className = ((Class<T>) ((ParameterizedType) getClass().getGenericSuperclass()).getActualTypeArguments()[0]).getName();
String hql = "select distinct t from " + className + " t";
return find(hql + hqlFilter.getWhereAndOrderHql(), hqlFilter.getParams());
}
@Override
public List<T> find(String hql, int page, int rows) {
return baseDao.find(hql, page, rows);
}
@Override
public List<T> find(String hql, Map<String, Object> params, int page, int rows) {
return baseDao.find(hql, params, page, rows);
}
@Override
public List<T> find(int page, int rows) {
return findByFilter(new HqlFilter(), page, rows);
}
@Override
public List<T> findByFilter(HqlFilter hqlFilter, int page, int rows) {
String className = ((Class<T>) ((ParameterizedType) getClass().getGenericSuperclass()).getActualTypeArguments()[0]).getName();
String hql = "select distinct t from " + className + " t";
return find(hql + hqlFilter.getWhereAndOrderHql(), hqlFilter.getParams(), page, rows);
}
@Override
public Long count(String hql) {
return baseDao.count(hql);
}
@Override
public Long count(String hql, Map<String, Object> params) {
return baseDao.count(hql, params);
}
@Override
public Long countByFilter(HqlFilter hqlFilter) {
String className = ((Class<T>) ((ParameterizedType) getClass().getGenericSuperclass()).getActualTypeArguments()[0]).getName();
String hql = "select count(distinct t) from " + className + " t";
return count(hql + hqlFilter.getWhereHql(), hqlFilter.getParams());
}
@Override
public Long count() {
return countByFilter(new HqlFilter());
}
@Override
public int executeHql(String hql) {
return baseDao.executeHql(hql);
}
@Override
public int executeHql(String hql, Map<String, Object> params) {
return baseDao.executeHql(hql, params);
}
@Override
public List findBySql(String sql) {
return baseDao.findBySql(sql);
}
@Override
public List findBySql(String sql, int page, int rows) {
return baseDao.findBySql(sql, page, rows);
}
@Override
public List findBySql(String sql, Map<String, Object> params) {
return baseDao.findBySql(sql, params);
}
@Override
public List findBySql(String sql, Map<String, Object> params, int page, int rows) {
return baseDao.findBySql(sql, params, page, rows);
}
@Override
public int executeSql(String sql) {
return baseDao.executeSql(sql);
}
@Override
public int executeSql(String sql, Map<String, Object> params) {
return baseDao.executeSql(sql, params);
}
@Override
public BigInteger countBySql(String sql) {
return baseDao.countBySql(sql);
}
@Override
public BigInteger countBySql(String sql, Map<String, Object> params) {
return baseDao.countBySql(sql, params);
}
@Override
public <T> SearchResult<T> searchByHql(Search<T> search) {
return baseDao.searchByHql(search);
}
@Override
public <T> SearchResult<T> searchBySql(Search<T> search) {
return baseDao.searchBySql(search);
}
@Override
public T getByHql(String hql, String... params) {
return baseDao.getByHql(hql, params);
}
@Override
public List<T> find(String hql, String... params) {
return baseDao.find(hql, params);
}
@Override
public List<T> find(String hql, int page, int rows, String... params) {
return baseDao.find(hql, page, rows, params);
}
@Override
public Long count(String hql, String... params) {
return baseDao.count(hql, params);
}
@Override
public int executeHql(String hql, String... params) {
return baseDao.executeHql(hql, params);
}
@Override
public List<Map> findBySql(String sql, String... params) {
return baseDao.findBySql(sql, params);
}
@Override
public List<Map> findBySql(String sql, int page, int rows, String... params) {
return baseDao.findBySql(sql, page, rows, params);
}
@Override
public int executeSql(String sql, String... params) {
return baseDao.executeSql(sql, params);
}
@Override
public BigInteger countBySql(String sql, String... params) {
return baseDao.countBySql(sql, params);
}
@Override
public Map uniqueBySql(String sql) {
return baseDao.uniqueBySql(sql);
}
@Override
public Map uniqueBySql(String sql, String... params) {
return baseDao.uniqueBySql(sql, params);
}
@Override
public BigDecimal mathBySql(String sql) {
return baseDao.mathBySql(sql);
}
@Override
public BigDecimal mathBySql(String sql, String... params) {
return baseDao.mathBySql(sql, params);
}
@Override
public Long mathByHql(String hql) {
return baseDao.mathByHql(hql);
}
@Override
public Long mathByHql(String hql, String... params) {
return baseDao.mathByHql(hql, params);
}
}
| apache-2.0 |
nafae/developer | modules/dfp_axis/src/main/java/com/google/api/ads/dfp/axis/v201308/ApiFramework.java | 2824 | /**
* ApiFramework.java
*
* This file was auto-generated from WSDL
* by the Apache Axis 1.4 Mar 02, 2009 (07:08:06 PST) WSDL2Java emitter.
*/
package com.google.api.ads.dfp.axis.v201308;
public class ApiFramework implements java.io.Serializable {
private java.lang.String _value_;
private static java.util.HashMap _table_ = new java.util.HashMap();
// Constructor
protected ApiFramework(java.lang.String value) {
_value_ = value;
_table_.put(_value_,this);
}
public static final java.lang.String _NONE = "NONE";
public static final java.lang.String _CLICKTAG = "CLICKTAG";
public static final java.lang.String _VPAID = "VPAID";
public static final ApiFramework NONE = new ApiFramework(_NONE);
public static final ApiFramework CLICKTAG = new ApiFramework(_CLICKTAG);
public static final ApiFramework VPAID = new ApiFramework(_VPAID);
public java.lang.String getValue() { return _value_;}
public static ApiFramework fromValue(java.lang.String value)
throws java.lang.IllegalArgumentException {
ApiFramework enumeration = (ApiFramework)
_table_.get(value);
if (enumeration==null) throw new java.lang.IllegalArgumentException();
return enumeration;
}
public static ApiFramework fromString(java.lang.String value)
throws java.lang.IllegalArgumentException {
return fromValue(value);
}
public boolean equals(java.lang.Object obj) {return (obj == this);}
public int hashCode() { return toString().hashCode();}
public java.lang.String toString() { return _value_;}
public java.lang.Object readResolve() throws java.io.ObjectStreamException { return fromValue(_value_);}
public static org.apache.axis.encoding.Serializer getSerializer(
java.lang.String mechType,
java.lang.Class _javaType,
javax.xml.namespace.QName _xmlType) {
return
new org.apache.axis.encoding.ser.EnumSerializer(
_javaType, _xmlType);
}
public static org.apache.axis.encoding.Deserializer getDeserializer(
java.lang.String mechType,
java.lang.Class _javaType,
javax.xml.namespace.QName _xmlType) {
return
new org.apache.axis.encoding.ser.EnumDeserializer(
_javaType, _xmlType);
}
// Type metadata
private static org.apache.axis.description.TypeDesc typeDesc =
new org.apache.axis.description.TypeDesc(ApiFramework.class);
static {
typeDesc.setXmlType(new javax.xml.namespace.QName("https://www.google.com/apis/ads/publisher/v201308", "ApiFramework"));
}
/**
* Return type metadata object
*/
public static org.apache.axis.description.TypeDesc getTypeDesc() {
return typeDesc;
}
}
| apache-2.0 |
christianpeixoto/linguanervosa | album1/workspace/Memorable/src/br/com/musicas/opus08/mylonelygirl/Bateria.java | 5392 | package br.com.musicas.opus08.mylonelygirl;
import java.util.Random;
import org.jfugue.Pattern;
public class Bateria extends Estrutura{
@Override
public void inicio() {
partitura.add(new Pattern("V9 X[Volume]=10000"));
partitura.add(new Pattern("[SIDE_STICK]q [SIDE_STICK]q [SIDE_STICK]q [SIDE_STICK]q"), 1);
}
@Override
public void intro() {
partitura.add(new Pattern("[CLOSED_HI_HAT]q [ACOUSTIC_BASS_DRUM]q+[CLOSED_HI_HAT]q [ACOUSTIC_SNARE]q+[CLOSED_HI_HAT]q [CLOSED_HI_HAT]q "), 1);
partitura.add(new Pattern("[CLOSED_HI_HAT]q [ACOUSTIC_BASS_DRUM]q+[CLOSED_HI_HAT]q [ACOUSTIC_SNARE]q+[CLOSED_HI_HAT]q [CLOSED_HI_HAT]q "), 1);
partitura.add(new Pattern(trocaVirada()), 1);
partitura.add(new Pattern("[CLOSED_HI_HAT]q [ACOUSTIC_BASS_DRUM]q+[CLOSED_HI_HAT]q [ACOUSTIC_SNARE]q+[CLOSED_HI_HAT]q [CLOSED_HI_HAT]q "), 1);
partitura.add(new Pattern("[CLOSED_HI_HAT]q [ACOUSTIC_BASS_DRUM]q+[CLOSED_HI_HAT]q [ACOUSTIC_SNARE]q+[CLOSED_HI_HAT]q [CLOSED_HI_HAT]q "), 1);
partitura.add(new Pattern("[CLOSED_HI_HAT]q [ACOUSTIC_BASS_DRUM]q+[CLOSED_HI_HAT]q [ACOUSTIC_SNARE]q+[CLOSED_HI_HAT]q [CLOSED_HI_HAT]q "), 1);
partitura.add(new Pattern("[CLOSED_HI_HAT]q [ACOUSTIC_BASS_DRUM]q+[CLOSED_HI_HAT]q [ACOUSTIC_SNARE]q+[CLOSED_HI_HAT]q [CRASH_CYMBAL_2]q "), 1);
}
@Override
public void estrofe() {
partitura.add(new Pattern("[CLOSED_HI_HAT]q [ACOUSTIC_BASS_DRUM]q+[CLOSED_HI_HAT]q [ACOUSTIC_SNARE]q+[CLOSED_HI_HAT]q [CLOSED_HI_HAT]q "), 1);
partitura.add(new Pattern("[CLOSED_HI_HAT]q [ACOUSTIC_BASS_DRUM]q+[CLOSED_HI_HAT]q [ACOUSTIC_SNARE]q+[CLOSED_HI_HAT]q [CLOSED_HI_HAT]q "), 1);
partitura.add(new Pattern(trocaVirada()), 1);
partitura.add(new Pattern("[CLOSED_HI_HAT]q [ACOUSTIC_BASS_DRUM]q+[CLOSED_HI_HAT]q [ACOUSTIC_SNARE]q+[CLOSED_HI_HAT]q [CLOSED_HI_HAT]q "), 1);
partitura.add(new Pattern("[CLOSED_HI_HAT]q [ACOUSTIC_BASS_DRUM]q+[CLOSED_HI_HAT]q [ACOUSTIC_SNARE]q+[CLOSED_HI_HAT]q [CLOSED_HI_HAT]q "), 1);
partitura.add(new Pattern("[CLOSED_HI_HAT]q [ACOUSTIC_BASS_DRUM]q+[CLOSED_HI_HAT]q [ACOUSTIC_SNARE]q+[CLOSED_HI_HAT]q [CLOSED_HI_HAT]q "), 1);
partitura.add(new Pattern("[CLOSED_HI_HAT]q [ACOUSTIC_BASS_DRUM]q+[CLOSED_HI_HAT]q [ACOUSTIC_SNARE]q+[CLOSED_HI_HAT]q [CRASH_CYMBAL_1]q "), 1);
partitura.add(new Pattern("[CLOSED_HI_HAT]q [ACOUSTIC_BASS_DRUM]q+[CLOSED_HI_HAT]q [ACOUSTIC_SNARE]q+[CLOSED_HI_HAT]q [CLOSED_HI_HAT]q "), 1);
partitura.add(new Pattern("[CLOSED_HI_HAT]q [ACOUSTIC_BASS_DRUM]q+[CLOSED_HI_HAT]q [ACOUSTIC_SNARE]q+[CLOSED_HI_HAT]q [CLOSED_HI_HAT]q "), 1);
partitura.add(new Pattern(trocaVirada()), 1);
partitura.add(new Pattern("[CLOSED_HI_HAT]q [ACOUSTIC_BASS_DRUM]q+[CLOSED_HI_HAT]q [ACOUSTIC_SNARE]q+[CLOSED_HI_HAT]q [CLOSED_HI_HAT]q "), 1);
partitura.add(new Pattern("[CLOSED_HI_HAT]q [ACOUSTIC_BASS_DRUM]q+[CLOSED_HI_HAT]q [ACOUSTIC_SNARE]q+[CLOSED_HI_HAT]q [CLOSED_HI_HAT]q "), 1);
partitura.add(new Pattern("[CLOSED_HI_HAT]q [ACOUSTIC_BASS_DRUM]q+[CLOSED_HI_HAT]q [ACOUSTIC_SNARE]q+[CLOSED_HI_HAT]q [CLOSED_HI_HAT]q "), 1);
partitura.add(new Pattern("[CLOSED_HI_HAT]q [ACOUSTIC_BASS_DRUM]q+[CLOSED_HI_HAT]q [ACOUSTIC_SNARE]q+[CLOSED_HI_HAT]q [CRASH_CYMBAL_2]q "), 1);
}
@Override
public void refrao() {
partitura.add(new Pattern("[CLOSED_HI_HAT]q [ACOUSTIC_BASS_DRUM]q+[CLOSED_HI_HAT]q [ACOUSTIC_SNARE]q+[CLOSED_HI_HAT]q [CLOSED_HI_HAT]q "), 1);
partitura.add(new Pattern("[CLOSED_HI_HAT]q [ACOUSTIC_BASS_DRUM]q+[CLOSED_HI_HAT]q [ACOUSTIC_SNARE]q+[CLOSED_HI_HAT]q [CLOSED_HI_HAT]q "), 1);
partitura.add(new Pattern("[CLOSED_HI_HAT]q [ACOUSTIC_BASS_DRUM]q+[CLOSED_HI_HAT]q [ACOUSTIC_SNARE]q+[CLOSED_HI_HAT]q [CLOSED_HI_HAT]q "), 1);
partitura.add(new Pattern("[CLOSED_HI_HAT]q [ACOUSTIC_BASS_DRUM]q+[CLOSED_HI_HAT]q [ACOUSTIC_SNARE]q+[CLOSED_HI_HAT]q [CLOSED_HI_HAT]q "), 1);
partitura.add(new Pattern("[CLOSED_HI_HAT]q [ACOUSTIC_BASS_DRUM]q+[CLOSED_HI_HAT]q [ACOUSTIC_SNARE]q+[CLOSED_HI_HAT]q [CLOSED_HI_HAT]q "), 1);
partitura.add(new Pattern("[CLOSED_HI_HAT]q [ACOUSTIC_BASS_DRUM]q+[CLOSED_HI_HAT]q [ACOUSTIC_SNARE]q+[CLOSED_HI_HAT]q [CLOSED_HI_HAT]q "), 1);
partitura.add(new Pattern("[CLOSED_HI_HAT]q [ACOUSTIC_BASS_DRUM]q+[CLOSED_HI_HAT]q [ACOUSTIC_SNARE]q+[CLOSED_HI_HAT]q [CLOSED_HI_HAT]q "), 1);
partitura.add(new Pattern("[CLOSED_HI_HAT]q [ACOUSTIC_BASS_DRUM]q+[CLOSED_HI_HAT]q [ACOUSTIC_SNARE]q+[CLOSED_HI_HAT]q [CRASH_CYMBAL_2]q "), 1);
}
@Override
public void fim() {
}
private String trocaVirada(){
String escolhas[] = {
"[CLOSED_HI_HAT]q [ACOUSTIC_BASS_DRUM]q+[CLOSED_HI_HAT]q [ACOUSTIC_SNARE]q+[CLOSED_HI_HAT]q [LOW_FLOOR_TOM]i [LOW_MID_TOM]i [LOW_TOM]i Ri [HIGH_FLOOR_TOM]i [HI_MID_TOM]i [HIGH_TOM]i Ri [ACOUSTIC_SNARE]i [CRASH_CYMBAL_1]i ",
"[CLOSED_HI_HAT]q [ACOUSTIC_BASS_DRUM]q+[CLOSED_HI_HAT]q [ACOUSTIC_SNARE]q+[CLOSED_HI_HAT]q [LOW_FLOOR_TOM]i [LOW_MID_TOM]i [LOW_TOM]i [LOW_TOM]i [HIGH_FLOOR_TOM]i [HI_MID_TOM]i [HIGH_TOM]i [HIGH_TOM]i [ACOUSTIC_SNARE]i [CRASH_CYMBAL_2]i ",
"[CLOSED_HI_HAT]q [ACOUSTIC_BASS_DRUM]q+[CLOSED_HI_HAT]q [ACOUSTIC_SNARE]q+[CLOSED_HI_HAT]q [ACOUSTIC_SNARE]i [ACOUSTIC_SNARE]i [ACOUSTIC_SNARE]i Ri [ACOUSTIC_SNARE]i [ACOUSTIC_SNARE]i [ACOUSTIC_SNARE]i Ri [LOW_TOM]i+[HIGH_TOM]i [CRASH_CYMBAL_1]i "
};
Random rand = new Random();
return escolhas[rand.nextInt(escolhas.length)];
}
}
| apache-2.0 |
ofbizfriends/vogue | applications/accounting/src/org/ofbiz/accounting/thirdparty/valuelink/ValueLinkServices.java | 72092 | /*******************************************************************************
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*******************************************************************************/
package org.ofbiz.accounting.thirdparty.valuelink;
import java.math.BigDecimal;
import java.util.List;
import java.util.Locale;
import java.util.Map;
import java.util.Properties;
import javolution.util.FastMap;
import org.ofbiz.base.util.Debug;
import org.ofbiz.base.util.HttpClientException;
import org.ofbiz.base.util.StringUtil;
import org.ofbiz.base.util.UtilDateTime;
import org.ofbiz.base.util.UtilMisc;
import org.ofbiz.base.util.UtilProperties;
import org.ofbiz.base.util.UtilValidate;
import org.ofbiz.entity.Delegator;
import org.ofbiz.entity.GenericEntityException;
import org.ofbiz.entity.GenericValue;
import org.ofbiz.entity.util.EntityQuery;
import org.ofbiz.entity.util.EntityUtilProperties;
import org.ofbiz.order.order.OrderReadHelper;
import org.ofbiz.product.store.ProductStoreWorker;
import org.ofbiz.service.DispatchContext;
import org.ofbiz.service.GenericServiceException;
import org.ofbiz.service.LocalDispatcher;
import org.ofbiz.service.ModelService;
import org.ofbiz.service.ServiceUtil;
/**
* ValueLinkServices - Integration with ValueLink Gift Cards
*/
public class ValueLinkServices {
public static final String module = ValueLinkServices.class.getName();
public final static String resource = "AccountingUiLabels";
public final static String resourceError = "AccountingErrorUiLabels";
public final static String resourceOrder = "OrderUiLabels";
// generate/display new public/private/kek keys
public static Map<String, Object> createKeys(DispatchContext dctx, Map<String, Object> context) {
Delegator delegator = dctx.getDelegator();
Properties props = getProperties(context);
ValueLinkApi vl = ValueLinkApi.getInstance(delegator, props);
vl.reload();
Boolean kekOnly = context.get("kekOnly") != null ? (Boolean) context.get("kekOnly") : Boolean.FALSE;
String kekTest = (String) context.get("kekTest");
Debug.logInfo("KEK Only : " + kekOnly.booleanValue(), module);
StringBuffer buf = vl.outputKeyCreation(kekOnly.booleanValue(), kekTest);
String output = buf.toString();
Debug.logInfo(":: Key Generation Output ::\n\n" + output, module);
Map<String, Object> result = ServiceUtil.returnSuccess();
result.put("output", output);
return result;
}
// test the KEK encryption
public static Map<String, Object> testKekEncryption(DispatchContext dctx, Map<String, Object> context) {
Delegator delegator = dctx.getDelegator();
//GenericValue userLogin = (GenericValue) context.get("userLogin");
Properties props = getProperties(context);
// get an api instance
ValueLinkApi vl = ValueLinkApi.getInstance(delegator, props);
vl.reload();
String testString = (String) context.get("kekTest");
Integer mode = (Integer) context.get("mode");
byte[] testBytes = StringUtil.fromHexString(testString);
// place holder
byte[] testEncryption = null;
String desc = "";
if (mode.intValue() == 1) {
// encrypt the test bytes
testEncryption = vl.encryptViaKek(testBytes);
desc = "Encrypted";
} else {
// decrypt the test bytes
testEncryption = vl.decryptViaKek(testBytes);
desc = "Decrypted";
}
// setup the output
StringBuilder buf = new StringBuilder();
buf.append("======== Begin Test String (").append(testString.length()).append(") ========\n");
buf.append(testString).append("\n");
buf.append("======== End Test String ========\n\n");
buf.append("======== Begin Test Bytes (").append(testBytes.length).append(") ========\n");
buf.append(StringUtil.toHexString(testBytes)).append("\n");
buf.append("======== End Test Bytes ========\n\n");
buf.append("======== Begin Test Bytes ").append(desc).append(" (").append(testEncryption.length).append(") ========\n");
buf.append(StringUtil.toHexString(testEncryption)).append("\n");
buf.append("======== End Test Bytes ").append(desc).append(" ========\n\n");
String output = buf.toString();
Debug.logInfo(":: KEK Test Output ::\n\n" + output, module);
Map<String, Object> result = ServiceUtil.returnSuccess();
result.put("output", output);
return result;
}
// change working key service
public static Map<String, Object> assignWorkingKey(DispatchContext dctx, Map<String, Object> context) {
Delegator delegator = dctx.getDelegator();
GenericValue userLogin = (GenericValue) context.get("userLogin");
Properties props = getProperties(context);
Locale locale = (Locale) context.get("locale");
// get an api instance
ValueLinkApi vl = ValueLinkApi.getInstance(delegator, props);
vl.reload();
// place holder
byte[] mwk = null;
// see if we passed in the DES hex string
String desHexString = (String) context.get("desHexString");
if (UtilValidate.isEmpty(desHexString)) {
mwk = vl.generateMwk();
} else {
mwk = vl.generateMwk(StringUtil.fromHexString(desHexString));
}
// encrypt the mwk
String mwkHex = StringUtil.toHexString(vl.encryptViaKek(mwk));
// build the request
Map<String, Object> request = vl.getInitialRequestMap(context);
request.put("Interface", "Encrypt");
request.put("EncryptKey", mwkHex);
request.put("EncryptID", Long.valueOf(vl.getWorkingKeyIndex().longValue() + 1));
// send the request
Map<String, Object> response = null;
try {
response = vl.send(request);
} catch (HttpClientException e) {
Debug.logError(e, "Problem communicating with VL");
return ServiceUtil.returnError(UtilProperties.getMessage(resource,
"AccountingValueLinkCannotUpdateWorkingKey", locale));
}
Debug.logInfo("Response : " + response, module);
// on success update the database / reload the cached api
if (response != null) {
String responseCode = (String) response.get("responsecode");
if (responseCode.equals("00")) {
GenericValue vlKeys = GenericValue.create(vl.getGenericValue());
vlKeys.set("lastWorkingKey", vlKeys.get("workingKey"));
vlKeys.set("workingKey", StringUtil.toHexString(mwk));
vlKeys.set("workingKeyIndex", request.get("EncryptID"));
vlKeys.set("lastModifiedDate", UtilDateTime.nowTimestamp());
vlKeys.set("lastModifiedByUserLogin", userLogin != null ? userLogin.get("userLoginId") : null);
try {
vlKeys.store();
} catch (GenericEntityException e) {
Debug.logError(e, "Unable to store updated keys; the keys were changed with ValueLink : " + vlKeys, module);
return ServiceUtil.returnError(UtilProperties.getMessage(resource,
"AccountingValueLinkCannotStoreWorkingKey", locale));
}
vl.reload();
return ServiceUtil.returnSuccess();
} else {
return ServiceUtil.returnError(UtilProperties.getMessage(resource,
"AccountingValueLinkTransactionFailed",
UtilMisc.toMap("responseCode", responseCode), locale));
}
} else {
return ServiceUtil.returnError(UtilProperties.getMessage(resource,
"AccountingValueLinkReceivedEmptyResponse", locale));
}
}
public static Map<String, Object> activate(DispatchContext dctx, Map<String, Object> context) {
Delegator delegator = dctx.getDelegator();
Properties props = getProperties(context);
String vlPromoCode = (String) context.get("vlPromoCode");
String cardNumber = (String) context.get("cardNumber");
String pin = (String) context.get("pin");
String currency = (String) context.get("currency");
String orderId = (String) context.get("orderId");
String partyId = (String) context.get("partyId");
BigDecimal amount = (BigDecimal) context.get("amount");
Locale locale = (Locale) context.get("locale");
// override interface for void/rollback
String iFace = (String) context.get("Interface");
// get an api instance
ValueLinkApi vl = ValueLinkApi.getInstance(delegator, props);
Map<String, Object> request = vl.getInitialRequestMap(context);
request.put("Interface", iFace != null ? iFace : "Activate");
if (UtilValidate.isNotEmpty(vlPromoCode)) {
request.put("PromoCode", vlPromoCode);
}
request.put("Amount", vl.getAmount(amount));
request.put("LocalCurr", vl.getCurrency(currency));
if (UtilValidate.isNotEmpty(cardNumber)) {
request.put("CardNo", cardNumber);
}
if (UtilValidate.isNotEmpty(pin)) {
request.put("PIN", vl.encryptPin(pin));
}
// user defined field #1
if (UtilValidate.isNotEmpty(orderId)) {
request.put("User1", orderId);
}
// user defined field #2
if (UtilValidate.isNotEmpty(partyId)) {
request.put("User2", partyId);
}
// set the timeout reversal
setTimeoutReversal(dctx, context, request);
// send the request
Map<String, Object> response = null;
try {
response = vl.send(request);
} catch (HttpClientException e) {
Debug.logError(e, "Problem communicating with VL");
return ServiceUtil.returnError(UtilProperties.getMessage(resource,
"AccountingValueLinkUnableToActivateGiftCard", locale));
}
if (response != null) {
String responseCode = (String) response.get("responsecode");
Map<String, Object> result = ServiceUtil.returnSuccess();
if (responseCode.equals("00")) {
result.put("processResult", Boolean.TRUE);
result.put("pin", vl.decryptPin((String) response.get("pin")));
} else {
result.put("processResult", Boolean.FALSE);
result.put("pin", response.get("PIN"));
}
result.put("responseCode", responseCode);
result.put("authCode", response.get("authcode"));
result.put("cardNumber", response.get("cardno"));
result.put("amount", vl.getAmount((String) response.get("currbal")));
result.put("expireDate", response.get("expiredate"));
result.put("cardClass", response.get("cardclass"));
result.put("referenceNum", response.get("traceno"));
Debug.logInfo("Activate Result : " + result, module);
return result;
} else {
return ServiceUtil.returnError(UtilProperties.getMessage(resource,
"AccountingValueLinkReceivedEmptyResponse", locale));
}
}
public static Map<String, Object> linkPhysicalCard(DispatchContext dctx, Map<String, Object> context) {
Delegator delegator = dctx.getDelegator();
Properties props = getProperties(context);
String virtualCard = (String) context.get("virtualCard");
String virtualPin = (String) context.get("virtualPin");
String physicalCard = (String) context.get("physicalCard");
String physicalPin = (String) context.get("physicalPin");
String partyId = (String) context.get("partyId");
Locale locale = (Locale) context.get("locale");
// get an api instance
ValueLinkApi vl = ValueLinkApi.getInstance(delegator, props);
Map<String, Object> request = vl.getInitialRequestMap(context);
request.put("Interface", "Link");
request.put("VCardNo", virtualCard);
request.put("VPIN", vl.encryptPin(virtualPin));
request.put("PCardNo", physicalCard);
request.put("PPIN", vl.encryptPin(physicalPin));
// user defined field #2
if (UtilValidate.isNotEmpty(partyId)) {
request.put("User2", partyId);
}
// send the request
Map<String, Object> response = null;
try {
response = vl.send(request);
} catch (HttpClientException e) {
Debug.logError(e, "Problem communicating with VL");
return ServiceUtil.returnError(UtilProperties.getMessage(resource,
"AccountingValueLinkUnableToLinkGiftCard", locale));
}
if (response != null) {
String responseCode = (String) response.get("responsecode");
Map<String, Object> result = ServiceUtil.returnSuccess(UtilProperties.getMessage(resource,
"AccountingValueLinkGiftCardActivated", locale));
if (responseCode.equals("00")) {
result.put("processResult", Boolean.TRUE);
} else {
result.put("processResult", Boolean.FALSE);
}
result.put("responseCode", responseCode);
result.put("authCode", response.get("authcode"));
result.put("amount", vl.getAmount((String) response.get("newbal")));
result.put("expireDate", response.get("expiredate"));
result.put("cardClass", response.get("cardclass"));
result.put("referenceNum", response.get("traceno"));
Debug.logInfo("Link Result : " + result, module);
return result;
} else {
return ServiceUtil.returnError(UtilProperties.getMessage(resource,
"AccountingValueLinkReceivedEmptyResponse", locale));
}
}
public static Map<String, Object> disablePin(DispatchContext dctx, Map<String, Object> context) {
Delegator delegator = dctx.getDelegator();
Properties props = getProperties(context);
String cardNumber = (String) context.get("cardNumber");
String pin = (String) context.get("pin");
String orderId = (String) context.get("orderId");
String partyId = (String) context.get("partyId");
BigDecimal amount = (BigDecimal) context.get("amount");
Locale locale = (Locale) context.get("locale");
// get an api instance
ValueLinkApi vl = ValueLinkApi.getInstance(delegator, props);
Map<String, Object> request = vl.getInitialRequestMap(context);
request.put("Interface", "Disable");
request.put("CardNo", cardNumber);
request.put("PIN", vl.encryptPin(pin));
request.put("Amount", vl.getAmount(amount));
// user defined field #1
if (UtilValidate.isNotEmpty(orderId)) {
request.put("User1", orderId);
}
// user defined field #2
if (UtilValidate.isNotEmpty(partyId)) {
request.put("User2", partyId);
}
// send the request
Map<String, Object> response = null;
try {
response = vl.send(request);
} catch (HttpClientException e) {
Debug.logError(e, "Problem communicating with VL");
return ServiceUtil.returnError(UtilProperties.getMessage(resource,
"AccountingValueLinkUnableToDisablePin", locale));
}
if (response != null) {
String responseCode = (String) response.get("responsecode");
Map<String, Object> result = ServiceUtil.returnSuccess(UtilProperties.getMessage(resource,
"AccountingValueLinkPinDisabled", locale));
if (responseCode.equals("00")) {
result.put("processResult", Boolean.TRUE);
} else {
result.put("processResult", Boolean.FALSE);
}
result.put("responseCode", responseCode);
result.put("balance", vl.getAmount((String) response.get("currbal")));
result.put("expireDate", response.get("expiredate"));
result.put("cardClass", response.get("cardclass"));
result.put("referenceNum", response.get("traceno"));
Debug.logInfo("Disable Result : " + result, module);
return result;
} else {
return ServiceUtil.returnError(UtilProperties.getMessage(resource,
"AccountingValueLinkReceivedEmptyResponse", locale));
}
}
public static Map<String, Object> redeem(DispatchContext dctx, Map<String, Object> context) {
Delegator delegator = dctx.getDelegator();
Properties props = getProperties(context);
String cardNumber = (String) context.get("cardNumber");
String pin = (String) context.get("pin");
String currency = (String) context.get("currency");
String orderId = (String) context.get("orderId");
String partyId = (String) context.get("partyId");
BigDecimal amount = (BigDecimal) context.get("amount");
Locale locale = (Locale) context.get("locale");
// override interface for void/rollback
String iFace = (String) context.get("Interface");
// get an api instance
ValueLinkApi vl = ValueLinkApi.getInstance(delegator, props);
Map<String, Object> request = vl.getInitialRequestMap(context);
request.put("Interface", iFace != null ? iFace : "Redeem");
request.put("CardNo", cardNumber);
request.put("PIN", vl.encryptPin(pin));
request.put("Amount", vl.getAmount(amount));
request.put("LocalCurr", vl.getCurrency(currency));
// user defined field #1
if (UtilValidate.isNotEmpty(orderId)) {
request.put("User1", orderId);
}
// user defined field #2
if (UtilValidate.isNotEmpty(partyId)) {
request.put("User2", partyId);
}
// set the timeout reversal
setTimeoutReversal(dctx, context, request);
// send the request
Map<String, Object> response = null;
try {
response = vl.send(request);
} catch (HttpClientException e) {
Debug.logError(e, "Problem communicating with VL");
return ServiceUtil.returnError(UtilProperties.getMessage(resource,
"AccountingValueLinkUnableToRedeemGiftCard", locale));
}
if (response != null) {
String responseCode = (String) response.get("responsecode");
Map<String, Object> result = ServiceUtil.returnSuccess();
if (responseCode.equals("00")) {
result.put("processResult", Boolean.TRUE);
} else {
result.put("processResult", Boolean.FALSE);
}
result.put("responseCode", responseCode);
result.put("authCode", response.get("authcode"));
result.put("previousAmount", vl.getAmount((String) response.get("prevbal")));
result.put("amount", vl.getAmount((String) response.get("newbal")));
result.put("expireDate", response.get("expiredate"));
result.put("cardClass", response.get("cardclass"));
result.put("cashBack", vl.getAmount((String) response.get("cashback")));
result.put("referenceNum", response.get("traceno"));
Debug.logInfo("Redeem Result : " + result, module);
return result;
} else {
return ServiceUtil.returnError(UtilProperties.getMessage(resource,
"AccountingValueLinkReceivedEmptyResponse", locale));
}
}
public static Map<String, Object> reload(DispatchContext dctx, Map<String, Object> context) {
Delegator delegator = dctx.getDelegator();
Properties props = getProperties(context);
String cardNumber = (String) context.get("cardNumber");
String pin = (String) context.get("pin");
String currency = (String) context.get("currency");
String orderId = (String) context.get("orderId");
String partyId = (String) context.get("partyId");
BigDecimal amount = (BigDecimal) context.get("amount");
Locale locale = (Locale) context.get("locale");
// override interface for void/rollback
String iFace = (String) context.get("Interface");
// get an api instance
ValueLinkApi vl = ValueLinkApi.getInstance(delegator, props);
Map<String, Object> request = vl.getInitialRequestMap(context);
request.put("Interface", iFace != null ? iFace : "Reload");
request.put("CardNo", cardNumber);
request.put("PIN", vl.encryptPin(pin));
request.put("Amount", vl.getAmount(amount));
request.put("LocalCurr", vl.getCurrency(currency));
// user defined field #1
if (UtilValidate.isNotEmpty(orderId)) {
request.put("User1", orderId);
}
// user defined field #2
if (UtilValidate.isNotEmpty(partyId)) {
request.put("User2", partyId);
}
// set the timeout reversal
setTimeoutReversal(dctx, context, request);
// send the request
Map<String, Object> response = null;
try {
response = vl.send(request);
} catch (HttpClientException e) {
Debug.logError(e, "Problem communicating with VL");
return ServiceUtil.returnError(UtilProperties.getMessage(resource,
"AccountingValueLinkUnableToReloadGiftCard", locale));
}
if (response != null) {
String responseCode = (String) response.get("responsecode");
Map<String, Object> result = ServiceUtil.returnSuccess();
if (responseCode.equals("00")) {
result.put("processResult", Boolean.TRUE);
} else {
result.put("processResult", Boolean.FALSE);
}
result.put("responseCode", responseCode);
result.put("authCode", response.get("authcode"));
result.put("previousAmount", vl.getAmount((String) response.get("prevbal")));
result.put("amount", vl.getAmount((String) response.get("newbal")));
result.put("expireDate", response.get("expiredate"));
result.put("cardClass", response.get("cardclass"));
result.put("referenceNum", response.get("traceno"));
Debug.logInfo("Reload Result : " + result, module);
return result;
} else {
return ServiceUtil.returnError(UtilProperties.getMessage(resource,
"AccountingValueLinkReceivedEmptyResponse", locale));
}
}
public static Map<String, Object> balanceInquire(DispatchContext dctx, Map<String, Object> context) {
Delegator delegator = dctx.getDelegator();
Properties props = getProperties(context);
String cardNumber = (String) context.get("cardNumber");
String pin = (String) context.get("pin");
String currency = (String) context.get("currency");
String orderId = (String) context.get("orderId");
String partyId = (String) context.get("partyId");
Locale locale = (Locale) context.get("locale");
// get an api instance
ValueLinkApi vl = ValueLinkApi.getInstance(delegator, props);
Map<String, Object> request = vl.getInitialRequestMap(context);
request.put("Interface", "Balance");
request.put("CardNo", cardNumber);
request.put("PIN", vl.encryptPin(pin));
request.put("LocalCurr", vl.getCurrency(currency));
// user defined field #1
if (UtilValidate.isNotEmpty(orderId)) {
request.put("User1", orderId);
}
// user defined field #2
if (UtilValidate.isNotEmpty(partyId)) {
request.put("User2", partyId);
}
// send the request
Map<String, Object> response = null;
try {
response = vl.send(request);
} catch (HttpClientException e) {
Debug.logError(e, "Problem communicating with VL");
return ServiceUtil.returnError(UtilProperties.getMessage(resource,
"AccountingValueLinkUnableToCallBalanceInquiry", locale));
}
if (response != null) {
String responseCode = (String) response.get("responsecode");
Map<String, Object> result = ServiceUtil.returnSuccess();
if (responseCode.equals("00")) {
result.put("processResult", Boolean.TRUE);
} else {
result.put("processResult", Boolean.FALSE);
}
result.put("responseCode", responseCode);
result.put("balance", vl.getAmount((String) response.get("currbal")));
result.put("expireDate", response.get("expiredate"));
result.put("cardClass", response.get("cardclass"));
result.put("referenceNum", response.get("traceno"));
Debug.logInfo("Balance Result : " + result, module);
return result;
} else {
return ServiceUtil.returnError(UtilProperties.getMessage(resource,
"AccountingValueLinkReceivedEmptyResponse", locale));
}
}
public static Map<String, Object> transactionHistory(DispatchContext dctx, Map<String, Object> context) {
Delegator delegator = dctx.getDelegator();
Properties props = getProperties(context);
String cardNumber = (String) context.get("cardNumber");
String pin = (String) context.get("pin");
String orderId = (String) context.get("orderId");
String partyId = (String) context.get("partyId");
Locale locale = (Locale) context.get("locale");
// get an api instance
ValueLinkApi vl = ValueLinkApi.getInstance(delegator, props);
Map<String, Object> request = vl.getInitialRequestMap(context);
request.put("Interface", "History");
request.put("CardNo", cardNumber);
request.put("PIN", vl.encryptPin(pin));
// user defined field #1
if (UtilValidate.isNotEmpty(orderId)) {
request.put("User1", orderId);
}
// user defined field #2
if (UtilValidate.isNotEmpty(partyId)) {
request.put("User2", partyId);
}
// send the request
Map<String, Object> response = null;
try {
response = vl.send(request);
} catch (HttpClientException e) {
Debug.logError(e, "Problem communicating with VL");
return ServiceUtil.returnError(UtilProperties.getMessage(resource,
"AccountingValueLinkUnableToCallHistoryInquiry", locale));
}
if (response != null) {
String responseCode = (String) response.get("responsecode");
Map<String, Object> result = ServiceUtil.returnSuccess();
if (responseCode.equals("00")) {
result.put("processResult", Boolean.TRUE);
} else {
result.put("processResult", Boolean.FALSE);
}
result.put("responseCode", responseCode);
result.put("balance", vl.getAmount((String) response.get("currbal")));
result.put("history", response.get("history"));
result.put("expireDate", response.get("expiredate"));
result.put("cardClass", response.get("cardclass"));
result.put("referenceNum", response.get("traceno"));
Debug.logInfo("History Result : " + result, module);
return result;
} else {
return ServiceUtil.returnError(UtilProperties.getMessage(resource,
"AccountingValueLinkReceivedEmptyResponse", locale));
}
}
public static Map<String, Object> refund(DispatchContext dctx, Map<String, Object> context) {
Delegator delegator = dctx.getDelegator();
Properties props = getProperties(context);
String cardNumber = (String) context.get("cardNumber");
String pin = (String) context.get("pin");
String currency = (String) context.get("currency");
String orderId = (String) context.get("orderId");
String partyId = (String) context.get("partyId");
BigDecimal amount = (BigDecimal) context.get("amount");
Locale locale = (Locale) context.get("locale");
// override interface for void/rollback
String iFace = (String) context.get("Interface");
// get an api instance
ValueLinkApi vl = ValueLinkApi.getInstance(delegator, props);
Map<String, Object> request = vl.getInitialRequestMap(context);
request.put("Interface", iFace != null ? iFace : "Refund");
request.put("CardNo", cardNumber);
request.put("PIN", vl.encryptPin(pin));
request.put("Amount", vl.getAmount(amount));
request.put("LocalCurr", vl.getCurrency(currency));
// user defined field #1
if (UtilValidate.isNotEmpty(orderId)) {
request.put("User1", orderId);
}
// user defined field #2
if (UtilValidate.isNotEmpty(partyId)) {
request.put("User2", partyId);
}
// set the timeout reversal
setTimeoutReversal(dctx, context, request);
// send the request
Map<String, Object> response = null;
try {
response = vl.send(request);
} catch (HttpClientException e) {
Debug.logError(e, "Problem communicating with VL");
return ServiceUtil.returnError(UtilProperties.getMessage(resource,
"AccountingValueLinkUnableToRefundGiftCard", locale));
}
if (response != null) {
String responseCode = (String) response.get("responsecode");
Map<String, Object> result = ServiceUtil.returnSuccess();
if (responseCode.equals("00")) {
result.put("processResult", Boolean.TRUE);
} else {
result.put("processResult", Boolean.FALSE);
}
result.put("responseCode", responseCode);
result.put("authCode", response.get("authcode"));
result.put("previousAmount", vl.getAmount((String) response.get("prevbal")));
result.put("amount", vl.getAmount((String) response.get("newbal")));
result.put("expireDate", response.get("expiredate"));
result.put("cardClass", response.get("cardclass"));
result.put("referenceNum", response.get("traceno"));
Debug.logInfo("Refund Result : " + result, module);
return result;
} else {
return ServiceUtil.returnError(UtilProperties.getMessage(resource,
"AccountingValueLinkReceivedEmptyResponse", locale));
}
}
public static Map<String, Object> voidRedeem(DispatchContext dctx, Map<String, Object> context) {
context.put("Interface", "Redeem/Void");
return redeem(dctx, context);
}
public static Map<String, Object> voidRefund(DispatchContext dctx, Map<String, Object> context) {
context.put("Interface", "Refund/Void");
return refund(dctx, context);
}
public static Map<String, Object> voidReload(DispatchContext dctx, Map<String, Object> context) {
context.put("Interface", "Reload/Void");
return reload(dctx, context);
}
public static Map<String, Object> voidActivate(DispatchContext dctx, Map<String, Object> context) {
context.put("Interface", "Activate/Void");
return activate(dctx, context);
}
public static Map<String, Object> timeOutReversal(DispatchContext dctx, Map<String, Object> context) {
String vlInterface = (String) context.get("Interface");
Locale locale = (Locale) context.get("locale");
Debug.logInfo("704 Interface : " + vlInterface, module);
if (vlInterface != null) {
if (vlInterface.startsWith("Activate")) {
if (vlInterface.equals("Activate/Rollback")) {
return ServiceUtil.returnError(UtilProperties.getMessage(resource,
"AccountingValueLinkThisTransactionIsNotSupported", locale));
}
return activate(dctx, context);
} else if (vlInterface.startsWith("Redeem")) {
return redeem(dctx, context);
} else if (vlInterface.startsWith("Reload")) {
return reload(dctx, context);
} else if (vlInterface.startsWith("Refund")) {
return refund(dctx, context);
}
}
return ServiceUtil.returnError(UtilProperties.getMessage(resource,
"AccountingValueLinkTransactionNotValid", locale));
}
// 0704 Timeout Reversal (Supports - Activate/Void, Redeem, Redeem/Void, Reload, Reload/Void, Refund, Refund/Void)
private static void setTimeoutReversal(DispatchContext dctx, Map<String, Object> ctx, Map<String, Object> request) {
String vlInterface = (String) request.get("Interface");
// clone the context
Map<String, Object> context = FastMap.newInstance();
context.putAll(ctx);
// append the rollback interface
if (!vlInterface.endsWith("Rollback")) {
context.put("Interface", vlInterface + "/Rollback");
} else {
// no need to re-run ourself we are persisted
return;
}
// set the old tx time and number
context.put("MerchTime", request.get("MerchTime"));
context.put("TermTxnNo", request.get("TermTxnNo"));
// Activate/Rollback is not supported by valuelink
if (!vlInterface.equals("Activate")) {
// create the listener
Debug.logInfo("Set 704 context : " + context, module);
try {
dctx.getDispatcher().addRollbackService("vlTimeOutReversal", context, false);
//dctx.getDispatcher().addCommitService("vlTimeOutReversal", context, false);
} catch (GenericServiceException e) {
Debug.logError(e, "Unable to setup 0704 Timeout Reversal", module);
}
}
}
private static Properties getProperties(Map<String, Object> context) {
String paymentProperties = (String) context.get("paymentConfig");
if (paymentProperties == null) {
paymentProperties = "payment.properties";
}
return UtilProperties.getProperties(paymentProperties);
}
// payment processing wrappers (process/release/refund)
public static Map<String, Object> giftCardProcessor(DispatchContext dctx, Map<String, Object> context) {
Delegator delegator = dctx.getDelegator();
LocalDispatcher dispatcher = dctx.getDispatcher();
GenericValue userLogin = (GenericValue) context.get("userLogin");
Locale locale = (Locale) context.get("locale");
GenericValue giftCard = (GenericValue) context.get("giftCard");
GenericValue party = (GenericValue) context.get("billToParty");
String paymentConfig = (String) context.get("paymentConfig");
String currency = (String) context.get("currency");
String orderId = (String) context.get("orderId");
BigDecimal amount = (BigDecimal) context.get("processAmount");
// make sure we have a currency
if (currency == null) {
currency = EntityUtilProperties.getPropertyValue("general.properties", "currency.uom.id.default", "USD", delegator);
}
Map<String, Object> redeemCtx = FastMap.newInstance();
redeemCtx.put("userLogin", userLogin);
redeemCtx.put("paymentConfig", paymentConfig);
redeemCtx.put("cardNumber", giftCard.get("cardNumber"));
redeemCtx.put("pin", giftCard.get("pinNumber"));
redeemCtx.put("currency", currency);
redeemCtx.put("orderId", orderId);
redeemCtx.put("partyId", party.get("partyId"));
redeemCtx.put("amount", amount);
// invoke the redeem service
Map<String, Object> redeemResult = null;
try {
redeemResult = dispatcher.runSync("redeemGiftCard", redeemCtx);
} catch (GenericServiceException e) {
Debug.logError(e, "Problem calling the redeem service", module);
return ServiceUtil.returnError(UtilProperties.getMessage(resource,
"AccountingValueLinkUnableToRedeemGiftCardFailure", locale));
}
Map<String, Object> result = ServiceUtil.returnSuccess();
if (redeemResult != null) {
Boolean processResult = (Boolean) redeemResult.get("processResult");
// confirm the amount redeemed; since VL does not error in insufficient funds
if (processResult.booleanValue()) {
BigDecimal previous = (BigDecimal) redeemResult.get("previousAmount");
if (previous == null) previous = BigDecimal.ZERO;
BigDecimal current = (BigDecimal) redeemResult.get("amount");
if (current == null) current = BigDecimal.ZERO;
BigDecimal redeemed = previous.subtract(current);
Debug.logInfo("Redeemed (" + amount + "): " + redeemed + " / " + previous + " : " + current, module);
if (redeemed.compareTo(amount) < 0) {
// we didn't redeem enough void the transaction and return false
Map<String, Object> voidResult = null;
try {
voidResult = dispatcher.runSync("voidRedeemGiftCard", redeemCtx);
} catch (GenericServiceException e) {
Debug.logError(e, module);
}
if (ServiceUtil.isError(voidResult)) {
return voidResult;
}
processResult = Boolean.FALSE;
amount = redeemed;
result.put("authMessage", "Gift card did not contain enough funds");
}
}
result.put("processAmount", amount);
result.put("authFlag", redeemResult.get("responseCode"));
result.put("authResult", processResult);
result.put("captureResult", processResult);
result.put("authCode", redeemResult.get("authCode"));
result.put("captureCode", redeemResult.get("authCode"));
result.put("authRefNum", redeemResult.get("referenceNum"));
result.put("captureRefNum", redeemResult.get("referenceNum"));
}
return result;
}
public static Map<String, Object> giftCardRelease(DispatchContext dctx, Map<String, Object> context) {
Delegator delegator = dctx.getDelegator();
LocalDispatcher dispatcher = dctx.getDispatcher();
GenericValue userLogin = (GenericValue) context.get("userLogin");
Locale locale = (Locale) context.get("locale");
GenericValue paymentPref = (GenericValue) context.get("orderPaymentPreference");
String paymentConfig = (String) context.get("paymentConfig");
String currency = (String) context.get("currency");
BigDecimal amount = (BigDecimal) context.get("releaseAmount");
// get the orderId for tracking
String orderId = paymentPref.getString("orderId");
// get the GiftCard VO
GenericValue giftCard = null;
try {
giftCard = paymentPref.getRelatedOne("GiftCard", false);
} catch (GenericEntityException e) {
Debug.logError("Unable to get GiftCard from OrderPaymentPreference", module);
return ServiceUtil.returnError(UtilProperties.getMessage(resourceError,
"AccountingGiftCerticateNumberCannotLocateItFromOrderPaymentPreference", locale));
}
if (giftCard == null) {
return ServiceUtil.returnError(UtilProperties.getMessage(resource,
"AccountingValueLinkUnableToReleaseGiftCard", locale));
}
// make sure we have a currency
if (currency == null) {
currency = EntityUtilProperties.getPropertyValue("general.properties", "currency.uom.id.default", "USD", delegator);
}
Map<String, Object> redeemCtx = FastMap.newInstance();
redeemCtx.put("userLogin", userLogin);
redeemCtx.put("paymentConfig", paymentConfig);
redeemCtx.put("cardNumber", giftCard.get("cardNumber"));
redeemCtx.put("pin", giftCard.get("pinNumber"));
redeemCtx.put("currency", currency);
redeemCtx.put("orderId", orderId);
redeemCtx.put("amount", amount);
// invoke the void redeem service
Map<String, Object> redeemResult = null;
try {
redeemResult = dispatcher.runSync("voidRedeemGiftCard", redeemCtx);
} catch (GenericServiceException e) {
Debug.logError(e, "Problem calling the redeem service", module);
return ServiceUtil.returnError(UtilProperties.getMessage(resource,
"AccountingValueLinkUnableToRedeemGiftCardFailure", locale));
}
Map<String, Object> result = ServiceUtil.returnSuccess();
if (redeemResult != null) {
Boolean processResult = (Boolean) redeemResult.get("processResult");
result.put("releaseAmount", redeemResult.get("amount"));
result.put("releaseFlag", redeemResult.get("responseCode"));
result.put("releaseResult", processResult);
result.put("releaseCode", redeemResult.get("authCode"));
result.put("releaseRefNum", redeemResult.get("referenceNum"));
}
return result;
}
public static Map<String, Object> giftCardRefund(DispatchContext dctx, Map<String, Object> context) {
Delegator delegator = dctx.getDelegator();
LocalDispatcher dispatcher = dctx.getDispatcher();
GenericValue userLogin = (GenericValue) context.get("userLogin");
Locale locale = (Locale) context.get("locale");
GenericValue paymentPref = (GenericValue) context.get("orderPaymentPreference");
String paymentConfig = (String) context.get("paymentConfig");
String currency = (String) context.get("currency");
BigDecimal amount = (BigDecimal) context.get("refundAmount");
// get the orderId for tracking
String orderId = paymentPref.getString("orderId");
// get the GiftCard VO
GenericValue giftCard = null;
try {
giftCard = paymentPref.getRelatedOne("GiftCard", false);
} catch (GenericEntityException e) {
Debug.logError("Unable to get GiftCard from OrderPaymentPreference", module);
return ServiceUtil.returnError(UtilProperties.getMessage(resourceError,
"AccountingGiftCerticateNumberCannotLocateItFromOrderPaymentPreference", locale));
}
if (giftCard == null) {
return ServiceUtil.returnError(UtilProperties.getMessage(resource,
"AccountingValueLinkUnableToReleaseGiftCard", locale));
}
// make sure we have a currency
if (currency == null) {
currency = EntityUtilProperties.getPropertyValue("general.properties", "currency.uom.id.default", "USD", delegator);
}
Map<String, Object> refundCtx = FastMap.newInstance();
refundCtx.put("userLogin", userLogin);
refundCtx.put("paymentConfig", paymentConfig);
refundCtx.put("cardNumber", giftCard.get("cardNumber"));
refundCtx.put("pin", giftCard.get("pinNumber"));
refundCtx.put("currency", currency);
refundCtx.put("orderId", orderId);
refundCtx.put("amount", amount);
// invoke the refund service
Map<String, Object> redeemResult = null;
try {
redeemResult = dispatcher.runSync("refundGiftCard", refundCtx);
} catch (GenericServiceException e) {
Debug.logError(e, "Problem calling the refund service", module);
return ServiceUtil.returnError(UtilProperties.getMessage(resource,
"AccountingValueLinkUnableToRefundGiftCardFailure", locale));
}
Map<String, Object> result = ServiceUtil.returnSuccess();
if (redeemResult != null) {
Boolean processResult = (Boolean) redeemResult.get("processResult");
result.put("refundAmount", redeemResult.get("amount"));
result.put("refundFlag", redeemResult.get("responseCode"));
result.put("refundResult", processResult);
result.put("refundCode", redeemResult.get("authCode"));
result.put("refundRefNum", redeemResult.get("referenceNum"));
}
return result;
}
// item fulfillment wrappers (purchase/reload)
public static Map<String, Object> giftCardPurchase(DispatchContext dctx, Map<String, Object> context) {
// this service should always be called via FULFILLMENT_EXTASYNC
LocalDispatcher dispatcher = dctx.getDispatcher();
Delegator delegator = dctx.getDelegator();
GenericValue userLogin = (GenericValue) context.get("userLogin");
GenericValue orderItem = (GenericValue) context.get("orderItem");
Locale locale = (Locale) context.get("locale");
// order ID for tracking
String orderId = orderItem.getString("orderId");
// the order header for store info
GenericValue orderHeader = null;
try {
orderHeader = orderItem.getRelatedOne("OrderHeader", false);
} catch (GenericEntityException e) {
Debug.logError(e, "Unable to get OrderHeader from OrderItem",module);
return ServiceUtil.returnError(UtilProperties.getMessage(resourceOrder,
"OrderOrderNotFound", UtilMisc.toMap("orderId", orderId), locale));
}
// get the order read helper
OrderReadHelper orh = new OrderReadHelper(orderHeader);
// get the currency
String currency = orh.getCurrency();
// make sure we have a currency
if (currency == null) {
currency = EntityUtilProperties.getPropertyValue("general.properties", "currency.uom.id.default", "USD", delegator);
}
// get the product store
String productStoreId = null;
if (orderHeader != null) {
productStoreId = orh.getProductStoreId();
}
if (productStoreId == null) {
return ServiceUtil.returnError(UtilProperties.getMessage(resourceError,
"AccountingGiftCerticateNumberCannotProcess", locale));
}
// payment config
GenericValue paymentSetting = ProductStoreWorker.getProductStorePaymentSetting(delegator, productStoreId, "GIFT_CARD", null, true);
String paymentConfig = null;
if (paymentSetting != null) {
paymentConfig = paymentSetting.getString("paymentPropertiesPath");
}
if (paymentConfig == null) {
return ServiceUtil.returnError(UtilProperties.getMessage(resourceError,
"AccountingFinAccountSetting",
UtilMisc.toMap("productStoreId", productStoreId, "finAccountTypeId", "GIFT_CARD"), locale));
}
// party ID for tracking
GenericValue placingParty = orh.getPlacingParty();
String partyId = null;
if (placingParty != null) {
partyId = placingParty.getString("partyId");
}
// amount/quantity of the gift card(s)
BigDecimal amount = orderItem.getBigDecimal("unitPrice");
BigDecimal quantity = orderItem.getBigDecimal("quantity");
// the product entity needed for information
GenericValue product = null;
try {
product = orderItem.getRelatedOne("Product", false);
} catch (GenericEntityException e) {
Debug.logError("Unable to get Product from OrderItem", module);
}
if (product == null) {
return ServiceUtil.returnError(UtilProperties.getMessage(resourceError,
"AccountingGiftCerticateNumberCannotFulfill", locale));
}
// get the productFeature type TYPE (VL promo code)
GenericValue typeFeature = null;
try {
typeFeature = EntityQuery.use(delegator)
.from("ProductFeatureAndAppl")
.where("productId", product.get("productId"),
"productFeatureTypeId", "TYPE")
.orderBy("-fromDate").filterByDate().queryFirst();
} catch (GenericEntityException e) {
Debug.logError(e, module);
return ServiceUtil.returnError(UtilProperties.getMessage(resource,
"AccountingValueLinkUnableToGetFeatureType", locale));
}
if (typeFeature == null) {
return ServiceUtil.returnError(UtilProperties.getMessage(resource,
"AccountingValueLinkFeatureTypeRequested",
UtilMisc.toMap("productId", product.get("productId")), locale));
}
// get the VL promo code
String promoCode = typeFeature.getString("idCode");
if (UtilValidate.isEmpty(promoCode)) {
return ServiceUtil.returnError(UtilProperties.getMessage(resource,
"AccountingValueLinkPromoCodeInvalid", locale));
}
// survey information
String surveyId = EntityUtilProperties.getPropertyValue(paymentConfig, "payment.giftcert.purchase.surveyId", delegator);
// get the survey response
GenericValue surveyResponse = null;
try {
surveyResponse = EntityQuery.use(delegator).from("SurveyResponse")
.where("orderId", orderId,
"orderItemSeqId", orderItem.get("orderItemSeqId"),
"surveyId", surveyId)
.queryFirst();
} catch (GenericEntityException e) {
Debug.logError(e, module);
return ServiceUtil.returnError(UtilProperties.getMessage(resourceError,
"AccountingGiftCerticateNumberCannotFulfill", locale));
}
// get the response answers
List<GenericValue> responseAnswers = null;
try {
responseAnswers = surveyResponse.getRelated("SurveyResponseAnswer", null, null, false);
} catch (GenericEntityException e) {
Debug.logError(e, module);
return ServiceUtil.returnError(UtilProperties.getMessage(resourceError,
"AccountingGiftCerticateNumberCannotFulfillFromSurveyAnswers", locale));
}
// make a map of answer info
Map<String, Object> answerMap = FastMap.newInstance();
if (responseAnswers != null) {
for (GenericValue answer : responseAnswers) {
GenericValue question = null;
try {
question = answer.getRelatedOne("SurveyQuestion", false);
} catch (GenericEntityException e) {
Debug.logError(e, module);
return ServiceUtil.returnError(UtilProperties.getMessage(resourceError,
"AccountingGiftCerticateNumberCannotFulfillFromSurveyAnswers", locale));
}
if (question != null) {
String desc = question.getString("description");
String ans = answer.getString("textResponse"); // only support text response types for now
answerMap.put(desc, ans);
}
}
}
// get the send to email address - key defined in properties file
String sendToKey = EntityUtilProperties.getPropertyValue(paymentConfig, "payment.giftcert.purchase.survey.sendToEmail", delegator);
String sendToEmail = (String) answerMap.get(sendToKey);
// get the copyMe flag and set the order email address
String orderEmails = orh.getOrderEmailString();
String copyMeField = EntityUtilProperties.getPropertyValue(paymentConfig, "payment.giftcert.purchase.survey.copyMe", delegator);
String copyMeResp = copyMeField != null ? (String) answerMap.get(copyMeField) : null;
boolean copyMe = (UtilValidate.isNotEmpty(copyMeField)
&& UtilValidate.isNotEmpty(copyMeResp) && "true".equalsIgnoreCase(copyMeResp)) ? true : false;
int qtyLoop = quantity.intValue();
for (int i = 0; i < qtyLoop; i++) {
// activate a gift card
Map<String, Object> activateCtx = FastMap.newInstance();
activateCtx.put("paymentConfig", paymentConfig);
activateCtx.put("vlPromoCode", promoCode);
activateCtx.put("currency", currency);
activateCtx.put("partyId", partyId);
activateCtx.put("orderId", orderId);
activateCtx.put("amount", amount);
activateCtx.put("userLogin", userLogin);
boolean failure = false;
Map<String, Object> activateResult = null;
try {
activateResult = dispatcher.runSync("activateGiftCard", activateCtx);
} catch (GenericServiceException e) {
Debug.logError(e, "Unable to activate gift card(s)", module);
return ServiceUtil.returnError(UtilProperties.getMessage(resource,
"AccountingValueLinkUnableToActivateGiftCard", locale));
}
Boolean processResult = (Boolean) activateResult.get("processResult");
if (activateResult == null || activateResult.containsKey(ModelService.ERROR_MESSAGE) || !processResult.booleanValue()) {
failure = true;
}
if (!failure) {
// set the void on rollback
try {
dispatcher.addRollbackService("voidActivateGiftCard", activateCtx, false);
} catch (GenericServiceException e) {
Debug.logError(e, "Unable to setup Activate/Void on error", module);
}
}
// create the fulfillment record
Map<String, Object> vlFulFill = FastMap.newInstance();
vlFulFill.put("typeEnumId", "GC_ACTIVATE");
vlFulFill.put("merchantId", EntityUtilProperties.getPropertyValue(paymentConfig, "payment.valuelink.merchantId", delegator));
vlFulFill.put("partyId", partyId);
vlFulFill.put("orderId", orderId);
vlFulFill.put("orderItemSeqId", orderItem.get("orderItemSeqId"));
vlFulFill.put("surveyResponseId", surveyResponse.get("surveyResponseId"));
vlFulFill.put("cardNumber", activateResult.get("cardNumber"));
vlFulFill.put("pinNumber", activateResult.get("pin"));
vlFulFill.put("amount", activateResult.get("amount"));
vlFulFill.put("responseCode", activateResult.get("responseCode"));
vlFulFill.put("referenceNum", activateResult.get("referenceNum"));
vlFulFill.put("authCode", activateResult.get("authCode"));
vlFulFill.put("userLogin", userLogin);
try {
dispatcher.runAsync("createGcFulFillmentRecord", vlFulFill, true);
} catch (GenericServiceException e) {
Debug.logError(e, module);
return ServiceUtil.returnError(UtilProperties.getMessage(resourceError,
"AccountingGiftCerticateNumberCannotStoreFulfillmentInfo",
UtilMisc.toMap("errorString", e.toString() ), locale));
}
if (failure) {
return ServiceUtil.returnError(UtilProperties.getMessage(resource,
"AccountingValueLinkUnableToActivateGiftCard", locale));
}
// add some information to the answerMap for the email
answerMap.put("cardNumber", activateResult.get("cardNumber"));
answerMap.put("pinNumber", activateResult.get("pin"));
answerMap.put("amount", activateResult.get("amount"));
// get the email setting for this email type
GenericValue productStoreEmail = null;
String emailType = "PRDS_GC_PURCHASE";
try {
productStoreEmail = EntityQuery.use(delegator).from("ProductStoreEmailSetting").where("productStoreId", productStoreId, "emailType", emailType).queryOne();
} catch (GenericEntityException e) {
Debug.logError(e, "Unable to get product store email setting for gift card purchase", module);
}
if (productStoreEmail == null) {
Debug.logError("No gift card purchase email setting found for this store; cannot send gift card information", module);
} else {
answerMap.put("locale", locale);
// set the bcc address(s)
String bcc = productStoreEmail.getString("bccAddress");
if (copyMe) {
if (UtilValidate.isNotEmpty(bcc)) {
bcc = bcc + "," + orderEmails;
} else {
bcc = orderEmails;
}
}
Map<String, Object> emailCtx = FastMap.newInstance();
String bodyScreenLocation = productStoreEmail.getString("bodyScreenLocation");
if (UtilValidate.isEmpty(bodyScreenLocation)) {
bodyScreenLocation = ProductStoreWorker.getDefaultProductStoreEmailScreenLocation(emailType);
}
emailCtx.put("bodyScreenUri", bodyScreenLocation);
emailCtx.put("bodyParameters", answerMap);
emailCtx.put("sendTo", sendToEmail);
emailCtx.put("contentType", productStoreEmail.get("contentType"));
emailCtx.put("sendFrom", productStoreEmail.get("fromAddress"));
emailCtx.put("sendCc", productStoreEmail.get("ccAddress"));
emailCtx.put("sendBcc", bcc);
emailCtx.put("subject", productStoreEmail.getString("subject"));
emailCtx.put("userLogin", userLogin);
// send off the email async so we will retry on failed attempts
try {
dispatcher.runAsync("sendMailFromScreen", emailCtx);
} catch (GenericServiceException e) {
Debug.logError(e, "Problem sending mail", module);
// this is fatal; we will rollback and try again later
return ServiceUtil.returnError(UtilProperties.getMessage(resourceError,
"AccountingGiftCerticateNumberCannotSendEmailNotice",
UtilMisc.toMap("errorString", e.toString()), locale));
}
}
}
return ServiceUtil.returnSuccess();
}
public static Map<String, Object> giftCardReload(DispatchContext dctx, Map<String, Object> context) {
// this service should always be called via FULFILLMENT_EXTSYNC
LocalDispatcher dispatcher = dctx.getDispatcher();
Delegator delegator = dctx.getDelegator();
GenericValue userLogin = (GenericValue) context.get("userLogin");
GenericValue orderItem = (GenericValue) context.get("orderItem");
Locale locale = (Locale) context.get("locale");
// order ID for tracking
String orderId = orderItem.getString("orderId");
// the order header for store info
GenericValue orderHeader = null;
try {
orderHeader = orderItem.getRelatedOne("OrderHeader", false);
} catch (GenericEntityException e) {
Debug.logError(e, "Unable to get OrderHeader from OrderItem",module);
return ServiceUtil.returnError(UtilProperties.getMessage(resourceOrder,
"OrderOrderNotFound", UtilMisc.toMap("orderId", orderId), locale));
}
// get the order read helper
OrderReadHelper orh = new OrderReadHelper(orderHeader);
// get the currency
String currency = orh.getCurrency();
// make sure we have a currency
if (currency == null) {
currency = EntityUtilProperties.getPropertyValue("general.properties", "currency.uom.id.default", "USD", delegator);
}
// get the product store
String productStoreId = null;
if (orderHeader != null) {
productStoreId = orh.getProductStoreId();
}
if (productStoreId == null) {
return ServiceUtil.returnError(UtilProperties.getMessage(resourceError,
"AccountingGiftCerticateNumberCannotProcess",
UtilMisc.toMap("orderId", orderId), locale));
}
// payment config
GenericValue paymentSetting = ProductStoreWorker.getProductStorePaymentSetting(delegator, productStoreId, "GIFT_CARD", null, true);
String paymentConfig = null;
if (paymentSetting != null) {
paymentConfig = paymentSetting.getString("paymentPropertiesPath");
}
if (paymentConfig == null) {
return ServiceUtil.returnError(UtilProperties.getMessage(resourceError,
"AccountingGiftCerticateNumberCannotGetPaymentConfiguration", locale));
}
// party ID for tracking
GenericValue placingParty = orh.getPlacingParty();
String partyId = null;
if (placingParty != null) {
partyId = placingParty.getString("partyId");
}
// amount of the gift card reload
BigDecimal amount = orderItem.getBigDecimal("unitPrice");
// survey information
String surveyId = EntityUtilProperties.getPropertyValue(paymentConfig, "payment.giftcert.reload.surveyId", delegator);
// get the survey response
GenericValue surveyResponse = null;
try {
surveyResponse = EntityQuery.use(delegator).from("SurveyResponse")
.where("orderId", orderId,
"orderItemSeqId", orderItem.get("orderItemSeqId"),
"surveyId", surveyId).orderBy("-responseDate")
.queryFirst();
} catch (GenericEntityException e) {
Debug.logError(e, module);
return ServiceUtil.returnError(UtilProperties.getMessage(resourceError,
"AccountingGiftCerticateNumberCannotFulfill", locale));
}
// get the response answers
List<GenericValue> responseAnswers = null;
try {
responseAnswers = surveyResponse.getRelated("SurveyResponseAnswer", null, null, false);
} catch (GenericEntityException e) {
Debug.logError(e, module);
return ServiceUtil.returnError(UtilProperties.getMessage(resourceError,
"AccountingGiftCerticateNumberCannotFulfillFromSurveyAnswers", locale));
}
// make a map of answer info
Map<String, Object> answerMap = FastMap.newInstance();
if (responseAnswers != null) {
for (GenericValue answer : responseAnswers) {
GenericValue question = null;
try {
question = answer.getRelatedOne("SurveyQuestion", false);
} catch (GenericEntityException e) {
Debug.logError(e, module);
return ServiceUtil.returnError(UtilProperties.getMessage(resourceError,
"AccountingGiftCerticateNumberCannotFulfillFromSurveyAnswers", locale));
}
if (question != null) {
String desc = question.getString("description");
String ans = answer.getString("textResponse"); // only support text response types for now
answerMap.put(desc, ans);
}
}
}
String cardNumberKey = EntityUtilProperties.getPropertyValue(paymentConfig, "payment.giftcert.reload.survey.cardNumber", delegator);
String pinNumberKey = EntityUtilProperties.getPropertyValue(paymentConfig, "payment.giftcert.reload.survey.pinNumber", delegator);
String cardNumber = (String) answerMap.get(cardNumberKey);
String pinNumber = (String) answerMap.get(pinNumberKey);
// reload the gift card
Map<String, Object> reloadCtx = FastMap.newInstance();
reloadCtx.put("paymentConfig", paymentConfig);
reloadCtx.put("currency", currency);
reloadCtx.put("partyId", partyId);
reloadCtx.put("orderId", orderId);
reloadCtx.put("cardNumber", cardNumber);
reloadCtx.put("pin", pinNumber);
reloadCtx.put("amount", amount);
reloadCtx.put("userLogin", userLogin);
Map<String, Object> reloadResult = null;
try {
reloadResult = dispatcher.runSync("reloadGiftCard", reloadCtx);
} catch (GenericServiceException e) {
Debug.logError(e, "Unable to reload gift card", module);
return ServiceUtil.returnError(UtilProperties.getMessage(resource,
"AccountingValueLinkUnableToReloadGiftCard", locale));
}
// create the fulfillment record
Map<String, Object> vlFulFill = FastMap.newInstance();
vlFulFill.put("typeEnumId", "GC_RELOAD");
vlFulFill.put("merchantId", EntityUtilProperties.getPropertyValue(paymentConfig, "payment.valuelink.merchantId", delegator));
vlFulFill.put("partyId", partyId);
vlFulFill.put("orderId", orderId);
vlFulFill.put("orderItemSeqId", orderItem.get("orderItemSeqId"));
vlFulFill.put("surveyResponseId", surveyResponse.get("surveyResponseId"));
vlFulFill.put("cardNumber", cardNumber);
vlFulFill.put("pinNumber", pinNumber);
vlFulFill.put("amount", amount);
vlFulFill.put("responseCode", reloadResult.get("responseCode"));
vlFulFill.put("referenceNum", reloadResult.get("referenceNum"));
vlFulFill.put("authCode", reloadResult.get("authCode"));
vlFulFill.put("userLogin", userLogin);
try {
dispatcher.runAsync("createGcFulFillmentRecord", vlFulFill, true);
} catch (GenericServiceException e) {
Debug.logError(e, module);
return ServiceUtil.returnError(UtilProperties.getMessage(resourceError,
"AccountingGiftCerticateNumberCannotStoreFulfillmentInfo", locale));
}
Boolean processResult = (Boolean) reloadResult.get("processResult");
if (reloadResult == null || reloadResult.containsKey(ModelService.ERROR_MESSAGE) || !processResult.booleanValue()) {
Debug.logError("Reload Failed Need to Refund : " + reloadResult, module);
// process the return
try {
Map<String, Object> refundCtx = UtilMisc.<String, Object>toMap("orderItem", orderItem,
"partyId", partyId, "userLogin", userLogin);
dispatcher.runAsync("refundGcPurchase", refundCtx, null, true, 300, true);
} catch (GenericServiceException e) {
Debug.logError(e, "ERROR! Unable to call create refund service; this failed reload will NOT be refunded", module);
}
String responseCode = "-1";
if (processResult != null) {
responseCode = (String) reloadResult.get("responseCode");
}
if ("17".equals(responseCode)) {
Debug.logError("Error code : " + responseCode + " : Max Balance Exceeded", module);
return ServiceUtil.returnError(UtilProperties.getMessage(resource,
"AccountingValueLinkUnableToRefundGiftCardMaxBalanceExceeded", locale));
} else {
Debug.logError("Error code : " + responseCode + " : Processing Error", module);
return ServiceUtil.returnError(UtilProperties.getMessage(resource,
"AccountingValueLinkUnableToReloadGiftCardFailed", locale));
}
}
// add some information to the answerMap for the email
answerMap.put("processResult", reloadResult.get("processResult"));
answerMap.put("responseCode", reloadResult.get("responseCode"));
answerMap.put("previousAmount", reloadResult.get("previousAmount"));
answerMap.put("amount", reloadResult.get("amount"));
// get the email setting for this email type
GenericValue productStoreEmail = null;
String emailType = "PRDS_GC_RELOAD";
try {
productStoreEmail = EntityQuery.use(delegator).from("ProductStoreEmailSetting").where("productStoreId", productStoreId, "emailType", emailType).queryOne();
} catch (GenericEntityException e) {
Debug.logError(e, "Unable to get product store email setting for gift card purchase", module);
}
if (productStoreEmail == null) {
Debug.logError("No gift card purchase email setting found for this store; cannot send gift card information", module);
} else {
Map<String, Object> emailCtx = FastMap.newInstance();
answerMap.put("locale", locale);
String bodyScreenLocation = productStoreEmail.getString("bodyScreenLocation");
if (UtilValidate.isEmpty(bodyScreenLocation)) {
bodyScreenLocation = ProductStoreWorker.getDefaultProductStoreEmailScreenLocation(emailType);
}
emailCtx.put("bodyScreenUri", bodyScreenLocation);
emailCtx.put("bodyParameters", answerMap);
emailCtx.put("sendTo", orh.getOrderEmailString());
emailCtx.put("contentType", productStoreEmail.get("contentType"));
emailCtx.put("sendFrom", productStoreEmail.get("fromAddress"));
emailCtx.put("sendCc", productStoreEmail.get("ccAddress"));
emailCtx.put("sendBcc", productStoreEmail.get("bccAddress"));
emailCtx.put("subject", productStoreEmail.getString("subject"));
emailCtx.put("userLogin", userLogin);
// send off the email async so we will retry on failed attempts
try {
dispatcher.runAsync("sendMailFromScreen", emailCtx);
} catch (GenericServiceException e) {
Debug.logError(e, "Problem sending mail", module);
// this is fatal; we will rollback and try again later
return ServiceUtil.returnError(UtilProperties.getMessage(resource,
"AccountingGiftCerticateNumberCannotSendEmailNotice",
UtilMisc.toMap("errorString", e.toString()), locale));
}
}
return ServiceUtil.returnSuccess();
}
}
| apache-2.0 |
mohanaraosv/commons-ognl | src/main/java/org/apache/commons/ognl/ASTList.java | 7472 | package org.apache.commons.ognl;
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
import org.apache.commons.ognl.enhance.ExpressionCompiler;
import org.apache.commons.ognl.enhance.OgnlExpressionCompiler;
import org.apache.commons.ognl.enhance.UnsupportedCompilationException;
import java.util.ArrayList;
import java.util.List;
/**
* $Id$
*/
public class ASTList
extends SimpleNode
implements NodeType
{
public ASTList( int id )
{
super( id );
}
public ASTList( OgnlParser p, int id )
{
super( p, id );
}
protected Object getValueBody( OgnlContext context, Object source )
throws OgnlException
{
List answer = new ArrayList( jjtGetNumChildren() );
for ( int i = 0; i < jjtGetNumChildren(); ++i )
{
answer.add( children[i].getValue( context, source ) );
}
return answer;
}
public Class getGetterClass()
{
return null;
}
public Class getSetterClass()
{
return null;
}
public String toGetSourceString( OgnlContext context, Object target )
{
String result = "";
boolean array = false;
if ( parent != null && ASTCtor.class.isInstance( parent ) && ( (ASTCtor) parent ).isArray() )
{
array = true;
}
context.setCurrentType( List.class );
context.setCurrentAccessor( List.class );
if ( !array )
{
if ( jjtGetNumChildren() < 1 )
{
return "java.util.Arrays.asList( new Object[0])";
}
result += "java.util.Arrays.asList( new Object[] ";
}
result += "{ ";
try
{
for ( int i = 0; i < jjtGetNumChildren(); ++i )
{
if ( i > 0 )
{
result = result + ", ";
}
Class prevType = context.getCurrentType();
Object objValue = children[i].getValue( context, context.getRoot() );
String value = children[i].toGetSourceString( context, target );
// to undo type setting of constants when used as method parameters
if ( ASTConst.class.isInstance( children[i] ) )
{
context.setCurrentType( prevType );
}
value = ExpressionCompiler.getRootExpression( children[i], target, context ) + value;
String cast = "";
if ( ExpressionCompiler.shouldCast( children[i] ) )
{
cast = (String) context.remove( ExpressionCompiler.PRE_CAST );
}
if ( cast == null )
{
cast = "";
}
if ( !ASTConst.class.isInstance( children[i] ) )
{
value = cast + value;
}
Class ctorClass = (Class) context.get( "_ctorClass" );
if ( array && ctorClass != null && !ctorClass.isPrimitive() )
{
Class valueClass = value != null ? value.getClass() : null;
if ( NodeType.class.isAssignableFrom( children[i].getClass() ) )
{
valueClass = ( (NodeType) children[i] ).getGetterClass();
}
final OgnlExpressionCompiler compiler = OgnlRuntime.getCompiler( context );
if ( valueClass != null && ctorClass.isArray() )
{
value =
compiler
.createLocalReference( context, "(" + ExpressionCompiler.getCastString( ctorClass )
+ ")org.apache.commons.ognl.OgnlOps.toArray(" + value + ", "
+ ctorClass.getComponentType().getName() + ".class, true)", ctorClass );
}
else if ( ctorClass.isPrimitive() )
{
Class wrapClass = OgnlRuntime.getPrimitiveWrapperClass( ctorClass );
value =
compiler
.createLocalReference( context, "((" + wrapClass.getName()
+ ")org.apache.commons.ognl.OgnlOps.convertValue(" + value + ","
+ wrapClass.getName() + ".class, true))." + OgnlRuntime.getNumericValueGetter(
wrapClass ), ctorClass );
}
else if ( ctorClass != Object.class )
{
value =
compiler
.createLocalReference( context, "(" + ctorClass.getName()
+ ")org.apache.commons.ognl.OgnlOps.convertValue(" + value + ","
+ ctorClass.getName() + ".class)", ctorClass );
}
else if ( ( NodeType.class.isInstance( children[i] )
&& ( (NodeType) children[i] ).getGetterClass() != null
&& Number.class.isAssignableFrom( ( (NodeType) children[i] ).getGetterClass() ) )
|| valueClass.isPrimitive() )
{
value = " ($w) (" + value + ")";
}
else if ( valueClass.isPrimitive() )
{
value = "($w) (" + value + ")";
}
}
else if ( ctorClass == null || !ctorClass.isPrimitive() )
{
value = " ($w) (" + value + ")";
}
if ( objValue == null || value.length() <= 0 )
{
value = "null";
}
result += value;
}
}
catch ( Throwable t )
{
throw OgnlOps.castToRuntime( t );
}
context.setCurrentType( List.class );
context.setCurrentAccessor( List.class );
result += "}";
if ( !array )
{
result += ")";
}
return result;
}
public String toSetSourceString( OgnlContext context, Object target )
{
throw new UnsupportedCompilationException( "Can't generate setter for ASTList." );
}
public <R, P> R accept( NodeVisitor<? extends R, ? super P> visitor, P data )
throws OgnlException
{
return visitor.visit( this, data );
}
}
| apache-2.0 |
leafclick/intellij-community | java/java-impl/src/com/intellij/refactoring/introduceparameterobject/IntroduceParameterObjectHandler.java | 5868 | /*
* Copyright 2000-2009 JetBrains s.r.o.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.intellij.refactoring.introduceparameterobject;
import com.intellij.ide.util.SuperMethodWarningUtil;
import com.intellij.lang.ContextAwareActionHandler;
import com.intellij.openapi.actionSystem.CommonDataKeys;
import com.intellij.openapi.actionSystem.DataContext;
import com.intellij.openapi.editor.CaretModel;
import com.intellij.openapi.editor.Editor;
import com.intellij.openapi.editor.ScrollType;
import com.intellij.openapi.editor.ScrollingModel;
import com.intellij.openapi.project.Project;
import com.intellij.psi.*;
import com.intellij.psi.util.PsiTreeUtil;
import com.intellij.refactoring.HelpID;
import com.intellij.refactoring.RefactorJBundle;
import com.intellij.refactoring.RefactoringActionHandler;
import com.intellij.refactoring.RefactoringBundle;
import com.intellij.refactoring.util.CommonRefactoringUtil;
import org.jetbrains.annotations.NotNull;
public class IntroduceParameterObjectHandler implements RefactoringActionHandler, ContextAwareActionHandler {
@Override
public boolean isAvailableForQuickList(@NotNull Editor editor, @NotNull PsiFile file, @NotNull DataContext dataContext) {
final PsiMethod selectedMethod = getSelectedMethod(editor, file, dataContext);
if (selectedMethod != null) {
final PsiMethod[] deepestSuperMethods = selectedMethod.findDeepestSuperMethods();
return deepestSuperMethods.length > 0 || getErrorMessage(selectedMethod) == null;
}
return false;
}
@Override
public void invoke(@NotNull Project project, Editor editor, PsiFile file, DataContext dataContext) {
final ScrollingModel scrollingModel = editor.getScrollingModel();
scrollingModel.scrollToCaret(ScrollType.MAKE_VISIBLE);
PsiMethod selectedMethod = getSelectedMethod(editor, file, dataContext);
if (selectedMethod == null) {
final String message = RefactorJBundle.message("cannot.perform.the.refactoring") +
RefactorJBundle.message("the.caret.should.be.positioned.at.the.name.of.the.method.to.be.refactored");
CommonRefactoringUtil.showErrorHint(project, editor, message, getRefactoringName(), HelpID.IntroduceParameterObject);
return;
}
invoke(project, selectedMethod, editor);
}
private static PsiMethod getSelectedMethod(Editor editor, PsiFile file, DataContext dataContext) {
final PsiElement element = CommonDataKeys.PSI_ELEMENT.getData(dataContext);
PsiMethod selectedMethod = null;
if (element instanceof PsiMethod) {
selectedMethod = (PsiMethod)element;
}
else if (element instanceof PsiParameter && ((PsiParameter)element).getDeclarationScope() instanceof PsiMethod){
selectedMethod = (PsiMethod)((PsiParameter)element).getDeclarationScope();
}
else {
final CaretModel caretModel = editor.getCaretModel();
final int position = caretModel.getOffset();
final PsiElement elementAt = file.findElementAt(position);
final PsiMethodCallExpression methodCallExpression =
PsiTreeUtil.getParentOfType(elementAt, PsiMethodCallExpression.class);
if (methodCallExpression != null) {
selectedMethod = methodCallExpression.resolveMethod();
} else {
final PsiParameterList parameterList = PsiTreeUtil.getParentOfType(elementAt, PsiParameterList.class);
if (parameterList != null && parameterList.getParent() instanceof PsiMethod) {
selectedMethod = (PsiMethod)parameterList.getParent();
}
}
}
return selectedMethod;
}
@Override
public void invoke(@NotNull Project project, PsiElement @NotNull [] elements, DataContext dataContext) {
if (elements.length != 1) {
return;
}
final PsiMethod method = PsiTreeUtil.getParentOfType(elements[0], PsiMethod.class, false);
if (method == null) {
return;
}
Editor editor = CommonDataKeys.EDITOR.getData(dataContext);
invoke(project, method, editor);
}
private static void invoke(final Project project, final PsiMethod selectedMethod, Editor editor) {
PsiMethod newMethod = SuperMethodWarningUtil.checkSuperMethod(selectedMethod, RefactoringBundle.message("to.refactor"));
if (newMethod == null) return;
final String message = getErrorMessage(newMethod);
if (message != null) {
CommonRefactoringUtil.showErrorHint(project, editor, message, getRefactoringName(), HelpID.IntroduceParameterObject);
return;
}
if (!CommonRefactoringUtil.checkReadOnlyStatus(project, newMethod)) return;
new IntroduceParameterObjectDialog(newMethod).show();
}
private static String getErrorMessage(PsiMethod newMethod) {
final PsiParameter[] parameters = newMethod.getParameterList().getParameters();
if (parameters.length == 0) {
return RefactorJBundle.message("cannot.perform.the.refactoring") +
RefactorJBundle.message("method.selected.has.no.parameters");
}
if (newMethod instanceof PsiCompiledElement) {
return RefactorJBundle.message("cannot.perform.the.refactoring") +
RefactorJBundle.message("the.selected.method.cannot.be.wrapped.because.it.is.defined.in.a.non.project.class");
}
return null;
}
private static String getRefactoringName() {
return RefactorJBundle.message("introduce.parameter.object");
}
}
| apache-2.0 |
grgrzybek/karaf | bundle/core/src/main/java/org/apache/karaf/bundle/core/internal/BundleInfoImpl.java | 5929 | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.karaf.bundle.core.internal;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import org.apache.karaf.bundle.core.BundleInfo;
import org.apache.karaf.bundle.core.BundleState;
import org.osgi.framework.Bundle;
import org.osgi.framework.Constants;
import org.osgi.framework.startlevel.BundleStartLevel;
import org.osgi.framework.wiring.BundleRevision;
import org.osgi.framework.wiring.BundleRevisions;
import org.osgi.framework.wiring.BundleWire;
public class BundleInfoImpl implements BundleInfo {
private int startLevel;
private String name;
private String symbolicName;
private String updateLocation;
private String version;
private String revisions;
private long bundleId;
private BundleState state;
private boolean isFragment;
private List<Bundle> fragments;
private List<Bundle> fragmentHosts;
private static Map<Integer, BundleState> bundleStateMap;
static {
bundleStateMap = new HashMap<>();
bundleStateMap.put(Bundle.ACTIVE, BundleState.Active);
bundleStateMap.put(Bundle.INSTALLED, BundleState.Installed);
bundleStateMap.put(Bundle.RESOLVED, BundleState.Resolved);
bundleStateMap.put(Bundle.STARTING, BundleState.Starting);
bundleStateMap.put(Bundle.STOPPING, BundleState.Stopping);
}
public BundleInfoImpl(Bundle bundle, BundleState extState) {
BundleStartLevel bsl = bundle.adapt(BundleStartLevel.class);
this.startLevel = bsl.getStartLevel();
this.name = bundle.getHeaders().get(Constants.BUNDLE_NAME);
this.symbolicName = bundle.getSymbolicName();
String locationFromHeader = bundle.getHeaders().get(Constants.BUNDLE_UPDATELOCATION);
this.updateLocation = locationFromHeader != null ? locationFromHeader : bundle.getLocation();
this.version = bundle.getHeaders().get(Constants.BUNDLE_VERSION);
this.revisions = populateRevisions(bundle);
this.bundleId = bundle.getBundleId();
this.state = (extState != BundleState.Unknown) ? extState : getBundleState(bundle);
populateFragementInfos(bundle);
}
private void populateFragementInfos(Bundle bundle) {
this.isFragment = bundle.getHeaders().get(Constants.FRAGMENT_HOST) != null;
this.fragments = new ArrayList<>();
this.fragmentHosts = new ArrayList<>();
BundleRevisions revisions = bundle.adapt(BundleRevisions.class);
if (revisions == null) {
return;
}
for (BundleRevision revision : revisions.getRevisions()) {
if (revision.getWiring() != null) {
getFragments(revision);
getFragmentHosts(revision);
}
}
}
private String populateRevisions(Bundle bundle) {
String ret = "";
BundleRevisions revisions = bundle.adapt(BundleRevisions.class);
if (revisions == null) {
return ret;
}
for (BundleRevision revision : revisions.getRevisions()) {
ret = ret + "[" + revision + "]" + " ";
}
return ret;
}
private void getFragments(BundleRevision revision) {
List<BundleWire> wires = revision.getWiring().getProvidedWires(BundleRevision.HOST_NAMESPACE);
if (wires != null) {
for (BundleWire w : wires) {
Bundle b = w.getRequirerWiring().getBundle();
this.fragments.add(b);
}
}
}
private void getFragmentHosts(BundleRevision revision) {
List<BundleWire> wires = revision.getWiring().getRequiredWires(BundleRevision.HOST_NAMESPACE);
if (wires != null) {
for (BundleWire w : wires) {
Bundle b = w.getProviderWiring().getBundle();
if (b != null) {
this.fragmentHosts.add(b);
}
}
}
}
private BundleState getBundleState(Bundle bundle) {
BundleState state = bundleStateMap.get(bundle.getState());
return state == null ? BundleState.Unknown : state;
}
@Override
public long getBundleId() {
return this.bundleId;
}
@Override
public String getSymbolicName() {
return this.symbolicName;
}
@Override
public String getName() {
return this.name;
}
@Override
public String getUpdateLocation() {
return this.updateLocation;
}
@Override
public String getVersion() {
return this.version;
}
@Override
public BundleState getState() {
return this.state;
}
@Override
public int getStartLevel() {
return this.startLevel;
}
@Override
public boolean isFragment() {
return this.isFragment;
}
@Override
public List<Bundle> getFragments() {
return this.fragments;
}
@Override
public List<Bundle> getFragmentHosts() {
return this.fragmentHosts;
}
@Override
public String getRevisions() {
return this.revisions;
}
}
| apache-2.0 |
cedricbou/FiddleWith | repository/src/main/java/fiddle/repository/FallbackRepository.java | 818 | package fiddle.repository;
import java.io.IOException;
import com.google.common.base.Optional;
import com.google.common.collect.ImmutableList;
public class FallbackRepository<ReadRsc, WriteRsc, Id> implements Repository<ReadRsc, WriteRsc, Id> {
private final Repository<ReadRsc, WriteRsc, Id> main;
private final Repository<ReadRsc, WriteRsc, Id> fallback;
public FallbackRepository(final Repository<ReadRsc, WriteRsc, Id> main, final Repository<ReadRsc, WriteRsc, Id> fallback) {
this.main = main;
this.fallback = fallback;
}
@Override
public Optional<ReadRsc> open(Id id) {
return main.open(id).or(fallback.open(id));
}
@Override
public void write(Id id, WriteRsc rsc) throws IOException {
main.write(id, rsc);
}
@Override
public ImmutableList<Id> ids() {
return main.ids();
}
}
| apache-2.0 |
LummECS/Lumm | lumm/core/src/main/java/dk/sidereal/lumm/architecture/core/input/ActionData.java | 2950 | /*******************************************************************************
* Copyright 2014 See AUTHORS file.
* <p>
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
* <p>
* http://www.apache.org/licenses/LICENSE-2.0
* <p>
* Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on
* an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the
* specific language governing permissions and limitations under the License.
******************************************************************************/
package dk.sidereal.lumm.architecture.core.input;
import com.badlogic.gdx.InputProcessor;
import com.badlogic.gdx.Input.Buttons;
import com.badlogic.gdx.Input.Keys;
import dk.sidereal.lumm.architecture.core.Input;
/**
* Represents the data related to one input action ( key, mouse button or
* finger). Is created if it does not exist whenever the input listener detects
* the action has been used. If an instance for a specific action has not been
* created and the data for that input action is requested by the user via
* {@link Input#getInputData(int)}, an instance is created and added to the
* input system.
*
* @author Claudiu Bele
*/
public class ActionData {
// region fields
/**
* keyCode assigned based on {@link Keys} or {@link Buttons}. If the input
* is of type touch, the code will be the pointer passed in
* {@link InputProcessor#touchDown(int, int, int, int)} and
* {@link InputProcessor#touchUp(int, int, int, int)}.
*/
public int code;
/** The status of the input */
public Input.InputStatus inputStatus;
/** The time at which {@link #inputStatus} has changed. */
protected float statusTimestamp;
// endregion fields
// region constructors
public ActionData(int code) {
this.code = code;
this.inputStatus = Input.InputStatus.None;
}
public void update(Input.InputStatus status) {
if (this.inputStatus != status) {
this.statusTimestamp = System.currentTimeMillis();
this.inputStatus = status;
}
}
/**
* Returns a human-readable string representation of the input code, using
* {@link Input.Action#toString(int)}
*/
@Override
public String toString() {
return Input.Action.toString(code);
}
// endregion constructors
// region methods
// region getters/setters
public int getCode() {
return code;
}
public Input.InputStatus getInputStatus() {
return inputStatus;
}
void setInputStatus(Input.InputStatus inputStatus) {
this.inputStatus = inputStatus;
}
// endregion getters/setters
// endregion methods
}
| apache-2.0 |
hal/hal.next | core/src/main/java/org/jboss/hal/core/finder/Finder.java | 22408 | /*
* Copyright 2015-2016 Red Hat, Inc, and individual contributors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.jboss.hal.core.finder;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.Iterator;
import java.util.LinkedHashMap;
import java.util.List;
import java.util.Map;
import java.util.Optional;
import javax.inject.Inject;
import javax.inject.Provider;
import com.google.common.collect.Iterables;
import com.google.gwt.user.client.rpc.AsyncCallback;
import com.google.web.bindery.event.shared.EventBus;
import com.gwtplatform.mvp.client.proxy.PlaceManager;
import com.gwtplatform.mvp.shared.proxy.PlaceRequest;
import elemental2.dom.HTMLDivElement;
import elemental2.dom.HTMLElement;
import org.jboss.gwt.elemento.core.Elements;
import org.jboss.gwt.elemento.core.IsElement;
import org.jboss.hal.ballroom.Attachable;
import org.jboss.hal.config.Environment;
import org.jboss.hal.core.finder.ColumnRegistry.LookupCallback;
import org.jboss.hal.core.finder.FinderColumn.RefreshMode;
import org.jboss.hal.flow.FlowContext;
import org.jboss.hal.flow.Outcome;
import org.jboss.hal.flow.Progress;
import org.jboss.hal.flow.Task;
import org.jboss.hal.meta.security.SecurityContextRegistry;
import org.jboss.hal.resources.Ids;
import org.jboss.hal.spi.Footer;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import rx.Completable;
import rx.CompletableEmitter;
import static java.lang.Math.min;
import static java.util.stream.Collectors.toList;
import static java.util.stream.StreamSupport.stream;
import static org.jboss.gwt.elemento.core.Elements.div;
import static org.jboss.hal.ballroom.Skeleton.applicationOffset;
import static org.jboss.hal.flow.Flow.series;
import static org.jboss.hal.resources.CSS.*;
import static org.jboss.hal.resources.Ids.FINDER;
/**
* The one and only finder which is shared across all different top level categories in HAL. The very same finder
* instance gets injected into the different top level presenters. Only the columns will change when navigating between
* the different places
*/
@SuppressWarnings("rawtypes")
public class Finder implements IsElement<HTMLDivElement>, Attachable {
static final String DATA_BREADCRUMB = "breadcrumb";
static final String DATA_FILTER = "filter";
/**
* The maximum number of simultaneously visible columns. If there are more columns, the left-most column is hidden.
* TODO Reduce the number of visible columns if the viewport gets smaller and change col-??-2 to col-??-3
*/
private static final int MAX_VISIBLE_COLUMNS = 4;
private static final int MAX_COLUMNS = 12;
private static final Logger logger = LoggerFactory.getLogger(Finder.class);
private final Environment environment;
private final EventBus eventBus;
private final PlaceManager placeManager;
private final ColumnRegistry columnRegistry;
private final SecurityContextRegistry securityContextRegistry;
private final Provider<Progress> progress;
private final FinderContext context;
private final LinkedHashMap<String, FinderColumn> columns;
private final Map<String, String> initialColumnsByToken;
private final Map<String, PreviewContent> initialPreviewsByToken;
private final HTMLDivElement root;
private final HTMLElement previewColumn;
private PreviewContent currentPreview;
// ------------------------------------------------------ ui
@Inject
public Finder(Environment environment,
EventBus eventBus,
PlaceManager placeManager,
ColumnRegistry columnRegistry,
SecurityContextRegistry securityContextRegistry,
@Footer Provider<Progress> progress) {
this.environment = environment;
this.eventBus = eventBus;
this.placeManager = placeManager;
this.columnRegistry = columnRegistry;
this.securityContextRegistry = securityContextRegistry;
this.progress = progress;
this.context = new FinderContext();
this.columns = new LinkedHashMap<>();
this.initialColumnsByToken = new HashMap<>();
this.initialPreviewsByToken = new HashMap<>();
this.root = div().id(FINDER).css(row, finder)
.add(previewColumn = div()
.id(Ids.PREVIEW_ID)
.css(finderPreview, column(12))
.get())
.get();
}
@Override
public HTMLDivElement element() {
return root;
}
@Override
public void attach() {
root.style.height = vh(applicationOffset());
}
@Override
public void detach() {
columns.values().forEach(Attachable::detach);
}
private FinderColumn initialColumn() {
String columnId = initialColumnsByToken.get(context.getToken());
if (columnId != null) {
return columns.get(columnId);
}
return null;
}
private void resizePreview() {
long visibleColumns = Elements.stream(root).filter(Elements::isVisible).count() - 1;
int previewSize = MAX_COLUMNS - 2 * min((int) visibleColumns, MAX_VISIBLE_COLUMNS);
previewColumn.className = finderPreview + " " + column(previewSize);
}
// ------------------------------------------------------ internal API
void appendColumn(String columnId, AsyncCallback<FinderColumn> callback) {
columnRegistry.lookup(columnId, new LookupCallback() {
@Override
public void found(FinderColumn column) {
appendColumn(column, callback);
}
@Override
public void error(String failure) {
logger.error(failure);
if (callback != null) {
callback.onFailure(new RuntimeException(failure));
}
}
});
}
private void appendColumn(FinderColumn<?> column, AsyncCallback<FinderColumn> callback) {
column.resetSelection();
column.markHiddenColumns(false);
Elements.setVisible(column.element(), true);
columns.put(column.getId(), column);
if (visibleColumns() >= MAX_VISIBLE_COLUMNS) {
int index = 0;
int hideUntilHere = columns.size() - MAX_VISIBLE_COLUMNS;
for (FinderColumn c : columns.values()) {
Elements.setVisible(c.element(), index >= hideUntilHere);
index++;
}
if (hideUntilHere > 0) {
for (FinderColumn c : columns.values()) {
if (Elements.isVisible(c.element())) {
c.markHiddenColumns(true);
break;
}
}
}
}
root.insertBefore(column.element(), previewColumn);
column.attach();
column.setItems(callback);
resizePreview();
}
private long visibleColumns() {
return columns.values().stream().filter(column -> Elements.isVisible(column.element())).count();
}
private void markHiddenColumns() {
Optional<FinderColumn> hiddenColumn = columns.values().stream()
.filter(column -> !Elements.isVisible(column.element()))
.findAny();
if (hiddenColumn.isPresent()) {
columns.values().stream()
.filter(column -> Elements.isVisible(column.element()))
.findAny()
.ifPresent(firstVisibleColumn -> firstVisibleColumn.markHiddenColumns(true));
}
}
void revealHiddenColumns(FinderColumn firstVisibleColumn) {
// show the last hidden column
List<FinderColumn> hiddenColumns = columns.values().stream()
.filter(column -> !Elements.isVisible(column.element()))
.collect(toList());
if (!hiddenColumns.isEmpty()) {
Elements.setVisible(Iterables.getLast(hiddenColumns).element(), true);
}
firstVisibleColumn.markHiddenColumns(false);
firstVisibleColumn.selectedRow().click();
markHiddenColumns();
}
private void reduceAll() {
for (Iterator<HTMLElement> iterator = Elements.children(root).iterator(); iterator.hasNext(); ) {
HTMLElement element = iterator.next();
if (element == previewColumn) {
break;
}
FinderColumn removeColumn = columns.remove(element.id);
iterator.remove();
removeColumn.detach();
}
}
void reduceTo(FinderColumn<?> column) {
boolean removeFromHere = false;
for (Iterator<HTMLElement> iterator = Elements.children(root).iterator(); iterator.hasNext(); ) {
HTMLElement element = iterator.next();
if (element == column.element()) {
removeFromHere = true;
continue;
}
if (element == previewColumn) {
break;
}
if (removeFromHere) {
FinderColumn removeColumn = columns.remove(element.id);
iterator.remove();
removeColumn.detach();
}
}
Elements.setVisible(column.element(), true);
resizePreview();
}
void updateContext() {
context.getPath().clear();
for (HTMLElement columnElement : Elements.children(root)) {
if (columnElement == previewColumn) {
break;
}
String key = columnElement.id;
FinderColumn<?> column = columns.get(key);
context.getPath().append(column);
}
eventBus.fireEvent(new FinderContextEvent(context));
}
void updateHistory() {
// only finder tokens of the same type please
PlaceRequest current = placeManager.getCurrentPlaceRequest();
if (context.getToken().equals(current.getNameToken())) {
PlaceRequest update = context.toPlaceRequest();
if (!update.equals(current)) {
logger.debug("Update history: {}", "#" + context.getToken() +
(context.getPath().isEmpty() ? "" : ";path=" + context.getPath()));
placeManager.updateHistory(update, true);
}
}
}
void selectColumn(String columnId) {
FinderColumn finderColumn = columns.get(columnId);
if (finderColumn != null) {
finderColumn.element().focus();
}
}
void selectPreviousColumn(String columnId) {
List<String> columnIds = new ArrayList<>(columns.keySet());
int index = 0;
for (String id : columnIds) {
if (id.equals(columnId)) {
break;
}
index++;
}
if (index > 0 && index < columnIds.size()) {
String previousId = columnIds.get(index - 1);
selectColumn(previousId);
FinderColumn previousColumn = columns.get(previousId);
if (previousColumn != null) {
FinderRow selectedRow = previousColumn.selectedRow();
if (selectedRow != null) {
selectedRow.click();
}
}
}
}
int columns() {
return columns.size();
}
void showPreview(PreviewContent<?> preview) {
clearPreview();
currentPreview = preview;
if (preview != null) {
for (HTMLElement element : preview) {
previewColumn.appendChild(element);
}
preview.attach();
}
}
private void clearPreview() {
if (currentPreview != null) {
currentPreview.detach();
}
Elements.removeChildrenFrom(previewColumn);
}
void showInitialPreview() {
PreviewContent previewContent = initialPreviewsByToken.get(context.getToken());
if (previewContent != null) {
showPreview(previewContent);
}
}
Environment environment() {
return environment;
}
SecurityContextRegistry securityContextRegistry() {
return securityContextRegistry;
}
// ------------------------------------------------------ public API
/**
* Resets the finder to its initial state by showing the initial column and preview.
*/
public void reset(String token, String initialColumn, PreviewContent initialPreview,
AsyncCallback<FinderColumn> callback) {
initialColumnsByToken.put(token, initialColumn);
initialPreviewsByToken.put(token, initialPreview);
for (FinderColumn column : columns.values()) {
column.detach();
}
columns.clear();
while (root.firstChild != previewColumn) {
root.removeChild(root.firstChild);
}
context.reset(token);
appendColumn(initialColumn, callback);
selectColumn(initialColumn);
for (FinderColumn column : columns.values()) {
Elements.setVisible(column.element(), true);
column.markHiddenColumns(false);
}
showPreview(initialPreview);
updateHistory();
}
/**
* Refreshes the current path.
*/
public void refresh() {
refresh(getContext().getPath());
}
/**
* Refreshes the specified path.
* <p>
* Please note that this might be a complex and long running operation since each segment in the path is turned into
* a function which reloads and re-selects the items.
*/
public void refresh(FinderPath path) {
if (!path.isEmpty()) {
List<RefreshTask> tasks = stream(path.spliterator(), false)
.map(segment -> new RefreshTask(new FinderSegment(segment.getColumnId(), segment.getItemId())))
.collect(toList());
series(new FlowContext(progress.get()), tasks)
.subscribe(new Outcome<FlowContext>() {
@Override
public void onError(FlowContext context, Throwable error) {
}
@Override
public void onSuccess(FlowContext context) {
if (!context.emptyStack()) {
FinderColumn column = context.pop();
column.element().focus();
if (column.selectedRow() != null) {
column.selectedRow().click();
}
}
}
});
}
}
/**
* Shows the finder associated with the specified token and selects the columns and items according to the given
* finder path.
* <p>
* Please note that this might be a complex and long running operation since each segment in the path is turned into
* a function. The function will load and initialize the column and select the item as specified in the segment.
* <p>
* If the path is empty, the fallback operation is executed.
*/
public void select(String token, FinderPath path, Runnable fallback) {
if (path.isEmpty()) {
fallback.run();
} else {
if (!token.equals(context.getToken())) {
context.reset(token);
reduceAll();
} else {
// clear the preview right away, otherwise the previous (wrong) preview would be visible until all
// select functions have been finished
clearPreview();
// Find the last common column between the new and the current path
String match = null;
FinderPath newPath = path.reversed();
FinderPath currentPath = context.getPath().reversed();
for (FinderSegment newSegment : newPath) {
for (FinderSegment currentSegment : currentPath) {
if (newSegment.getColumnId().equals(currentSegment.getColumnId())) {
match = newSegment.getColumnId();
break;
}
}
if (match != null) {
break;
}
}
FinderColumn lastCommonColumn = match != null ? columns.get(match) : initialColumn();
if (lastCommonColumn != null) {
reduceTo(lastCommonColumn);
}
}
List<SelectTask> tasks = stream(path.spliterator(), false)
.map(segment -> new SelectTask(new FinderSegment(segment.getColumnId(), segment.getItemId())))
.collect(toList());
series(new FlowContext(progress.get()), tasks)
.subscribe(new Outcome<FlowContext>() {
@Override
public void onError(FlowContext context, Throwable error) {
if (Finder.this.context.getPath().isEmpty()) {
fallback.run();
} else if (!context.emptyStack()) {
FinderColumn column = context.pop();
markHiddenColumns(); // only in case of an error!
f1nally(column);
}
}
@Override
public void onSuccess(FlowContext context) {
FinderColumn column = context.pop();
f1nally(column);
}
@SuppressWarnings("SpellCheckingInspection")
private void f1nally(FinderColumn column) {
column.element().focus();
column.refresh(RefreshMode.RESTORE_SELECTION);
}
});
}
}
public FinderColumn getColumn(String columnId) {
return columns.get(columnId);
}
public FinderContext getContext() {
return context;
}
private class SelectTask implements Task<FlowContext> {
private final FinderSegment segment;
private SelectTask(FinderSegment segment) {
this.segment = segment;
}
@Override
public Completable call(FlowContext context) {
return Completable.fromEmitter(emitter -> appendColumn(segment.getColumnId(),
new AsyncCallback<FinderColumn>() {
@Override
public void onFailure(Throwable throwable) {
emitter.onError(
new RuntimeException("Error in Finder.SelectTask: Unable to append column '" +
segment.getColumnId() + "'"));
}
@Override
public void onSuccess(FinderColumn column) {
if (column.contains(segment.getItemId())) {
column.markSelected(segment.getItemId());
column.row(segment.getItemId()).element().scrollIntoView(false);
updateContext();
context.push(column);
emitter.onCompleted();
} else {
// Ignore items which cannot be selected. If a deployment was disabled
// runtime items might no longer be available.
logger.warn("Unable to select item '{} in column '{}'", segment.getItemId(),
segment.getColumnId());
emitter.onCompleted();
}
}
}));
}
}
private class RefreshTask implements Task<FlowContext> {
private final FinderSegment segment;
private RefreshTask(FinderSegment segment) {
this.segment = segment;
}
@Override
public Completable call(FlowContext context) {
return Completable.fromEmitter(emitter -> {
FinderColumn column = getColumn(segment.getColumnId());
if (column != null) {
// refresh the existing column
column.refresh(() -> selectItem(column, context, emitter));
} else {
// append the column
appendColumn(segment.getColumnId(), new AsyncCallback<FinderColumn>() {
@Override
public void onFailure(Throwable throwable) {
emitter.onError(throwable);
}
@Override
public void onSuccess(FinderColumn finderColumn) {
selectItem(finderColumn, context, emitter);
}
});
}
});
}
private void selectItem(FinderColumn column, FlowContext context, CompletableEmitter emitter) {
if (column.contains(segment.getItemId())) {
column.markSelected(segment.getItemId());
context.push(column);
emitter.onCompleted();
} else {
//noinspection HardCodedStringLiteral
emitter.onError(new RuntimeException("Error in Finder.RefreshTask: Unable to select item '" +
segment.getItemId() + "' in column '" + segment.getColumnId() + "'"));
}
}
}
}
| apache-2.0 |
ReturnPath/druid-api | src/main/java/io/druid/data/input/impl/JSONLowercaseParseSpec.java | 1249 | package io.druid.data.input.impl;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.databind.ObjectMapper;
import com.metamx.common.parsers.JSONToLowerParser;
import com.metamx.common.parsers.Parser;
import java.util.List;
/**
* This class is only here for backwards compatibility
*/
@Deprecated
public class JSONLowercaseParseSpec extends ParseSpec
{
private final ObjectMapper objectMapper;
@JsonCreator
public JSONLowercaseParseSpec(
@JsonProperty("timestampSpec") TimestampSpec timestampSpec,
@JsonProperty("dimensionsSpec") DimensionsSpec dimensionsSpec
)
{
super(timestampSpec, dimensionsSpec);
this.objectMapper = new ObjectMapper();
}
@Override
public void verify(List<String> usedCols)
{
}
@Override
public Parser<String, Object> makeParser()
{
return new JSONToLowerParser(objectMapper, null, null);
}
@Override
public ParseSpec withTimestampSpec(TimestampSpec spec)
{
return new JSONLowercaseParseSpec(spec, getDimensionsSpec());
}
@Override
public ParseSpec withDimensionsSpec(DimensionsSpec spec)
{
return new JSONLowercaseParseSpec(getTimestampSpec(), spec);
}
}
| apache-2.0 |
ZeitnotSWE/sHike | Codice/Web/src/main/java/com/wearit/shike/web/helper/sharing/Share.java | 222 | package com.wearit.shike.web.helper.sharing;
public interface Share {
/**
* Permette di condividere un url nei social network
*
* @param url
* da condividere
*/
public String share(String url);
}
| apache-2.0 |
Cognifide/gradle-aem-example | app/aem/core/src/main/java/com/company/example/core/models/package-info.java | 724 | /*
* Copyright 2015 Adobe Systems Incorporated
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
@Version("1.0")
package com.company.example.core.models;
import org.osgi.annotation.versioning.Version; | apache-2.0 |
chriswang-/BookStore | src/test/java/com/chris/bookstore/BookStoreApplicationTests.java | 339 | package com.chris.bookstore;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.test.context.junit4.SpringRunner;
@RunWith(SpringRunner.class)
@SpringBootTest
public class BookStoreApplicationTests {
@Test
public void contextLoads() {
}
}
| apache-2.0 |
kmbulebu/NickNack | pushover-provider/src/main/java/com/github/kmbulebu/nicknack/providers/pushover/internal/PushOverClientImpl.java | 3397 | package com.github.kmbulebu.nicknack.providers.pushover.internal;
import java.io.IOException;
import java.util.ArrayList;
import java.util.List;
import org.springframework.http.converter.FormHttpMessageConverter;
import org.springframework.http.converter.HttpMessageConverter;
import org.springframework.http.converter.json.MappingJackson2HttpMessageConverter;
import org.springframework.util.LinkedMultiValueMap;
import org.springframework.util.MultiValueMap;
import org.springframework.web.client.HttpClientErrorException;
import org.springframework.web.client.RestClientException;
import org.springframework.web.client.RestTemplate;
import com.fasterxml.jackson.databind.ObjectMapper;
public class PushOverClientImpl implements PushOverClient {
private String apiKey;
private final RestTemplate restTemplate;
private final ObjectMapper mapper;
private static final String API_URL = "https://api.pushover.net/1/messages.json";
public PushOverClientImpl() {
final List<HttpMessageConverter<?>> messageConverters = new ArrayList<>();
messageConverters.add(new FormHttpMessageConverter());
final MappingJackson2HttpMessageConverter jsonConverter = new MappingJackson2HttpMessageConverter();
mapper = jsonConverter.getObjectMapper();
messageConverters.add(new MappingJackson2HttpMessageConverter());
restTemplate = new RestTemplate();
restTemplate.setMessageConverters(messageConverters);
}
@Override
public void setApiKey(String apiKey) {
this.apiKey = apiKey;
}
@Override
public void sendPushMessage(PushMessage pushMessage) throws PushOverException, IOException {
final MultiValueMap<String, String> parameters = new LinkedMultiValueMap<String, String>();
if (pushMessage.getMessage() == null) {
throw new IllegalArgumentException("Message is required.");
}
if (pushMessage.getUser() == null) {
throw new IllegalArgumentException("User is required.");
}
parameters.add("token", apiKey);
parameters.add("user", pushMessage.getUser());
parameters.add("message", pushMessage.getMessage());
if (pushMessage.getDevice() != null) {
parameters.add("device", pushMessage.getDevice());
}
if (pushMessage.getTitle() != null) {
parameters.add("title", pushMessage.getTitle());
}
if (pushMessage.getPriority() != null) {
parameters.add("priority", Integer.toString(pushMessage.getPriority()));
}
if (pushMessage.getTimeStamp() != null) {
parameters.add("timestamp", Long.toString(pushMessage.getTimeStamp().getTime()/1000l));
}
if (pushMessage.getSound() != null) {
parameters.add("sound", pushMessage.getSound());
}
if (pushMessage.getUrl() != null) {
parameters.add("url", pushMessage.getUrl());
if (pushMessage.getUrlTitle() != null) {
parameters.add("url_title", pushMessage.getUrlTitle());
}
}
PushOverResponse response = null;
try {
response = restTemplate.postForObject(API_URL, parameters, PushOverResponse.class);
} catch (HttpClientErrorException e) {
final String body = e.getResponseBodyAsString();
if (body != null) {
response = mapper.readValue(body, PushOverResponse.class);
throw new PushOverException(response.getRequest(), response.getErrors(), response.getStatus(), e.getStatusCode().value());
}
} catch (RestClientException e) {
throw new IOException("Could not connect to PushOver.", e);
}
}
}
| apache-2.0 |
Squeezer-software/java-design-patterns | src/com/squeezer/designpatterns/interpreter/Expression.java | 127 | package com.squeezer.designpatterns.interpreter;
public interface Expression {
public boolean interpret(String context);
} | apache-2.0 |
Blankj/AndroidUtilCode | lib/subutil/src/main/java/com/blankj/subutil/util/AppStoreUtils.java | 4928 | package com.blankj.subutil.util;
import android.content.Intent;
import android.content.pm.PackageManager;
import android.content.pm.ResolveInfo;
import android.net.Uri;
import android.util.Log;
import com.blankj.utilcode.util.AppUtils;
import com.blankj.utilcode.util.RomUtils;
import com.blankj.utilcode.util.Utils;
import java.util.List;
/**
* <pre>
* author: Blankj
* blog : http://blankj.com
* time : 2019/05/20
* desc : utils about app store
* </pre>
*/
public final class AppStoreUtils {
private static final String TAG = "AppStoreUtils";
private static final String GOOGLE_PLAY_APP_STORE_PACKAGE_NAME = "com.android.vending";
/**
* 获取跳转到应用商店的 Intent
*
* @return 跳转到应用商店的 Intent
*/
public static Intent getAppStoreIntent() {
return getAppStoreIntent(Utils.getApp().getPackageName(), false);
}
/**
* 获取跳转到应用商店的 Intent
*
* @param isIncludeGooglePlayStore 是否包括 Google Play 商店
* @return 跳转到应用商店的 Intent
*/
public static Intent getAppStoreIntent(boolean isIncludeGooglePlayStore) {
return getAppStoreIntent(Utils.getApp().getPackageName(), isIncludeGooglePlayStore);
}
/**
* 获取跳转到应用商店的 Intent
*
* @param packageName 包名
* @return 跳转到应用商店的 Intent
*/
public static Intent getAppStoreIntent(final String packageName) {
return getAppStoreIntent(packageName, false);
}
/**
* 获取跳转到应用商店的 Intent
* <p>优先跳转到手机自带的应用市场</p>
*
* @param packageName 包名
* @param isIncludeGooglePlayStore 是否包括 Google Play 商店
* @return 跳转到应用商店的 Intent
*/
public static Intent getAppStoreIntent(final String packageName, boolean isIncludeGooglePlayStore) {
if (RomUtils.isSamsung()) {// 三星单独处理跳转三星市场
Intent samsungAppStoreIntent = getSamsungAppStoreIntent(packageName);
if (samsungAppStoreIntent != null) return samsungAppStoreIntent;
}
if (RomUtils.isLeeco()) {// 乐视单独处理跳转乐视市场
Intent leecoAppStoreIntent = getLeecoAppStoreIntent(packageName);
if (leecoAppStoreIntent != null) return leecoAppStoreIntent;
}
Uri uri = Uri.parse("market://details?id=" + packageName);
Intent intent = new Intent();
intent.setData(uri);
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
List<ResolveInfo> resolveInfos = Utils.getApp().getPackageManager()
.queryIntentActivities(intent, PackageManager.MATCH_DEFAULT_ONLY);
if (resolveInfos == null || resolveInfos.size() == 0) {
Log.e(TAG, "No app store!");
return null;
}
Intent googleIntent = null;
for (ResolveInfo resolveInfo : resolveInfos) {
String pkgName = resolveInfo.activityInfo.packageName;
if (!GOOGLE_PLAY_APP_STORE_PACKAGE_NAME.equals(pkgName)) {
if (AppUtils.isAppSystem(pkgName)) {
intent.setPackage(pkgName);
return intent;
}
} else {
intent.setPackage(GOOGLE_PLAY_APP_STORE_PACKAGE_NAME);
googleIntent = intent;
}
}
if (isIncludeGooglePlayStore && googleIntent != null) {
return googleIntent;
}
intent.setPackage(resolveInfos.get(0).activityInfo.packageName);
return intent;
}
private static Intent getSamsungAppStoreIntent(final String packageName) {
Intent intent = new Intent();
intent.setClassName("com.sec.android.app.samsungapps", "com.sec.android.app.samsungapps.Main");
intent.setData(Uri.parse("http://www.samsungapps.com/appquery/appDetail.as?appId=" + packageName));
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
if (getAvailableIntentSize(intent) > 0) {
return intent;
}
return null;
}
private static Intent getLeecoAppStoreIntent(final String packageName) {
Intent intent = new Intent();
intent.setClassName("com.letv.app.appstore", "com.letv.app.appstore.appmodule.details.DetailsActivity");
intent.setAction("com.letv.app.appstore.appdetailactivity");
intent.putExtra("packageName", packageName);
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
if (getAvailableIntentSize(intent) > 0) {
return intent;
}
return null;
}
private static int getAvailableIntentSize(final Intent intent) {
return Utils.getApp().getPackageManager()
.queryIntentActivities(intent, PackageManager.MATCH_DEFAULT_ONLY)
.size();
}
}
| apache-2.0 |
IAMTJW/Tomcat-8.5.20 | tomcat-8.5.20/java/org/apache/tomcat/jni/Directory.java | 3921 | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.tomcat.jni;
/** Directory
*
* @author Mladen Turk
*/
public class Directory {
/**
* Create a new directory on the file system.
* @param path the path for the directory to be created. (use / on all systems)
* @param perm Permissions for the new directory.
* @param pool the pool to use.
* @return the operation result
*/
public static native int make(String path, int perm, long pool);
/**
* Creates a new directory on the file system, but behaves like
* 'mkdir -p'. Creates intermediate directories as required. No error
* will be reported if PATH already exists.
* @param path the path for the directory to be created. (use / on all systems)
* @param perm Permissions for the new directory.
* @param pool the pool to use.
* @return the operation result
*/
public static native int makeRecursive(String path, int perm, long pool);
/**
* Remove directory from the file system.
* @param path the path for the directory to be removed. (use / on all systems)
* @param pool the pool to use.
* @return the operation result
*/
public static native int remove(String path, long pool);
/**
* Find an existing directory suitable as a temporary storage location.
* @param pool The pool to use for any necessary allocations.
* @return The temp directory.
*
* This function uses an algorithm to search for a directory that an
* an application can use for temporary storage. Once such a
* directory is found, that location is cached by the library. Thus,
* callers only pay the cost of this algorithm once if that one time
* is successful.
*/
public static native String tempGet(long pool);
/**
* Open the specified directory.
* @param dirname The full path to the directory (use / on all systems)
* @param pool The pool to use.
* @return The opened directory descriptor.
* @throws Error An error occurred
*/
public static native long open(String dirname, long pool)
throws Error;
/**
* close the specified directory.
* @param thedir the directory descriptor to close.
* @return the operation result
*/
public static native int close(long thedir);
/**
* Rewind the directory to the first entry.
* @param thedir the directory descriptor to rewind.
* @return the operation result
*/
public static native int rewind(long thedir);
/**
* Read the next entry from the specified directory.
* @param finfo the file info structure and filled in by apr_dir_read
* @param wanted The desired apr_finfo_t fields, as a bit flag of APR_FINFO_ values
* @param thedir the directory descriptor returned from apr_dir_open
* No ordering is guaranteed for the entries read.
* @return the operation result
*/
public static native int read(FileInfo finfo, int wanted, long thedir);
}
| apache-2.0 |
hegjon/timetracker | src/main/java/com/jonnyware/timetracker/analyzer/DateConverter.java | 802 | /*
* Copyright 2014 Jonny Heggheim
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.jonnyware.timetracker.analyzer;
import com.jonnyware.timetracker.line.TimeEntry;
import org.joda.time.LocalDate;
public interface DateConverter {
LocalDate toDate(TimeEntry timeEntry);
}
| apache-2.0 |
rpatil26/closure-templates | java/src/com/google/template/soy/soytree/LetContentNode.java | 7281 | /*
* Copyright 2011 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.google.template.soy.soytree;
import com.google.template.soy.base.SourceLocation;
import com.google.template.soy.basetree.CopyState;
import com.google.template.soy.basetree.MixinParentNode;
import com.google.template.soy.data.SanitizedContent.ContentKind;
import com.google.template.soy.error.ErrorReporter;
import com.google.template.soy.error.ErrorReporter.Checkpoint;
import com.google.template.soy.error.SoyErrorKind;
import com.google.template.soy.soytree.SoyNode.RenderUnitNode;
import com.google.template.soy.types.primitive.SanitizedType;
import com.google.template.soy.types.primitive.StringType;
import java.util.List;
import javax.annotation.Nullable;
/**
* Node representing a 'let' statement with content.
*
* <p>Important: Do not use outside of Soy code (treat as superpackage-private).
*
*/
public final class LetContentNode extends LetNode implements RenderUnitNode {
public static final SoyErrorKind NON_SELF_ENDING_WITH_VALUE =
SoyErrorKind.of(
"A ''let'' tag should contain a value if and only if it is also self-ending "
+ "(with a trailing ''/'').");
/** The mixin object that implements the ParentNode functionality. */
private final MixinParentNode<StandaloneNode> parentMixin;
/** The let node's content kind, or null if no 'kind' attribute was present. */
@Nullable private final ContentKind contentKind;
private LetContentNode(
int id,
SourceLocation sourceLocation,
String localVarName,
String commandText,
ContentKind contentKind) {
super(id, sourceLocation, localVarName, commandText);
this.contentKind = contentKind;
parentMixin = new MixinParentNode<>(this);
}
/**
* Creates a LetContentNode for a compiler-generated variable. Use this in passes that rewrite the
* tree and introduce local temporary variables.
*/
public static LetContentNode forVariable(
int id, SourceLocation sourceLocation, String varName, ContentKind contentKind) {
LetContentNode node =
new LetContentNode(id, sourceLocation, varName, "$" + varName, contentKind);
node.getVar()
.setType(
contentKind != null
? SanitizedType.getTypeForContentKind(contentKind)
: StringType.getInstance());
return node;
}
/**
* Copy constructor.
*
* @param orig The node to copy.
*/
private LetContentNode(LetContentNode orig, CopyState copyState) {
super(orig, copyState);
this.parentMixin = new MixinParentNode<>(orig.parentMixin, this, copyState);
this.contentKind = orig.contentKind;
}
@Override
public Kind getKind() {
return Kind.LET_CONTENT_NODE;
}
/** Return The local variable name (without preceding '$'). */
@Override
public final String getVarName() {
return var.name();
}
@Override
@Nullable
public ContentKind getContentKind() {
return contentKind;
}
// -----------------------------------------------------------------------------------------------
// ParentSoyNode stuff.
// Note: Most concrete nodes simply inherit this functionality from AbstractParentCommandNode or
// AbstractParentSoyNode. But this class need to include its own MixinParentNode field because
// it needs to subclass LetNode (and Java doesn't allow multiple inheritance).
@Override
public String toSourceString() {
StringBuilder sb = new StringBuilder();
sb.append(getTagString());
appendSourceStringForChildren(sb);
sb.append("{/").append(getCommandName()).append("}");
return sb.toString();
}
@Override
public int numChildren() {
return parentMixin.numChildren();
}
@Override
public StandaloneNode getChild(int index) {
return parentMixin.getChild(index);
}
@Override
public int getChildIndex(StandaloneNode child) {
return parentMixin.getChildIndex(child);
}
@Override
public List<StandaloneNode> getChildren() {
return parentMixin.getChildren();
}
@Override
public void addChild(StandaloneNode child) {
parentMixin.addChild(child);
}
@Override
public void addChild(int index, StandaloneNode child) {
parentMixin.addChild(index, child);
}
@Override
public void removeChild(int index) {
parentMixin.removeChild(index);
}
@Override
public void removeChild(StandaloneNode child) {
parentMixin.removeChild(child);
}
@Override
public void replaceChild(int index, StandaloneNode newChild) {
parentMixin.replaceChild(index, newChild);
}
@Override
public void replaceChild(StandaloneNode currChild, StandaloneNode newChild) {
parentMixin.replaceChild(currChild, newChild);
}
@Override
public void clearChildren() {
parentMixin.clearChildren();
}
@Override
public void addChildren(List<? extends StandaloneNode> children) {
parentMixin.addChildren(children);
}
@Override
public void addChildren(int index, List<? extends StandaloneNode> children) {
parentMixin.addChildren(index, children);
}
@Override
public void appendSourceStringForChildren(StringBuilder sb) {
parentMixin.appendSourceStringForChildren(sb);
}
@Override
public LetContentNode copy(CopyState copyState) {
return new LetContentNode(this, copyState);
}
/** Builder for {@link LetContentNode}. */
public static final class Builder {
private static LetContentNode error() {
return new LetContentNode(-1, SourceLocation.UNKNOWN, "$error", "$error", null);
}
private final int id;
private final CommandTextParseResult parseResult;
private final SourceLocation sourceLocation;
/**
* @param id The node's id.
* @param commandText The node's command text.
* @param sourceLocation The node's source location.
*/
public Builder(int id, CommandTextParseResult parseResult, SourceLocation sourceLocation) {
this.id = id;
this.parseResult = parseResult;
this.sourceLocation = sourceLocation;
}
/**
* Returns a new {@link LetContentNode} built from the builder's state. If the builder's state
* is invalid, errors are reported to the {@code errorManager} and {Builder#error} is returned.
*/
public LetContentNode build(Checkpoint checkpoint, ErrorReporter errorReporter) {
if (parseResult.valueExpr != null) {
errorReporter.report(sourceLocation, NON_SELF_ENDING_WITH_VALUE);
}
if (errorReporter.errorsSince(checkpoint)) {
return error();
}
return new LetContentNode(
id,
sourceLocation,
parseResult.localVarName,
parseResult.originalCommandText,
parseResult.contentKind);
}
}
}
| apache-2.0 |
RippleOSI/NE-HSCIE-Core | hscie-ripple-database/src/test/java/org/rippleosi/audit/search/AuditEntityToAuditSummaryTransformerTest.java | 2191 | /*
* Copyright 2016 Ripple OSI
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.rippleosi.audit.search;
import static org.junit.Assert.*;
import java.util.Date;
import org.hscieripple.audit.model.AuditDetails;
import org.hscieripple.audit.model.AuditSummary;
import org.junit.Before;
import org.junit.Test;
import org.rippleosi.audit.model.AuditEntity;
public class AuditEntityToAuditSummaryTransformerTest {
AuditEntity auditEntity;
AuditEntityToAuditSummaryTransformer transformer;
@Before
public void setUp() throws Exception {
transformer = new AuditEntityToAuditSummaryTransformer();
auditEntity = new AuditEntity();
auditEntity.setId(1l);
auditEntity.setRequestDateTime(new Date());
auditEntity.setRequesterUsername("bob");
auditEntity.setTargetNhsNumber("1234567890");
auditEntity.setTargetResource("/resouce");
auditEntity.setRequesterAction("CREATE");
}
@Test
public void testTransform() {
AuditSummary auditSummary = transformer.transform(auditEntity);
assertNotNull("Make sure the audit details is not null", auditEntity);
assertEquals("Make sure that the requester usernames match", auditSummary.getRequesterUsername(), auditEntity.getRequesterUsername());
assertEquals("Make sure that the target NHS numbers match", auditSummary.getTargetNhsNumber(), Long.parseLong((auditEntity.getTargetNhsNumber())));
assertEquals("Make sure that the request datetimes match", auditSummary.getRequestDateTime(), auditEntity.getRequestDateTime());
assertEquals("Make sure that the actions match", auditSummary.getAction().name(), auditEntity.getRequesterAction());
}
}
| apache-2.0 |
ldp4j/ldp4j | commons/core/src/test/java/org/ldp4j/xml/QualifiedNameTest.java | 2968 | /**
* #-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=#
* This file is part of the LDP4j Project:
* http://www.ldp4j.org/
*
* Center for Open Middleware
* http://www.centeropenmiddleware.com/
* #-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=#
* Copyright (C) 2014-2016 Center for Open Middleware.
* #-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=#
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
* #-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=#
* Artifact : org.ldp4j.commons:ldp4j-commons-core:0.2.2
* Bundle : ldp4j-commons-core-0.2.2.jar
* #-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=#
*/
package org.ldp4j.xml;
import static org.hamcrest.MatcherAssert.assertThat;
import static org.hamcrest.Matchers.equalTo;
import static org.hamcrest.Matchers.notNullValue;
import static org.hamcrest.Matchers.nullValue;
import org.junit.Test;
import org.ldp4j.xml.QualifiedName;
public class QualifiedNameTest {
@Test
public void testParseURI() throws Exception {
final QualifiedName parse = QualifiedName.parse("http://www.ldp4j.org");
assertThat(parse,nullValue());
}
@Test
public void testParse$cornerCase$startsWithColon() throws Exception {
final QualifiedName parse = QualifiedName.parse(":type");
assertThat(parse,nullValue());
}
@Test
public void testParse$cornerCase$endsWithColon() throws Exception {
final QualifiedName parse = QualifiedName.parse("rdfs:");
assertThat(parse,nullValue());
}
@Test
public void testParse$cornerCase$hasMultipleColons() throws Exception {
final QualifiedName parse = QualifiedName.parse("urn:type:sha1");
assertThat(parse,nullValue());
}
@Test
public void testParse$prefixedValue() throws Exception {
final QualifiedName parse = QualifiedName.parse("rdfs:type");
assertThat(parse,notNullValue());
assertThat(parse.isPrefixed(),equalTo(true));
assertThat(parse.prefix(),equalTo("rdfs"));
assertThat(parse.localPart(),equalTo("type"));
}
@Test
public void testParse$onlyLocalPart() throws Exception {
final QualifiedName parse = QualifiedName.parse("aBigEnoughLocalPart");
assertThat(parse,notNullValue());
assertThat(parse.isPrefixed(),equalTo(false));
assertThat(parse.prefix(),nullValue());
assertThat(parse.localPart(),equalTo("aBigEnoughLocalPart"));
}
}
| apache-2.0 |
intel-analytics/analytics-zoo | apps/model-inference-examples/text-classification-inference/src/main/java/com/intel/analytics/zoo/apps/textclassfication/inference/WebServiceController.java | 2098 | package com.intel.analytics.zoo.apps.textclassfication.inference;
import com.intel.analytics.zoo.pipeline.inference.JTensor;
import org.springframework.web.bind.annotation.*;
import java.util.ArrayList;
import java.util.List;
@RestController
public class WebServiceController {
private TextClassificationModel textClassificationModel;
public WebServiceController() {
String embeddingFilePath = System.getProperty("EMBEDDING_FILE_PATH", "./glove.6B.300d.txt");
String modelPath = System.getProperty("MODEL_PATH", "./models/text-classification.bigdl");
textClassificationModel = new TextClassificationModel(10, 10, 200, embeddingFilePath);
textClassificationModel.load(modelPath);
}
@RequestMapping(value = "/")
public String greeting() {
return "welcome!";
}
@RequestMapping(value = "/greetings")
public String greeting(@RequestParam(value = "name", defaultValue = "World") String name) {
return "hello, " + name;
}
@RequestMapping(value = "/predict", method = {RequestMethod.POST})
public String webPredict(@RequestBody String text) {
if (!text.isEmpty()) {
List<List<JTensor>> inputs = new ArrayList<List<JTensor>>();
List<JTensor> input = new ArrayList<JTensor>();
JTensor inputTensor = textClassificationModel.preprocess(text);
input.add(inputTensor);
inputs.add(input);
List<List<JTensor>> results = textClassificationModel.predict(inputs);
float[] data = results.get(0).get(0).getData();
float max = 0;
int classed = 0;
for (int i = 0; i < data.length; i++) {
if (data[i] > max) {
max = data[i];
classed = i;
}
}
System.out.println("class " + classed);
String answer = String.format("The predict class is:%s\nThe probability is:%s \n", classed, max);
return answer;
} else {
return "error,no text found";
}
}
}
| apache-2.0 |
mayonghui2112/helloWorld | sourceCode/OnJava8-Examples-master/files/StreamInAndOut.java | 672 | // files/StreamInAndOut.java
// (c)2017 MindView LLC: see Copyright.txt
// We make no guarantees that this code is fit for any purpose.
// Visit http://OnJava8.com for more book information.
import java.io.*;
import java.nio.file.*;
import java.util.stream.*;
public class StreamInAndOut {
public static void main(String[] args) {
try(
Stream<String> input =
Files.lines(Paths.get("StreamInAndOut.java"));
PrintWriter output =
new PrintWriter("StreamInAndOut.txt")
) {
input
.map(String::toUpperCase)
.forEachOrdered(output::println);
} catch(Exception e) {
throw new RuntimeException(e);
}
}
}
| apache-2.0 |
jtablesaw/tablesaw | core/src/main/java/tech/tablesaw/sorting/Sort.java | 5503 | /*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package tech.tablesaw.sorting;
import static java.util.stream.Collectors.toSet;
import com.google.common.base.MoreObjects;
import com.google.common.base.Preconditions;
import java.util.Iterator;
import java.util.LinkedHashMap;
import java.util.Map;
import java.util.Optional;
import java.util.Set;
import tech.tablesaw.api.Table;
/**
* Provides fine-grained control over sorting.
*
* <p>Use:
*
* <p>table.sortOn(first("Year", DESCEND).next("State", ASCEND));
*
* <p>This sorts table on the column named year in descending order, such that the most recent years
* appear first, then on State, in ascending order so "AL" will appear before "CA". You can add
* additional instructions for multi-column sorts by chaining additional calls to next() with the
* appropriate column names and Order.
*/
public class Sort implements Iterable<Map.Entry<String, Sort.Order>> {
private final LinkedHashMap<String, Order> sortOrder = new LinkedHashMap<>();
/**
* Constructs a Sort specifying the order (ascending or descending) to apply to the column with
* the given name
*/
public Sort(String columnName, Order order) {
next(columnName, order);
}
/**
* Returns a Sort specifying the order (ascending or descending) to apply to the column with the
* given name
*/
public static Sort on(String columnName, Order order) {
return new Sort(columnName, order);
}
/**
* Returns a Sort that concatenates a new sort on the given order (ascending or descending) and
* columnName onto the sort specified here. This method is used to construct complex sorts such
* as: Sort.on("foo", Order.ASCEND).next("bar", Order.DESCEND);
*/
public Sort next(String columnName, Order order) {
sortOrder.put(columnName, order);
return this;
}
/** Returns true if no order has been set */
public boolean isEmpty() {
return sortOrder.isEmpty();
}
/** Returns the number of columns used in this sort */
public int size() {
return sortOrder.size();
}
/**
* Create a Sort object from the given table and sort column names. Does not sort the table.
*
* @param table to sort. Used only to pull the table's schema. Does not modify the table.
* @param columnNames The columns to sort on. Can prefix column name with + for ascending, - for
* descending. Default to ascending if no prefix is added.
* @return a {@link #Sort} Object.
*/
public static Sort create(Table table, String... columnNames) {
Preconditions.checkArgument(columnNames.length > 0, "At least one sort column must provided.");
Sort key = null;
Set<String> names = table.columnNames().stream().map(String::toUpperCase).collect(toSet());
for (String columnName : columnNames) {
Sort.Order order = Sort.Order.ASCEND;
if (!names.contains(columnName.toUpperCase())) {
// the column name has been annotated with a prefix.
// get the prefix which could be - or +
String prefix = columnName.substring(0, 1);
Optional<Order> orderOptional = getOrder(prefix);
// Invalid prefix, column name exists on table.
if (!orderOptional.isPresent() && names.contains(columnName.substring(1).toUpperCase())) {
throw new IllegalStateException("Column prefix: " + prefix + " is unknown.");
}
// Valid prefix, column name does not exist on table.
if (orderOptional.isPresent() && !names.contains(columnName.substring(1).toUpperCase())) {
throw new IllegalStateException(
String.format(
"Column %s does not exist in table %s", columnName.substring(1), table.name()));
}
// Invalid prefix, column name does not exist on table.
if (!orderOptional.isPresent()) {
throw new IllegalStateException("Unrecognized Column: '" + columnName + "'");
}
// Valid Prefix, column name exists on table.
// remove - prefix so provided name matches actual column name
columnName = columnName.substring(1);
order = orderOptional.get();
}
if (key == null) { // key will be null the first time through
key = new Sort(columnName, order);
} else {
key.next(columnName, order);
}
}
return key;
}
private static Optional<Order> getOrder(String prefix) {
switch (prefix) {
case "+":
return Optional.of(Order.ASCEND);
case "-":
return Optional.of(Order.DESCEND);
default:
return Optional.empty();
}
}
/**
* Returns an iterator over elements of type {@code T}.
*
* @return an Iterator.
*/
@Override
public Iterator<Map.Entry<String, Order>> iterator() {
return sortOrder.entrySet().iterator();
}
@Override
public String toString() {
return MoreObjects.toStringHelper(this).add("order", sortOrder).toString();
}
public enum Order {
ASCEND,
DESCEND
}
}
| apache-2.0 |
Geomatys/sis | storage/sis-storage/src/main/java/org/apache/sis/index/tree/Quadrant.java | 1578 | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.sis.index.tree;
/**
* Enum to represent the 4 quadrants of a quad tree node.
*
*/
enum Quadrant {
NW(0), NE(1), SW(2), SE(3);
private final int index;
private Quadrant(int index) {
this.index = index;
}
/**
* Returns the index of the quadrant.
*
* @return index of the quadrant
*/
public int index() {
return index;
}
/**
* Retrieves the quadrant matching specified index.
*
* @param index
* specified index
* @return quadrant matching specified index
*/
public static Quadrant getQuadrant(int index) {
switch (index) {
case 0:
return NW;
case 1:
return NE;
case 2:
return SW;
case 3:
return SE;
default:
return null;
}
}
}
| apache-2.0 |
johangrufman/convx | convx-core/src/main/java/org/convx/writer/WriterNode.java | 1331 | /**
* Copyright (C) 2012 Johan Grufman
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.convx.writer;
import javax.xml.stream.events.Characters;
import javax.xml.stream.events.EndElement;
import javax.xml.stream.events.StartElement;
/**
* @author johan
* @since 2011-09-17
*/
public interface WriterNode {
public void consumeStartElement(StartElement startElement, WriterContext context, NodeState state);
public void consumeEndElement(EndElement endElement, WriterContext context, NodeState state);
public void consumeCharacters(Characters characters, WriterContext context, NodeState state);
boolean startsWith(StartElement startElement);
boolean isOptional();
boolean isTriggeredByEvent();
void init(WriterContext context);
}
| apache-2.0 |
OSGP/Shared | shared/src/main/java/org/opensmartgridplatform/shared/infra/ws/CircuitBreakerInterceptor.java | 2379 | /**
* Copyright 2018 Smart Society Services B.V.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*/
package org.opensmartgridplatform.shared.infra.ws;
import java.io.IOException;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.ws.client.support.interceptor.ClientInterceptor;
import org.springframework.ws.context.MessageContext;
import org.opensmartgridplatform.shared.exceptionhandling.CircuitBreakerOpenException;
public class CircuitBreakerInterceptor implements ClientInterceptor {
private static final Logger LOGGER = LoggerFactory.getLogger(CircuitBreakerInterceptor.class);
private final CircuitBreaker circuitBreaker;
public CircuitBreakerInterceptor(final CircuitBreaker circuitBreaker) {
this.circuitBreaker = circuitBreaker;
}
@Override
public boolean handleRequest(final MessageContext messageContext) {
if (this.circuitBreaker.isClosed()) {
LOGGER.debug("Circuit is closed, send request");
return true;
} else {
final String message = "Message will not be sent, because circuit breaker is open.";
LOGGER.debug(message);
throw new CircuitBreakerOpenException(message);
}
}
@Override
public boolean handleResponse(final MessageContext messageContext) {
LOGGER.debug("Message successfully handled.");
this.circuitBreaker.markSuccess();
return true;
}
@Override
public boolean handleFault(final MessageContext messageContext) {
LOGGER.debug(
"A fault was returned. Indicate success to the circuit breaker, because it's not a communication problem.");
this.circuitBreaker.markSuccess();
return true;
}
@Override
public void afterCompletion(final MessageContext messageContext, final Exception ex) {
LOGGER.debug("In after completion.");
if (ex instanceof IOException) {
// A communication error occurred, the destination might be down
LOGGER.warn("An IOException occurred, indicate failure to the circuit breaker.");
this.circuitBreaker.markFailure();
}
}
}
| apache-2.0 |
sonu283304/onos | core/api/src/main/java/org/onosproject/net/flow/criteria/IPv6FlowLabelCriterion.java | 2063 | /*
* Copyright 2015 Open Networking Laboratory
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.onosproject.net.flow.criteria;
import java.util.Objects;
/**
* Implementation of IPv6 Flow Label (RFC 6437) criterion (20 bits unsigned
* integer).
*/
public final class IPv6FlowLabelCriterion implements Criterion {
private static final int MASK = 0xfffff;
private final int flowLabel; // IPv6 flow label: 20 bits
/**
* Constructor.
*
* @param flowLabel the IPv6 flow label to match (20 bits)
*/
IPv6FlowLabelCriterion(int flowLabel) {
this.flowLabel = flowLabel & MASK;
}
@Override
public Type type() {
return Type.IPV6_FLABEL;
}
/**
* Gets the IPv6 flow label to match.
*
* @return the IPv6 flow label to match (20 bits)
*/
public int flowLabel() {
return flowLabel;
}
@Override
public String toString() {
return type().toString() + SEPARATOR + Long.toHexString(flowLabel);
}
@Override
public int hashCode() {
return Objects.hash(type().ordinal(), flowLabel);
}
@Override
public boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (obj instanceof IPv6FlowLabelCriterion) {
IPv6FlowLabelCriterion that = (IPv6FlowLabelCriterion) obj;
return Objects.equals(flowLabel, that.flowLabel) &&
Objects.equals(this.type(), that.type());
}
return false;
}
}
| apache-2.0 |
davideas/FlexibleAdapter | flexible-adapter/src/main/java/eu/davidea/viewholders/ExpandableViewHolder.java | 7781 | /*
* Copyright 2016-2017 Davide Steduto
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package eu.davidea.viewholders;
import android.view.View;
import android.view.View.OnClickListener;
import android.view.View.OnLongClickListener;
import androidx.annotation.CallSuper;
import eu.davidea.flexibleadapter.FlexibleAdapter;
import eu.davidea.flexibleadapter.Payload;
/**
* ViewHolder for a Expandable Items. It holds methods which can be used to trigger expansion
* or collapsing events.
* <p>This class extends {@link FlexibleViewHolder}, which means it will benefit of all
* implemented methods the super class holds.</p>
*
* @author Davide Steduto
* @since 16/01/2016 Created
*/
public abstract class ExpandableViewHolder extends FlexibleViewHolder {
/*--------------*/
/* CONSTRUCTORS */
/*--------------*/
/**
* Default constructor.
*
* @param view The {@link View} being hosted in this ViewHolder
* @param adapter Adapter instance of type {@link FlexibleAdapter}
* @since 5.0.0-b1
*/
public ExpandableViewHolder(View view, FlexibleAdapter adapter) {
super(view, adapter);
}
/**
* Constructor to configure the sticky behaviour of a view.
* <p><b>Note:</b> StickyHeader works only if the item has been declared of type
* {@link eu.davidea.flexibleadapter.items.IHeader}.</p>
*
* @param view The {@link View} being hosted in this ViewHolder
* @param adapter Adapter instance of type {@link FlexibleAdapter}
* @param stickyHeader true if the View can be a Sticky Header, false otherwise
* @since 5.0.0-b7
*/
public ExpandableViewHolder(View view, FlexibleAdapter adapter, boolean stickyHeader) {
super(view, adapter, stickyHeader);
}
/*--------------*/
/* MAIN METHODS */
/*--------------*/
/**
* Allows to expand or collapse child views of this itemView when {@link OnClickListener}
* event occurs on the entire view.
* <p>This method returns always true; Extend with "return false" to Not expand or collapse
* this ItemView onClick events.</p>
*
* @return always true, if not overridden
* @since 5.0.0-b1
*/
protected boolean isViewExpandableOnClick() {
return true;
}
/**
* Allows to collapse child views of this ItemView when {@link OnClickListener}
* event occurs on the entire view.
* <p>This method returns always true; Extend with "return false" to Not collapse this
* ItemView onClick events.</p>
*
* @return always true, if not overridden
* @since 5.0.4
*/
protected boolean isViewCollapsibleOnClick() {
return true;
}
/**
* Allows to collapse child views of this ItemView when {@link OnLongClickListener}
* event occurs on the entire view.
* <p>This method returns always true; Extend with "return false" to Not collapse this
* ItemView onLongClick events.</p>
*
* @return always true, if not overridden
* @since 5.0.0-b1
*/
protected boolean isViewCollapsibleOnLongClick() {
return true;
}
/**
* Allows to notify change and rebound this itemView on expanding and collapsing events,
* in order to update the content (so, user can decide to display the current expanding status).
* <p>This method returns always false; Override with {@code "return true"} to trigger the
* notification.</p>
*
* @return true to rebound the content of this itemView on expanding and collapsing events,
* false to ignore the events
* @see #expandView(int)
* @see #collapseView(int)
* @since 5.0.0-rc1
*/
protected boolean shouldNotifyParentOnClick() {
return false;
}
/**
* Expands or Collapses based on the current state AND on the configuration of the methods
* {@link #isViewExpandableOnClick()} and {@link #isViewCollapsibleOnClick()}.
*
* @see #shouldNotifyParentOnClick()
* @see #isViewExpandableOnClick()
* @see #isViewCollapsibleOnClick()
* @see #expandView(int)
* @see #collapseView(int)
* @since 5.0.0-b1
*/
protected void toggleExpansion() {
int position = getFlexibleAdapterPosition();
if (isViewCollapsibleOnClick() && mAdapter.isExpanded(position)) {
collapseView(position);
} else if (isViewExpandableOnClick() && !mAdapter.isSelected(position)) {
expandView(position);
}
}
/**
* Triggers expansion of this itemView.
* <p>If {@link #shouldNotifyParentOnClick()} returns {@code true}, this view is rebound
* with payload {@link Payload#EXPANDED}.</p>
*
* @see #shouldNotifyParentOnClick()
* @since 5.0.0-b1
*/
protected void expandView(int position) {
mAdapter.expand(position, shouldNotifyParentOnClick());
}
/**
* Triggers collapse of this itemView.
* <p>If {@link #shouldNotifyParentOnClick()} returns {@code true}, this view is rebound
* with payload {@link Payload#COLLAPSED}.</p>
*
* @see #shouldNotifyParentOnClick()
* @since 5.0.0-b1
*/
protected void collapseView(int position) {
mAdapter.collapse(position, shouldNotifyParentOnClick());
// #320 - Sticky header is not shown correctly once collapsed
// Scroll to this position if this Expandable is currently sticky
if (itemView.getX() < 0 || itemView.getY() < 0) {
mAdapter.getRecyclerView().scrollToPosition(position);
}
}
/*---------------------------------*/
/* CUSTOM LISTENERS IMPLEMENTATION */
/*---------------------------------*/
/**
* Called when user taps once on the ItemView.
* <p><b>Note:</b> In Expandable version, it tries to expand, but before,
* it checks if the view {@link #isViewExpandableOnClick()}.</p>
*
* @param view the view that receives the event
* @since 5.0.0-b1
*/
@Override
@CallSuper
public void onClick(View view) {
if (mAdapter.isItemEnabled(getFlexibleAdapterPosition())) {
toggleExpansion();
}
super.onClick(view);
}
/**
* Called when user long taps on this itemView.
* <p><b>Note:</b> In Expandable version, it tries to collapse, but before,
* it checks if the view {@link #isViewCollapsibleOnLongClick()}.</p>
*
* @param view the view that receives the event
* @since 5.0.0-b1
*/
@Override
@CallSuper
public boolean onLongClick(View view) {
int position = getFlexibleAdapterPosition();
if (mAdapter.isItemEnabled(position) && isViewCollapsibleOnLongClick()) {
collapseView(position);
}
return super.onLongClick(view);
}
/**
* {@inheritDoc}
* <p><b>Note:</b> In the Expandable version, expanded items are forced to collapse.</p>
*
* @since 5.0.0-b1
*/
@Override
@CallSuper
public void onActionStateChanged(int position, int actionState) {
if (mAdapter.isExpanded(getFlexibleAdapterPosition())) {
collapseView(position);
}
super.onActionStateChanged(position, actionState);
}
} | apache-2.0 |
baratine/auction | src/test/java/examples/auction/AuctionSync.java | 470 | package examples.auction;
import io.baratine.vault.IdAsset;
public interface AuctionSync extends Auction
{
IdAsset create(AuctionDataInit initData);
boolean open();
boolean bid(AuctionBid bid)
throws IllegalStateException;
boolean setAuctionWinner(String user);
boolean clearAuctionWinner(String user);
boolean setSettled();
boolean setRolledBack();
AuctionData get();
boolean close();
boolean refund();
String getSettlementId();
}
| apache-2.0 |
KleeGroup/vertigo-addons | vertigo-struts2/src/test/java/io/vertigo/struts2/domain/reference/Commune.java | 3560 | /**
* vertigo - simple java starter
*
* Copyright (C) 2013-2018, KleeGroup, direction.technique@kleegroup.com (http://www.kleegroup.com)
* KleeGroup, Centre d'affaire la Boursidiere - BP 159 - 92357 Le Plessis Robinson Cedex - France
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package io.vertigo.struts2.domain.reference;
import io.vertigo.dynamo.domain.model.DtMasterData;
import io.vertigo.dynamo.domain.model.URI;
import io.vertigo.dynamo.domain.stereotype.Field;
import io.vertigo.dynamo.domain.util.DtObjectUtil;
/**
* Attention cette classe est générée automatiquement !
* Objet de données Commune
*/
@io.vertigo.dynamo.domain.stereotype.DataSpace("inseeCsv")
public final class Commune implements DtMasterData {
/** SerialVersionUID. */
private static final long serialVersionUID = 1L;
private Long idInsee;
private String codePostal;
private String commune;
private String departement;
/** {@inheritDoc} */
@Override
public URI<Commune> getURI() {
return DtObjectUtil.createURI(this);
}
/**
* Champ : ID.
* Récupère la valeur de la propriété 'ID INSEE'.
* @return Long idInsee <b>Obligatoire</b>
*/
@Field(domain = "DO_ID", type = "ID", required = true, label = "ID INSEE")
public Long getIdInsee() {
return idInsee;
}
/**
* Champ : ID.
* Définit la valeur de la propriété 'ID INSEE'.
* @param idInsee Long <b>Obligatoire</b>
*/
public void setIdInsee(final Long idInsee) {
this.idInsee = idInsee;
}
/**
* Champ : DATA.
* Récupère la valeur de la propriété 'Code postal'.
* @return String codePostal <b>Obligatoire</b>
*/
@Field(domain = "DO_CODE_POSTAL", required = true, label = "Code postal")
public String getCodePostal() {
return codePostal;
}
/**
* Champ : DATA.
* Définit la valeur de la propriété 'Code postal'.
* @param codePostal String <b>Obligatoire</b>
*/
public void setCodePostal(final String codePostal) {
this.codePostal = codePostal;
}
/**
* Champ : DATA.
* Récupère la valeur de la propriété 'Commune'.
* @return String commune <b>Obligatoire</b>
*/
@Field(domain = "DO_LABEL", required = true, label = "Commune")
public String getCommune() {
return commune;
}
/**
* Champ : DATA.
* Définit la valeur de la propriété 'Commune'.
* @param commune String <b>Obligatoire</b>
*/
public void setCommune(final String commune) {
this.commune = commune;
}
/**
* Champ : DATA.
* Récupère la valeur de la propriété 'Département'.
* @return String departement <b>Obligatoire</b>
*/
@Field(domain = "DO_LABEL", required = true, label = "Département")
public String getDepartement() {
return departement;
}
/**
* Champ : DATA.
* Définit la valeur de la propriété 'D�partement'.
* @param departement String <b>Obligatoire</b>
*/
public void setDepartement(final String departement) {
this.departement = departement;
}
//Aucune Association déclarée
/** {@inheritDoc} */
@Override
public String toString() {
return DtObjectUtil.toString(this);
}
}
| apache-2.0 |
gastaldi/hibernate-validator | hibernate-validator/src/test/java/org/hibernate/validator/test/metadata/ChildWithAtValid.java | 1016 | /*
* JBoss, Home of Professional Open Source
* Copyright 2011, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.hibernate.validator.test.metadata;
import javax.validation.Valid;
/**
* @author Gunnar Morling
*/
public class ChildWithAtValid extends ParentWithoutAtValid {
@Valid
public Order getOrder() {
return null;
}
}
| apache-2.0 |
leafclick/intellij-community | platform/lang-impl/src/com/intellij/usageView/impl/UsageContextCallHierarchyPanel.java | 5209 | /*
* Copyright 2000-2014 JetBrains s.r.o.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.intellij.usageView.impl;
import com.intellij.ide.hierarchy.*;
import com.intellij.ide.hierarchy.actions.BrowseHierarchyActionBase;
import com.intellij.openapi.Disposable;
import com.intellij.openapi.actionSystem.CommonDataKeys;
import com.intellij.openapi.actionSystem.DataContext;
import com.intellij.openapi.actionSystem.impl.SimpleDataContext;
import com.intellij.openapi.project.Project;
import com.intellij.openapi.util.Disposer;
import com.intellij.psi.PsiElement;
import com.intellij.usageView.UsageInfo;
import com.intellij.usageView.UsageViewBundle;
import com.intellij.usages.*;
import com.intellij.usages.impl.UsageContextPanelBase;
import com.intellij.usages.impl.UsageViewImpl;
import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;
import javax.swing.*;
import java.awt.*;
import java.util.List;
public class UsageContextCallHierarchyPanel extends UsageContextPanelBase {
private HierarchyBrowser myBrowser;
public static class Provider implements UsageContextPanel.Provider {
@NotNull
@Override
public UsageContextPanel create(@NotNull UsageView usageView) {
return new UsageContextCallHierarchyPanel(((UsageViewImpl)usageView).getProject(), usageView.getPresentation());
}
@Override
public boolean isAvailableFor(@NotNull UsageView usageView) {
UsageTarget[] targets = ((UsageViewImpl)usageView).getTargets();
if (targets.length == 0) return false;
UsageTarget target = targets[0];
if (!(target instanceof PsiElementUsageTarget)) return false;
PsiElement element = ((PsiElementUsageTarget)target).getElement();
if (element == null || !element.isValid()) return false;
Project project = element.getProject();
DataContext context = SimpleDataContext.getSimpleContext(CommonDataKeys.PSI_ELEMENT.getName(), element,
SimpleDataContext.getProjectContext(project));
HierarchyProvider provider = BrowseHierarchyActionBase.findBestHierarchyProvider(LanguageCallHierarchy.INSTANCE, element, context);
if (provider == null) return false;
PsiElement providerTarget = provider.getTarget(context);
return providerTarget != null;
}
@NotNull
@Override
public String getTabTitle() {
return "Call Hierarchy";
}
}
public UsageContextCallHierarchyPanel(@NotNull Project project, @NotNull UsageViewPresentation presentation) {
super(project, presentation);
}
@Override
public void dispose() {
super.dispose();
myBrowser = null;
}
@Override
public void updateLayoutLater(@Nullable final List<? extends UsageInfo> infos) {
PsiElement element = infos == null ? null : getElementToSliceOn(infos);
if (myBrowser instanceof Disposable) {
Disposer.dispose((Disposable)myBrowser);
myBrowser = null;
}
if (element != null) {
myBrowser = createCallHierarchyPanel(element);
if (myBrowser == null) {
element = null;
}
}
removeAll();
if (element == null) {
JComponent titleComp = new JLabel(UsageViewBundle.message("select.the.usage.to.preview", myPresentation.getUsagesWord()), SwingConstants.CENTER);
add(titleComp, BorderLayout.CENTER);
}
else {
if (myBrowser instanceof Disposable) {
Disposer.register(this, (Disposable)myBrowser);
}
JComponent panel = myBrowser.getComponent();
add(panel, BorderLayout.CENTER);
}
revalidate();
}
@Nullable
private static HierarchyBrowser createCallHierarchyPanel(@NotNull PsiElement element) {
DataContext context = SimpleDataContext.getSimpleContext(CommonDataKeys.PSI_ELEMENT.getName(), element, SimpleDataContext.getProjectContext(element.getProject()));
HierarchyProvider provider = BrowseHierarchyActionBase.findBestHierarchyProvider(LanguageCallHierarchy.INSTANCE, element, context);
if (provider == null) return null;
PsiElement providerTarget = provider.getTarget(context);
if (providerTarget == null) return null;
HierarchyBrowser browser = provider.createHierarchyBrowser(providerTarget);
if (browser instanceof HierarchyBrowserBaseEx) {
HierarchyBrowserBaseEx browserEx = (HierarchyBrowserBaseEx)browser;
// do not steal focus when scrolling through nodes
browserEx.changeView(CallHierarchyBrowserBase.getCallerType(), false);
}
return browser;
}
private static PsiElement getElementToSliceOn(@NotNull List<? extends UsageInfo> infos) {
UsageInfo info = infos.get(0);
return info.getElement();
}
}
| apache-2.0 |
gawkermedia/googleads-java-lib | modules/adwords_axis/src/main/java/com/google/api/ads/adwords/axis/v201601/rm/AdwordsUserListService.java | 720 | /**
* AdwordsUserListService.java
*
* This file was auto-generated from WSDL
* by the Apache Axis 1.4 Mar 02, 2009 (07:08:06 PST) WSDL2Java emitter.
*/
package com.google.api.ads.adwords.axis.v201601.rm;
public interface AdwordsUserListService extends javax.xml.rpc.Service {
public java.lang.String getAdwordsUserListServiceInterfacePortAddress();
public com.google.api.ads.adwords.axis.v201601.rm.AdwordsUserListServiceInterface getAdwordsUserListServiceInterfacePort() throws javax.xml.rpc.ServiceException;
public com.google.api.ads.adwords.axis.v201601.rm.AdwordsUserListServiceInterface getAdwordsUserListServiceInterfacePort(java.net.URL portAddress) throws javax.xml.rpc.ServiceException;
}
| apache-2.0 |
openaire/iis | iis-wf/iis-wf-referenceextraction/src/main/java/eu/dnetlib/iis/wf/referenceextraction/RetryLimitExceededException.java | 450 | package eu.dnetlib.iis.wf.referenceextraction;
/**
* Exception indicating number of retries exceeded the predefined limit.
*
* @author mhorst
*
*/
public class RetryLimitExceededException extends Exception {
private static final long serialVersionUID = -1084913230112190824L;
//------------------------ CONSTRUCTORS -------------------
public RetryLimitExceededException(String message) {
super(message);
}
}
| apache-2.0 |
leafclick/intellij-community | plugins/InspectionGadgets/InspectionGadgetsAnalysis/src/com/siyeh/ig/testFrameworks/AssertHint.java | 8389 | // Copyright 2000-2019 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file.
package com.siyeh.ig.testFrameworks;
import com.intellij.psi.*;
import com.siyeh.ig.junit.JUnitCommonClassNames;
import org.jetbrains.annotations.NonNls;
import org.jetbrains.annotations.Nullable;
import java.util.Collections;
import java.util.HashMap;
import java.util.Map;
import java.util.function.Function;
public class AssertHint {
private final int myArgIndex;
private final boolean myMessageOnFirstPosition;
private final PsiExpression myMessage;
private final PsiMethod myMethod;
private final PsiExpression myOriginalExpression;
private AssertHint(int index,
boolean messageOnFirstPosition,
PsiExpression message,
PsiMethod method,
PsiExpression originalExpression) {
myArgIndex = index;
myMessageOnFirstPosition = messageOnFirstPosition;
myMessage = message;
myMethod = method;
myOriginalExpression = originalExpression;
}
public boolean isMessageOnFirstPosition() {
return myMessageOnFirstPosition;
}
public int getArgIndex() {
return myArgIndex;
}
public PsiMethod getMethod() {
return myMethod;
}
public PsiExpression getFirstArgument() {
return ((PsiMethodCallExpression)myOriginalExpression).getArgumentList().getExpressions()[myArgIndex];
}
public PsiExpression getSecondArgument() {
return ((PsiMethodCallExpression)myOriginalExpression).getArgumentList().getExpressions()[myArgIndex + 1];
}
public PsiExpression getExpected(boolean checkTestNG) {
return checkTestNG ? getSecondArgument() : getFirstArgument();
}
public PsiExpression getActual(boolean checkTestNG) {
return checkTestNG ? getFirstArgument() : getSecondArgument();
}
public PsiExpression getOriginalExpression() {
return myOriginalExpression;
}
@Nullable
public PsiExpression getMessage() {
return myMessage;
}
public static AssertHint createAssertEqualsHint(PsiMethodCallExpression expression, boolean checkTestNG) {
return create(expression, methodName -> "assertEquals".equals(methodName) ? 2 : null, checkTestNG);
}
public static AssertHint createAssertTrueFalseHint(PsiMethodCallExpression expression, boolean checkTestNG) {
return create(expression, methodName -> "assertTrue".equals(methodName) || "assertFalse".equals(methodName) ? 1 : null, checkTestNG);
}
public static AssertHint create(PsiMethodCallExpression expression,
Function<? super String, Integer> methodNameToParamCount,
boolean checkTestNG) {
final PsiReferenceExpression methodExpression = expression.getMethodExpression();
@NonNls final String methodName = methodExpression.getReferenceName();
final Integer minimumParamCount = methodNameToParamCount.apply(methodName);
if (minimumParamCount == null) {
return null;
}
final JavaResolveResult resolveResult = expression.resolveMethodGenerics();
final PsiMethod method = (PsiMethod)resolveResult.getElement();
if (method == null || method.hasModifierProperty(PsiModifier.PRIVATE) || !resolveResult.isValidResult()) {
return null;
}
final boolean messageOnLastPosition = isMessageOnLastPosition(method, checkTestNG);
final boolean messageOnFirstPosition = isMessageOnFirstPosition(method, checkTestNG);
if (!messageOnFirstPosition && !messageOnLastPosition) {
return null;
}
final PsiParameterList parameterList = method.getParameterList();
final PsiParameter[] parameters = parameterList.getParameters();
if (parameters.length < minimumParamCount) {
return null;
}
final PsiExpressionList argumentList = expression.getArgumentList();
final PsiExpression[] arguments = argumentList.getExpressions();
final int argumentIndex;
PsiExpression message = null;
if (messageOnFirstPosition) {
if (parameters.length > 0 && parameters[0].getType().equalsToText(CommonClassNames.JAVA_LANG_STRING) && parameters.length > minimumParamCount) {
argumentIndex = 1;
message = arguments[0];
}
else {
argumentIndex = 0;
}
}
else {
argumentIndex = 0;
if (parameters.length > minimumParamCount && minimumParamCount >= 0) {
final int lastParameterIdx = parameters.length - 1;
//check that it's not delta in assertEquals(dbl, dbl, dbl), etc
if (parameters[lastParameterIdx].getType() instanceof PsiClassType) {
message = arguments[lastParameterIdx];
}
}
}
return new AssertHint(argumentIndex, messageOnFirstPosition, message, method, expression);
}
public static AssertHint create(PsiMethodReferenceExpression methodExpression,
Function<? super String, Integer> methodNameToParamCount,
boolean checkTestNG) {
@NonNls final String methodName = methodExpression.getReferenceName();
final Integer minimumParamCount = methodNameToParamCount.apply(methodName);
if (minimumParamCount == null) {
return null;
}
final JavaResolveResult resolveResult = methodExpression.advancedResolve(false);
final PsiElement element = resolveResult.getElement();
if (!(element instanceof PsiMethod)) {
return null;
}
final PsiMethod method = (PsiMethod)element;
if (method.hasModifierProperty(PsiModifier.PRIVATE) || !resolveResult.isValidResult()) {
return null;
}
final boolean messageOnLastPosition = isMessageOnLastPosition(method, checkTestNG);
final boolean messageOnFirstPosition = isMessageOnFirstPosition(method, checkTestNG);
if (!messageOnFirstPosition && !messageOnLastPosition) {
return null;
}
final PsiParameterList parameterList = method.getParameterList();
final PsiParameter[] parameters = parameterList.getParameters();
if (parameters.length != minimumParamCount) {
return null;
}
return new AssertHint(0, messageOnFirstPosition, null, method, methodExpression);
}
private static boolean isMessageOnFirstPosition(PsiMethod method, boolean checkTestNG) {
final PsiClass containingClass = method.getContainingClass();
if (containingClass == null) {
return false;
}
final String qualifiedName = containingClass.getQualifiedName();
if (checkTestNG) {
return "org.testng.AssertJUnit".equals(qualifiedName) || "org.testng.Assert".equals(qualifiedName) && "fail".equals(method.getName());
}
return JUnitCommonClassNames.JUNIT_FRAMEWORK_ASSERT.equals(qualifiedName) ||
JUnitCommonClassNames.ORG_JUNIT_ASSERT.equals(qualifiedName) ||
JUnitCommonClassNames.JUNIT_FRAMEWORK_TEST_CASE.equals(qualifiedName) ||
JUnitCommonClassNames.ORG_JUNIT_ASSUME.equals(qualifiedName);
}
private static boolean isMessageOnLastPosition(PsiMethod method, boolean checkTestNG) {
final PsiClass containingClass = method.getContainingClass();
if (containingClass == null) {
return false;
}
final String qualifiedName = containingClass.getQualifiedName();
if (checkTestNG) {
return "org.testng.Assert".equals(qualifiedName) && !"fail".equals(method.getName());
}
return JUnitCommonClassNames.ORG_JUNIT_JUPITER_API_ASSERTIONS.equals(qualifiedName) ||
JUnitCommonClassNames.ORG_JUNIT_JUPITER_API_ASSUMPTIONS.equals(qualifiedName);
}
public boolean isAssertTrue() {
return "assertTrue".equals(getMethod().getName());
}
public static class JUnitCommonAssertNames {
@NonNls public static final Map<String, Integer> ASSERT_METHOD_2_PARAMETER_COUNT;
static {
final HashMap<String, Integer> map = new HashMap<>(13);
map.put("assertArrayEquals", 2);
map.put("assertEquals", 2);
map.put("assertNotEquals", 2);
map.put("assertFalse", 1);
map.put("assumeFalse", 1);
map.put("assertNotNull", 1);
map.put("assertNotSame", 2);
map.put("assertNull", 1);
map.put("assertSame", 2);
map.put("assertThat", 2);
map.put("assertTrue", 1);
map.put("assumeTrue", 1);
map.put("fail", 0);
ASSERT_METHOD_2_PARAMETER_COUNT = Collections.unmodifiableMap(map);
}
}
}
| apache-2.0 |
reo7sp/SBF-Bukkit-Plugin | src/net/sbfmc/modules/mooncraft/MooncraftPlayerSession.java | 3352 | /*
Copyright 2014 Reo_SP
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package net.sbfmc.modules.mooncraft;
import net.sbfmc.module.PlayerSession;
import org.bukkit.OfflinePlayer;
import org.bukkit.entity.Player;
public class MooncraftPlayerSession extends PlayerSession {
private float water = 99;
private float food = 99;
private float power = 99;
private float oxygen = 99;
private float blood = 99;
private int bleeding;
private int notifications;
private long lastStartKit;
public MooncraftPlayerSession(OfflinePlayer player) {
super(player);
if (!player.getPlayer().getWorld().getName().startsWith("Mooncraft")) {
throw new IllegalArgumentException("Player isn't in mooncraft world");
}
}
public MooncraftPlayerSession(Player player, float water, float food, float power, float oxygen, float blood, int bleeding, long lastStartKit) {
super(player);
if (!player.getWorld().getName().startsWith("Mooncraft")) {
throw new IllegalArgumentException("Player isn't in mooncraft world");
}
this.lastStartKit = lastStartKit;
setWater(water);
setFood(food);
setPower(power);
setOxygen(oxygen);
setBlood(blood);
setBleeding(bleeding);
}
@Override
public int getModuleID() {
return 2;
}
public float getWater() {
return water;
}
public void setWater(float water) {
if (water < 0) {
this.water = 0;
} else if (water > 99) {
this.water = 99;
} else {
this.water = water;
}
}
public float getFood() {
return food;
}
public void setFood(float food) {
if (food < 0) {
this.food = 0;
} else if (food > 99) {
this.food = 99;
} else {
this.food = food;
}
}
public float getPower() {
return power;
}
public void setPower(float power) {
if (power < 0) {
this.power = 0;
} else if (power > 99) {
this.power = 99;
} else {
this.power = power;
}
}
public float getBlood() {
return blood;
}
public void setBlood(float blood) {
if (blood < 0) {
this.blood = 0;
} else if (blood > 99) {
this.blood = 99;
} else {
this.blood = blood;
}
}
public int getBleeding() {
return bleeding;
}
public void setBleeding(int bleeding) {
if (bleeding < 0) {
this.bleeding = 0;
} else if (bleeding > 4) {
this.bleeding = 4;
} else {
this.bleeding = bleeding;
}
}
public int getNotifications() {
return notifications;
}
public void setNotifications(int notifications) {
if (notifications < 0) {
this.notifications = 0;
} else if (notifications > 9) {
this.notifications = 9;
} else {
this.notifications = notifications;
}
}
public float getOxygen() {
return oxygen;
}
public void setOxygen(float oxygen) {
this.oxygen = oxygen;
}
public long getLastStartKit() {
return lastStartKit;
}
public void setLastStartKit(long lastStartKit) {
this.lastStartKit = lastStartKit;
}
}
| apache-2.0 |
wpiasecki/graviola-android | src/org/github/wpiasecki/graviola/modelo/Horario.java | 846 | package org.github.wpiasecki.graviola.modelo;
import org.github.wpiasecki.graviola.db.Coluna;
import org.github.wpiasecki.graviola.db.Tabela;
import android.provider.BaseColumns;
public class Horario implements Tabela {
public static final String ID = BaseColumns._ID;
public static final String HORA = "hora";
public static final String PONTO_ID = "ponto_id";
public final Integer id;
public final Ponto ponto;
public final String hora;
public Horario(Integer id, Ponto ponto, String hora) {
this.id = id;
this.ponto = ponto;
this.hora = hora;
}
public Horario() { this(null, null, null); }
@Override
public String getNomeTabela() {
return "horario";
}
@Override
public Coluna[] getColunas() {
return new Coluna[] {
Coluna.pk(ID),
Coluna.varchar(HORA, 5),
Coluna.fk(PONTO_ID, "ponto(id)")
};
}
}
| apache-2.0 |
IHTSDO/snow-owl | dependencies/org.eclipse.emf.cdo.common/src/org/eclipse/emf/cdo/internal/common/revision/delta/CDORevisionDeltaImpl.java | 15910 | /*
* Copyright (c) 2004 - 2012 Eike Stepper (Berlin, Germany) and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Eike Stepper - initial API and implementation
* Simon McDuff - bug 201266
* Simon McDuff - bug 204890
*/
package org.eclipse.emf.cdo.internal.common.revision.delta;
import java.io.IOException;
import java.text.MessageFormat;
import java.util.ArrayList;
import java.util.Collection;
import java.util.HashMap;
import java.util.Iterator;
import java.util.List;
import java.util.ListIterator;
import java.util.Map;
import org.eclipse.emf.cdo.common.branch.CDOBranch;
import org.eclipse.emf.cdo.common.id.CDOID;
import org.eclipse.emf.cdo.common.id.CDOWithID;
import org.eclipse.emf.cdo.common.model.CDOModelUtil;
import org.eclipse.emf.cdo.common.protocol.CDODataInput;
import org.eclipse.emf.cdo.common.protocol.CDODataOutput;
import org.eclipse.emf.cdo.common.revision.CDOElementProxy;
import org.eclipse.emf.cdo.common.revision.CDOList;
import org.eclipse.emf.cdo.common.revision.CDORevisable;
import org.eclipse.emf.cdo.common.revision.CDORevision;
import org.eclipse.emf.cdo.common.revision.CDORevisionData;
import org.eclipse.emf.cdo.common.revision.CDORevisionUtil;
import org.eclipse.emf.cdo.common.revision.delta.CDOClearFeatureDelta;
import org.eclipse.emf.cdo.common.revision.delta.CDOFeatureDelta;
import org.eclipse.emf.cdo.common.revision.delta.CDOFeatureDeltaVisitor;
import org.eclipse.emf.cdo.common.revision.delta.CDOListFeatureDelta;
import org.eclipse.emf.cdo.common.revision.delta.CDORevisionDelta;
import org.eclipse.emf.cdo.common.revision.delta.CDOUnsetFeatureDelta;
import org.eclipse.emf.cdo.common.util.PartialCollectionLoadingNotSupportedException;
import org.eclipse.emf.cdo.common.util.UnorderedListDifferenceAnalyzer;
import org.eclipse.emf.cdo.internal.common.revision.CDOListImpl;
import org.eclipse.emf.cdo.spi.common.revision.CDOReferenceAdjuster;
import org.eclipse.emf.cdo.spi.common.revision.InternalCDOFeatureDelta;
import org.eclipse.emf.cdo.spi.common.revision.InternalCDORevision;
import org.eclipse.emf.cdo.spi.common.revision.InternalCDORevisionDelta;
import org.eclipse.emf.common.util.ECollections;
import org.eclipse.emf.common.util.EList;
import org.eclipse.emf.ecore.EClass;
import org.eclipse.emf.ecore.EStructuralFeature;
import org.eclipse.emf.ecore.change.ListChange;
import org.eclipse.emf.ecore.change.util.ListDifferenceAnalyzer;
/**
* @author Eike Stepper
*/
public class CDORevisionDeltaImpl implements InternalCDORevisionDelta
{
private EClass eClass;
private CDOID id;
private CDOBranch branch;
private int version;
private CDORevisable target;
private Map<EStructuralFeature, CDOFeatureDelta> featureDeltas = new HashMap<EStructuralFeature, CDOFeatureDelta>();
public CDORevisionDeltaImpl(CDORevision revision)
{
eClass = revision.getEClass();
id = revision.getID();
branch = revision.getBranch();
version = revision.getVersion();
}
public CDORevisionDeltaImpl(CDORevisionDelta revisionDelta, boolean copyFeatureDeltas)
{
eClass = revisionDelta.getEClass();
id = revisionDelta.getID();
branch = revisionDelta.getBranch();
version = revisionDelta.getVersion();
if (copyFeatureDeltas)
{
for (CDOFeatureDelta delta : revisionDelta.getFeatureDeltas())
{
addFeatureDelta(((InternalCDOFeatureDelta)delta).copy());
}
}
}
public CDORevisionDeltaImpl(CDORevision sourceRevision, CDORevision targetRevision)
{
if (sourceRevision.getEClass() != targetRevision.getEClass())
{
throw new IllegalArgumentException();
}
eClass = sourceRevision.getEClass();
id = sourceRevision.getID();
branch = sourceRevision.getBranch();
version = sourceRevision.getVersion();
target = CDORevisionUtil.copyRevisable(targetRevision);
compare(sourceRevision, targetRevision);
CDORevisionData originData = sourceRevision.data();
CDORevisionData dirtyData = targetRevision.data();
Object dirtyContainerID = dirtyData.getContainerID();
if (dirtyContainerID instanceof CDOWithID)
{
dirtyContainerID = ((CDOWithID)dirtyContainerID).cdoID();
}
if (!compare(originData.getContainerID(), dirtyContainerID)
|| !compare(originData.getContainingFeatureID(), dirtyData.getContainingFeatureID())
|| !compare(originData.getResourceID(), dirtyData.getResourceID()))
{
addFeatureDelta(new CDOContainerFeatureDeltaImpl(dirtyData.getResourceID(), dirtyContainerID,
dirtyData.getContainingFeatureID()));
}
}
public CDORevisionDeltaImpl(CDODataInput in) throws IOException
{
eClass = (EClass)in.readCDOClassifierRefAndResolve();
id = in.readCDOID();
branch = in.readCDOBranch();
version = in.readInt();
if (version < 0)
{
version = -version;
target = in.readCDORevisable();
}
int size = in.readInt();
for (int i = 0; i < size; i++)
{
CDOFeatureDelta featureDelta = in.readCDOFeatureDelta(eClass);
featureDeltas.put(featureDelta.getFeature(), featureDelta);
}
}
public void write(CDODataOutput out) throws IOException
{
out.writeCDOClassifierRef(eClass);
out.writeCDOID(id);
out.writeCDOBranch(branch);
if (target == null)
{
out.writeInt(version);
}
else
{
out.writeInt(-version);
out.writeCDORevisable(target);
}
out.writeInt(featureDeltas.size());
for (CDOFeatureDelta featureDelta : featureDeltas.values())
{
out.writeCDOFeatureDelta(eClass, featureDelta);
}
}
public EClass getEClass()
{
return eClass;
}
public CDOID getID()
{
return id;
}
public CDOBranch getBranch()
{
return branch;
}
public void setBranch(CDOBranch branch)
{
this.branch = branch;
}
public int getVersion()
{
return version;
}
public void setVersion(int version)
{
this.version = version;
}
public CDORevisable getTarget()
{
return target;
}
public void setTarget(CDORevisable target)
{
this.target = target;
}
public boolean isEmpty()
{
return featureDeltas.isEmpty();
}
public CDORevisionDelta copy()
{
return new CDORevisionDeltaImpl(this, true);
}
public Map<EStructuralFeature, CDOFeatureDelta> getFeatureDeltaMap()
{
return featureDeltas;
}
public CDOFeatureDelta getFeatureDelta(EStructuralFeature feature)
{
return featureDeltas.get(feature);
}
public List<CDOFeatureDelta> getFeatureDeltas()
{
return new ArrayList<CDOFeatureDelta>(featureDeltas.values());
}
public void apply(CDORevision revision)
{
for (CDOFeatureDelta featureDelta : featureDeltas.values())
{
((CDOFeatureDeltaImpl)featureDelta).apply(revision);
}
}
public void addFeatureDelta(CDOFeatureDelta delta)
{
if (delta instanceof CDOListFeatureDelta)
{
CDOListFeatureDelta deltas = (CDOListFeatureDelta)delta;
for (CDOFeatureDelta childDelta : deltas.getListChanges())
{
addFeatureDelta(childDelta);
}
}
else
{
addSingleFeatureDelta(delta);
}
}
private void addSingleFeatureDelta(CDOFeatureDelta delta)
{
EStructuralFeature feature = delta.getFeature();
if (feature.isMany())
{
CDOListFeatureDeltaImpl listDelta = (CDOListFeatureDeltaImpl)featureDeltas.get(feature);
if (listDelta == null)
{
listDelta = new CDOListFeatureDeltaImpl(feature);
featureDeltas.put(listDelta.getFeature(), listDelta);
}
// Remove all previous changes
if (delta instanceof CDOClearFeatureDelta || delta instanceof CDOUnsetFeatureDelta)
{
listDelta.getListChanges().clear();
}
listDelta.add(delta);
}
else
{
featureDeltas.put(feature, delta);
}
}
public boolean adjustReferences(CDOReferenceAdjuster referenceAdjuster)
{
boolean changed = false;
for (CDOFeatureDelta featureDelta : featureDeltas.values())
{
changed |= ((CDOFeatureDeltaImpl)featureDelta).adjustReferences(referenceAdjuster);
}
return changed;
}
public void accept(CDOFeatureDeltaVisitor visitor)
{
for (CDOFeatureDelta featureDelta : featureDeltas.values())
{
((CDOFeatureDeltaImpl)featureDelta).accept(visitor);
}
}
private void compare(CDORevision originRevision, CDORevision dirtyRevision)
{
CDORevisionData originData = originRevision.data();
CDORevisionData dirtyData = dirtyRevision.data();
for (final EStructuralFeature feature : CDOModelUtil.getAllPersistentFeatures(eClass))
{
if (feature.isMany())
{
if (originData.size(feature) > 0 && dirtyData.size(feature) == 0)
{
addFeatureDelta(new CDOClearFeatureDeltaImpl(feature));
}
else
{
CDOListFeatureDelta listFeatureDelta = new CDOListFeatureDeltaImpl(feature);
List<CDOFeatureDelta> changes = listFeatureDelta.getListChanges();
CDOList originList = ((InternalCDORevision)originRevision).getList(feature);
CDOList dirtyList = ((InternalCDORevision)dirtyRevision).getList(feature);
checkNoProxies(originList);
checkNoProxies(dirtyList);
if (!feature.isOrdered())
{
compareUnorderedList(feature, originList, dirtyList, changes);
}
else
{
compareOrderedList(feature, originList, dirtyList, changes);
}
if (!changes.isEmpty())
{
featureDeltas.put(feature, listFeatureDelta);
}
}
}
else
{
Object originValue = originData.get(feature, 0);
Object dirtyValue = dirtyData.get(feature, 0);
if (!compare(originValue, dirtyValue))
{
if (dirtyValue == null)
{
addFeatureDelta(new CDOUnsetFeatureDeltaImpl(feature));
}
else
{
addFeatureDelta(new CDOSetFeatureDeltaImpl(feature, 0, dirtyValue, originValue));
}
}
}
}
}
private void checkNoProxies(EList<?> list)
{
for (Object element : list)
{
if (element instanceof CDOElementProxy || element == CDOListImpl.UNINITIALIZED)
{
throw new PartialCollectionLoadingNotSupportedException("List contains proxy elements");
}
}
}
private void compareUnorderedList(final EStructuralFeature feature, final CDOList originList, final CDOList dirtyList, final List<CDOFeatureDelta> changes)
{
final CDOListImpl oldListClone = new CDOListImpl(originList.size(), 0, false);
oldListClone.addAll(originList);
final UnorderedListDifferenceAnalyzer analyzer = new UnorderedListDifferenceAnalyzer()
{
@Override
protected void createAddListChange(CDOList oldList, Object newObject, int index)
{
CDOFeatureDelta delta = new CDOAddFeatureDeltaImpl(feature, index, newObject);
changes.add(delta);
super.createAddListChange(oldList, newObject, index);
}
@Override
protected void createRemoveListChange(CDOList oldList, Object oldObject, int index)
{
CDORemoveFeatureDeltaImpl delta = new CDORemoveFeatureDeltaImpl(feature, index);
delta.setValue(oldObject);
changes.add(delta);
super.createRemoveListChange(oldList, oldObject, index);
}
};
analyzer.createListChanges(oldListClone, dirtyList);
}
private void compareOrderedList(final EStructuralFeature feature, final CDOList originList, final CDOList dirtyList, final List<CDOFeatureDelta> changes)
{
ListDifferenceAnalyzer analyzer = new ListDifferenceAnalyzer()
{
@Override
protected void createAddListChange(EList<Object> oldList, EList<ListChange> listChanges, Object value,
int index)
{
CDOFeatureDelta delta = new CDOAddFeatureDeltaImpl(feature, index, value);
changes.add(delta);
oldList.add(index, value);
}
@Override
protected void createRemoveListChange(EList<?> oldList, EList<ListChange> listChanges, Object value,
int index)
{
CDORemoveFeatureDeltaImpl delta = new CDORemoveFeatureDeltaImpl(feature, index);
// fix until ListDifferenceAnalyzer delivers the correct value (bug #308618).
delta.setValue(oldList.get(index));
changes.add(delta);
oldList.remove(index);
}
@Override
protected void createMoveListChange(EList<?> oldList, EList<ListChange> listChanges, Object value,
int index, int toIndex)
{
CDOMoveFeatureDeltaImpl delta = new CDOMoveFeatureDeltaImpl(feature, toIndex, index);
// fix until ListDifferenceAnalyzer delivers the correct value (same problem as bug #308618).
delta.setValue(oldList.get(index));
changes.add(delta);
oldList.move(toIndex, index);
}
};
analyzer.analyzeLists(originList, dirtyList, new NOOPList());
}
private boolean compare(Object originValue, Object dirtyValue)
{
return originValue == dirtyValue || originValue != null && dirtyValue != null && originValue.equals(dirtyValue);
}
@Override
public String toString()
{
return MessageFormat.format("CDORevisionDelta[{0}@{1}:{2}v{3} --> {4}]", eClass.getName(), id, branch.getID(),
version, featureDeltas.values());
}
/**
* @author Eike Stepper
*/
public static class NOOPList implements EList<ListChange>
{
private static final EList<ListChange> LIST = ECollections.emptyEList();
public NOOPList()
{
}
public int size()
{
return 0;
}
public boolean isEmpty()
{
return true;
}
public boolean contains(Object o)
{
return false;
}
public Iterator<ListChange> iterator()
{
return LIST.iterator();
}
public Object[] toArray()
{
return LIST.toArray();
}
public <T> T[] toArray(T[] a)
{
return LIST.toArray(a);
}
public boolean add(ListChange o)
{
return false;
}
public boolean remove(Object o)
{
return false;
}
public boolean containsAll(Collection<?> c)
{
return false;
}
public boolean addAll(Collection<? extends ListChange> c)
{
return false;
}
public boolean addAll(int index, Collection<? extends ListChange> c)
{
return false;
}
public boolean removeAll(Collection<?> c)
{
return false;
}
public boolean retainAll(Collection<?> c)
{
return false;
}
public void clear()
{
}
public ListChange get(int index)
{
return LIST.get(index);
}
public ListChange set(int index, ListChange element)
{
return null;
}
public void add(int index, ListChange element)
{
}
public ListChange remove(int index)
{
return null;
}
public int indexOf(Object o)
{
return LIST.indexOf(o);
}
public int lastIndexOf(Object o)
{
return LIST.lastIndexOf(o);
}
public ListIterator<ListChange> listIterator()
{
return LIST.listIterator();
}
public ListIterator<ListChange> listIterator(int index)
{
return LIST.listIterator(index);
}
public List<ListChange> subList(int fromIndex, int toIndex)
{
return LIST.subList(fromIndex, toIndex);
}
public void move(int newPosition, ListChange object)
{
}
public ListChange move(int newPosition, int oldPosition)
{
return null;
}
}
}
| apache-2.0 |
lsimons/phloc-schematron-standalone | phloc-commons/src/test/java/com/phloc/commons/xml/ChildElementIteratorTest.java | 2263 | /**
* Copyright (C) 2006-2013 phloc systems
* http://www.phloc.com
* office[at]phloc[dot]com
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.phloc.commons.xml;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertFalse;
import static org.junit.Assert.fail;
import org.junit.Test;
import org.w3c.dom.Document;
import org.w3c.dom.Element;
import com.phloc.commons.collections.ContainerHelper;
import com.phloc.commons.mock.AbstractPhlocTestCase;
/**
* Test class for class {@link ChildElementIterator}.
*
* @author Philip Helger
*/
public final class ChildElementIteratorTest extends AbstractPhlocTestCase
{
@Test
public void testGetRecursiveChildIter ()
{
final Document doc = XMLFactory.newDocument ();
// No children present
assertFalse (new ChildElementIterator (doc).hasNext ());
// 1 child
final Element eRoot = (Element) doc.appendChild (doc.createElement ("root"));
assertEquals (1, ContainerHelper.newList (new ChildElementIterator (doc)).size ());
// 2 children
eRoot.appendChild (doc.createElement ("Hallo"));
eRoot.appendChild (doc.createTextNode (" - "));
eRoot.appendChild (doc.createElement ("Welt"));
assertEquals (2, ContainerHelper.newList (new ChildElementIterator (eRoot)).size ());
assertEquals (1, ContainerHelper.newList (new ChildElementIterator (eRoot, new FilterElementWithTagName ("Hallo")))
.size ());
try
{
new ChildElementIterator (doc).remove ();
fail ();
}
catch (final UnsupportedOperationException ex)
{}
try
{
new ChildElementIterator (null);
fail ();
}
catch (final NullPointerException ex)
{}
}
}
| apache-2.0 |
gavin2lee/incubator | mnisqm/mnisqm-services/src/main/java/com/lachesis/mnisqm/module/qualityForm/domain/QualityIssueManage.java | 5353 | package com.lachesis.mnisqm.module.qualityForm.domain;
import java.util.Date;
public class QualityIssueManage {
private Long seqId;
private String resultCode;
private String formName;
private String issueContent;
private String issueUserCode;
private Date issueTime;
private String reasonAnalysis;
private String reasonUserCode;
private Date reasonTime;
private String resDescribe;
private String resDUserCode;
private Date resDTime;
private String resPlan;
private String resPUserCode;
private Date resPTime;
private String evaluation;
private String evaluationUserCode;
private Date evaluationTime;
private String status;
private Date createTime;
private Date updateTime;
private String createPerson;
private String updatePerson;
private String taskTime;
private String deptCode;
private String deptName;
private String type;
public String getType() {
return type;
}
public void setType(String type) {
this.type = type;
}
public String getTaskTime() {
return taskTime;
}
public void setTaskTime(String taskTime) {
this.taskTime = taskTime;
}
public String getDeptCode() {
return deptCode;
}
public void setDeptCode(String deptCode) {
this.deptCode = deptCode;
}
public String getDeptName() {
return deptName;
}
public void setDeptName(String deptName) {
this.deptName = deptName;
}
public Long getSeqId() {
return seqId;
}
public void setSeqId(Long seqId) {
this.seqId = seqId;
}
public String getResultCode() {
return resultCode;
}
public void setResultCode(String resultCode) {
this.resultCode = resultCode;
}
public String getFormName() {
return formName;
}
public void setFormName(String formName) {
this.formName = formName;
}
public String getIssueContent() {
return issueContent;
}
public void setIssueContent(String issueContent) {
this.issueContent = issueContent;
}
public String getIssueUserCode() {
return issueUserCode;
}
public void setIssueUserCode(String issueUserCode) {
this.issueUserCode = issueUserCode;
}
public Date getIssueTime() {
return issueTime;
}
public void setIssueTime(Date issueTime) {
this.issueTime = issueTime;
}
public String getReasonAnalysis() {
return reasonAnalysis;
}
public void setReasonAnalysis(String reasonAnalysis) {
this.reasonAnalysis = reasonAnalysis;
}
public String getReasonUserCode() {
return reasonUserCode;
}
public void setReasonUserCode(String reasonUserCode) {
this.reasonUserCode = reasonUserCode;
}
public Date getReasonTime() {
return reasonTime;
}
public void setReasonTime(Date reasonTime) {
this.reasonTime = reasonTime;
}
public String getResDescribe() {
return resDescribe;
}
public void setResDescribe(String resDescribe) {
this.resDescribe = resDescribe;
}
public String getResDUserCode() {
return resDUserCode;
}
public void setResDUserCode(String resDUserCode) {
this.resDUserCode = resDUserCode;
}
public Date getResDTime() {
return resDTime;
}
public void setResDTime(Date resDTime) {
this.resDTime = resDTime;
}
public String getResPlan() {
return resPlan;
}
public void setResPlan(String resPlan) {
this.resPlan = resPlan;
}
public String getResPUserCode() {
return resPUserCode;
}
public void setResPUserCode(String resPUserCode) {
this.resPUserCode = resPUserCode;
}
public Date getResPTime() {
return resPTime;
}
public void setResPTime(Date resPTime) {
this.resPTime = resPTime;
}
public String getEvaluation() {
return evaluation;
}
public void setEvaluation(String evaluation) {
this.evaluation = evaluation;
}
public String getEvaluationUserCode() {
return evaluationUserCode;
}
public void setEvaluationUserCode(String evaluationUserCode) {
this.evaluationUserCode = evaluationUserCode;
}
public Date getEvaluationTime() {
return evaluationTime;
}
public void setEvaluationTime(Date evaluationTime) {
this.evaluationTime = evaluationTime;
}
public String getStatus() {
return status;
}
public void setStatus(String status) {
this.status = status;
}
public Date getCreateTime() {
return createTime;
}
public void setCreateTime(Date createTime) {
this.createTime = createTime;
}
public Date getUpdateTime() {
return updateTime;
}
public void setUpdateTime(Date updateTime) {
this.updateTime = updateTime;
}
public String getCreatePerson() {
return createPerson;
}
public void setCreatePerson(String createPerson) {
this.createPerson = createPerson;
}
public String getUpdatePerson() {
return updatePerson;
}
public void setUpdatePerson(String updatePerson) {
this.updatePerson = updatePerson;
}
} | apache-2.0 |
kisskys/incubator-asterixdb | asterixdb/asterix-external-data/src/main/java/org/apache/asterix/external/feed/management/FeedLifecycleEventSubscriber.java | 2359 | /*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package org.apache.asterix.external.feed.management;
import java.util.Iterator;
import java.util.concurrent.LinkedBlockingQueue;
import org.apache.asterix.common.exceptions.AsterixException;
import org.apache.asterix.external.feed.api.IFeedLifecycleEventSubscriber;
public class FeedLifecycleEventSubscriber implements IFeedLifecycleEventSubscriber {
private LinkedBlockingQueue<FeedLifecycleEvent> inbox;
public FeedLifecycleEventSubscriber() {
this.inbox = new LinkedBlockingQueue<FeedLifecycleEvent>();
}
@Override
public void handleFeedEvent(FeedLifecycleEvent event) {
inbox.add(event);
}
@Override
public void assertEvent(FeedLifecycleEvent event) throws AsterixException, InterruptedException {
boolean eventOccurred = false;
FeedLifecycleEvent e = null;
Iterator<FeedLifecycleEvent> eventsSoFar = inbox.iterator();
while (eventsSoFar.hasNext()) {
e = eventsSoFar.next();
assertNoFailure(e);
eventOccurred = e.equals(event);
}
while (!eventOccurred) {
e = inbox.take();
eventOccurred = e.equals(event);
if (!eventOccurred) {
assertNoFailure(e);
}
}
}
private void assertNoFailure(FeedLifecycleEvent e) throws AsterixException {
if (e.equals(FeedLifecycleEvent.FEED_INTAKE_FAILURE) || e.equals(FeedLifecycleEvent.FEED_COLLECT_FAILURE)) {
throw new AsterixException("Failure in feed");
}
}
}
| apache-2.0 |
karolgurecki/Concurrent-Programming | CPMonitor/src/main/java/org/cp/monitor/resources/Resource.java | 584 | package org.cp.monitor.resources;
/**
* Created by: Nappa
* Version: 0.01
* Since: 0.01
*/
public class Resource {
protected int number;
protected boolean isLocked;
public Resource(final Integer number){
this.number=number;
}
public String toString(){
return String.format("%s number %d", this.getClass().getSimpleName(),number);
}
public int getNumber() {
return number;
}
public boolean isLocked() {
return isLocked;
}
public void setLocked(boolean locked) {
isLocked = locked;
}
}
| apache-2.0 |
comicgenie/rdf | src/main/java/org/comicwiki/model/schema/CreativeWorkSeries.java | 1320 | /*******************************************************************************
* See the NOTICE file distributed with this work for additional
* information regarding copyright ownership. ComicGenie licenses this
* file to you under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*******************************************************************************/
package org.comicwiki.model.schema;
import org.comicwiki.IRI;
import org.comicwiki.rdf.annotations.ObjectIRI;
import org.comicwiki.rdf.annotations.Predicate;
import org.comicwiki.rdf.annotations.Subject;
@Subject(value = "http://schema.org/CreativeWorkSeries", key= "name")
public class CreativeWorkSeries extends CreativeWork {
@Predicate("endDate")
@ObjectIRI
public IRI endDate;
@Predicate("startDate")
@ObjectIRI
public IRI startDate;
}
| apache-2.0 |
creditteam/credit_web | src/main/java/com/credit/web/util/RealizeEnumName.java | 144 | package com.credit.web.util;
/**
* 枚举接口
* @author xiao.peng
*
*/
public interface RealizeEnumName {
public String getName();
}
| apache-2.0 |
Cue/greplin-lucene-utils | src/main/java/com/greplin/lucene/util/IntersectionProvider.java | 1073 | /*
* Copyright 2013 The greplin-lucene-utils Authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.greplin.lucene.util;
import org.apache.lucene.index.IndexReader;
import java.io.IOException;
/**
* TermDocs intersection utility.
*/
public interface IntersectionProvider {
/**
* Get the Intersection instance for the given sub reader.
* @param reader the sub reader
* @return the Intersection instance
* @throws IOException if Lucene encounters IO errors
*/
Intersection get(IndexReader reader) throws IOException;
}
| apache-2.0 |
sdcuike/openSourcLibrary-2015 | src/main/java/com/doctor/java8/ConvertStreamToArrayInJava8.java | 1326 | /*
* Copyright (C) 2014-present The openSourcLibrary-2015 Authors
*
* https://github.com/sdcuike
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
*/
package com.doctor.java8;
import java.util.Arrays;
import java.util.stream.Stream;
/**
* Convert Stream to Array in Java 8
*
* @author doctor
*
* @see http://www.programcreek.com/2014/01/convert-stream-to-array-in-java-8/
*
* @time 2015年8月5日 上午10:38:41
*
*/
public class ConvertStreamToArrayInJava8 {
public static void main(String[] args) {
String[] strings = {"hello","doctor","who are you"};
String[] array = Stream.of(strings).toArray(String[]::new);
System.out.println(Arrays.toString(array));
String[] array2 = Stream.of(strings).toArray(size -> new String[size]);
System.out.println(Arrays.toString(array2));
}
}
| apache-2.0 |
poomoo/eDao | src/com/poomoo/edao/widget/photoview/scrollerproxy/ScrollerProxy.java | 1739 | /*******************************************************************************
* Copyright 2011, 2012 Chris Banes.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*******************************************************************************/
package com.poomoo.edao.widget.photoview.scrollerproxy;
import android.content.Context;
import android.os.Build.VERSION;
import android.os.Build.VERSION_CODES;
public abstract class ScrollerProxy {
public static ScrollerProxy getScroller(Context context) {
if (VERSION.SDK_INT < VERSION_CODES.GINGERBREAD) {
return new PreGingerScroller(context);
} else if (VERSION.SDK_INT < VERSION_CODES.ICE_CREAM_SANDWICH) {
return new GingerScroller(context);
} else {
return new IcsScroller(context);
}
}
public abstract boolean computeScrollOffset();
public abstract void fling(int startX, int startY, int velocityX, int velocityY, int minX, int maxX, int minY,
int maxY, int overX, int overY);
public abstract void forceFinished(boolean finished);
public abstract boolean isFinished();
public abstract int getCurrX();
public abstract int getCurrY();
}
| apache-2.0 |
shafreenAnfar/carbon-gateway-framework | outbound-endpoints/http-outbound/components/org.wso2.carbon.gateway.outbounds.http/src/main/java/org/wso2/carbon/gateway/outbounds/http/HTTPOutboundEndpoint.java | 2619 | /*
* Copyright (c) 2016, WSO2 Inc. (http://www.wso2.org) All Rights Reserved.
*
* WSO2 Inc. licenses this file to you under the Apache License,
* Version 2.0 (the "License"); you may not use this file except
* in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package org.wso2.carbon.gateway.outbounds.http;
import org.wso2.carbon.gateway.core.ServiceContextHolder;
import org.wso2.carbon.gateway.core.config.ParameterHolder;
import org.wso2.carbon.gateway.core.outbound.AbstractOutboundEndpoint;
import org.wso2.carbon.messaging.CarbonCallback;
import org.wso2.carbon.messaging.CarbonMessage;
import org.wso2.carbon.messaging.Constants;
import java.net.MalformedURLException;
import java.net.URL;
/**
* HTTP Outbound Endpoint
*/
public class HTTPOutboundEndpoint extends AbstractOutboundEndpoint {
private String uri;
@Override
public boolean receive(CarbonMessage carbonMessage, CarbonCallback carbonCallback)
throws Exception {
super.receive(carbonMessage, carbonCallback);
processRequest(carbonMessage);
ServiceContextHolder.getInstance().getSender().send(carbonMessage, carbonCallback);
return false;
}
private void processRequest(CarbonMessage cMsg) throws MalformedURLException {
URL url = new URL(uri);
String host = url.getHost();
int port = (url.getPort() == -1) ? 80 : url.getPort();
String urlPath = url.getPath();
cMsg.setProperty(Constants.HOST, host);
cMsg.setProperty(Constants.PORT, port);
cMsg.setProperty(Constants.TO, urlPath);
if (port != 80) {
cMsg.getHeaders().set(Constants.HOST, host + ":" + port);
} else {
cMsg.getHeaders().set(Constants.HOST, host);
}
}
public HTTPOutboundEndpoint(String name, String uri) {
super(name);
this.uri = uri;
}
public HTTPOutboundEndpoint() {
}
public void setUri(String uri) {
this.uri = uri;
}
@Override
public void setParameters(ParameterHolder parameters) {
uri = parameters.getParameter("host").getValue();
}
@Override
public String getUri() {
return this.uri;
}
}
| apache-2.0 |
leepc12/BigDataScript | src/org/bds/lang/Breakpoint.java | 839 | package org.bds.lang;
import org.antlr.v4.runtime.tree.ParseTree;
import org.bds.run.BdsThread;
import org.bds.run.DebugMode;
/**
* An "breakpoint" statement
*
* @author pcingola
*/
public class Breakpoint extends Print {
public Breakpoint(BdsNode parent, ParseTree tree) {
super(parent, tree);
}
/**
* Run the program
*/
@Override
public void runStep(BdsThread bdsThread) {
// Switch debug mode to 'step'
bdsThread.setDebugMode(DebugMode.STEP);
// Show message
String msg = "";
if (expr != null) {
// Evaluate expression to show
bdsThread.run(expr);
if (bdsThread.isCheckpointRecover()) return;
msg = popString(bdsThread);
}
if (bdsThread.isCheckpointRecover()) return;
System.err.print("Breakpoint " + getFileName() + ", line " + getLineNum() + (!msg.isEmpty() ? ": " + msg : ""));
}
}
| apache-2.0 |
cbeams-archive/spring-framework-2.5.x | load/org/springframework/benchmark/AopPrototypeTest.java | 2492 |
package org.springframework.benchmark;
import org.aopalliance.intercept.MethodInterceptor;
import org.springframework.aop.Advisor;
import org.springframework.aop.framework.AbstractAopProxyTests;
import org.springframework.aop.framework.ProxyFactory;
import org.springframework.beans.ITestBean;
import org.springframework.beans.TestBean;
import org.springframework.load.AbortTestException;
import org.springframework.load.AbstractTest;
import org.springframework.load.TestFailedException;
/**
* @author Rod Johnson
*/
public class AopPrototypeTest extends AbstractTest {
private ITestBean advised;
public AopPrototypeTest() {
ProxyFactory pf = new ProxyFactory(new Class[] { ITestBean.class });
MethodInterceptor static1 = new Advices.NopInterceptor();
MethodInterceptor static2 = new Advices.ReadDataInterceptor();
pf.addAdvice(static1);
pf.addAdvice(static2);
Advisor static3 = new Advices.SetterPointCut(new Advices.NopInterceptor());
Advisor static4 = new Advices.SetterPointCut(new Advices.ReadDataInterceptor());
pf.addAdvisor(static3);
pf.addAdvisor(static4);
pf.addAdvisor(new Advices.ObjectReturnPointCut(new Advices.NopInterceptor()));
Advisor dynamic1 = new AbstractAopProxyTests.StringSetterNullReplacementAdvice();
//pf.addAdvice(dynamic1);
TestBean target = new TestBean();
target.setName("gary");
pf.setTarget(target);
this.advised = (ITestBean) pf.getProxy();
}
/**
* @see org.springframework.load.AbstractTest#runPass(int)
*/
protected void runPass(int i) throws TestFailedException, AbortTestException, Exception {
int newAge = 14;
this.advised.setAge(newAge);
// Nothing on getAge: simulate repeated calls to non-advised methods
this.advised.getAge();
this.advised.getAge();
this.advised.getAge();
if (this.advised.getAge() != newAge)
throw new TestFailedException("Age should have been " + newAge);
//System.out.println(this.advised.getName());
this.advised.setAge(-1);
this.advised.getName();
this.advised.setName("tony");
if (!this.advised.getName().equals("tony"))
throw new TestFailedException("Name should have been " + "tony");
this.advised.setName(null);
// Nothing on getName()
if (!this.advised.getName().equals(""))
throw new TestFailedException("null stopper should have done its magic");
// Interceptor on this
if (this.advised.returnsThis() != this.advised)
throw new TestFailedException("return this should have been magiced");
}
}
| apache-2.0 |
ctsims/andorid-micronode | CommCareHub/app/src/main/java/org/commcare/hub/events/HubActivity.java | 2103 | package org.commcare.hub.events;
import android.os.Bundle;
import android.support.v4.app.Fragment;
import android.support.v4.app.FragmentManager;
import android.support.v7.app.AppCompatActivity;
import android.util.Log;
import org.commcare.hub.application.HubApplication;
import java.util.ArrayList;
import java.util.Objects;
/**
* Created by ctsims on 7/11/2016.
*/
public abstract class HubActivity extends AppCompatActivity implements HubBroadcastListener {
public final Object queueLock = new Object();
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
}
@Override
protected void onResume() {
super.onResume();
HubApplication._().getServiceHost().setReceiver(this);
}
@Override
protected void onPause() {
super.onPause();
HubApplication._().getServiceHost().unsetReceiver(this);
}
public void clearBroadcastQueue() {
synchronized (queueLock) {
}
}
public void addToBroadcastQueue(HubEventBroadcast list) {
synchronized (queueLock) {
queue.add(list);
}
flushQueue();
}
public void receiveBroadcast(HubEventBroadcast b) {
FragmentManager manager = this.getSupportFragmentManager();
for(Fragment f : manager.getFragments()) {
if(f instanceof HubBroadcastListener) {
if(f.isVisible()) {
((HubBroadcastListener)f).receiveBroadcast(b);
}
}
}
}
ArrayList<HubEventBroadcast> queue = new ArrayList<>();
public void flushQueue() {
this.runOnUiThread(new Runnable() {
@Override
public void run() {
ArrayList<HubEventBroadcast> toClear;
synchronized (queueLock) {
toClear = new ArrayList<>();
toClear.addAll(queue);
}
for(HubEventBroadcast b : toClear) {
receiveBroadcast(b);
}
}
});
}
}
| apache-2.0 |
clive-jevons/joynr | examples/radio-jee/radio-jee-provider/src/main/java/io/joynr/examples/jee/GeoLocationService.java | 1645 | package io.joynr.examples.jee;
/*
* #%L
* %%
* Copyright (C) 2011 - 2017 BMW Car IT GmbH
* %%
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
* #L%
*/
import java.util.HashMap;
import java.util.Map;
import javax.annotation.PostConstruct;
import javax.ejb.Singleton;
import joynr.vehicle.Country;
import joynr.vehicle.GeoPosition;
/**
* A dummy implementation of a geo-location service which returns lat/long values given a {@link Country}.
*/
@Singleton
public class GeoLocationService {
private Map<Country, GeoPosition> geoPositions = new HashMap<>();
@PostConstruct
public void initialiseGeoPositions() {
geoPositions.put(Country.AUSTRALIA, new GeoPosition(-37.8141070, 144.9632800)); // Melbourne
geoPositions.put(Country.ITALY, new GeoPosition(46.4982950, 11.3547580)); // Bolzano
geoPositions.put(Country.CANADA, new GeoPosition(53.5443890, -113.4909270)); // Edmonton
geoPositions.put(Country.GERMANY, new GeoPosition(48.1351250, 11.5819810)); // Munich
}
public GeoPosition getPositionFor(Country country) {
return geoPositions.get(country);
}
}
| apache-2.0 |
BioStar2/BioStar2Android | BioStar2Android/BioStar2Client/src/main/java/com/supremainc/biostar2/adapter/SimpleDataAdapter.java | 2741 | /*
* Copyright 2015 Suprema(biostar2@suprema.co.kr)
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.supremainc.biostar2.adapter;
import android.app.Activity;
import android.view.View;
import android.view.ViewGroup;
import android.widget.AdapterView;
import android.widget.AdapterView.OnItemClickListener;
import android.widget.ListView;
import com.supremainc.biostar2.R;
import com.supremainc.biostar2.adapter.base.BaseSimpleDataAdapter;
import com.supremainc.biostar2.sdk.models.v2.common.SimpleData;
import com.supremainc.biostar2.widget.popup.Popup;
import java.util.ArrayList;
public class SimpleDataAdapter extends BaseSimpleDataAdapter {
public SimpleDataAdapter(Activity context, ArrayList<SimpleData> items, ListView listView, OnItemClickListener itemClickListener, Popup popup, OnItemsListener onItemsListener) {
super(context, items, listView, itemClickListener, popup, onItemsListener);
}
@Override
public void onItemClick(AdapterView<?> parent, View view, int position, long id) {
SimpleItemViewHolder viewHolder = (SimpleItemViewHolder) view.getTag();
setSelector(view, viewHolder.mLink, position);
super.onItemClick(parent, view, position, id);
}
@Override
public View getView(int position, View convertView, ViewGroup parent) {
if (mItems == null || mItems.size() < 1) {
return null;
}
if (null == convertView) {
convertView = mInflater.inflate(R.layout.list_item, parent, false);
SimpleItemViewHolder viewHolder = new SimpleItemViewHolder(convertView);
convertView.setTag(viewHolder);
}
SimpleItemViewHolder viewHolder = (SimpleItemViewHolder) convertView.getTag();
if (viewHolder == null) {
viewHolder = new SimpleItemViewHolder(convertView);
convertView.setTag(viewHolder);
}
SimpleData item = mItems.get(position);
if (item != null) {
viewHolder.mName.setText(item.name);
setSelector(viewHolder.mRoot, viewHolder.mLink, position, true);
}
return viewHolder.mRoot;
}
}
| apache-2.0 |
TranscendComputing/TopStackCore | src/com/msi/tough/utils/VolumeUtil.java | 3590 | /*
* TopStack (c) Copyright 2012-2013 Transcend Computing, Inc.
*
* Licensed under the Apache License, Version 2.0 (the License);
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an AS IS BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.msi.tough.utils;
import java.util.HashMap;
import java.util.Map;
import com.msi.tough.cf.AccountType;
import com.msi.tough.cf.ec2.VolumeType;
import com.msi.tough.engine.aws.ec2.SecurityGroup;
import com.msi.tough.engine.aws.ec2.Volume;
import com.msi.tough.engine.core.CallStruct;
import com.msi.tough.engine.core.TemplateContext;
public class VolumeUtil {
public static VolumeType createVolume(final AccountType ac,
final String name, final TemplateContext ctx,
final String parentId, final String stackId,
final String availabilityZone, final int allocatedStorage)
throws Exception {
final CallStruct c = new CallStruct();
c.setAc(ac);
c.setCtx(ctx == null ? new TemplateContext(null) : ctx);
c.setParentId(parentId);
c.setStackId(stackId);
c.setName(name);
c.setAvailabilityZone(availabilityZone);
c.setType(Volume.TYPE);
final Volume vol = new Volume();
final Map<String, Object> prop = new HashMap<String, Object>();
prop.put(Constants.AVAILABILITYZONE, availabilityZone);
prop.put("Size", allocatedStorage);
c.setProperties(prop);
final VolumeType volumeInfo = (VolumeType) vol.create(c);
return volumeInfo;
}
public static VolumeType createDBSnapshotVolume(final AccountType ac,
final String name, final TemplateContext ctx,
final String parentId, final String stackId,
final String availabilityZone, final int allocatedStorage,
final String failHook) throws Exception {
final CallStruct c = new CallStruct();
c.setAc(ac);
c.setCtx(ctx == null ? new TemplateContext(null) : ctx);
c.setParentId(parentId);
c.setStackId(stackId);
c.setName(name);
c.setAvailabilityZone(availabilityZone);
c.setType(Volume.TYPE);
final Volume vol = new Volume();
final Map<String, Object> prop = new HashMap<String, Object>();
prop.put(Constants.AVAILABILITYZONE, availabilityZone);
prop.put("Size", allocatedStorage);
c.setProperties(prop);
final VolumeType volumeInfo = (VolumeType) vol.create(c);
return volumeInfo;
}
public static void deleteVolume(final AccountType ac, final String stackId,
final String availabilityZone, final String volId) throws Exception {
final CallStruct c = new CallStruct();
c.setAc(ac);
c.setCtx(new TemplateContext(null));
c.setStackId(stackId);
c.setAvailabilityZone(availabilityZone);
c.setName(volId);
final Map<String, Object> properties = new HashMap<String, Object>();
properties.put(Constants.AVAILABILITYZONE, availabilityZone);
c.setProperties(properties);
c.setType(SecurityGroup.TYPE);
final Volume provider = new Volume();
provider.delete(c);
}
}
| apache-2.0 |
caskdata/cdap | cdap-data-fabric/src/test/java/co/cask/cdap/data2/dataset2/customds/TopLevelDirectDataset.java | 1349 | /*
* Copyright © 2016 Cask Data, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
package co.cask.cdap.data2.dataset2.customds;
import co.cask.cdap.api.annotation.ReadOnly;
import co.cask.cdap.api.annotation.ReadWrite;
import co.cask.cdap.api.annotation.WriteOnly;
import co.cask.cdap.api.dataset.Dataset;
import java.io.IOException;
/**
*
*/
public class TopLevelDirectDataset implements Dataset, CustomOperations {
@Override
public void close() throws IOException {
// no-op
}
@ReadOnly
@Override
public void read() {
}
@WriteOnly
@Override
public void write() {
}
@ReadWrite
@Override
public void readWrite() {
read();
write();
}
@WriteOnly
@Override
public void lineageWriteActualReadWrite() {
read();
write();
}
@Override
public void noDataOp() {
}
}
| apache-2.0 |
saschalamp/istats | cli/src/main/java/de/lampware/racing/istats/cli/IstatsCLIRunner.java | 140 | package de.lampware.racing.istats.cli;
/**
* TODO JavaDoc
*/
@FunctionalInterface
public interface IstatsCLIRunner extends Runnable {
}
| apache-2.0 |
jeheydorn/nortantis | src/nortantis/BGColorCancelHandler.java | 554 | package nortantis;
import java.awt.Color;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
/**
* For handling when the user cancels their selection of a background color.
*/
public class BGColorCancelHandler implements ActionListener
{
private Color orginal;
private BGColorPreviewPanel target;
public BGColorCancelHandler(Color original, BGColorPreviewPanel target)
{
this.orginal = original;
this.target = target;
}
@Override
public void actionPerformed(ActionEvent arg0)
{
target.setColor(orginal);
}
}
| apache-2.0 |
weld/core | tests-arquillian/src/test/java/org/jboss/weld/tests/contexts/request/startup/ejb/RequestScopeActiveDuringSingletonStartupTest.java | 1934 | /*
* JBoss, Home of Professional Open Source
* Copyright 2012, Red Hat, Inc., and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.jboss.weld.tests.contexts.request.startup.ejb;
import static org.junit.Assert.assertEquals;
import jakarta.inject.Inject;
import org.jboss.arquillian.container.test.api.Deployment;
import org.jboss.arquillian.junit.Arquillian;
import org.jboss.shrinkwrap.api.Archive;
import org.jboss.shrinkwrap.api.BeanArchive;
import org.jboss.shrinkwrap.api.ShrinkWrap;
import org.jboss.weld.test.util.Utils;
import org.jboss.weld.tests.category.Integration;
import org.junit.Test;
import org.junit.experimental.categories.Category;
import org.junit.runner.RunWith;
@RunWith(Arquillian.class)
@Category(Integration.class)
public class RequestScopeActiveDuringSingletonStartupTest {
@Inject
private Initializer initializer;
@Deployment
public static Archive<?> getDeployment() {
return ShrinkWrap.create(BeanArchive.class, Utils.getDeploymentNameAsHash(RequestScopeActiveDuringSingletonStartupTest.class)).addPackage(RequestScopeActiveDuringSingletonStartupTest.class.getPackage());
}
@Test
public void testRequestScopeActiveDuringSingletonStartup() {
assertEquals("pong", initializer.getResponse());
}
}
| apache-2.0 |
leafclick/intellij-community | plugins/gradle/tooling-extension-api/src/org/jetbrains/plugins/gradle/tooling/ModelBuilderContext.java | 673 | // Copyright 2000-2019 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file.
package org.jetbrains.plugins.gradle.tooling;
import org.gradle.api.invocation.Gradle;
import org.jetbrains.annotations.NotNull;
/**
* @author Vladislav.Soroka
*/
public interface ModelBuilderContext {
/**
* @return root Gradle instance
*/
@NotNull
Gradle getRootGradle();
/**
* @return cached data if it's already created, newly created data otherwise
*/
@NotNull
<T> T getData(@NotNull DataProvider<T> provider);
interface DataProvider<T> {
@NotNull
T create(@NotNull Gradle gradle);
}
}
| apache-2.0 |